diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index f6ae6db..26e30e7 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -902,18 +902,27 @@ replaceStatement )? (('(' columnNames ')')? replaceStatementValuesOrSelectOrTable | setAssignmentList) ; -// into clause within a given statement can appear only once +// selectStatement +// : querySpecification lockClause? # simpleSelect +// | querySpecificationNointo lockClause? intoClause? # simpleSelect +// | queryExpression lockClause? # parenthesisSelect +// | querySpecificationNointo unionStatement+ ( +// KW_UNION unionType=(KW_ALL | KW_DISTINCT)? (querySpecification | queryExpression) +// )? orderByClause? limitClause? lockClause? # unionSelect +// | queryExpressionNointo unionParenthesis+ ( +// KW_UNION unionType=(KW_ALL | KW_DISTINCT)? queryExpression +// )? orderByClause? limitClause? lockClause? # unionParenthesisSelect +// | querySpecificationNointo (',' lateralStatement)+ # withLateralStatement +// ; + +// TODO: Simplify the rules to fit SLL(*) Mode selectStatement - : querySpecification lockClause? # simpleSelect - | querySpecificationNointo lockClause? intoClause? # simpleSelect - | queryExpression lockClause? # parenthesisSelect - | querySpecificationNointo unionStatement+ ( + : querySpecification unionStatement* ( KW_UNION unionType=(KW_ALL | KW_DISTINCT)? (querySpecification | queryExpression) - )? orderByClause? limitClause? lockClause? # unionSelect - | queryExpressionNointo unionParenthesis+ ( + )? (',' lateralStatement)* orderByClause? limitClause? lockClause? intoClause? # unionAndLateralSelect + | queryExpression unionStatement* ( KW_UNION unionType=(KW_ALL | KW_DISTINCT)? queryExpression - )? orderByClause? limitClause? lockClause? # unionParenthesisSelect - | querySpecificationNointo (',' lateralStatement)+ # withLateralStatement + )? orderByClause? limitClause? lockClause? # selectExpression ; // https://dev.mysql.com/doc/refman/8.0/en/set-operations.html @@ -1106,34 +1115,24 @@ queryExpression | '(' queryExpression ')' ; -queryExpressionNointo - : '(' querySpecificationNointo ')' - | '(' queryExpressionNointo ')' - ; - -// into clause within a given statement can appear only once +/** + * TODO: intoClause is allowed to appear multiple times, + * which is inconsistent with the actual syntax, + * but is currently unsolvable because the correct syntax cannot be handled by SLL(*) Mode + */ querySpecification - : KW_SELECT selectSpec* selectElements intoClause? fromClause groupByClause? havingClause? windowClause? orderByClause? limitClause? - | KW_SELECT selectSpec* selectElements fromClause groupByClause? havingClause? windowClause? orderByClause? limitClause? intoClause? - ; - -querySpecificationNointo - : KW_SELECT selectSpec* selectElements fromClause groupByClause? havingClause? windowClause? orderByClause? limitClause? - ; - -unionParenthesis - : KW_UNION unionType=(KW_ALL | KW_DISTINCT)? queryExpressionNointo + : KW_SELECT selectSpec* selectElements intoClause? fromClause groupByClause? havingClause? windowClause? orderByClause? limitClause? intoClause? ; unionStatement - : KW_UNION unionType=(KW_ALL | KW_DISTINCT)? (querySpecificationNointo | queryExpressionNointo) + : KW_UNION unionType=(KW_ALL | KW_DISTINCT)? (querySpecification | queryExpression) ; lateralStatement : KW_LATERAL ( - querySpecificationNointo - | queryExpressionNointo - | ('(' (querySpecificationNointo | queryExpressionNointo) ')' (KW_AS? alias=uid)?) + querySpecification + | queryExpression + | ('(' (querySpecification | queryExpression) ')' (KW_AS? alias=uid)?) ) ; @@ -1187,10 +1186,10 @@ selectElements ; selectElement - : select_element=fullId '.' '*' # selectStarElement - | columnName (KW_AS? alias=uid)? # selectColumnElement + : (LOCAL_ID VAR_ASSIGN)? expression (KW_AS? alias=uid)? # selectExpressionElement | functionCall (KW_AS? alias=uid)? # selectFunctionElement - | (LOCAL_ID VAR_ASSIGN)? expression (KW_AS? alias=uid)? # selectExpressionElement + | select_element=fullId '.' '*' # selectStarElement + | columnName (KW_AS? alias=uid)? # selectColumnElement ; intoClause @@ -1767,13 +1766,14 @@ userSpecification ; alterUserAuthOption - : userName KW_IDENTIFIED KW_BY STRING_LITERAL authOptionClause - | userName KW_IDENTIFIED KW_BY KW_RANDOM KW_PASSWORD authOptionClause - | userName KW_IDENTIFIED KW_WITH authenticationRule - | userName KW_DISCARD KW_OLD KW_PASSWORD - | userName ((KW_ADD | KW_MODIFY | KW_DROP) factor factorAuthOption?)+ - | userName registrationOption? - | userName + : userName ( + KW_IDENTIFIED KW_BY STRING_LITERAL authOptionClause + | KW_IDENTIFIED KW_BY KW_RANDOM KW_PASSWORD authOptionClause + | KW_IDENTIFIED KW_WITH authenticationRule + | KW_DISCARD KW_OLD KW_PASSWORD + | ((KW_ADD | KW_MODIFY | KW_DROP) factor factorAuthOption?)+ + | registrationOption + )? ; // createUser auth_option, 2fa_auth_option, 3fa_auth_option diff --git a/src/grammar/pgsql/PostgreSQLParser.g4 b/src/grammar/pgsql/PostgreSQLParser.g4 index 0f14344..f540041 100644 --- a/src/grammar/pgsql/PostgreSQLParser.g4 +++ b/src/grammar/pgsql/PostgreSQLParser.g4 @@ -325,13 +325,11 @@ set_rest ; generic_set - : (var_name | KW_ALL) (KW_TO | EQUAL)? (var_list | KW_DEFAULT)? + : (KW_ALL | var_name) (KW_TO | EQUAL)? (KW_DEFAULT | var_list)? ; set_rest_more - : generic_set - | var_name KW_FROM KW_CURRENT - | KW_TIME KW_ZONE zone_value + : KW_TIME KW_ZONE zone_value | KW_CATALOG sconst | KW_SCHEMA schema_name | KW_NAMES opt_encoding? @@ -339,6 +337,8 @@ set_rest_more | KW_SESSION KW_AUTHORIZATION nonreservedword_or_sconst | KW_XML KW_OPTION document_or_content | KW_TRANSACTION KW_SNAPSHOT sconst + | var_name KW_FROM KW_CURRENT + | generic_set ; var_name @@ -404,15 +404,15 @@ variableresetstmt ; reset_rest - : generic_reset - | KW_TIME KW_ZONE + : KW_TIME KW_ZONE | KW_TRANSACTION KW_ISOLATION KW_LEVEL | KW_SESSION KW_AUTHORIZATION + | generic_reset ; generic_reset - : var_name - | KW_ALL + : KW_ALL + | var_name ; setresetclause @@ -513,45 +513,19 @@ index_partition_cmd ; alter_table_cmd - : KW_ADD opt_column? opt_if_not_exists? columnDefCluase - | KW_ALTER opt_column? column_name alter_column_default - | KW_ALTER opt_column? column_name KW_DROP KW_NOT KW_NULL - | KW_ALTER opt_column? column_name KW_SET KW_NOT KW_NULL - | KW_ALTER opt_column? column_name KW_DROP KW_EXPRESSION opt_if_exists? - | KW_ALTER opt_column? column_name KW_SET KW_STATISTICS signediconst - | KW_ALTER opt_column? column_name KW_SET KW_STATISTICS signediconst - | KW_ALTER opt_column? column_name KW_SET reloptions - | KW_ALTER opt_column? column_name KW_RESET reloptions - | KW_ALTER opt_column? column_name KW_SET KW_STORAGE colid - | KW_ALTER opt_column? column_name KW_ADD KW_GENERATED generated_when KW_AS KW_IDENTITY optparenthesizedseqoptlist? - | KW_ALTER opt_column? column_name alter_identity_column_option_list - | KW_ALTER opt_column? column_name KW_DROP KW_IDENTITY opt_if_exists? - | KW_DROP opt_column? opt_if_exists? column_name opt_drop_behavior? - | KW_ALTER opt_column? column_name opt_set_data? KW_TYPE typename opt_collate_clause? alter_using? - | KW_ALTER opt_column? column_name alter_generic_options - | KW_ADD tableconstraint + : KW_ADD (KW_CONSTRAINT name)? constraintelem | KW_ALTER KW_CONSTRAINT name constraintattributespec | KW_VALIDATE KW_CONSTRAINT name | KW_DROP KW_CONSTRAINT opt_if_exists? name opt_drop_behavior? | KW_SET KW_WITHOUT KW_OIDS | KW_CLUSTER KW_ON name | KW_SET KW_WITHOUT KW_CLUSTER - | KW_SET KW_LOGGED - | KW_SET KW_UNLOGGED - | KW_ENABLE KW_TRIGGER name - | KW_ENABLE KW_ALWAYS KW_TRIGGER name - | KW_ENABLE KW_REPLICA KW_TRIGGER name - | KW_ENABLE KW_TRIGGER KW_ALL - | KW_ENABLE KW_TRIGGER KW_USER - | KW_DISABLE KW_TRIGGER name - | KW_DISABLE KW_TRIGGER KW_ALL - | KW_DISABLE KW_TRIGGER KW_USER - | KW_ENABLE KW_RULE name - | KW_ENABLE KW_ALWAYS KW_RULE name - | KW_ENABLE KW_REPLICA KW_RULE name + | KW_SET (KW_LOGGED | KW_UNLOGGED) + | KW_ENABLE (KW_REPLICA | KW_ALWAYS)? KW_TRIGGER + | KW_DISABLE KW_TRIGGER (KW_ALL | KW_USER | name) + | KW_ENABLE (KW_ALWAYS | KW_REPLICA) KW_RULE name | KW_DISABLE KW_RULE name - | KW_INHERIT qualified_name - | KW_NO KW_INHERIT qualified_name + | KW_NO? KW_INHERIT qualified_name | KW_OF any_name | KW_NOT KW_OF | KW_OWNER KW_TO rolespec @@ -563,6 +537,19 @@ alter_table_cmd | KW_DISABLE KW_ROW KW_LEVEL KW_SECURITY | KW_FORCE KW_ROW KW_LEVEL KW_SECURITY | KW_NO KW_FORCE KW_ROW KW_LEVEL KW_SECURITY + | KW_DROP KW_COLUMN? opt_if_exists? column_name opt_drop_behavior? + | KW_ADD KW_COLUMN? opt_if_not_exists? columnDefCluase + | KW_ALTER KW_COLUMN? column_name alter_column_default + | KW_ALTER KW_COLUMN? column_name (KW_DROP | KW_SET) KW_NOT KW_NULL + | KW_ALTER KW_COLUMN? column_name KW_DROP KW_EXPRESSION opt_if_exists? + | KW_ALTER KW_COLUMN? column_name KW_SET KW_STATISTICS signediconst + | KW_ALTER KW_COLUMN? column_name (KW_SET | KW_RESET) reloptions + | KW_ALTER KW_COLUMN? column_name KW_SET KW_STORAGE colid + | KW_ALTER KW_COLUMN? column_name KW_ADD KW_GENERATED generated_when KW_AS KW_IDENTITY optparenthesizedseqoptlist? + | KW_ALTER KW_COLUMN? column_name alter_identity_column_option_list + | KW_ALTER KW_COLUMN? column_name KW_DROP KW_IDENTITY opt_if_exists? + | KW_ALTER KW_COLUMN? column_name opt_set_data? KW_TYPE typename opt_collate_clause? alter_using? + | KW_ALTER KW_COLUMN? column_name alter_generic_options | alter_generic_options ; @@ -1058,7 +1045,7 @@ seqoptelem | KW_MAXVALUE numericonly | KW_MINVALUE numericonly | KW_NO (KW_MAXVALUE | KW_MINVALUE | KW_CYCLE) - | KW_OWNED KW_BY table_column_name + | KW_OWNED KW_BY column_name | KW_SEQUENCE KW_NAME any_name | KW_START opt_with? numericonly | KW_RESTART opt_with? numericonly? @@ -1478,9 +1465,7 @@ altereventtrigstmt ; enable_trigger - : KW_ENABLE - | KW_ENABLE KW_REPLICA - | KW_ENABLE KW_ALWAYS + : KW_ENABLE (KW_REPLICA | KW_ALWAYS)? | KW_DISABLE ; @@ -1547,9 +1532,9 @@ enum_val_list ; alterenumstmt - : KW_ALTER KW_TYPE any_name KW_ADD KW_VALUE opt_if_not_exists? sconst - | KW_ALTER KW_TYPE any_name KW_ADD KW_VALUE opt_if_not_exists? sconst KW_BEFORE sconst - | KW_ALTER KW_TYPE any_name KW_ADD KW_VALUE opt_if_not_exists? sconst KW_AFTER sconst + : KW_ALTER KW_TYPE any_name KW_ADD KW_VALUE opt_if_not_exists? sconst ( + (KW_BEFORE | KW_AFTER) sconst + )? | KW_ALTER KW_TYPE any_name KW_RENAME KW_VALUE sconst KW_TO sconst ; @@ -1660,19 +1645,14 @@ view_nameList ; object_type_any_name - : KW_TABLE table_name - | KW_SEQUENCE any_name - | KW_VIEW view_name - | KW_MATERIALIZED KW_VIEW view_name + : KW_FOREIGN? KW_TABLE table_name + | KW_MATERIALIZED? KW_VIEW view_name | KW_INDEX any_name - | KW_FOREIGN KW_TABLE table_name | KW_COLLATION any_name | KW_CONVERSION any_name | KW_STATISTICS any_name - | KW_TEXT KW_SEARCH KW_PARSER any_name - | KW_TEXT KW_SEARCH KW_DICTIONARY any_name - | KW_TEXT KW_SEARCH KW_TEMPLATE any_name - | KW_TEXT KW_SEARCH KW_CONFIGURATION any_name + | KW_SEQUENCE any_name + | KW_TEXT KW_SEARCH (KW_PARSER | KW_DICTIONARY | KW_TEMPLATE | KW_CONFIGURATION) any_name ; object_type_name @@ -1700,10 +1680,6 @@ any_name_list : any_name (COMMA any_name)* ; -table_column_name - : table_name DOT column_name - ; - relation_column_name : relation_name DOT column_name ; @@ -1725,12 +1701,13 @@ type_name_list ; truncatestmt - : KW_TRUNCATE opt_table? relation_expr_list opt_restart_seqs? opt_drop_behavior? + : KW_TRUNCATE KW_TABLE? truncate_table (COMMA truncate_table)* ( + (KW_CONTINUE | KW_RESTART) KW_IDENTITY + )? opt_drop_behavior? ; -opt_restart_seqs - : KW_CONTINUE KW_IDENTITY - | KW_RESTART KW_IDENTITY +truncate_table + : KW_ONLY? table_name STAR? ; commentstmt @@ -1762,9 +1739,7 @@ comment_text ; seclabelstmt - : KW_SECURITY KW_LABEL opt_provider? KW_ON object_type_any_name KW_IS security_label - | KW_SECURITY KW_LABEL opt_provider? KW_ON KW_COLUMN table_column_name KW_IS security_label - | KW_SECURITY KW_LABEL opt_provider? KW_ON object_type_name KW_IS security_label + : KW_SECURITY KW_LABEL opt_provider? KW_ON KW_COLUMN column_name KW_IS security_label | KW_SECURITY KW_LABEL opt_provider? KW_ON KW_TYPE typename KW_IS security_label | KW_SECURITY KW_LABEL opt_provider? KW_ON KW_DOMAIN typename KW_IS security_label | KW_SECURITY KW_LABEL opt_provider? KW_ON KW_AGGREGATE aggregate_with_argtypes KW_IS security_label @@ -1772,6 +1747,8 @@ seclabelstmt | KW_SECURITY KW_LABEL opt_provider? KW_ON KW_LARGE KW_OBJECT numericonly KW_IS security_label | KW_SECURITY KW_LABEL opt_provider? KW_ON KW_PROCEDURE procedure_with_argtypes KW_IS security_label | KW_SECURITY KW_LABEL opt_provider? KW_ON KW_ROUTINE routine_with_argtypes KW_IS security_label + | KW_SECURITY KW_LABEL opt_provider? KW_ON object_type_any_name KW_IS security_label + | KW_SECURITY KW_LABEL opt_provider? KW_ON object_type_name KW_IS security_label ; opt_provider @@ -2335,11 +2312,11 @@ renamestmt | KW_ALTER KW_MATERIALIZED KW_VIEW opt_if_exists? view_name KW_RENAME KW_TO view_name_create | KW_ALTER KW_INDEX opt_if_exists? qualified_name KW_RENAME KW_TO name | KW_ALTER KW_FOREIGN KW_TABLE opt_if_exists? relation_expr KW_RENAME KW_TO table_name_create - | KW_ALTER KW_TABLE opt_if_exists? relation_expr KW_RENAME opt_column? column_name KW_TO column_name_create - | KW_ALTER KW_VIEW opt_if_exists? view_name KW_RENAME opt_column? column_name KW_TO column_name_create - | KW_ALTER KW_MATERIALIZED KW_VIEW opt_if_exists? view_name KW_RENAME opt_column? column_name KW_TO column_name_create + | KW_ALTER KW_TABLE opt_if_exists? relation_expr KW_RENAME KW_COLUMN? column_name KW_TO column_name_create + | KW_ALTER KW_VIEW opt_if_exists? view_name KW_RENAME KW_COLUMN? column_name KW_TO column_name_create + | KW_ALTER KW_MATERIALIZED KW_VIEW opt_if_exists? view_name KW_RENAME KW_COLUMN? column_name KW_TO column_name_create | KW_ALTER KW_TABLE opt_if_exists? relation_expr KW_RENAME KW_CONSTRAINT name KW_TO name - | KW_ALTER KW_FOREIGN KW_TABLE opt_if_exists? relation_expr KW_RENAME opt_column? column_name KW_TO column_name_create + | KW_ALTER KW_FOREIGN KW_TABLE opt_if_exists? relation_expr KW_RENAME KW_COLUMN? column_name KW_TO column_name_create | KW_ALTER KW_RULE name KW_ON qualified_name KW_RENAME KW_TO name | KW_ALTER KW_TRIGGER name KW_ON qualified_name KW_RENAME KW_TO name | KW_ALTER KW_EVENT KW_TRIGGER name KW_RENAME KW_TO name @@ -2355,10 +2332,6 @@ renamestmt | KW_ALTER KW_TYPE any_name KW_RENAME KW_ATTRIBUTE name KW_TO name opt_drop_behavior? ; -opt_column - : KW_COLUMN - ; - opt_set_data : KW_SET KW_DATA ; @@ -2560,17 +2533,15 @@ transactionstmt : KW_ABORT opt_transaction? opt_transaction_chain? | KW_BEGIN opt_transaction? transaction_mode_list_or_empty? | KW_START KW_TRANSACTION transaction_mode_list_or_empty? - | KW_COMMIT opt_transaction? opt_transaction_chain? | KW_END opt_transaction? opt_transaction_chain? - | KW_ROLLBACK opt_transaction? opt_transaction_chain? | KW_SAVEPOINT colid - | KW_RELEASE KW_SAVEPOINT colid - | KW_RELEASE colid - | KW_ROLLBACK opt_transaction? KW_TO KW_SAVEPOINT colid - | KW_ROLLBACK opt_transaction? KW_TO colid + | KW_RELEASE KW_SAVEPOINT? colid | KW_PREPARE KW_TRANSACTION sconst | KW_COMMIT KW_PREPARED sconst + | KW_COMMIT opt_transaction? opt_transaction_chain? | KW_ROLLBACK KW_PREPARED sconst + | KW_ROLLBACK opt_transaction? KW_TO KW_SAVEPOINT? colid + | KW_ROLLBACK opt_transaction? opt_transaction_chain? ; opt_transaction @@ -2630,13 +2601,13 @@ createdb_opt_item ; createdb_opt_name - : identifier - | KW_CONNECTION KW_LIMIT + : KW_CONNECTION KW_LIMIT | KW_ENCODING | KW_LOCATION | KW_OWNER | KW_TABLESPACE | KW_TEMPLATE + | identifier ; opt_equal @@ -2645,9 +2616,8 @@ opt_equal alterdatabasestmt : KW_ALTER KW_DATABASE database_name ( - (KW_WITH? createdb_opt_list)? - | createdb_opt_list? - | (KW_SET KW_TABLESPACE tablespace_name_create)? + (KW_SET KW_TABLESPACE tablespace_name_create)? + | (KW_WITH? createdb_opt_list)? ) ; @@ -2869,10 +2839,7 @@ execute_param_clause ; deallocatestmt - : KW_DEALLOCATE name - | KW_DEALLOCATE KW_PREPARE name - | KW_DEALLOCATE KW_ALL - | KW_DEALLOCATE KW_PREPARE KW_ALL + : KW_DEALLOCATE KW_PREPARE? (name | KW_ALL) ; insertstmt @@ -3150,7 +3117,7 @@ fetch_clause ; offset_clause - : KW_OFFSET (select_offset_value | select_fetch_first_value row_or_rows) + : KW_OFFSET (select_fetch_first_value row_or_rows | select_offset_value) ; select_limit_value @@ -3163,9 +3130,9 @@ select_offset_value ; select_fetch_first_value - : c_expr - | PLUS i_or_f_const + : PLUS i_or_f_const | MINUS i_or_f_const + | c_expr ; i_or_f_const @@ -3303,13 +3270,13 @@ join_qual ; relation_expr - : KW_ONLY? table_name STAR? columnlist? where_clause? + : KW_ONLY? table_name STAR? | KW_ONLY ( table_name | OPEN_PAREN table_name CLOSE_PAREN) | KW_IN KW_SCHEMA (schema_name | KW_CURRENT_SCHEMA) ; view_relation_expr - : KW_ONLY? view_name STAR? columnlist? where_clause? + : KW_ONLY? view_name STAR? ; publication_relation_expr @@ -3737,7 +3704,6 @@ c_expr | PARAM opt_indirection # c_expr_expr | KW_GROUPING OPEN_PAREN expr_list CLOSE_PAREN # c_expr_expr | /*22*/ KW_UNIQUE select_with_parens # c_expr_expr - | columnref # c_expr_expr | aexprconst # c_expr_expr | plsqlvariablename # c_expr_expr | OPEN_PAREN a_expr_in_parens= a_expr CLOSE_PAREN opt_indirection # c_expr_expr @@ -3747,6 +3713,7 @@ c_expr | explicit_row # c_expr_expr | implicit_row # c_expr_expr | row KW_OVERLAPS row /* 14*/ # c_expr_expr + | columnref # c_expr_expr ; plsqlvariablename @@ -3921,7 +3888,7 @@ explicit_row ; implicit_row - : OPEN_PAREN expr_list COMMA a_expr CLOSE_PAREN + : OPEN_PAREN a_expr COMMA expr_list CLOSE_PAREN ; sub_type @@ -4203,7 +4170,7 @@ procedure_name_create ; column_name - : colid + : colid indirection_el* ; column_name_create @@ -5509,7 +5476,6 @@ plsql_unreserved_keyword | KW_CHAIN | KW_CLOSE | KW_COLLATE - | KW_COLUMN //| COLUMN_NAME | KW_COMMIT | KW_CONSTANT diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index 3b1735e..bb3f7d9 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -716,8 +716,8 @@ setQuantifier ; relation - : KW_LATERAL? relationPrimary relationExtension* - | tableName + : tableName + | KW_LATERAL? relationPrimary relationExtension* ; relationExtension @@ -1940,7 +1940,6 @@ nonReserved | KW_SCHEMAS | KW_SECOND | KW_SECONDS - | KW_SELECT | KW_SEPARATED | KW_SERDE | KW_SERDEPROPERTIES diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index 25dd346..5c3b243 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -1932,10 +1932,7 @@ indexHintType joinPart joinSpec queryExpression -queryExpressionNointo querySpecification -querySpecificationNointo -unionParenthesis unionStatement lateralStatement jsonTable @@ -2218,4 +2215,4 @@ functionNameBase atn: -[4, 1, 895, 8106, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 1, 0, 5, 0, 842, 8, 0, 10, 0, 12, 0, 845, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 851, 8, 1, 1, 1, 3, 1, 854, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 863, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 906, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 925, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 936, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 952, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 957, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 969, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1004, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1014, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1019, 8, 12, 1, 12, 1, 12, 5, 12, 1023, 8, 12, 10, 12, 12, 12, 1026, 9, 12, 1, 13, 1, 13, 3, 13, 1030, 8, 13, 1, 13, 1, 13, 3, 13, 1034, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1043, 8, 13, 1, 13, 3, 13, 1046, 8, 13, 1, 13, 3, 13, 1049, 8, 13, 1, 13, 1, 13, 3, 13, 1053, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1060, 8, 14, 1, 14, 3, 14, 1063, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1068, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1074, 8, 14, 10, 14, 12, 14, 1077, 9, 14, 1, 14, 1, 14, 3, 14, 1081, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1086, 8, 14, 1, 14, 5, 14, 1089, 8, 14, 10, 14, 12, 14, 1092, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1103, 8, 15, 1, 15, 3, 15, 1106, 8, 15, 1, 15, 1, 15, 3, 15, 1110, 8, 15, 1, 15, 3, 15, 1113, 8, 15, 1, 15, 1, 15, 3, 15, 1117, 8, 15, 1, 15, 3, 15, 1120, 8, 15, 1, 15, 1, 15, 3, 15, 1124, 8, 15, 1, 15, 3, 15, 1127, 8, 15, 1, 15, 3, 15, 1130, 8, 15, 1, 15, 1, 15, 3, 15, 1134, 8, 15, 1, 15, 3, 15, 1137, 8, 15, 1, 15, 1, 15, 3, 15, 1141, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1147, 8, 16, 1, 16, 1, 16, 3, 16, 1151, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1156, 8, 16, 1, 16, 1, 16, 5, 16, 1160, 8, 16, 10, 16, 12, 16, 1163, 9, 16, 1, 16, 1, 16, 5, 16, 1167, 8, 16, 10, 16, 12, 16, 1170, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1177, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1193, 8, 18, 10, 18, 12, 18, 1196, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1202, 8, 19, 1, 19, 1, 19, 3, 19, 1206, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1212, 8, 19, 1, 19, 5, 19, 1215, 8, 19, 10, 19, 12, 19, 1218, 9, 19, 3, 19, 1220, 8, 19, 1, 19, 3, 19, 1223, 8, 19, 1, 19, 1, 19, 3, 19, 1227, 8, 19, 1, 19, 1, 19, 3, 19, 1231, 8, 19, 1, 19, 1, 19, 3, 19, 1235, 8, 19, 1, 19, 1, 19, 3, 19, 1239, 8, 19, 1, 19, 5, 19, 1242, 8, 19, 10, 19, 12, 19, 1245, 9, 19, 3, 19, 1247, 8, 19, 1, 19, 3, 19, 1250, 8, 19, 1, 19, 3, 19, 1253, 8, 19, 1, 19, 3, 19, 1256, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1262, 8, 19, 1, 19, 1, 19, 3, 19, 1266, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1276, 8, 19, 3, 19, 1278, 8, 19, 1, 20, 1, 20, 3, 20, 1282, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1289, 8, 20, 1, 20, 1, 20, 3, 20, 1293, 8, 20, 1, 20, 3, 20, 1296, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1301, 8, 20, 1, 20, 1, 20, 3, 20, 1305, 8, 20, 1, 20, 3, 20, 1308, 8, 20, 1, 20, 1, 20, 3, 20, 1312, 8, 20, 1, 20, 3, 20, 1315, 8, 20, 1, 21, 1, 21, 3, 21, 1319, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1332, 8, 21, 1, 21, 3, 21, 1335, 8, 21, 1, 21, 1, 21, 3, 21, 1339, 8, 21, 1, 21, 3, 21, 1342, 8, 21, 1, 21, 1, 21, 3, 21, 1346, 8, 21, 1, 21, 3, 21, 1349, 8, 21, 1, 21, 1, 21, 3, 21, 1353, 8, 21, 1, 21, 3, 21, 1356, 8, 21, 1, 21, 1, 21, 3, 21, 1360, 8, 21, 1, 21, 3, 21, 1363, 8, 21, 1, 21, 3, 21, 1366, 8, 21, 1, 21, 1, 21, 3, 21, 1370, 8, 21, 1, 21, 3, 21, 1373, 8, 21, 1, 21, 1, 21, 3, 21, 1377, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1383, 8, 22, 1, 22, 1, 22, 3, 22, 1387, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1399, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 1405, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1414, 8, 24, 10, 24, 12, 24, 1417, 9, 24, 1, 24, 1, 24, 3, 24, 1421, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1429, 8, 24, 1, 25, 1, 25, 3, 25, 1433, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1438, 8, 25, 1, 25, 3, 25, 1441, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1446, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1454, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1459, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1465, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1470, 8, 25, 1, 25, 1, 25, 3, 25, 1474, 8, 25, 3, 25, 1476, 8, 25, 1, 26, 3, 26, 1479, 8, 26, 1, 26, 1, 26, 3, 26, 1483, 8, 26, 1, 26, 1, 26, 3, 26, 1487, 8, 26, 1, 26, 3, 26, 1490, 8, 26, 1, 26, 1, 26, 3, 26, 1494, 8, 26, 1, 26, 1, 26, 3, 26, 1498, 8, 26, 1, 26, 1, 26, 3, 26, 1502, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1508, 8, 26, 1, 26, 3, 26, 1511, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1518, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 1523, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1529, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 1534, 8, 30, 10, 30, 12, 30, 1537, 9, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1542, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1548, 8, 30, 10, 30, 12, 30, 1551, 9, 30, 3, 30, 1553, 8, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1558, 8, 30, 10, 30, 12, 30, 1561, 9, 30, 3, 30, 1563, 8, 30, 3, 30, 1565, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1571, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1577, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1594, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1601, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 1608, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1620, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1625, 8, 36, 1, 36, 3, 36, 1628, 8, 36, 1, 37, 3, 37, 1631, 8, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1641, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1654, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1659, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1675, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 1681, 8, 40, 10, 40, 12, 40, 1684, 9, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1693, 8, 41, 1, 41, 3, 41, 1696, 8, 41, 1, 41, 1, 41, 5, 41, 1700, 8, 41, 10, 41, 12, 41, 1703, 9, 41, 1, 41, 1, 41, 3, 41, 1707, 8, 41, 1, 41, 3, 41, 1710, 8, 41, 1, 41, 1, 41, 5, 41, 1714, 8, 41, 10, 41, 12, 41, 1717, 9, 41, 1, 41, 3, 41, 1720, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1725, 8, 41, 1, 41, 1, 41, 5, 41, 1729, 8, 41, 10, 41, 12, 41, 1732, 9, 41, 1, 41, 3, 41, 1735, 8, 41, 1, 41, 1, 41, 3, 41, 1739, 8, 41, 1, 41, 3, 41, 1742, 8, 41, 1, 41, 3, 41, 1745, 8, 41, 1, 41, 1, 41, 5, 41, 1749, 8, 41, 10, 41, 12, 41, 1752, 9, 41, 1, 41, 3, 41, 1755, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1760, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1771, 8, 41, 1, 42, 3, 42, 1774, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1781, 8, 42, 1, 42, 3, 42, 1784, 8, 42, 1, 43, 1, 43, 3, 43, 1788, 8, 43, 1, 44, 1, 44, 5, 44, 1792, 8, 44, 10, 44, 12, 44, 1795, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1806, 8, 45, 1, 45, 3, 45, 1809, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1814, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1827, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1834, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1840, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1845, 8, 46, 1, 46, 1, 46, 3, 46, 1849, 8, 46, 1, 46, 3, 46, 1852, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1860, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1868, 8, 47, 3, 47, 1870, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1880, 8, 48, 1, 49, 1, 49, 3, 49, 1884, 8, 49, 1, 49, 3, 49, 1887, 8, 49, 1, 49, 1, 49, 3, 49, 1891, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1896, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1901, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1906, 8, 49, 1, 49, 1, 49, 3, 49, 1910, 8, 49, 1, 49, 1, 49, 3, 49, 1914, 8, 49, 1, 49, 1, 49, 3, 49, 1918, 8, 49, 1, 49, 1, 49, 3, 49, 1922, 8, 49, 1, 49, 1, 49, 3, 49, 1926, 8, 49, 1, 49, 1, 49, 3, 49, 1930, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1935, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1940, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1945, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1951, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1956, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1961, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1966, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1971, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1976, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1982, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1987, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1992, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1997, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2002, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2007, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2012, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2017, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2024, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2029, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2034, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2039, 8, 49, 1, 49, 1, 49, 3, 49, 2043, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2048, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2056, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2061, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2067, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2079, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2086, 8, 52, 3, 52, 2088, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 2094, 8, 52, 10, 52, 12, 52, 2097, 9, 52, 1, 52, 1, 52, 3, 52, 2101, 8, 52, 1, 53, 3, 53, 2104, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2112, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2118, 8, 53, 1, 53, 1, 53, 3, 53, 2122, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2135, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2147, 8, 53, 3, 53, 2149, 8, 53, 1, 54, 3, 54, 2152, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2160, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2166, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2172, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2183, 8, 55, 10, 55, 12, 55, 2186, 9, 55, 1, 55, 1, 55, 5, 55, 2190, 8, 55, 10, 55, 12, 55, 2193, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2199, 8, 55, 10, 55, 12, 55, 2202, 9, 55, 1, 55, 1, 55, 3, 55, 2206, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2215, 8, 55, 10, 55, 12, 55, 2218, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2224, 8, 55, 10, 55, 12, 55, 2227, 9, 55, 1, 55, 1, 55, 3, 55, 2231, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2241, 8, 55, 10, 55, 12, 55, 2244, 9, 55, 1, 55, 1, 55, 5, 55, 2248, 8, 55, 10, 55, 12, 55, 2251, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2257, 8, 55, 10, 55, 12, 55, 2260, 9, 55, 1, 55, 1, 55, 3, 55, 2264, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2274, 8, 55, 10, 55, 12, 55, 2277, 9, 55, 1, 55, 1, 55, 5, 55, 2281, 8, 55, 10, 55, 12, 55, 2284, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2290, 8, 55, 10, 55, 12, 55, 2293, 9, 55, 1, 55, 1, 55, 3, 55, 2297, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2302, 8, 55, 10, 55, 12, 55, 2305, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2311, 8, 55, 10, 55, 12, 55, 2314, 9, 55, 1, 55, 1, 55, 3, 55, 2318, 8, 55, 3, 55, 2320, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2325, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 4, 57, 2331, 8, 57, 11, 57, 12, 57, 2332, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 2340, 8, 58, 10, 58, 12, 58, 2343, 9, 58, 1, 59, 3, 59, 2346, 8, 59, 1, 59, 3, 59, 2349, 8, 59, 1, 59, 1, 59, 3, 59, 2353, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2358, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2364, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2370, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2375, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2380, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2385, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2390, 8, 59, 1, 59, 3, 59, 2393, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2398, 8, 60, 1, 60, 4, 60, 2401, 8, 60, 11, 60, 12, 60, 2402, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2413, 8, 60, 1, 61, 1, 61, 3, 61, 2417, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2424, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2429, 8, 61, 1, 61, 3, 61, 2432, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2437, 8, 61, 1, 61, 3, 61, 2440, 8, 61, 1, 61, 1, 61, 3, 61, 2444, 8, 61, 1, 61, 1, 61, 3, 61, 2448, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2454, 8, 62, 10, 62, 12, 62, 2457, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2475, 8, 64, 1, 64, 3, 64, 2478, 8, 64, 1, 64, 3, 64, 2481, 8, 64, 1, 64, 1, 64, 3, 64, 2485, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2493, 8, 65, 10, 65, 12, 65, 2496, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2506, 8, 66, 10, 66, 12, 66, 2509, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2519, 8, 67, 10, 67, 12, 67, 2522, 9, 67, 3, 67, 2524, 8, 67, 1, 67, 1, 67, 5, 67, 2528, 8, 67, 10, 67, 12, 67, 2531, 9, 67, 3, 67, 2533, 8, 67, 1, 68, 1, 68, 3, 68, 2537, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2546, 8, 68, 1, 68, 3, 68, 2549, 8, 68, 1, 68, 3, 68, 2552, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2557, 8, 68, 1, 68, 1, 68, 3, 68, 2561, 8, 68, 1, 68, 3, 68, 2564, 8, 68, 1, 68, 1, 68, 3, 68, 2568, 8, 68, 1, 68, 1, 68, 3, 68, 2572, 8, 68, 1, 68, 3, 68, 2575, 8, 68, 1, 68, 1, 68, 3, 68, 2579, 8, 68, 1, 68, 3, 68, 2582, 8, 68, 1, 68, 1, 68, 3, 68, 2586, 8, 68, 1, 68, 3, 68, 2589, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2595, 8, 69, 1, 69, 3, 69, 2598, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2603, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2611, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2617, 8, 69, 1, 69, 1, 69, 3, 69, 2621, 8, 69, 1, 70, 1, 70, 3, 70, 2625, 8, 70, 1, 70, 5, 70, 2628, 8, 70, 10, 70, 12, 70, 2631, 9, 70, 1, 70, 1, 70, 3, 70, 2635, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2642, 8, 70, 1, 70, 1, 70, 3, 70, 2646, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2655, 8, 70, 10, 70, 12, 70, 2658, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2665, 8, 70, 1, 70, 3, 70, 2668, 8, 70, 1, 70, 1, 70, 5, 70, 2672, 8, 70, 10, 70, 12, 70, 2675, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2680, 8, 70, 1, 70, 3, 70, 2683, 8, 70, 1, 70, 1, 70, 5, 70, 2687, 8, 70, 10, 70, 12, 70, 2690, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2695, 8, 70, 3, 70, 2697, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2702, 8, 70, 1, 70, 1, 70, 5, 70, 2706, 8, 70, 10, 70, 12, 70, 2709, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2714, 8, 70, 3, 70, 2716, 8, 70, 1, 70, 1, 70, 3, 70, 2720, 8, 70, 1, 70, 3, 70, 2723, 8, 70, 1, 70, 3, 70, 2726, 8, 70, 1, 70, 1, 70, 5, 70, 2730, 8, 70, 10, 70, 12, 70, 2733, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2738, 8, 70, 3, 70, 2740, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2745, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2752, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2761, 8, 70, 1, 70, 3, 70, 2764, 8, 70, 1, 70, 1, 70, 3, 70, 2768, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2773, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2783, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2792, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2800, 8, 70, 1, 70, 3, 70, 2803, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2811, 8, 70, 1, 70, 3, 70, 2814, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2821, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2826, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2834, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2850, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2855, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2862, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2881, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2887, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2895, 8, 71, 10, 71, 12, 71, 2898, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2909, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2916, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2923, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2936, 8, 71, 10, 71, 12, 71, 2939, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2951, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2957, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2963, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2969, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2975, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2981, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2987, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2992, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 3, 73, 2999, 8, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 3, 74, 3006, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3013, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3018, 8, 74, 1, 74, 5, 74, 3021, 8, 74, 10, 74, 12, 74, 3024, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 3032, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3039, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3046, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 3, 78, 3053, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 3062, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 3068, 8, 80, 1, 80, 1, 80, 3, 80, 3072, 8, 80, 1, 80, 1, 80, 3, 80, 3076, 8, 80, 1, 81, 1, 81, 3, 81, 3080, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 3086, 8, 81, 1, 81, 3, 81, 3089, 8, 81, 1, 82, 1, 82, 1, 82, 3, 82, 3094, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 3, 83, 3101, 8, 83, 1, 83, 1, 83, 1, 83, 5, 83, 3106, 8, 83, 10, 83, 12, 83, 3109, 9, 83, 1, 83, 3, 83, 3112, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 3117, 8, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3127, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 3133, 8, 85, 10, 85, 12, 85, 3136, 9, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3141, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3148, 8, 86, 10, 86, 12, 86, 3151, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 3, 88, 3159, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 3168, 8, 89, 1, 89, 3, 89, 3171, 8, 89, 1, 90, 1, 90, 3, 90, 3175, 8, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3184, 8, 92, 1, 93, 1, 93, 3, 93, 3188, 8, 93, 1, 93, 3, 93, 3191, 8, 93, 1, 93, 3, 93, 3194, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 3200, 8, 93, 1, 93, 3, 93, 3203, 8, 93, 1, 93, 3, 93, 3206, 8, 93, 1, 93, 1, 93, 3, 93, 3210, 8, 93, 1, 93, 3, 93, 3213, 8, 93, 1, 93, 3, 93, 3216, 8, 93, 1, 93, 3, 93, 3219, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 3228, 8, 93, 10, 93, 12, 93, 3231, 9, 93, 3, 93, 3233, 8, 93, 1, 94, 1, 94, 1, 94, 3, 94, 3238, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3244, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 3249, 8, 96, 1, 96, 4, 96, 3252, 8, 96, 11, 96, 12, 96, 3253, 1, 97, 3, 97, 3257, 8, 97, 1, 97, 1, 97, 3, 97, 3261, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 3266, 8, 98, 1, 98, 3, 98, 3269, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3274, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3284, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3289, 8, 98, 1, 98, 1, 98, 4, 98, 3293, 8, 98, 11, 98, 12, 98, 3294, 3, 98, 3297, 8, 98, 1, 98, 1, 98, 4, 98, 3301, 8, 98, 11, 98, 12, 98, 3302, 3, 98, 3305, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3311, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3317, 8, 98, 10, 98, 12, 98, 3320, 9, 98, 1, 98, 1, 98, 3, 98, 3324, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3330, 8, 98, 10, 98, 12, 98, 3333, 9, 98, 3, 98, 3335, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3340, 8, 99, 1, 99, 3, 99, 3343, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3348, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3356, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3362, 8, 99, 1, 99, 1, 99, 3, 99, 3366, 8, 99, 3, 99, 3368, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3374, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3380, 8, 99, 10, 99, 12, 99, 3383, 9, 99, 1, 99, 1, 99, 3, 99, 3387, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3393, 8, 99, 10, 99, 12, 99, 3396, 9, 99, 3, 99, 3398, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 3403, 8, 100, 1, 100, 3, 100, 3406, 8, 100, 1, 100, 1, 100, 3, 100, 3410, 8, 100, 1, 100, 3, 100, 3413, 8, 100, 1, 100, 3, 100, 3416, 8, 100, 1, 101, 1, 101, 3, 101, 3420, 8, 101, 1, 101, 3, 101, 3423, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3431, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3437, 8, 101, 1, 101, 1, 101, 3, 101, 3441, 8, 101, 1, 102, 1, 102, 3, 102, 3445, 8, 102, 1, 102, 1, 102, 3, 102, 3449, 8, 102, 1, 102, 3, 102, 3452, 8, 102, 1, 102, 1, 102, 3, 102, 3456, 8, 102, 1, 102, 1, 102, 4, 102, 3460, 8, 102, 11, 102, 12, 102, 3461, 1, 102, 1, 102, 3, 102, 3466, 8, 102, 1, 102, 1, 102, 3, 102, 3470, 8, 102, 3, 102, 3472, 8, 102, 1, 102, 3, 102, 3475, 8, 102, 1, 102, 3, 102, 3478, 8, 102, 1, 102, 3, 102, 3481, 8, 102, 1, 102, 1, 102, 4, 102, 3485, 8, 102, 11, 102, 12, 102, 3486, 1, 102, 1, 102, 3, 102, 3491, 8, 102, 1, 102, 3, 102, 3494, 8, 102, 1, 102, 3, 102, 3497, 8, 102, 1, 102, 3, 102, 3500, 8, 102, 1, 102, 3, 102, 3503, 8, 102, 1, 102, 1, 102, 1, 102, 4, 102, 3508, 8, 102, 11, 102, 12, 102, 3509, 3, 102, 3512, 8, 102, 1, 103, 3, 103, 3515, 8, 103, 1, 103, 1, 103, 3, 103, 3519, 8, 103, 1, 103, 3, 103, 3522, 8, 103, 1, 103, 3, 103, 3525, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3533, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3539, 8, 104, 1, 104, 5, 104, 3542, 8, 104, 10, 104, 12, 104, 3545, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3553, 8, 105, 1, 105, 5, 105, 3556, 8, 105, 10, 105, 12, 105, 3559, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3565, 8, 106, 1, 106, 3, 106, 3568, 8, 106, 1, 106, 3, 106, 3571, 8, 106, 1, 106, 1, 106, 3, 106, 3575, 8, 106, 1, 107, 1, 107, 3, 107, 3579, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3585, 8, 108, 1, 108, 1, 108, 3, 108, 3589, 8, 108, 1, 109, 1, 109, 1, 109, 5, 109, 3594, 8, 109, 10, 109, 12, 109, 3597, 9, 109, 1, 109, 3, 109, 3600, 8, 109, 1, 109, 3, 109, 3603, 8, 109, 1, 109, 3, 109, 3606, 8, 109, 1, 110, 1, 110, 1, 110, 3, 110, 3611, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3618, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3626, 8, 112, 10, 112, 12, 112, 3629, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3635, 8, 113, 10, 113, 12, 113, 3638, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 3, 115, 3646, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3654, 8, 116, 10, 116, 12, 116, 3657, 9, 116, 3, 116, 3659, 8, 116, 1, 116, 1, 116, 3, 116, 3663, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3669, 8, 116, 1, 117, 1, 117, 3, 117, 3673, 8, 117, 1, 117, 3, 117, 3676, 8, 117, 1, 117, 3, 117, 3679, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3684, 8, 117, 1, 117, 3, 117, 3687, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3694, 8, 117, 1, 117, 1, 117, 3, 117, 3698, 8, 117, 1, 117, 3, 117, 3701, 8, 117, 1, 117, 1, 117, 3, 117, 3705, 8, 117, 1, 118, 1, 118, 3, 118, 3709, 8, 118, 1, 118, 3, 118, 3712, 8, 118, 1, 118, 3, 118, 3715, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3720, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3726, 8, 118, 5, 118, 3728, 8, 118, 10, 118, 12, 118, 3731, 9, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3740, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3746, 8, 118, 5, 118, 3748, 8, 118, 10, 118, 12, 118, 3751, 9, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3756, 8, 118, 1, 118, 1, 118, 3, 118, 3760, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3766, 8, 119, 1, 119, 3, 119, 3769, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3781, 8, 120, 1, 120, 1, 120, 3, 120, 3785, 8, 120, 1, 120, 1, 120, 3, 120, 3789, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3797, 8, 121, 1, 121, 1, 121, 3, 121, 3801, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3813, 8, 123, 10, 123, 12, 123, 3816, 9, 123, 1, 124, 1, 124, 3, 124, 3820, 8, 124, 1, 124, 3, 124, 3823, 8, 124, 1, 124, 1, 124, 3, 124, 3827, 8, 124, 1, 124, 3, 124, 3830, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3836, 8, 124, 10, 124, 12, 124, 3839, 9, 124, 1, 124, 1, 124, 3, 124, 3843, 8, 124, 1, 124, 3, 124, 3846, 8, 124, 1, 124, 3, 124, 3849, 8, 124, 1, 125, 1, 125, 3, 125, 3853, 8, 125, 1, 125, 3, 125, 3856, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3863, 8, 125, 10, 125, 12, 125, 3866, 9, 125, 1, 125, 1, 125, 3, 125, 3870, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3877, 8, 126, 10, 126, 12, 126, 3880, 9, 126, 1, 127, 1, 127, 3, 127, 3884, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3889, 8, 128, 10, 128, 12, 128, 3892, 9, 128, 1, 129, 1, 129, 5, 129, 3896, 8, 129, 10, 129, 12, 129, 3899, 9, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3904, 8, 129, 10, 129, 12, 129, 3907, 9, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3912, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3920, 8, 130, 1, 130, 3, 130, 3923, 8, 130, 1, 130, 3, 130, 3926, 8, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3931, 8, 130, 10, 130, 12, 130, 3934, 9, 130, 3, 130, 3936, 8, 130, 1, 130, 3, 130, 3939, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3946, 8, 130, 1, 130, 3, 130, 3949, 8, 130, 1, 130, 1, 130, 3, 130, 3953, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3959, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3969, 8, 132, 1, 132, 1, 132, 3, 132, 3973, 8, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3982, 8, 133, 1, 134, 3, 134, 3985, 8, 134, 1, 134, 1, 134, 3, 134, 3989, 8, 134, 1, 134, 1, 134, 5, 134, 3993, 8, 134, 10, 134, 12, 134, 3996, 9, 134, 1, 134, 1, 134, 1, 134, 5, 134, 4001, 8, 134, 10, 134, 12, 134, 4004, 9, 134, 1, 134, 1, 134, 3, 134, 4008, 8, 134, 1, 134, 1, 134, 3, 134, 4012, 8, 134, 1, 134, 1, 134, 5, 134, 4016, 8, 134, 10, 134, 12, 134, 4019, 9, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4024, 8, 134, 1, 134, 3, 134, 4027, 8, 134, 3, 134, 4029, 8, 134, 1, 134, 1, 134, 3, 134, 4033, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4042, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4052, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4062, 8, 137, 1, 138, 1, 138, 5, 138, 4066, 8, 138, 10, 138, 12, 138, 4069, 9, 138, 1, 138, 1, 138, 3, 138, 4073, 8, 138, 1, 138, 1, 138, 3, 138, 4077, 8, 138, 1, 138, 3, 138, 4080, 8, 138, 1, 138, 3, 138, 4083, 8, 138, 1, 138, 3, 138, 4086, 8, 138, 1, 138, 3, 138, 4089, 8, 138, 1, 138, 1, 138, 5, 138, 4093, 8, 138, 10, 138, 12, 138, 4096, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4101, 8, 138, 1, 138, 3, 138, 4104, 8, 138, 1, 138, 3, 138, 4107, 8, 138, 1, 138, 3, 138, 4110, 8, 138, 1, 138, 3, 138, 4113, 8, 138, 1, 138, 3, 138, 4116, 8, 138, 3, 138, 4118, 8, 138, 1, 139, 1, 139, 5, 139, 4122, 8, 139, 10, 139, 12, 139, 4125, 9, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4130, 8, 139, 1, 139, 3, 139, 4133, 8, 139, 1, 139, 3, 139, 4136, 8, 139, 1, 139, 3, 139, 4139, 8, 139, 1, 139, 3, 139, 4142, 8, 139, 1, 140, 1, 140, 3, 140, 4146, 8, 140, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 4152, 8, 141, 1, 141, 1, 141, 3, 141, 4156, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4164, 8, 142, 1, 142, 1, 142, 3, 142, 4168, 8, 142, 1, 142, 3, 142, 4171, 8, 142, 3, 142, 4173, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4186, 8, 143, 1, 143, 3, 143, 4189, 8, 143, 1, 144, 1, 144, 1, 144, 5, 144, 4194, 8, 144, 10, 144, 12, 144, 4197, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4206, 8, 145, 1, 145, 3, 145, 4209, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4214, 8, 145, 3, 145, 4216, 8, 145, 1, 145, 1, 145, 3, 145, 4220, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4228, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4234, 8, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4243, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4256, 8, 148, 1, 149, 1, 149, 3, 149, 4260, 8, 149, 1, 149, 1, 149, 5, 149, 4264, 8, 149, 10, 149, 12, 149, 4267, 9, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 4275, 8, 150, 1, 150, 3, 150, 4278, 8, 150, 1, 150, 1, 150, 3, 150, 4282, 8, 150, 1, 150, 3, 150, 4285, 8, 150, 1, 150, 1, 150, 3, 150, 4289, 8, 150, 1, 150, 1, 150, 3, 150, 4293, 8, 150, 1, 150, 3, 150, 4296, 8, 150, 3, 150, 4298, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 4304, 8, 151, 10, 151, 12, 151, 4307, 9, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 4318, 8, 151, 1, 151, 1, 151, 4, 151, 4322, 8, 151, 11, 151, 12, 151, 4323, 3, 151, 4326, 8, 151, 1, 151, 1, 151, 4, 151, 4330, 8, 151, 11, 151, 12, 151, 4331, 3, 151, 4334, 8, 151, 3, 151, 4336, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 4342, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 4350, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 4358, 8, 153, 1, 154, 1, 154, 3, 154, 4362, 8, 154, 1, 154, 1, 154, 3, 154, 4366, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 4373, 8, 155, 10, 155, 12, 155, 4376, 9, 155, 1, 155, 1, 155, 3, 155, 4380, 8, 155, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 4398, 8, 157, 10, 157, 12, 157, 4401, 9, 157, 1, 158, 1, 158, 3, 158, 4405, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4411, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4418, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 4423, 8, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 4430, 8, 161, 10, 161, 12, 161, 4433, 9, 161, 3, 161, 4435, 8, 161, 1, 162, 1, 162, 3, 162, 4439, 8, 162, 1, 163, 1, 163, 3, 163, 4443, 8, 163, 1, 163, 1, 163, 3, 163, 4447, 8, 163, 1, 163, 3, 163, 4450, 8, 163, 1, 163, 3, 163, 4453, 8, 163, 1, 163, 3, 163, 4456, 8, 163, 1, 164, 1, 164, 3, 164, 4460, 8, 164, 1, 164, 1, 164, 3, 164, 4464, 8, 164, 1, 164, 3, 164, 4467, 8, 164, 1, 164, 3, 164, 4470, 8, 164, 1, 164, 3, 164, 4473, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 4480, 8, 166, 1, 166, 1, 166, 3, 166, 4484, 8, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 4497, 8, 168, 10, 168, 12, 168, 4500, 9, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4512, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4518, 8, 171, 10, 171, 12, 171, 4521, 9, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4530, 8, 172, 1, 173, 1, 173, 3, 173, 4534, 8, 173, 1, 173, 3, 173, 4537, 8, 173, 1, 173, 1, 173, 1, 174, 1, 174, 3, 174, 4543, 8, 174, 1, 174, 3, 174, 4546, 8, 174, 1, 174, 3, 174, 4549, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4558, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4567, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4575, 8, 177, 10, 177, 12, 177, 4578, 9, 177, 1, 177, 3, 177, 4581, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4589, 8, 178, 10, 178, 12, 178, 4592, 9, 178, 1, 178, 3, 178, 4595, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4604, 8, 179, 10, 179, 12, 179, 4607, 9, 179, 1, 179, 3, 179, 4610, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4619, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 5, 181, 4626, 8, 181, 10, 181, 12, 181, 4629, 9, 181, 3, 181, 4631, 8, 181, 1, 181, 1, 181, 3, 181, 4635, 8, 181, 1, 181, 5, 181, 4638, 8, 181, 10, 181, 12, 181, 4641, 9, 181, 1, 181, 3, 181, 4644, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4651, 8, 182, 10, 182, 12, 182, 4654, 9, 182, 3, 182, 4656, 8, 182, 1, 182, 3, 182, 4659, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4666, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4672, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4678, 8, 183, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 4702, 8, 185, 10, 185, 12, 185, 4705, 9, 185, 3, 185, 4707, 8, 185, 1, 185, 3, 185, 4710, 8, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4729, 8, 189, 3, 189, 4731, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4752, 8, 190, 10, 190, 12, 190, 4755, 9, 190, 3, 190, 4757, 8, 190, 1, 190, 3, 190, 4760, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4779, 8, 194, 3, 194, 4781, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4793, 8, 196, 10, 196, 12, 196, 4796, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4806, 8, 196, 10, 196, 12, 196, 4809, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4843, 8, 196, 10, 196, 12, 196, 4846, 9, 196, 1, 196, 1, 196, 3, 196, 4850, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4885, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4899, 8, 200, 1, 201, 1, 201, 1, 201, 5, 201, 4904, 8, 201, 10, 201, 12, 201, 4907, 9, 201, 1, 201, 3, 201, 4910, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4916, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4924, 8, 203, 3, 203, 4926, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4937, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4947, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4954, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4960, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 3, 211, 4968, 8, 211, 1, 212, 1, 212, 1, 212, 3, 212, 4973, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4979, 8, 212, 10, 212, 12, 212, 4982, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4987, 8, 212, 10, 212, 12, 212, 4990, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4995, 8, 212, 10, 212, 12, 212, 4998, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 5003, 8, 212, 10, 212, 12, 212, 5006, 9, 212, 1, 212, 5, 212, 5009, 8, 212, 10, 212, 12, 212, 5012, 9, 212, 1, 212, 1, 212, 3, 212, 5016, 8, 212, 1, 213, 1, 213, 1, 213, 3, 213, 5021, 8, 213, 1, 213, 4, 213, 5024, 8, 213, 11, 213, 12, 213, 5025, 1, 213, 1, 213, 4, 213, 5030, 8, 213, 11, 213, 12, 213, 5031, 3, 213, 5034, 8, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 4, 214, 5043, 8, 214, 11, 214, 12, 214, 5044, 1, 214, 5, 214, 5048, 8, 214, 10, 214, 12, 214, 5051, 9, 214, 1, 214, 1, 214, 4, 214, 5055, 8, 214, 11, 214, 12, 214, 5056, 3, 214, 5059, 8, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 3, 217, 5073, 8, 217, 1, 217, 1, 217, 4, 217, 5077, 8, 217, 11, 217, 12, 217, 5078, 1, 217, 1, 217, 1, 217, 3, 217, 5084, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5089, 8, 218, 1, 218, 1, 218, 4, 218, 5093, 8, 218, 11, 218, 12, 218, 5094, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5102, 8, 218, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 3, 220, 5110, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 4, 220, 5116, 8, 220, 11, 220, 12, 220, 5117, 1, 220, 1, 220, 1, 220, 3, 220, 5123, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5129, 8, 221, 1, 221, 3, 221, 5132, 8, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5140, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 5147, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5156, 8, 223, 1, 223, 3, 223, 5159, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 5174, 8, 225, 10, 225, 12, 225, 5177, 9, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 3, 226, 5184, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5192, 8, 226, 1, 227, 1, 227, 3, 227, 5196, 8, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 3, 228, 5203, 8, 228, 1, 228, 1, 228, 4, 228, 5207, 8, 228, 11, 228, 12, 228, 5208, 1, 229, 1, 229, 1, 229, 1, 229, 4, 229, 5215, 8, 229, 11, 229, 12, 229, 5216, 1, 230, 1, 230, 1, 230, 3, 230, 5222, 8, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5227, 8, 230, 10, 230, 12, 230, 5230, 9, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5235, 8, 230, 10, 230, 12, 230, 5238, 9, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5244, 8, 230, 1, 230, 5, 230, 5247, 8, 230, 10, 230, 12, 230, 5250, 9, 230, 3, 230, 5252, 8, 230, 3, 230, 5254, 8, 230, 1, 230, 1, 230, 4, 230, 5258, 8, 230, 11, 230, 12, 230, 5259, 3, 230, 5262, 8, 230, 1, 230, 1, 230, 5, 230, 5266, 8, 230, 10, 230, 12, 230, 5269, 9, 230, 1, 230, 1, 230, 3, 230, 5273, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5280, 8, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5285, 8, 231, 1, 231, 1, 231, 3, 231, 5289, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5294, 8, 231, 5, 231, 5296, 8, 231, 10, 231, 12, 231, 5299, 9, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5304, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5310, 8, 231, 1, 231, 5, 231, 5313, 8, 231, 10, 231, 12, 231, 5316, 9, 231, 3, 231, 5318, 8, 231, 3, 231, 5320, 8, 231, 1, 231, 1, 231, 4, 231, 5324, 8, 231, 11, 231, 12, 231, 5325, 3, 231, 5328, 8, 231, 1, 231, 1, 231, 5, 231, 5332, 8, 231, 10, 231, 12, 231, 5335, 9, 231, 1, 231, 1, 231, 3, 231, 5339, 8, 231, 1, 232, 1, 232, 1, 232, 3, 232, 5344, 8, 232, 1, 232, 1, 232, 1, 232, 5, 232, 5349, 8, 232, 10, 232, 12, 232, 5352, 9, 232, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5358, 8, 233, 10, 233, 12, 233, 5361, 9, 233, 1, 233, 1, 233, 3, 233, 5365, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5372, 8, 233, 10, 233, 12, 233, 5375, 9, 233, 1, 233, 3, 233, 5378, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5384, 8, 233, 1, 233, 5, 233, 5387, 8, 233, 10, 233, 12, 233, 5390, 9, 233, 3, 233, 5392, 8, 233, 3, 233, 5394, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5400, 8, 233, 10, 233, 12, 233, 5403, 9, 233, 3, 233, 5405, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5412, 8, 233, 3, 233, 5414, 8, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5419, 8, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5424, 8, 233, 10, 233, 12, 233, 5427, 9, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5433, 8, 233, 10, 233, 12, 233, 5436, 9, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5441, 8, 233, 3, 233, 5443, 8, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5450, 8, 234, 1, 234, 3, 234, 5453, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5463, 8, 235, 10, 235, 12, 235, 5466, 9, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5471, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5479, 8, 236, 1, 236, 3, 236, 5482, 8, 236, 1, 236, 1, 236, 3, 236, 5486, 8, 236, 1, 236, 3, 236, 5489, 8, 236, 1, 236, 1, 236, 3, 236, 5493, 8, 236, 3, 236, 5495, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5506, 8, 237, 1, 237, 3, 237, 5509, 8, 237, 1, 237, 1, 237, 3, 237, 5513, 8, 237, 1, 237, 3, 237, 5516, 8, 237, 1, 237, 3, 237, 5519, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5526, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 5, 239, 5536, 8, 239, 10, 239, 12, 239, 5539, 9, 239, 3, 239, 5541, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5548, 8, 240, 1, 240, 1, 240, 5, 240, 5552, 8, 240, 10, 240, 12, 240, 5555, 9, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 5, 241, 5562, 8, 241, 10, 241, 12, 241, 5565, 9, 241, 1, 242, 1, 242, 3, 242, 5569, 8, 242, 1, 242, 1, 242, 1, 242, 5, 242, 5574, 8, 242, 10, 242, 12, 242, 5577, 9, 242, 1, 242, 1, 242, 3, 242, 5581, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5587, 8, 242, 1, 242, 1, 242, 3, 242, 5591, 8, 242, 1, 242, 1, 242, 3, 242, 5595, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5603, 8, 242, 1, 242, 1, 242, 3, 242, 5607, 8, 242, 1, 242, 1, 242, 3, 242, 5611, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5617, 8, 242, 3, 242, 5619, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5631, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5636, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5642, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5648, 8, 245, 1, 245, 1, 245, 3, 245, 5652, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5657, 8, 245, 3, 245, 5659, 8, 245, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5691, 8, 247, 4, 247, 5693, 8, 247, 11, 247, 12, 247, 5694, 1, 247, 1, 247, 3, 247, 5699, 8, 247, 1, 247, 3, 247, 5702, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5711, 8, 248, 1, 248, 1, 248, 3, 248, 5715, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5724, 8, 248, 1, 248, 1, 248, 3, 248, 5728, 8, 248, 1, 248, 1, 248, 3, 248, 5732, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5738, 8, 248, 3, 248, 5740, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5749, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5759, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5786, 8, 250, 1, 251, 1, 251, 3, 251, 5790, 8, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5795, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5802, 8, 252, 1, 252, 3, 252, 5805, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5811, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5821, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5831, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5841, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5847, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5856, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5862, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5869, 8, 255, 3, 255, 5871, 8, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5879, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5885, 8, 257, 1, 257, 1, 257, 3, 257, 5889, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5906, 8, 258, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5916, 8, 260, 1, 261, 1, 261, 3, 261, 5920, 8, 261, 1, 261, 1, 261, 3, 261, 5924, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5934, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5939, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 6011, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 6029, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 3, 264, 6037, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6043, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6055, 8, 264, 1, 264, 1, 264, 3, 264, 6059, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6070, 8, 264, 1, 264, 1, 264, 3, 264, 6074, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6083, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 5, 265, 6089, 8, 265, 10, 265, 12, 265, 6092, 9, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6098, 8, 266, 1, 267, 1, 267, 3, 267, 6102, 8, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 6109, 8, 268, 1, 268, 1, 268, 1, 268, 3, 268, 6114, 8, 268, 1, 268, 3, 268, 6117, 8, 268, 1, 268, 3, 268, 6120, 8, 268, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 6131, 8, 270, 1, 271, 1, 271, 3, 271, 6135, 8, 271, 1, 271, 1, 271, 3, 271, 6139, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 5, 272, 6152, 8, 272, 10, 272, 12, 272, 6155, 9, 272, 1, 272, 1, 272, 1, 272, 1, 272, 5, 272, 6161, 8, 272, 10, 272, 12, 272, 6164, 9, 272, 3, 272, 6166, 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 5, 274, 6178, 8, 274, 10, 274, 12, 274, 6181, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6198, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6211, 8, 277, 1, 277, 3, 277, 6214, 8, 277, 1, 277, 1, 277, 3, 277, 6218, 8, 277, 1, 277, 3, 277, 6221, 8, 277, 3, 277, 6223, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6230, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6237, 8, 278, 5, 278, 6239, 8, 278, 10, 278, 12, 278, 6242, 9, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6248, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6255, 8, 278, 1, 278, 3, 278, 6258, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6272, 8, 278, 10, 278, 12, 278, 6275, 9, 278, 3, 278, 6277, 8, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6287, 8, 279, 1, 279, 1, 279, 3, 279, 6291, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6297, 8, 279, 1, 279, 3, 279, 6300, 8, 279, 1, 279, 3, 279, 6303, 8, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6308, 8, 279, 1, 279, 1, 279, 3, 279, 6312, 8, 279, 1, 279, 3, 279, 6315, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6322, 8, 279, 1, 279, 3, 279, 6325, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6331, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6367, 8, 279, 1, 279, 3, 279, 6370, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6382, 8, 279, 1, 279, 3, 279, 6385, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6401, 8, 279, 3, 279, 6403, 8, 279, 1, 279, 1, 279, 3, 279, 6407, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6414, 8, 279, 1, 279, 1, 279, 3, 279, 6418, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6425, 8, 279, 1, 279, 3, 279, 6428, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 5, 279, 6435, 8, 279, 10, 279, 12, 279, 6438, 9, 279, 3, 279, 6440, 8, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6445, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6451, 8, 279, 3, 279, 6453, 8, 279, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6459, 8, 279, 1, 279, 1, 279, 3, 279, 6463, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6469, 8, 280, 1, 280, 3, 280, 6472, 8, 280, 1, 280, 3, 280, 6475, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6488, 8, 281, 1, 281, 3, 281, 6491, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6497, 8, 282, 1, 283, 3, 283, 6500, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6508, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6516, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6522, 8, 284, 1, 284, 3, 284, 6525, 8, 284, 1, 284, 1, 284, 3, 284, 6529, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 6543, 8, 285, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 5, 287, 6553, 8, 287, 10, 287, 12, 287, 6556, 9, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6563, 8, 287, 1, 287, 1, 287, 3, 287, 6567, 8, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 3, 288, 6574, 8, 288, 1, 288, 1, 288, 1, 288, 5, 288, 6579, 8, 288, 10, 288, 12, 288, 6582, 9, 288, 1, 289, 1, 289, 3, 289, 6586, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6597, 8, 290, 10, 290, 12, 290, 6600, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6606, 8, 291, 10, 291, 12, 291, 6609, 9, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 6616, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6621, 8, 293, 1, 293, 3, 293, 6624, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6629, 8, 294, 1, 294, 3, 294, 6632, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6644, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6649, 8, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6662, 8, 298, 3, 298, 6664, 8, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6669, 8, 298, 1, 298, 1, 298, 3, 298, 6673, 8, 298, 1, 298, 3, 298, 6676, 8, 298, 3, 298, 6678, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6685, 8, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6692, 8, 300, 1, 300, 3, 300, 6695, 8, 300, 1, 300, 3, 300, 6698, 8, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6704, 8, 300, 1, 300, 1, 300, 3, 300, 6708, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6714, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6722, 8, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6731, 8, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6744, 8, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6749, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 5, 306, 6755, 8, 306, 10, 306, 12, 306, 6758, 9, 306, 3, 306, 6760, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6765, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6770, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 5, 307, 6776, 8, 307, 10, 307, 12, 307, 6779, 9, 307, 3, 307, 6781, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6789, 8, 308, 1, 309, 1, 309, 3, 309, 6793, 8, 309, 1, 309, 1, 309, 1, 309, 5, 309, 6798, 8, 309, 10, 309, 12, 309, 6801, 9, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6806, 8, 310, 1, 310, 3, 310, 6809, 8, 310, 1, 311, 1, 311, 3, 311, 6813, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6824, 8, 311, 10, 311, 12, 311, 6827, 9, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6832, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6842, 8, 311, 10, 311, 12, 311, 6845, 9, 311, 3, 311, 6847, 8, 311, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6856, 8, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6861, 8, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 5, 321, 6880, 8, 321, 10, 321, 12, 321, 6883, 9, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 5, 326, 6896, 8, 326, 10, 326, 12, 326, 6899, 9, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 5, 328, 6906, 8, 328, 10, 328, 12, 328, 6909, 9, 328, 1, 329, 1, 329, 3, 329, 6913, 8, 329, 1, 330, 1, 330, 1, 330, 3, 330, 6918, 8, 330, 3, 330, 6920, 8, 330, 1, 330, 3, 330, 6923, 8, 330, 1, 330, 1, 330, 3, 330, 6927, 8, 330, 3, 330, 6929, 8, 330, 1, 331, 1, 331, 1, 331, 5, 331, 6934, 8, 331, 10, 331, 12, 331, 6937, 9, 331, 1, 332, 1, 332, 1, 332, 3, 332, 6942, 8, 332, 3, 332, 6944, 8, 332, 1, 332, 3, 332, 6947, 8, 332, 1, 332, 1, 332, 3, 332, 6951, 8, 332, 3, 332, 6953, 8, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 5, 336, 6964, 8, 336, 10, 336, 12, 336, 6967, 9, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6976, 8, 338, 1, 338, 3, 338, 6979, 8, 338, 1, 338, 3, 338, 6982, 8, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6995, 8, 341, 1, 342, 1, 342, 1, 343, 1, 343, 3, 343, 7001, 8, 343, 1, 343, 3, 343, 7004, 8, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7012, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 3, 347, 7019, 8, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 4, 349, 7037, 8, 349, 11, 349, 12, 349, 7038, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 7046, 8, 350, 3, 350, 7048, 8, 350, 1, 351, 1, 351, 1, 351, 4, 351, 7053, 8, 351, 11, 351, 12, 351, 7054, 3, 351, 7057, 8, 351, 1, 352, 1, 352, 3, 352, 7061, 8, 352, 1, 353, 1, 353, 1, 353, 5, 353, 7066, 8, 353, 10, 353, 12, 353, 7069, 9, 353, 1, 354, 1, 354, 1, 354, 3, 354, 7074, 8, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7085, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7091, 8, 356, 1, 357, 1, 357, 1, 358, 1, 358, 3, 358, 7097, 8, 358, 1, 359, 3, 359, 7100, 8, 359, 1, 359, 1, 359, 3, 359, 7104, 8, 359, 1, 359, 4, 359, 7107, 8, 359, 11, 359, 12, 359, 7108, 1, 359, 3, 359, 7112, 8, 359, 1, 359, 1, 359, 3, 359, 7116, 8, 359, 1, 359, 1, 359, 3, 359, 7120, 8, 359, 3, 359, 7122, 8, 359, 1, 360, 1, 360, 1, 361, 3, 361, 7127, 8, 361, 1, 361, 1, 361, 1, 362, 3, 362, 7132, 8, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7145, 8, 363, 1, 363, 3, 363, 7148, 8, 363, 1, 364, 1, 364, 3, 364, 7152, 8, 364, 1, 364, 3, 364, 7155, 8, 364, 1, 364, 3, 364, 7158, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7163, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7168, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7174, 8, 364, 1, 364, 3, 364, 7177, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7182, 8, 364, 1, 364, 3, 364, 7185, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7190, 8, 364, 1, 364, 3, 364, 7193, 8, 364, 1, 364, 1, 364, 3, 364, 7197, 8, 364, 1, 364, 5, 364, 7200, 8, 364, 10, 364, 12, 364, 7203, 9, 364, 1, 364, 1, 364, 3, 364, 7207, 8, 364, 1, 364, 5, 364, 7210, 8, 364, 10, 364, 12, 364, 7213, 9, 364, 1, 364, 1, 364, 3, 364, 7217, 8, 364, 1, 364, 3, 364, 7220, 8, 364, 1, 364, 5, 364, 7223, 8, 364, 10, 364, 12, 364, 7226, 9, 364, 1, 364, 1, 364, 3, 364, 7230, 8, 364, 1, 364, 5, 364, 7233, 8, 364, 10, 364, 12, 364, 7236, 9, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7241, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7246, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7251, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7256, 8, 364, 1, 364, 1, 364, 3, 364, 7260, 8, 364, 1, 364, 3, 364, 7263, 8, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7268, 8, 364, 1, 364, 1, 364, 3, 364, 7272, 8, 364, 1, 364, 1, 364, 3, 364, 7276, 8, 364, 1, 365, 1, 365, 1, 365, 1, 365, 5, 365, 7282, 8, 365, 10, 365, 12, 365, 7285, 9, 365, 1, 365, 1, 365, 1, 366, 1, 366, 3, 366, 7291, 8, 366, 1, 366, 1, 366, 3, 366, 7295, 8, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7300, 8, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7305, 8, 366, 1, 366, 1, 366, 3, 366, 7309, 8, 366, 3, 366, 7311, 8, 366, 1, 366, 3, 366, 7314, 8, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7330, 8, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 5, 370, 7338, 8, 370, 10, 370, 12, 370, 7341, 9, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 5, 371, 7348, 8, 371, 10, 371, 12, 371, 7351, 9, 371, 1, 372, 1, 372, 1, 372, 1, 372, 5, 372, 7357, 8, 372, 10, 372, 12, 372, 7360, 9, 372, 1, 373, 1, 373, 1, 373, 1, 373, 5, 373, 7366, 8, 373, 10, 373, 12, 373, 7369, 9, 373, 1, 373, 1, 373, 1, 374, 1, 374, 3, 374, 7375, 8, 374, 1, 375, 1, 375, 1, 375, 5, 375, 7380, 8, 375, 10, 375, 12, 375, 7383, 9, 375, 1, 376, 1, 376, 1, 376, 5, 376, 7388, 8, 376, 10, 376, 12, 376, 7391, 9, 376, 1, 377, 1, 377, 1, 377, 5, 377, 7396, 8, 377, 10, 377, 12, 377, 7399, 9, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7410, 8, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7417, 8, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7427, 8, 378, 1, 379, 1, 379, 1, 379, 3, 379, 7432, 8, 379, 1, 379, 3, 379, 7435, 8, 379, 1, 379, 1, 379, 1, 379, 3, 379, 7440, 8, 379, 1, 379, 3, 379, 7443, 8, 379, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7461, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7468, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7473, 8, 383, 1, 384, 1, 384, 1, 384, 3, 384, 7478, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 4, 384, 7510, 8, 384, 11, 384, 12, 384, 7511, 1, 384, 1, 384, 3, 384, 7516, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 4, 384, 7522, 8, 384, 11, 384, 12, 384, 7523, 1, 384, 1, 384, 3, 384, 7528, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7537, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7545, 8, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7550, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7558, 8, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7563, 8, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7568, 8, 384, 3, 384, 7570, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7579, 8, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7584, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7592, 8, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7597, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7605, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7613, 8, 384, 1, 384, 3, 384, 7616, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7626, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7644, 8, 384, 1, 384, 3, 384, 7647, 8, 384, 1, 384, 3, 384, 7650, 8, 384, 1, 384, 1, 384, 3, 384, 7654, 8, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 5, 386, 7665, 8, 386, 10, 386, 12, 386, 7668, 9, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7675, 8, 386, 1, 387, 1, 387, 3, 387, 7679, 8, 387, 1, 388, 1, 388, 1, 388, 3, 388, 7684, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7689, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7695, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7700, 8, 388, 1, 388, 1, 388, 3, 388, 7704, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7709, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7714, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7719, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 5, 388, 7727, 8, 388, 10, 388, 12, 388, 7730, 9, 388, 3, 388, 7732, 8, 388, 1, 388, 1, 388, 3, 388, 7736, 8, 388, 1, 388, 1, 388, 3, 388, 7740, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7747, 8, 389, 1, 389, 1, 389, 3, 389, 7751, 8, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7780, 8, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7788, 8, 390, 1, 391, 3, 391, 7791, 8, 391, 1, 391, 3, 391, 7794, 8, 391, 1, 391, 3, 391, 7797, 8, 391, 1, 391, 3, 391, 7800, 8, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 3, 395, 7811, 8, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7825, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 5, 398, 7832, 8, 398, 10, 398, 12, 398, 7835, 9, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7861, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 5, 401, 7871, 8, 401, 10, 401, 12, 401, 7874, 9, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7880, 8, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7888, 8, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7893, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 5, 403, 7899, 8, 403, 10, 403, 12, 403, 7902, 9, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7913, 8, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7926, 8, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7932, 8, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7938, 8, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7954, 8, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7960, 8, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 5, 404, 7969, 8, 404, 10, 404, 12, 404, 7972, 9, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 5, 405, 7991, 8, 405, 10, 405, 12, 405, 7994, 9, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 4, 405, 8003, 8, 405, 11, 405, 12, 405, 8004, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 8022, 8, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 5, 405, 8039, 8, 405, 10, 405, 12, 405, 8042, 9, 405, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 8054, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 8063, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 8072, 8, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 3, 410, 8081, 8, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 8090, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 0, 5, 208, 210, 806, 808, 810, 420, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 76, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 578, 580, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9485, 0, 843, 1, 0, 0, 0, 2, 853, 1, 0, 0, 0, 4, 862, 1, 0, 0, 0, 6, 864, 1, 0, 0, 0, 8, 905, 1, 0, 0, 0, 10, 924, 1, 0, 0, 0, 12, 935, 1, 0, 0, 0, 14, 951, 1, 0, 0, 0, 16, 956, 1, 0, 0, 0, 18, 968, 1, 0, 0, 0, 20, 1003, 1, 0, 0, 0, 22, 1013, 1, 0, 0, 0, 24, 1015, 1, 0, 0, 0, 26, 1027, 1, 0, 0, 0, 28, 1057, 1, 0, 0, 0, 30, 1093, 1, 0, 0, 0, 32, 1144, 1, 0, 0, 0, 34, 1173, 1, 0, 0, 0, 36, 1180, 1, 0, 0, 0, 38, 1277, 1, 0, 0, 0, 40, 1279, 1, 0, 0, 0, 42, 1316, 1, 0, 0, 0, 44, 1380, 1, 0, 0, 0, 46, 1402, 1, 0, 0, 0, 48, 1408, 1, 0, 0, 0, 50, 1430, 1, 0, 0, 0, 52, 1510, 1, 0, 0, 0, 54, 1517, 1, 0, 0, 0, 56, 1519, 1, 0, 0, 0, 58, 1524, 1, 0, 0, 0, 60, 1564, 1, 0, 0, 0, 62, 1570, 1, 0, 0, 0, 64, 1572, 1, 0, 0, 0, 66, 1593, 1, 0, 0, 0, 68, 1600, 1, 0, 0, 0, 70, 1602, 1, 0, 0, 0, 72, 1627, 1, 0, 0, 0, 74, 1630, 1, 0, 0, 0, 76, 1658, 1, 0, 0, 0, 78, 1674, 1, 0, 0, 0, 80, 1676, 1, 0, 0, 0, 82, 1770, 1, 0, 0, 0, 84, 1773, 1, 0, 0, 0, 86, 1785, 1, 0, 0, 0, 88, 1789, 1, 0, 0, 0, 90, 1839, 1, 0, 0, 0, 92, 1841, 1, 0, 0, 0, 94, 1869, 1, 0, 0, 0, 96, 1879, 1, 0, 0, 0, 98, 2066, 1, 0, 0, 0, 100, 2068, 1, 0, 0, 0, 102, 2070, 1, 0, 0, 0, 104, 2073, 1, 0, 0, 0, 106, 2148, 1, 0, 0, 0, 108, 2171, 1, 0, 0, 0, 110, 2319, 1, 0, 0, 0, 112, 2324, 1, 0, 0, 0, 114, 2326, 1, 0, 0, 0, 116, 2336, 1, 0, 0, 0, 118, 2392, 1, 0, 0, 0, 120, 2412, 1, 0, 0, 0, 122, 2414, 1, 0, 0, 0, 124, 2449, 1, 0, 0, 0, 126, 2458, 1, 0, 0, 0, 128, 2465, 1, 0, 0, 0, 130, 2488, 1, 0, 0, 0, 132, 2497, 1, 0, 0, 0, 134, 2512, 1, 0, 0, 0, 136, 2534, 1, 0, 0, 0, 138, 2590, 1, 0, 0, 0, 140, 2886, 1, 0, 0, 0, 142, 2986, 1, 0, 0, 0, 144, 2988, 1, 0, 0, 0, 146, 2995, 1, 0, 0, 0, 148, 3002, 1, 0, 0, 0, 150, 3025, 1, 0, 0, 0, 152, 3035, 1, 0, 0, 0, 154, 3042, 1, 0, 0, 0, 156, 3049, 1, 0, 0, 0, 158, 3056, 1, 0, 0, 0, 160, 3065, 1, 0, 0, 0, 162, 3077, 1, 0, 0, 0, 164, 3090, 1, 0, 0, 0, 166, 3097, 1, 0, 0, 0, 168, 3113, 1, 0, 0, 0, 170, 3140, 1, 0, 0, 0, 172, 3142, 1, 0, 0, 0, 174, 3152, 1, 0, 0, 0, 176, 3156, 1, 0, 0, 0, 178, 3162, 1, 0, 0, 0, 180, 3174, 1, 0, 0, 0, 182, 3176, 1, 0, 0, 0, 184, 3183, 1, 0, 0, 0, 186, 3185, 1, 0, 0, 0, 188, 3234, 1, 0, 0, 0, 190, 3243, 1, 0, 0, 0, 192, 3245, 1, 0, 0, 0, 194, 3256, 1, 0, 0, 0, 196, 3262, 1, 0, 0, 0, 198, 3336, 1, 0, 0, 0, 200, 3399, 1, 0, 0, 0, 202, 3417, 1, 0, 0, 0, 204, 3511, 1, 0, 0, 0, 206, 3514, 1, 0, 0, 0, 208, 3526, 1, 0, 0, 0, 210, 3546, 1, 0, 0, 0, 212, 3574, 1, 0, 0, 0, 214, 3578, 1, 0, 0, 0, 216, 3580, 1, 0, 0, 0, 218, 3590, 1, 0, 0, 0, 220, 3610, 1, 0, 0, 0, 222, 3617, 1, 0, 0, 0, 224, 3619, 1, 0, 0, 0, 226, 3630, 1, 0, 0, 0, 228, 3639, 1, 0, 0, 0, 230, 3645, 1, 0, 0, 0, 232, 3668, 1, 0, 0, 0, 234, 3670, 1, 0, 0, 0, 236, 3706, 1, 0, 0, 0, 238, 3761, 1, 0, 0, 0, 240, 3770, 1, 0, 0, 0, 242, 3790, 1, 0, 0, 0, 244, 3802, 1, 0, 0, 0, 246, 3806, 1, 0, 0, 0, 248, 3817, 1, 0, 0, 0, 250, 3850, 1, 0, 0, 0, 252, 3871, 1, 0, 0, 0, 254, 3881, 1, 0, 0, 0, 256, 3885, 1, 0, 0, 0, 258, 3911, 1, 0, 0, 0, 260, 3958, 1, 0, 0, 0, 262, 3960, 1, 0, 0, 0, 264, 3964, 1, 0, 0, 0, 266, 3981, 1, 0, 0, 0, 268, 4032, 1, 0, 0, 0, 270, 4041, 1, 0, 0, 0, 272, 4051, 1, 0, 0, 0, 274, 4061, 1, 0, 0, 0, 276, 4117, 1, 0, 0, 0, 278, 4119, 1, 0, 0, 0, 280, 4143, 1, 0, 0, 0, 282, 4149, 1, 0, 0, 0, 284, 4157, 1, 0, 0, 0, 286, 4174, 1, 0, 0, 0, 288, 4190, 1, 0, 0, 0, 290, 4227, 1, 0, 0, 0, 292, 4233, 1, 0, 0, 0, 294, 4242, 1, 0, 0, 0, 296, 4255, 1, 0, 0, 0, 298, 4259, 1, 0, 0, 0, 300, 4297, 1, 0, 0, 0, 302, 4335, 1, 0, 0, 0, 304, 4349, 1, 0, 0, 0, 306, 4357, 1, 0, 0, 0, 308, 4361, 1, 0, 0, 0, 310, 4367, 1, 0, 0, 0, 312, 4381, 1, 0, 0, 0, 314, 4384, 1, 0, 0, 0, 316, 4402, 1, 0, 0, 0, 318, 4406, 1, 0, 0, 0, 320, 4422, 1, 0, 0, 0, 322, 4424, 1, 0, 0, 0, 324, 4436, 1, 0, 0, 0, 326, 4440, 1, 0, 0, 0, 328, 4457, 1, 0, 0, 0, 330, 4474, 1, 0, 0, 0, 332, 4477, 1, 0, 0, 0, 334, 4487, 1, 0, 0, 0, 336, 4491, 1, 0, 0, 0, 338, 4501, 1, 0, 0, 0, 340, 4504, 1, 0, 0, 0, 342, 4509, 1, 0, 0, 0, 344, 4529, 1, 0, 0, 0, 346, 4531, 1, 0, 0, 0, 348, 4548, 1, 0, 0, 0, 350, 4557, 1, 0, 0, 0, 352, 4566, 1, 0, 0, 0, 354, 4568, 1, 0, 0, 0, 356, 4582, 1, 0, 0, 0, 358, 4596, 1, 0, 0, 0, 360, 4611, 1, 0, 0, 0, 362, 4620, 1, 0, 0, 0, 364, 4645, 1, 0, 0, 0, 366, 4660, 1, 0, 0, 0, 368, 4679, 1, 0, 0, 0, 370, 4709, 1, 0, 0, 0, 372, 4711, 1, 0, 0, 0, 374, 4713, 1, 0, 0, 0, 376, 4715, 1, 0, 0, 0, 378, 4730, 1, 0, 0, 0, 380, 4759, 1, 0, 0, 0, 382, 4761, 1, 0, 0, 0, 384, 4763, 1, 0, 0, 0, 386, 4765, 1, 0, 0, 0, 388, 4780, 1, 0, 0, 0, 390, 4782, 1, 0, 0, 0, 392, 4849, 1, 0, 0, 0, 394, 4851, 1, 0, 0, 0, 396, 4857, 1, 0, 0, 0, 398, 4884, 1, 0, 0, 0, 400, 4898, 1, 0, 0, 0, 402, 4909, 1, 0, 0, 0, 404, 4911, 1, 0, 0, 0, 406, 4917, 1, 0, 0, 0, 408, 4927, 1, 0, 0, 0, 410, 4931, 1, 0, 0, 0, 412, 4938, 1, 0, 0, 0, 414, 4942, 1, 0, 0, 0, 416, 4948, 1, 0, 0, 0, 418, 4955, 1, 0, 0, 0, 420, 4961, 1, 0, 0, 0, 422, 4967, 1, 0, 0, 0, 424, 4972, 1, 0, 0, 0, 426, 5017, 1, 0, 0, 0, 428, 5038, 1, 0, 0, 0, 430, 5063, 1, 0, 0, 0, 432, 5066, 1, 0, 0, 0, 434, 5072, 1, 0, 0, 0, 436, 5088, 1, 0, 0, 0, 438, 5103, 1, 0, 0, 0, 440, 5109, 1, 0, 0, 0, 442, 5139, 1, 0, 0, 0, 444, 5141, 1, 0, 0, 0, 446, 5148, 1, 0, 0, 0, 448, 5160, 1, 0, 0, 0, 450, 5166, 1, 0, 0, 0, 452, 5191, 1, 0, 0, 0, 454, 5195, 1, 0, 0, 0, 456, 5199, 1, 0, 0, 0, 458, 5210, 1, 0, 0, 0, 460, 5218, 1, 0, 0, 0, 462, 5281, 1, 0, 0, 0, 464, 5340, 1, 0, 0, 0, 466, 5442, 1, 0, 0, 0, 468, 5452, 1, 0, 0, 0, 470, 5454, 1, 0, 0, 0, 472, 5472, 1, 0, 0, 0, 474, 5496, 1, 0, 0, 0, 476, 5520, 1, 0, 0, 0, 478, 5527, 1, 0, 0, 0, 480, 5547, 1, 0, 0, 0, 482, 5556, 1, 0, 0, 0, 484, 5618, 1, 0, 0, 0, 486, 5620, 1, 0, 0, 0, 488, 5624, 1, 0, 0, 0, 490, 5658, 1, 0, 0, 0, 492, 5660, 1, 0, 0, 0, 494, 5701, 1, 0, 0, 0, 496, 5739, 1, 0, 0, 0, 498, 5758, 1, 0, 0, 0, 500, 5785, 1, 0, 0, 0, 502, 5789, 1, 0, 0, 0, 504, 5810, 1, 0, 0, 0, 506, 5820, 1, 0, 0, 0, 508, 5830, 1, 0, 0, 0, 510, 5870, 1, 0, 0, 0, 512, 5872, 1, 0, 0, 0, 514, 5875, 1, 0, 0, 0, 516, 5905, 1, 0, 0, 0, 518, 5907, 1, 0, 0, 0, 520, 5910, 1, 0, 0, 0, 522, 6010, 1, 0, 0, 0, 524, 6028, 1, 0, 0, 0, 526, 6030, 1, 0, 0, 0, 528, 6082, 1, 0, 0, 0, 530, 6084, 1, 0, 0, 0, 532, 6093, 1, 0, 0, 0, 534, 6099, 1, 0, 0, 0, 536, 6106, 1, 0, 0, 0, 538, 6121, 1, 0, 0, 0, 540, 6130, 1, 0, 0, 0, 542, 6132, 1, 0, 0, 0, 544, 6146, 1, 0, 0, 0, 546, 6167, 1, 0, 0, 0, 548, 6172, 1, 0, 0, 0, 550, 6182, 1, 0, 0, 0, 552, 6188, 1, 0, 0, 0, 554, 6222, 1, 0, 0, 0, 556, 6276, 1, 0, 0, 0, 558, 6462, 1, 0, 0, 0, 560, 6474, 1, 0, 0, 0, 562, 6490, 1, 0, 0, 0, 564, 6496, 1, 0, 0, 0, 566, 6515, 1, 0, 0, 0, 568, 6528, 1, 0, 0, 0, 570, 6542, 1, 0, 0, 0, 572, 6544, 1, 0, 0, 0, 574, 6547, 1, 0, 0, 0, 576, 6571, 1, 0, 0, 0, 578, 6583, 1, 0, 0, 0, 580, 6589, 1, 0, 0, 0, 582, 6601, 1, 0, 0, 0, 584, 6615, 1, 0, 0, 0, 586, 6617, 1, 0, 0, 0, 588, 6625, 1, 0, 0, 0, 590, 6633, 1, 0, 0, 0, 592, 6635, 1, 0, 0, 0, 594, 6637, 1, 0, 0, 0, 596, 6677, 1, 0, 0, 0, 598, 6684, 1, 0, 0, 0, 600, 6686, 1, 0, 0, 0, 602, 6709, 1, 0, 0, 0, 604, 6715, 1, 0, 0, 0, 606, 6725, 1, 0, 0, 0, 608, 6734, 1, 0, 0, 0, 610, 6737, 1, 0, 0, 0, 612, 6740, 1, 0, 0, 0, 614, 6761, 1, 0, 0, 0, 616, 6782, 1, 0, 0, 0, 618, 6790, 1, 0, 0, 0, 620, 6802, 1, 0, 0, 0, 622, 6810, 1, 0, 0, 0, 624, 6848, 1, 0, 0, 0, 626, 6860, 1, 0, 0, 0, 628, 6862, 1, 0, 0, 0, 630, 6864, 1, 0, 0, 0, 632, 6866, 1, 0, 0, 0, 634, 6868, 1, 0, 0, 0, 636, 6870, 1, 0, 0, 0, 638, 6872, 1, 0, 0, 0, 640, 6874, 1, 0, 0, 0, 642, 6876, 1, 0, 0, 0, 644, 6884, 1, 0, 0, 0, 646, 6886, 1, 0, 0, 0, 648, 6888, 1, 0, 0, 0, 650, 6890, 1, 0, 0, 0, 652, 6892, 1, 0, 0, 0, 654, 6900, 1, 0, 0, 0, 656, 6902, 1, 0, 0, 0, 658, 6912, 1, 0, 0, 0, 660, 6928, 1, 0, 0, 0, 662, 6930, 1, 0, 0, 0, 664, 6952, 1, 0, 0, 0, 666, 6954, 1, 0, 0, 0, 668, 6956, 1, 0, 0, 0, 670, 6958, 1, 0, 0, 0, 672, 6960, 1, 0, 0, 0, 674, 6968, 1, 0, 0, 0, 676, 6978, 1, 0, 0, 0, 678, 6983, 1, 0, 0, 0, 680, 6987, 1, 0, 0, 0, 682, 6994, 1, 0, 0, 0, 684, 6996, 1, 0, 0, 0, 686, 7003, 1, 0, 0, 0, 688, 7005, 1, 0, 0, 0, 690, 7011, 1, 0, 0, 0, 692, 7013, 1, 0, 0, 0, 694, 7018, 1, 0, 0, 0, 696, 7020, 1, 0, 0, 0, 698, 7022, 1, 0, 0, 0, 700, 7040, 1, 0, 0, 0, 702, 7056, 1, 0, 0, 0, 704, 7058, 1, 0, 0, 0, 706, 7062, 1, 0, 0, 0, 708, 7073, 1, 0, 0, 0, 710, 7084, 1, 0, 0, 0, 712, 7090, 1, 0, 0, 0, 714, 7092, 1, 0, 0, 0, 716, 7096, 1, 0, 0, 0, 718, 7121, 1, 0, 0, 0, 720, 7123, 1, 0, 0, 0, 722, 7126, 1, 0, 0, 0, 724, 7131, 1, 0, 0, 0, 726, 7147, 1, 0, 0, 0, 728, 7275, 1, 0, 0, 0, 730, 7277, 1, 0, 0, 0, 732, 7310, 1, 0, 0, 0, 734, 7315, 1, 0, 0, 0, 736, 7319, 1, 0, 0, 0, 738, 7325, 1, 0, 0, 0, 740, 7333, 1, 0, 0, 0, 742, 7344, 1, 0, 0, 0, 744, 7352, 1, 0, 0, 0, 746, 7361, 1, 0, 0, 0, 748, 7374, 1, 0, 0, 0, 750, 7376, 1, 0, 0, 0, 752, 7384, 1, 0, 0, 0, 754, 7392, 1, 0, 0, 0, 756, 7426, 1, 0, 0, 0, 758, 7442, 1, 0, 0, 0, 760, 7444, 1, 0, 0, 0, 762, 7447, 1, 0, 0, 0, 764, 7451, 1, 0, 0, 0, 766, 7472, 1, 0, 0, 0, 768, 7653, 1, 0, 0, 0, 770, 7655, 1, 0, 0, 0, 772, 7674, 1, 0, 0, 0, 774, 7676, 1, 0, 0, 0, 776, 7739, 1, 0, 0, 0, 778, 7779, 1, 0, 0, 0, 780, 7781, 1, 0, 0, 0, 782, 7790, 1, 0, 0, 0, 784, 7801, 1, 0, 0, 0, 786, 7803, 1, 0, 0, 0, 788, 7806, 1, 0, 0, 0, 790, 7810, 1, 0, 0, 0, 792, 7812, 1, 0, 0, 0, 794, 7824, 1, 0, 0, 0, 796, 7826, 1, 0, 0, 0, 798, 7860, 1, 0, 0, 0, 800, 7862, 1, 0, 0, 0, 802, 7867, 1, 0, 0, 0, 804, 7879, 1, 0, 0, 0, 806, 7892, 1, 0, 0, 0, 808, 7903, 1, 0, 0, 0, 810, 8021, 1, 0, 0, 0, 812, 8043, 1, 0, 0, 0, 814, 8053, 1, 0, 0, 0, 816, 8062, 1, 0, 0, 0, 818, 8071, 1, 0, 0, 0, 820, 8080, 1, 0, 0, 0, 822, 8082, 1, 0, 0, 0, 824, 8089, 1, 0, 0, 0, 826, 8091, 1, 0, 0, 0, 828, 8093, 1, 0, 0, 0, 830, 8095, 1, 0, 0, 0, 832, 8097, 1, 0, 0, 0, 834, 8099, 1, 0, 0, 0, 836, 8101, 1, 0, 0, 0, 838, 8103, 1, 0, 0, 0, 840, 842, 3, 2, 1, 0, 841, 840, 1, 0, 0, 0, 842, 845, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 846, 847, 5, 0, 0, 1, 847, 1, 1, 0, 0, 0, 848, 850, 3, 4, 2, 0, 849, 851, 5, 869, 0, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 854, 1, 0, 0, 0, 852, 854, 3, 6, 3, 0, 853, 848, 1, 0, 0, 0, 853, 852, 1, 0, 0, 0, 854, 3, 1, 0, 0, 0, 855, 863, 3, 8, 4, 0, 856, 863, 3, 10, 5, 0, 857, 863, 3, 12, 6, 0, 858, 863, 3, 14, 7, 0, 859, 863, 3, 16, 8, 0, 860, 863, 3, 20, 10, 0, 861, 863, 3, 22, 11, 0, 862, 855, 1, 0, 0, 0, 862, 856, 1, 0, 0, 0, 862, 857, 1, 0, 0, 0, 862, 858, 1, 0, 0, 0, 862, 859, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 861, 1, 0, 0, 0, 863, 5, 1, 0, 0, 0, 864, 865, 5, 869, 0, 0, 865, 7, 1, 0, 0, 0, 866, 906, 3, 24, 12, 0, 867, 906, 3, 26, 13, 0, 868, 906, 3, 28, 14, 0, 869, 906, 3, 30, 15, 0, 870, 906, 3, 32, 16, 0, 871, 906, 3, 542, 271, 0, 872, 906, 3, 36, 18, 0, 873, 906, 3, 38, 19, 0, 874, 906, 3, 40, 20, 0, 875, 906, 3, 42, 21, 0, 876, 906, 3, 44, 22, 0, 877, 906, 3, 50, 25, 0, 878, 906, 3, 34, 17, 0, 879, 906, 3, 120, 60, 0, 880, 906, 3, 122, 61, 0, 881, 906, 3, 124, 62, 0, 882, 906, 3, 126, 63, 0, 883, 906, 3, 128, 64, 0, 884, 906, 3, 130, 65, 0, 885, 906, 3, 132, 66, 0, 886, 906, 3, 134, 67, 0, 887, 906, 3, 136, 68, 0, 888, 906, 3, 138, 69, 0, 889, 906, 3, 144, 72, 0, 890, 906, 3, 146, 73, 0, 891, 906, 3, 148, 74, 0, 892, 906, 3, 150, 75, 0, 893, 906, 3, 152, 76, 0, 894, 906, 3, 154, 77, 0, 895, 906, 3, 156, 78, 0, 896, 906, 3, 158, 79, 0, 897, 906, 3, 160, 80, 0, 898, 906, 3, 162, 81, 0, 899, 906, 3, 164, 82, 0, 900, 906, 3, 166, 83, 0, 901, 906, 3, 168, 84, 0, 902, 906, 3, 170, 85, 0, 903, 906, 3, 172, 86, 0, 904, 906, 3, 176, 88, 0, 905, 866, 1, 0, 0, 0, 905, 867, 1, 0, 0, 0, 905, 868, 1, 0, 0, 0, 905, 869, 1, 0, 0, 0, 905, 870, 1, 0, 0, 0, 905, 871, 1, 0, 0, 0, 905, 872, 1, 0, 0, 0, 905, 873, 1, 0, 0, 0, 905, 874, 1, 0, 0, 0, 905, 875, 1, 0, 0, 0, 905, 876, 1, 0, 0, 0, 905, 877, 1, 0, 0, 0, 905, 878, 1, 0, 0, 0, 905, 879, 1, 0, 0, 0, 905, 880, 1, 0, 0, 0, 905, 881, 1, 0, 0, 0, 905, 882, 1, 0, 0, 0, 905, 883, 1, 0, 0, 0, 905, 884, 1, 0, 0, 0, 905, 885, 1, 0, 0, 0, 905, 886, 1, 0, 0, 0, 905, 887, 1, 0, 0, 0, 905, 888, 1, 0, 0, 0, 905, 889, 1, 0, 0, 0, 905, 890, 1, 0, 0, 0, 905, 891, 1, 0, 0, 0, 905, 892, 1, 0, 0, 0, 905, 893, 1, 0, 0, 0, 905, 894, 1, 0, 0, 0, 905, 895, 1, 0, 0, 0, 905, 896, 1, 0, 0, 0, 905, 897, 1, 0, 0, 0, 905, 898, 1, 0, 0, 0, 905, 899, 1, 0, 0, 0, 905, 900, 1, 0, 0, 0, 905, 901, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 903, 1, 0, 0, 0, 905, 904, 1, 0, 0, 0, 906, 9, 1, 0, 0, 0, 907, 925, 3, 204, 102, 0, 908, 925, 3, 206, 103, 0, 909, 925, 3, 186, 93, 0, 910, 925, 3, 214, 107, 0, 911, 925, 3, 180, 90, 0, 912, 925, 3, 202, 101, 0, 913, 925, 3, 178, 89, 0, 914, 925, 3, 192, 96, 0, 915, 925, 3, 196, 98, 0, 916, 925, 3, 198, 99, 0, 917, 925, 3, 200, 100, 0, 918, 925, 3, 182, 91, 0, 919, 925, 3, 184, 92, 0, 920, 925, 3, 246, 123, 0, 921, 925, 3, 216, 108, 0, 922, 925, 3, 618, 309, 0, 923, 925, 3, 620, 310, 0, 924, 907, 1, 0, 0, 0, 924, 908, 1, 0, 0, 0, 924, 909, 1, 0, 0, 0, 924, 910, 1, 0, 0, 0, 924, 911, 1, 0, 0, 0, 924, 912, 1, 0, 0, 0, 924, 913, 1, 0, 0, 0, 924, 914, 1, 0, 0, 0, 924, 915, 1, 0, 0, 0, 924, 916, 1, 0, 0, 0, 924, 917, 1, 0, 0, 0, 924, 918, 1, 0, 0, 0, 924, 919, 1, 0, 0, 0, 924, 920, 1, 0, 0, 0, 924, 921, 1, 0, 0, 0, 924, 922, 1, 0, 0, 0, 924, 923, 1, 0, 0, 0, 925, 11, 1, 0, 0, 0, 926, 936, 3, 322, 161, 0, 927, 936, 3, 324, 162, 0, 928, 936, 3, 326, 163, 0, 929, 936, 3, 328, 164, 0, 930, 936, 3, 330, 165, 0, 931, 936, 3, 332, 166, 0, 932, 936, 3, 334, 167, 0, 933, 936, 3, 336, 168, 0, 934, 936, 3, 338, 169, 0, 935, 926, 1, 0, 0, 0, 935, 927, 1, 0, 0, 0, 935, 928, 1, 0, 0, 0, 935, 929, 1, 0, 0, 0, 935, 930, 1, 0, 0, 0, 935, 931, 1, 0, 0, 0, 935, 932, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 13, 1, 0, 0, 0, 937, 952, 3, 354, 177, 0, 938, 952, 3, 356, 178, 0, 939, 952, 3, 358, 179, 0, 940, 952, 3, 360, 180, 0, 941, 952, 3, 362, 181, 0, 942, 952, 3, 364, 182, 0, 943, 952, 3, 366, 183, 0, 944, 952, 3, 368, 184, 0, 945, 952, 3, 404, 202, 0, 946, 952, 3, 406, 203, 0, 947, 952, 3, 408, 204, 0, 948, 952, 3, 410, 205, 0, 949, 952, 3, 412, 206, 0, 950, 952, 3, 414, 207, 0, 951, 937, 1, 0, 0, 0, 951, 938, 1, 0, 0, 0, 951, 939, 1, 0, 0, 0, 951, 940, 1, 0, 0, 0, 951, 941, 1, 0, 0, 0, 951, 942, 1, 0, 0, 0, 951, 943, 1, 0, 0, 0, 951, 944, 1, 0, 0, 0, 951, 945, 1, 0, 0, 0, 951, 946, 1, 0, 0, 0, 951, 947, 1, 0, 0, 0, 951, 948, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 951, 950, 1, 0, 0, 0, 952, 15, 1, 0, 0, 0, 953, 957, 3, 416, 208, 0, 954, 957, 3, 418, 209, 0, 955, 957, 3, 420, 210, 0, 956, 953, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 17, 1, 0, 0, 0, 958, 969, 3, 424, 212, 0, 959, 969, 3, 426, 213, 0, 960, 969, 3, 428, 214, 0, 961, 969, 3, 432, 216, 0, 962, 969, 3, 434, 217, 0, 963, 969, 3, 436, 218, 0, 964, 969, 3, 440, 220, 0, 965, 969, 3, 430, 215, 0, 966, 969, 3, 438, 219, 0, 967, 969, 3, 442, 221, 0, 968, 958, 1, 0, 0, 0, 968, 959, 1, 0, 0, 0, 968, 960, 1, 0, 0, 0, 968, 961, 1, 0, 0, 0, 968, 962, 1, 0, 0, 0, 968, 963, 1, 0, 0, 0, 968, 964, 1, 0, 0, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 19, 1, 0, 0, 0, 970, 1004, 3, 460, 230, 0, 971, 1004, 3, 462, 231, 0, 972, 1004, 3, 464, 232, 0, 973, 1004, 3, 466, 233, 0, 974, 1004, 3, 470, 235, 0, 975, 1004, 3, 482, 241, 0, 976, 1004, 3, 484, 242, 0, 977, 1004, 3, 472, 236, 0, 978, 1004, 3, 474, 237, 0, 979, 1004, 3, 476, 238, 0, 980, 1004, 3, 478, 239, 0, 981, 1004, 3, 528, 264, 0, 982, 1004, 3, 530, 265, 0, 983, 1004, 3, 532, 266, 0, 984, 1004, 3, 534, 267, 0, 985, 1004, 3, 536, 268, 0, 986, 1004, 3, 544, 272, 0, 987, 1004, 3, 548, 274, 0, 988, 1004, 3, 550, 275, 0, 989, 1004, 3, 552, 276, 0, 990, 1004, 3, 554, 277, 0, 991, 1004, 3, 556, 278, 0, 992, 1004, 3, 558, 279, 0, 993, 1004, 3, 572, 286, 0, 994, 1004, 3, 574, 287, 0, 995, 1004, 3, 576, 288, 0, 996, 1004, 3, 578, 289, 0, 997, 1004, 3, 580, 290, 0, 998, 1004, 3, 582, 291, 0, 999, 1004, 3, 586, 293, 0, 1000, 1004, 3, 588, 294, 0, 1001, 1004, 3, 590, 295, 0, 1002, 1004, 3, 592, 296, 0, 1003, 970, 1, 0, 0, 0, 1003, 971, 1, 0, 0, 0, 1003, 972, 1, 0, 0, 0, 1003, 973, 1, 0, 0, 0, 1003, 974, 1, 0, 0, 0, 1003, 975, 1, 0, 0, 0, 1003, 976, 1, 0, 0, 0, 1003, 977, 1, 0, 0, 0, 1003, 978, 1, 0, 0, 0, 1003, 979, 1, 0, 0, 0, 1003, 980, 1, 0, 0, 0, 1003, 981, 1, 0, 0, 0, 1003, 982, 1, 0, 0, 0, 1003, 983, 1, 0, 0, 0, 1003, 984, 1, 0, 0, 0, 1003, 985, 1, 0, 0, 0, 1003, 986, 1, 0, 0, 0, 1003, 987, 1, 0, 0, 0, 1003, 988, 1, 0, 0, 0, 1003, 989, 1, 0, 0, 0, 1003, 990, 1, 0, 0, 0, 1003, 991, 1, 0, 0, 0, 1003, 992, 1, 0, 0, 0, 1003, 993, 1, 0, 0, 0, 1003, 994, 1, 0, 0, 0, 1003, 995, 1, 0, 0, 0, 1003, 996, 1, 0, 0, 0, 1003, 997, 1, 0, 0, 0, 1003, 998, 1, 0, 0, 0, 1003, 999, 1, 0, 0, 0, 1003, 1000, 1, 0, 0, 0, 1003, 1001, 1, 0, 0, 0, 1003, 1002, 1, 0, 0, 0, 1004, 21, 1, 0, 0, 0, 1005, 1014, 3, 602, 301, 0, 1006, 1014, 3, 604, 302, 0, 1007, 1014, 3, 606, 303, 0, 1008, 1014, 3, 608, 304, 0, 1009, 1014, 3, 610, 305, 0, 1010, 1014, 3, 612, 306, 0, 1011, 1014, 3, 614, 307, 0, 1012, 1014, 3, 622, 311, 0, 1013, 1005, 1, 0, 0, 0, 1013, 1006, 1, 0, 0, 0, 1013, 1007, 1, 0, 0, 0, 1013, 1008, 1, 0, 0, 0, 1013, 1009, 1, 0, 0, 0, 1013, 1010, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1012, 1, 0, 0, 0, 1014, 23, 1, 0, 0, 0, 1015, 1016, 5, 34, 0, 0, 1016, 1018, 7, 0, 0, 0, 1017, 1019, 3, 762, 381, 0, 1018, 1017, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1024, 3, 628, 314, 0, 1021, 1023, 3, 52, 26, 0, 1022, 1021, 1, 0, 0, 0, 1023, 1026, 1, 0, 0, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 25, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1027, 1029, 5, 34, 0, 0, 1028, 1030, 3, 58, 29, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 5, 385, 0, 0, 1032, 1034, 3, 762, 381, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 3, 704, 352, 0, 1036, 1037, 5, 119, 0, 0, 1037, 1038, 5, 590, 0, 0, 1038, 1045, 3, 60, 30, 0, 1039, 1040, 5, 119, 0, 0, 1040, 1042, 5, 343, 0, 0, 1041, 1043, 5, 114, 0, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1046, 5, 541, 0, 0, 1045, 1039, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1048, 1, 0, 0, 0, 1047, 1049, 3, 68, 34, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1052, 1, 0, 0, 0, 1050, 1051, 5, 340, 0, 0, 1051, 1053, 5, 882, 0, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 5, 371, 0, 0, 1055, 1056, 3, 422, 211, 0, 1056, 27, 1, 0, 0, 0, 1057, 1059, 5, 34, 0, 0, 1058, 1060, 7, 1, 0, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1062, 1, 0, 0, 0, 1061, 1063, 7, 2, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 5, 82, 0, 0, 1065, 1067, 3, 640, 320, 0, 1066, 1068, 3, 70, 35, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 5, 119, 0, 0, 1070, 1071, 3, 654, 327, 0, 1071, 1075, 3, 740, 370, 0, 1072, 1074, 3, 72, 36, 0, 1073, 1072, 1, 0, 0, 0, 1074, 1077, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1090, 1, 0, 0, 0, 1077, 1075, 1, 0, 0, 0, 1078, 1080, 5, 308, 0, 0, 1079, 1081, 5, 857, 0, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1089, 7, 3, 0, 0, 1083, 1085, 5, 104, 0, 0, 1084, 1086, 5, 857, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 7, 4, 0, 0, 1088, 1078, 1, 0, 0, 0, 1088, 1083, 1, 0, 0, 0, 1089, 1092, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 29, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1093, 1094, 5, 34, 0, 0, 1094, 1095, 5, 451, 0, 0, 1095, 1096, 5, 74, 0, 0, 1096, 1097, 3, 708, 354, 0, 1097, 1098, 5, 6, 0, 0, 1098, 1099, 5, 671, 0, 0, 1099, 1105, 5, 882, 0, 0, 1100, 1102, 5, 428, 0, 0, 1101, 1103, 5, 857, 0, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 3, 716, 358, 0, 1105, 1100, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1112, 1, 0, 0, 0, 1107, 1109, 5, 672, 0, 0, 1108, 1110, 5, 857, 0, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1113, 3, 716, 358, 0, 1112, 1107, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1119, 1, 0, 0, 0, 1114, 1116, 5, 553, 0, 0, 1115, 1117, 5, 857, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1120, 3, 716, 358, 0, 1119, 1114, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1126, 1, 0, 0, 0, 1121, 1123, 5, 504, 0, 0, 1122, 1124, 5, 857, 0, 0, 1123, 1122, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1127, 3, 708, 354, 0, 1126, 1121, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 1, 0, 0, 0, 1128, 1130, 5, 687, 0, 0, 1129, 1128, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1136, 1, 0, 0, 0, 1131, 1133, 5, 340, 0, 0, 1132, 1134, 5, 857, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 5, 882, 0, 0, 1136, 1131, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1140, 5, 380, 0, 0, 1139, 1141, 5, 857, 0, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1143, 3, 694, 347, 0, 1143, 31, 1, 0, 0, 0, 1144, 1146, 5, 34, 0, 0, 1145, 1147, 3, 58, 29, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1150, 5, 132, 0, 0, 1149, 1151, 3, 762, 381, 0, 1150, 1149, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 3, 704, 352, 0, 1153, 1155, 5, 866, 0, 0, 1154, 1156, 3, 74, 37, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1161, 1, 0, 0, 0, 1157, 1158, 5, 868, 0, 0, 1158, 1160, 3, 74, 37, 0, 1159, 1157, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1164, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1168, 5, 867, 0, 0, 1165, 1167, 3, 76, 38, 0, 1166, 1165, 1, 0, 0, 0, 1167, 1170, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1171, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1171, 1172, 3, 422, 211, 0, 1172, 33, 1, 0, 0, 0, 1173, 1174, 5, 34, 0, 0, 1174, 1176, 5, 582, 0, 0, 1175, 1177, 3, 762, 381, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 3, 656, 328, 0, 1179, 35, 1, 0, 0, 0, 1180, 1181, 5, 34, 0, 0, 1181, 1182, 5, 592, 0, 0, 1182, 1183, 3, 708, 354, 0, 1183, 1184, 5, 67, 0, 0, 1184, 1185, 5, 360, 0, 0, 1185, 1186, 5, 692, 0, 0, 1186, 1187, 7, 5, 0, 0, 1187, 1188, 5, 518, 0, 0, 1188, 1189, 5, 866, 0, 0, 1189, 1194, 3, 78, 39, 0, 1190, 1191, 5, 868, 0, 0, 1191, 1193, 3, 78, 39, 0, 1192, 1190, 1, 0, 0, 0, 1193, 1196, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1197, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1198, 5, 867, 0, 0, 1198, 37, 1, 0, 0, 0, 1199, 1201, 5, 34, 0, 0, 1200, 1202, 5, 660, 0, 0, 1201, 1200, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1205, 5, 173, 0, 0, 1204, 1206, 3, 762, 381, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 3, 650, 325, 0, 1208, 1219, 3, 80, 40, 0, 1209, 1216, 3, 98, 49, 0, 1210, 1212, 5, 868, 0, 0, 1211, 1210, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1215, 3, 98, 49, 0, 1214, 1211, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1220, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1209, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1222, 1, 0, 0, 0, 1221, 1223, 3, 104, 52, 0, 1222, 1221, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1278, 1, 0, 0, 0, 1224, 1226, 5, 34, 0, 0, 1225, 1227, 5, 660, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 5, 173, 0, 0, 1229, 1231, 3, 762, 381, 0, 1230, 1229, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1234, 3, 650, 325, 0, 1233, 1235, 3, 80, 40, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1246, 1, 0, 0, 0, 1236, 1243, 3, 98, 49, 0, 1237, 1239, 5, 868, 0, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1242, 3, 98, 49, 0, 1241, 1238, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1247, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1236, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1249, 1, 0, 0, 0, 1248, 1250, 3, 104, 52, 0, 1249, 1248, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1252, 1, 0, 0, 0, 1251, 1253, 7, 6, 0, 0, 1252, 1251, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1255, 1, 0, 0, 0, 1254, 1256, 5, 13, 0, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 3, 204, 102, 0, 1258, 1278, 1, 0, 0, 0, 1259, 1261, 5, 34, 0, 0, 1260, 1262, 5, 660, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1265, 5, 173, 0, 0, 1264, 1266, 3, 762, 381, 0, 1265, 1264, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1275, 3, 650, 325, 0, 1268, 1269, 5, 99, 0, 0, 1269, 1276, 3, 654, 327, 0, 1270, 1271, 5, 866, 0, 0, 1271, 1272, 5, 99, 0, 0, 1272, 1273, 3, 654, 327, 0, 1273, 1274, 5, 867, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1268, 1, 0, 0, 0, 1275, 1270, 1, 0, 0, 0, 1276, 1278, 1, 0, 0, 0, 1277, 1199, 1, 0, 0, 0, 1277, 1224, 1, 0, 0, 0, 1277, 1259, 1, 0, 0, 0, 1278, 39, 1, 0, 0, 0, 1279, 1281, 5, 34, 0, 0, 1280, 1282, 5, 180, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 5, 658, 0, 0, 1284, 1288, 3, 666, 333, 0, 1285, 1286, 5, 6, 0, 0, 1286, 1287, 5, 361, 0, 0, 1287, 1289, 5, 882, 0, 0, 1288, 1285, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1295, 1, 0, 0, 0, 1290, 1292, 5, 314, 0, 0, 1291, 1293, 5, 857, 0, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1296, 3, 716, 358, 0, 1295, 1290, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1300, 1, 0, 0, 0, 1297, 1298, 5, 399, 0, 0, 1298, 1299, 5, 857, 0, 0, 1299, 1301, 3, 716, 358, 0, 1300, 1297, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1307, 1, 0, 0, 0, 1302, 1304, 5, 380, 0, 0, 1303, 1305, 5, 857, 0, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 3, 694, 347, 0, 1307, 1302, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1314, 1, 0, 0, 0, 1309, 1311, 5, 825, 0, 0, 1310, 1312, 5, 857, 0, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 5, 882, 0, 0, 1314, 1309, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 41, 1, 0, 0, 0, 1316, 1318, 5, 34, 0, 0, 1317, 1319, 5, 180, 0, 0, 1318, 1317, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 5, 658, 0, 0, 1321, 1322, 3, 666, 333, 0, 1322, 1323, 5, 6, 0, 0, 1323, 1324, 5, 361, 0, 0, 1324, 1325, 5, 882, 0, 0, 1325, 1326, 5, 187, 0, 0, 1326, 1327, 5, 451, 0, 0, 1327, 1328, 5, 74, 0, 0, 1328, 1334, 3, 708, 354, 0, 1329, 1331, 5, 393, 0, 0, 1330, 1332, 5, 857, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1335, 3, 716, 358, 0, 1334, 1329, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1341, 1, 0, 0, 0, 1336, 1338, 5, 428, 0, 0, 1337, 1339, 5, 857, 0, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 3, 716, 358, 0, 1341, 1336, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1348, 1, 0, 0, 0, 1343, 1345, 5, 314, 0, 0, 1344, 1346, 5, 857, 0, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1349, 3, 716, 358, 0, 1348, 1343, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1355, 1, 0, 0, 0, 1350, 1352, 5, 481, 0, 0, 1351, 1353, 5, 857, 0, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1356, 3, 716, 358, 0, 1355, 1350, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1362, 1, 0, 0, 0, 1357, 1359, 5, 504, 0, 0, 1358, 1360, 5, 857, 0, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1363, 3, 708, 354, 0, 1362, 1357, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1365, 1, 0, 0, 0, 1364, 1366, 5, 687, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1372, 1, 0, 0, 0, 1367, 1369, 5, 340, 0, 0, 1368, 1370, 5, 857, 0, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 5, 882, 0, 0, 1372, 1367, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 1376, 5, 380, 0, 0, 1375, 1377, 5, 857, 0, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 3, 694, 347, 0, 1379, 43, 1, 0, 0, 0, 1380, 1382, 5, 34, 0, 0, 1381, 1383, 3, 58, 29, 0, 1382, 1381, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1386, 5, 178, 0, 0, 1385, 1387, 3, 762, 381, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 3, 704, 352, 0, 1389, 1390, 7, 7, 0, 0, 1390, 1391, 7, 8, 0, 0, 1391, 1392, 5, 119, 0, 0, 1392, 1393, 3, 654, 327, 0, 1393, 1394, 5, 65, 0, 0, 1394, 1395, 5, 52, 0, 0, 1395, 1398, 5, 586, 0, 0, 1396, 1397, 7, 9, 0, 0, 1397, 1399, 3, 704, 352, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 3, 422, 211, 0, 1401, 45, 1, 0, 0, 0, 1402, 1404, 5, 194, 0, 0, 1403, 1405, 5, 552, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 3, 48, 24, 0, 1407, 47, 1, 0, 0, 0, 1408, 1420, 3, 708, 354, 0, 1409, 1410, 5, 866, 0, 0, 1410, 1415, 3, 708, 354, 0, 1411, 1412, 5, 868, 0, 0, 1412, 1414, 3, 708, 354, 0, 1413, 1411, 1, 0, 0, 0, 1414, 1417, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1418, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1418, 1419, 5, 867, 0, 0, 1419, 1421, 1, 0, 0, 0, 1420, 1409, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 5, 13, 0, 0, 1423, 1424, 5, 866, 0, 0, 1424, 1425, 3, 10, 5, 0, 1425, 1428, 5, 867, 0, 0, 1426, 1427, 5, 868, 0, 0, 1427, 1429, 3, 48, 24, 0, 1428, 1426, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 49, 1, 0, 0, 0, 1430, 1432, 5, 34, 0, 0, 1431, 1433, 3, 764, 382, 0, 1432, 1431, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1437, 1, 0, 0, 0, 1434, 1435, 5, 308, 0, 0, 1435, 1436, 5, 857, 0, 0, 1436, 1438, 7, 10, 0, 0, 1437, 1434, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1441, 3, 58, 29, 0, 1440, 1439, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1445, 1, 0, 0, 0, 1442, 1443, 5, 162, 0, 0, 1443, 1444, 5, 591, 0, 0, 1444, 1446, 7, 11, 0, 0, 1445, 1442, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1448, 5, 684, 0, 0, 1448, 1453, 3, 636, 318, 0, 1449, 1450, 5, 866, 0, 0, 1450, 1451, 3, 662, 331, 0, 1451, 1452, 5, 867, 0, 0, 1452, 1454, 1, 0, 0, 0, 1453, 1449, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1475, 5, 13, 0, 0, 1456, 1458, 5, 866, 0, 0, 1457, 1459, 3, 46, 23, 0, 1458, 1457, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 3, 204, 102, 0, 1461, 1462, 5, 867, 0, 0, 1462, 1476, 1, 0, 0, 0, 1463, 1465, 3, 46, 23, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1473, 3, 204, 102, 0, 1467, 1469, 5, 194, 0, 0, 1468, 1470, 7, 12, 0, 0, 1469, 1468, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 5, 27, 0, 0, 1472, 1474, 5, 121, 0, 0, 1473, 1467, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1476, 1, 0, 0, 0, 1475, 1456, 1, 0, 0, 0, 1475, 1464, 1, 0, 0, 0, 1476, 51, 1, 0, 0, 0, 1477, 1479, 5, 42, 0, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1482, 3, 54, 27, 0, 1481, 1483, 5, 857, 0, 0, 1482, 1481, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1486, 1, 0, 0, 0, 1484, 1487, 3, 690, 345, 0, 1485, 1487, 5, 42, 0, 0, 1486, 1484, 1, 0, 0, 0, 1486, 1485, 1, 0, 0, 0, 1487, 1511, 1, 0, 0, 0, 1488, 1490, 5, 42, 0, 0, 1489, 1488, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1493, 5, 28, 0, 0, 1492, 1494, 5, 857, 0, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1511, 3, 692, 346, 0, 1496, 1498, 5, 42, 0, 0, 1497, 1496, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1501, 5, 376, 0, 0, 1500, 1502, 5, 857, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1511, 5, 882, 0, 0, 1504, 1505, 5, 135, 0, 0, 1505, 1507, 5, 515, 0, 0, 1506, 1508, 5, 857, 0, 0, 1507, 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1511, 7, 13, 0, 0, 1510, 1478, 1, 0, 0, 0, 1510, 1489, 1, 0, 0, 0, 1510, 1497, 1, 0, 0, 0, 1510, 1504, 1, 0, 0, 0, 1511, 53, 1, 0, 0, 0, 1512, 1513, 5, 26, 0, 0, 1513, 1518, 5, 155, 0, 0, 1514, 1518, 5, 823, 0, 0, 1515, 1516, 5, 224, 0, 0, 1516, 1518, 5, 155, 0, 0, 1517, 1512, 1, 0, 0, 0, 1517, 1514, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1518, 55, 1, 0, 0, 0, 1519, 1522, 7, 14, 0, 0, 1520, 1521, 5, 866, 0, 0, 1521, 1523, 5, 867, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 57, 1, 0, 0, 0, 1524, 1525, 5, 364, 0, 0, 1525, 1528, 5, 857, 0, 0, 1526, 1529, 3, 686, 343, 0, 1527, 1529, 3, 56, 28, 0, 1528, 1526, 1, 0, 0, 0, 1528, 1527, 1, 0, 0, 0, 1529, 59, 1, 0, 0, 0, 1530, 1531, 5, 311, 0, 0, 1531, 1535, 3, 62, 31, 0, 1532, 1534, 3, 64, 32, 0, 1533, 1532, 1, 0, 0, 0, 1534, 1537, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1565, 1, 0, 0, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 5, 387, 0, 0, 1539, 1542, 3, 714, 357, 0, 1540, 1542, 3, 806, 403, 0, 1541, 1539, 1, 0, 0, 0, 1541, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1552, 3, 66, 33, 0, 1544, 1545, 5, 641, 0, 0, 1545, 1549, 3, 62, 31, 0, 1546, 1548, 3, 64, 32, 0, 1547, 1546, 1, 0, 0, 0, 1548, 1551, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1553, 1, 0, 0, 0, 1551, 1549, 1, 0, 0, 0, 1552, 1544, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1562, 1, 0, 0, 0, 1554, 1555, 5, 379, 0, 0, 1555, 1559, 3, 62, 31, 0, 1556, 1558, 3, 64, 32, 0, 1557, 1556, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1563, 1, 0, 0, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1554, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1530, 1, 0, 0, 0, 1564, 1538, 1, 0, 0, 0, 1565, 61, 1, 0, 0, 0, 1566, 1571, 5, 287, 0, 0, 1567, 1571, 3, 718, 359, 0, 1568, 1571, 3, 714, 357, 0, 1569, 1571, 3, 806, 403, 0, 1570, 1566, 1, 0, 0, 0, 1570, 1567, 1, 0, 0, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1569, 1, 0, 0, 0, 1571, 63, 1, 0, 0, 0, 1572, 1573, 5, 853, 0, 0, 1573, 1576, 5, 87, 0, 0, 1574, 1577, 3, 714, 357, 0, 1575, 1577, 3, 806, 403, 0, 1576, 1574, 1, 0, 0, 0, 1576, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 3, 66, 33, 0, 1579, 65, 1, 0, 0, 0, 1580, 1594, 3, 832, 416, 0, 1581, 1594, 5, 223, 0, 0, 1582, 1594, 5, 242, 0, 0, 1583, 1594, 5, 243, 0, 0, 1584, 1594, 5, 244, 0, 0, 1585, 1594, 5, 245, 0, 0, 1586, 1594, 5, 246, 0, 0, 1587, 1594, 5, 247, 0, 0, 1588, 1594, 5, 248, 0, 0, 1589, 1594, 5, 249, 0, 0, 1590, 1594, 5, 250, 0, 0, 1591, 1594, 5, 251, 0, 0, 1592, 1594, 5, 252, 0, 0, 1593, 1580, 1, 0, 0, 0, 1593, 1581, 1, 0, 0, 0, 1593, 1582, 1, 0, 0, 0, 1593, 1583, 1, 0, 0, 0, 1593, 1584, 1, 0, 0, 0, 1593, 1585, 1, 0, 0, 0, 1593, 1586, 1, 0, 0, 0, 1593, 1587, 1, 0, 0, 0, 1593, 1588, 1, 0, 0, 0, 1593, 1589, 1, 0, 0, 0, 1593, 1590, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1592, 1, 0, 0, 0, 1594, 67, 1, 0, 0, 0, 1595, 1601, 5, 375, 0, 0, 1596, 1601, 5, 368, 0, 0, 1597, 1598, 5, 368, 0, 0, 1598, 1599, 5, 119, 0, 0, 1599, 1601, 5, 598, 0, 0, 1600, 1595, 1, 0, 0, 0, 1600, 1596, 1, 0, 0, 0, 1600, 1597, 1, 0, 0, 0, 1601, 69, 1, 0, 0, 0, 1602, 1603, 5, 188, 0, 0, 1603, 1604, 7, 15, 0, 0, 1604, 71, 1, 0, 0, 0, 1605, 1607, 5, 443, 0, 0, 1606, 1608, 5, 857, 0, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1628, 3, 716, 358, 0, 1610, 1628, 3, 70, 35, 0, 1611, 1612, 5, 194, 0, 0, 1612, 1613, 5, 525, 0, 0, 1613, 1628, 3, 708, 354, 0, 1614, 1615, 5, 340, 0, 0, 1615, 1628, 5, 882, 0, 0, 1616, 1628, 7, 16, 0, 0, 1617, 1619, 5, 825, 0, 0, 1618, 1620, 5, 857, 0, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1628, 5, 882, 0, 0, 1622, 1624, 5, 833, 0, 0, 1623, 1625, 5, 857, 0, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1628, 5, 882, 0, 0, 1627, 1605, 1, 0, 0, 0, 1627, 1610, 1, 0, 0, 0, 1627, 1611, 1, 0, 0, 0, 1627, 1614, 1, 0, 0, 0, 1627, 1616, 1, 0, 0, 0, 1627, 1617, 1, 0, 0, 0, 1627, 1622, 1, 0, 0, 0, 1628, 73, 1, 0, 0, 0, 1629, 1631, 7, 17, 0, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 3, 708, 354, 0, 1633, 1634, 3, 728, 364, 0, 1634, 75, 1, 0, 0, 0, 1635, 1636, 5, 340, 0, 0, 1636, 1659, 5, 882, 0, 0, 1637, 1638, 5, 444, 0, 0, 1638, 1659, 5, 162, 0, 0, 1639, 1641, 5, 114, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1659, 5, 47, 0, 0, 1643, 1644, 5, 354, 0, 0, 1644, 1654, 5, 162, 0, 0, 1645, 1646, 5, 502, 0, 0, 1646, 1654, 5, 162, 0, 0, 1647, 1648, 5, 136, 0, 0, 1648, 1649, 5, 162, 0, 0, 1649, 1654, 5, 360, 0, 0, 1650, 1651, 5, 112, 0, 0, 1651, 1652, 5, 162, 0, 0, 1652, 1654, 5, 360, 0, 0, 1653, 1643, 1, 0, 0, 0, 1653, 1645, 1, 0, 0, 0, 1653, 1647, 1, 0, 0, 0, 1653, 1650, 1, 0, 0, 0, 1654, 1659, 1, 0, 0, 0, 1655, 1656, 5, 162, 0, 0, 1656, 1657, 5, 591, 0, 0, 1657, 1659, 7, 11, 0, 0, 1658, 1635, 1, 0, 0, 0, 1658, 1637, 1, 0, 0, 0, 1658, 1640, 1, 0, 0, 0, 1658, 1653, 1, 0, 0, 0, 1658, 1655, 1, 0, 0, 0, 1659, 77, 1, 0, 0, 0, 1660, 1661, 5, 421, 0, 0, 1661, 1675, 5, 882, 0, 0, 1662, 1663, 5, 39, 0, 0, 1663, 1675, 5, 882, 0, 0, 1664, 1665, 5, 678, 0, 0, 1665, 1675, 5, 882, 0, 0, 1666, 1667, 5, 529, 0, 0, 1667, 1675, 5, 882, 0, 0, 1668, 1669, 5, 601, 0, 0, 1669, 1675, 5, 882, 0, 0, 1670, 1671, 5, 519, 0, 0, 1671, 1675, 5, 882, 0, 0, 1672, 1673, 5, 537, 0, 0, 1673, 1675, 3, 714, 357, 0, 1674, 1660, 1, 0, 0, 0, 1674, 1662, 1, 0, 0, 0, 1674, 1664, 1, 0, 0, 0, 1674, 1666, 1, 0, 0, 0, 1674, 1668, 1, 0, 0, 0, 1674, 1670, 1, 0, 0, 0, 1674, 1672, 1, 0, 0, 0, 1675, 79, 1, 0, 0, 0, 1676, 1677, 5, 866, 0, 0, 1677, 1682, 3, 82, 41, 0, 1678, 1679, 5, 868, 0, 0, 1679, 1681, 3, 82, 41, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1685, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1685, 1686, 5, 867, 0, 0, 1686, 81, 1, 0, 0, 0, 1687, 1688, 3, 664, 332, 0, 1688, 1689, 3, 88, 44, 0, 1689, 1771, 1, 0, 0, 0, 1690, 1692, 7, 18, 0, 0, 1691, 1693, 3, 644, 322, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 1, 0, 0, 0, 1694, 1696, 3, 70, 35, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1701, 3, 740, 370, 0, 1698, 1700, 3, 72, 36, 0, 1699, 1698, 1, 0, 0, 0, 1700, 1703, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1771, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1706, 7, 19, 0, 0, 1705, 1707, 7, 18, 0, 0, 1706, 1705, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 644, 322, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1715, 3, 740, 370, 0, 1712, 1714, 3, 72, 36, 0, 1713, 1712, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1771, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1720, 3, 86, 43, 0, 1719, 1718, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 5, 131, 0, 0, 1722, 1724, 5, 92, 0, 0, 1723, 1725, 3, 70, 35, 0, 1724, 1723, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1730, 3, 740, 370, 0, 1727, 1729, 3, 72, 36, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1732, 1, 0, 0, 0, 1730, 1728, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1771, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1733, 1735, 3, 86, 43, 0, 1734, 1733, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1738, 5, 182, 0, 0, 1737, 1739, 7, 18, 0, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1741, 1, 0, 0, 0, 1740, 1742, 3, 644, 322, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1744, 1, 0, 0, 0, 1743, 1745, 3, 70, 35, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1750, 3, 740, 370, 0, 1747, 1749, 3, 72, 36, 0, 1748, 1747, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1771, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1755, 3, 86, 43, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1757, 5, 67, 0, 0, 1757, 1759, 5, 92, 0, 0, 1758, 1760, 3, 644, 322, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 3, 740, 370, 0, 1762, 1763, 3, 92, 46, 0, 1763, 1771, 1, 0, 0, 0, 1764, 1765, 5, 27, 0, 0, 1765, 1766, 5, 866, 0, 0, 1766, 1767, 3, 806, 403, 0, 1767, 1768, 5, 867, 0, 0, 1768, 1771, 1, 0, 0, 0, 1769, 1771, 3, 84, 42, 0, 1770, 1687, 1, 0, 0, 0, 1770, 1690, 1, 0, 0, 0, 1770, 1704, 1, 0, 0, 0, 1770, 1719, 1, 0, 0, 0, 1770, 1734, 1, 0, 0, 0, 1770, 1754, 1, 0, 0, 0, 1770, 1764, 1, 0, 0, 0, 1770, 1769, 1, 0, 0, 0, 1771, 83, 1, 0, 0, 0, 1772, 1774, 3, 86, 43, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 5, 27, 0, 0, 1776, 1777, 5, 866, 0, 0, 1777, 1778, 3, 806, 403, 0, 1778, 1783, 5, 867, 0, 0, 1779, 1781, 5, 114, 0, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1784, 5, 57, 0, 0, 1783, 1780, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 85, 1, 0, 0, 0, 1785, 1787, 5, 31, 0, 0, 1786, 1788, 3, 708, 354, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 87, 1, 0, 0, 0, 1789, 1793, 3, 728, 364, 0, 1790, 1792, 3, 90, 45, 0, 1791, 1790, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 89, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1840, 3, 724, 362, 0, 1797, 1798, 5, 42, 0, 0, 1798, 1840, 3, 756, 378, 0, 1799, 1840, 5, 686, 0, 0, 1800, 1840, 5, 435, 0, 0, 1801, 1806, 5, 315, 0, 0, 1802, 1803, 5, 119, 0, 0, 1803, 1804, 5, 185, 0, 0, 1804, 1806, 3, 758, 379, 0, 1805, 1801, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 1840, 1, 0, 0, 0, 1807, 1809, 5, 131, 0, 0, 1808, 1807, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1840, 5, 92, 0, 0, 1811, 1813, 5, 182, 0, 0, 1812, 1814, 5, 92, 0, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1840, 1, 0, 0, 0, 1815, 1816, 5, 340, 0, 0, 1816, 1840, 5, 882, 0, 0, 1817, 1818, 5, 338, 0, 0, 1818, 1840, 7, 20, 0, 0, 1819, 1820, 5, 647, 0, 0, 1820, 1840, 7, 21, 0, 0, 1821, 1840, 3, 92, 46, 0, 1822, 1823, 5, 28, 0, 0, 1823, 1840, 3, 692, 346, 0, 1824, 1825, 5, 71, 0, 0, 1825, 1827, 5, 9, 0, 0, 1826, 1824, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 13, 0, 0, 1829, 1830, 5, 866, 0, 0, 1830, 1831, 3, 806, 403, 0, 1831, 1833, 5, 867, 0, 0, 1832, 1834, 7, 22, 0, 0, 1833, 1832, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1840, 1, 0, 0, 0, 1835, 1836, 5, 241, 0, 0, 1836, 1837, 5, 42, 0, 0, 1837, 1840, 5, 682, 0, 0, 1838, 1840, 3, 84, 42, 0, 1839, 1796, 1, 0, 0, 0, 1839, 1797, 1, 0, 0, 0, 1839, 1799, 1, 0, 0, 0, 1839, 1800, 1, 0, 0, 0, 1839, 1805, 1, 0, 0, 0, 1839, 1808, 1, 0, 0, 0, 1839, 1811, 1, 0, 0, 0, 1839, 1815, 1, 0, 0, 0, 1839, 1817, 1, 0, 0, 0, 1839, 1819, 1, 0, 0, 0, 1839, 1821, 1, 0, 0, 0, 1839, 1822, 1, 0, 0, 0, 1839, 1826, 1, 0, 0, 0, 1839, 1835, 1, 0, 0, 0, 1839, 1838, 1, 0, 0, 0, 1840, 91, 1, 0, 0, 0, 1841, 1842, 5, 138, 0, 0, 1842, 1844, 3, 654, 327, 0, 1843, 1845, 3, 740, 370, 0, 1844, 1843, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1848, 1, 0, 0, 0, 1846, 1847, 5, 110, 0, 0, 1847, 1849, 7, 23, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 1, 0, 0, 0, 1850, 1852, 3, 94, 47, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 93, 1, 0, 0, 0, 1853, 1854, 5, 119, 0, 0, 1854, 1855, 5, 44, 0, 0, 1855, 1859, 3, 96, 48, 0, 1856, 1857, 5, 119, 0, 0, 1857, 1858, 5, 185, 0, 0, 1858, 1860, 3, 96, 48, 0, 1859, 1856, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1870, 1, 0, 0, 0, 1861, 1862, 5, 119, 0, 0, 1862, 1863, 5, 185, 0, 0, 1863, 1867, 3, 96, 48, 0, 1864, 1865, 5, 119, 0, 0, 1865, 1866, 5, 44, 0, 0, 1866, 1868, 3, 96, 48, 0, 1867, 1864, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1870, 1, 0, 0, 0, 1869, 1853, 1, 0, 0, 0, 1869, 1861, 1, 0, 0, 0, 1870, 95, 1, 0, 0, 0, 1871, 1880, 5, 146, 0, 0, 1872, 1880, 5, 22, 0, 0, 1873, 1874, 5, 155, 0, 0, 1874, 1880, 5, 116, 0, 0, 1875, 1876, 5, 502, 0, 0, 1876, 1880, 5, 305, 0, 0, 1877, 1878, 5, 155, 0, 0, 1878, 1880, 5, 42, 0, 0, 1879, 1871, 1, 0, 0, 0, 1879, 1872, 1, 0, 0, 0, 1879, 1873, 1, 0, 0, 0, 1879, 1875, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 97, 1, 0, 0, 0, 1881, 1883, 5, 380, 0, 0, 1882, 1884, 5, 857, 0, 0, 1883, 1882, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1886, 1, 0, 0, 0, 1885, 1887, 3, 694, 347, 0, 1886, 1885, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 2067, 1, 0, 0, 0, 1888, 1890, 5, 825, 0, 0, 1889, 1891, 5, 857, 0, 0, 1890, 1889, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 2067, 5, 882, 0, 0, 1893, 1895, 5, 314, 0, 0, 1894, 1896, 5, 857, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 2067, 3, 714, 357, 0, 1898, 1900, 5, 315, 0, 0, 1899, 1901, 5, 857, 0, 0, 1900, 1899, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 2067, 3, 714, 357, 0, 1903, 1905, 5, 316, 0, 0, 1904, 1906, 5, 857, 0, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 2067, 3, 714, 357, 0, 1908, 1910, 5, 42, 0, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1913, 3, 54, 27, 0, 1912, 1914, 5, 857, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1918, 3, 690, 345, 0, 1916, 1918, 5, 42, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1916, 1, 0, 0, 0, 1918, 2067, 1, 0, 0, 0, 1919, 1921, 7, 24, 0, 0, 1920, 1922, 5, 857, 0, 0, 1921, 1920, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 2067, 7, 25, 0, 0, 1924, 1926, 5, 42, 0, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1929, 5, 28, 0, 0, 1928, 1930, 5, 857, 0, 0, 1929, 1928, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 2067, 3, 692, 346, 0, 1932, 1934, 5, 340, 0, 0, 1933, 1935, 5, 857, 0, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 2067, 5, 882, 0, 0, 1937, 1939, 5, 346, 0, 0, 1938, 1940, 5, 857, 0, 0, 1939, 1938, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 2067, 7, 26, 0, 0, 1942, 1944, 5, 349, 0, 0, 1943, 1945, 5, 857, 0, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 2067, 5, 882, 0, 0, 1947, 1948, 7, 27, 0, 0, 1948, 1950, 5, 367, 0, 0, 1949, 1951, 5, 857, 0, 0, 1950, 1949, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 2067, 5, 882, 0, 0, 1953, 1955, 5, 365, 0, 0, 1954, 1956, 5, 857, 0, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 2067, 7, 25, 0, 0, 1958, 1960, 5, 376, 0, 0, 1959, 1961, 5, 857, 0, 0, 1960, 1959, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 2067, 5, 882, 0, 0, 1963, 1965, 7, 28, 0, 0, 1964, 1966, 5, 857, 0, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 2067, 7, 25, 0, 0, 1968, 1970, 7, 29, 0, 0, 1969, 1971, 5, 857, 0, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 2067, 3, 714, 357, 0, 1973, 1975, 5, 377, 0, 0, 1974, 1976, 5, 857, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 2067, 3, 714, 357, 0, 1978, 1979, 5, 82, 0, 0, 1979, 1981, 5, 367, 0, 0, 1980, 1982, 5, 857, 0, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 2067, 5, 882, 0, 0, 1984, 1986, 5, 431, 0, 0, 1985, 1987, 5, 857, 0, 0, 1986, 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 2067, 7, 30, 0, 0, 1989, 1991, 5, 443, 0, 0, 1990, 1992, 5, 857, 0, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 2067, 3, 716, 358, 0, 1994, 1996, 5, 480, 0, 0, 1995, 1997, 5, 857, 0, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2067, 3, 714, 357, 0, 1999, 2001, 5, 490, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2067, 3, 714, 357, 0, 2004, 2006, 5, 520, 0, 0, 2005, 2007, 5, 857, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2067, 7, 13, 0, 0, 2009, 2011, 5, 529, 0, 0, 2010, 2012, 5, 857, 0, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2067, 5, 882, 0, 0, 2014, 2016, 5, 588, 0, 0, 2015, 2017, 5, 857, 0, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2067, 7, 31, 0, 0, 2019, 2020, 5, 640, 0, 0, 2020, 2067, 5, 664, 0, 0, 2021, 2023, 5, 833, 0, 0, 2022, 2024, 5, 857, 0, 0, 2023, 2022, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2067, 5, 882, 0, 0, 2026, 2028, 5, 642, 0, 0, 2027, 2029, 5, 857, 0, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2067, 7, 13, 0, 0, 2031, 2033, 5, 643, 0, 0, 2032, 2034, 5, 857, 0, 0, 2033, 2032, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2067, 7, 13, 0, 0, 2036, 2038, 5, 644, 0, 0, 2037, 2039, 5, 857, 0, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 1, 0, 0, 0, 2040, 2043, 5, 42, 0, 0, 2041, 2043, 3, 714, 357, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2041, 1, 0, 0, 0, 2043, 2067, 1, 0, 0, 0, 2044, 2045, 5, 658, 0, 0, 2045, 2047, 3, 668, 334, 0, 2046, 2048, 3, 102, 51, 0, 2047, 2046, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2067, 1, 0, 0, 0, 2049, 2050, 5, 659, 0, 0, 2050, 2051, 5, 857, 0, 0, 2051, 2067, 3, 100, 50, 0, 2052, 2067, 3, 102, 51, 0, 2053, 2055, 5, 665, 0, 0, 2054, 2056, 5, 857, 0, 0, 2055, 2054, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2067, 7, 25, 0, 0, 2058, 2060, 5, 181, 0, 0, 2059, 2061, 5, 857, 0, 0, 2060, 2059, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 5, 866, 0, 0, 2063, 2064, 3, 652, 326, 0, 2064, 2065, 5, 867, 0, 0, 2065, 2067, 1, 0, 0, 0, 2066, 1881, 1, 0, 0, 0, 2066, 1888, 1, 0, 0, 0, 2066, 1893, 1, 0, 0, 0, 2066, 1898, 1, 0, 0, 0, 2066, 1903, 1, 0, 0, 0, 2066, 1909, 1, 0, 0, 0, 2066, 1919, 1, 0, 0, 0, 2066, 1925, 1, 0, 0, 0, 2066, 1932, 1, 0, 0, 0, 2066, 1937, 1, 0, 0, 0, 2066, 1942, 1, 0, 0, 0, 2066, 1947, 1, 0, 0, 0, 2066, 1953, 1, 0, 0, 0, 2066, 1958, 1, 0, 0, 0, 2066, 1963, 1, 0, 0, 0, 2066, 1968, 1, 0, 0, 0, 2066, 1973, 1, 0, 0, 0, 2066, 1978, 1, 0, 0, 0, 2066, 1984, 1, 0, 0, 0, 2066, 1989, 1, 0, 0, 0, 2066, 1994, 1, 0, 0, 0, 2066, 1999, 1, 0, 0, 0, 2066, 2004, 1, 0, 0, 0, 2066, 2009, 1, 0, 0, 0, 2066, 2014, 1, 0, 0, 0, 2066, 2019, 1, 0, 0, 0, 2066, 2021, 1, 0, 0, 0, 2066, 2026, 1, 0, 0, 0, 2066, 2031, 1, 0, 0, 0, 2066, 2036, 1, 0, 0, 0, 2066, 2044, 1, 0, 0, 0, 2066, 2049, 1, 0, 0, 0, 2066, 2052, 1, 0, 0, 0, 2066, 2053, 1, 0, 0, 0, 2066, 2058, 1, 0, 0, 0, 2067, 99, 1, 0, 0, 0, 2068, 2069, 7, 32, 0, 0, 2069, 101, 1, 0, 0, 0, 2070, 2071, 5, 647, 0, 0, 2071, 2072, 7, 21, 0, 0, 2072, 103, 1, 0, 0, 0, 2073, 2074, 5, 130, 0, 0, 2074, 2075, 5, 20, 0, 0, 2075, 2078, 3, 106, 53, 0, 2076, 2077, 5, 528, 0, 0, 2077, 2079, 3, 714, 357, 0, 2078, 2076, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2087, 1, 0, 0, 0, 2080, 2081, 5, 652, 0, 0, 2081, 2082, 5, 20, 0, 0, 2082, 2085, 3, 108, 54, 0, 2083, 2084, 5, 653, 0, 0, 2084, 2086, 3, 714, 357, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2088, 1, 0, 0, 0, 2087, 2080, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2100, 1, 0, 0, 0, 2089, 2090, 5, 866, 0, 0, 2090, 2095, 3, 110, 55, 0, 2091, 2092, 5, 868, 0, 0, 2092, 2094, 3, 110, 55, 0, 2093, 2091, 1, 0, 0, 0, 2094, 2097, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2098, 2099, 5, 867, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2089, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 105, 1, 0, 0, 0, 2102, 2104, 5, 101, 0, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2106, 5, 418, 0, 0, 2106, 2107, 5, 866, 0, 0, 2107, 2108, 3, 806, 403, 0, 2108, 2109, 5, 867, 0, 0, 2109, 2149, 1, 0, 0, 0, 2110, 2112, 5, 101, 0, 0, 2111, 2110, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2117, 5, 92, 0, 0, 2114, 2115, 5, 308, 0, 0, 2115, 2116, 5, 857, 0, 0, 2116, 2118, 7, 33, 0, 0, 2117, 2114, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 5, 866, 0, 0, 2120, 2122, 3, 662, 331, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2149, 5, 867, 0, 0, 2124, 2134, 5, 134, 0, 0, 2125, 2126, 5, 866, 0, 0, 2126, 2127, 3, 806, 403, 0, 2127, 2128, 5, 867, 0, 0, 2128, 2135, 1, 0, 0, 0, 2129, 2130, 5, 337, 0, 0, 2130, 2131, 5, 866, 0, 0, 2131, 2132, 3, 662, 331, 0, 2132, 2133, 5, 867, 0, 0, 2133, 2135, 1, 0, 0, 0, 2134, 2125, 1, 0, 0, 0, 2134, 2129, 1, 0, 0, 0, 2135, 2149, 1, 0, 0, 0, 2136, 2146, 5, 449, 0, 0, 2137, 2138, 5, 866, 0, 0, 2138, 2139, 3, 806, 403, 0, 2139, 2140, 5, 867, 0, 0, 2140, 2147, 1, 0, 0, 0, 2141, 2142, 5, 337, 0, 0, 2142, 2143, 5, 866, 0, 0, 2143, 2144, 3, 662, 331, 0, 2144, 2145, 5, 867, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2137, 1, 0, 0, 0, 2146, 2141, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2103, 1, 0, 0, 0, 2148, 2111, 1, 0, 0, 0, 2148, 2124, 1, 0, 0, 0, 2148, 2136, 1, 0, 0, 0, 2149, 107, 1, 0, 0, 0, 2150, 2152, 5, 101, 0, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2154, 5, 418, 0, 0, 2154, 2155, 5, 866, 0, 0, 2155, 2156, 3, 806, 403, 0, 2156, 2157, 5, 867, 0, 0, 2157, 2172, 1, 0, 0, 0, 2158, 2160, 5, 101, 0, 0, 2159, 2158, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2165, 5, 92, 0, 0, 2162, 2163, 5, 308, 0, 0, 2163, 2164, 5, 857, 0, 0, 2164, 2166, 7, 33, 0, 0, 2165, 2162, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 5, 866, 0, 0, 2168, 2169, 3, 662, 331, 0, 2169, 2170, 5, 867, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2151, 1, 0, 0, 0, 2171, 2159, 1, 0, 0, 0, 2172, 109, 1, 0, 0, 0, 2173, 2174, 5, 130, 0, 0, 2174, 2175, 3, 674, 337, 0, 2175, 2176, 5, 189, 0, 0, 2176, 2177, 5, 447, 0, 0, 2177, 2178, 5, 662, 0, 0, 2178, 2179, 5, 866, 0, 0, 2179, 2184, 3, 112, 56, 0, 2180, 2181, 5, 868, 0, 0, 2181, 2183, 3, 112, 56, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2186, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2187, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2191, 5, 867, 0, 0, 2188, 2190, 3, 118, 59, 0, 2189, 2188, 1, 0, 0, 0, 2190, 2193, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2205, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2194, 2195, 5, 866, 0, 0, 2195, 2200, 3, 116, 58, 0, 2196, 2197, 5, 868, 0, 0, 2197, 2199, 3, 116, 58, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2203, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2203, 2204, 5, 867, 0, 0, 2204, 2206, 1, 0, 0, 0, 2205, 2194, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2320, 1, 0, 0, 0, 2207, 2208, 5, 130, 0, 0, 2208, 2209, 3, 674, 337, 0, 2209, 2210, 5, 189, 0, 0, 2210, 2211, 5, 447, 0, 0, 2211, 2212, 5, 662, 0, 0, 2212, 2216, 3, 112, 56, 0, 2213, 2215, 3, 118, 59, 0, 2214, 2213, 1, 0, 0, 0, 2215, 2218, 1, 0, 0, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2230, 1, 0, 0, 0, 2218, 2216, 1, 0, 0, 0, 2219, 2220, 5, 866, 0, 0, 2220, 2225, 3, 116, 58, 0, 2221, 2222, 5, 868, 0, 0, 2222, 2224, 3, 116, 58, 0, 2223, 2221, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2229, 5, 867, 0, 0, 2229, 2231, 1, 0, 0, 0, 2230, 2219, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2320, 1, 0, 0, 0, 2232, 2233, 5, 130, 0, 0, 2233, 2234, 3, 674, 337, 0, 2234, 2235, 5, 189, 0, 0, 2235, 2236, 5, 80, 0, 0, 2236, 2237, 5, 866, 0, 0, 2237, 2242, 3, 112, 56, 0, 2238, 2239, 5, 868, 0, 0, 2239, 2241, 3, 112, 56, 0, 2240, 2238, 1, 0, 0, 0, 2241, 2244, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2245, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2249, 5, 867, 0, 0, 2246, 2248, 3, 118, 59, 0, 2247, 2246, 1, 0, 0, 0, 2248, 2251, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2263, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2253, 5, 866, 0, 0, 2253, 2258, 3, 116, 58, 0, 2254, 2255, 5, 868, 0, 0, 2255, 2257, 3, 116, 58, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2260, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2262, 5, 867, 0, 0, 2262, 2264, 1, 0, 0, 0, 2263, 2252, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2320, 1, 0, 0, 0, 2265, 2266, 5, 130, 0, 0, 2266, 2267, 3, 674, 337, 0, 2267, 2268, 5, 189, 0, 0, 2268, 2269, 5, 80, 0, 0, 2269, 2270, 5, 866, 0, 0, 2270, 2275, 3, 114, 57, 0, 2271, 2272, 5, 868, 0, 0, 2272, 2274, 3, 114, 57, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2277, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2275, 1, 0, 0, 0, 2278, 2282, 5, 867, 0, 0, 2279, 2281, 3, 118, 59, 0, 2280, 2279, 1, 0, 0, 0, 2281, 2284, 1, 0, 0, 0, 2282, 2280, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2296, 1, 0, 0, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2286, 5, 866, 0, 0, 2286, 2291, 3, 116, 58, 0, 2287, 2288, 5, 868, 0, 0, 2288, 2290, 3, 116, 58, 0, 2289, 2287, 1, 0, 0, 0, 2290, 2293, 1, 0, 0, 0, 2291, 2289, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2291, 1, 0, 0, 0, 2294, 2295, 5, 867, 0, 0, 2295, 2297, 1, 0, 0, 0, 2296, 2285, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2320, 1, 0, 0, 0, 2298, 2299, 5, 130, 0, 0, 2299, 2303, 3, 674, 337, 0, 2300, 2302, 3, 118, 59, 0, 2301, 2300, 1, 0, 0, 0, 2302, 2305, 1, 0, 0, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2317, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2306, 2307, 5, 866, 0, 0, 2307, 2312, 3, 116, 58, 0, 2308, 2309, 5, 868, 0, 0, 2309, 2311, 3, 116, 58, 0, 2310, 2308, 1, 0, 0, 0, 2311, 2314, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2315, 2316, 5, 867, 0, 0, 2316, 2318, 1, 0, 0, 0, 2317, 2306, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2320, 1, 0, 0, 0, 2319, 2173, 1, 0, 0, 0, 2319, 2207, 1, 0, 0, 0, 2319, 2232, 1, 0, 0, 0, 2319, 2265, 1, 0, 0, 0, 2319, 2298, 1, 0, 0, 0, 2320, 111, 1, 0, 0, 0, 2321, 2325, 3, 726, 363, 0, 2322, 2325, 3, 806, 403, 0, 2323, 2325, 5, 111, 0, 0, 2324, 2321, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2323, 1, 0, 0, 0, 2325, 113, 1, 0, 0, 0, 2326, 2327, 5, 866, 0, 0, 2327, 2330, 3, 112, 56, 0, 2328, 2329, 5, 868, 0, 0, 2329, 2331, 3, 112, 56, 0, 2330, 2328, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2330, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 5, 867, 0, 0, 2335, 115, 1, 0, 0, 0, 2336, 2337, 5, 652, 0, 0, 2337, 2341, 3, 708, 354, 0, 2338, 2340, 3, 118, 59, 0, 2339, 2338, 1, 0, 0, 0, 2340, 2343, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 117, 1, 0, 0, 0, 2343, 2341, 1, 0, 0, 0, 2344, 2346, 5, 42, 0, 0, 2345, 2344, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2348, 1, 0, 0, 0, 2347, 2349, 5, 647, 0, 0, 2348, 2347, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2352, 5, 380, 0, 0, 2351, 2353, 5, 857, 0, 0, 2352, 2351, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2393, 3, 694, 347, 0, 2355, 2357, 5, 340, 0, 0, 2356, 2358, 5, 857, 0, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2393, 5, 882, 0, 0, 2360, 2361, 5, 360, 0, 0, 2361, 2363, 5, 367, 0, 0, 2362, 2364, 5, 857, 0, 0, 2363, 2362, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2393, 5, 882, 0, 0, 2366, 2367, 5, 82, 0, 0, 2367, 2369, 5, 367, 0, 0, 2368, 2370, 5, 857, 0, 0, 2369, 2368, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2393, 5, 882, 0, 0, 2372, 2374, 5, 480, 0, 0, 2373, 2375, 5, 857, 0, 0, 2374, 2373, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2393, 3, 714, 357, 0, 2377, 2379, 5, 490, 0, 0, 2378, 2380, 5, 857, 0, 0, 2379, 2378, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2393, 3, 714, 357, 0, 2382, 2384, 5, 658, 0, 0, 2383, 2385, 5, 857, 0, 0, 2384, 2383, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2393, 3, 668, 334, 0, 2387, 2389, 5, 504, 0, 0, 2388, 2390, 5, 857, 0, 0, 2389, 2388, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 3, 708, 354, 0, 2392, 2345, 1, 0, 0, 0, 2392, 2355, 1, 0, 0, 0, 2392, 2360, 1, 0, 0, 0, 2392, 2366, 1, 0, 0, 0, 2392, 2372, 1, 0, 0, 0, 2392, 2377, 1, 0, 0, 0, 2392, 2382, 1, 0, 0, 0, 2392, 2387, 1, 0, 0, 0, 2393, 119, 1, 0, 0, 0, 2394, 2395, 5, 8, 0, 0, 2395, 2397, 7, 0, 0, 0, 2396, 2398, 3, 630, 315, 0, 2397, 2396, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2401, 3, 52, 26, 0, 2400, 2399, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2400, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2413, 1, 0, 0, 0, 2404, 2405, 5, 8, 0, 0, 2405, 2406, 7, 0, 0, 0, 2406, 2407, 3, 630, 315, 0, 2407, 2408, 5, 677, 0, 0, 2408, 2409, 5, 360, 0, 0, 2409, 2410, 5, 367, 0, 0, 2410, 2411, 5, 496, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2394, 1, 0, 0, 0, 2412, 2404, 1, 0, 0, 0, 2413, 121, 1, 0, 0, 0, 2414, 2416, 5, 8, 0, 0, 2415, 2417, 3, 58, 29, 0, 2416, 2415, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 5, 385, 0, 0, 2419, 2423, 3, 704, 352, 0, 2420, 2421, 5, 119, 0, 0, 2421, 2422, 5, 590, 0, 0, 2422, 2424, 3, 60, 30, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2431, 1, 0, 0, 0, 2425, 2426, 5, 119, 0, 0, 2426, 2428, 5, 343, 0, 0, 2427, 2429, 5, 114, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2432, 5, 541, 0, 0, 2431, 2425, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2436, 1, 0, 0, 0, 2433, 2434, 5, 141, 0, 0, 2434, 2435, 5, 176, 0, 0, 2435, 2437, 3, 704, 352, 0, 2436, 2433, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2439, 1, 0, 0, 0, 2438, 2440, 3, 68, 34, 0, 2439, 2438, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2442, 5, 340, 0, 0, 2442, 2444, 5, 882, 0, 0, 2443, 2441, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2447, 1, 0, 0, 0, 2445, 2446, 5, 371, 0, 0, 2446, 2448, 3, 422, 211, 0, 2447, 2445, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 123, 1, 0, 0, 0, 2449, 2450, 5, 8, 0, 0, 2450, 2451, 5, 409, 0, 0, 2451, 2455, 3, 634, 317, 0, 2452, 2454, 3, 76, 38, 0, 2453, 2452, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 125, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2459, 5, 8, 0, 0, 2459, 2460, 5, 433, 0, 0, 2460, 2461, 5, 585, 0, 0, 2461, 2462, 5, 801, 0, 0, 2462, 2463, 5, 453, 0, 0, 2463, 2464, 5, 92, 0, 0, 2464, 127, 1, 0, 0, 0, 2465, 2466, 5, 8, 0, 0, 2466, 2467, 5, 451, 0, 0, 2467, 2468, 5, 74, 0, 0, 2468, 2469, 3, 708, 354, 0, 2469, 2470, 5, 6, 0, 0, 2470, 2471, 5, 671, 0, 0, 2471, 2477, 5, 882, 0, 0, 2472, 2474, 5, 428, 0, 0, 2473, 2475, 5, 857, 0, 0, 2474, 2473, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 3, 716, 358, 0, 2477, 2472, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2481, 5, 687, 0, 0, 2480, 2479, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2484, 5, 380, 0, 0, 2483, 2485, 5, 857, 0, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 3, 694, 347, 0, 2487, 129, 1, 0, 0, 0, 2488, 2489, 5, 8, 0, 0, 2489, 2490, 5, 132, 0, 0, 2490, 2494, 3, 704, 352, 0, 2491, 2493, 3, 76, 38, 0, 2492, 2491, 1, 0, 0, 0, 2493, 2496, 1, 0, 0, 0, 2494, 2492, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 131, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2497, 2498, 5, 8, 0, 0, 2498, 2499, 5, 592, 0, 0, 2499, 2500, 3, 708, 354, 0, 2500, 2501, 5, 518, 0, 0, 2501, 2502, 5, 866, 0, 0, 2502, 2507, 3, 78, 39, 0, 2503, 2504, 5, 868, 0, 0, 2504, 2506, 3, 78, 39, 0, 2505, 2503, 1, 0, 0, 0, 2506, 2509, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2510, 1, 0, 0, 0, 2509, 2507, 1, 0, 0, 0, 2510, 2511, 5, 867, 0, 0, 2511, 133, 1, 0, 0, 0, 2512, 2513, 5, 8, 0, 0, 2513, 2514, 5, 173, 0, 0, 2514, 2523, 3, 654, 327, 0, 2515, 2520, 3, 140, 70, 0, 2516, 2517, 5, 868, 0, 0, 2517, 2519, 3, 140, 70, 0, 2518, 2516, 1, 0, 0, 0, 2519, 2522, 1, 0, 0, 0, 2520, 2518, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2524, 1, 0, 0, 0, 2522, 2520, 1, 0, 0, 0, 2523, 2515, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2532, 1, 0, 0, 0, 2525, 2529, 3, 142, 71, 0, 2526, 2528, 3, 142, 71, 0, 2527, 2526, 1, 0, 0, 0, 2528, 2531, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2533, 1, 0, 0, 0, 2531, 2529, 1, 0, 0, 0, 2532, 2525, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 135, 1, 0, 0, 0, 2534, 2536, 5, 8, 0, 0, 2535, 2537, 5, 180, 0, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2539, 5, 658, 0, 0, 2539, 2540, 3, 668, 334, 0, 2540, 2541, 7, 34, 0, 0, 2541, 2542, 5, 361, 0, 0, 2542, 2548, 5, 882, 0, 0, 2543, 2545, 5, 428, 0, 0, 2544, 2546, 5, 857, 0, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 3, 716, 358, 0, 2548, 2543, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 5, 687, 0, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2556, 1, 0, 0, 0, 2553, 2554, 5, 141, 0, 0, 2554, 2555, 5, 176, 0, 0, 2555, 2557, 3, 666, 333, 0, 2556, 2553, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2563, 1, 0, 0, 0, 2558, 2560, 5, 314, 0, 0, 2559, 2561, 5, 857, 0, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 3, 716, 358, 0, 2563, 2558, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2567, 1, 0, 0, 0, 2565, 2566, 5, 155, 0, 0, 2566, 2568, 7, 35, 0, 0, 2567, 2565, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2574, 1, 0, 0, 0, 2569, 2571, 5, 376, 0, 0, 2570, 2572, 5, 857, 0, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2575, 5, 882, 0, 0, 2574, 2569, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2581, 1, 0, 0, 0, 2576, 2578, 5, 380, 0, 0, 2577, 2579, 5, 857, 0, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2582, 3, 694, 347, 0, 2581, 2576, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2588, 1, 0, 0, 0, 2583, 2585, 5, 825, 0, 0, 2584, 2586, 5, 857, 0, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 5, 882, 0, 0, 2588, 2583, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 137, 1, 0, 0, 0, 2590, 2594, 5, 8, 0, 0, 2591, 2592, 5, 308, 0, 0, 2592, 2593, 5, 857, 0, 0, 2593, 2595, 7, 10, 0, 0, 2594, 2591, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2598, 3, 58, 29, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2602, 1, 0, 0, 0, 2599, 2600, 5, 162, 0, 0, 2600, 2601, 5, 591, 0, 0, 2601, 2603, 7, 11, 0, 0, 2602, 2599, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 5, 684, 0, 0, 2605, 2610, 3, 638, 319, 0, 2606, 2607, 5, 866, 0, 0, 2607, 2608, 3, 662, 331, 0, 2608, 2609, 5, 867, 0, 0, 2609, 2611, 1, 0, 0, 0, 2610, 2606, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2613, 5, 13, 0, 0, 2613, 2620, 3, 204, 102, 0, 2614, 2616, 5, 194, 0, 0, 2615, 2617, 7, 12, 0, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 5, 27, 0, 0, 2619, 2621, 5, 121, 0, 0, 2620, 2614, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 139, 1, 0, 0, 0, 2622, 2629, 3, 98, 49, 0, 2623, 2625, 5, 868, 0, 0, 2624, 2623, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2628, 3, 98, 49, 0, 2627, 2624, 1, 0, 0, 0, 2628, 2631, 1, 0, 0, 0, 2629, 2627, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2887, 1, 0, 0, 0, 2631, 2629, 1, 0, 0, 0, 2632, 2634, 5, 6, 0, 0, 2633, 2635, 5, 29, 0, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2637, 3, 664, 332, 0, 2637, 2641, 3, 88, 44, 0, 2638, 2642, 5, 402, 0, 0, 2639, 2640, 5, 306, 0, 0, 2640, 2642, 3, 664, 332, 0, 2641, 2638, 1, 0, 0, 0, 2641, 2639, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2887, 1, 0, 0, 0, 2643, 2645, 5, 6, 0, 0, 2644, 2646, 5, 29, 0, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2648, 5, 866, 0, 0, 2648, 2649, 3, 664, 332, 0, 2649, 2656, 3, 88, 44, 0, 2650, 2651, 5, 868, 0, 0, 2651, 2652, 3, 664, 332, 0, 2652, 2653, 3, 88, 44, 0, 2653, 2655, 1, 0, 0, 0, 2654, 2650, 1, 0, 0, 0, 2655, 2658, 1, 0, 0, 0, 2656, 2654, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2659, 2660, 5, 867, 0, 0, 2660, 2887, 1, 0, 0, 0, 2661, 2662, 5, 6, 0, 0, 2662, 2664, 7, 18, 0, 0, 2663, 2665, 3, 644, 322, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2668, 3, 70, 35, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2673, 3, 740, 370, 0, 2670, 2672, 3, 72, 36, 0, 2671, 2670, 1, 0, 0, 0, 2672, 2675, 1, 0, 0, 0, 2673, 2671, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2887, 1, 0, 0, 0, 2675, 2673, 1, 0, 0, 0, 2676, 2677, 5, 6, 0, 0, 2677, 2679, 7, 19, 0, 0, 2678, 2680, 7, 18, 0, 0, 2679, 2678, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 1, 0, 0, 0, 2681, 2683, 3, 644, 322, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2688, 3, 740, 370, 0, 2685, 2687, 3, 72, 36, 0, 2686, 2685, 1, 0, 0, 0, 2687, 2690, 1, 0, 0, 0, 2688, 2686, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2887, 1, 0, 0, 0, 2690, 2688, 1, 0, 0, 0, 2691, 2696, 5, 6, 0, 0, 2692, 2694, 5, 31, 0, 0, 2693, 2695, 3, 708, 354, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2692, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 5, 131, 0, 0, 2699, 2701, 5, 92, 0, 0, 2700, 2702, 3, 70, 35, 0, 2701, 2700, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2707, 3, 740, 370, 0, 2704, 2706, 3, 72, 36, 0, 2705, 2704, 1, 0, 0, 0, 2706, 2709, 1, 0, 0, 0, 2707, 2705, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2887, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2715, 5, 6, 0, 0, 2711, 2713, 5, 31, 0, 0, 2712, 2714, 3, 708, 354, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2716, 1, 0, 0, 0, 2715, 2711, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2719, 5, 182, 0, 0, 2718, 2720, 7, 18, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2722, 1, 0, 0, 0, 2721, 2723, 3, 644, 322, 0, 2722, 2721, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2726, 3, 70, 35, 0, 2725, 2724, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 2731, 3, 740, 370, 0, 2728, 2730, 3, 72, 36, 0, 2729, 2728, 1, 0, 0, 0, 2730, 2733, 1, 0, 0, 0, 2731, 2729, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2887, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2739, 5, 6, 0, 0, 2735, 2737, 5, 31, 0, 0, 2736, 2738, 3, 708, 354, 0, 2737, 2736, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2735, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2742, 5, 67, 0, 0, 2742, 2744, 5, 92, 0, 0, 2743, 2745, 3, 644, 322, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2747, 3, 740, 370, 0, 2747, 2748, 3, 92, 46, 0, 2748, 2887, 1, 0, 0, 0, 2749, 2751, 5, 6, 0, 0, 2750, 2752, 3, 84, 42, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2887, 1, 0, 0, 0, 2753, 2754, 5, 51, 0, 0, 2754, 2755, 7, 36, 0, 0, 2755, 2887, 3, 708, 354, 0, 2756, 2757, 5, 8, 0, 0, 2757, 2758, 7, 36, 0, 0, 2758, 2760, 3, 708, 354, 0, 2759, 2761, 5, 114, 0, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 1, 0, 0, 0, 2762, 2764, 5, 57, 0, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2887, 1, 0, 0, 0, 2765, 2767, 5, 308, 0, 0, 2766, 2768, 5, 857, 0, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2887, 7, 37, 0, 0, 2770, 2772, 5, 8, 0, 0, 2771, 2773, 5, 29, 0, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2782, 3, 664, 332, 0, 2775, 2776, 5, 155, 0, 0, 2776, 2777, 5, 42, 0, 0, 2777, 2783, 3, 756, 378, 0, 2778, 2779, 5, 155, 0, 0, 2779, 2783, 7, 16, 0, 0, 2780, 2781, 5, 51, 0, 0, 2781, 2783, 5, 42, 0, 0, 2782, 2775, 1, 0, 0, 0, 2782, 2778, 1, 0, 0, 0, 2782, 2780, 1, 0, 0, 0, 2783, 2887, 1, 0, 0, 0, 2784, 2785, 5, 8, 0, 0, 2785, 2786, 5, 82, 0, 0, 2786, 2787, 3, 644, 322, 0, 2787, 2788, 7, 16, 0, 0, 2788, 2887, 1, 0, 0, 0, 2789, 2791, 5, 25, 0, 0, 2790, 2792, 5, 29, 0, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 664, 332, 0, 2794, 2795, 3, 660, 330, 0, 2795, 2799, 3, 88, 44, 0, 2796, 2800, 5, 402, 0, 0, 2797, 2798, 5, 306, 0, 0, 2798, 2800, 3, 664, 332, 0, 2799, 2796, 1, 0, 0, 0, 2799, 2797, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2887, 1, 0, 0, 0, 2801, 2803, 5, 42, 0, 0, 2802, 2801, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2805, 5, 26, 0, 0, 2805, 2806, 5, 155, 0, 0, 2806, 2807, 5, 857, 0, 0, 2807, 2813, 3, 690, 345, 0, 2808, 2810, 5, 28, 0, 0, 2809, 2811, 5, 857, 0, 0, 2810, 2809, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2814, 3, 692, 346, 0, 2813, 2808, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2887, 1, 0, 0, 0, 2815, 2816, 5, 33, 0, 0, 2816, 2820, 5, 176, 0, 0, 2817, 2821, 5, 823, 0, 0, 2818, 2819, 5, 26, 0, 0, 2819, 2821, 5, 155, 0, 0, 2820, 2817, 1, 0, 0, 0, 2820, 2818, 1, 0, 0, 0, 2821, 2822, 1, 0, 0, 0, 2822, 2825, 3, 690, 345, 0, 2823, 2824, 5, 28, 0, 0, 2824, 2826, 3, 692, 346, 0, 2825, 2823, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 2887, 1, 0, 0, 0, 2827, 2828, 7, 38, 0, 0, 2828, 2887, 5, 93, 0, 0, 2829, 2830, 7, 39, 0, 0, 2830, 2887, 5, 658, 0, 0, 2831, 2833, 5, 51, 0, 0, 2832, 2834, 5, 29, 0, 0, 2833, 2832, 1, 0, 0, 0, 2833, 2834, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2887, 3, 664, 332, 0, 2836, 2837, 5, 51, 0, 0, 2837, 2838, 7, 18, 0, 0, 2838, 2887, 3, 644, 322, 0, 2839, 2840, 5, 51, 0, 0, 2840, 2841, 5, 131, 0, 0, 2841, 2887, 5, 92, 0, 0, 2842, 2843, 5, 51, 0, 0, 2843, 2844, 5, 67, 0, 0, 2844, 2845, 5, 92, 0, 0, 2845, 2887, 3, 708, 354, 0, 2846, 2887, 5, 66, 0, 0, 2847, 2849, 5, 104, 0, 0, 2848, 2850, 5, 857, 0, 0, 2849, 2848, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 1, 0, 0, 0, 2851, 2887, 7, 4, 0, 0, 2852, 2854, 5, 492, 0, 0, 2853, 2855, 5, 29, 0, 0, 2854, 2853, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2857, 3, 664, 332, 0, 2857, 2861, 3, 88, 44, 0, 2858, 2862, 5, 402, 0, 0, 2859, 2860, 5, 306, 0, 0, 2860, 2862, 3, 664, 332, 0, 2861, 2858, 1, 0, 0, 0, 2861, 2859, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2887, 1, 0, 0, 0, 2863, 2864, 5, 125, 0, 0, 2864, 2865, 5, 20, 0, 0, 2865, 2887, 3, 662, 331, 0, 2866, 2867, 5, 141, 0, 0, 2867, 2868, 5, 29, 0, 0, 2868, 2869, 3, 664, 332, 0, 2869, 2870, 5, 176, 0, 0, 2870, 2871, 3, 660, 330, 0, 2871, 2887, 1, 0, 0, 0, 2872, 2873, 5, 141, 0, 0, 2873, 2874, 7, 18, 0, 0, 2874, 2875, 3, 644, 322, 0, 2875, 2876, 5, 176, 0, 0, 2876, 2877, 3, 640, 320, 0, 2877, 2887, 1, 0, 0, 0, 2878, 2880, 5, 141, 0, 0, 2879, 2881, 7, 40, 0, 0, 2880, 2879, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2887, 3, 650, 325, 0, 2883, 2884, 7, 41, 0, 0, 2884, 2887, 5, 681, 0, 0, 2885, 2887, 3, 142, 71, 0, 2886, 2622, 1, 0, 0, 0, 2886, 2632, 1, 0, 0, 0, 2886, 2643, 1, 0, 0, 0, 2886, 2661, 1, 0, 0, 0, 2886, 2676, 1, 0, 0, 0, 2886, 2691, 1, 0, 0, 0, 2886, 2710, 1, 0, 0, 0, 2886, 2734, 1, 0, 0, 0, 2886, 2749, 1, 0, 0, 0, 2886, 2753, 1, 0, 0, 0, 2886, 2756, 1, 0, 0, 0, 2886, 2765, 1, 0, 0, 0, 2886, 2770, 1, 0, 0, 0, 2886, 2784, 1, 0, 0, 0, 2886, 2789, 1, 0, 0, 0, 2886, 2802, 1, 0, 0, 0, 2886, 2815, 1, 0, 0, 0, 2886, 2827, 1, 0, 0, 0, 2886, 2829, 1, 0, 0, 0, 2886, 2831, 1, 0, 0, 0, 2886, 2836, 1, 0, 0, 0, 2886, 2839, 1, 0, 0, 0, 2886, 2842, 1, 0, 0, 0, 2886, 2846, 1, 0, 0, 0, 2886, 2847, 1, 0, 0, 0, 2886, 2852, 1, 0, 0, 0, 2886, 2863, 1, 0, 0, 0, 2886, 2866, 1, 0, 0, 0, 2886, 2872, 1, 0, 0, 0, 2886, 2878, 1, 0, 0, 0, 2886, 2883, 1, 0, 0, 0, 2886, 2885, 1, 0, 0, 0, 2887, 141, 1, 0, 0, 0, 2888, 2889, 5, 6, 0, 0, 2889, 2890, 5, 130, 0, 0, 2890, 2891, 5, 866, 0, 0, 2891, 2896, 3, 110, 55, 0, 2892, 2893, 5, 868, 0, 0, 2893, 2895, 3, 110, 55, 0, 2894, 2892, 1, 0, 0, 0, 2895, 2898, 1, 0, 0, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2899, 1, 0, 0, 0, 2898, 2896, 1, 0, 0, 0, 2899, 2900, 5, 867, 0, 0, 2900, 2987, 1, 0, 0, 0, 2901, 2902, 5, 51, 0, 0, 2902, 2903, 5, 130, 0, 0, 2903, 2987, 3, 672, 336, 0, 2904, 2905, 5, 369, 0, 0, 2905, 2908, 5, 130, 0, 0, 2906, 2909, 3, 672, 336, 0, 2907, 2909, 5, 7, 0, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2907, 1, 0, 0, 0, 2909, 2910, 1, 0, 0, 0, 2910, 2987, 5, 658, 0, 0, 2911, 2912, 5, 425, 0, 0, 2912, 2915, 5, 130, 0, 0, 2913, 2916, 3, 672, 336, 0, 2914, 2916, 5, 7, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2987, 5, 658, 0, 0, 2918, 2919, 5, 668, 0, 0, 2919, 2922, 5, 130, 0, 0, 2920, 2923, 3, 672, 336, 0, 2921, 2923, 5, 7, 0, 0, 2922, 2920, 1, 0, 0, 0, 2922, 2921, 1, 0, 0, 0, 2923, 2987, 1, 0, 0, 0, 2924, 2925, 5, 335, 0, 0, 2925, 2926, 5, 130, 0, 0, 2926, 2987, 3, 714, 357, 0, 2927, 2928, 5, 561, 0, 0, 2928, 2929, 5, 130, 0, 0, 2929, 2930, 3, 672, 336, 0, 2930, 2931, 5, 88, 0, 0, 2931, 2932, 5, 866, 0, 0, 2932, 2937, 3, 110, 55, 0, 2933, 2934, 5, 868, 0, 0, 2934, 2936, 3, 110, 55, 0, 2935, 2933, 1, 0, 0, 0, 2936, 2939, 1, 0, 0, 0, 2937, 2935, 1, 0, 0, 0, 2937, 2938, 1, 0, 0, 0, 2938, 2940, 1, 0, 0, 0, 2939, 2937, 1, 0, 0, 0, 2940, 2941, 5, 867, 0, 0, 2941, 2987, 1, 0, 0, 0, 2942, 2943, 5, 388, 0, 0, 2943, 2944, 5, 130, 0, 0, 2944, 2945, 3, 674, 337, 0, 2945, 2946, 5, 194, 0, 0, 2946, 2947, 5, 173, 0, 0, 2947, 2950, 3, 654, 327, 0, 2948, 2949, 7, 41, 0, 0, 2949, 2951, 5, 681, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2987, 1, 0, 0, 0, 2952, 2953, 5, 10, 0, 0, 2953, 2956, 5, 130, 0, 0, 2954, 2957, 3, 672, 336, 0, 2955, 2957, 5, 7, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2955, 1, 0, 0, 0, 2957, 2987, 1, 0, 0, 0, 2958, 2959, 5, 27, 0, 0, 2959, 2962, 5, 130, 0, 0, 2960, 2963, 3, 672, 336, 0, 2961, 2963, 5, 7, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2961, 1, 0, 0, 0, 2963, 2987, 1, 0, 0, 0, 2964, 2965, 5, 120, 0, 0, 2965, 2968, 5, 130, 0, 0, 2966, 2969, 3, 672, 336, 0, 2967, 2969, 5, 7, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2967, 1, 0, 0, 0, 2969, 2987, 1, 0, 0, 0, 2970, 2971, 5, 550, 0, 0, 2971, 2974, 5, 130, 0, 0, 2972, 2975, 3, 672, 336, 0, 2973, 2975, 5, 7, 0, 0, 2974, 2972, 1, 0, 0, 0, 2974, 2973, 1, 0, 0, 0, 2975, 2987, 1, 0, 0, 0, 2976, 2977, 5, 562, 0, 0, 2977, 2980, 5, 130, 0, 0, 2978, 2981, 3, 672, 336, 0, 2979, 2981, 5, 7, 0, 0, 2980, 2978, 1, 0, 0, 0, 2980, 2979, 1, 0, 0, 0, 2981, 2987, 1, 0, 0, 0, 2982, 2983, 5, 560, 0, 0, 2983, 2987, 5, 527, 0, 0, 2984, 2985, 5, 677, 0, 0, 2985, 2987, 5, 527, 0, 0, 2986, 2888, 1, 0, 0, 0, 2986, 2901, 1, 0, 0, 0, 2986, 2904, 1, 0, 0, 0, 2986, 2911, 1, 0, 0, 0, 2986, 2918, 1, 0, 0, 0, 2986, 2924, 1, 0, 0, 0, 2986, 2927, 1, 0, 0, 0, 2986, 2942, 1, 0, 0, 0, 2986, 2952, 1, 0, 0, 0, 2986, 2958, 1, 0, 0, 0, 2986, 2964, 1, 0, 0, 0, 2986, 2970, 1, 0, 0, 0, 2986, 2976, 1, 0, 0, 0, 2986, 2982, 1, 0, 0, 0, 2986, 2984, 1, 0, 0, 0, 2987, 143, 1, 0, 0, 0, 2988, 2989, 5, 51, 0, 0, 2989, 2991, 7, 0, 0, 0, 2990, 2992, 3, 760, 380, 0, 2991, 2990, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2994, 3, 630, 315, 0, 2994, 145, 1, 0, 0, 0, 2995, 2996, 5, 51, 0, 0, 2996, 2998, 5, 385, 0, 0, 2997, 2999, 3, 760, 380, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3001, 3, 704, 352, 0, 3001, 147, 1, 0, 0, 0, 3002, 3003, 5, 51, 0, 0, 3003, 3005, 5, 82, 0, 0, 3004, 3006, 7, 1, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 3, 644, 322, 0, 3008, 3009, 5, 119, 0, 0, 3009, 3022, 3, 654, 327, 0, 3010, 3012, 5, 308, 0, 0, 3011, 3013, 5, 857, 0, 0, 3012, 3011, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3021, 7, 3, 0, 0, 3015, 3017, 5, 104, 0, 0, 3016, 3018, 5, 857, 0, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3021, 7, 4, 0, 0, 3020, 3010, 1, 0, 0, 0, 3020, 3015, 1, 0, 0, 0, 3021, 3024, 1, 0, 0, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 149, 1, 0, 0, 0, 3024, 3022, 1, 0, 0, 0, 3025, 3026, 5, 51, 0, 0, 3026, 3027, 5, 451, 0, 0, 3027, 3028, 5, 74, 0, 0, 3028, 3029, 3, 708, 354, 0, 3029, 3031, 5, 380, 0, 0, 3030, 3032, 5, 857, 0, 0, 3031, 3030, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 3, 694, 347, 0, 3034, 151, 1, 0, 0, 0, 3035, 3036, 5, 51, 0, 0, 3036, 3038, 5, 132, 0, 0, 3037, 3039, 3, 760, 380, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3041, 3, 704, 352, 0, 3041, 153, 1, 0, 0, 0, 3042, 3043, 5, 51, 0, 0, 3043, 3045, 5, 409, 0, 0, 3044, 3046, 3, 760, 380, 0, 3045, 3044, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 3, 634, 317, 0, 3048, 155, 1, 0, 0, 0, 3049, 3050, 5, 51, 0, 0, 3050, 3052, 5, 592, 0, 0, 3051, 3053, 3, 760, 380, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 3, 708, 354, 0, 3055, 157, 1, 0, 0, 0, 3056, 3057, 5, 51, 0, 0, 3057, 3058, 5, 161, 0, 0, 3058, 3059, 5, 137, 0, 0, 3059, 3061, 5, 835, 0, 0, 3060, 3062, 3, 760, 380, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3064, 5, 883, 0, 0, 3064, 159, 1, 0, 0, 0, 3065, 3067, 5, 51, 0, 0, 3066, 3068, 5, 660, 0, 0, 3067, 3066, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3071, 5, 173, 0, 0, 3070, 3072, 3, 760, 380, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3075, 3, 652, 326, 0, 3074, 3076, 7, 42, 0, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 161, 1, 0, 0, 0, 3077, 3079, 5, 51, 0, 0, 3078, 3080, 5, 180, 0, 0, 3079, 3078, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 5, 658, 0, 0, 3082, 3088, 3, 668, 334, 0, 3083, 3085, 5, 380, 0, 0, 3084, 3086, 5, 857, 0, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3089, 3, 694, 347, 0, 3088, 3083, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 163, 1, 0, 0, 0, 3090, 3091, 5, 51, 0, 0, 3091, 3093, 5, 178, 0, 0, 3092, 3094, 3, 760, 380, 0, 3093, 3092, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 3, 704, 352, 0, 3096, 165, 1, 0, 0, 0, 3097, 3098, 5, 51, 0, 0, 3098, 3100, 5, 684, 0, 0, 3099, 3101, 3, 760, 380, 0, 3100, 3099, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3107, 3, 638, 319, 0, 3103, 3104, 5, 868, 0, 0, 3104, 3106, 3, 638, 319, 0, 3105, 3103, 1, 0, 0, 0, 3106, 3109, 1, 0, 0, 0, 3107, 3105, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3111, 1, 0, 0, 0, 3109, 3107, 1, 0, 0, 0, 3110, 3112, 7, 42, 0, 0, 3111, 3110, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 167, 1, 0, 0, 0, 3113, 3114, 5, 51, 0, 0, 3114, 3116, 5, 582, 0, 0, 3115, 3117, 3, 760, 380, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 3, 656, 328, 0, 3119, 169, 1, 0, 0, 0, 3120, 3121, 5, 155, 0, 0, 3121, 3122, 5, 42, 0, 0, 3122, 3126, 5, 582, 0, 0, 3123, 3127, 5, 505, 0, 0, 3124, 3127, 5, 7, 0, 0, 3125, 3127, 3, 656, 328, 0, 3126, 3123, 1, 0, 0, 0, 3126, 3124, 1, 0, 0, 0, 3126, 3125, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3129, 5, 176, 0, 0, 3129, 3134, 3, 658, 329, 0, 3130, 3131, 5, 868, 0, 0, 3131, 3133, 3, 658, 329, 0, 3132, 3130, 1, 0, 0, 0, 3133, 3136, 1, 0, 0, 0, 3134, 3132, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3141, 1, 0, 0, 0, 3136, 3134, 1, 0, 0, 0, 3137, 3138, 5, 155, 0, 0, 3138, 3139, 5, 582, 0, 0, 3139, 3141, 3, 468, 234, 0, 3140, 3120, 1, 0, 0, 0, 3140, 3137, 1, 0, 0, 0, 3141, 171, 1, 0, 0, 0, 3142, 3143, 5, 141, 0, 0, 3143, 3144, 5, 173, 0, 0, 3144, 3149, 3, 174, 87, 0, 3145, 3146, 5, 868, 0, 0, 3146, 3148, 3, 174, 87, 0, 3147, 3145, 1, 0, 0, 0, 3148, 3151, 1, 0, 0, 0, 3149, 3147, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 173, 1, 0, 0, 0, 3151, 3149, 1, 0, 0, 0, 3152, 3153, 3, 654, 327, 0, 3153, 3154, 5, 176, 0, 0, 3154, 3155, 3, 650, 325, 0, 3155, 175, 1, 0, 0, 0, 3156, 3158, 5, 668, 0, 0, 3157, 3159, 5, 173, 0, 0, 3158, 3157, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3161, 3, 654, 327, 0, 3161, 177, 1, 0, 0, 0, 3162, 3163, 5, 21, 0, 0, 3163, 3170, 3, 704, 352, 0, 3164, 3167, 5, 866, 0, 0, 3165, 3168, 3, 750, 375, 0, 3166, 3168, 3, 742, 371, 0, 3167, 3165, 1, 0, 0, 0, 3167, 3166, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3171, 5, 867, 0, 0, 3170, 3164, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 179, 1, 0, 0, 0, 3172, 3175, 3, 234, 117, 0, 3173, 3175, 3, 236, 118, 0, 3174, 3172, 1, 0, 0, 0, 3174, 3173, 1, 0, 0, 0, 3175, 181, 1, 0, 0, 0, 3176, 3177, 5, 371, 0, 0, 3177, 3178, 3, 742, 371, 0, 3178, 183, 1, 0, 0, 0, 3179, 3184, 3, 238, 119, 0, 3180, 3184, 3, 240, 120, 0, 3181, 3184, 3, 242, 121, 0, 3182, 3184, 3, 244, 122, 0, 3183, 3179, 1, 0, 0, 0, 3183, 3180, 1, 0, 0, 0, 3183, 3181, 1, 0, 0, 0, 3183, 3182, 1, 0, 0, 0, 3184, 185, 1, 0, 0, 0, 3185, 3187, 5, 86, 0, 0, 3186, 3188, 7, 43, 0, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3190, 1, 0, 0, 0, 3189, 3191, 5, 79, 0, 0, 3190, 3189, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3194, 5, 88, 0, 0, 3193, 3192, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3202, 3, 654, 327, 0, 3196, 3197, 5, 130, 0, 0, 3197, 3199, 5, 866, 0, 0, 3198, 3200, 3, 672, 336, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 5, 867, 0, 0, 3202, 3196, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3215, 1, 0, 0, 0, 3204, 3206, 3, 262, 131, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3209, 1, 0, 0, 0, 3207, 3210, 3, 744, 372, 0, 3208, 3210, 3, 190, 95, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 188, 94, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3216, 1, 0, 0, 0, 3214, 3216, 3, 226, 113, 0, 3215, 3205, 1, 0, 0, 0, 3215, 3214, 1, 0, 0, 0, 3216, 3218, 1, 0, 0, 0, 3217, 3219, 3, 188, 94, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3232, 1, 0, 0, 0, 3220, 3221, 5, 119, 0, 0, 3221, 3222, 5, 373, 0, 0, 3222, 3223, 5, 92, 0, 0, 3223, 3224, 5, 185, 0, 0, 3224, 3229, 3, 228, 114, 0, 3225, 3226, 5, 868, 0, 0, 3226, 3228, 3, 228, 114, 0, 3227, 3225, 1, 0, 0, 0, 3228, 3231, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3233, 1, 0, 0, 0, 3231, 3229, 1, 0, 0, 0, 3232, 3220, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 187, 1, 0, 0, 0, 3234, 3235, 5, 13, 0, 0, 3235, 3237, 3, 708, 354, 0, 3236, 3238, 3, 262, 131, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 189, 1, 0, 0, 0, 3239, 3244, 3, 204, 102, 0, 3240, 3241, 5, 173, 0, 0, 3241, 3244, 3, 654, 327, 0, 3242, 3244, 3, 224, 112, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3240, 1, 0, 0, 0, 3243, 3242, 1, 0, 0, 0, 3244, 191, 1, 0, 0, 0, 3245, 3251, 3, 194, 97, 0, 3246, 3248, 5, 828, 0, 0, 3247, 3249, 7, 44, 0, 0, 3248, 3247, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 3, 194, 97, 0, 3251, 3246, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3251, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 193, 1, 0, 0, 0, 3255, 3257, 5, 866, 0, 0, 3256, 3255, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3260, 3, 276, 138, 0, 3259, 3261, 5, 867, 0, 0, 3260, 3259, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 195, 1, 0, 0, 0, 3262, 3263, 5, 103, 0, 0, 3263, 3265, 5, 360, 0, 0, 3264, 3266, 7, 45, 0, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 5, 450, 0, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3271, 5, 83, 0, 0, 3271, 3273, 5, 882, 0, 0, 3272, 3274, 7, 6, 0, 0, 3273, 3272, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3276, 5, 88, 0, 0, 3276, 3277, 5, 173, 0, 0, 3277, 3283, 3, 654, 327, 0, 3278, 3279, 5, 130, 0, 0, 3279, 3280, 5, 866, 0, 0, 3280, 3281, 3, 672, 336, 0, 3281, 3282, 5, 867, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3278, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3288, 1, 0, 0, 0, 3285, 3286, 5, 26, 0, 0, 3286, 3287, 5, 155, 0, 0, 3287, 3289, 3, 690, 345, 0, 3288, 3285, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 3296, 1, 0, 0, 0, 3290, 3292, 7, 46, 0, 0, 3291, 3293, 3, 304, 152, 0, 3292, 3291, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3292, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 3297, 1, 0, 0, 0, 3296, 3290, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3304, 1, 0, 0, 0, 3298, 3300, 5, 102, 0, 0, 3299, 3301, 3, 306, 153, 0, 3300, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3300, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3298, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3310, 1, 0, 0, 0, 3306, 3307, 5, 79, 0, 0, 3307, 3308, 3, 714, 357, 0, 3308, 3309, 7, 47, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3306, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3323, 1, 0, 0, 0, 3312, 3313, 5, 866, 0, 0, 3313, 3318, 3, 230, 115, 0, 3314, 3315, 5, 868, 0, 0, 3315, 3317, 3, 230, 115, 0, 3316, 3314, 1, 0, 0, 0, 3317, 3320, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3321, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3322, 5, 867, 0, 0, 3322, 3324, 1, 0, 0, 0, 3323, 3312, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3334, 1, 0, 0, 0, 3325, 3326, 5, 155, 0, 0, 3326, 3331, 3, 228, 114, 0, 3327, 3328, 5, 868, 0, 0, 3328, 3330, 3, 228, 114, 0, 3329, 3327, 1, 0, 0, 0, 3330, 3333, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3335, 1, 0, 0, 0, 3333, 3331, 1, 0, 0, 0, 3334, 3325, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 197, 1, 0, 0, 0, 3336, 3337, 5, 103, 0, 0, 3337, 3339, 5, 695, 0, 0, 3338, 3340, 7, 45, 0, 0, 3339, 3338, 1, 0, 0, 0, 3339, 3340, 1, 0, 0, 0, 3340, 3342, 1, 0, 0, 0, 3341, 3343, 5, 450, 0, 0, 3342, 3341, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3345, 5, 83, 0, 0, 3345, 3347, 5, 882, 0, 0, 3346, 3348, 7, 6, 0, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3350, 5, 88, 0, 0, 3350, 3351, 5, 173, 0, 0, 3351, 3355, 3, 654, 327, 0, 3352, 3353, 5, 26, 0, 0, 3353, 3354, 5, 155, 0, 0, 3354, 3356, 3, 690, 345, 0, 3355, 3352, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3367, 1, 0, 0, 0, 3357, 3358, 5, 587, 0, 0, 3358, 3359, 5, 423, 0, 0, 3359, 3361, 5, 20, 0, 0, 3360, 3362, 5, 859, 0, 0, 3361, 3360, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3365, 5, 882, 0, 0, 3364, 3366, 5, 858, 0, 0, 3365, 3364, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3368, 1, 0, 0, 0, 3367, 3357, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3373, 1, 0, 0, 0, 3369, 3370, 5, 79, 0, 0, 3370, 3371, 3, 714, 357, 0, 3371, 3372, 7, 47, 0, 0, 3372, 3374, 1, 0, 0, 0, 3373, 3369, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3386, 1, 0, 0, 0, 3375, 3376, 5, 866, 0, 0, 3376, 3381, 3, 230, 115, 0, 3377, 3378, 5, 868, 0, 0, 3378, 3380, 3, 230, 115, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3383, 1, 0, 0, 0, 3381, 3379, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 3384, 1, 0, 0, 0, 3383, 3381, 1, 0, 0, 0, 3384, 3385, 5, 867, 0, 0, 3385, 3387, 1, 0, 0, 0, 3386, 3375, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3397, 1, 0, 0, 0, 3388, 3389, 5, 155, 0, 0, 3389, 3394, 3, 228, 114, 0, 3390, 3391, 5, 868, 0, 0, 3391, 3393, 3, 228, 114, 0, 3392, 3390, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3398, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3388, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 199, 1, 0, 0, 0, 3399, 3400, 5, 866, 0, 0, 3400, 3402, 3, 218, 109, 0, 3401, 3403, 3, 252, 126, 0, 3402, 3401, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3405, 1, 0, 0, 0, 3404, 3406, 3, 318, 159, 0, 3405, 3404, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 5, 867, 0, 0, 3408, 3410, 3, 252, 126, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3412, 1, 0, 0, 0, 3411, 3413, 3, 318, 159, 0, 3412, 3411, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3415, 1, 0, 0, 0, 3414, 3416, 3, 302, 151, 0, 3415, 3414, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 201, 1, 0, 0, 0, 3417, 3419, 5, 143, 0, 0, 3418, 3420, 7, 48, 0, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3423, 5, 88, 0, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3430, 3, 654, 327, 0, 3425, 3426, 5, 130, 0, 0, 3426, 3427, 5, 866, 0, 0, 3427, 3428, 3, 672, 336, 0, 3428, 3429, 5, 867, 0, 0, 3429, 3431, 1, 0, 0, 0, 3430, 3425, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3440, 1, 0, 0, 0, 3432, 3433, 5, 866, 0, 0, 3433, 3434, 3, 662, 331, 0, 3434, 3435, 5, 867, 0, 0, 3435, 3437, 1, 0, 0, 0, 3436, 3432, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3441, 3, 222, 111, 0, 3439, 3441, 3, 226, 113, 0, 3440, 3436, 1, 0, 0, 0, 3440, 3439, 1, 0, 0, 0, 3441, 203, 1, 0, 0, 0, 3442, 3444, 3, 276, 138, 0, 3443, 3445, 3, 232, 116, 0, 3444, 3443, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 3512, 1, 0, 0, 0, 3446, 3448, 3, 278, 139, 0, 3447, 3449, 3, 232, 116, 0, 3448, 3447, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3452, 3, 302, 151, 0, 3451, 3450, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3512, 1, 0, 0, 0, 3453, 3455, 3, 272, 136, 0, 3454, 3456, 3, 232, 116, 0, 3455, 3454, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3512, 1, 0, 0, 0, 3457, 3459, 3, 278, 139, 0, 3458, 3460, 3, 282, 141, 0, 3459, 3458, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3471, 1, 0, 0, 0, 3463, 3465, 5, 181, 0, 0, 3464, 3466, 7, 44, 0, 0, 3465, 3464, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3469, 1, 0, 0, 0, 3467, 3470, 3, 276, 138, 0, 3468, 3470, 3, 272, 136, 0, 3469, 3467, 1, 0, 0, 0, 3469, 3468, 1, 0, 0, 0, 3470, 3472, 1, 0, 0, 0, 3471, 3463, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3474, 1, 0, 0, 0, 3473, 3475, 3, 252, 126, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3478, 3, 318, 159, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3480, 1, 0, 0, 0, 3479, 3481, 3, 232, 116, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3512, 1, 0, 0, 0, 3482, 3484, 3, 274, 137, 0, 3483, 3485, 3, 280, 140, 0, 3484, 3483, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3484, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3493, 1, 0, 0, 0, 3488, 3490, 5, 181, 0, 0, 3489, 3491, 7, 44, 0, 0, 3490, 3489, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3494, 3, 272, 136, 0, 3493, 3488, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 3496, 1, 0, 0, 0, 3495, 3497, 3, 252, 126, 0, 3496, 3495, 1, 0, 0, 0, 3496, 3497, 1, 0, 0, 0, 3497, 3499, 1, 0, 0, 0, 3498, 3500, 3, 318, 159, 0, 3499, 3498, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 1, 0, 0, 0, 3501, 3503, 3, 232, 116, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3512, 1, 0, 0, 0, 3504, 3507, 3, 278, 139, 0, 3505, 3506, 5, 868, 0, 0, 3506, 3508, 3, 284, 142, 0, 3507, 3505, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3507, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3512, 1, 0, 0, 0, 3511, 3442, 1, 0, 0, 0, 3511, 3446, 1, 0, 0, 0, 3511, 3453, 1, 0, 0, 0, 3511, 3457, 1, 0, 0, 0, 3511, 3482, 1, 0, 0, 0, 3511, 3504, 1, 0, 0, 0, 3512, 205, 1, 0, 0, 0, 3513, 3515, 3, 46, 23, 0, 3514, 3513, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3518, 3, 208, 104, 0, 3517, 3519, 3, 252, 126, 0, 3518, 3517, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3521, 1, 0, 0, 0, 3520, 3522, 3, 318, 159, 0, 3521, 3520, 1, 0, 0, 0, 3521, 3522, 1, 0, 0, 0, 3522, 3524, 1, 0, 0, 0, 3523, 3525, 3, 302, 151, 0, 3524, 3523, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 207, 1, 0, 0, 0, 3526, 3527, 6, 104, -1, 0, 3527, 3528, 3, 210, 105, 0, 3528, 3543, 1, 0, 0, 0, 3529, 3530, 10, 2, 0, 0, 3530, 3532, 5, 181, 0, 0, 3531, 3533, 7, 44, 0, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3542, 3, 210, 105, 0, 3535, 3536, 10, 1, 0, 0, 3536, 3538, 5, 59, 0, 0, 3537, 3539, 7, 44, 0, 0, 3538, 3537, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3542, 3, 210, 105, 0, 3541, 3529, 1, 0, 0, 0, 3541, 3535, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 209, 1, 0, 0, 0, 3545, 3543, 1, 0, 0, 0, 3546, 3547, 6, 105, -1, 0, 3547, 3548, 3, 212, 106, 0, 3548, 3557, 1, 0, 0, 0, 3549, 3550, 10, 1, 0, 0, 3550, 3552, 5, 828, 0, 0, 3551, 3553, 7, 44, 0, 0, 3552, 3551, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 3, 212, 106, 0, 3555, 3549, 1, 0, 0, 0, 3556, 3559, 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 211, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3575, 3, 220, 110, 0, 3561, 3562, 5, 866, 0, 0, 3562, 3564, 3, 208, 104, 0, 3563, 3565, 3, 252, 126, 0, 3564, 3563, 1, 0, 0, 0, 3564, 3565, 1, 0, 0, 0, 3565, 3567, 1, 0, 0, 0, 3566, 3568, 3, 318, 159, 0, 3567, 3566, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3571, 3, 302, 151, 0, 3570, 3569, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3573, 5, 867, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3560, 1, 0, 0, 0, 3574, 3561, 1, 0, 0, 0, 3575, 213, 1, 0, 0, 0, 3576, 3579, 3, 248, 124, 0, 3577, 3579, 3, 250, 125, 0, 3578, 3576, 1, 0, 0, 0, 3578, 3577, 1, 0, 0, 0, 3579, 215, 1, 0, 0, 0, 3580, 3584, 3, 224, 112, 0, 3581, 3582, 5, 125, 0, 0, 3582, 3583, 5, 20, 0, 0, 3583, 3585, 3, 676, 338, 0, 3584, 3581, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3587, 5, 100, 0, 0, 3587, 3589, 3, 320, 160, 0, 3588, 3586, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 217, 1, 0, 0, 0, 3590, 3595, 3, 220, 110, 0, 3591, 3592, 7, 49, 0, 0, 3592, 3594, 3, 220, 110, 0, 3593, 3591, 1, 0, 0, 0, 3594, 3597, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3599, 1, 0, 0, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3600, 3, 252, 126, 0, 3599, 3598, 1, 0, 0, 0, 3599, 3600, 1, 0, 0, 0, 3600, 3602, 1, 0, 0, 0, 3601, 3603, 3, 318, 159, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3605, 1, 0, 0, 0, 3604, 3606, 3, 302, 151, 0, 3605, 3604, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 219, 1, 0, 0, 0, 3607, 3611, 3, 204, 102, 0, 3608, 3611, 3, 620, 310, 0, 3609, 3611, 3, 216, 108, 0, 3610, 3607, 1, 0, 0, 0, 3610, 3608, 1, 0, 0, 0, 3610, 3609, 1, 0, 0, 0, 3611, 221, 1, 0, 0, 0, 3612, 3618, 3, 204, 102, 0, 3613, 3614, 5, 173, 0, 0, 3614, 3618, 3, 654, 327, 0, 3615, 3618, 3, 744, 372, 0, 3616, 3618, 3, 224, 112, 0, 3617, 3612, 1, 0, 0, 0, 3617, 3613, 1, 0, 0, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3616, 1, 0, 0, 0, 3618, 223, 1, 0, 0, 0, 3619, 3620, 5, 189, 0, 0, 3620, 3621, 5, 586, 0, 0, 3621, 3627, 3, 746, 373, 0, 3622, 3623, 5, 868, 0, 0, 3623, 3624, 5, 586, 0, 0, 3624, 3626, 3, 746, 373, 0, 3625, 3622, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 225, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3631, 5, 155, 0, 0, 3631, 3636, 3, 228, 114, 0, 3632, 3633, 5, 868, 0, 0, 3633, 3635, 3, 228, 114, 0, 3634, 3632, 1, 0, 0, 0, 3635, 3638, 1, 0, 0, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 227, 1, 0, 0, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3640, 3, 664, 332, 0, 3640, 3641, 5, 857, 0, 0, 3641, 3642, 3, 748, 374, 0, 3642, 229, 1, 0, 0, 0, 3643, 3646, 3, 708, 354, 0, 3644, 3646, 5, 892, 0, 0, 3645, 3643, 1, 0, 0, 0, 3645, 3644, 1, 0, 0, 0, 3646, 231, 1, 0, 0, 0, 3647, 3648, 5, 65, 0, 0, 3648, 3658, 7, 50, 0, 0, 3649, 3650, 5, 510, 0, 0, 3650, 3655, 3, 654, 327, 0, 3651, 3652, 5, 868, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3651, 1, 0, 0, 0, 3654, 3657, 1, 0, 0, 0, 3655, 3653, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3659, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3658, 3649, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3662, 1, 0, 0, 0, 3660, 3661, 7, 51, 0, 0, 3661, 3663, 5, 105, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3669, 1, 0, 0, 0, 3664, 3665, 5, 104, 0, 0, 3665, 3666, 5, 80, 0, 0, 3666, 3667, 5, 594, 0, 0, 3667, 3669, 5, 491, 0, 0, 3668, 3647, 1, 0, 0, 0, 3668, 3664, 1, 0, 0, 0, 3669, 233, 1, 0, 0, 0, 3670, 3672, 5, 44, 0, 0, 3671, 3673, 5, 107, 0, 0, 3672, 3671, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3675, 1, 0, 0, 0, 3674, 3676, 5, 549, 0, 0, 3675, 3674, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3679, 5, 79, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3681, 5, 68, 0, 0, 3681, 3686, 3, 654, 327, 0, 3682, 3684, 5, 13, 0, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 3, 708, 354, 0, 3686, 3683, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3693, 1, 0, 0, 0, 3688, 3689, 5, 130, 0, 0, 3689, 3690, 5, 866, 0, 0, 3690, 3691, 3, 672, 336, 0, 3691, 3692, 5, 867, 0, 0, 3692, 3694, 1, 0, 0, 0, 3693, 3688, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3697, 1, 0, 0, 0, 3695, 3696, 5, 192, 0, 0, 3696, 3698, 3, 806, 403, 0, 3697, 3695, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3700, 1, 0, 0, 0, 3699, 3701, 3, 252, 126, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3703, 5, 100, 0, 0, 3703, 3705, 3, 320, 160, 0, 3704, 3702, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 235, 1, 0, 0, 0, 3706, 3708, 5, 44, 0, 0, 3707, 3709, 5, 107, 0, 0, 3708, 3707, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3711, 1, 0, 0, 0, 3710, 3712, 5, 549, 0, 0, 3711, 3710, 1, 0, 0, 0, 3711, 3712, 1, 0, 0, 0, 3712, 3714, 1, 0, 0, 0, 3713, 3715, 5, 79, 0, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3755, 1, 0, 0, 0, 3716, 3719, 3, 654, 327, 0, 3717, 3718, 5, 865, 0, 0, 3718, 3720, 5, 850, 0, 0, 3719, 3717, 1, 0, 0, 0, 3719, 3720, 1, 0, 0, 0, 3720, 3729, 1, 0, 0, 0, 3721, 3722, 5, 868, 0, 0, 3722, 3725, 3, 654, 327, 0, 3723, 3724, 5, 865, 0, 0, 3724, 3726, 5, 850, 0, 0, 3725, 3723, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3728, 1, 0, 0, 0, 3727, 3721, 1, 0, 0, 0, 3728, 3731, 1, 0, 0, 0, 3729, 3727, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3732, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3732, 3733, 5, 68, 0, 0, 3733, 3734, 3, 256, 128, 0, 3734, 3756, 1, 0, 0, 0, 3735, 3736, 5, 68, 0, 0, 3736, 3739, 3, 654, 327, 0, 3737, 3738, 5, 865, 0, 0, 3738, 3740, 5, 850, 0, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3749, 1, 0, 0, 0, 3741, 3742, 5, 868, 0, 0, 3742, 3745, 3, 654, 327, 0, 3743, 3744, 5, 865, 0, 0, 3744, 3746, 5, 850, 0, 0, 3745, 3743, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3748, 1, 0, 0, 0, 3747, 3741, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3752, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3753, 5, 188, 0, 0, 3753, 3754, 3, 256, 128, 0, 3754, 3756, 1, 0, 0, 0, 3755, 3716, 1, 0, 0, 0, 3755, 3735, 1, 0, 0, 0, 3756, 3759, 1, 0, 0, 0, 3757, 3758, 5, 192, 0, 0, 3758, 3760, 3, 806, 403, 0, 3759, 3757, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 237, 1, 0, 0, 0, 3761, 3762, 5, 417, 0, 0, 3762, 3763, 3, 654, 327, 0, 3763, 3768, 5, 516, 0, 0, 3764, 3766, 5, 13, 0, 0, 3765, 3764, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 3769, 3, 708, 354, 0, 3768, 3765, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 239, 1, 0, 0, 0, 3770, 3771, 5, 417, 0, 0, 3771, 3772, 3, 654, 327, 0, 3772, 3773, 5, 135, 0, 0, 3773, 3780, 3, 644, 322, 0, 3774, 3775, 3, 816, 408, 0, 3775, 3776, 5, 866, 0, 0, 3776, 3777, 3, 750, 375, 0, 3777, 3778, 5, 867, 0, 0, 3778, 3781, 1, 0, 0, 0, 3779, 3781, 7, 52, 0, 0, 3780, 3774, 1, 0, 0, 0, 3780, 3779, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3783, 5, 192, 0, 0, 3783, 3785, 3, 806, 403, 0, 3784, 3782, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3788, 1, 0, 0, 0, 3786, 3787, 5, 100, 0, 0, 3787, 3789, 3, 320, 160, 0, 3788, 3786, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 241, 1, 0, 0, 0, 3790, 3791, 5, 417, 0, 0, 3791, 3792, 3, 654, 327, 0, 3792, 3793, 5, 135, 0, 0, 3793, 3796, 7, 53, 0, 0, 3794, 3795, 5, 192, 0, 0, 3795, 3797, 3, 806, 403, 0, 3796, 3794, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3800, 1, 0, 0, 0, 3798, 3799, 5, 100, 0, 0, 3799, 3801, 3, 320, 160, 0, 3800, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 243, 1, 0, 0, 0, 3802, 3803, 5, 417, 0, 0, 3803, 3804, 3, 654, 327, 0, 3804, 3805, 5, 334, 0, 0, 3805, 245, 1, 0, 0, 0, 3806, 3807, 5, 425, 0, 0, 3807, 3808, 5, 173, 0, 0, 3808, 3809, 5, 68, 0, 0, 3809, 3814, 3, 718, 359, 0, 3810, 3811, 5, 868, 0, 0, 3811, 3813, 3, 718, 359, 0, 3812, 3810, 1, 0, 0, 0, 3813, 3816, 1, 0, 0, 0, 3814, 3812, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 247, 1, 0, 0, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3819, 5, 185, 0, 0, 3818, 3820, 5, 107, 0, 0, 3819, 3818, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3823, 5, 79, 0, 0, 3822, 3821, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3824, 1, 0, 0, 0, 3824, 3829, 3, 654, 327, 0, 3825, 3827, 5, 13, 0, 0, 3826, 3825, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3830, 3, 708, 354, 0, 3829, 3826, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3832, 5, 155, 0, 0, 3832, 3837, 3, 228, 114, 0, 3833, 3834, 5, 868, 0, 0, 3834, 3836, 3, 228, 114, 0, 3835, 3833, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 3842, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3841, 5, 192, 0, 0, 3841, 3843, 3, 806, 403, 0, 3842, 3840, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3845, 1, 0, 0, 0, 3844, 3846, 3, 252, 126, 0, 3845, 3844, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3848, 1, 0, 0, 0, 3847, 3849, 3, 318, 159, 0, 3848, 3847, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 249, 1, 0, 0, 0, 3850, 3852, 5, 185, 0, 0, 3851, 3853, 5, 107, 0, 0, 3852, 3851, 1, 0, 0, 0, 3852, 3853, 1, 0, 0, 0, 3853, 3855, 1, 0, 0, 0, 3854, 3856, 5, 79, 0, 0, 3855, 3854, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 3857, 1, 0, 0, 0, 3857, 3858, 3, 256, 128, 0, 3858, 3859, 5, 155, 0, 0, 3859, 3864, 3, 228, 114, 0, 3860, 3861, 5, 868, 0, 0, 3861, 3863, 3, 228, 114, 0, 3862, 3860, 1, 0, 0, 0, 3863, 3866, 1, 0, 0, 0, 3864, 3862, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3869, 1, 0, 0, 0, 3866, 3864, 1, 0, 0, 0, 3867, 3868, 5, 192, 0, 0, 3868, 3870, 3, 806, 403, 0, 3869, 3867, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 251, 1, 0, 0, 0, 3871, 3872, 5, 125, 0, 0, 3872, 3873, 5, 20, 0, 0, 3873, 3878, 3, 254, 127, 0, 3874, 3875, 5, 868, 0, 0, 3875, 3877, 3, 254, 127, 0, 3876, 3874, 1, 0, 0, 0, 3877, 3880, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 253, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3881, 3883, 3, 806, 403, 0, 3882, 3884, 7, 54, 0, 0, 3883, 3882, 1, 0, 0, 0, 3883, 3884, 1, 0, 0, 0, 3884, 255, 1, 0, 0, 0, 3885, 3890, 3, 258, 129, 0, 3886, 3887, 5, 868, 0, 0, 3887, 3889, 3, 258, 129, 0, 3888, 3886, 1, 0, 0, 0, 3889, 3892, 1, 0, 0, 0, 3890, 3888, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 257, 1, 0, 0, 0, 3892, 3890, 1, 0, 0, 0, 3893, 3897, 3, 260, 130, 0, 3894, 3896, 3, 268, 134, 0, 3895, 3894, 1, 0, 0, 0, 3896, 3899, 1, 0, 0, 0, 3897, 3895, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3912, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3900, 3901, 5, 866, 0, 0, 3901, 3905, 3, 260, 130, 0, 3902, 3904, 3, 268, 134, 0, 3903, 3902, 1, 0, 0, 0, 3904, 3907, 1, 0, 0, 0, 3905, 3903, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3908, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3908, 3909, 5, 867, 0, 0, 3909, 3912, 1, 0, 0, 0, 3910, 3912, 3, 286, 143, 0, 3911, 3893, 1, 0, 0, 0, 3911, 3900, 1, 0, 0, 0, 3911, 3910, 1, 0, 0, 0, 3912, 259, 1, 0, 0, 0, 3913, 3919, 3, 654, 327, 0, 3914, 3915, 5, 130, 0, 0, 3915, 3916, 5, 866, 0, 0, 3916, 3917, 3, 672, 336, 0, 3917, 3918, 5, 867, 0, 0, 3918, 3920, 1, 0, 0, 0, 3919, 3914, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 3925, 1, 0, 0, 0, 3921, 3923, 5, 13, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3926, 3, 708, 354, 0, 3925, 3922, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3935, 1, 0, 0, 0, 3927, 3932, 3, 264, 132, 0, 3928, 3929, 5, 868, 0, 0, 3929, 3931, 3, 264, 132, 0, 3930, 3928, 1, 0, 0, 0, 3931, 3934, 1, 0, 0, 0, 3932, 3930, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3936, 1, 0, 0, 0, 3934, 3932, 1, 0, 0, 0, 3935, 3927, 1, 0, 0, 0, 3935, 3936, 1, 0, 0, 0, 3936, 3959, 1, 0, 0, 0, 3937, 3939, 5, 95, 0, 0, 3938, 3937, 1, 0, 0, 0, 3938, 3939, 1, 0, 0, 0, 3939, 3945, 1, 0, 0, 0, 3940, 3946, 3, 204, 102, 0, 3941, 3942, 5, 866, 0, 0, 3942, 3943, 3, 204, 102, 0, 3943, 3944, 5, 867, 0, 0, 3944, 3946, 1, 0, 0, 0, 3945, 3940, 1, 0, 0, 0, 3945, 3941, 1, 0, 0, 0, 3946, 3948, 1, 0, 0, 0, 3947, 3949, 5, 13, 0, 0, 3948, 3947, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3952, 3, 708, 354, 0, 3951, 3953, 3, 262, 131, 0, 3952, 3951, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3959, 1, 0, 0, 0, 3954, 3955, 5, 866, 0, 0, 3955, 3956, 3, 256, 128, 0, 3956, 3957, 5, 867, 0, 0, 3957, 3959, 1, 0, 0, 0, 3958, 3913, 1, 0, 0, 0, 3958, 3938, 1, 0, 0, 0, 3958, 3954, 1, 0, 0, 0, 3959, 261, 1, 0, 0, 0, 3960, 3961, 5, 866, 0, 0, 3961, 3962, 3, 662, 331, 0, 3962, 3963, 5, 867, 0, 0, 3963, 263, 1, 0, 0, 0, 3964, 3965, 7, 55, 0, 0, 3965, 3968, 7, 18, 0, 0, 3966, 3967, 5, 65, 0, 0, 3967, 3969, 3, 266, 133, 0, 3968, 3966, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3970, 1, 0, 0, 0, 3970, 3972, 5, 866, 0, 0, 3971, 3973, 3, 642, 321, 0, 3972, 3971, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3974, 1, 0, 0, 0, 3974, 3975, 5, 867, 0, 0, 3975, 265, 1, 0, 0, 0, 3976, 3982, 5, 91, 0, 0, 3977, 3978, 5, 125, 0, 0, 3978, 3982, 5, 20, 0, 0, 3979, 3980, 5, 74, 0, 0, 3980, 3982, 5, 20, 0, 0, 3981, 3976, 1, 0, 0, 0, 3981, 3977, 1, 0, 0, 0, 3981, 3979, 1, 0, 0, 0, 3982, 267, 1, 0, 0, 0, 3983, 3985, 7, 56, 0, 0, 3984, 3983, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3988, 5, 91, 0, 0, 3987, 3989, 5, 95, 0, 0, 3988, 3987, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 3994, 3, 260, 130, 0, 3991, 3993, 3, 270, 135, 0, 3992, 3991, 1, 0, 0, 0, 3993, 3996, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 4033, 1, 0, 0, 0, 3996, 3994, 1, 0, 0, 0, 3997, 3998, 5, 172, 0, 0, 3998, 4002, 3, 260, 130, 0, 3999, 4001, 3, 270, 135, 0, 4000, 3999, 1, 0, 0, 0, 4001, 4004, 1, 0, 0, 0, 4002, 4000, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4033, 1, 0, 0, 0, 4004, 4002, 1, 0, 0, 0, 4005, 4007, 7, 57, 0, 0, 4006, 4008, 5, 127, 0, 0, 4007, 4006, 1, 0, 0, 0, 4007, 4008, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4011, 5, 91, 0, 0, 4010, 4012, 5, 95, 0, 0, 4011, 4010, 1, 0, 0, 0, 4011, 4012, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4017, 3, 260, 130, 0, 4014, 4016, 3, 270, 135, 0, 4015, 4014, 1, 0, 0, 0, 4016, 4019, 1, 0, 0, 0, 4017, 4015, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4033, 1, 0, 0, 0, 4019, 4017, 1, 0, 0, 0, 4020, 4028, 5, 113, 0, 0, 4021, 4024, 5, 84, 0, 0, 4022, 4024, 7, 57, 0, 0, 4023, 4021, 1, 0, 0, 0, 4023, 4022, 1, 0, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4027, 5, 127, 0, 0, 4026, 4025, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 4029, 1, 0, 0, 0, 4028, 4023, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4031, 5, 91, 0, 0, 4031, 4033, 3, 260, 130, 0, 4032, 3984, 1, 0, 0, 0, 4032, 3997, 1, 0, 0, 0, 4032, 4005, 1, 0, 0, 0, 4032, 4020, 1, 0, 0, 0, 4033, 269, 1, 0, 0, 0, 4034, 4035, 5, 119, 0, 0, 4035, 4042, 3, 806, 403, 0, 4036, 4037, 5, 188, 0, 0, 4037, 4038, 5, 866, 0, 0, 4038, 4039, 3, 662, 331, 0, 4039, 4040, 5, 867, 0, 0, 4040, 4042, 1, 0, 0, 0, 4041, 4034, 1, 0, 0, 0, 4041, 4036, 1, 0, 0, 0, 4042, 271, 1, 0, 0, 0, 4043, 4044, 5, 866, 0, 0, 4044, 4045, 3, 276, 138, 0, 4045, 4046, 5, 867, 0, 0, 4046, 4052, 1, 0, 0, 0, 4047, 4048, 5, 866, 0, 0, 4048, 4049, 3, 272, 136, 0, 4049, 4050, 5, 867, 0, 0, 4050, 4052, 1, 0, 0, 0, 4051, 4043, 1, 0, 0, 0, 4051, 4047, 1, 0, 0, 0, 4052, 273, 1, 0, 0, 0, 4053, 4054, 5, 866, 0, 0, 4054, 4055, 3, 278, 139, 0, 4055, 4056, 5, 867, 0, 0, 4056, 4062, 1, 0, 0, 0, 4057, 4058, 5, 866, 0, 0, 4058, 4059, 3, 274, 137, 0, 4059, 4060, 5, 867, 0, 0, 4060, 4062, 1, 0, 0, 0, 4061, 4053, 1, 0, 0, 0, 4061, 4057, 1, 0, 0, 0, 4062, 275, 1, 0, 0, 0, 4063, 4067, 5, 154, 0, 0, 4064, 4066, 3, 296, 148, 0, 4065, 4064, 1, 0, 0, 0, 4066, 4069, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4067, 4068, 1, 0, 0, 0, 4068, 4070, 1, 0, 0, 0, 4069, 4067, 1, 0, 0, 0, 4070, 4072, 3, 298, 149, 0, 4071, 4073, 3, 302, 151, 0, 4072, 4071, 1, 0, 0, 0, 4072, 4073, 1, 0, 0, 0, 4073, 4074, 1, 0, 0, 0, 4074, 4076, 3, 308, 154, 0, 4075, 4077, 3, 310, 155, 0, 4076, 4075, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4079, 1, 0, 0, 0, 4078, 4080, 3, 312, 156, 0, 4079, 4078, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4082, 1, 0, 0, 0, 4081, 4083, 3, 314, 157, 0, 4082, 4081, 1, 0, 0, 0, 4082, 4083, 1, 0, 0, 0, 4083, 4085, 1, 0, 0, 0, 4084, 4086, 3, 252, 126, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4088, 1, 0, 0, 0, 4087, 4089, 3, 318, 159, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4118, 1, 0, 0, 0, 4090, 4094, 5, 154, 0, 0, 4091, 4093, 3, 296, 148, 0, 4092, 4091, 1, 0, 0, 0, 4093, 4096, 1, 0, 0, 0, 4094, 4092, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4097, 1, 0, 0, 0, 4096, 4094, 1, 0, 0, 0, 4097, 4098, 3, 298, 149, 0, 4098, 4100, 3, 308, 154, 0, 4099, 4101, 3, 310, 155, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4103, 1, 0, 0, 0, 4102, 4104, 3, 312, 156, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4106, 1, 0, 0, 0, 4105, 4107, 3, 314, 157, 0, 4106, 4105, 1, 0, 0, 0, 4106, 4107, 1, 0, 0, 0, 4107, 4109, 1, 0, 0, 0, 4108, 4110, 3, 252, 126, 0, 4109, 4108, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4112, 1, 0, 0, 0, 4111, 4113, 3, 318, 159, 0, 4112, 4111, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, 4113, 4115, 1, 0, 0, 0, 4114, 4116, 3, 302, 151, 0, 4115, 4114, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4118, 1, 0, 0, 0, 4117, 4063, 1, 0, 0, 0, 4117, 4090, 1, 0, 0, 0, 4118, 277, 1, 0, 0, 0, 4119, 4123, 5, 154, 0, 0, 4120, 4122, 3, 296, 148, 0, 4121, 4120, 1, 0, 0, 0, 4122, 4125, 1, 0, 0, 0, 4123, 4121, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4123, 1, 0, 0, 0, 4126, 4127, 3, 298, 149, 0, 4127, 4129, 3, 308, 154, 0, 4128, 4130, 3, 310, 155, 0, 4129, 4128, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 4132, 1, 0, 0, 0, 4131, 4133, 3, 312, 156, 0, 4132, 4131, 1, 0, 0, 0, 4132, 4133, 1, 0, 0, 0, 4133, 4135, 1, 0, 0, 0, 4134, 4136, 3, 314, 157, 0, 4135, 4134, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4138, 1, 0, 0, 0, 4137, 4139, 3, 252, 126, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4141, 1, 0, 0, 0, 4140, 4142, 3, 318, 159, 0, 4141, 4140, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 279, 1, 0, 0, 0, 4143, 4145, 5, 181, 0, 0, 4144, 4146, 7, 44, 0, 0, 4145, 4144, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4147, 1, 0, 0, 0, 4147, 4148, 3, 274, 137, 0, 4148, 281, 1, 0, 0, 0, 4149, 4151, 5, 181, 0, 0, 4150, 4152, 7, 44, 0, 0, 4151, 4150, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4155, 1, 0, 0, 0, 4153, 4156, 3, 278, 139, 0, 4154, 4156, 3, 274, 137, 0, 4155, 4153, 1, 0, 0, 0, 4155, 4154, 1, 0, 0, 0, 4156, 283, 1, 0, 0, 0, 4157, 4172, 5, 95, 0, 0, 4158, 4173, 3, 278, 139, 0, 4159, 4173, 3, 274, 137, 0, 4160, 4163, 5, 866, 0, 0, 4161, 4164, 3, 278, 139, 0, 4162, 4164, 3, 274, 137, 0, 4163, 4161, 1, 0, 0, 0, 4163, 4162, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4170, 5, 867, 0, 0, 4166, 4168, 5, 13, 0, 0, 4167, 4166, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4171, 3, 708, 354, 0, 4170, 4167, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4173, 1, 0, 0, 0, 4172, 4158, 1, 0, 0, 0, 4172, 4159, 1, 0, 0, 0, 4172, 4160, 1, 0, 0, 0, 4173, 285, 1, 0, 0, 0, 4174, 4175, 5, 253, 0, 0, 4175, 4176, 5, 866, 0, 0, 4176, 4177, 5, 882, 0, 0, 4177, 4178, 5, 868, 0, 0, 4178, 4179, 5, 882, 0, 0, 4179, 4180, 5, 337, 0, 0, 4180, 4181, 5, 866, 0, 0, 4181, 4182, 3, 288, 144, 0, 4182, 4183, 5, 867, 0, 0, 4183, 4188, 5, 867, 0, 0, 4184, 4186, 5, 13, 0, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4189, 3, 708, 354, 0, 4188, 4185, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 287, 1, 0, 0, 0, 4190, 4195, 3, 290, 145, 0, 4191, 4192, 5, 868, 0, 0, 4192, 4194, 3, 290, 145, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4197, 1, 0, 0, 0, 4195, 4193, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 289, 1, 0, 0, 0, 4197, 4195, 1, 0, 0, 0, 4198, 4215, 3, 664, 332, 0, 4199, 4200, 5, 65, 0, 0, 4200, 4216, 5, 256, 0, 0, 4201, 4213, 3, 728, 364, 0, 4202, 4203, 5, 257, 0, 0, 4203, 4205, 5, 882, 0, 0, 4204, 4206, 3, 292, 146, 0, 4205, 4204, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4209, 3, 294, 147, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4214, 1, 0, 0, 0, 4210, 4211, 5, 60, 0, 0, 4211, 4212, 5, 257, 0, 0, 4212, 4214, 5, 882, 0, 0, 4213, 4202, 1, 0, 0, 0, 4213, 4210, 1, 0, 0, 0, 4214, 4216, 1, 0, 0, 0, 4215, 4199, 1, 0, 0, 0, 4215, 4201, 1, 0, 0, 0, 4216, 4228, 1, 0, 0, 0, 4217, 4219, 5, 255, 0, 0, 4218, 4220, 5, 257, 0, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4222, 5, 882, 0, 0, 4222, 4223, 5, 337, 0, 0, 4223, 4224, 5, 866, 0, 0, 4224, 4225, 3, 288, 144, 0, 4225, 4226, 5, 867, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4198, 1, 0, 0, 0, 4227, 4217, 1, 0, 0, 0, 4228, 291, 1, 0, 0, 0, 4229, 4234, 5, 116, 0, 0, 4230, 4234, 5, 382, 0, 0, 4231, 4232, 5, 42, 0, 0, 4232, 4234, 3, 756, 378, 0, 4233, 4229, 1, 0, 0, 0, 4233, 4230, 1, 0, 0, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4235, 1, 0, 0, 0, 4235, 4236, 5, 119, 0, 0, 4236, 4237, 5, 55, 0, 0, 4237, 293, 1, 0, 0, 0, 4238, 4243, 5, 116, 0, 0, 4239, 4243, 5, 382, 0, 0, 4240, 4241, 5, 42, 0, 0, 4241, 4243, 3, 756, 378, 0, 4242, 4238, 1, 0, 0, 0, 4242, 4239, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4245, 5, 119, 0, 0, 4245, 4246, 5, 382, 0, 0, 4246, 295, 1, 0, 0, 0, 4247, 4256, 7, 58, 0, 0, 4248, 4256, 5, 76, 0, 0, 4249, 4256, 5, 172, 0, 0, 4250, 4256, 5, 168, 0, 0, 4251, 4256, 5, 166, 0, 0, 4252, 4256, 5, 636, 0, 0, 4253, 4256, 7, 59, 0, 0, 4254, 4256, 5, 167, 0, 0, 4255, 4247, 1, 0, 0, 0, 4255, 4248, 1, 0, 0, 0, 4255, 4249, 1, 0, 0, 0, 4255, 4250, 1, 0, 0, 0, 4255, 4251, 1, 0, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4253, 1, 0, 0, 0, 4255, 4254, 1, 0, 0, 0, 4256, 297, 1, 0, 0, 0, 4257, 4260, 5, 850, 0, 0, 4258, 4260, 3, 300, 150, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4258, 1, 0, 0, 0, 4260, 4265, 1, 0, 0, 0, 4261, 4262, 5, 868, 0, 0, 4262, 4264, 3, 300, 150, 0, 4263, 4261, 1, 0, 0, 0, 4264, 4267, 1, 0, 0, 0, 4265, 4263, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 299, 1, 0, 0, 0, 4267, 4265, 1, 0, 0, 0, 4268, 4269, 3, 704, 352, 0, 4269, 4270, 5, 865, 0, 0, 4270, 4271, 5, 850, 0, 0, 4271, 4298, 1, 0, 0, 0, 4272, 4277, 3, 664, 332, 0, 4273, 4275, 5, 13, 0, 0, 4274, 4273, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 4276, 1, 0, 0, 0, 4276, 4278, 3, 708, 354, 0, 4277, 4274, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4298, 1, 0, 0, 0, 4279, 4284, 3, 766, 383, 0, 4280, 4282, 5, 13, 0, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4285, 3, 708, 354, 0, 4284, 4281, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4298, 1, 0, 0, 0, 4286, 4287, 5, 892, 0, 0, 4287, 4289, 5, 841, 0, 0, 4288, 4286, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4295, 3, 806, 403, 0, 4291, 4293, 5, 13, 0, 0, 4292, 4291, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4296, 3, 708, 354, 0, 4295, 4292, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4298, 1, 0, 0, 0, 4297, 4268, 1, 0, 0, 0, 4297, 4272, 1, 0, 0, 0, 4297, 4279, 1, 0, 0, 0, 4297, 4288, 1, 0, 0, 0, 4298, 301, 1, 0, 0, 0, 4299, 4300, 5, 88, 0, 0, 4300, 4305, 3, 230, 115, 0, 4301, 4302, 5, 868, 0, 0, 4302, 4304, 3, 230, 115, 0, 4303, 4301, 1, 0, 0, 0, 4304, 4307, 1, 0, 0, 0, 4305, 4303, 1, 0, 0, 0, 4305, 4306, 1, 0, 0, 0, 4306, 4336, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4308, 4309, 5, 88, 0, 0, 4309, 4310, 5, 372, 0, 0, 4310, 4336, 5, 882, 0, 0, 4311, 4312, 5, 88, 0, 0, 4312, 4313, 5, 128, 0, 0, 4313, 4317, 5, 882, 0, 0, 4314, 4315, 5, 26, 0, 0, 4315, 4316, 5, 155, 0, 0, 4316, 4318, 3, 690, 345, 0, 4317, 4314, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 4325, 1, 0, 0, 0, 4319, 4321, 7, 46, 0, 0, 4320, 4322, 3, 304, 152, 0, 4321, 4320, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 4326, 1, 0, 0, 0, 4325, 4319, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4333, 1, 0, 0, 0, 4327, 4329, 5, 102, 0, 0, 4328, 4330, 3, 306, 153, 0, 4329, 4328, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4334, 1, 0, 0, 0, 4333, 4327, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4299, 1, 0, 0, 0, 4335, 4308, 1, 0, 0, 0, 4335, 4311, 1, 0, 0, 0, 4336, 303, 1, 0, 0, 0, 4337, 4338, 5, 174, 0, 0, 4338, 4339, 5, 20, 0, 0, 4339, 4350, 5, 882, 0, 0, 4340, 4342, 5, 123, 0, 0, 4341, 4340, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4344, 5, 56, 0, 0, 4344, 4345, 5, 20, 0, 0, 4345, 4350, 5, 882, 0, 0, 4346, 4347, 5, 58, 0, 0, 4347, 4348, 5, 20, 0, 0, 4348, 4350, 5, 882, 0, 0, 4349, 4337, 1, 0, 0, 0, 4349, 4341, 1, 0, 0, 0, 4349, 4346, 1, 0, 0, 0, 4350, 305, 1, 0, 0, 0, 4351, 4352, 5, 171, 0, 0, 4352, 4353, 5, 20, 0, 0, 4353, 4358, 5, 882, 0, 0, 4354, 4355, 5, 174, 0, 0, 4355, 4356, 5, 20, 0, 0, 4356, 4358, 5, 882, 0, 0, 4357, 4351, 1, 0, 0, 0, 4357, 4354, 1, 0, 0, 0, 4358, 307, 1, 0, 0, 0, 4359, 4360, 5, 68, 0, 0, 4360, 4362, 3, 256, 128, 0, 4361, 4359, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4365, 1, 0, 0, 0, 4363, 4364, 5, 192, 0, 0, 4364, 4366, 3, 806, 403, 0, 4365, 4363, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 309, 1, 0, 0, 0, 4367, 4368, 5, 74, 0, 0, 4368, 4369, 5, 20, 0, 0, 4369, 4374, 3, 316, 158, 0, 4370, 4371, 5, 868, 0, 0, 4371, 4373, 3, 316, 158, 0, 4372, 4370, 1, 0, 0, 0, 4373, 4376, 1, 0, 0, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4375, 1, 0, 0, 0, 4375, 4379, 1, 0, 0, 0, 4376, 4374, 1, 0, 0, 0, 4377, 4378, 5, 194, 0, 0, 4378, 4380, 5, 584, 0, 0, 4379, 4377, 1, 0, 0, 0, 4379, 4380, 1, 0, 0, 0, 4380, 311, 1, 0, 0, 0, 4381, 4382, 5, 75, 0, 0, 4382, 4383, 3, 806, 403, 0, 4383, 313, 1, 0, 0, 0, 4384, 4385, 5, 689, 0, 0, 4385, 4386, 3, 784, 392, 0, 4386, 4387, 5, 13, 0, 0, 4387, 4388, 5, 866, 0, 0, 4388, 4389, 3, 782, 391, 0, 4389, 4399, 5, 867, 0, 0, 4390, 4391, 5, 868, 0, 0, 4391, 4392, 3, 784, 392, 0, 4392, 4393, 5, 13, 0, 0, 4393, 4394, 5, 866, 0, 0, 4394, 4395, 3, 782, 391, 0, 4395, 4396, 5, 867, 0, 0, 4396, 4398, 1, 0, 0, 0, 4397, 4390, 1, 0, 0, 0, 4398, 4401, 1, 0, 0, 0, 4399, 4397, 1, 0, 0, 0, 4399, 4400, 1, 0, 0, 0, 4400, 315, 1, 0, 0, 0, 4401, 4399, 1, 0, 0, 0, 4402, 4404, 3, 806, 403, 0, 4403, 4405, 7, 54, 0, 0, 4404, 4403, 1, 0, 0, 0, 4404, 4405, 1, 0, 0, 0, 4405, 317, 1, 0, 0, 0, 4406, 4417, 5, 100, 0, 0, 4407, 4408, 3, 320, 160, 0, 4408, 4409, 5, 868, 0, 0, 4409, 4411, 1, 0, 0, 0, 4410, 4407, 1, 0, 0, 0, 4410, 4411, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 4418, 3, 320, 160, 0, 4413, 4414, 3, 320, 160, 0, 4414, 4415, 5, 509, 0, 0, 4415, 4416, 3, 320, 160, 0, 4416, 4418, 1, 0, 0, 0, 4417, 4410, 1, 0, 0, 0, 4417, 4413, 1, 0, 0, 0, 4418, 319, 1, 0, 0, 0, 4419, 4423, 3, 714, 357, 0, 4420, 4423, 3, 688, 344, 0, 4421, 4423, 3, 710, 355, 0, 4422, 4419, 1, 0, 0, 0, 4422, 4420, 1, 0, 0, 0, 4422, 4421, 1, 0, 0, 0, 4423, 321, 1, 0, 0, 0, 4424, 4425, 5, 640, 0, 0, 4425, 4434, 5, 664, 0, 0, 4426, 4431, 3, 344, 172, 0, 4427, 4428, 5, 868, 0, 0, 4428, 4430, 3, 344, 172, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4433, 1, 0, 0, 0, 4431, 4429, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 4435, 1, 0, 0, 0, 4433, 4431, 1, 0, 0, 0, 4434, 4426, 1, 0, 0, 0, 4434, 4435, 1, 0, 0, 0, 4435, 323, 1, 0, 0, 0, 4436, 4438, 5, 317, 0, 0, 4437, 4439, 5, 691, 0, 0, 4438, 4437, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 325, 1, 0, 0, 0, 4440, 4442, 5, 341, 0, 0, 4441, 4443, 5, 691, 0, 0, 4442, 4441, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 4449, 1, 0, 0, 0, 4444, 4446, 5, 11, 0, 0, 4445, 4447, 5, 502, 0, 0, 4446, 4445, 1, 0, 0, 0, 4446, 4447, 1, 0, 0, 0, 4447, 4448, 1, 0, 0, 0, 4448, 4450, 5, 326, 0, 0, 4449, 4444, 1, 0, 0, 0, 4449, 4450, 1, 0, 0, 0, 4450, 4455, 1, 0, 0, 0, 4451, 4453, 5, 502, 0, 0, 4452, 4451, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 4454, 1, 0, 0, 0, 4454, 4456, 5, 140, 0, 0, 4455, 4452, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 327, 1, 0, 0, 0, 4457, 4459, 5, 583, 0, 0, 4458, 4460, 5, 691, 0, 0, 4459, 4458, 1, 0, 0, 0, 4459, 4460, 1, 0, 0, 0, 4460, 4466, 1, 0, 0, 0, 4461, 4463, 5, 11, 0, 0, 4462, 4464, 5, 502, 0, 0, 4463, 4462, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4465, 1, 0, 0, 0, 4465, 4467, 5, 326, 0, 0, 4466, 4461, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4472, 1, 0, 0, 0, 4468, 4470, 5, 502, 0, 0, 4469, 4468, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4471, 1, 0, 0, 0, 4471, 4473, 5, 140, 0, 0, 4472, 4469, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 329, 1, 0, 0, 0, 4474, 4475, 5, 589, 0, 0, 4475, 4476, 3, 708, 354, 0, 4476, 331, 1, 0, 0, 0, 4477, 4479, 5, 583, 0, 0, 4478, 4480, 5, 691, 0, 0, 4479, 4478, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 4483, 5, 176, 0, 0, 4482, 4484, 5, 589, 0, 0, 4483, 4482, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 4485, 1, 0, 0, 0, 4485, 4486, 3, 708, 354, 0, 4486, 333, 1, 0, 0, 0, 4487, 4488, 5, 140, 0, 0, 4488, 4489, 5, 589, 0, 0, 4489, 4490, 3, 708, 354, 0, 4490, 335, 1, 0, 0, 0, 4491, 4492, 5, 104, 0, 0, 4492, 4493, 7, 60, 0, 0, 4493, 4498, 3, 346, 173, 0, 4494, 4495, 5, 868, 0, 0, 4495, 4497, 3, 346, 173, 0, 4496, 4494, 1, 0, 0, 0, 4497, 4500, 1, 0, 0, 0, 4498, 4496, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 337, 1, 0, 0, 0, 4500, 4498, 1, 0, 0, 0, 4501, 4502, 5, 183, 0, 0, 4502, 4503, 5, 752, 0, 0, 4503, 339, 1, 0, 0, 0, 4504, 4505, 5, 155, 0, 0, 4505, 4506, 5, 313, 0, 0, 4506, 4507, 5, 857, 0, 0, 4507, 4508, 7, 25, 0, 0, 4508, 341, 1, 0, 0, 0, 4509, 4511, 5, 155, 0, 0, 4510, 4512, 7, 61, 0, 0, 4511, 4510, 1, 0, 0, 0, 4511, 4512, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4514, 5, 664, 0, 0, 4514, 4519, 3, 350, 175, 0, 4515, 4516, 5, 868, 0, 0, 4516, 4518, 3, 350, 175, 0, 4517, 4515, 1, 0, 0, 0, 4518, 4521, 1, 0, 0, 0, 4519, 4517, 1, 0, 0, 0, 4519, 4520, 1, 0, 0, 0, 4520, 343, 1, 0, 0, 0, 4521, 4519, 1, 0, 0, 0, 4522, 4523, 5, 194, 0, 0, 4523, 4524, 5, 350, 0, 0, 4524, 4530, 5, 600, 0, 0, 4525, 4526, 5, 135, 0, 0, 4526, 4530, 5, 195, 0, 0, 4527, 4528, 5, 135, 0, 0, 4528, 4530, 5, 515, 0, 0, 4529, 4522, 1, 0, 0, 0, 4529, 4525, 1, 0, 0, 0, 4529, 4527, 1, 0, 0, 0, 4530, 345, 1, 0, 0, 0, 4531, 4536, 3, 654, 327, 0, 4532, 4534, 5, 13, 0, 0, 4533, 4532, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4537, 3, 708, 354, 0, 4536, 4533, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 4538, 1, 0, 0, 0, 4538, 4539, 3, 348, 174, 0, 4539, 347, 1, 0, 0, 0, 4540, 4542, 5, 135, 0, 0, 4541, 4543, 5, 450, 0, 0, 4542, 4541, 1, 0, 0, 0, 4542, 4543, 1, 0, 0, 0, 4543, 4549, 1, 0, 0, 0, 4544, 4546, 5, 107, 0, 0, 4545, 4544, 1, 0, 0, 0, 4545, 4546, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 4549, 5, 195, 0, 0, 4548, 4540, 1, 0, 0, 0, 4548, 4545, 1, 0, 0, 0, 4549, 349, 1, 0, 0, 0, 4550, 4551, 5, 440, 0, 0, 4551, 4552, 5, 448, 0, 0, 4552, 4558, 3, 352, 176, 0, 4553, 4554, 5, 135, 0, 0, 4554, 4558, 5, 195, 0, 0, 4555, 4556, 5, 135, 0, 0, 4556, 4558, 5, 515, 0, 0, 4557, 4550, 1, 0, 0, 0, 4557, 4553, 1, 0, 0, 0, 4557, 4555, 1, 0, 0, 0, 4558, 351, 1, 0, 0, 0, 4559, 4560, 5, 809, 0, 0, 4560, 4567, 5, 135, 0, 0, 4561, 4562, 5, 135, 0, 0, 4562, 4567, 5, 810, 0, 0, 4563, 4564, 5, 135, 0, 0, 4564, 4567, 5, 811, 0, 0, 4565, 4567, 5, 812, 0, 0, 4566, 4559, 1, 0, 0, 0, 4566, 4561, 1, 0, 0, 0, 4566, 4563, 1, 0, 0, 0, 4566, 4565, 1, 0, 0, 0, 4567, 353, 1, 0, 0, 0, 4568, 4569, 5, 25, 0, 0, 4569, 4570, 5, 453, 0, 0, 4570, 4571, 5, 176, 0, 0, 4571, 4576, 3, 370, 185, 0, 4572, 4573, 5, 868, 0, 0, 4573, 4575, 3, 370, 185, 0, 4574, 4572, 1, 0, 0, 0, 4575, 4578, 1, 0, 0, 0, 4576, 4574, 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 4580, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4579, 4581, 3, 390, 195, 0, 4580, 4579, 1, 0, 0, 0, 4580, 4581, 1, 0, 0, 0, 4581, 355, 1, 0, 0, 0, 4582, 4583, 5, 25, 0, 0, 4583, 4584, 5, 572, 0, 0, 4584, 4585, 5, 400, 0, 0, 4585, 4590, 3, 392, 196, 0, 4586, 4587, 5, 868, 0, 0, 4587, 4589, 3, 392, 196, 0, 4588, 4586, 1, 0, 0, 0, 4589, 4592, 1, 0, 0, 0, 4590, 4588, 1, 0, 0, 0, 4590, 4591, 1, 0, 0, 0, 4591, 4594, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4593, 4595, 3, 390, 195, 0, 4594, 4593, 1, 0, 0, 0, 4594, 4595, 1, 0, 0, 0, 4595, 357, 1, 0, 0, 0, 4596, 4597, 5, 25, 0, 0, 4597, 4598, 5, 572, 0, 0, 4598, 4599, 5, 605, 0, 0, 4599, 4600, 5, 176, 0, 0, 4600, 4605, 3, 380, 190, 0, 4601, 4602, 5, 868, 0, 0, 4602, 4604, 3, 380, 190, 0, 4603, 4601, 1, 0, 0, 0, 4604, 4607, 1, 0, 0, 0, 4605, 4603, 1, 0, 0, 0, 4605, 4606, 1, 0, 0, 0, 4606, 4609, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4608, 4610, 3, 390, 195, 0, 4609, 4608, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 359, 1, 0, 0, 0, 4611, 4612, 5, 133, 0, 0, 4612, 4613, 7, 62, 0, 0, 4613, 4618, 5, 452, 0, 0, 4614, 4615, 5, 176, 0, 0, 4615, 4619, 5, 882, 0, 0, 4616, 4617, 5, 16, 0, 0, 4617, 4619, 5, 882, 0, 0, 4618, 4614, 1, 0, 0, 0, 4618, 4616, 1, 0, 0, 0, 4619, 361, 1, 0, 0, 0, 4620, 4621, 5, 640, 0, 0, 4621, 4630, 7, 63, 0, 0, 4622, 4627, 3, 396, 198, 0, 4623, 4624, 5, 868, 0, 0, 4624, 4626, 3, 396, 198, 0, 4625, 4623, 1, 0, 0, 0, 4626, 4629, 1, 0, 0, 0, 4627, 4625, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 4631, 1, 0, 0, 0, 4629, 4627, 1, 0, 0, 0, 4630, 4622, 1, 0, 0, 0, 4630, 4631, 1, 0, 0, 0, 4631, 4634, 1, 0, 0, 0, 4632, 4633, 5, 676, 0, 0, 4633, 4635, 3, 398, 199, 0, 4634, 4632, 1, 0, 0, 0, 4634, 4635, 1, 0, 0, 0, 4635, 4639, 1, 0, 0, 0, 4636, 4638, 3, 400, 200, 0, 4637, 4636, 1, 0, 0, 0, 4638, 4641, 1, 0, 0, 0, 4639, 4637, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4643, 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4644, 3, 390, 195, 0, 4643, 4642, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 363, 1, 0, 0, 0, 4645, 4646, 5, 646, 0, 0, 4646, 4655, 7, 63, 0, 0, 4647, 4652, 3, 396, 198, 0, 4648, 4649, 5, 868, 0, 0, 4649, 4651, 3, 396, 198, 0, 4650, 4648, 1, 0, 0, 0, 4651, 4654, 1, 0, 0, 0, 4652, 4650, 1, 0, 0, 0, 4652, 4653, 1, 0, 0, 0, 4653, 4656, 1, 0, 0, 0, 4654, 4652, 1, 0, 0, 0, 4655, 4647, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4658, 1, 0, 0, 0, 4657, 4659, 3, 390, 195, 0, 4658, 4657, 1, 0, 0, 0, 4658, 4659, 1, 0, 0, 0, 4659, 365, 1, 0, 0, 0, 4660, 4661, 5, 640, 0, 0, 4661, 4665, 5, 415, 0, 0, 4662, 4663, 5, 678, 0, 0, 4663, 4664, 5, 857, 0, 0, 4664, 4666, 5, 882, 0, 0, 4665, 4662, 1, 0, 0, 0, 4665, 4666, 1, 0, 0, 0, 4666, 4671, 1, 0, 0, 0, 4667, 4668, 5, 868, 0, 0, 4668, 4669, 5, 529, 0, 0, 4669, 4670, 5, 857, 0, 0, 4670, 4672, 5, 882, 0, 0, 4671, 4667, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4677, 1, 0, 0, 0, 4673, 4674, 5, 868, 0, 0, 4674, 4675, 5, 363, 0, 0, 4675, 4676, 5, 857, 0, 0, 4676, 4678, 5, 882, 0, 0, 4677, 4673, 1, 0, 0, 0, 4677, 4678, 1, 0, 0, 0, 4678, 367, 1, 0, 0, 0, 4679, 4680, 5, 646, 0, 0, 4680, 4681, 5, 415, 0, 0, 4681, 369, 1, 0, 0, 0, 4682, 4683, 3, 372, 186, 0, 4683, 4684, 5, 857, 0, 0, 4684, 4685, 5, 882, 0, 0, 4685, 4710, 1, 0, 0, 0, 4686, 4687, 3, 374, 187, 0, 4687, 4688, 5, 857, 0, 0, 4688, 4689, 3, 714, 357, 0, 4689, 4710, 1, 0, 0, 0, 4690, 4691, 3, 376, 188, 0, 4691, 4692, 5, 857, 0, 0, 4692, 4693, 7, 25, 0, 0, 4693, 4710, 1, 0, 0, 0, 4694, 4710, 3, 378, 189, 0, 4695, 4696, 5, 424, 0, 0, 4696, 4697, 5, 857, 0, 0, 4697, 4706, 5, 866, 0, 0, 4698, 4703, 3, 708, 354, 0, 4699, 4700, 5, 868, 0, 0, 4700, 4702, 3, 708, 354, 0, 4701, 4699, 1, 0, 0, 0, 4702, 4705, 1, 0, 0, 0, 4703, 4701, 1, 0, 0, 0, 4703, 4704, 1, 0, 0, 0, 4704, 4707, 1, 0, 0, 0, 4705, 4703, 1, 0, 0, 0, 4706, 4698, 1, 0, 0, 0, 4706, 4707, 1, 0, 0, 0, 4707, 4708, 1, 0, 0, 0, 4708, 4710, 5, 867, 0, 0, 4709, 4682, 1, 0, 0, 0, 4709, 4686, 1, 0, 0, 0, 4709, 4690, 1, 0, 0, 0, 4709, 4694, 1, 0, 0, 0, 4709, 4695, 1, 0, 0, 0, 4710, 371, 1, 0, 0, 0, 4711, 4712, 7, 64, 0, 0, 4712, 373, 1, 0, 0, 0, 4713, 4714, 7, 65, 0, 0, 4714, 375, 1, 0, 0, 0, 4715, 4716, 7, 66, 0, 0, 4716, 377, 1, 0, 0, 0, 4717, 4718, 5, 543, 0, 0, 4718, 4719, 5, 857, 0, 0, 4719, 4731, 7, 67, 0, 0, 4720, 4721, 5, 574, 0, 0, 4721, 4722, 5, 857, 0, 0, 4722, 4731, 7, 68, 0, 0, 4723, 4724, 5, 310, 0, 0, 4724, 4728, 5, 857, 0, 0, 4725, 4729, 5, 507, 0, 0, 4726, 4729, 5, 450, 0, 0, 4727, 4729, 3, 402, 201, 0, 4728, 4725, 1, 0, 0, 0, 4728, 4726, 1, 0, 0, 0, 4728, 4727, 1, 0, 0, 0, 4729, 4731, 1, 0, 0, 0, 4730, 4717, 1, 0, 0, 0, 4730, 4720, 1, 0, 0, 0, 4730, 4723, 1, 0, 0, 0, 4731, 379, 1, 0, 0, 0, 4732, 4733, 3, 382, 191, 0, 4733, 4734, 5, 857, 0, 0, 4734, 4735, 5, 882, 0, 0, 4735, 4760, 1, 0, 0, 0, 4736, 4737, 3, 384, 192, 0, 4737, 4738, 5, 857, 0, 0, 4738, 4739, 3, 714, 357, 0, 4739, 4760, 1, 0, 0, 0, 4740, 4741, 3, 386, 193, 0, 4741, 4742, 5, 857, 0, 0, 4742, 4743, 7, 25, 0, 0, 4743, 4760, 1, 0, 0, 0, 4744, 4760, 3, 388, 194, 0, 4745, 4746, 5, 424, 0, 0, 4746, 4747, 5, 857, 0, 0, 4747, 4756, 5, 866, 0, 0, 4748, 4753, 3, 708, 354, 0, 4749, 4750, 5, 868, 0, 0, 4750, 4752, 3, 708, 354, 0, 4751, 4749, 1, 0, 0, 0, 4752, 4755, 1, 0, 0, 0, 4753, 4751, 1, 0, 0, 0, 4753, 4754, 1, 0, 0, 0, 4754, 4757, 1, 0, 0, 0, 4755, 4753, 1, 0, 0, 0, 4756, 4748, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4758, 1, 0, 0, 0, 4758, 4760, 5, 867, 0, 0, 4759, 4732, 1, 0, 0, 0, 4759, 4736, 1, 0, 0, 0, 4759, 4740, 1, 0, 0, 0, 4759, 4744, 1, 0, 0, 0, 4759, 4745, 1, 0, 0, 0, 4760, 381, 1, 0, 0, 0, 4761, 4762, 7, 69, 0, 0, 4762, 383, 1, 0, 0, 0, 4763, 4764, 7, 70, 0, 0, 4764, 385, 1, 0, 0, 0, 4765, 4766, 7, 71, 0, 0, 4766, 387, 1, 0, 0, 0, 4767, 4768, 5, 543, 0, 0, 4768, 4769, 5, 857, 0, 0, 4769, 4781, 7, 67, 0, 0, 4770, 4771, 5, 574, 0, 0, 4771, 4772, 5, 857, 0, 0, 4772, 4781, 7, 72, 0, 0, 4773, 4774, 5, 310, 0, 0, 4774, 4778, 5, 857, 0, 0, 4775, 4779, 5, 507, 0, 0, 4776, 4779, 5, 450, 0, 0, 4777, 4779, 3, 402, 201, 0, 4778, 4775, 1, 0, 0, 0, 4778, 4776, 1, 0, 0, 0, 4778, 4777, 1, 0, 0, 0, 4779, 4781, 1, 0, 0, 0, 4780, 4767, 1, 0, 0, 0, 4780, 4770, 1, 0, 0, 0, 4780, 4773, 1, 0, 0, 0, 4781, 389, 1, 0, 0, 0, 4782, 4783, 5, 65, 0, 0, 4783, 4784, 5, 328, 0, 0, 4784, 4785, 5, 882, 0, 0, 4785, 391, 1, 0, 0, 0, 4786, 4787, 5, 565, 0, 0, 4787, 4788, 5, 857, 0, 0, 4788, 4789, 5, 866, 0, 0, 4789, 4794, 3, 630, 315, 0, 4790, 4791, 5, 868, 0, 0, 4791, 4793, 3, 630, 315, 0, 4792, 4790, 1, 0, 0, 0, 4793, 4796, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4797, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4797, 4798, 5, 867, 0, 0, 4798, 4850, 1, 0, 0, 0, 4799, 4800, 5, 567, 0, 0, 4800, 4801, 5, 857, 0, 0, 4801, 4802, 5, 866, 0, 0, 4802, 4807, 3, 630, 315, 0, 4803, 4804, 5, 868, 0, 0, 4804, 4806, 3, 630, 315, 0, 4805, 4803, 1, 0, 0, 0, 4806, 4809, 1, 0, 0, 0, 4807, 4805, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4810, 1, 0, 0, 0, 4809, 4807, 1, 0, 0, 0, 4810, 4811, 5, 867, 0, 0, 4811, 4850, 1, 0, 0, 0, 4812, 4813, 5, 566, 0, 0, 4813, 4814, 5, 857, 0, 0, 4814, 4815, 5, 866, 0, 0, 4815, 4816, 3, 652, 326, 0, 4816, 4817, 5, 867, 0, 0, 4817, 4850, 1, 0, 0, 0, 4818, 4819, 5, 568, 0, 0, 4819, 4820, 5, 857, 0, 0, 4820, 4821, 5, 866, 0, 0, 4821, 4822, 3, 652, 326, 0, 4822, 4823, 5, 867, 0, 0, 4823, 4850, 1, 0, 0, 0, 4824, 4825, 5, 570, 0, 0, 4825, 4826, 5, 857, 0, 0, 4826, 4827, 5, 866, 0, 0, 4827, 4828, 3, 752, 376, 0, 4828, 4829, 5, 867, 0, 0, 4829, 4850, 1, 0, 0, 0, 4830, 4831, 5, 571, 0, 0, 4831, 4832, 5, 857, 0, 0, 4832, 4833, 5, 866, 0, 0, 4833, 4834, 3, 752, 376, 0, 4834, 4835, 5, 867, 0, 0, 4835, 4850, 1, 0, 0, 0, 4836, 4837, 5, 569, 0, 0, 4837, 4838, 5, 857, 0, 0, 4838, 4839, 5, 866, 0, 0, 4839, 4844, 3, 394, 197, 0, 4840, 4841, 5, 868, 0, 0, 4841, 4843, 3, 394, 197, 0, 4842, 4840, 1, 0, 0, 0, 4843, 4846, 1, 0, 0, 0, 4844, 4842, 1, 0, 0, 0, 4844, 4845, 1, 0, 0, 0, 4845, 4847, 1, 0, 0, 0, 4846, 4844, 1, 0, 0, 0, 4847, 4848, 5, 867, 0, 0, 4848, 4850, 1, 0, 0, 0, 4849, 4786, 1, 0, 0, 0, 4849, 4799, 1, 0, 0, 0, 4849, 4812, 1, 0, 0, 0, 4849, 4818, 1, 0, 0, 0, 4849, 4824, 1, 0, 0, 0, 4849, 4830, 1, 0, 0, 0, 4849, 4836, 1, 0, 0, 0, 4850, 393, 1, 0, 0, 0, 4851, 4852, 5, 866, 0, 0, 4852, 4853, 3, 654, 327, 0, 4853, 4854, 5, 868, 0, 0, 4854, 4855, 3, 654, 327, 0, 4855, 4856, 5, 867, 0, 0, 4856, 395, 1, 0, 0, 0, 4857, 4858, 7, 73, 0, 0, 4858, 397, 1, 0, 0, 0, 4859, 4860, 7, 74, 0, 0, 4860, 4861, 5, 857, 0, 0, 4861, 4885, 3, 402, 201, 0, 4862, 4863, 5, 460, 0, 0, 4863, 4864, 5, 857, 0, 0, 4864, 4865, 5, 882, 0, 0, 4865, 4866, 5, 868, 0, 0, 4866, 4867, 5, 461, 0, 0, 4867, 4868, 5, 857, 0, 0, 4868, 4885, 3, 714, 357, 0, 4869, 4870, 5, 611, 0, 0, 4870, 4871, 5, 857, 0, 0, 4871, 4872, 5, 882, 0, 0, 4872, 4873, 5, 868, 0, 0, 4873, 4874, 5, 612, 0, 0, 4874, 4875, 5, 857, 0, 0, 4875, 4885, 3, 714, 357, 0, 4876, 4877, 5, 557, 0, 0, 4877, 4878, 5, 857, 0, 0, 4878, 4879, 5, 882, 0, 0, 4879, 4880, 5, 868, 0, 0, 4880, 4881, 5, 558, 0, 0, 4881, 4882, 5, 857, 0, 0, 4882, 4885, 3, 714, 357, 0, 4883, 4885, 5, 634, 0, 0, 4884, 4859, 1, 0, 0, 0, 4884, 4862, 1, 0, 0, 0, 4884, 4869, 1, 0, 0, 0, 4884, 4876, 1, 0, 0, 0, 4884, 4883, 1, 0, 0, 0, 4885, 399, 1, 0, 0, 0, 4886, 4887, 5, 678, 0, 0, 4887, 4888, 5, 857, 0, 0, 4888, 4899, 5, 882, 0, 0, 4889, 4890, 5, 529, 0, 0, 4890, 4891, 5, 857, 0, 0, 4891, 4899, 5, 882, 0, 0, 4892, 4893, 5, 363, 0, 0, 4893, 4894, 5, 857, 0, 0, 4894, 4899, 5, 882, 0, 0, 4895, 4896, 5, 535, 0, 0, 4896, 4897, 5, 857, 0, 0, 4897, 4899, 5, 882, 0, 0, 4898, 4886, 1, 0, 0, 0, 4898, 4889, 1, 0, 0, 0, 4898, 4892, 1, 0, 0, 0, 4898, 4895, 1, 0, 0, 0, 4899, 401, 1, 0, 0, 0, 4900, 4905, 3, 698, 349, 0, 4901, 4902, 5, 868, 0, 0, 4902, 4904, 3, 698, 349, 0, 4903, 4901, 1, 0, 0, 0, 4904, 4907, 1, 0, 0, 0, 4905, 4903, 1, 0, 0, 0, 4905, 4906, 1, 0, 0, 0, 4906, 4910, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4908, 4910, 5, 882, 0, 0, 4909, 4900, 1, 0, 0, 0, 4909, 4908, 1, 0, 0, 0, 4910, 403, 1, 0, 0, 0, 4911, 4912, 5, 694, 0, 0, 4912, 4913, 7, 75, 0, 0, 4913, 4915, 3, 700, 350, 0, 4914, 4916, 7, 76, 0, 0, 4915, 4914, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 405, 1, 0, 0, 0, 4917, 4918, 5, 694, 0, 0, 4918, 4919, 5, 378, 0, 0, 4919, 4925, 3, 700, 350, 0, 4920, 4923, 5, 654, 0, 0, 4921, 4922, 5, 65, 0, 0, 4922, 4924, 5, 489, 0, 0, 4923, 4921, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4926, 1, 0, 0, 0, 4925, 4920, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 407, 1, 0, 0, 0, 4927, 4928, 5, 694, 0, 0, 4928, 4929, 5, 540, 0, 0, 4929, 4930, 3, 700, 350, 0, 4930, 409, 1, 0, 0, 0, 4931, 4932, 5, 694, 0, 0, 4932, 4933, 5, 341, 0, 0, 4933, 4936, 3, 700, 350, 0, 4934, 4935, 5, 513, 0, 0, 4935, 4937, 5, 533, 0, 0, 4936, 4934, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 411, 1, 0, 0, 0, 4938, 4939, 5, 694, 0, 0, 4939, 4940, 5, 583, 0, 0, 4940, 4941, 3, 700, 350, 0, 4941, 413, 1, 0, 0, 0, 4942, 4943, 5, 694, 0, 0, 4943, 4946, 5, 551, 0, 0, 4944, 4945, 5, 33, 0, 0, 4945, 4947, 3, 700, 350, 0, 4946, 4944, 1, 0, 0, 0, 4946, 4947, 1, 0, 0, 0, 4947, 415, 1, 0, 0, 0, 4948, 4949, 5, 540, 0, 0, 4949, 4950, 3, 708, 354, 0, 4950, 4953, 5, 68, 0, 0, 4951, 4954, 5, 882, 0, 0, 4952, 4954, 5, 892, 0, 0, 4953, 4951, 1, 0, 0, 0, 4953, 4952, 1, 0, 0, 0, 4954, 417, 1, 0, 0, 0, 4955, 4956, 5, 717, 0, 0, 4956, 4959, 3, 708, 354, 0, 4957, 4958, 5, 188, 0, 0, 4958, 4960, 3, 754, 377, 0, 4959, 4957, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 419, 1, 0, 0, 0, 4961, 4962, 7, 77, 0, 0, 4962, 4963, 5, 540, 0, 0, 4963, 4964, 3, 708, 354, 0, 4964, 421, 1, 0, 0, 0, 4965, 4968, 3, 424, 212, 0, 4966, 4968, 3, 4, 2, 0, 4967, 4965, 1, 0, 0, 0, 4967, 4966, 1, 0, 0, 0, 4968, 423, 1, 0, 0, 0, 4969, 4970, 3, 708, 354, 0, 4970, 4971, 5, 878, 0, 0, 4971, 4973, 1, 0, 0, 0, 4972, 4969, 1, 0, 0, 0, 4972, 4973, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 4980, 5, 317, 0, 0, 4975, 4976, 3, 444, 222, 0, 4976, 4977, 5, 869, 0, 0, 4977, 4979, 1, 0, 0, 0, 4978, 4975, 1, 0, 0, 0, 4979, 4982, 1, 0, 0, 0, 4980, 4978, 1, 0, 0, 0, 4980, 4981, 1, 0, 0, 0, 4981, 4988, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4983, 4984, 3, 446, 223, 0, 4984, 4985, 5, 869, 0, 0, 4985, 4987, 1, 0, 0, 0, 4986, 4983, 1, 0, 0, 0, 4987, 4990, 1, 0, 0, 0, 4988, 4986, 1, 0, 0, 0, 4988, 4989, 1, 0, 0, 0, 4989, 4996, 1, 0, 0, 0, 4990, 4988, 1, 0, 0, 0, 4991, 4992, 3, 448, 224, 0, 4992, 4993, 5, 869, 0, 0, 4993, 4995, 1, 0, 0, 0, 4994, 4991, 1, 0, 0, 0, 4995, 4998, 1, 0, 0, 0, 4996, 4994, 1, 0, 0, 0, 4996, 4997, 1, 0, 0, 0, 4997, 5004, 1, 0, 0, 0, 4998, 4996, 1, 0, 0, 0, 4999, 5000, 3, 450, 225, 0, 5000, 5001, 5, 869, 0, 0, 5001, 5003, 1, 0, 0, 0, 5002, 4999, 1, 0, 0, 0, 5003, 5006, 1, 0, 0, 0, 5004, 5002, 1, 0, 0, 0, 5004, 5005, 1, 0, 0, 0, 5005, 5010, 1, 0, 0, 0, 5006, 5004, 1, 0, 0, 0, 5007, 5009, 3, 454, 227, 0, 5008, 5007, 1, 0, 0, 0, 5009, 5012, 1, 0, 0, 0, 5010, 5008, 1, 0, 0, 0, 5010, 5011, 1, 0, 0, 0, 5011, 5013, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5013, 5015, 5, 378, 0, 0, 5014, 5016, 3, 708, 354, 0, 5015, 5014, 1, 0, 0, 0, 5015, 5016, 1, 0, 0, 0, 5016, 425, 1, 0, 0, 0, 5017, 5020, 5, 23, 0, 0, 5018, 5021, 3, 708, 354, 0, 5019, 5021, 3, 806, 403, 0, 5020, 5018, 1, 0, 0, 0, 5020, 5019, 1, 0, 0, 0, 5020, 5021, 1, 0, 0, 0, 5021, 5023, 1, 0, 0, 0, 5022, 5024, 3, 456, 228, 0, 5023, 5022, 1, 0, 0, 0, 5024, 5025, 1, 0, 0, 0, 5025, 5023, 1, 0, 0, 0, 5025, 5026, 1, 0, 0, 0, 5026, 5033, 1, 0, 0, 0, 5027, 5029, 5, 53, 0, 0, 5028, 5030, 3, 454, 227, 0, 5029, 5028, 1, 0, 0, 0, 5030, 5031, 1, 0, 0, 0, 5031, 5029, 1, 0, 0, 0, 5031, 5032, 1, 0, 0, 0, 5032, 5034, 1, 0, 0, 0, 5033, 5027, 1, 0, 0, 0, 5033, 5034, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 5036, 5, 378, 0, 0, 5036, 5037, 5, 23, 0, 0, 5037, 427, 1, 0, 0, 0, 5038, 5039, 5, 78, 0, 0, 5039, 5040, 3, 806, 403, 0, 5040, 5042, 5, 175, 0, 0, 5041, 5043, 3, 454, 227, 0, 5042, 5041, 1, 0, 0, 0, 5043, 5044, 1, 0, 0, 0, 5044, 5042, 1, 0, 0, 0, 5044, 5045, 1, 0, 0, 0, 5045, 5049, 1, 0, 0, 0, 5046, 5048, 3, 458, 229, 0, 5047, 5046, 1, 0, 0, 0, 5048, 5051, 1, 0, 0, 0, 5049, 5047, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5058, 1, 0, 0, 0, 5051, 5049, 1, 0, 0, 0, 5052, 5054, 5, 53, 0, 0, 5053, 5055, 3, 454, 227, 0, 5054, 5053, 1, 0, 0, 0, 5055, 5056, 1, 0, 0, 0, 5056, 5054, 1, 0, 0, 0, 5056, 5057, 1, 0, 0, 0, 5057, 5059, 1, 0, 0, 0, 5058, 5052, 1, 0, 0, 0, 5058, 5059, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5061, 5, 378, 0, 0, 5061, 5062, 5, 78, 0, 0, 5062, 429, 1, 0, 0, 0, 5063, 5064, 5, 90, 0, 0, 5064, 5065, 3, 708, 354, 0, 5065, 431, 1, 0, 0, 0, 5066, 5067, 5, 97, 0, 0, 5067, 5068, 3, 708, 354, 0, 5068, 433, 1, 0, 0, 0, 5069, 5070, 3, 708, 354, 0, 5070, 5071, 5, 878, 0, 0, 5071, 5073, 1, 0, 0, 0, 5072, 5069, 1, 0, 0, 0, 5072, 5073, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5076, 5, 106, 0, 0, 5075, 5077, 3, 454, 227, 0, 5076, 5075, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5076, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5081, 5, 378, 0, 0, 5081, 5083, 5, 106, 0, 0, 5082, 5084, 3, 708, 354, 0, 5083, 5082, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 435, 1, 0, 0, 0, 5085, 5086, 3, 708, 354, 0, 5086, 5087, 5, 878, 0, 0, 5087, 5089, 1, 0, 0, 0, 5088, 5085, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5092, 5, 142, 0, 0, 5091, 5093, 3, 454, 227, 0, 5092, 5091, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5092, 1, 0, 0, 0, 5094, 5095, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5097, 5, 676, 0, 0, 5097, 5098, 3, 806, 403, 0, 5098, 5099, 5, 378, 0, 0, 5099, 5101, 5, 142, 0, 0, 5100, 5102, 3, 708, 354, 0, 5101, 5100, 1, 0, 0, 0, 5101, 5102, 1, 0, 0, 0, 5102, 437, 1, 0, 0, 0, 5103, 5104, 5, 148, 0, 0, 5104, 5105, 3, 806, 403, 0, 5105, 439, 1, 0, 0, 0, 5106, 5107, 3, 708, 354, 0, 5107, 5108, 5, 878, 0, 0, 5108, 5110, 1, 0, 0, 0, 5109, 5106, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 5112, 5, 193, 0, 0, 5112, 5113, 3, 806, 403, 0, 5113, 5115, 5, 371, 0, 0, 5114, 5116, 3, 454, 227, 0, 5115, 5114, 1, 0, 0, 0, 5116, 5117, 1, 0, 0, 0, 5117, 5115, 1, 0, 0, 0, 5117, 5118, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5120, 5, 378, 0, 0, 5120, 5122, 5, 193, 0, 0, 5121, 5123, 3, 708, 354, 0, 5122, 5121, 1, 0, 0, 0, 5122, 5123, 1, 0, 0, 0, 5123, 441, 1, 0, 0, 0, 5124, 5125, 5, 334, 0, 0, 5125, 5140, 3, 708, 354, 0, 5126, 5131, 5, 64, 0, 0, 5127, 5129, 5, 501, 0, 0, 5128, 5127, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5130, 1, 0, 0, 0, 5130, 5132, 5, 68, 0, 0, 5131, 5128, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 5133, 1, 0, 0, 0, 5133, 5134, 3, 708, 354, 0, 5134, 5135, 5, 88, 0, 0, 5135, 5136, 3, 706, 353, 0, 5136, 5140, 1, 0, 0, 0, 5137, 5138, 5, 516, 0, 0, 5138, 5140, 3, 708, 354, 0, 5139, 5124, 1, 0, 0, 0, 5139, 5126, 1, 0, 0, 0, 5139, 5137, 1, 0, 0, 0, 5140, 443, 1, 0, 0, 0, 5141, 5142, 5, 41, 0, 0, 5142, 5143, 3, 706, 353, 0, 5143, 5146, 3, 728, 364, 0, 5144, 5145, 5, 42, 0, 0, 5145, 5147, 3, 806, 403, 0, 5146, 5144, 1, 0, 0, 0, 5146, 5147, 1, 0, 0, 0, 5147, 445, 1, 0, 0, 0, 5148, 5149, 5, 41, 0, 0, 5149, 5150, 3, 708, 354, 0, 5150, 5151, 5, 30, 0, 0, 5151, 5158, 5, 65, 0, 0, 5152, 5159, 3, 714, 357, 0, 5153, 5155, 5, 164, 0, 0, 5154, 5156, 5, 682, 0, 0, 5155, 5154, 1, 0, 0, 0, 5155, 5156, 1, 0, 0, 0, 5156, 5157, 1, 0, 0, 0, 5157, 5159, 5, 882, 0, 0, 5158, 5152, 1, 0, 0, 0, 5158, 5153, 1, 0, 0, 0, 5159, 447, 1, 0, 0, 0, 5160, 5161, 5, 41, 0, 0, 5161, 5162, 3, 708, 354, 0, 5162, 5163, 5, 38, 0, 0, 5163, 5164, 5, 65, 0, 0, 5164, 5165, 3, 204, 102, 0, 5165, 449, 1, 0, 0, 0, 5166, 5167, 5, 41, 0, 0, 5167, 5168, 7, 78, 0, 0, 5168, 5169, 5, 417, 0, 0, 5169, 5170, 5, 65, 0, 0, 5170, 5175, 3, 452, 226, 0, 5171, 5172, 5, 868, 0, 0, 5172, 5174, 3, 452, 226, 0, 5173, 5171, 1, 0, 0, 0, 5174, 5177, 1, 0, 0, 0, 5175, 5173, 1, 0, 0, 0, 5175, 5176, 1, 0, 0, 0, 5176, 5178, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5178, 5179, 3, 422, 211, 0, 5179, 451, 1, 0, 0, 0, 5180, 5192, 3, 714, 357, 0, 5181, 5183, 5, 164, 0, 0, 5182, 5184, 5, 682, 0, 0, 5183, 5182, 1, 0, 0, 0, 5183, 5184, 1, 0, 0, 0, 5184, 5185, 1, 0, 0, 0, 5185, 5192, 5, 882, 0, 0, 5186, 5192, 3, 708, 354, 0, 5187, 5192, 5, 165, 0, 0, 5188, 5189, 5, 114, 0, 0, 5189, 5192, 5, 407, 0, 0, 5190, 5192, 5, 163, 0, 0, 5191, 5180, 1, 0, 0, 0, 5191, 5181, 1, 0, 0, 0, 5191, 5186, 1, 0, 0, 0, 5191, 5187, 1, 0, 0, 0, 5191, 5188, 1, 0, 0, 0, 5191, 5190, 1, 0, 0, 0, 5192, 453, 1, 0, 0, 0, 5193, 5196, 3, 18, 9, 0, 5194, 5196, 3, 4, 2, 0, 5195, 5193, 1, 0, 0, 0, 5195, 5194, 1, 0, 0, 0, 5196, 5197, 1, 0, 0, 0, 5197, 5198, 5, 869, 0, 0, 5198, 455, 1, 0, 0, 0, 5199, 5202, 5, 191, 0, 0, 5200, 5203, 3, 726, 363, 0, 5201, 5203, 3, 806, 403, 0, 5202, 5200, 1, 0, 0, 0, 5202, 5201, 1, 0, 0, 0, 5203, 5204, 1, 0, 0, 0, 5204, 5206, 5, 175, 0, 0, 5205, 5207, 3, 454, 227, 0, 5206, 5205, 1, 0, 0, 0, 5207, 5208, 1, 0, 0, 0, 5208, 5206, 1, 0, 0, 0, 5208, 5209, 1, 0, 0, 0, 5209, 457, 1, 0, 0, 0, 5210, 5211, 5, 54, 0, 0, 5211, 5212, 3, 806, 403, 0, 5212, 5214, 5, 175, 0, 0, 5213, 5215, 3, 454, 227, 0, 5214, 5213, 1, 0, 0, 0, 5215, 5216, 1, 0, 0, 0, 5216, 5214, 1, 0, 0, 0, 5216, 5217, 1, 0, 0, 0, 5217, 459, 1, 0, 0, 0, 5218, 5219, 5, 8, 0, 0, 5219, 5221, 5, 678, 0, 0, 5220, 5222, 3, 760, 380, 0, 5221, 5220, 1, 0, 0, 0, 5221, 5222, 1, 0, 0, 0, 5222, 5279, 1, 0, 0, 0, 5223, 5228, 3, 492, 246, 0, 5224, 5225, 5, 868, 0, 0, 5225, 5227, 3, 492, 246, 0, 5226, 5224, 1, 0, 0, 0, 5227, 5230, 1, 0, 0, 0, 5228, 5226, 1, 0, 0, 0, 5228, 5229, 1, 0, 0, 0, 5229, 5280, 1, 0, 0, 0, 5230, 5228, 1, 0, 0, 0, 5231, 5236, 3, 494, 247, 0, 5232, 5233, 5, 868, 0, 0, 5233, 5235, 3, 494, 247, 0, 5234, 5232, 1, 0, 0, 0, 5235, 5238, 1, 0, 0, 0, 5236, 5234, 1, 0, 0, 0, 5236, 5237, 1, 0, 0, 0, 5237, 5253, 1, 0, 0, 0, 5238, 5236, 1, 0, 0, 0, 5239, 5251, 5, 144, 0, 0, 5240, 5252, 5, 505, 0, 0, 5241, 5248, 3, 506, 253, 0, 5242, 5244, 5, 11, 0, 0, 5243, 5242, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5247, 3, 506, 253, 0, 5246, 5243, 1, 0, 0, 0, 5247, 5250, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5240, 1, 0, 0, 0, 5251, 5241, 1, 0, 0, 0, 5252, 5254, 1, 0, 0, 0, 5253, 5239, 1, 0, 0, 0, 5253, 5254, 1, 0, 0, 0, 5254, 5261, 1, 0, 0, 0, 5255, 5257, 5, 194, 0, 0, 5256, 5258, 3, 508, 254, 0, 5257, 5256, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, 0, 5259, 5257, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5262, 1, 0, 0, 0, 5261, 5255, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5267, 1, 0, 0, 0, 5263, 5266, 3, 510, 255, 0, 5264, 5266, 3, 512, 256, 0, 5265, 5263, 1, 0, 0, 0, 5265, 5264, 1, 0, 0, 0, 5266, 5269, 1, 0, 0, 0, 5267, 5265, 1, 0, 0, 0, 5267, 5268, 1, 0, 0, 0, 5268, 5272, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5270, 5271, 7, 79, 0, 0, 5271, 5273, 5, 882, 0, 0, 5272, 5270, 1, 0, 0, 0, 5272, 5273, 1, 0, 0, 0, 5273, 5280, 1, 0, 0, 0, 5274, 5275, 3, 658, 329, 0, 5275, 5276, 5, 42, 0, 0, 5276, 5277, 5, 582, 0, 0, 5277, 5278, 3, 468, 234, 0, 5278, 5280, 1, 0, 0, 0, 5279, 5223, 1, 0, 0, 0, 5279, 5231, 1, 0, 0, 0, 5279, 5274, 1, 0, 0, 0, 5280, 461, 1, 0, 0, 0, 5281, 5282, 5, 34, 0, 0, 5282, 5284, 5, 678, 0, 0, 5283, 5285, 3, 762, 381, 0, 5284, 5283, 1, 0, 0, 0, 5284, 5285, 1, 0, 0, 0, 5285, 5286, 1, 0, 0, 0, 5286, 5288, 3, 686, 343, 0, 5287, 5289, 3, 496, 248, 0, 5288, 5287, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5297, 1, 0, 0, 0, 5290, 5291, 5, 868, 0, 0, 5291, 5293, 3, 686, 343, 0, 5292, 5294, 3, 496, 248, 0, 5293, 5292, 1, 0, 0, 0, 5293, 5294, 1, 0, 0, 0, 5294, 5296, 1, 0, 0, 0, 5295, 5290, 1, 0, 0, 0, 5296, 5299, 1, 0, 0, 0, 5297, 5295, 1, 0, 0, 0, 5297, 5298, 1, 0, 0, 0, 5298, 5303, 1, 0, 0, 0, 5299, 5297, 1, 0, 0, 0, 5300, 5301, 5, 42, 0, 0, 5301, 5302, 5, 582, 0, 0, 5302, 5304, 3, 468, 234, 0, 5303, 5300, 1, 0, 0, 0, 5303, 5304, 1, 0, 0, 0, 5304, 5319, 1, 0, 0, 0, 5305, 5317, 5, 144, 0, 0, 5306, 5318, 5, 505, 0, 0, 5307, 5314, 3, 506, 253, 0, 5308, 5310, 5, 11, 0, 0, 5309, 5308, 1, 0, 0, 0, 5309, 5310, 1, 0, 0, 0, 5310, 5311, 1, 0, 0, 0, 5311, 5313, 3, 506, 253, 0, 5312, 5309, 1, 0, 0, 0, 5313, 5316, 1, 0, 0, 0, 5314, 5312, 1, 0, 0, 0, 5314, 5315, 1, 0, 0, 0, 5315, 5318, 1, 0, 0, 0, 5316, 5314, 1, 0, 0, 0, 5317, 5306, 1, 0, 0, 0, 5317, 5307, 1, 0, 0, 0, 5318, 5320, 1, 0, 0, 0, 5319, 5305, 1, 0, 0, 0, 5319, 5320, 1, 0, 0, 0, 5320, 5327, 1, 0, 0, 0, 5321, 5323, 5, 194, 0, 0, 5322, 5324, 3, 508, 254, 0, 5323, 5322, 1, 0, 0, 0, 5324, 5325, 1, 0, 0, 0, 5325, 5323, 1, 0, 0, 0, 5325, 5326, 1, 0, 0, 0, 5326, 5328, 1, 0, 0, 0, 5327, 5321, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 5333, 1, 0, 0, 0, 5329, 5332, 3, 510, 255, 0, 5330, 5332, 3, 512, 256, 0, 5331, 5329, 1, 0, 0, 0, 5331, 5330, 1, 0, 0, 0, 5332, 5335, 1, 0, 0, 0, 5333, 5331, 1, 0, 0, 0, 5333, 5334, 1, 0, 0, 0, 5334, 5338, 1, 0, 0, 0, 5335, 5333, 1, 0, 0, 0, 5336, 5337, 7, 79, 0, 0, 5337, 5339, 5, 882, 0, 0, 5338, 5336, 1, 0, 0, 0, 5338, 5339, 1, 0, 0, 0, 5339, 463, 1, 0, 0, 0, 5340, 5341, 5, 51, 0, 0, 5341, 5343, 5, 678, 0, 0, 5342, 5344, 3, 760, 380, 0, 5343, 5342, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5350, 3, 686, 343, 0, 5346, 5347, 5, 868, 0, 0, 5347, 5349, 3, 686, 343, 0, 5348, 5346, 1, 0, 0, 0, 5349, 5352, 1, 0, 0, 0, 5350, 5348, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 465, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5353, 5354, 5, 73, 0, 0, 5354, 5359, 3, 520, 260, 0, 5355, 5356, 5, 868, 0, 0, 5356, 5358, 3, 520, 260, 0, 5357, 5355, 1, 0, 0, 0, 5358, 5361, 1, 0, 0, 0, 5359, 5357, 1, 0, 0, 0, 5359, 5360, 1, 0, 0, 0, 5360, 5362, 1, 0, 0, 0, 5361, 5359, 1, 0, 0, 0, 5362, 5364, 5, 119, 0, 0, 5363, 5365, 3, 488, 244, 0, 5364, 5363, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 5367, 3, 524, 262, 0, 5367, 5377, 5, 176, 0, 0, 5368, 5373, 3, 500, 250, 0, 5369, 5370, 5, 868, 0, 0, 5370, 5372, 3, 500, 250, 0, 5371, 5369, 1, 0, 0, 0, 5372, 5375, 1, 0, 0, 0, 5373, 5371, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 5378, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5376, 5378, 3, 656, 328, 0, 5377, 5368, 1, 0, 0, 0, 5377, 5376, 1, 0, 0, 0, 5378, 5393, 1, 0, 0, 0, 5379, 5391, 5, 144, 0, 0, 5380, 5392, 5, 505, 0, 0, 5381, 5388, 3, 506, 253, 0, 5382, 5384, 5, 11, 0, 0, 5383, 5382, 1, 0, 0, 0, 5383, 5384, 1, 0, 0, 0, 5384, 5385, 1, 0, 0, 0, 5385, 5387, 3, 506, 253, 0, 5386, 5383, 1, 0, 0, 0, 5387, 5390, 1, 0, 0, 0, 5388, 5386, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 5392, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5391, 5380, 1, 0, 0, 0, 5391, 5381, 1, 0, 0, 0, 5392, 5394, 1, 0, 0, 0, 5393, 5379, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5404, 1, 0, 0, 0, 5395, 5401, 5, 194, 0, 0, 5396, 5397, 5, 73, 0, 0, 5397, 5400, 5, 121, 0, 0, 5398, 5400, 3, 508, 254, 0, 5399, 5396, 1, 0, 0, 0, 5399, 5398, 1, 0, 0, 0, 5400, 5403, 1, 0, 0, 0, 5401, 5399, 1, 0, 0, 0, 5401, 5402, 1, 0, 0, 0, 5402, 5405, 1, 0, 0, 0, 5403, 5401, 1, 0, 0, 0, 5404, 5395, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5413, 1, 0, 0, 0, 5406, 5407, 5, 13, 0, 0, 5407, 5411, 3, 686, 343, 0, 5408, 5409, 5, 194, 0, 0, 5409, 5410, 5, 582, 0, 0, 5410, 5412, 3, 468, 234, 0, 5411, 5408, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5414, 1, 0, 0, 0, 5413, 5406, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5443, 1, 0, 0, 0, 5415, 5418, 5, 73, 0, 0, 5416, 5417, 5, 547, 0, 0, 5417, 5419, 5, 119, 0, 0, 5418, 5416, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 5425, 3, 658, 329, 0, 5421, 5422, 5, 868, 0, 0, 5422, 5424, 3, 658, 329, 0, 5423, 5421, 1, 0, 0, 0, 5424, 5427, 1, 0, 0, 0, 5425, 5423, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5428, 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5428, 5429, 5, 176, 0, 0, 5429, 5434, 3, 658, 329, 0, 5430, 5431, 5, 868, 0, 0, 5431, 5433, 3, 658, 329, 0, 5432, 5430, 1, 0, 0, 0, 5433, 5436, 1, 0, 0, 0, 5434, 5432, 1, 0, 0, 0, 5434, 5435, 1, 0, 0, 0, 5435, 5440, 1, 0, 0, 0, 5436, 5434, 1, 0, 0, 0, 5437, 5438, 5, 194, 0, 0, 5438, 5439, 5, 704, 0, 0, 5439, 5441, 5, 121, 0, 0, 5440, 5437, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5443, 1, 0, 0, 0, 5442, 5353, 1, 0, 0, 0, 5442, 5415, 1, 0, 0, 0, 5443, 467, 1, 0, 0, 0, 5444, 5453, 5, 42, 0, 0, 5445, 5453, 5, 505, 0, 0, 5446, 5449, 5, 7, 0, 0, 5447, 5448, 5, 59, 0, 0, 5448, 5450, 3, 656, 328, 0, 5449, 5447, 1, 0, 0, 0, 5449, 5450, 1, 0, 0, 0, 5450, 5453, 1, 0, 0, 0, 5451, 5453, 3, 656, 328, 0, 5452, 5444, 1, 0, 0, 0, 5452, 5445, 1, 0, 0, 0, 5452, 5446, 1, 0, 0, 0, 5452, 5451, 1, 0, 0, 0, 5453, 469, 1, 0, 0, 0, 5454, 5455, 5, 73, 0, 0, 5455, 5456, 5, 547, 0, 0, 5456, 5457, 5, 119, 0, 0, 5457, 5458, 3, 686, 343, 0, 5458, 5459, 5, 176, 0, 0, 5459, 5464, 3, 686, 343, 0, 5460, 5461, 5, 868, 0, 0, 5461, 5463, 3, 686, 343, 0, 5462, 5460, 1, 0, 0, 0, 5463, 5466, 1, 0, 0, 0, 5464, 5462, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5470, 1, 0, 0, 0, 5466, 5464, 1, 0, 0, 0, 5467, 5468, 5, 194, 0, 0, 5468, 5469, 5, 73, 0, 0, 5469, 5471, 5, 121, 0, 0, 5470, 5467, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 471, 1, 0, 0, 0, 5472, 5473, 5, 8, 0, 0, 5473, 5474, 5, 739, 0, 0, 5474, 5475, 5, 74, 0, 0, 5475, 5481, 3, 648, 324, 0, 5476, 5478, 5, 190, 0, 0, 5477, 5479, 5, 857, 0, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5480, 1, 0, 0, 0, 5480, 5482, 3, 480, 240, 0, 5481, 5476, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5488, 1, 0, 0, 0, 5483, 5485, 5, 837, 0, 0, 5484, 5486, 5, 857, 0, 0, 5485, 5484, 1, 0, 0, 0, 5485, 5486, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5489, 3, 714, 357, 0, 5488, 5483, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 5494, 1, 0, 0, 0, 5490, 5492, 7, 38, 0, 0, 5491, 5493, 5, 66, 0, 0, 5492, 5491, 1, 0, 0, 0, 5492, 5493, 1, 0, 0, 0, 5493, 5495, 1, 0, 0, 0, 5494, 5490, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 473, 1, 0, 0, 0, 5496, 5497, 5, 34, 0, 0, 5497, 5498, 5, 739, 0, 0, 5498, 5499, 5, 74, 0, 0, 5499, 5500, 3, 646, 323, 0, 5500, 5501, 5, 839, 0, 0, 5501, 5502, 5, 857, 0, 0, 5502, 5508, 7, 80, 0, 0, 5503, 5505, 5, 190, 0, 0, 5504, 5506, 5, 857, 0, 0, 5505, 5504, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 5509, 3, 480, 240, 0, 5508, 5503, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5515, 1, 0, 0, 0, 5510, 5512, 5, 837, 0, 0, 5511, 5513, 5, 857, 0, 0, 5512, 5511, 1, 0, 0, 0, 5512, 5513, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5516, 3, 714, 357, 0, 5515, 5510, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5518, 1, 0, 0, 0, 5517, 5519, 7, 38, 0, 0, 5518, 5517, 1, 0, 0, 0, 5518, 5519, 1, 0, 0, 0, 5519, 475, 1, 0, 0, 0, 5520, 5521, 5, 51, 0, 0, 5521, 5522, 5, 739, 0, 0, 5522, 5523, 5, 74, 0, 0, 5523, 5525, 3, 648, 324, 0, 5524, 5526, 5, 66, 0, 0, 5525, 5524, 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 477, 1, 0, 0, 0, 5527, 5528, 5, 155, 0, 0, 5528, 5529, 5, 739, 0, 0, 5529, 5530, 5, 74, 0, 0, 5530, 5540, 3, 648, 324, 0, 5531, 5532, 5, 65, 0, 0, 5532, 5537, 3, 714, 357, 0, 5533, 5534, 5, 868, 0, 0, 5534, 5536, 3, 714, 357, 0, 5535, 5533, 1, 0, 0, 0, 5536, 5539, 1, 0, 0, 0, 5537, 5535, 1, 0, 0, 0, 5537, 5538, 1, 0, 0, 0, 5538, 5541, 1, 0, 0, 0, 5539, 5537, 1, 0, 0, 0, 5540, 5531, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 479, 1, 0, 0, 0, 5542, 5548, 3, 714, 357, 0, 5543, 5544, 3, 714, 357, 0, 5544, 5545, 5, 854, 0, 0, 5545, 5546, 3, 714, 357, 0, 5546, 5548, 1, 0, 0, 0, 5547, 5542, 1, 0, 0, 0, 5547, 5543, 1, 0, 0, 0, 5548, 5553, 1, 0, 0, 0, 5549, 5550, 5, 868, 0, 0, 5550, 5552, 3, 480, 240, 0, 5551, 5549, 1, 0, 0, 0, 5552, 5555, 1, 0, 0, 0, 5553, 5551, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 481, 1, 0, 0, 0, 5555, 5553, 1, 0, 0, 0, 5556, 5557, 5, 141, 0, 0, 5557, 5558, 5, 678, 0, 0, 5558, 5563, 3, 526, 263, 0, 5559, 5560, 5, 868, 0, 0, 5560, 5562, 3, 526, 263, 0, 5561, 5559, 1, 0, 0, 0, 5562, 5565, 1, 0, 0, 0, 5563, 5561, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 483, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5566, 5568, 5, 149, 0, 0, 5567, 5569, 3, 760, 380, 0, 5568, 5567, 1, 0, 0, 0, 5568, 5569, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 5575, 3, 520, 260, 0, 5571, 5572, 5, 868, 0, 0, 5572, 5574, 3, 520, 260, 0, 5573, 5571, 1, 0, 0, 0, 5574, 5577, 1, 0, 0, 0, 5575, 5573, 1, 0, 0, 0, 5575, 5576, 1, 0, 0, 0, 5576, 5578, 1, 0, 0, 0, 5577, 5575, 1, 0, 0, 0, 5578, 5580, 5, 119, 0, 0, 5579, 5581, 3, 488, 244, 0, 5580, 5579, 1, 0, 0, 0, 5580, 5581, 1, 0, 0, 0, 5581, 5582, 1, 0, 0, 0, 5582, 5583, 3, 524, 262, 0, 5583, 5584, 5, 68, 0, 0, 5584, 5586, 3, 656, 328, 0, 5585, 5587, 3, 486, 243, 0, 5586, 5585, 1, 0, 0, 0, 5586, 5587, 1, 0, 0, 0, 5587, 5619, 1, 0, 0, 0, 5588, 5590, 5, 149, 0, 0, 5589, 5591, 3, 760, 380, 0, 5590, 5589, 1, 0, 0, 0, 5590, 5591, 1, 0, 0, 0, 5591, 5592, 1, 0, 0, 0, 5592, 5594, 5, 7, 0, 0, 5593, 5595, 5, 734, 0, 0, 5594, 5593, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5597, 5, 868, 0, 0, 5597, 5598, 5, 73, 0, 0, 5598, 5599, 5, 121, 0, 0, 5599, 5600, 5, 68, 0, 0, 5600, 5602, 3, 656, 328, 0, 5601, 5603, 3, 486, 243, 0, 5602, 5601, 1, 0, 0, 0, 5602, 5603, 1, 0, 0, 0, 5603, 5619, 1, 0, 0, 0, 5604, 5606, 5, 149, 0, 0, 5605, 5607, 3, 760, 380, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5610, 1, 0, 0, 0, 5608, 5609, 5, 547, 0, 0, 5609, 5611, 5, 119, 0, 0, 5610, 5608, 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5612, 1, 0, 0, 0, 5612, 5613, 3, 656, 328, 0, 5613, 5614, 5, 68, 0, 0, 5614, 5616, 3, 656, 328, 0, 5615, 5617, 3, 486, 243, 0, 5616, 5615, 1, 0, 0, 0, 5616, 5617, 1, 0, 0, 0, 5617, 5619, 1, 0, 0, 0, 5618, 5566, 1, 0, 0, 0, 5618, 5588, 1, 0, 0, 0, 5618, 5604, 1, 0, 0, 0, 5619, 485, 1, 0, 0, 0, 5620, 5621, 5, 79, 0, 0, 5621, 5622, 5, 674, 0, 0, 5622, 5623, 5, 678, 0, 0, 5623, 487, 1, 0, 0, 0, 5624, 5625, 7, 81, 0, 0, 5625, 489, 1, 0, 0, 0, 5626, 5627, 5, 155, 0, 0, 5627, 5630, 5, 529, 0, 0, 5628, 5629, 5, 65, 0, 0, 5629, 5631, 3, 686, 343, 0, 5630, 5628, 1, 0, 0, 0, 5630, 5631, 1, 0, 0, 0, 5631, 5632, 1, 0, 0, 0, 5632, 5635, 5, 857, 0, 0, 5633, 5636, 3, 800, 400, 0, 5634, 5636, 5, 882, 0, 0, 5635, 5633, 1, 0, 0, 0, 5635, 5634, 1, 0, 0, 0, 5636, 5659, 1, 0, 0, 0, 5637, 5638, 5, 155, 0, 0, 5638, 5641, 5, 529, 0, 0, 5639, 5640, 5, 65, 0, 0, 5640, 5642, 3, 686, 343, 0, 5641, 5639, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5647, 1, 0, 0, 0, 5643, 5644, 5, 176, 0, 0, 5644, 5648, 5, 829, 0, 0, 5645, 5646, 5, 857, 0, 0, 5646, 5648, 5, 882, 0, 0, 5647, 5643, 1, 0, 0, 0, 5647, 5645, 1, 0, 0, 0, 5648, 5651, 1, 0, 0, 0, 5649, 5650, 5, 143, 0, 0, 5650, 5652, 5, 882, 0, 0, 5651, 5649, 1, 0, 0, 0, 5651, 5652, 1, 0, 0, 0, 5652, 5656, 1, 0, 0, 0, 5653, 5654, 5, 147, 0, 0, 5654, 5655, 5, 36, 0, 0, 5655, 5657, 5, 529, 0, 0, 5656, 5653, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5659, 1, 0, 0, 0, 5658, 5626, 1, 0, 0, 0, 5658, 5637, 1, 0, 0, 0, 5659, 491, 1, 0, 0, 0, 5660, 5661, 3, 686, 343, 0, 5661, 5662, 3, 510, 255, 0, 5662, 493, 1, 0, 0, 0, 5663, 5664, 3, 686, 343, 0, 5664, 5665, 5, 423, 0, 0, 5665, 5666, 5, 20, 0, 0, 5666, 5667, 5, 882, 0, 0, 5667, 5668, 3, 502, 251, 0, 5668, 5702, 1, 0, 0, 0, 5669, 5670, 3, 686, 343, 0, 5670, 5671, 5, 423, 0, 0, 5671, 5672, 5, 20, 0, 0, 5672, 5673, 5, 829, 0, 0, 5673, 5674, 5, 529, 0, 0, 5674, 5675, 3, 502, 251, 0, 5675, 5702, 1, 0, 0, 0, 5676, 5677, 3, 686, 343, 0, 5677, 5678, 5, 423, 0, 0, 5678, 5679, 5, 194, 0, 0, 5679, 5680, 3, 504, 252, 0, 5680, 5702, 1, 0, 0, 0, 5681, 5682, 3, 686, 343, 0, 5682, 5683, 5, 369, 0, 0, 5683, 5684, 5, 511, 0, 0, 5684, 5685, 5, 529, 0, 0, 5685, 5702, 1, 0, 0, 0, 5686, 5692, 3, 686, 343, 0, 5687, 5688, 7, 82, 0, 0, 5688, 5690, 3, 518, 259, 0, 5689, 5691, 3, 514, 257, 0, 5690, 5689, 1, 0, 0, 0, 5690, 5691, 1, 0, 0, 0, 5691, 5693, 1, 0, 0, 0, 5692, 5687, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5692, 1, 0, 0, 0, 5694, 5695, 1, 0, 0, 0, 5695, 5702, 1, 0, 0, 0, 5696, 5698, 3, 686, 343, 0, 5697, 5699, 3, 516, 258, 0, 5698, 5697, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5702, 1, 0, 0, 0, 5700, 5702, 3, 686, 343, 0, 5701, 5663, 1, 0, 0, 0, 5701, 5669, 1, 0, 0, 0, 5701, 5676, 1, 0, 0, 0, 5701, 5681, 1, 0, 0, 0, 5701, 5686, 1, 0, 0, 0, 5701, 5696, 1, 0, 0, 0, 5701, 5700, 1, 0, 0, 0, 5702, 495, 1, 0, 0, 0, 5703, 5704, 5, 423, 0, 0, 5704, 5710, 5, 20, 0, 0, 5705, 5711, 5, 882, 0, 0, 5706, 5707, 5, 829, 0, 0, 5707, 5711, 5, 529, 0, 0, 5708, 5709, 5, 529, 0, 0, 5709, 5711, 5, 882, 0, 0, 5710, 5705, 1, 0, 0, 0, 5710, 5706, 1, 0, 0, 0, 5710, 5708, 1, 0, 0, 0, 5711, 5714, 1, 0, 0, 0, 5712, 5713, 5, 11, 0, 0, 5713, 5715, 3, 496, 248, 0, 5714, 5712, 1, 0, 0, 0, 5714, 5715, 1, 0, 0, 0, 5715, 5740, 1, 0, 0, 0, 5716, 5717, 5, 423, 0, 0, 5717, 5718, 5, 194, 0, 0, 5718, 5727, 3, 708, 354, 0, 5719, 5723, 5, 20, 0, 0, 5720, 5724, 5, 882, 0, 0, 5721, 5722, 5, 829, 0, 0, 5722, 5724, 5, 529, 0, 0, 5723, 5720, 1, 0, 0, 0, 5723, 5721, 1, 0, 0, 0, 5724, 5728, 1, 0, 0, 0, 5725, 5726, 5, 13, 0, 0, 5726, 5728, 5, 882, 0, 0, 5727, 5719, 1, 0, 0, 0, 5727, 5725, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5731, 1, 0, 0, 0, 5729, 5730, 5, 11, 0, 0, 5730, 5732, 3, 496, 248, 0, 5731, 5729, 1, 0, 0, 0, 5731, 5732, 1, 0, 0, 0, 5732, 5740, 1, 0, 0, 0, 5733, 5734, 5, 423, 0, 0, 5734, 5735, 5, 194, 0, 0, 5735, 5737, 3, 708, 354, 0, 5736, 5738, 3, 498, 249, 0, 5737, 5736, 1, 0, 0, 0, 5737, 5738, 1, 0, 0, 0, 5738, 5740, 1, 0, 0, 0, 5739, 5703, 1, 0, 0, 0, 5739, 5716, 1, 0, 0, 0, 5739, 5733, 1, 0, 0, 0, 5740, 497, 1, 0, 0, 0, 5741, 5742, 5, 427, 0, 0, 5742, 5743, 5, 708, 0, 0, 5743, 5744, 5, 423, 0, 0, 5744, 5748, 5, 20, 0, 0, 5745, 5746, 5, 829, 0, 0, 5746, 5749, 5, 529, 0, 0, 5747, 5749, 5, 882, 0, 0, 5748, 5745, 1, 0, 0, 0, 5748, 5747, 1, 0, 0, 0, 5749, 5759, 1, 0, 0, 0, 5750, 5751, 5, 427, 0, 0, 5751, 5752, 5, 708, 0, 0, 5752, 5753, 5, 423, 0, 0, 5753, 5754, 5, 194, 0, 0, 5754, 5755, 3, 708, 354, 0, 5755, 5756, 5, 13, 0, 0, 5756, 5757, 5, 882, 0, 0, 5757, 5759, 1, 0, 0, 0, 5758, 5741, 1, 0, 0, 0, 5758, 5750, 1, 0, 0, 0, 5759, 499, 1, 0, 0, 0, 5760, 5761, 3, 686, 343, 0, 5761, 5762, 5, 423, 0, 0, 5762, 5763, 5, 20, 0, 0, 5763, 5764, 5, 529, 0, 0, 5764, 5765, 5, 882, 0, 0, 5765, 5786, 1, 0, 0, 0, 5766, 5767, 3, 686, 343, 0, 5767, 5768, 5, 423, 0, 0, 5768, 5769, 5, 20, 0, 0, 5769, 5770, 5, 829, 0, 0, 5770, 5771, 5, 529, 0, 0, 5771, 5772, 3, 502, 251, 0, 5772, 5786, 1, 0, 0, 0, 5773, 5774, 3, 686, 343, 0, 5774, 5775, 5, 423, 0, 0, 5775, 5776, 5, 20, 0, 0, 5776, 5777, 5, 882, 0, 0, 5777, 5778, 3, 502, 251, 0, 5778, 5786, 1, 0, 0, 0, 5779, 5780, 3, 686, 343, 0, 5780, 5781, 5, 423, 0, 0, 5781, 5782, 5, 194, 0, 0, 5782, 5783, 3, 504, 252, 0, 5783, 5786, 1, 0, 0, 0, 5784, 5786, 3, 686, 343, 0, 5785, 5760, 1, 0, 0, 0, 5785, 5766, 1, 0, 0, 0, 5785, 5773, 1, 0, 0, 0, 5785, 5779, 1, 0, 0, 0, 5785, 5784, 1, 0, 0, 0, 5786, 501, 1, 0, 0, 0, 5787, 5788, 5, 143, 0, 0, 5788, 5790, 5, 882, 0, 0, 5789, 5787, 1, 0, 0, 0, 5789, 5790, 1, 0, 0, 0, 5790, 5794, 1, 0, 0, 0, 5791, 5792, 5, 147, 0, 0, 5792, 5793, 5, 36, 0, 0, 5793, 5795, 5, 529, 0, 0, 5794, 5791, 1, 0, 0, 0, 5794, 5795, 1, 0, 0, 0, 5795, 503, 1, 0, 0, 0, 5796, 5804, 3, 708, 354, 0, 5797, 5801, 7, 83, 0, 0, 5798, 5802, 5, 882, 0, 0, 5799, 5800, 5, 829, 0, 0, 5800, 5802, 5, 529, 0, 0, 5801, 5798, 1, 0, 0, 0, 5801, 5799, 1, 0, 0, 0, 5802, 5803, 1, 0, 0, 0, 5803, 5805, 3, 502, 251, 0, 5804, 5797, 1, 0, 0, 0, 5804, 5805, 1, 0, 0, 0, 5805, 5811, 1, 0, 0, 0, 5806, 5807, 3, 708, 354, 0, 5807, 5808, 5, 188, 0, 0, 5808, 5809, 3, 800, 400, 0, 5809, 5811, 1, 0, 0, 0, 5810, 5796, 1, 0, 0, 0, 5810, 5806, 1, 0, 0, 0, 5811, 505, 1, 0, 0, 0, 5812, 5821, 5, 169, 0, 0, 5813, 5821, 5, 693, 0, 0, 5814, 5815, 5, 331, 0, 0, 5815, 5821, 5, 882, 0, 0, 5816, 5817, 5, 441, 0, 0, 5817, 5821, 5, 882, 0, 0, 5818, 5819, 5, 651, 0, 0, 5819, 5821, 5, 882, 0, 0, 5820, 5812, 1, 0, 0, 0, 5820, 5813, 1, 0, 0, 0, 5820, 5814, 1, 0, 0, 0, 5820, 5816, 1, 0, 0, 0, 5820, 5818, 1, 0, 0, 0, 5821, 507, 1, 0, 0, 0, 5822, 5823, 5, 479, 0, 0, 5823, 5831, 3, 714, 357, 0, 5824, 5825, 5, 482, 0, 0, 5825, 5831, 3, 714, 357, 0, 5826, 5827, 5, 478, 0, 0, 5827, 5831, 3, 714, 357, 0, 5828, 5829, 5, 483, 0, 0, 5829, 5831, 3, 714, 357, 0, 5830, 5822, 1, 0, 0, 0, 5830, 5824, 1, 0, 0, 0, 5830, 5826, 1, 0, 0, 0, 5830, 5828, 1, 0, 0, 0, 5831, 509, 1, 0, 0, 0, 5832, 5833, 5, 529, 0, 0, 5833, 5840, 5, 390, 0, 0, 5834, 5841, 5, 42, 0, 0, 5835, 5841, 5, 500, 0, 0, 5836, 5837, 5, 87, 0, 0, 5837, 5838, 3, 714, 357, 0, 5838, 5839, 5, 698, 0, 0, 5839, 5841, 1, 0, 0, 0, 5840, 5834, 1, 0, 0, 0, 5840, 5835, 1, 0, 0, 0, 5840, 5836, 1, 0, 0, 0, 5840, 5841, 1, 0, 0, 0, 5841, 5871, 1, 0, 0, 0, 5842, 5843, 5, 529, 0, 0, 5843, 5846, 5, 420, 0, 0, 5844, 5847, 5, 42, 0, 0, 5845, 5847, 3, 714, 357, 0, 5846, 5844, 1, 0, 0, 0, 5846, 5845, 1, 0, 0, 0, 5847, 5871, 1, 0, 0, 0, 5848, 5849, 5, 529, 0, 0, 5849, 5850, 5, 581, 0, 0, 5850, 5855, 5, 87, 0, 0, 5851, 5856, 5, 42, 0, 0, 5852, 5853, 3, 714, 357, 0, 5853, 5854, 5, 698, 0, 0, 5854, 5856, 1, 0, 0, 0, 5855, 5851, 1, 0, 0, 0, 5855, 5852, 1, 0, 0, 0, 5856, 5871, 1, 0, 0, 0, 5857, 5858, 5, 529, 0, 0, 5858, 5859, 5, 144, 0, 0, 5859, 5861, 5, 36, 0, 0, 5860, 5862, 7, 84, 0, 0, 5861, 5860, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5871, 1, 0, 0, 0, 5863, 5864, 5, 395, 0, 0, 5864, 5871, 3, 714, 357, 0, 5865, 5868, 5, 530, 0, 0, 5866, 5869, 3, 714, 357, 0, 5867, 5869, 5, 669, 0, 0, 5868, 5866, 1, 0, 0, 0, 5868, 5867, 1, 0, 0, 0, 5869, 5871, 1, 0, 0, 0, 5870, 5832, 1, 0, 0, 0, 5870, 5842, 1, 0, 0, 0, 5870, 5848, 1, 0, 0, 0, 5870, 5857, 1, 0, 0, 0, 5870, 5863, 1, 0, 0, 0, 5870, 5865, 1, 0, 0, 0, 5871, 511, 1, 0, 0, 0, 5872, 5873, 5, 304, 0, 0, 5873, 5874, 7, 85, 0, 0, 5874, 513, 1, 0, 0, 0, 5875, 5878, 5, 423, 0, 0, 5876, 5877, 5, 194, 0, 0, 5877, 5879, 3, 708, 354, 0, 5878, 5876, 1, 0, 0, 0, 5878, 5879, 1, 0, 0, 0, 5879, 5888, 1, 0, 0, 0, 5880, 5884, 5, 20, 0, 0, 5881, 5885, 5, 882, 0, 0, 5882, 5883, 5, 829, 0, 0, 5883, 5885, 5, 529, 0, 0, 5884, 5881, 1, 0, 0, 0, 5884, 5882, 1, 0, 0, 0, 5885, 5889, 1, 0, 0, 0, 5886, 5887, 5, 13, 0, 0, 5887, 5889, 5, 882, 0, 0, 5888, 5880, 1, 0, 0, 0, 5888, 5886, 1, 0, 0, 0, 5889, 515, 1, 0, 0, 0, 5890, 5891, 3, 518, 259, 0, 5891, 5892, 5, 429, 0, 0, 5892, 5893, 5, 555, 0, 0, 5893, 5906, 1, 0, 0, 0, 5894, 5895, 3, 518, 259, 0, 5895, 5896, 5, 401, 0, 0, 5896, 5897, 5, 555, 0, 0, 5897, 5898, 5, 155, 0, 0, 5898, 5899, 5, 330, 0, 0, 5899, 5900, 5, 13, 0, 0, 5900, 5901, 5, 882, 0, 0, 5901, 5906, 1, 0, 0, 0, 5902, 5903, 3, 518, 259, 0, 5903, 5904, 5, 675, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5890, 1, 0, 0, 0, 5905, 5894, 1, 0, 0, 0, 5905, 5902, 1, 0, 0, 0, 5906, 517, 1, 0, 0, 0, 5907, 5908, 7, 86, 0, 0, 5908, 5909, 5, 394, 0, 0, 5909, 519, 1, 0, 0, 0, 5910, 5915, 3, 522, 261, 0, 5911, 5912, 5, 866, 0, 0, 5912, 5913, 3, 662, 331, 0, 5913, 5914, 5, 867, 0, 0, 5914, 5916, 1, 0, 0, 0, 5915, 5911, 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 521, 1, 0, 0, 0, 5917, 5919, 5, 7, 0, 0, 5918, 5920, 5, 734, 0, 0, 5919, 5918, 1, 0, 0, 0, 5919, 5920, 1, 0, 0, 0, 5920, 6011, 1, 0, 0, 0, 5921, 5923, 5, 8, 0, 0, 5922, 5924, 5, 743, 0, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 6011, 1, 0, 0, 0, 5925, 5933, 5, 34, 0, 0, 5926, 5927, 5, 660, 0, 0, 5927, 5934, 5, 752, 0, 0, 5928, 5934, 5, 743, 0, 0, 5929, 5934, 5, 684, 0, 0, 5930, 5934, 5, 678, 0, 0, 5931, 5934, 5, 658, 0, 0, 5932, 5934, 5, 582, 0, 0, 5933, 5926, 1, 0, 0, 0, 5933, 5928, 1, 0, 0, 0, 5933, 5929, 1, 0, 0, 0, 5933, 5930, 1, 0, 0, 0, 5933, 5931, 1, 0, 0, 0, 5933, 5932, 1, 0, 0, 0, 5933, 5934, 1, 0, 0, 0, 5934, 6011, 1, 0, 0, 0, 5935, 6011, 5, 44, 0, 0, 5936, 5938, 5, 51, 0, 0, 5937, 5939, 5, 582, 0, 0, 5938, 5937, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 6011, 1, 0, 0, 0, 5940, 6011, 5, 385, 0, 0, 5941, 6011, 5, 717, 0, 0, 5942, 6011, 5, 718, 0, 0, 5943, 5944, 5, 73, 0, 0, 5944, 6011, 5, 121, 0, 0, 5945, 6011, 5, 82, 0, 0, 5946, 6011, 5, 86, 0, 0, 5947, 5948, 5, 104, 0, 0, 5948, 6011, 5, 752, 0, 0, 5949, 6011, 5, 735, 0, 0, 5950, 6011, 5, 547, 0, 0, 5951, 6011, 5, 138, 0, 0, 5952, 6011, 5, 736, 0, 0, 5953, 5954, 5, 572, 0, 0, 5954, 6011, 7, 87, 0, 0, 5955, 6011, 5, 154, 0, 0, 5956, 5957, 5, 157, 0, 0, 5957, 6011, 7, 88, 0, 0, 5958, 6011, 5, 749, 0, 0, 5959, 6011, 5, 750, 0, 0, 5960, 6011, 5, 178, 0, 0, 5961, 6011, 5, 185, 0, 0, 5962, 6011, 5, 186, 0, 0, 5963, 6011, 5, 705, 0, 0, 5964, 6011, 5, 706, 0, 0, 5965, 6011, 5, 707, 0, 0, 5966, 6011, 5, 709, 0, 0, 5967, 6011, 5, 710, 0, 0, 5968, 6011, 5, 711, 0, 0, 5969, 6011, 5, 712, 0, 0, 5970, 6011, 5, 714, 0, 0, 5971, 6011, 5, 715, 0, 0, 5972, 6011, 5, 716, 0, 0, 5973, 6011, 5, 719, 0, 0, 5974, 6011, 5, 720, 0, 0, 5975, 6011, 5, 721, 0, 0, 5976, 6011, 5, 722, 0, 0, 5977, 6011, 5, 723, 0, 0, 5978, 6011, 5, 724, 0, 0, 5979, 6011, 5, 725, 0, 0, 5980, 6011, 5, 726, 0, 0, 5981, 6011, 5, 727, 0, 0, 5982, 6011, 5, 728, 0, 0, 5983, 6011, 5, 731, 0, 0, 5984, 6011, 5, 732, 0, 0, 5985, 6011, 5, 733, 0, 0, 5986, 6011, 5, 737, 0, 0, 5987, 6011, 5, 738, 0, 0, 5988, 6011, 5, 740, 0, 0, 5989, 6011, 5, 741, 0, 0, 5990, 6011, 5, 742, 0, 0, 5991, 6011, 5, 745, 0, 0, 5992, 6011, 5, 746, 0, 0, 5993, 6011, 5, 747, 0, 0, 5994, 6011, 5, 160, 0, 0, 5995, 6011, 5, 748, 0, 0, 5996, 6011, 5, 836, 0, 0, 5997, 6011, 5, 751, 0, 0, 5998, 6011, 5, 753, 0, 0, 5999, 6011, 5, 838, 0, 0, 6000, 6011, 5, 754, 0, 0, 6001, 6011, 5, 755, 0, 0, 6002, 6003, 5, 103, 0, 0, 6003, 6004, 5, 68, 0, 0, 6004, 6011, 5, 744, 0, 0, 6005, 6006, 5, 154, 0, 0, 6006, 6007, 5, 88, 0, 0, 6007, 6011, 5, 744, 0, 0, 6008, 6009, 5, 729, 0, 0, 6009, 6011, 5, 730, 0, 0, 6010, 5917, 1, 0, 0, 0, 6010, 5921, 1, 0, 0, 0, 6010, 5925, 1, 0, 0, 0, 6010, 5935, 1, 0, 0, 0, 6010, 5936, 1, 0, 0, 0, 6010, 5940, 1, 0, 0, 0, 6010, 5941, 1, 0, 0, 0, 6010, 5942, 1, 0, 0, 0, 6010, 5943, 1, 0, 0, 0, 6010, 5945, 1, 0, 0, 0, 6010, 5946, 1, 0, 0, 0, 6010, 5947, 1, 0, 0, 0, 6010, 5949, 1, 0, 0, 0, 6010, 5950, 1, 0, 0, 0, 6010, 5951, 1, 0, 0, 0, 6010, 5952, 1, 0, 0, 0, 6010, 5953, 1, 0, 0, 0, 6010, 5955, 1, 0, 0, 0, 6010, 5956, 1, 0, 0, 0, 6010, 5958, 1, 0, 0, 0, 6010, 5959, 1, 0, 0, 0, 6010, 5960, 1, 0, 0, 0, 6010, 5961, 1, 0, 0, 0, 6010, 5962, 1, 0, 0, 0, 6010, 5963, 1, 0, 0, 0, 6010, 5964, 1, 0, 0, 0, 6010, 5965, 1, 0, 0, 0, 6010, 5966, 1, 0, 0, 0, 6010, 5967, 1, 0, 0, 0, 6010, 5968, 1, 0, 0, 0, 6010, 5969, 1, 0, 0, 0, 6010, 5970, 1, 0, 0, 0, 6010, 5971, 1, 0, 0, 0, 6010, 5972, 1, 0, 0, 0, 6010, 5973, 1, 0, 0, 0, 6010, 5974, 1, 0, 0, 0, 6010, 5975, 1, 0, 0, 0, 6010, 5976, 1, 0, 0, 0, 6010, 5977, 1, 0, 0, 0, 6010, 5978, 1, 0, 0, 0, 6010, 5979, 1, 0, 0, 0, 6010, 5980, 1, 0, 0, 0, 6010, 5981, 1, 0, 0, 0, 6010, 5982, 1, 0, 0, 0, 6010, 5983, 1, 0, 0, 0, 6010, 5984, 1, 0, 0, 0, 6010, 5985, 1, 0, 0, 0, 6010, 5986, 1, 0, 0, 0, 6010, 5987, 1, 0, 0, 0, 6010, 5988, 1, 0, 0, 0, 6010, 5989, 1, 0, 0, 0, 6010, 5990, 1, 0, 0, 0, 6010, 5991, 1, 0, 0, 0, 6010, 5992, 1, 0, 0, 0, 6010, 5993, 1, 0, 0, 0, 6010, 5994, 1, 0, 0, 0, 6010, 5995, 1, 0, 0, 0, 6010, 5996, 1, 0, 0, 0, 6010, 5997, 1, 0, 0, 0, 6010, 5998, 1, 0, 0, 0, 6010, 5999, 1, 0, 0, 0, 6010, 6000, 1, 0, 0, 0, 6010, 6001, 1, 0, 0, 0, 6010, 6002, 1, 0, 0, 0, 6010, 6005, 1, 0, 0, 0, 6010, 6008, 1, 0, 0, 0, 6011, 523, 1, 0, 0, 0, 6012, 6029, 5, 850, 0, 0, 6013, 6014, 5, 850, 0, 0, 6014, 6015, 5, 865, 0, 0, 6015, 6029, 5, 850, 0, 0, 6016, 6017, 3, 708, 354, 0, 6017, 6018, 5, 865, 0, 0, 6018, 6019, 5, 850, 0, 0, 6019, 6029, 1, 0, 0, 0, 6020, 6021, 3, 708, 354, 0, 6021, 6022, 5, 865, 0, 0, 6022, 6023, 3, 708, 354, 0, 6023, 6029, 1, 0, 0, 0, 6024, 6025, 3, 708, 354, 0, 6025, 6026, 3, 712, 356, 0, 6026, 6029, 1, 0, 0, 0, 6027, 6029, 3, 708, 354, 0, 6028, 6012, 1, 0, 0, 0, 6028, 6013, 1, 0, 0, 0, 6028, 6016, 1, 0, 0, 0, 6028, 6020, 1, 0, 0, 0, 6028, 6024, 1, 0, 0, 0, 6028, 6027, 1, 0, 0, 0, 6029, 525, 1, 0, 0, 0, 6030, 6031, 3, 686, 343, 0, 6031, 6032, 5, 176, 0, 0, 6032, 6033, 3, 686, 343, 0, 6033, 527, 1, 0, 0, 0, 6034, 6036, 5, 10, 0, 0, 6035, 6037, 3, 538, 269, 0, 6036, 6035, 1, 0, 0, 0, 6036, 6037, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 5, 173, 0, 0, 6039, 6083, 3, 652, 326, 0, 6040, 6042, 5, 10, 0, 0, 6041, 6043, 3, 538, 269, 0, 6042, 6041, 1, 0, 0, 0, 6042, 6043, 1, 0, 0, 0, 6043, 6044, 1, 0, 0, 0, 6044, 6045, 5, 173, 0, 0, 6045, 6046, 3, 654, 327, 0, 6046, 6047, 5, 185, 0, 0, 6047, 6048, 5, 77, 0, 0, 6048, 6049, 5, 119, 0, 0, 6049, 6054, 3, 662, 331, 0, 6050, 6051, 5, 194, 0, 0, 6051, 6052, 3, 714, 357, 0, 6052, 6053, 5, 19, 0, 0, 6053, 6055, 1, 0, 0, 0, 6054, 6050, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 6083, 1, 0, 0, 0, 6056, 6058, 5, 10, 0, 0, 6057, 6059, 3, 538, 269, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6060, 1, 0, 0, 0, 6060, 6061, 5, 173, 0, 0, 6061, 6062, 3, 654, 327, 0, 6062, 6063, 5, 185, 0, 0, 6063, 6064, 5, 77, 0, 0, 6064, 6065, 5, 119, 0, 0, 6065, 6069, 3, 664, 332, 0, 6066, 6067, 5, 188, 0, 0, 6067, 6068, 5, 360, 0, 0, 6068, 6070, 5, 882, 0, 0, 6069, 6066, 1, 0, 0, 0, 6069, 6070, 1, 0, 0, 0, 6070, 6083, 1, 0, 0, 0, 6071, 6073, 5, 10, 0, 0, 6072, 6074, 3, 538, 269, 0, 6073, 6072, 1, 0, 0, 0, 6073, 6074, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6076, 5, 173, 0, 0, 6076, 6077, 3, 654, 327, 0, 6077, 6078, 5, 51, 0, 0, 6078, 6079, 5, 77, 0, 0, 6079, 6080, 5, 119, 0, 0, 6080, 6081, 3, 662, 331, 0, 6081, 6083, 1, 0, 0, 0, 6082, 6034, 1, 0, 0, 0, 6082, 6040, 1, 0, 0, 0, 6082, 6056, 1, 0, 0, 0, 6082, 6071, 1, 0, 0, 0, 6083, 529, 1, 0, 0, 0, 6084, 6085, 5, 27, 0, 0, 6085, 6086, 5, 173, 0, 0, 6086, 6090, 3, 652, 326, 0, 6087, 6089, 3, 540, 270, 0, 6088, 6087, 1, 0, 0, 0, 6089, 6092, 1, 0, 0, 0, 6090, 6088, 1, 0, 0, 0, 6090, 6091, 1, 0, 0, 0, 6091, 531, 1, 0, 0, 0, 6092, 6090, 1, 0, 0, 0, 6093, 6094, 5, 329, 0, 0, 6094, 6095, 5, 173, 0, 0, 6095, 6097, 3, 652, 326, 0, 6096, 6098, 7, 89, 0, 0, 6097, 6096, 1, 0, 0, 0, 6097, 6098, 1, 0, 0, 0, 6098, 533, 1, 0, 0, 0, 6099, 6101, 5, 120, 0, 0, 6100, 6102, 3, 538, 269, 0, 6101, 6100, 1, 0, 0, 0, 6101, 6102, 1, 0, 0, 0, 6102, 6103, 1, 0, 0, 0, 6103, 6104, 7, 60, 0, 0, 6104, 6105, 3, 652, 326, 0, 6105, 535, 1, 0, 0, 0, 6106, 6108, 5, 562, 0, 0, 6107, 6109, 3, 538, 269, 0, 6108, 6107, 1, 0, 0, 0, 6108, 6109, 1, 0, 0, 0, 6109, 6110, 1, 0, 0, 0, 6110, 6111, 5, 173, 0, 0, 6111, 6113, 3, 652, 326, 0, 6112, 6114, 5, 549, 0, 0, 6113, 6112, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 6116, 1, 0, 0, 0, 6115, 6117, 5, 392, 0, 0, 6116, 6115, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6119, 1, 0, 0, 0, 6118, 6120, 5, 679, 0, 0, 6119, 6118, 1, 0, 0, 0, 6119, 6120, 1, 0, 0, 0, 6120, 537, 1, 0, 0, 0, 6121, 6122, 7, 90, 0, 0, 6122, 539, 1, 0, 0, 0, 6123, 6124, 5, 65, 0, 0, 6124, 6131, 5, 677, 0, 0, 6125, 6131, 5, 549, 0, 0, 6126, 6131, 5, 396, 0, 0, 6127, 6131, 5, 484, 0, 0, 6128, 6131, 5, 392, 0, 0, 6129, 6131, 5, 327, 0, 0, 6130, 6123, 1, 0, 0, 0, 6130, 6125, 1, 0, 0, 0, 6130, 6126, 1, 0, 0, 0, 6130, 6127, 1, 0, 0, 0, 6130, 6128, 1, 0, 0, 0, 6130, 6129, 1, 0, 0, 0, 6131, 541, 1, 0, 0, 0, 6132, 6134, 5, 34, 0, 0, 6133, 6135, 5, 307, 0, 0, 6134, 6133, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 6138, 5, 409, 0, 0, 6137, 6139, 3, 762, 381, 0, 6138, 6137, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6141, 3, 632, 316, 0, 6141, 6142, 5, 580, 0, 0, 6142, 6143, 7, 91, 0, 0, 6143, 6144, 5, 603, 0, 0, 6144, 6145, 5, 882, 0, 0, 6145, 543, 1, 0, 0, 0, 6146, 6147, 5, 432, 0, 0, 6147, 6148, 5, 344, 0, 0, 6148, 6153, 3, 708, 354, 0, 6149, 6150, 5, 868, 0, 0, 6150, 6152, 3, 708, 354, 0, 6151, 6149, 1, 0, 0, 0, 6152, 6155, 1, 0, 0, 0, 6153, 6151, 1, 0, 0, 0, 6153, 6154, 1, 0, 0, 0, 6154, 6165, 1, 0, 0, 0, 6155, 6153, 1, 0, 0, 0, 6156, 6157, 5, 155, 0, 0, 6157, 6162, 3, 546, 273, 0, 6158, 6159, 5, 868, 0, 0, 6159, 6161, 3, 546, 273, 0, 6160, 6158, 1, 0, 0, 0, 6161, 6164, 1, 0, 0, 0, 6162, 6160, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 6166, 1, 0, 0, 0, 6164, 6162, 1, 0, 0, 0, 6165, 6156, 1, 0, 0, 0, 6165, 6166, 1, 0, 0, 0, 6166, 545, 1, 0, 0, 0, 6167, 6168, 7, 92, 0, 0, 6168, 6169, 3, 704, 352, 0, 6169, 6170, 5, 857, 0, 0, 6170, 6171, 3, 806, 403, 0, 6171, 547, 1, 0, 0, 0, 6172, 6173, 5, 673, 0, 0, 6173, 6174, 5, 344, 0, 0, 6174, 6179, 3, 708, 354, 0, 6175, 6176, 5, 868, 0, 0, 6176, 6178, 3, 708, 354, 0, 6177, 6175, 1, 0, 0, 0, 6178, 6181, 1, 0, 0, 0, 6179, 6177, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 549, 1, 0, 0, 0, 6181, 6179, 1, 0, 0, 0, 6182, 6183, 5, 432, 0, 0, 6183, 6184, 5, 534, 0, 0, 6184, 6185, 3, 708, 354, 0, 6185, 6186, 5, 603, 0, 0, 6186, 6187, 5, 882, 0, 0, 6187, 551, 1, 0, 0, 0, 6188, 6189, 5, 673, 0, 0, 6189, 6190, 5, 534, 0, 0, 6190, 6191, 3, 708, 354, 0, 6191, 553, 1, 0, 0, 0, 6192, 6193, 5, 713, 0, 0, 6193, 6194, 5, 450, 0, 0, 6194, 6195, 5, 360, 0, 0, 6195, 6197, 5, 367, 0, 0, 6196, 6198, 5, 857, 0, 0, 6197, 6196, 1, 0, 0, 0, 6197, 6198, 1, 0, 0, 0, 6198, 6199, 1, 0, 0, 0, 6199, 6223, 5, 882, 0, 0, 6200, 6201, 5, 713, 0, 0, 6201, 6202, 5, 433, 0, 0, 6202, 6203, 5, 68, 0, 0, 6203, 6204, 3, 678, 339, 0, 6204, 6205, 5, 423, 0, 0, 6205, 6206, 5, 20, 0, 0, 6206, 6213, 5, 882, 0, 0, 6207, 6208, 5, 360, 0, 0, 6208, 6210, 5, 367, 0, 0, 6209, 6211, 5, 857, 0, 0, 6210, 6209, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6212, 1, 0, 0, 0, 6212, 6214, 5, 882, 0, 0, 6213, 6207, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 6220, 1, 0, 0, 0, 6215, 6217, 5, 144, 0, 0, 6216, 6218, 5, 502, 0, 0, 6217, 6216, 1, 0, 0, 0, 6217, 6218, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6221, 5, 169, 0, 0, 6220, 6215, 1, 0, 0, 0, 6220, 6221, 1, 0, 0, 0, 6221, 6223, 1, 0, 0, 0, 6222, 6192, 1, 0, 0, 0, 6222, 6200, 1, 0, 0, 0, 6223, 555, 1, 0, 0, 0, 6224, 6225, 5, 155, 0, 0, 6225, 6226, 3, 560, 280, 0, 6226, 6229, 7, 93, 0, 0, 6227, 6230, 3, 806, 403, 0, 6228, 6230, 5, 119, 0, 0, 6229, 6227, 1, 0, 0, 0, 6229, 6228, 1, 0, 0, 0, 6230, 6240, 1, 0, 0, 0, 6231, 6232, 5, 868, 0, 0, 6232, 6233, 3, 560, 280, 0, 6233, 6236, 7, 93, 0, 0, 6234, 6237, 3, 806, 403, 0, 6235, 6237, 5, 119, 0, 0, 6236, 6234, 1, 0, 0, 0, 6236, 6235, 1, 0, 0, 0, 6237, 6239, 1, 0, 0, 0, 6238, 6231, 1, 0, 0, 0, 6239, 6242, 1, 0, 0, 0, 6240, 6238, 1, 0, 0, 0, 6240, 6241, 1, 0, 0, 0, 6241, 6277, 1, 0, 0, 0, 6242, 6240, 1, 0, 0, 0, 6243, 6244, 5, 155, 0, 0, 6244, 6247, 3, 54, 27, 0, 6245, 6248, 3, 690, 345, 0, 6246, 6248, 5, 42, 0, 0, 6247, 6245, 1, 0, 0, 0, 6247, 6246, 1, 0, 0, 0, 6248, 6277, 1, 0, 0, 0, 6249, 6250, 5, 155, 0, 0, 6250, 6257, 5, 497, 0, 0, 6251, 6254, 3, 690, 345, 0, 6252, 6253, 5, 28, 0, 0, 6253, 6255, 3, 692, 346, 0, 6254, 6252, 1, 0, 0, 0, 6254, 6255, 1, 0, 0, 0, 6255, 6258, 1, 0, 0, 0, 6256, 6258, 5, 42, 0, 0, 6257, 6251, 1, 0, 0, 0, 6257, 6256, 1, 0, 0, 0, 6258, 6277, 1, 0, 0, 0, 6259, 6277, 3, 490, 245, 0, 6260, 6277, 3, 342, 171, 0, 6261, 6277, 3, 340, 170, 0, 6262, 6263, 5, 155, 0, 0, 6263, 6264, 3, 704, 352, 0, 6264, 6265, 7, 93, 0, 0, 6265, 6273, 3, 806, 403, 0, 6266, 6267, 5, 868, 0, 0, 6267, 6268, 3, 704, 352, 0, 6268, 6269, 7, 93, 0, 0, 6269, 6270, 3, 806, 403, 0, 6270, 6272, 1, 0, 0, 0, 6271, 6266, 1, 0, 0, 0, 6272, 6275, 1, 0, 0, 0, 6273, 6271, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6277, 1, 0, 0, 0, 6275, 6273, 1, 0, 0, 0, 6276, 6224, 1, 0, 0, 0, 6276, 6243, 1, 0, 0, 0, 6276, 6249, 1, 0, 0, 0, 6276, 6259, 1, 0, 0, 0, 6276, 6260, 1, 0, 0, 0, 6276, 6261, 1, 0, 0, 0, 6276, 6262, 1, 0, 0, 0, 6277, 557, 1, 0, 0, 0, 6278, 6279, 5, 157, 0, 0, 6279, 6280, 7, 62, 0, 0, 6280, 6463, 5, 452, 0, 0, 6281, 6282, 5, 157, 0, 0, 6282, 6283, 7, 94, 0, 0, 6283, 6286, 5, 386, 0, 0, 6284, 6285, 5, 80, 0, 0, 6285, 6287, 5, 882, 0, 0, 6286, 6284, 1, 0, 0, 0, 6286, 6287, 1, 0, 0, 0, 6287, 6290, 1, 0, 0, 0, 6288, 6289, 5, 68, 0, 0, 6289, 6291, 3, 714, 357, 0, 6290, 6288, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6299, 1, 0, 0, 0, 6292, 6296, 5, 100, 0, 0, 6293, 6294, 3, 714, 357, 0, 6294, 6295, 5, 868, 0, 0, 6295, 6297, 1, 0, 0, 0, 6296, 6293, 1, 0, 0, 0, 6296, 6297, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6300, 3, 714, 357, 0, 6299, 6292, 1, 0, 0, 0, 6299, 6300, 1, 0, 0, 0, 6300, 6302, 1, 0, 0, 0, 6301, 6303, 3, 390, 195, 0, 6302, 6301, 1, 0, 0, 0, 6302, 6303, 1, 0, 0, 0, 6303, 6463, 1, 0, 0, 0, 6304, 6305, 5, 157, 0, 0, 6305, 6307, 3, 562, 281, 0, 6306, 6308, 3, 564, 282, 0, 6307, 6306, 1, 0, 0, 0, 6307, 6308, 1, 0, 0, 0, 6308, 6463, 1, 0, 0, 0, 6309, 6311, 5, 157, 0, 0, 6310, 6312, 5, 392, 0, 0, 6311, 6310, 1, 0, 0, 0, 6311, 6312, 1, 0, 0, 0, 6312, 6314, 1, 0, 0, 0, 6313, 6315, 5, 408, 0, 0, 6314, 6313, 1, 0, 0, 0, 6314, 6315, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6317, 7, 46, 0, 0, 6317, 6318, 7, 95, 0, 0, 6318, 6321, 3, 654, 327, 0, 6319, 6320, 7, 95, 0, 0, 6320, 6322, 3, 630, 315, 0, 6321, 6319, 1, 0, 0, 0, 6321, 6322, 1, 0, 0, 0, 6322, 6324, 1, 0, 0, 0, 6323, 6325, 3, 564, 282, 0, 6324, 6323, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6463, 1, 0, 0, 0, 6326, 6327, 5, 157, 0, 0, 6327, 6328, 5, 34, 0, 0, 6328, 6330, 7, 0, 0, 0, 6329, 6331, 3, 762, 381, 0, 6330, 6329, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6332, 1, 0, 0, 0, 6332, 6463, 3, 628, 314, 0, 6333, 6334, 5, 157, 0, 0, 6334, 6335, 5, 34, 0, 0, 6335, 6336, 7, 96, 0, 0, 6336, 6463, 3, 704, 352, 0, 6337, 6338, 5, 157, 0, 0, 6338, 6339, 5, 34, 0, 0, 6339, 6340, 5, 409, 0, 0, 6340, 6463, 3, 632, 316, 0, 6341, 6342, 5, 157, 0, 0, 6342, 6343, 5, 34, 0, 0, 6343, 6344, 5, 684, 0, 0, 6344, 6463, 3, 636, 318, 0, 6345, 6346, 5, 157, 0, 0, 6346, 6347, 5, 34, 0, 0, 6347, 6348, 5, 173, 0, 0, 6348, 6463, 3, 650, 325, 0, 6349, 6350, 5, 157, 0, 0, 6350, 6351, 5, 34, 0, 0, 6351, 6352, 5, 678, 0, 0, 6352, 6463, 3, 686, 343, 0, 6353, 6354, 5, 157, 0, 0, 6354, 6355, 5, 380, 0, 0, 6355, 6356, 3, 694, 347, 0, 6356, 6357, 7, 97, 0, 0, 6357, 6463, 1, 0, 0, 0, 6358, 6359, 5, 157, 0, 0, 6359, 6463, 3, 566, 283, 0, 6360, 6361, 5, 157, 0, 0, 6361, 6369, 7, 98, 0, 0, 6362, 6366, 5, 100, 0, 0, 6363, 6364, 3, 714, 357, 0, 6364, 6365, 5, 868, 0, 0, 6365, 6367, 1, 0, 0, 0, 6366, 6363, 1, 0, 0, 0, 6366, 6367, 1, 0, 0, 0, 6367, 6368, 1, 0, 0, 0, 6368, 6370, 3, 714, 357, 0, 6369, 6362, 1, 0, 0, 0, 6369, 6370, 1, 0, 0, 0, 6370, 6463, 1, 0, 0, 0, 6371, 6372, 5, 157, 0, 0, 6372, 6373, 5, 262, 0, 0, 6373, 6374, 5, 866, 0, 0, 6374, 6375, 5, 850, 0, 0, 6375, 6376, 5, 867, 0, 0, 6376, 6463, 7, 98, 0, 0, 6377, 6378, 5, 157, 0, 0, 6378, 6381, 3, 568, 284, 0, 6379, 6380, 7, 95, 0, 0, 6380, 6382, 3, 630, 315, 0, 6381, 6379, 1, 0, 0, 0, 6381, 6382, 1, 0, 0, 0, 6382, 6384, 1, 0, 0, 0, 6383, 6385, 3, 564, 282, 0, 6384, 6383, 1, 0, 0, 0, 6384, 6385, 1, 0, 0, 0, 6385, 6463, 1, 0, 0, 0, 6386, 6387, 5, 157, 0, 0, 6387, 6388, 5, 132, 0, 0, 6388, 6389, 5, 336, 0, 0, 6389, 6463, 3, 704, 352, 0, 6390, 6391, 5, 157, 0, 0, 6391, 6392, 5, 409, 0, 0, 6392, 6393, 5, 336, 0, 0, 6393, 6463, 3, 634, 317, 0, 6394, 6395, 5, 157, 0, 0, 6395, 6402, 5, 414, 0, 0, 6396, 6397, 5, 65, 0, 0, 6397, 6400, 3, 658, 329, 0, 6398, 6399, 5, 188, 0, 0, 6399, 6401, 3, 656, 328, 0, 6400, 6398, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6403, 1, 0, 0, 0, 6402, 6396, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6463, 1, 0, 0, 0, 6404, 6406, 5, 157, 0, 0, 6405, 6407, 5, 392, 0, 0, 6406, 6405, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6409, 7, 99, 0, 0, 6409, 6410, 7, 95, 0, 0, 6410, 6413, 3, 654, 327, 0, 6411, 6412, 7, 95, 0, 0, 6412, 6414, 3, 630, 315, 0, 6413, 6411, 1, 0, 0, 0, 6413, 6414, 1, 0, 0, 0, 6414, 6417, 1, 0, 0, 0, 6415, 6416, 5, 192, 0, 0, 6416, 6418, 3, 806, 403, 0, 6417, 6415, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6463, 1, 0, 0, 0, 6419, 6420, 5, 157, 0, 0, 6420, 6421, 5, 516, 0, 0, 6421, 6424, 5, 752, 0, 0, 6422, 6423, 7, 95, 0, 0, 6423, 6425, 3, 630, 315, 0, 6424, 6422, 1, 0, 0, 0, 6424, 6425, 1, 0, 0, 0, 6425, 6427, 1, 0, 0, 0, 6426, 6428, 3, 564, 282, 0, 6427, 6426, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6463, 1, 0, 0, 0, 6429, 6430, 5, 157, 0, 0, 6430, 6439, 5, 545, 0, 0, 6431, 6436, 3, 570, 285, 0, 6432, 6433, 5, 868, 0, 0, 6433, 6435, 3, 570, 285, 0, 6434, 6432, 1, 0, 0, 0, 6435, 6438, 1, 0, 0, 0, 6436, 6434, 1, 0, 0, 0, 6436, 6437, 1, 0, 0, 0, 6437, 6440, 1, 0, 0, 0, 6438, 6436, 1, 0, 0, 0, 6439, 6431, 1, 0, 0, 0, 6439, 6440, 1, 0, 0, 0, 6440, 6444, 1, 0, 0, 0, 6441, 6442, 5, 65, 0, 0, 6442, 6443, 5, 548, 0, 0, 6443, 6445, 3, 714, 357, 0, 6444, 6441, 1, 0, 0, 0, 6444, 6445, 1, 0, 0, 0, 6445, 6452, 1, 0, 0, 0, 6446, 6447, 5, 100, 0, 0, 6447, 6450, 3, 714, 357, 0, 6448, 6449, 5, 509, 0, 0, 6449, 6451, 3, 714, 357, 0, 6450, 6448, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6453, 1, 0, 0, 0, 6452, 6446, 1, 0, 0, 0, 6452, 6453, 1, 0, 0, 0, 6453, 6463, 1, 0, 0, 0, 6454, 6455, 5, 157, 0, 0, 6455, 6456, 7, 63, 0, 0, 6456, 6458, 5, 645, 0, 0, 6457, 6459, 3, 390, 195, 0, 6458, 6457, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 6463, 1, 0, 0, 0, 6460, 6461, 5, 157, 0, 0, 6461, 6463, 5, 564, 0, 0, 6462, 6278, 1, 0, 0, 0, 6462, 6281, 1, 0, 0, 0, 6462, 6304, 1, 0, 0, 0, 6462, 6309, 1, 0, 0, 0, 6462, 6326, 1, 0, 0, 0, 6462, 6333, 1, 0, 0, 0, 6462, 6337, 1, 0, 0, 0, 6462, 6341, 1, 0, 0, 0, 6462, 6345, 1, 0, 0, 0, 6462, 6349, 1, 0, 0, 0, 6462, 6353, 1, 0, 0, 0, 6462, 6358, 1, 0, 0, 0, 6462, 6360, 1, 0, 0, 0, 6462, 6371, 1, 0, 0, 0, 6462, 6377, 1, 0, 0, 0, 6462, 6386, 1, 0, 0, 0, 6462, 6390, 1, 0, 0, 0, 6462, 6394, 1, 0, 0, 0, 6462, 6404, 1, 0, 0, 0, 6462, 6419, 1, 0, 0, 0, 6462, 6429, 1, 0, 0, 0, 6462, 6454, 1, 0, 0, 0, 6462, 6460, 1, 0, 0, 0, 6463, 559, 1, 0, 0, 0, 6464, 6475, 5, 892, 0, 0, 6465, 6475, 5, 893, 0, 0, 6466, 6467, 5, 870, 0, 0, 6467, 6469, 5, 870, 0, 0, 6468, 6466, 1, 0, 0, 0, 6468, 6469, 1, 0, 0, 0, 6469, 6470, 1, 0, 0, 0, 6470, 6472, 7, 100, 0, 0, 6471, 6468, 1, 0, 0, 0, 6471, 6472, 1, 0, 0, 0, 6472, 6473, 1, 0, 0, 0, 6473, 6475, 3, 708, 354, 0, 6474, 6464, 1, 0, 0, 0, 6474, 6465, 1, 0, 0, 0, 6474, 6471, 1, 0, 0, 0, 6475, 561, 1, 0, 0, 0, 6476, 6477, 5, 26, 0, 0, 6477, 6491, 5, 155, 0, 0, 6478, 6491, 5, 823, 0, 0, 6479, 6491, 5, 824, 0, 0, 6480, 6491, 5, 40, 0, 0, 6481, 6491, 5, 153, 0, 0, 6482, 6483, 5, 409, 0, 0, 6483, 6491, 5, 645, 0, 0, 6484, 6485, 5, 132, 0, 0, 6485, 6491, 5, 645, 0, 0, 6486, 6488, 7, 61, 0, 0, 6487, 6486, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6489, 1, 0, 0, 0, 6489, 6491, 7, 101, 0, 0, 6490, 6476, 1, 0, 0, 0, 6490, 6478, 1, 0, 0, 0, 6490, 6479, 1, 0, 0, 0, 6490, 6480, 1, 0, 0, 0, 6490, 6481, 1, 0, 0, 0, 6490, 6482, 1, 0, 0, 0, 6490, 6484, 1, 0, 0, 0, 6490, 6487, 1, 0, 0, 0, 6491, 563, 1, 0, 0, 0, 6492, 6493, 5, 99, 0, 0, 6493, 6497, 5, 882, 0, 0, 6494, 6495, 5, 192, 0, 0, 6495, 6497, 3, 806, 403, 0, 6496, 6492, 1, 0, 0, 0, 6496, 6494, 1, 0, 0, 0, 6497, 565, 1, 0, 0, 0, 6498, 6500, 5, 647, 0, 0, 6499, 6498, 1, 0, 0, 0, 6499, 6500, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6516, 5, 381, 0, 0, 6502, 6503, 5, 453, 0, 0, 6503, 6516, 5, 645, 0, 0, 6504, 6516, 5, 536, 0, 0, 6505, 6516, 5, 734, 0, 0, 6506, 6508, 5, 408, 0, 0, 6507, 6506, 1, 0, 0, 0, 6507, 6508, 1, 0, 0, 0, 6508, 6509, 1, 0, 0, 0, 6509, 6516, 5, 544, 0, 0, 6510, 6516, 5, 546, 0, 0, 6511, 6512, 5, 598, 0, 0, 6512, 6516, 5, 422, 0, 0, 6513, 6516, 5, 312, 0, 0, 6514, 6516, 5, 356, 0, 0, 6515, 6499, 1, 0, 0, 0, 6515, 6502, 1, 0, 0, 0, 6515, 6504, 1, 0, 0, 0, 6515, 6505, 1, 0, 0, 0, 6515, 6507, 1, 0, 0, 0, 6515, 6510, 1, 0, 0, 0, 6515, 6511, 1, 0, 0, 0, 6515, 6513, 1, 0, 0, 0, 6515, 6514, 1, 0, 0, 0, 6516, 567, 1, 0, 0, 0, 6517, 6529, 5, 386, 0, 0, 6518, 6519, 5, 173, 0, 0, 6519, 6529, 5, 645, 0, 0, 6520, 6522, 5, 392, 0, 0, 6521, 6520, 1, 0, 0, 0, 6521, 6522, 1, 0, 0, 0, 6522, 6524, 1, 0, 0, 0, 6523, 6525, 5, 408, 0, 0, 6524, 6523, 1, 0, 0, 0, 6524, 6525, 1, 0, 0, 0, 6525, 6526, 1, 0, 0, 0, 6526, 6529, 5, 752, 0, 0, 6527, 6529, 5, 667, 0, 0, 6528, 6517, 1, 0, 0, 0, 6528, 6518, 1, 0, 0, 0, 6528, 6521, 1, 0, 0, 0, 6528, 6527, 1, 0, 0, 0, 6529, 569, 1, 0, 0, 0, 6530, 6543, 5, 7, 0, 0, 6531, 6532, 5, 320, 0, 0, 6532, 6543, 5, 437, 0, 0, 6533, 6534, 5, 355, 0, 0, 6534, 6543, 5, 656, 0, 0, 6535, 6543, 5, 358, 0, 0, 6536, 6543, 5, 439, 0, 0, 6537, 6543, 5, 802, 0, 0, 6538, 6539, 5, 521, 0, 0, 6539, 6543, 5, 397, 0, 0, 6540, 6543, 5, 605, 0, 0, 6541, 6543, 5, 655, 0, 0, 6542, 6530, 1, 0, 0, 0, 6542, 6531, 1, 0, 0, 0, 6542, 6533, 1, 0, 0, 0, 6542, 6535, 1, 0, 0, 0, 6542, 6536, 1, 0, 0, 0, 6542, 6537, 1, 0, 0, 0, 6542, 6538, 1, 0, 0, 0, 6542, 6540, 1, 0, 0, 0, 6542, 6541, 1, 0, 0, 0, 6543, 571, 1, 0, 0, 0, 6544, 6545, 5, 318, 0, 0, 6545, 6546, 5, 882, 0, 0, 6546, 573, 1, 0, 0, 0, 6547, 6548, 5, 324, 0, 0, 6548, 6566, 5, 82, 0, 0, 6549, 6554, 3, 594, 297, 0, 6550, 6551, 5, 868, 0, 0, 6551, 6553, 3, 594, 297, 0, 6552, 6550, 1, 0, 0, 0, 6553, 6556, 1, 0, 0, 0, 6554, 6552, 1, 0, 0, 0, 6554, 6555, 1, 0, 0, 0, 6555, 6567, 1, 0, 0, 0, 6556, 6554, 1, 0, 0, 0, 6557, 6558, 3, 654, 327, 0, 6558, 6559, 5, 130, 0, 0, 6559, 6562, 5, 866, 0, 0, 6560, 6563, 3, 672, 336, 0, 6561, 6563, 5, 7, 0, 0, 6562, 6560, 1, 0, 0, 0, 6562, 6561, 1, 0, 0, 0, 6563, 6564, 1, 0, 0, 0, 6564, 6565, 5, 867, 0, 0, 6565, 6567, 1, 0, 0, 0, 6566, 6549, 1, 0, 0, 0, 6566, 6557, 1, 0, 0, 0, 6567, 6568, 1, 0, 0, 0, 6568, 6569, 5, 80, 0, 0, 6569, 6570, 3, 630, 315, 0, 6570, 575, 1, 0, 0, 0, 6571, 6573, 5, 404, 0, 0, 6572, 6574, 3, 538, 269, 0, 6573, 6572, 1, 0, 0, 0, 6573, 6574, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 6580, 3, 596, 298, 0, 6576, 6577, 5, 868, 0, 0, 6577, 6579, 3, 596, 298, 0, 6578, 6576, 1, 0, 0, 0, 6579, 6582, 1, 0, 0, 0, 6580, 6578, 1, 0, 0, 0, 6580, 6581, 1, 0, 0, 0, 6581, 577, 1, 0, 0, 0, 6582, 6580, 1, 0, 0, 0, 6583, 6585, 5, 94, 0, 0, 6584, 6586, 7, 102, 0, 0, 6585, 6584, 1, 0, 0, 0, 6585, 6586, 1, 0, 0, 0, 6586, 6587, 1, 0, 0, 0, 6587, 6588, 3, 806, 403, 0, 6588, 579, 1, 0, 0, 0, 6589, 6590, 5, 103, 0, 0, 6590, 6591, 5, 82, 0, 0, 6591, 6592, 5, 88, 0, 0, 6592, 6593, 5, 324, 0, 0, 6593, 6598, 3, 600, 300, 0, 6594, 6595, 5, 868, 0, 0, 6595, 6597, 3, 600, 300, 0, 6596, 6594, 1, 0, 0, 0, 6597, 6600, 1, 0, 0, 0, 6598, 6596, 1, 0, 0, 0, 6598, 6599, 1, 0, 0, 0, 6599, 581, 1, 0, 0, 0, 6600, 6598, 1, 0, 0, 0, 6601, 6602, 5, 575, 0, 0, 6602, 6607, 3, 584, 292, 0, 6603, 6604, 5, 868, 0, 0, 6604, 6606, 3, 584, 292, 0, 6605, 6603, 1, 0, 0, 0, 6606, 6609, 1, 0, 0, 0, 6607, 6605, 1, 0, 0, 0, 6607, 6608, 1, 0, 0, 0, 6608, 583, 1, 0, 0, 0, 6609, 6607, 1, 0, 0, 0, 6610, 6616, 5, 453, 0, 0, 6611, 6616, 5, 563, 0, 0, 6612, 6613, 5, 548, 0, 0, 6613, 6616, 5, 324, 0, 0, 6614, 6616, 5, 598, 0, 0, 6615, 6610, 1, 0, 0, 0, 6615, 6611, 1, 0, 0, 0, 6615, 6612, 1, 0, 0, 0, 6615, 6614, 1, 0, 0, 0, 6616, 585, 1, 0, 0, 0, 6617, 6618, 5, 575, 0, 0, 6618, 6623, 5, 531, 0, 0, 6619, 6621, 3, 760, 380, 0, 6620, 6619, 1, 0, 0, 0, 6620, 6621, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 6624, 3, 708, 354, 0, 6623, 6620, 1, 0, 0, 0, 6623, 6624, 1, 0, 0, 0, 6624, 587, 1, 0, 0, 0, 6625, 6626, 5, 575, 0, 0, 6626, 6628, 7, 63, 0, 0, 6627, 6629, 5, 7, 0, 0, 6628, 6627, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6631, 1, 0, 0, 0, 6630, 6632, 3, 390, 195, 0, 6631, 6630, 1, 0, 0, 0, 6631, 6632, 1, 0, 0, 0, 6632, 589, 1, 0, 0, 0, 6633, 6634, 5, 576, 0, 0, 6634, 591, 1, 0, 0, 0, 6635, 6636, 5, 749, 0, 0, 6636, 593, 1, 0, 0, 0, 6637, 6643, 3, 654, 327, 0, 6638, 6639, 7, 18, 0, 0, 6639, 6640, 5, 866, 0, 0, 6640, 6641, 3, 642, 321, 0, 6641, 6642, 5, 867, 0, 0, 6642, 6644, 1, 0, 0, 0, 6643, 6638, 1, 0, 0, 0, 6643, 6644, 1, 0, 0, 0, 6644, 595, 1, 0, 0, 0, 6645, 6664, 5, 366, 0, 0, 6646, 6664, 5, 422, 0, 0, 6647, 6649, 7, 103, 0, 0, 6648, 6647, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6650, 1, 0, 0, 0, 6650, 6664, 5, 452, 0, 0, 6651, 6664, 5, 517, 0, 0, 6652, 6664, 5, 734, 0, 0, 6653, 6654, 5, 548, 0, 0, 6654, 6664, 5, 324, 0, 0, 6655, 6664, 5, 645, 0, 0, 6656, 6664, 5, 680, 0, 0, 6657, 6661, 5, 752, 0, 0, 6658, 6659, 5, 194, 0, 0, 6659, 6660, 5, 135, 0, 0, 6660, 6662, 5, 104, 0, 0, 6661, 6658, 1, 0, 0, 0, 6661, 6662, 1, 0, 0, 0, 6662, 6664, 1, 0, 0, 0, 6663, 6645, 1, 0, 0, 0, 6663, 6646, 1, 0, 0, 0, 6663, 6648, 1, 0, 0, 0, 6663, 6651, 1, 0, 0, 0, 6663, 6652, 1, 0, 0, 0, 6663, 6653, 1, 0, 0, 0, 6663, 6655, 1, 0, 0, 0, 6663, 6656, 1, 0, 0, 0, 6663, 6657, 1, 0, 0, 0, 6664, 6678, 1, 0, 0, 0, 6665, 6666, 5, 556, 0, 0, 6666, 6668, 5, 452, 0, 0, 6667, 6669, 3, 390, 195, 0, 6668, 6667, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6678, 1, 0, 0, 0, 6670, 6672, 7, 60, 0, 0, 6671, 6673, 3, 652, 326, 0, 6672, 6671, 1, 0, 0, 0, 6672, 6673, 1, 0, 0, 0, 6673, 6675, 1, 0, 0, 0, 6674, 6676, 3, 598, 299, 0, 6675, 6674, 1, 0, 0, 0, 6675, 6676, 1, 0, 0, 0, 6676, 6678, 1, 0, 0, 0, 6677, 6663, 1, 0, 0, 0, 6677, 6665, 1, 0, 0, 0, 6677, 6670, 1, 0, 0, 0, 6678, 597, 1, 0, 0, 0, 6679, 6680, 5, 194, 0, 0, 6680, 6681, 5, 135, 0, 0, 6681, 6685, 5, 104, 0, 0, 6682, 6683, 5, 65, 0, 0, 6683, 6685, 5, 391, 0, 0, 6684, 6679, 1, 0, 0, 0, 6684, 6682, 1, 0, 0, 0, 6685, 599, 1, 0, 0, 0, 6686, 6694, 3, 654, 327, 0, 6687, 6688, 5, 130, 0, 0, 6688, 6691, 5, 866, 0, 0, 6689, 6692, 3, 672, 336, 0, 6690, 6692, 5, 7, 0, 0, 6691, 6689, 1, 0, 0, 0, 6691, 6690, 1, 0, 0, 0, 6692, 6693, 1, 0, 0, 0, 6693, 6695, 5, 867, 0, 0, 6694, 6687, 1, 0, 0, 0, 6694, 6695, 1, 0, 0, 0, 6695, 6703, 1, 0, 0, 0, 6696, 6698, 7, 18, 0, 0, 6697, 6696, 1, 0, 0, 0, 6697, 6698, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 5, 866, 0, 0, 6700, 6701, 3, 642, 321, 0, 6701, 6702, 5, 867, 0, 0, 6702, 6704, 1, 0, 0, 0, 6703, 6697, 1, 0, 0, 0, 6703, 6704, 1, 0, 0, 0, 6704, 6707, 1, 0, 0, 0, 6705, 6706, 5, 79, 0, 0, 6706, 6708, 5, 446, 0, 0, 6707, 6705, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 601, 1, 0, 0, 0, 6709, 6710, 7, 104, 0, 0, 6710, 6713, 3, 654, 327, 0, 6711, 6714, 3, 664, 332, 0, 6712, 6714, 5, 882, 0, 0, 6713, 6711, 1, 0, 0, 0, 6713, 6712, 1, 0, 0, 0, 6713, 6714, 1, 0, 0, 0, 6714, 603, 1, 0, 0, 0, 6715, 6721, 7, 104, 0, 0, 6716, 6722, 5, 392, 0, 0, 6717, 6722, 5, 528, 0, 0, 6718, 6719, 5, 826, 0, 0, 6719, 6720, 5, 857, 0, 0, 6720, 6722, 7, 105, 0, 0, 6721, 6716, 1, 0, 0, 0, 6721, 6717, 1, 0, 0, 0, 6721, 6718, 1, 0, 0, 0, 6721, 6722, 1, 0, 0, 0, 6722, 6723, 1, 0, 0, 0, 6723, 6724, 3, 626, 313, 0, 6724, 605, 1, 0, 0, 0, 6725, 6726, 7, 104, 0, 0, 6726, 6730, 5, 10, 0, 0, 6727, 6728, 5, 826, 0, 0, 6728, 6729, 5, 857, 0, 0, 6729, 6731, 5, 666, 0, 0, 6730, 6727, 1, 0, 0, 0, 6730, 6731, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6733, 3, 204, 102, 0, 6733, 607, 1, 0, 0, 0, 6734, 6735, 5, 419, 0, 0, 6735, 6736, 5, 882, 0, 0, 6736, 609, 1, 0, 0, 0, 6737, 6738, 5, 187, 0, 0, 6738, 6739, 3, 630, 315, 0, 6739, 611, 1, 0, 0, 0, 6740, 6748, 5, 158, 0, 0, 6741, 6743, 5, 164, 0, 0, 6742, 6744, 5, 682, 0, 0, 6743, 6742, 1, 0, 0, 0, 6743, 6744, 1, 0, 0, 0, 6744, 6745, 1, 0, 0, 0, 6745, 6749, 3, 718, 359, 0, 6746, 6749, 5, 889, 0, 0, 6747, 6749, 5, 890, 0, 0, 6748, 6741, 1, 0, 0, 0, 6748, 6746, 1, 0, 0, 0, 6748, 6747, 1, 0, 0, 0, 6749, 6759, 1, 0, 0, 0, 6750, 6751, 5, 155, 0, 0, 6751, 6756, 3, 616, 308, 0, 6752, 6753, 5, 868, 0, 0, 6753, 6755, 3, 616, 308, 0, 6754, 6752, 1, 0, 0, 0, 6755, 6758, 1, 0, 0, 0, 6756, 6754, 1, 0, 0, 0, 6756, 6757, 1, 0, 0, 0, 6757, 6760, 1, 0, 0, 0, 6758, 6756, 1, 0, 0, 0, 6759, 6750, 1, 0, 0, 0, 6759, 6760, 1, 0, 0, 0, 6760, 613, 1, 0, 0, 0, 6761, 6769, 5, 145, 0, 0, 6762, 6764, 5, 164, 0, 0, 6763, 6765, 5, 682, 0, 0, 6764, 6763, 1, 0, 0, 0, 6764, 6765, 1, 0, 0, 0, 6765, 6766, 1, 0, 0, 0, 6766, 6770, 3, 718, 359, 0, 6767, 6770, 5, 889, 0, 0, 6768, 6770, 5, 890, 0, 0, 6769, 6762, 1, 0, 0, 0, 6769, 6767, 1, 0, 0, 0, 6769, 6768, 1, 0, 0, 0, 6769, 6770, 1, 0, 0, 0, 6770, 6780, 1, 0, 0, 0, 6771, 6772, 5, 155, 0, 0, 6772, 6777, 3, 616, 308, 0, 6773, 6774, 5, 868, 0, 0, 6774, 6776, 3, 616, 308, 0, 6775, 6773, 1, 0, 0, 0, 6776, 6779, 1, 0, 0, 0, 6777, 6775, 1, 0, 0, 0, 6777, 6778, 1, 0, 0, 0, 6778, 6781, 1, 0, 0, 0, 6779, 6777, 1, 0, 0, 0, 6780, 6771, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 615, 1, 0, 0, 0, 6782, 6783, 7, 106, 0, 0, 6783, 6788, 5, 857, 0, 0, 6784, 6789, 3, 718, 359, 0, 6785, 6789, 5, 883, 0, 0, 6786, 6789, 3, 688, 344, 0, 6787, 6789, 3, 710, 355, 0, 6788, 6784, 1, 0, 0, 0, 6788, 6785, 1, 0, 0, 0, 6788, 6786, 1, 0, 0, 0, 6788, 6787, 1, 0, 0, 0, 6789, 617, 1, 0, 0, 0, 6790, 6792, 5, 194, 0, 0, 6791, 6793, 5, 552, 0, 0, 6792, 6791, 1, 0, 0, 0, 6792, 6793, 1, 0, 0, 0, 6793, 6794, 1, 0, 0, 0, 6794, 6799, 3, 48, 24, 0, 6795, 6796, 5, 868, 0, 0, 6796, 6798, 3, 48, 24, 0, 6797, 6795, 1, 0, 0, 0, 6798, 6801, 1, 0, 0, 0, 6799, 6797, 1, 0, 0, 0, 6799, 6800, 1, 0, 0, 0, 6800, 619, 1, 0, 0, 0, 6801, 6799, 1, 0, 0, 0, 6802, 6803, 5, 173, 0, 0, 6803, 6805, 3, 654, 327, 0, 6804, 6806, 3, 252, 126, 0, 6805, 6804, 1, 0, 0, 0, 6805, 6806, 1, 0, 0, 0, 6806, 6808, 1, 0, 0, 0, 6807, 6809, 3, 318, 159, 0, 6808, 6807, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 621, 1, 0, 0, 0, 6810, 6812, 5, 72, 0, 0, 6811, 6813, 7, 107, 0, 0, 6812, 6811, 1, 0, 0, 0, 6812, 6813, 1, 0, 0, 0, 6813, 6814, 1, 0, 0, 0, 6814, 6846, 5, 48, 0, 0, 6815, 6816, 3, 560, 280, 0, 6816, 6817, 5, 857, 0, 0, 6817, 6825, 7, 108, 0, 0, 6818, 6819, 5, 868, 0, 0, 6819, 6820, 3, 560, 280, 0, 6820, 6821, 5, 857, 0, 0, 6821, 6822, 7, 108, 0, 0, 6822, 6824, 1, 0, 0, 0, 6823, 6818, 1, 0, 0, 0, 6824, 6827, 1, 0, 0, 0, 6825, 6823, 1, 0, 0, 0, 6825, 6826, 1, 0, 0, 0, 6826, 6847, 1, 0, 0, 0, 6827, 6825, 1, 0, 0, 0, 6828, 6831, 5, 30, 0, 0, 6829, 6832, 3, 714, 357, 0, 6830, 6832, 3, 560, 280, 0, 6831, 6829, 1, 0, 0, 0, 6831, 6830, 1, 0, 0, 0, 6832, 6833, 1, 0, 0, 0, 6833, 6834, 3, 560, 280, 0, 6834, 6835, 5, 857, 0, 0, 6835, 6843, 3, 624, 312, 0, 6836, 6837, 5, 868, 0, 0, 6837, 6838, 3, 560, 280, 0, 6838, 6839, 5, 857, 0, 0, 6839, 6840, 3, 624, 312, 0, 6840, 6842, 1, 0, 0, 0, 6841, 6836, 1, 0, 0, 0, 6842, 6845, 1, 0, 0, 0, 6843, 6841, 1, 0, 0, 0, 6843, 6844, 1, 0, 0, 0, 6844, 6847, 1, 0, 0, 0, 6845, 6843, 1, 0, 0, 0, 6846, 6815, 1, 0, 0, 0, 6846, 6828, 1, 0, 0, 0, 6847, 623, 1, 0, 0, 0, 6848, 6849, 7, 109, 0, 0, 6849, 625, 1, 0, 0, 0, 6850, 6856, 3, 204, 102, 0, 6851, 6856, 3, 180, 90, 0, 6852, 6856, 3, 186, 93, 0, 6853, 6856, 3, 202, 101, 0, 6854, 6856, 3, 214, 107, 0, 6855, 6850, 1, 0, 0, 0, 6855, 6851, 1, 0, 0, 0, 6855, 6852, 1, 0, 0, 0, 6855, 6853, 1, 0, 0, 0, 6855, 6854, 1, 0, 0, 0, 6856, 6861, 1, 0, 0, 0, 6857, 6858, 5, 65, 0, 0, 6858, 6859, 5, 349, 0, 0, 6859, 6861, 3, 708, 354, 0, 6860, 6855, 1, 0, 0, 0, 6860, 6857, 1, 0, 0, 0, 6861, 627, 1, 0, 0, 0, 6862, 6863, 3, 704, 352, 0, 6863, 629, 1, 0, 0, 0, 6864, 6865, 3, 704, 352, 0, 6865, 631, 1, 0, 0, 0, 6866, 6867, 3, 704, 352, 0, 6867, 633, 1, 0, 0, 0, 6868, 6869, 3, 704, 352, 0, 6869, 635, 1, 0, 0, 0, 6870, 6871, 3, 704, 352, 0, 6871, 637, 1, 0, 0, 0, 6872, 6873, 3, 704, 352, 0, 6873, 639, 1, 0, 0, 0, 6874, 6875, 3, 708, 354, 0, 6875, 641, 1, 0, 0, 0, 6876, 6881, 3, 644, 322, 0, 6877, 6878, 5, 868, 0, 0, 6878, 6880, 3, 644, 322, 0, 6879, 6877, 1, 0, 0, 0, 6880, 6883, 1, 0, 0, 0, 6881, 6879, 1, 0, 0, 0, 6881, 6882, 1, 0, 0, 0, 6882, 643, 1, 0, 0, 0, 6883, 6881, 1, 0, 0, 0, 6884, 6885, 3, 708, 354, 0, 6885, 645, 1, 0, 0, 0, 6886, 6887, 3, 708, 354, 0, 6887, 647, 1, 0, 0, 0, 6888, 6889, 3, 708, 354, 0, 6889, 649, 1, 0, 0, 0, 6890, 6891, 3, 704, 352, 0, 6891, 651, 1, 0, 0, 0, 6892, 6897, 3, 654, 327, 0, 6893, 6894, 5, 868, 0, 0, 6894, 6896, 3, 654, 327, 0, 6895, 6893, 1, 0, 0, 0, 6896, 6899, 1, 0, 0, 0, 6897, 6895, 1, 0, 0, 0, 6897, 6898, 1, 0, 0, 0, 6898, 653, 1, 0, 0, 0, 6899, 6897, 1, 0, 0, 0, 6900, 6901, 3, 704, 352, 0, 6901, 655, 1, 0, 0, 0, 6902, 6907, 3, 658, 329, 0, 6903, 6904, 5, 868, 0, 0, 6904, 6906, 3, 658, 329, 0, 6905, 6903, 1, 0, 0, 0, 6906, 6909, 1, 0, 0, 0, 6907, 6905, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 657, 1, 0, 0, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6913, 3, 686, 343, 0, 6911, 6913, 3, 708, 354, 0, 6912, 6910, 1, 0, 0, 0, 6912, 6911, 1, 0, 0, 0, 6913, 659, 1, 0, 0, 0, 6914, 6919, 3, 708, 354, 0, 6915, 6917, 3, 712, 356, 0, 6916, 6918, 3, 712, 356, 0, 6917, 6916, 1, 0, 0, 0, 6917, 6918, 1, 0, 0, 0, 6918, 6920, 1, 0, 0, 0, 6919, 6915, 1, 0, 0, 0, 6919, 6920, 1, 0, 0, 0, 6920, 6929, 1, 0, 0, 0, 6921, 6923, 9, 0, 0, 0, 6922, 6921, 1, 0, 0, 0, 6922, 6923, 1, 0, 0, 0, 6923, 6924, 1, 0, 0, 0, 6924, 6926, 3, 712, 356, 0, 6925, 6927, 3, 712, 356, 0, 6926, 6925, 1, 0, 0, 0, 6926, 6927, 1, 0, 0, 0, 6927, 6929, 1, 0, 0, 0, 6928, 6914, 1, 0, 0, 0, 6928, 6922, 1, 0, 0, 0, 6929, 661, 1, 0, 0, 0, 6930, 6935, 3, 664, 332, 0, 6931, 6932, 5, 868, 0, 0, 6932, 6934, 3, 664, 332, 0, 6933, 6931, 1, 0, 0, 0, 6934, 6937, 1, 0, 0, 0, 6935, 6933, 1, 0, 0, 0, 6935, 6936, 1, 0, 0, 0, 6936, 663, 1, 0, 0, 0, 6937, 6935, 1, 0, 0, 0, 6938, 6943, 3, 708, 354, 0, 6939, 6941, 3, 712, 356, 0, 6940, 6942, 3, 712, 356, 0, 6941, 6940, 1, 0, 0, 0, 6941, 6942, 1, 0, 0, 0, 6942, 6944, 1, 0, 0, 0, 6943, 6939, 1, 0, 0, 0, 6943, 6944, 1, 0, 0, 0, 6944, 6953, 1, 0, 0, 0, 6945, 6947, 9, 0, 0, 0, 6946, 6945, 1, 0, 0, 0, 6946, 6947, 1, 0, 0, 0, 6947, 6948, 1, 0, 0, 0, 6948, 6950, 3, 712, 356, 0, 6949, 6951, 3, 712, 356, 0, 6950, 6949, 1, 0, 0, 0, 6950, 6951, 1, 0, 0, 0, 6951, 6953, 1, 0, 0, 0, 6952, 6938, 1, 0, 0, 0, 6952, 6946, 1, 0, 0, 0, 6953, 665, 1, 0, 0, 0, 6954, 6955, 3, 708, 354, 0, 6955, 667, 1, 0, 0, 0, 6956, 6957, 3, 708, 354, 0, 6957, 669, 1, 0, 0, 0, 6958, 6959, 3, 708, 354, 0, 6959, 671, 1, 0, 0, 0, 6960, 6965, 3, 674, 337, 0, 6961, 6962, 5, 868, 0, 0, 6962, 6964, 3, 674, 337, 0, 6963, 6961, 1, 0, 0, 0, 6964, 6967, 1, 0, 0, 0, 6965, 6963, 1, 0, 0, 0, 6965, 6966, 1, 0, 0, 0, 6966, 673, 1, 0, 0, 0, 6967, 6965, 1, 0, 0, 0, 6968, 6969, 3, 708, 354, 0, 6969, 675, 1, 0, 0, 0, 6970, 6975, 3, 708, 354, 0, 6971, 6972, 5, 866, 0, 0, 6972, 6973, 3, 714, 357, 0, 6973, 6974, 5, 867, 0, 0, 6974, 6976, 1, 0, 0, 0, 6975, 6971, 1, 0, 0, 0, 6975, 6976, 1, 0, 0, 0, 6976, 6979, 1, 0, 0, 0, 6977, 6979, 3, 806, 403, 0, 6978, 6970, 1, 0, 0, 0, 6978, 6977, 1, 0, 0, 0, 6979, 6981, 1, 0, 0, 0, 6980, 6982, 7, 54, 0, 0, 6981, 6980, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 677, 1, 0, 0, 0, 6983, 6984, 3, 680, 340, 0, 6984, 6985, 5, 878, 0, 0, 6985, 6986, 3, 714, 357, 0, 6986, 679, 1, 0, 0, 0, 6987, 6988, 3, 682, 341, 0, 6988, 6989, 5, 891, 0, 0, 6989, 681, 1, 0, 0, 0, 6990, 6995, 5, 882, 0, 0, 6991, 6995, 5, 889, 0, 0, 6992, 6995, 5, 704, 0, 0, 6993, 6995, 3, 836, 418, 0, 6994, 6990, 1, 0, 0, 0, 6994, 6991, 1, 0, 0, 0, 6994, 6992, 1, 0, 0, 0, 6994, 6993, 1, 0, 0, 0, 6995, 683, 1, 0, 0, 0, 6996, 6997, 7, 110, 0, 0, 6997, 685, 1, 0, 0, 0, 6998, 7000, 3, 682, 341, 0, 6999, 7001, 3, 684, 342, 0, 7000, 6999, 1, 0, 0, 0, 7000, 7001, 1, 0, 0, 0, 7001, 7004, 1, 0, 0, 0, 7002, 7004, 3, 56, 28, 0, 7003, 6998, 1, 0, 0, 0, 7003, 7002, 1, 0, 0, 0, 7004, 687, 1, 0, 0, 0, 7005, 7006, 7, 111, 0, 0, 7006, 689, 1, 0, 0, 0, 7007, 7012, 5, 228, 0, 0, 7008, 7012, 3, 826, 413, 0, 7009, 7012, 5, 882, 0, 0, 7010, 7012, 5, 879, 0, 0, 7011, 7007, 1, 0, 0, 0, 7011, 7008, 1, 0, 0, 0, 7011, 7009, 1, 0, 0, 0, 7011, 7010, 1, 0, 0, 0, 7012, 691, 1, 0, 0, 0, 7013, 7014, 3, 708, 354, 0, 7014, 693, 1, 0, 0, 0, 7015, 7019, 3, 696, 348, 0, 7016, 7019, 5, 889, 0, 0, 7017, 7019, 5, 882, 0, 0, 7018, 7015, 1, 0, 0, 0, 7018, 7016, 1, 0, 0, 0, 7018, 7017, 1, 0, 0, 0, 7019, 695, 1, 0, 0, 0, 7020, 7021, 7, 112, 0, 0, 7021, 697, 1, 0, 0, 0, 7022, 7023, 3, 714, 357, 0, 7023, 7024, 5, 854, 0, 0, 7024, 7025, 3, 714, 357, 0, 7025, 7026, 5, 854, 0, 0, 7026, 7027, 3, 714, 357, 0, 7027, 7028, 5, 854, 0, 0, 7028, 7029, 3, 714, 357, 0, 7029, 7030, 5, 854, 0, 0, 7030, 7036, 3, 714, 357, 0, 7031, 7032, 5, 878, 0, 0, 7032, 7033, 3, 714, 357, 0, 7033, 7034, 5, 854, 0, 0, 7034, 7035, 3, 714, 357, 0, 7035, 7037, 1, 0, 0, 0, 7036, 7031, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 7036, 1, 0, 0, 0, 7038, 7039, 1, 0, 0, 0, 7039, 699, 1, 0, 0, 0, 7040, 7047, 3, 702, 351, 0, 7041, 7042, 5, 868, 0, 0, 7042, 7045, 3, 702, 351, 0, 7043, 7044, 5, 868, 0, 0, 7044, 7046, 3, 714, 357, 0, 7045, 7043, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 7048, 1, 0, 0, 0, 7047, 7041, 1, 0, 0, 0, 7047, 7048, 1, 0, 0, 0, 7048, 701, 1, 0, 0, 0, 7049, 7057, 5, 882, 0, 0, 7050, 7057, 5, 887, 0, 0, 7051, 7053, 5, 884, 0, 0, 7052, 7051, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7052, 1, 0, 0, 0, 7054, 7055, 1, 0, 0, 0, 7055, 7057, 1, 0, 0, 0, 7056, 7049, 1, 0, 0, 0, 7056, 7050, 1, 0, 0, 0, 7056, 7052, 1, 0, 0, 0, 7057, 703, 1, 0, 0, 0, 7058, 7060, 3, 708, 354, 0, 7059, 7061, 3, 712, 356, 0, 7060, 7059, 1, 0, 0, 0, 7060, 7061, 1, 0, 0, 0, 7061, 705, 1, 0, 0, 0, 7062, 7067, 3, 708, 354, 0, 7063, 7064, 5, 868, 0, 0, 7064, 7066, 3, 708, 354, 0, 7065, 7063, 1, 0, 0, 0, 7066, 7069, 1, 0, 0, 0, 7067, 7065, 1, 0, 0, 0, 7067, 7068, 1, 0, 0, 0, 7068, 707, 1, 0, 0, 0, 7069, 7067, 1, 0, 0, 0, 7070, 7074, 3, 710, 355, 0, 7071, 7074, 5, 879, 0, 0, 7072, 7074, 5, 882, 0, 0, 7073, 7070, 1, 0, 0, 0, 7073, 7071, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 709, 1, 0, 0, 0, 7075, 7085, 5, 889, 0, 0, 7076, 7085, 3, 826, 413, 0, 7077, 7085, 3, 828, 414, 0, 7078, 7085, 3, 696, 348, 0, 7079, 7085, 3, 830, 415, 0, 7080, 7085, 3, 832, 416, 0, 7081, 7085, 3, 834, 417, 0, 7082, 7085, 3, 836, 418, 0, 7083, 7085, 3, 798, 399, 0, 7084, 7075, 1, 0, 0, 0, 7084, 7076, 1, 0, 0, 0, 7084, 7077, 1, 0, 0, 0, 7084, 7078, 1, 0, 0, 0, 7084, 7079, 1, 0, 0, 0, 7084, 7080, 1, 0, 0, 0, 7084, 7081, 1, 0, 0, 0, 7084, 7082, 1, 0, 0, 0, 7084, 7083, 1, 0, 0, 0, 7085, 711, 1, 0, 0, 0, 7086, 7087, 5, 865, 0, 0, 7087, 7091, 5, 889, 0, 0, 7088, 7089, 5, 865, 0, 0, 7089, 7091, 3, 708, 354, 0, 7090, 7086, 1, 0, 0, 0, 7090, 7088, 1, 0, 0, 0, 7091, 713, 1, 0, 0, 0, 7092, 7093, 7, 113, 0, 0, 7093, 715, 1, 0, 0, 0, 7094, 7097, 5, 880, 0, 0, 7095, 7097, 3, 714, 357, 0, 7096, 7094, 1, 0, 0, 0, 7096, 7095, 1, 0, 0, 0, 7097, 717, 1, 0, 0, 0, 7098, 7100, 5, 888, 0, 0, 7099, 7098, 1, 0, 0, 0, 7099, 7100, 1, 0, 0, 0, 7100, 7101, 1, 0, 0, 0, 7101, 7104, 5, 882, 0, 0, 7102, 7104, 5, 881, 0, 0, 7103, 7099, 1, 0, 0, 0, 7103, 7102, 1, 0, 0, 0, 7104, 7106, 1, 0, 0, 0, 7105, 7107, 5, 882, 0, 0, 7106, 7105, 1, 0, 0, 0, 7107, 7108, 1, 0, 0, 0, 7108, 7106, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7122, 1, 0, 0, 0, 7110, 7112, 5, 888, 0, 0, 7111, 7110, 1, 0, 0, 0, 7111, 7112, 1, 0, 0, 0, 7112, 7113, 1, 0, 0, 0, 7113, 7116, 5, 882, 0, 0, 7114, 7116, 5, 881, 0, 0, 7115, 7111, 1, 0, 0, 0, 7115, 7114, 1, 0, 0, 0, 7116, 7119, 1, 0, 0, 0, 7117, 7118, 5, 28, 0, 0, 7118, 7120, 3, 692, 346, 0, 7119, 7117, 1, 0, 0, 0, 7119, 7120, 1, 0, 0, 0, 7120, 7122, 1, 0, 0, 0, 7121, 7103, 1, 0, 0, 0, 7121, 7115, 1, 0, 0, 0, 7122, 719, 1, 0, 0, 0, 7123, 7124, 7, 114, 0, 0, 7124, 721, 1, 0, 0, 0, 7125, 7127, 5, 888, 0, 0, 7126, 7125, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7128, 1, 0, 0, 0, 7128, 7129, 5, 884, 0, 0, 7129, 723, 1, 0, 0, 0, 7130, 7132, 5, 114, 0, 0, 7131, 7130, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7133, 1, 0, 0, 0, 7133, 7134, 7, 115, 0, 0, 7134, 725, 1, 0, 0, 0, 7135, 7148, 3, 718, 359, 0, 7136, 7148, 3, 714, 357, 0, 7137, 7138, 5, 854, 0, 0, 7138, 7148, 3, 714, 357, 0, 7139, 7148, 3, 722, 361, 0, 7140, 7148, 3, 720, 360, 0, 7141, 7148, 5, 885, 0, 0, 7142, 7148, 5, 887, 0, 0, 7143, 7145, 5, 114, 0, 0, 7144, 7143, 1, 0, 0, 0, 7144, 7145, 1, 0, 0, 0, 7145, 7146, 1, 0, 0, 0, 7146, 7148, 7, 115, 0, 0, 7147, 7135, 1, 0, 0, 0, 7147, 7136, 1, 0, 0, 0, 7147, 7137, 1, 0, 0, 0, 7147, 7139, 1, 0, 0, 0, 7147, 7140, 1, 0, 0, 0, 7147, 7141, 1, 0, 0, 0, 7147, 7142, 1, 0, 0, 0, 7147, 7144, 1, 0, 0, 0, 7148, 727, 1, 0, 0, 0, 7149, 7151, 7, 116, 0, 0, 7150, 7152, 5, 240, 0, 0, 7151, 7150, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7154, 1, 0, 0, 0, 7153, 7155, 3, 734, 367, 0, 7154, 7153, 1, 0, 0, 0, 7154, 7155, 1, 0, 0, 0, 7155, 7157, 1, 0, 0, 0, 7156, 7158, 5, 228, 0, 0, 7157, 7156, 1, 0, 0, 0, 7157, 7158, 1, 0, 0, 0, 7158, 7162, 1, 0, 0, 0, 7159, 7160, 3, 54, 27, 0, 7160, 7161, 3, 690, 345, 0, 7161, 7163, 1, 0, 0, 0, 7162, 7159, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7167, 1, 0, 0, 0, 7164, 7165, 5, 28, 0, 0, 7165, 7168, 3, 692, 346, 0, 7166, 7168, 5, 228, 0, 0, 7167, 7164, 1, 0, 0, 0, 7167, 7166, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7276, 1, 0, 0, 0, 7169, 7170, 5, 227, 0, 0, 7170, 7171, 7, 117, 0, 0, 7171, 7173, 5, 240, 0, 0, 7172, 7174, 3, 734, 367, 0, 7173, 7172, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7176, 1, 0, 0, 0, 7175, 7177, 5, 228, 0, 0, 7176, 7175, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7276, 1, 0, 0, 0, 7178, 7179, 5, 227, 0, 0, 7179, 7181, 7, 118, 0, 0, 7180, 7182, 3, 734, 367, 0, 7181, 7180, 1, 0, 0, 0, 7181, 7182, 1, 0, 0, 0, 7182, 7184, 1, 0, 0, 0, 7183, 7185, 5, 228, 0, 0, 7184, 7183, 1, 0, 0, 0, 7184, 7185, 1, 0, 0, 0, 7185, 7276, 1, 0, 0, 0, 7186, 7187, 5, 498, 0, 0, 7187, 7189, 5, 225, 0, 0, 7188, 7190, 3, 734, 367, 0, 7189, 7188, 1, 0, 0, 0, 7189, 7190, 1, 0, 0, 0, 7190, 7192, 1, 0, 0, 0, 7191, 7193, 5, 228, 0, 0, 7192, 7191, 1, 0, 0, 0, 7192, 7193, 1, 0, 0, 0, 7193, 7276, 1, 0, 0, 0, 7194, 7196, 7, 119, 0, 0, 7195, 7197, 3, 734, 367, 0, 7196, 7195, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7201, 1, 0, 0, 0, 7198, 7200, 7, 120, 0, 0, 7199, 7198, 1, 0, 0, 0, 7200, 7203, 1, 0, 0, 0, 7201, 7199, 1, 0, 0, 0, 7201, 7202, 1, 0, 0, 0, 7202, 7276, 1, 0, 0, 0, 7203, 7201, 1, 0, 0, 0, 7204, 7206, 5, 210, 0, 0, 7205, 7207, 3, 736, 368, 0, 7206, 7205, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7211, 1, 0, 0, 0, 7208, 7210, 7, 120, 0, 0, 7209, 7208, 1, 0, 0, 0, 7210, 7213, 1, 0, 0, 0, 7211, 7209, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7276, 1, 0, 0, 0, 7213, 7211, 1, 0, 0, 0, 7214, 7216, 5, 211, 0, 0, 7215, 7217, 5, 212, 0, 0, 7216, 7215, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7219, 1, 0, 0, 0, 7218, 7220, 3, 736, 368, 0, 7219, 7218, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 7224, 1, 0, 0, 0, 7221, 7223, 7, 120, 0, 0, 7222, 7221, 1, 0, 0, 0, 7223, 7226, 1, 0, 0, 0, 7224, 7222, 1, 0, 0, 0, 7224, 7225, 1, 0, 0, 0, 7225, 7276, 1, 0, 0, 0, 7226, 7224, 1, 0, 0, 0, 7227, 7229, 7, 121, 0, 0, 7228, 7230, 3, 738, 369, 0, 7229, 7228, 1, 0, 0, 0, 7229, 7230, 1, 0, 0, 0, 7230, 7234, 1, 0, 0, 0, 7231, 7233, 7, 120, 0, 0, 7232, 7231, 1, 0, 0, 0, 7233, 7236, 1, 0, 0, 0, 7234, 7232, 1, 0, 0, 0, 7234, 7235, 1, 0, 0, 0, 7235, 7276, 1, 0, 0, 0, 7236, 7234, 1, 0, 0, 0, 7237, 7276, 7, 122, 0, 0, 7238, 7240, 7, 123, 0, 0, 7239, 7241, 3, 734, 367, 0, 7240, 7239, 1, 0, 0, 0, 7240, 7241, 1, 0, 0, 0, 7241, 7276, 1, 0, 0, 0, 7242, 7243, 7, 124, 0, 0, 7243, 7245, 3, 730, 365, 0, 7244, 7246, 5, 228, 0, 0, 7245, 7244, 1, 0, 0, 0, 7245, 7246, 1, 0, 0, 0, 7246, 7250, 1, 0, 0, 0, 7247, 7248, 3, 54, 27, 0, 7248, 7249, 3, 690, 345, 0, 7249, 7251, 1, 0, 0, 0, 7250, 7247, 1, 0, 0, 0, 7250, 7251, 1, 0, 0, 0, 7251, 7276, 1, 0, 0, 0, 7252, 7255, 7, 125, 0, 0, 7253, 7254, 5, 834, 0, 0, 7254, 7256, 3, 714, 357, 0, 7255, 7253, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 7276, 1, 0, 0, 0, 7257, 7259, 5, 233, 0, 0, 7258, 7260, 5, 225, 0, 0, 7259, 7258, 1, 0, 0, 0, 7259, 7260, 1, 0, 0, 0, 7260, 7262, 1, 0, 0, 0, 7261, 7263, 5, 228, 0, 0, 7262, 7261, 1, 0, 0, 0, 7262, 7263, 1, 0, 0, 0, 7263, 7267, 1, 0, 0, 0, 7264, 7265, 3, 54, 27, 0, 7265, 7266, 3, 690, 345, 0, 7266, 7268, 1, 0, 0, 0, 7267, 7264, 1, 0, 0, 0, 7267, 7268, 1, 0, 0, 0, 7268, 7271, 1, 0, 0, 0, 7269, 7270, 5, 28, 0, 0, 7270, 7272, 3, 692, 346, 0, 7271, 7269, 1, 0, 0, 0, 7271, 7272, 1, 0, 0, 0, 7272, 7276, 1, 0, 0, 0, 7273, 7274, 5, 233, 0, 0, 7274, 7276, 5, 229, 0, 0, 7275, 7149, 1, 0, 0, 0, 7275, 7169, 1, 0, 0, 0, 7275, 7178, 1, 0, 0, 0, 7275, 7186, 1, 0, 0, 0, 7275, 7194, 1, 0, 0, 0, 7275, 7204, 1, 0, 0, 0, 7275, 7214, 1, 0, 0, 0, 7275, 7227, 1, 0, 0, 0, 7275, 7237, 1, 0, 0, 0, 7275, 7238, 1, 0, 0, 0, 7275, 7242, 1, 0, 0, 0, 7275, 7252, 1, 0, 0, 0, 7275, 7257, 1, 0, 0, 0, 7275, 7273, 1, 0, 0, 0, 7276, 729, 1, 0, 0, 0, 7277, 7278, 5, 866, 0, 0, 7278, 7283, 5, 882, 0, 0, 7279, 7280, 5, 868, 0, 0, 7280, 7282, 5, 882, 0, 0, 7281, 7279, 1, 0, 0, 0, 7282, 7285, 1, 0, 0, 0, 7283, 7281, 1, 0, 0, 0, 7283, 7284, 1, 0, 0, 0, 7284, 7286, 1, 0, 0, 0, 7285, 7283, 1, 0, 0, 0, 7286, 7287, 5, 867, 0, 0, 7287, 731, 1, 0, 0, 0, 7288, 7290, 7, 126, 0, 0, 7289, 7291, 3, 734, 367, 0, 7290, 7289, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 7311, 1, 0, 0, 0, 7292, 7294, 5, 224, 0, 0, 7293, 7295, 3, 734, 367, 0, 7294, 7293, 1, 0, 0, 0, 7294, 7295, 1, 0, 0, 0, 7295, 7299, 1, 0, 0, 0, 7296, 7297, 3, 54, 27, 0, 7297, 7298, 3, 690, 345, 0, 7298, 7300, 1, 0, 0, 0, 7299, 7296, 1, 0, 0, 0, 7299, 7300, 1, 0, 0, 0, 7300, 7311, 1, 0, 0, 0, 7301, 7311, 7, 127, 0, 0, 7302, 7304, 7, 128, 0, 0, 7303, 7305, 3, 738, 369, 0, 7304, 7303, 1, 0, 0, 0, 7304, 7305, 1, 0, 0, 0, 7305, 7311, 1, 0, 0, 0, 7306, 7308, 7, 129, 0, 0, 7307, 7309, 7, 130, 0, 0, 7308, 7307, 1, 0, 0, 0, 7308, 7309, 1, 0, 0, 0, 7309, 7311, 1, 0, 0, 0, 7310, 7288, 1, 0, 0, 0, 7310, 7292, 1, 0, 0, 0, 7310, 7301, 1, 0, 0, 0, 7310, 7302, 1, 0, 0, 0, 7310, 7306, 1, 0, 0, 0, 7311, 7313, 1, 0, 0, 0, 7312, 7314, 5, 12, 0, 0, 7313, 7312, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 733, 1, 0, 0, 0, 7315, 7316, 5, 866, 0, 0, 7316, 7317, 3, 714, 357, 0, 7317, 7318, 5, 867, 0, 0, 7318, 735, 1, 0, 0, 0, 7319, 7320, 5, 866, 0, 0, 7320, 7321, 3, 714, 357, 0, 7321, 7322, 5, 868, 0, 0, 7322, 7323, 3, 714, 357, 0, 7323, 7324, 5, 867, 0, 0, 7324, 737, 1, 0, 0, 0, 7325, 7326, 5, 866, 0, 0, 7326, 7329, 3, 714, 357, 0, 7327, 7328, 5, 868, 0, 0, 7328, 7330, 3, 714, 357, 0, 7329, 7327, 1, 0, 0, 0, 7329, 7330, 1, 0, 0, 0, 7330, 7331, 1, 0, 0, 0, 7331, 7332, 5, 867, 0, 0, 7332, 739, 1, 0, 0, 0, 7333, 7334, 5, 866, 0, 0, 7334, 7339, 3, 676, 338, 0, 7335, 7336, 5, 868, 0, 0, 7336, 7338, 3, 676, 338, 0, 7337, 7335, 1, 0, 0, 0, 7338, 7341, 1, 0, 0, 0, 7339, 7337, 1, 0, 0, 0, 7339, 7340, 1, 0, 0, 0, 7340, 7342, 1, 0, 0, 0, 7341, 7339, 1, 0, 0, 0, 7342, 7343, 5, 867, 0, 0, 7343, 741, 1, 0, 0, 0, 7344, 7349, 3, 806, 403, 0, 7345, 7346, 5, 868, 0, 0, 7346, 7348, 3, 806, 403, 0, 7347, 7345, 1, 0, 0, 0, 7348, 7351, 1, 0, 0, 0, 7349, 7347, 1, 0, 0, 0, 7349, 7350, 1, 0, 0, 0, 7350, 743, 1, 0, 0, 0, 7351, 7349, 1, 0, 0, 0, 7352, 7353, 7, 131, 0, 0, 7353, 7358, 3, 746, 373, 0, 7354, 7355, 5, 868, 0, 0, 7355, 7357, 3, 746, 373, 0, 7356, 7354, 1, 0, 0, 0, 7357, 7360, 1, 0, 0, 0, 7358, 7356, 1, 0, 0, 0, 7358, 7359, 1, 0, 0, 0, 7359, 745, 1, 0, 0, 0, 7360, 7358, 1, 0, 0, 0, 7361, 7362, 5, 866, 0, 0, 7362, 7367, 3, 748, 374, 0, 7363, 7364, 5, 868, 0, 0, 7364, 7366, 3, 748, 374, 0, 7365, 7363, 1, 0, 0, 0, 7366, 7369, 1, 0, 0, 0, 7367, 7365, 1, 0, 0, 0, 7367, 7368, 1, 0, 0, 0, 7368, 7370, 1, 0, 0, 0, 7369, 7367, 1, 0, 0, 0, 7370, 7371, 5, 867, 0, 0, 7371, 747, 1, 0, 0, 0, 7372, 7375, 3, 806, 403, 0, 7373, 7375, 5, 42, 0, 0, 7374, 7372, 1, 0, 0, 0, 7374, 7373, 1, 0, 0, 0, 7375, 749, 1, 0, 0, 0, 7376, 7381, 3, 726, 363, 0, 7377, 7378, 5, 868, 0, 0, 7378, 7380, 3, 726, 363, 0, 7379, 7377, 1, 0, 0, 0, 7380, 7383, 1, 0, 0, 0, 7381, 7379, 1, 0, 0, 0, 7381, 7382, 1, 0, 0, 0, 7382, 751, 1, 0, 0, 0, 7383, 7381, 1, 0, 0, 0, 7384, 7389, 5, 882, 0, 0, 7385, 7386, 5, 868, 0, 0, 7386, 7388, 5, 882, 0, 0, 7387, 7385, 1, 0, 0, 0, 7388, 7391, 1, 0, 0, 0, 7389, 7387, 1, 0, 0, 0, 7389, 7390, 1, 0, 0, 0, 7390, 753, 1, 0, 0, 0, 7391, 7389, 1, 0, 0, 0, 7392, 7397, 5, 892, 0, 0, 7393, 7394, 5, 868, 0, 0, 7394, 7396, 5, 892, 0, 0, 7395, 7393, 1, 0, 0, 0, 7396, 7399, 1, 0, 0, 0, 7397, 7395, 1, 0, 0, 0, 7397, 7398, 1, 0, 0, 0, 7398, 755, 1, 0, 0, 0, 7399, 7397, 1, 0, 0, 0, 7400, 7427, 5, 116, 0, 0, 7401, 7402, 5, 24, 0, 0, 7402, 7403, 5, 866, 0, 0, 7403, 7404, 3, 806, 403, 0, 7404, 7405, 5, 13, 0, 0, 7405, 7406, 3, 732, 366, 0, 7406, 7407, 5, 867, 0, 0, 7407, 7427, 1, 0, 0, 0, 7408, 7410, 3, 812, 406, 0, 7409, 7408, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 7411, 1, 0, 0, 0, 7411, 7427, 3, 726, 363, 0, 7412, 7416, 3, 758, 379, 0, 7413, 7414, 5, 119, 0, 0, 7414, 7415, 5, 185, 0, 0, 7415, 7417, 3, 758, 379, 0, 7416, 7413, 1, 0, 0, 0, 7416, 7417, 1, 0, 0, 0, 7417, 7427, 1, 0, 0, 0, 7418, 7419, 5, 866, 0, 0, 7419, 7420, 3, 806, 403, 0, 7420, 7421, 5, 867, 0, 0, 7421, 7427, 1, 0, 0, 0, 7422, 7423, 5, 866, 0, 0, 7423, 7424, 3, 704, 352, 0, 7424, 7425, 5, 867, 0, 0, 7425, 7427, 1, 0, 0, 0, 7426, 7400, 1, 0, 0, 0, 7426, 7401, 1, 0, 0, 0, 7426, 7409, 1, 0, 0, 0, 7426, 7412, 1, 0, 0, 0, 7426, 7418, 1, 0, 0, 0, 7426, 7422, 1, 0, 0, 0, 7427, 757, 1, 0, 0, 0, 7428, 7434, 7, 132, 0, 0, 7429, 7431, 5, 866, 0, 0, 7430, 7432, 3, 714, 357, 0, 7431, 7430, 1, 0, 0, 0, 7431, 7432, 1, 0, 0, 0, 7432, 7433, 1, 0, 0, 0, 7433, 7435, 5, 867, 0, 0, 7434, 7429, 1, 0, 0, 0, 7434, 7435, 1, 0, 0, 0, 7435, 7443, 1, 0, 0, 0, 7436, 7437, 5, 295, 0, 0, 7437, 7439, 5, 866, 0, 0, 7438, 7440, 3, 714, 357, 0, 7439, 7438, 1, 0, 0, 0, 7439, 7440, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 7443, 5, 867, 0, 0, 7442, 7428, 1, 0, 0, 0, 7442, 7436, 1, 0, 0, 0, 7443, 759, 1, 0, 0, 0, 7444, 7445, 5, 78, 0, 0, 7445, 7446, 5, 60, 0, 0, 7446, 761, 1, 0, 0, 0, 7447, 7448, 5, 78, 0, 0, 7448, 7449, 5, 114, 0, 0, 7449, 7450, 5, 60, 0, 0, 7450, 763, 1, 0, 0, 0, 7451, 7452, 5, 124, 0, 0, 7452, 7453, 5, 143, 0, 0, 7453, 765, 1, 0, 0, 0, 7454, 7473, 3, 768, 384, 0, 7455, 7473, 3, 776, 388, 0, 7456, 7473, 3, 778, 389, 0, 7457, 7458, 3, 798, 399, 0, 7458, 7460, 5, 866, 0, 0, 7459, 7461, 3, 802, 401, 0, 7460, 7459, 1, 0, 0, 0, 7460, 7461, 1, 0, 0, 0, 7461, 7462, 1, 0, 0, 0, 7462, 7463, 5, 867, 0, 0, 7463, 7473, 1, 0, 0, 0, 7464, 7465, 3, 634, 317, 0, 7465, 7467, 5, 866, 0, 0, 7466, 7468, 3, 802, 401, 0, 7467, 7466, 1, 0, 0, 0, 7467, 7468, 1, 0, 0, 0, 7468, 7469, 1, 0, 0, 0, 7469, 7470, 5, 867, 0, 0, 7470, 7473, 1, 0, 0, 0, 7471, 7473, 3, 800, 400, 0, 7472, 7454, 1, 0, 0, 0, 7472, 7455, 1, 0, 0, 0, 7472, 7456, 1, 0, 0, 0, 7472, 7457, 1, 0, 0, 0, 7472, 7464, 1, 0, 0, 0, 7472, 7471, 1, 0, 0, 0, 7473, 767, 1, 0, 0, 0, 7474, 7477, 7, 133, 0, 0, 7475, 7476, 5, 866, 0, 0, 7476, 7478, 5, 867, 0, 0, 7477, 7475, 1, 0, 0, 0, 7477, 7478, 1, 0, 0, 0, 7478, 7654, 1, 0, 0, 0, 7479, 7654, 3, 56, 28, 0, 7480, 7481, 5, 33, 0, 0, 7481, 7482, 5, 866, 0, 0, 7482, 7483, 3, 806, 403, 0, 7483, 7484, 5, 868, 0, 0, 7484, 7485, 3, 732, 366, 0, 7485, 7486, 5, 867, 0, 0, 7486, 7654, 1, 0, 0, 0, 7487, 7488, 5, 33, 0, 0, 7488, 7489, 5, 866, 0, 0, 7489, 7490, 3, 806, 403, 0, 7490, 7491, 5, 188, 0, 0, 7491, 7492, 3, 690, 345, 0, 7492, 7493, 5, 867, 0, 0, 7493, 7654, 1, 0, 0, 0, 7494, 7495, 5, 24, 0, 0, 7495, 7496, 5, 866, 0, 0, 7496, 7497, 3, 806, 403, 0, 7497, 7498, 5, 13, 0, 0, 7498, 7499, 3, 732, 366, 0, 7499, 7500, 5, 867, 0, 0, 7500, 7654, 1, 0, 0, 0, 7501, 7502, 5, 189, 0, 0, 7502, 7503, 5, 866, 0, 0, 7503, 7504, 3, 664, 332, 0, 7504, 7505, 5, 867, 0, 0, 7505, 7654, 1, 0, 0, 0, 7506, 7507, 5, 23, 0, 0, 7507, 7509, 3, 806, 403, 0, 7508, 7510, 3, 770, 385, 0, 7509, 7508, 1, 0, 0, 0, 7510, 7511, 1, 0, 0, 0, 7511, 7509, 1, 0, 0, 0, 7511, 7512, 1, 0, 0, 0, 7512, 7515, 1, 0, 0, 0, 7513, 7514, 5, 53, 0, 0, 7514, 7516, 3, 804, 402, 0, 7515, 7513, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 7517, 1, 0, 0, 0, 7517, 7518, 5, 378, 0, 0, 7518, 7654, 1, 0, 0, 0, 7519, 7521, 5, 23, 0, 0, 7520, 7522, 3, 770, 385, 0, 7521, 7520, 1, 0, 0, 0, 7522, 7523, 1, 0, 0, 0, 7523, 7521, 1, 0, 0, 0, 7523, 7524, 1, 0, 0, 0, 7524, 7527, 1, 0, 0, 0, 7525, 7526, 5, 53, 0, 0, 7526, 7528, 3, 804, 402, 0, 7527, 7525, 1, 0, 0, 0, 7527, 7528, 1, 0, 0, 0, 7528, 7529, 1, 0, 0, 0, 7529, 7530, 5, 378, 0, 0, 7530, 7654, 1, 0, 0, 0, 7531, 7532, 5, 224, 0, 0, 7532, 7533, 5, 866, 0, 0, 7533, 7536, 3, 802, 401, 0, 7534, 7535, 5, 188, 0, 0, 7535, 7537, 3, 690, 345, 0, 7536, 7534, 1, 0, 0, 0, 7536, 7537, 1, 0, 0, 0, 7537, 7538, 1, 0, 0, 0, 7538, 7539, 5, 867, 0, 0, 7539, 7654, 1, 0, 0, 0, 7540, 7541, 5, 296, 0, 0, 7541, 7544, 5, 866, 0, 0, 7542, 7545, 3, 718, 359, 0, 7543, 7545, 3, 806, 403, 0, 7544, 7542, 1, 0, 0, 0, 7544, 7543, 1, 0, 0, 0, 7545, 7546, 1, 0, 0, 0, 7546, 7549, 5, 80, 0, 0, 7547, 7550, 3, 718, 359, 0, 7548, 7550, 3, 806, 403, 0, 7549, 7547, 1, 0, 0, 0, 7549, 7548, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7552, 5, 867, 0, 0, 7552, 7654, 1, 0, 0, 0, 7553, 7554, 7, 134, 0, 0, 7554, 7557, 5, 866, 0, 0, 7555, 7558, 3, 718, 359, 0, 7556, 7558, 3, 806, 403, 0, 7557, 7555, 1, 0, 0, 0, 7557, 7556, 1, 0, 0, 0, 7558, 7559, 1, 0, 0, 0, 7559, 7562, 5, 68, 0, 0, 7560, 7563, 3, 714, 357, 0, 7561, 7563, 3, 806, 403, 0, 7562, 7560, 1, 0, 0, 0, 7562, 7561, 1, 0, 0, 0, 7563, 7569, 1, 0, 0, 0, 7564, 7567, 5, 65, 0, 0, 7565, 7568, 3, 714, 357, 0, 7566, 7568, 3, 806, 403, 0, 7567, 7565, 1, 0, 0, 0, 7567, 7566, 1, 0, 0, 0, 7568, 7570, 1, 0, 0, 0, 7569, 7564, 1, 0, 0, 0, 7569, 7570, 1, 0, 0, 0, 7570, 7571, 1, 0, 0, 0, 7571, 7572, 5, 867, 0, 0, 7572, 7654, 1, 0, 0, 0, 7573, 7574, 5, 300, 0, 0, 7574, 7575, 5, 866, 0, 0, 7575, 7578, 7, 135, 0, 0, 7576, 7579, 3, 718, 359, 0, 7577, 7579, 3, 806, 403, 0, 7578, 7576, 1, 0, 0, 0, 7578, 7577, 1, 0, 0, 0, 7578, 7579, 1, 0, 0, 0, 7579, 7580, 1, 0, 0, 0, 7580, 7583, 5, 68, 0, 0, 7581, 7584, 3, 718, 359, 0, 7582, 7584, 3, 806, 403, 0, 7583, 7581, 1, 0, 0, 0, 7583, 7582, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 7586, 5, 867, 0, 0, 7586, 7654, 1, 0, 0, 0, 7587, 7588, 5, 300, 0, 0, 7588, 7591, 5, 866, 0, 0, 7589, 7592, 3, 718, 359, 0, 7590, 7592, 3, 806, 403, 0, 7591, 7589, 1, 0, 0, 0, 7591, 7590, 1, 0, 0, 0, 7592, 7593, 1, 0, 0, 0, 7593, 7596, 5, 68, 0, 0, 7594, 7597, 3, 718, 359, 0, 7595, 7597, 3, 806, 403, 0, 7596, 7594, 1, 0, 0, 0, 7596, 7595, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 7599, 5, 867, 0, 0, 7599, 7654, 1, 0, 0, 0, 7600, 7601, 5, 840, 0, 0, 7601, 7604, 5, 866, 0, 0, 7602, 7605, 3, 718, 359, 0, 7603, 7605, 3, 806, 403, 0, 7604, 7602, 1, 0, 0, 0, 7604, 7603, 1, 0, 0, 0, 7605, 7612, 1, 0, 0, 0, 7606, 7607, 5, 13, 0, 0, 7607, 7608, 7, 136, 0, 0, 7608, 7609, 5, 866, 0, 0, 7609, 7610, 3, 714, 357, 0, 7610, 7611, 5, 867, 0, 0, 7611, 7613, 1, 0, 0, 0, 7612, 7606, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 7615, 1, 0, 0, 0, 7614, 7616, 3, 772, 386, 0, 7615, 7614, 1, 0, 0, 0, 7615, 7616, 1, 0, 0, 0, 7616, 7617, 1, 0, 0, 0, 7617, 7618, 5, 867, 0, 0, 7618, 7654, 1, 0, 0, 0, 7619, 7620, 5, 293, 0, 0, 7620, 7621, 5, 866, 0, 0, 7621, 7622, 3, 66, 33, 0, 7622, 7625, 5, 68, 0, 0, 7623, 7626, 3, 718, 359, 0, 7624, 7626, 3, 806, 403, 0, 7625, 7623, 1, 0, 0, 0, 7625, 7624, 1, 0, 0, 0, 7626, 7627, 1, 0, 0, 0, 7627, 7628, 5, 867, 0, 0, 7628, 7654, 1, 0, 0, 0, 7629, 7630, 5, 827, 0, 0, 7630, 7631, 5, 866, 0, 0, 7631, 7632, 7, 137, 0, 0, 7632, 7633, 5, 868, 0, 0, 7633, 7634, 3, 718, 359, 0, 7634, 7635, 5, 867, 0, 0, 7635, 7654, 1, 0, 0, 0, 7636, 7637, 5, 254, 0, 0, 7637, 7638, 5, 866, 0, 0, 7638, 7639, 3, 806, 403, 0, 7639, 7640, 5, 868, 0, 0, 7640, 7643, 3, 806, 403, 0, 7641, 7642, 5, 579, 0, 0, 7642, 7644, 3, 732, 366, 0, 7643, 7641, 1, 0, 0, 0, 7643, 7644, 1, 0, 0, 0, 7644, 7646, 1, 0, 0, 0, 7645, 7647, 3, 292, 146, 0, 7646, 7645, 1, 0, 0, 0, 7646, 7647, 1, 0, 0, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7650, 3, 294, 147, 0, 7649, 7648, 1, 0, 0, 0, 7649, 7650, 1, 0, 0, 0, 7650, 7651, 1, 0, 0, 0, 7651, 7652, 5, 867, 0, 0, 7652, 7654, 1, 0, 0, 0, 7653, 7474, 1, 0, 0, 0, 7653, 7479, 1, 0, 0, 0, 7653, 7480, 1, 0, 0, 0, 7653, 7487, 1, 0, 0, 0, 7653, 7494, 1, 0, 0, 0, 7653, 7501, 1, 0, 0, 0, 7653, 7506, 1, 0, 0, 0, 7653, 7519, 1, 0, 0, 0, 7653, 7531, 1, 0, 0, 0, 7653, 7540, 1, 0, 0, 0, 7653, 7553, 1, 0, 0, 0, 7653, 7573, 1, 0, 0, 0, 7653, 7587, 1, 0, 0, 0, 7653, 7600, 1, 0, 0, 0, 7653, 7619, 1, 0, 0, 0, 7653, 7629, 1, 0, 0, 0, 7653, 7636, 1, 0, 0, 0, 7654, 769, 1, 0, 0, 0, 7655, 7656, 5, 191, 0, 0, 7656, 7657, 3, 804, 402, 0, 7657, 7658, 5, 175, 0, 0, 7658, 7659, 3, 804, 402, 0, 7659, 771, 1, 0, 0, 0, 7660, 7661, 5, 448, 0, 0, 7661, 7666, 3, 774, 387, 0, 7662, 7663, 5, 868, 0, 0, 7663, 7665, 3, 774, 387, 0, 7664, 7662, 1, 0, 0, 0, 7665, 7668, 1, 0, 0, 0, 7666, 7664, 1, 0, 0, 0, 7666, 7667, 1, 0, 0, 0, 7667, 7675, 1, 0, 0, 0, 7668, 7666, 1, 0, 0, 0, 7669, 7670, 5, 448, 0, 0, 7670, 7671, 3, 714, 357, 0, 7671, 7672, 5, 854, 0, 0, 7672, 7673, 3, 714, 357, 0, 7673, 7675, 1, 0, 0, 0, 7674, 7660, 1, 0, 0, 0, 7674, 7669, 1, 0, 0, 0, 7675, 773, 1, 0, 0, 0, 7676, 7678, 3, 714, 357, 0, 7677, 7679, 7, 138, 0, 0, 7678, 7677, 1, 0, 0, 0, 7678, 7679, 1, 0, 0, 0, 7679, 775, 1, 0, 0, 0, 7680, 7681, 7, 139, 0, 0, 7681, 7683, 5, 866, 0, 0, 7682, 7684, 7, 44, 0, 0, 7683, 7682, 1, 0, 0, 0, 7683, 7684, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7686, 3, 804, 402, 0, 7686, 7688, 5, 867, 0, 0, 7687, 7689, 3, 780, 390, 0, 7688, 7687, 1, 0, 0, 0, 7688, 7689, 1, 0, 0, 0, 7689, 7740, 1, 0, 0, 0, 7690, 7691, 5, 262, 0, 0, 7691, 7699, 5, 866, 0, 0, 7692, 7700, 5, 850, 0, 0, 7693, 7695, 5, 7, 0, 0, 7694, 7693, 1, 0, 0, 0, 7694, 7695, 1, 0, 0, 0, 7695, 7696, 1, 0, 0, 0, 7696, 7700, 3, 804, 402, 0, 7697, 7698, 5, 49, 0, 0, 7698, 7700, 3, 802, 401, 0, 7699, 7692, 1, 0, 0, 0, 7699, 7694, 1, 0, 0, 0, 7699, 7697, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, 7703, 5, 867, 0, 0, 7702, 7704, 3, 780, 390, 0, 7703, 7702, 1, 0, 0, 0, 7703, 7704, 1, 0, 0, 0, 7704, 7740, 1, 0, 0, 0, 7705, 7706, 7, 140, 0, 0, 7706, 7708, 5, 866, 0, 0, 7707, 7709, 5, 7, 0, 0, 7708, 7707, 1, 0, 0, 0, 7708, 7709, 1, 0, 0, 0, 7709, 7710, 1, 0, 0, 0, 7710, 7711, 3, 804, 402, 0, 7711, 7713, 5, 867, 0, 0, 7712, 7714, 3, 780, 390, 0, 7713, 7712, 1, 0, 0, 0, 7713, 7714, 1, 0, 0, 0, 7714, 7740, 1, 0, 0, 0, 7715, 7716, 5, 266, 0, 0, 7716, 7718, 5, 866, 0, 0, 7717, 7719, 5, 49, 0, 0, 7718, 7717, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 1, 0, 0, 0, 7720, 7731, 3, 802, 401, 0, 7721, 7722, 5, 125, 0, 0, 7722, 7723, 5, 20, 0, 0, 7723, 7728, 3, 254, 127, 0, 7724, 7725, 5, 868, 0, 0, 7725, 7727, 3, 254, 127, 0, 7726, 7724, 1, 0, 0, 0, 7727, 7730, 1, 0, 0, 0, 7728, 7726, 1, 0, 0, 0, 7728, 7729, 1, 0, 0, 0, 7729, 7732, 1, 0, 0, 0, 7730, 7728, 1, 0, 0, 0, 7731, 7721, 1, 0, 0, 0, 7731, 7732, 1, 0, 0, 0, 7732, 7735, 1, 0, 0, 0, 7733, 7734, 5, 156, 0, 0, 7734, 7736, 5, 882, 0, 0, 7735, 7733, 1, 0, 0, 0, 7735, 7736, 1, 0, 0, 0, 7736, 7737, 1, 0, 0, 0, 7737, 7738, 5, 867, 0, 0, 7738, 7740, 1, 0, 0, 0, 7739, 7680, 1, 0, 0, 0, 7739, 7690, 1, 0, 0, 0, 7739, 7705, 1, 0, 0, 0, 7739, 7715, 1, 0, 0, 0, 7740, 777, 1, 0, 0, 0, 7741, 7742, 7, 141, 0, 0, 7742, 7743, 5, 866, 0, 0, 7743, 7746, 3, 806, 403, 0, 7744, 7745, 5, 868, 0, 0, 7745, 7747, 3, 714, 357, 0, 7746, 7744, 1, 0, 0, 0, 7746, 7747, 1, 0, 0, 0, 7747, 7750, 1, 0, 0, 0, 7748, 7749, 5, 868, 0, 0, 7749, 7751, 3, 714, 357, 0, 7750, 7748, 1, 0, 0, 0, 7750, 7751, 1, 0, 0, 0, 7751, 7752, 1, 0, 0, 0, 7752, 7753, 5, 867, 0, 0, 7753, 7754, 3, 780, 390, 0, 7754, 7780, 1, 0, 0, 0, 7755, 7756, 7, 142, 0, 0, 7756, 7757, 5, 866, 0, 0, 7757, 7758, 3, 806, 403, 0, 7758, 7759, 5, 867, 0, 0, 7759, 7760, 3, 780, 390, 0, 7760, 7780, 1, 0, 0, 0, 7761, 7762, 7, 143, 0, 0, 7762, 7763, 5, 866, 0, 0, 7763, 7764, 5, 867, 0, 0, 7764, 7780, 3, 780, 390, 0, 7765, 7766, 5, 273, 0, 0, 7766, 7767, 5, 866, 0, 0, 7767, 7768, 3, 806, 403, 0, 7768, 7769, 5, 868, 0, 0, 7769, 7770, 3, 714, 357, 0, 7770, 7771, 5, 867, 0, 0, 7771, 7772, 3, 780, 390, 0, 7772, 7780, 1, 0, 0, 0, 7773, 7774, 5, 272, 0, 0, 7774, 7775, 5, 866, 0, 0, 7775, 7776, 3, 714, 357, 0, 7776, 7777, 5, 867, 0, 0, 7777, 7778, 3, 780, 390, 0, 7778, 7780, 1, 0, 0, 0, 7779, 7741, 1, 0, 0, 0, 7779, 7755, 1, 0, 0, 0, 7779, 7761, 1, 0, 0, 0, 7779, 7765, 1, 0, 0, 0, 7779, 7773, 1, 0, 0, 0, 7780, 779, 1, 0, 0, 0, 7781, 7787, 5, 129, 0, 0, 7782, 7783, 5, 866, 0, 0, 7783, 7784, 3, 782, 391, 0, 7784, 7785, 5, 867, 0, 0, 7785, 7788, 1, 0, 0, 0, 7786, 7788, 3, 784, 392, 0, 7787, 7782, 1, 0, 0, 0, 7787, 7786, 1, 0, 0, 0, 7788, 781, 1, 0, 0, 0, 7789, 7791, 3, 784, 392, 0, 7790, 7789, 1, 0, 0, 0, 7790, 7791, 1, 0, 0, 0, 7791, 7793, 1, 0, 0, 0, 7792, 7794, 3, 796, 398, 0, 7793, 7792, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7796, 1, 0, 0, 0, 7795, 7797, 3, 252, 126, 0, 7796, 7795, 1, 0, 0, 0, 7796, 7797, 1, 0, 0, 0, 7797, 7799, 1, 0, 0, 0, 7798, 7800, 3, 786, 393, 0, 7799, 7798, 1, 0, 0, 0, 7799, 7800, 1, 0, 0, 0, 7800, 783, 1, 0, 0, 0, 7801, 7802, 3, 708, 354, 0, 7802, 785, 1, 0, 0, 0, 7803, 7804, 3, 788, 394, 0, 7804, 7805, 3, 790, 395, 0, 7805, 787, 1, 0, 0, 0, 7806, 7807, 7, 144, 0, 0, 7807, 789, 1, 0, 0, 0, 7808, 7811, 3, 794, 397, 0, 7809, 7811, 3, 792, 396, 0, 7810, 7808, 1, 0, 0, 0, 7810, 7809, 1, 0, 0, 0, 7811, 791, 1, 0, 0, 0, 7812, 7813, 5, 17, 0, 0, 7813, 7814, 3, 794, 397, 0, 7814, 7815, 5, 11, 0, 0, 7815, 7816, 3, 794, 397, 0, 7816, 793, 1, 0, 0, 0, 7817, 7818, 5, 36, 0, 0, 7818, 7825, 5, 586, 0, 0, 7819, 7820, 5, 669, 0, 0, 7820, 7825, 7, 145, 0, 0, 7821, 7822, 3, 806, 403, 0, 7822, 7823, 7, 145, 0, 0, 7823, 7825, 1, 0, 0, 0, 7824, 7817, 1, 0, 0, 0, 7824, 7819, 1, 0, 0, 0, 7824, 7821, 1, 0, 0, 0, 7825, 795, 1, 0, 0, 0, 7826, 7827, 5, 130, 0, 0, 7827, 7828, 5, 20, 0, 0, 7828, 7833, 3, 806, 403, 0, 7829, 7830, 5, 868, 0, 0, 7830, 7832, 3, 806, 403, 0, 7831, 7829, 1, 0, 0, 0, 7832, 7835, 1, 0, 0, 0, 7833, 7831, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 797, 1, 0, 0, 0, 7835, 7833, 1, 0, 0, 0, 7836, 7861, 3, 838, 419, 0, 7837, 7861, 5, 757, 0, 0, 7838, 7861, 5, 289, 0, 0, 7839, 7861, 5, 285, 0, 0, 7840, 7861, 5, 286, 0, 0, 7841, 7861, 5, 287, 0, 0, 7842, 7861, 5, 290, 0, 0, 7843, 7861, 5, 291, 0, 0, 7844, 7861, 5, 292, 0, 0, 7845, 7861, 5, 78, 0, 0, 7846, 7861, 5, 86, 0, 0, 7847, 7861, 5, 288, 0, 0, 7848, 7861, 5, 294, 0, 0, 7849, 7861, 5, 488, 0, 0, 7850, 7861, 5, 295, 0, 0, 7851, 7861, 5, 142, 0, 0, 7852, 7861, 5, 143, 0, 0, 7853, 7861, 5, 297, 0, 0, 7854, 7861, 5, 298, 0, 0, 7855, 7861, 5, 299, 0, 0, 7856, 7861, 5, 300, 0, 0, 7857, 7861, 5, 301, 0, 0, 7858, 7861, 5, 302, 0, 0, 7859, 7861, 5, 303, 0, 0, 7860, 7836, 1, 0, 0, 0, 7860, 7837, 1, 0, 0, 0, 7860, 7838, 1, 0, 0, 0, 7860, 7839, 1, 0, 0, 0, 7860, 7840, 1, 0, 0, 0, 7860, 7841, 1, 0, 0, 0, 7860, 7842, 1, 0, 0, 0, 7860, 7843, 1, 0, 0, 0, 7860, 7844, 1, 0, 0, 0, 7860, 7845, 1, 0, 0, 0, 7860, 7846, 1, 0, 0, 0, 7860, 7847, 1, 0, 0, 0, 7860, 7848, 1, 0, 0, 0, 7860, 7849, 1, 0, 0, 0, 7860, 7850, 1, 0, 0, 0, 7860, 7851, 1, 0, 0, 0, 7860, 7852, 1, 0, 0, 0, 7860, 7853, 1, 0, 0, 0, 7860, 7854, 1, 0, 0, 0, 7860, 7855, 1, 0, 0, 0, 7860, 7856, 1, 0, 0, 0, 7860, 7857, 1, 0, 0, 0, 7860, 7858, 1, 0, 0, 0, 7860, 7859, 1, 0, 0, 0, 7861, 799, 1, 0, 0, 0, 7862, 7863, 7, 146, 0, 0, 7863, 7864, 5, 866, 0, 0, 7864, 7865, 3, 804, 402, 0, 7865, 7866, 5, 867, 0, 0, 7866, 801, 1, 0, 0, 0, 7867, 7872, 3, 804, 402, 0, 7868, 7869, 5, 868, 0, 0, 7869, 7871, 3, 804, 402, 0, 7870, 7868, 1, 0, 0, 0, 7871, 7874, 1, 0, 0, 0, 7872, 7870, 1, 0, 0, 0, 7872, 7873, 1, 0, 0, 0, 7873, 803, 1, 0, 0, 0, 7874, 7872, 1, 0, 0, 0, 7875, 7880, 3, 726, 363, 0, 7876, 7880, 3, 664, 332, 0, 7877, 7880, 3, 766, 383, 0, 7878, 7880, 3, 806, 403, 0, 7879, 7875, 1, 0, 0, 0, 7879, 7876, 1, 0, 0, 0, 7879, 7877, 1, 0, 0, 0, 7879, 7878, 1, 0, 0, 0, 7880, 805, 1, 0, 0, 0, 7881, 7882, 6, 403, -1, 0, 7882, 7883, 7, 147, 0, 0, 7883, 7893, 3, 806, 403, 4, 7884, 7885, 3, 808, 404, 0, 7885, 7887, 5, 89, 0, 0, 7886, 7888, 5, 114, 0, 0, 7887, 7886, 1, 0, 0, 0, 7887, 7888, 1, 0, 0, 0, 7888, 7889, 1, 0, 0, 0, 7889, 7890, 7, 148, 0, 0, 7890, 7893, 1, 0, 0, 0, 7891, 7893, 3, 808, 404, 0, 7892, 7881, 1, 0, 0, 0, 7892, 7884, 1, 0, 0, 0, 7892, 7891, 1, 0, 0, 0, 7893, 7900, 1, 0, 0, 0, 7894, 7895, 10, 3, 0, 0, 7895, 7896, 3, 818, 409, 0, 7896, 7897, 3, 806, 403, 4, 7897, 7899, 1, 0, 0, 0, 7898, 7894, 1, 0, 0, 0, 7899, 7902, 1, 0, 0, 0, 7900, 7898, 1, 0, 0, 0, 7900, 7901, 1, 0, 0, 0, 7901, 807, 1, 0, 0, 0, 7902, 7900, 1, 0, 0, 0, 7903, 7904, 6, 404, -1, 0, 7904, 7905, 3, 810, 405, 0, 7905, 7970, 1, 0, 0, 0, 7906, 7907, 10, 8, 0, 0, 7907, 7908, 3, 814, 407, 0, 7908, 7909, 3, 808, 404, 9, 7909, 7969, 1, 0, 0, 0, 7910, 7912, 10, 6, 0, 0, 7911, 7913, 5, 114, 0, 0, 7912, 7911, 1, 0, 0, 0, 7912, 7913, 1, 0, 0, 0, 7913, 7914, 1, 0, 0, 0, 7914, 7915, 5, 17, 0, 0, 7915, 7916, 3, 808, 404, 0, 7916, 7917, 5, 11, 0, 0, 7917, 7918, 3, 808, 404, 7, 7918, 7969, 1, 0, 0, 0, 7919, 7920, 10, 5, 0, 0, 7920, 7921, 5, 604, 0, 0, 7921, 7922, 5, 99, 0, 0, 7922, 7969, 3, 808, 404, 6, 7923, 7925, 10, 3, 0, 0, 7924, 7926, 5, 114, 0, 0, 7925, 7924, 1, 0, 0, 0, 7925, 7926, 1, 0, 0, 0, 7926, 7927, 1, 0, 0, 0, 7927, 7928, 7, 149, 0, 0, 7928, 7969, 3, 808, 404, 4, 7929, 7931, 10, 10, 0, 0, 7930, 7932, 5, 114, 0, 0, 7931, 7930, 1, 0, 0, 0, 7931, 7932, 1, 0, 0, 0, 7932, 7933, 1, 0, 0, 0, 7933, 7934, 5, 80, 0, 0, 7934, 7937, 5, 866, 0, 0, 7935, 7938, 3, 204, 102, 0, 7936, 7938, 3, 742, 371, 0, 7937, 7935, 1, 0, 0, 0, 7937, 7936, 1, 0, 0, 0, 7938, 7939, 1, 0, 0, 0, 7939, 7940, 5, 867, 0, 0, 7940, 7969, 1, 0, 0, 0, 7941, 7942, 10, 9, 0, 0, 7942, 7943, 5, 89, 0, 0, 7943, 7969, 3, 724, 362, 0, 7944, 7945, 10, 7, 0, 0, 7945, 7946, 3, 814, 407, 0, 7946, 7947, 7, 150, 0, 0, 7947, 7948, 5, 866, 0, 0, 7948, 7949, 3, 204, 102, 0, 7949, 7950, 5, 867, 0, 0, 7950, 7969, 1, 0, 0, 0, 7951, 7953, 10, 4, 0, 0, 7952, 7954, 5, 114, 0, 0, 7953, 7952, 1, 0, 0, 0, 7953, 7954, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 5, 99, 0, 0, 7956, 7959, 3, 808, 404, 0, 7957, 7958, 5, 384, 0, 0, 7958, 7960, 5, 882, 0, 0, 7959, 7957, 1, 0, 0, 0, 7959, 7960, 1, 0, 0, 0, 7960, 7969, 1, 0, 0, 0, 7961, 7962, 10, 2, 0, 0, 7962, 7963, 5, 485, 0, 0, 7963, 7964, 5, 510, 0, 0, 7964, 7965, 5, 866, 0, 0, 7965, 7966, 3, 808, 404, 0, 7966, 7967, 5, 867, 0, 0, 7967, 7969, 1, 0, 0, 0, 7968, 7906, 1, 0, 0, 0, 7968, 7910, 1, 0, 0, 0, 7968, 7919, 1, 0, 0, 0, 7968, 7923, 1, 0, 0, 0, 7968, 7929, 1, 0, 0, 0, 7968, 7941, 1, 0, 0, 0, 7968, 7944, 1, 0, 0, 0, 7968, 7951, 1, 0, 0, 0, 7968, 7961, 1, 0, 0, 0, 7969, 7972, 1, 0, 0, 0, 7970, 7968, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 809, 1, 0, 0, 0, 7972, 7970, 1, 0, 0, 0, 7973, 7974, 6, 405, -1, 0, 7974, 8022, 3, 726, 363, 0, 7975, 8022, 3, 664, 332, 0, 7976, 8022, 3, 766, 383, 0, 7977, 8022, 3, 688, 344, 0, 7978, 7979, 3, 812, 406, 0, 7979, 7980, 3, 810, 405, 11, 7980, 8022, 1, 0, 0, 0, 7981, 7982, 5, 228, 0, 0, 7982, 8022, 3, 810, 405, 10, 7983, 7984, 5, 892, 0, 0, 7984, 7985, 5, 841, 0, 0, 7985, 8022, 3, 810, 405, 9, 7986, 7987, 5, 866, 0, 0, 7987, 7992, 3, 806, 403, 0, 7988, 7989, 5, 868, 0, 0, 7989, 7991, 3, 806, 403, 0, 7990, 7988, 1, 0, 0, 0, 7991, 7994, 1, 0, 0, 0, 7992, 7990, 1, 0, 0, 0, 7992, 7993, 1, 0, 0, 0, 7993, 7995, 1, 0, 0, 0, 7994, 7992, 1, 0, 0, 0, 7995, 7996, 5, 867, 0, 0, 7996, 8022, 1, 0, 0, 0, 7997, 7998, 5, 586, 0, 0, 7998, 7999, 5, 866, 0, 0, 7999, 8002, 3, 806, 403, 0, 8000, 8001, 5, 868, 0, 0, 8001, 8003, 3, 806, 403, 0, 8002, 8000, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8004, 8005, 1, 0, 0, 0, 8005, 8006, 1, 0, 0, 0, 8006, 8007, 5, 867, 0, 0, 8007, 8022, 1, 0, 0, 0, 8008, 8009, 5, 60, 0, 0, 8009, 8010, 5, 866, 0, 0, 8010, 8011, 3, 204, 102, 0, 8011, 8012, 5, 867, 0, 0, 8012, 8022, 1, 0, 0, 0, 8013, 8014, 5, 866, 0, 0, 8014, 8015, 3, 204, 102, 0, 8015, 8016, 5, 867, 0, 0, 8016, 8022, 1, 0, 0, 0, 8017, 8018, 5, 87, 0, 0, 8018, 8019, 3, 806, 403, 0, 8019, 8020, 3, 66, 33, 0, 8020, 8022, 1, 0, 0, 0, 8021, 7973, 1, 0, 0, 0, 8021, 7975, 1, 0, 0, 0, 8021, 7976, 1, 0, 0, 0, 8021, 7977, 1, 0, 0, 0, 8021, 7978, 1, 0, 0, 0, 8021, 7981, 1, 0, 0, 0, 8021, 7983, 1, 0, 0, 0, 8021, 7986, 1, 0, 0, 0, 8021, 7997, 1, 0, 0, 0, 8021, 8008, 1, 0, 0, 0, 8021, 8013, 1, 0, 0, 0, 8021, 8017, 1, 0, 0, 0, 8022, 8040, 1, 0, 0, 0, 8023, 8024, 10, 3, 0, 0, 8024, 8025, 3, 820, 410, 0, 8025, 8026, 3, 810, 405, 4, 8026, 8039, 1, 0, 0, 0, 8027, 8028, 10, 2, 0, 0, 8028, 8029, 3, 822, 411, 0, 8029, 8030, 3, 810, 405, 3, 8030, 8039, 1, 0, 0, 0, 8031, 8032, 10, 1, 0, 0, 8032, 8033, 3, 824, 412, 0, 8033, 8034, 3, 810, 405, 2, 8034, 8039, 1, 0, 0, 0, 8035, 8036, 10, 13, 0, 0, 8036, 8037, 5, 28, 0, 0, 8037, 8039, 3, 692, 346, 0, 8038, 8023, 1, 0, 0, 0, 8038, 8027, 1, 0, 0, 0, 8038, 8031, 1, 0, 0, 0, 8038, 8035, 1, 0, 0, 0, 8039, 8042, 1, 0, 0, 0, 8040, 8038, 1, 0, 0, 0, 8040, 8041, 1, 0, 0, 0, 8041, 811, 1, 0, 0, 0, 8042, 8040, 1, 0, 0, 0, 8043, 8044, 7, 151, 0, 0, 8044, 813, 1, 0, 0, 0, 8045, 8054, 3, 816, 408, 0, 8046, 8047, 5, 859, 0, 0, 8047, 8054, 5, 858, 0, 0, 8048, 8049, 5, 860, 0, 0, 8049, 8054, 5, 857, 0, 0, 8050, 8051, 5, 859, 0, 0, 8051, 8052, 5, 857, 0, 0, 8052, 8054, 5, 858, 0, 0, 8053, 8045, 1, 0, 0, 0, 8053, 8046, 1, 0, 0, 0, 8053, 8048, 1, 0, 0, 0, 8053, 8050, 1, 0, 0, 0, 8054, 815, 1, 0, 0, 0, 8055, 8063, 5, 857, 0, 0, 8056, 8063, 5, 858, 0, 0, 8057, 8063, 5, 859, 0, 0, 8058, 8059, 5, 859, 0, 0, 8059, 8063, 5, 857, 0, 0, 8060, 8061, 5, 858, 0, 0, 8061, 8063, 5, 857, 0, 0, 8062, 8055, 1, 0, 0, 0, 8062, 8056, 1, 0, 0, 0, 8062, 8057, 1, 0, 0, 0, 8062, 8058, 1, 0, 0, 0, 8062, 8060, 1, 0, 0, 0, 8063, 817, 1, 0, 0, 0, 8064, 8072, 5, 11, 0, 0, 8065, 8066, 5, 863, 0, 0, 8066, 8072, 5, 863, 0, 0, 8067, 8072, 5, 196, 0, 0, 8068, 8072, 5, 124, 0, 0, 8069, 8070, 5, 862, 0, 0, 8070, 8072, 5, 862, 0, 0, 8071, 8064, 1, 0, 0, 0, 8071, 8065, 1, 0, 0, 0, 8071, 8067, 1, 0, 0, 0, 8071, 8068, 1, 0, 0, 0, 8071, 8069, 1, 0, 0, 0, 8072, 819, 1, 0, 0, 0, 8073, 8074, 5, 859, 0, 0, 8074, 8081, 5, 859, 0, 0, 8075, 8076, 5, 858, 0, 0, 8076, 8081, 5, 858, 0, 0, 8077, 8081, 5, 863, 0, 0, 8078, 8081, 5, 864, 0, 0, 8079, 8081, 5, 862, 0, 0, 8080, 8073, 1, 0, 0, 0, 8080, 8075, 1, 0, 0, 0, 8080, 8077, 1, 0, 0, 0, 8080, 8078, 1, 0, 0, 0, 8080, 8079, 1, 0, 0, 0, 8081, 821, 1, 0, 0, 0, 8082, 8083, 7, 152, 0, 0, 8083, 823, 1, 0, 0, 0, 8084, 8085, 5, 854, 0, 0, 8085, 8090, 5, 858, 0, 0, 8086, 8087, 5, 854, 0, 0, 8087, 8088, 5, 858, 0, 0, 8088, 8090, 5, 858, 0, 0, 8089, 8084, 1, 0, 0, 0, 8089, 8086, 1, 0, 0, 0, 8090, 825, 1, 0, 0, 0, 8091, 8092, 7, 153, 0, 0, 8092, 827, 1, 0, 0, 0, 8093, 8094, 7, 154, 0, 0, 8094, 829, 1, 0, 0, 0, 8095, 8096, 7, 155, 0, 0, 8096, 831, 1, 0, 0, 0, 8097, 8098, 7, 156, 0, 0, 8098, 833, 1, 0, 0, 0, 8099, 8100, 7, 157, 0, 0, 8100, 835, 1, 0, 0, 0, 8101, 8102, 7, 158, 0, 0, 8102, 837, 1, 0, 0, 0, 8103, 8104, 7, 159, 0, 0, 8104, 839, 1, 0, 0, 0, 1171, 843, 850, 853, 862, 905, 924, 935, 951, 956, 968, 1003, 1013, 1018, 1024, 1029, 1033, 1042, 1045, 1048, 1052, 1059, 1062, 1067, 1075, 1080, 1085, 1088, 1090, 1102, 1105, 1109, 1112, 1116, 1119, 1123, 1126, 1129, 1133, 1136, 1140, 1146, 1150, 1155, 1161, 1168, 1176, 1194, 1201, 1205, 1211, 1216, 1219, 1222, 1226, 1230, 1234, 1238, 1243, 1246, 1249, 1252, 1255, 1261, 1265, 1275, 1277, 1281, 1288, 1292, 1295, 1300, 1304, 1307, 1311, 1314, 1318, 1331, 1334, 1338, 1341, 1345, 1348, 1352, 1355, 1359, 1362, 1365, 1369, 1372, 1376, 1382, 1386, 1398, 1404, 1415, 1420, 1428, 1432, 1437, 1440, 1445, 1453, 1458, 1464, 1469, 1473, 1475, 1478, 1482, 1486, 1489, 1493, 1497, 1501, 1507, 1510, 1517, 1522, 1528, 1535, 1541, 1549, 1552, 1559, 1562, 1564, 1570, 1576, 1593, 1600, 1607, 1619, 1624, 1627, 1630, 1640, 1653, 1658, 1674, 1682, 1692, 1695, 1701, 1706, 1709, 1715, 1719, 1724, 1730, 1734, 1738, 1741, 1744, 1750, 1754, 1759, 1770, 1773, 1780, 1783, 1787, 1793, 1805, 1808, 1813, 1826, 1833, 1839, 1844, 1848, 1851, 1859, 1867, 1869, 1879, 1883, 1886, 1890, 1895, 1900, 1905, 1909, 1913, 1917, 1921, 1925, 1929, 1934, 1939, 1944, 1950, 1955, 1960, 1965, 1970, 1975, 1981, 1986, 1991, 1996, 2001, 2006, 2011, 2016, 2023, 2028, 2033, 2038, 2042, 2047, 2055, 2060, 2066, 2078, 2085, 2087, 2095, 2100, 2103, 2111, 2117, 2121, 2134, 2146, 2148, 2151, 2159, 2165, 2171, 2184, 2191, 2200, 2205, 2216, 2225, 2230, 2242, 2249, 2258, 2263, 2275, 2282, 2291, 2296, 2303, 2312, 2317, 2319, 2324, 2332, 2341, 2345, 2348, 2352, 2357, 2363, 2369, 2374, 2379, 2384, 2389, 2392, 2397, 2402, 2412, 2416, 2423, 2428, 2431, 2436, 2439, 2443, 2447, 2455, 2474, 2477, 2480, 2484, 2494, 2507, 2520, 2523, 2529, 2532, 2536, 2545, 2548, 2551, 2556, 2560, 2563, 2567, 2571, 2574, 2578, 2581, 2585, 2588, 2594, 2597, 2602, 2610, 2616, 2620, 2624, 2629, 2634, 2641, 2645, 2656, 2664, 2667, 2673, 2679, 2682, 2688, 2694, 2696, 2701, 2707, 2713, 2715, 2719, 2722, 2725, 2731, 2737, 2739, 2744, 2751, 2760, 2763, 2767, 2772, 2782, 2791, 2799, 2802, 2810, 2813, 2820, 2825, 2833, 2849, 2854, 2861, 2880, 2886, 2896, 2908, 2915, 2922, 2937, 2950, 2956, 2962, 2968, 2974, 2980, 2986, 2991, 2998, 3005, 3012, 3017, 3020, 3022, 3031, 3038, 3045, 3052, 3061, 3067, 3071, 3075, 3079, 3085, 3088, 3093, 3100, 3107, 3111, 3116, 3126, 3134, 3140, 3149, 3158, 3167, 3170, 3174, 3183, 3187, 3190, 3193, 3199, 3202, 3205, 3209, 3212, 3215, 3218, 3229, 3232, 3237, 3243, 3248, 3253, 3256, 3260, 3265, 3268, 3273, 3283, 3288, 3294, 3296, 3302, 3304, 3310, 3318, 3323, 3331, 3334, 3339, 3342, 3347, 3355, 3361, 3365, 3367, 3373, 3381, 3386, 3394, 3397, 3402, 3405, 3409, 3412, 3415, 3419, 3422, 3430, 3436, 3440, 3444, 3448, 3451, 3455, 3461, 3465, 3469, 3471, 3474, 3477, 3480, 3486, 3490, 3493, 3496, 3499, 3502, 3509, 3511, 3514, 3518, 3521, 3524, 3532, 3538, 3541, 3543, 3552, 3557, 3564, 3567, 3570, 3574, 3578, 3584, 3588, 3595, 3599, 3602, 3605, 3610, 3617, 3627, 3636, 3645, 3655, 3658, 3662, 3668, 3672, 3675, 3678, 3683, 3686, 3693, 3697, 3700, 3704, 3708, 3711, 3714, 3719, 3725, 3729, 3739, 3745, 3749, 3755, 3759, 3765, 3768, 3780, 3784, 3788, 3796, 3800, 3814, 3819, 3822, 3826, 3829, 3837, 3842, 3845, 3848, 3852, 3855, 3864, 3869, 3878, 3883, 3890, 3897, 3905, 3911, 3919, 3922, 3925, 3932, 3935, 3938, 3945, 3948, 3952, 3958, 3968, 3972, 3981, 3984, 3988, 3994, 4002, 4007, 4011, 4017, 4023, 4026, 4028, 4032, 4041, 4051, 4061, 4067, 4072, 4076, 4079, 4082, 4085, 4088, 4094, 4100, 4103, 4106, 4109, 4112, 4115, 4117, 4123, 4129, 4132, 4135, 4138, 4141, 4145, 4151, 4155, 4163, 4167, 4170, 4172, 4185, 4188, 4195, 4205, 4208, 4213, 4215, 4219, 4227, 4233, 4242, 4255, 4259, 4265, 4274, 4277, 4281, 4284, 4288, 4292, 4295, 4297, 4305, 4317, 4323, 4325, 4331, 4333, 4335, 4341, 4349, 4357, 4361, 4365, 4374, 4379, 4399, 4404, 4410, 4417, 4422, 4431, 4434, 4438, 4442, 4446, 4449, 4452, 4455, 4459, 4463, 4466, 4469, 4472, 4479, 4483, 4498, 4511, 4519, 4529, 4533, 4536, 4542, 4545, 4548, 4557, 4566, 4576, 4580, 4590, 4594, 4605, 4609, 4618, 4627, 4630, 4634, 4639, 4643, 4652, 4655, 4658, 4665, 4671, 4677, 4703, 4706, 4709, 4728, 4730, 4753, 4756, 4759, 4778, 4780, 4794, 4807, 4844, 4849, 4884, 4898, 4905, 4909, 4915, 4923, 4925, 4936, 4946, 4953, 4959, 4967, 4972, 4980, 4988, 4996, 5004, 5010, 5015, 5020, 5025, 5031, 5033, 5044, 5049, 5056, 5058, 5072, 5078, 5083, 5088, 5094, 5101, 5109, 5117, 5122, 5128, 5131, 5139, 5146, 5155, 5158, 5175, 5183, 5191, 5195, 5202, 5208, 5216, 5221, 5228, 5236, 5243, 5248, 5251, 5253, 5259, 5261, 5265, 5267, 5272, 5279, 5284, 5288, 5293, 5297, 5303, 5309, 5314, 5317, 5319, 5325, 5327, 5331, 5333, 5338, 5343, 5350, 5359, 5364, 5373, 5377, 5383, 5388, 5391, 5393, 5399, 5401, 5404, 5411, 5413, 5418, 5425, 5434, 5440, 5442, 5449, 5452, 5464, 5470, 5478, 5481, 5485, 5488, 5492, 5494, 5505, 5508, 5512, 5515, 5518, 5525, 5537, 5540, 5547, 5553, 5563, 5568, 5575, 5580, 5586, 5590, 5594, 5602, 5606, 5610, 5616, 5618, 5630, 5635, 5641, 5647, 5651, 5656, 5658, 5690, 5694, 5698, 5701, 5710, 5714, 5723, 5727, 5731, 5737, 5739, 5748, 5758, 5785, 5789, 5794, 5801, 5804, 5810, 5820, 5830, 5840, 5846, 5855, 5861, 5868, 5870, 5878, 5884, 5888, 5905, 5915, 5919, 5923, 5933, 5938, 6010, 6028, 6036, 6042, 6054, 6058, 6069, 6073, 6082, 6090, 6097, 6101, 6108, 6113, 6116, 6119, 6130, 6134, 6138, 6153, 6162, 6165, 6179, 6197, 6210, 6213, 6217, 6220, 6222, 6229, 6236, 6240, 6247, 6254, 6257, 6273, 6276, 6286, 6290, 6296, 6299, 6302, 6307, 6311, 6314, 6321, 6324, 6330, 6366, 6369, 6381, 6384, 6400, 6402, 6406, 6413, 6417, 6424, 6427, 6436, 6439, 6444, 6450, 6452, 6458, 6462, 6468, 6471, 6474, 6487, 6490, 6496, 6499, 6507, 6515, 6521, 6524, 6528, 6542, 6554, 6562, 6566, 6573, 6580, 6585, 6598, 6607, 6615, 6620, 6623, 6628, 6631, 6643, 6648, 6661, 6663, 6668, 6672, 6675, 6677, 6684, 6691, 6694, 6697, 6703, 6707, 6713, 6721, 6730, 6743, 6748, 6756, 6759, 6764, 6769, 6777, 6780, 6788, 6792, 6799, 6805, 6808, 6812, 6825, 6831, 6843, 6846, 6855, 6860, 6881, 6897, 6907, 6912, 6917, 6919, 6922, 6926, 6928, 6935, 6941, 6943, 6946, 6950, 6952, 6965, 6975, 6978, 6981, 6994, 7000, 7003, 7011, 7018, 7038, 7045, 7047, 7054, 7056, 7060, 7067, 7073, 7084, 7090, 7096, 7099, 7103, 7108, 7111, 7115, 7119, 7121, 7126, 7131, 7144, 7147, 7151, 7154, 7157, 7162, 7167, 7173, 7176, 7181, 7184, 7189, 7192, 7196, 7201, 7206, 7211, 7216, 7219, 7224, 7229, 7234, 7240, 7245, 7250, 7255, 7259, 7262, 7267, 7271, 7275, 7283, 7290, 7294, 7299, 7304, 7308, 7310, 7313, 7329, 7339, 7349, 7358, 7367, 7374, 7381, 7389, 7397, 7409, 7416, 7426, 7431, 7434, 7439, 7442, 7460, 7467, 7472, 7477, 7511, 7515, 7523, 7527, 7536, 7544, 7549, 7557, 7562, 7567, 7569, 7578, 7583, 7591, 7596, 7604, 7612, 7615, 7625, 7643, 7646, 7649, 7653, 7666, 7674, 7678, 7683, 7688, 7694, 7699, 7703, 7708, 7713, 7718, 7728, 7731, 7735, 7739, 7746, 7750, 7779, 7787, 7790, 7793, 7796, 7799, 7810, 7824, 7833, 7860, 7872, 7879, 7887, 7892, 7900, 7912, 7925, 7931, 7937, 7953, 7959, 7968, 7970, 7992, 8004, 8021, 8038, 8040, 8053, 8062, 8071, 8080, 8089] \ No newline at end of file +[4, 1, 895, 8012, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 1, 0, 5, 0, 836, 8, 0, 10, 0, 12, 0, 839, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 845, 8, 1, 1, 1, 3, 1, 848, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 900, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 919, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 930, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 946, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 963, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 998, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1008, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1013, 8, 12, 1, 12, 1, 12, 5, 12, 1017, 8, 12, 10, 12, 12, 12, 1020, 9, 12, 1, 13, 1, 13, 3, 13, 1024, 8, 13, 1, 13, 1, 13, 3, 13, 1028, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1037, 8, 13, 1, 13, 3, 13, 1040, 8, 13, 1, 13, 3, 13, 1043, 8, 13, 1, 13, 1, 13, 3, 13, 1047, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1054, 8, 14, 1, 14, 3, 14, 1057, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1062, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1068, 8, 14, 10, 14, 12, 14, 1071, 9, 14, 1, 14, 1, 14, 3, 14, 1075, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1080, 8, 14, 1, 14, 5, 14, 1083, 8, 14, 10, 14, 12, 14, 1086, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1097, 8, 15, 1, 15, 3, 15, 1100, 8, 15, 1, 15, 1, 15, 3, 15, 1104, 8, 15, 1, 15, 3, 15, 1107, 8, 15, 1, 15, 1, 15, 3, 15, 1111, 8, 15, 1, 15, 3, 15, 1114, 8, 15, 1, 15, 1, 15, 3, 15, 1118, 8, 15, 1, 15, 3, 15, 1121, 8, 15, 1, 15, 3, 15, 1124, 8, 15, 1, 15, 1, 15, 3, 15, 1128, 8, 15, 1, 15, 3, 15, 1131, 8, 15, 1, 15, 1, 15, 3, 15, 1135, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1141, 8, 16, 1, 16, 1, 16, 3, 16, 1145, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1150, 8, 16, 1, 16, 1, 16, 5, 16, 1154, 8, 16, 10, 16, 12, 16, 1157, 9, 16, 1, 16, 1, 16, 5, 16, 1161, 8, 16, 10, 16, 12, 16, 1164, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1171, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1187, 8, 18, 10, 18, 12, 18, 1190, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1196, 8, 19, 1, 19, 1, 19, 3, 19, 1200, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1206, 8, 19, 1, 19, 5, 19, 1209, 8, 19, 10, 19, 12, 19, 1212, 9, 19, 3, 19, 1214, 8, 19, 1, 19, 3, 19, 1217, 8, 19, 1, 19, 1, 19, 3, 19, 1221, 8, 19, 1, 19, 1, 19, 3, 19, 1225, 8, 19, 1, 19, 1, 19, 3, 19, 1229, 8, 19, 1, 19, 1, 19, 3, 19, 1233, 8, 19, 1, 19, 5, 19, 1236, 8, 19, 10, 19, 12, 19, 1239, 9, 19, 3, 19, 1241, 8, 19, 1, 19, 3, 19, 1244, 8, 19, 1, 19, 3, 19, 1247, 8, 19, 1, 19, 3, 19, 1250, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1256, 8, 19, 1, 19, 1, 19, 3, 19, 1260, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1270, 8, 19, 3, 19, 1272, 8, 19, 1, 20, 1, 20, 3, 20, 1276, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1283, 8, 20, 1, 20, 1, 20, 3, 20, 1287, 8, 20, 1, 20, 3, 20, 1290, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1295, 8, 20, 1, 20, 1, 20, 3, 20, 1299, 8, 20, 1, 20, 3, 20, 1302, 8, 20, 1, 20, 1, 20, 3, 20, 1306, 8, 20, 1, 20, 3, 20, 1309, 8, 20, 1, 21, 1, 21, 3, 21, 1313, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1326, 8, 21, 1, 21, 3, 21, 1329, 8, 21, 1, 21, 1, 21, 3, 21, 1333, 8, 21, 1, 21, 3, 21, 1336, 8, 21, 1, 21, 1, 21, 3, 21, 1340, 8, 21, 1, 21, 3, 21, 1343, 8, 21, 1, 21, 1, 21, 3, 21, 1347, 8, 21, 1, 21, 3, 21, 1350, 8, 21, 1, 21, 1, 21, 3, 21, 1354, 8, 21, 1, 21, 3, 21, 1357, 8, 21, 1, 21, 3, 21, 1360, 8, 21, 1, 21, 1, 21, 3, 21, 1364, 8, 21, 1, 21, 3, 21, 1367, 8, 21, 1, 21, 1, 21, 3, 21, 1371, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1377, 8, 22, 1, 22, 1, 22, 3, 22, 1381, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1393, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 1399, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1408, 8, 24, 10, 24, 12, 24, 1411, 9, 24, 1, 24, 1, 24, 3, 24, 1415, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1423, 8, 24, 1, 25, 1, 25, 3, 25, 1427, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1432, 8, 25, 1, 25, 3, 25, 1435, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1440, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1448, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1453, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1459, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1464, 8, 25, 1, 25, 1, 25, 3, 25, 1468, 8, 25, 3, 25, 1470, 8, 25, 1, 26, 3, 26, 1473, 8, 26, 1, 26, 1, 26, 3, 26, 1477, 8, 26, 1, 26, 1, 26, 3, 26, 1481, 8, 26, 1, 26, 3, 26, 1484, 8, 26, 1, 26, 1, 26, 3, 26, 1488, 8, 26, 1, 26, 1, 26, 3, 26, 1492, 8, 26, 1, 26, 1, 26, 3, 26, 1496, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1502, 8, 26, 1, 26, 3, 26, 1505, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1512, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 1517, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1523, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 1528, 8, 30, 10, 30, 12, 30, 1531, 9, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1536, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1542, 8, 30, 10, 30, 12, 30, 1545, 9, 30, 3, 30, 1547, 8, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1552, 8, 30, 10, 30, 12, 30, 1555, 9, 30, 3, 30, 1557, 8, 30, 3, 30, 1559, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1565, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1571, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1588, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1595, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 1602, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1614, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1619, 8, 36, 1, 36, 3, 36, 1622, 8, 36, 1, 37, 3, 37, 1625, 8, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1635, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1648, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1653, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1669, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 1675, 8, 40, 10, 40, 12, 40, 1678, 9, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1687, 8, 41, 1, 41, 3, 41, 1690, 8, 41, 1, 41, 1, 41, 5, 41, 1694, 8, 41, 10, 41, 12, 41, 1697, 9, 41, 1, 41, 1, 41, 3, 41, 1701, 8, 41, 1, 41, 3, 41, 1704, 8, 41, 1, 41, 1, 41, 5, 41, 1708, 8, 41, 10, 41, 12, 41, 1711, 9, 41, 1, 41, 3, 41, 1714, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1719, 8, 41, 1, 41, 1, 41, 5, 41, 1723, 8, 41, 10, 41, 12, 41, 1726, 9, 41, 1, 41, 3, 41, 1729, 8, 41, 1, 41, 1, 41, 3, 41, 1733, 8, 41, 1, 41, 3, 41, 1736, 8, 41, 1, 41, 3, 41, 1739, 8, 41, 1, 41, 1, 41, 5, 41, 1743, 8, 41, 10, 41, 12, 41, 1746, 9, 41, 1, 41, 3, 41, 1749, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1754, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1765, 8, 41, 1, 42, 3, 42, 1768, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1775, 8, 42, 1, 42, 3, 42, 1778, 8, 42, 1, 43, 1, 43, 3, 43, 1782, 8, 43, 1, 44, 1, 44, 5, 44, 1786, 8, 44, 10, 44, 12, 44, 1789, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1800, 8, 45, 1, 45, 3, 45, 1803, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1808, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1821, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1828, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1834, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1839, 8, 46, 1, 46, 1, 46, 3, 46, 1843, 8, 46, 1, 46, 3, 46, 1846, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1854, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1862, 8, 47, 3, 47, 1864, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1874, 8, 48, 1, 49, 1, 49, 3, 49, 1878, 8, 49, 1, 49, 3, 49, 1881, 8, 49, 1, 49, 1, 49, 3, 49, 1885, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1890, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1895, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1900, 8, 49, 1, 49, 1, 49, 3, 49, 1904, 8, 49, 1, 49, 1, 49, 3, 49, 1908, 8, 49, 1, 49, 1, 49, 3, 49, 1912, 8, 49, 1, 49, 1, 49, 3, 49, 1916, 8, 49, 1, 49, 1, 49, 3, 49, 1920, 8, 49, 1, 49, 1, 49, 3, 49, 1924, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1929, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1934, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1939, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1945, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1950, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1955, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1960, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1965, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1970, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1976, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1981, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1986, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1991, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1996, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2001, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2006, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2011, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2018, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2023, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2028, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2033, 8, 49, 1, 49, 1, 49, 3, 49, 2037, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2042, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2050, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2055, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 2061, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2073, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2080, 8, 52, 3, 52, 2082, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 2088, 8, 52, 10, 52, 12, 52, 2091, 9, 52, 1, 52, 1, 52, 3, 52, 2095, 8, 52, 1, 53, 3, 53, 2098, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2106, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2112, 8, 53, 1, 53, 1, 53, 3, 53, 2116, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2129, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2141, 8, 53, 3, 53, 2143, 8, 53, 1, 54, 3, 54, 2146, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2154, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2160, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2166, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2177, 8, 55, 10, 55, 12, 55, 2180, 9, 55, 1, 55, 1, 55, 5, 55, 2184, 8, 55, 10, 55, 12, 55, 2187, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2193, 8, 55, 10, 55, 12, 55, 2196, 9, 55, 1, 55, 1, 55, 3, 55, 2200, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2209, 8, 55, 10, 55, 12, 55, 2212, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2218, 8, 55, 10, 55, 12, 55, 2221, 9, 55, 1, 55, 1, 55, 3, 55, 2225, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2235, 8, 55, 10, 55, 12, 55, 2238, 9, 55, 1, 55, 1, 55, 5, 55, 2242, 8, 55, 10, 55, 12, 55, 2245, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2251, 8, 55, 10, 55, 12, 55, 2254, 9, 55, 1, 55, 1, 55, 3, 55, 2258, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2268, 8, 55, 10, 55, 12, 55, 2271, 9, 55, 1, 55, 1, 55, 5, 55, 2275, 8, 55, 10, 55, 12, 55, 2278, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2284, 8, 55, 10, 55, 12, 55, 2287, 9, 55, 1, 55, 1, 55, 3, 55, 2291, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2296, 8, 55, 10, 55, 12, 55, 2299, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2305, 8, 55, 10, 55, 12, 55, 2308, 9, 55, 1, 55, 1, 55, 3, 55, 2312, 8, 55, 3, 55, 2314, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2319, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 4, 57, 2325, 8, 57, 11, 57, 12, 57, 2326, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 2334, 8, 58, 10, 58, 12, 58, 2337, 9, 58, 1, 59, 3, 59, 2340, 8, 59, 1, 59, 3, 59, 2343, 8, 59, 1, 59, 1, 59, 3, 59, 2347, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2352, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2358, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2364, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2369, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2374, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2379, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2384, 8, 59, 1, 59, 3, 59, 2387, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2392, 8, 60, 1, 60, 4, 60, 2395, 8, 60, 11, 60, 12, 60, 2396, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2407, 8, 60, 1, 61, 1, 61, 3, 61, 2411, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2418, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2423, 8, 61, 1, 61, 3, 61, 2426, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2431, 8, 61, 1, 61, 3, 61, 2434, 8, 61, 1, 61, 1, 61, 3, 61, 2438, 8, 61, 1, 61, 1, 61, 3, 61, 2442, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2448, 8, 62, 10, 62, 12, 62, 2451, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2469, 8, 64, 1, 64, 3, 64, 2472, 8, 64, 1, 64, 3, 64, 2475, 8, 64, 1, 64, 1, 64, 3, 64, 2479, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2487, 8, 65, 10, 65, 12, 65, 2490, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2500, 8, 66, 10, 66, 12, 66, 2503, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2513, 8, 67, 10, 67, 12, 67, 2516, 9, 67, 3, 67, 2518, 8, 67, 1, 67, 1, 67, 5, 67, 2522, 8, 67, 10, 67, 12, 67, 2525, 9, 67, 3, 67, 2527, 8, 67, 1, 68, 1, 68, 3, 68, 2531, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2540, 8, 68, 1, 68, 3, 68, 2543, 8, 68, 1, 68, 3, 68, 2546, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2551, 8, 68, 1, 68, 1, 68, 3, 68, 2555, 8, 68, 1, 68, 3, 68, 2558, 8, 68, 1, 68, 1, 68, 3, 68, 2562, 8, 68, 1, 68, 1, 68, 3, 68, 2566, 8, 68, 1, 68, 3, 68, 2569, 8, 68, 1, 68, 1, 68, 3, 68, 2573, 8, 68, 1, 68, 3, 68, 2576, 8, 68, 1, 68, 1, 68, 3, 68, 2580, 8, 68, 1, 68, 3, 68, 2583, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2589, 8, 69, 1, 69, 3, 69, 2592, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2597, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2605, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2611, 8, 69, 1, 69, 1, 69, 3, 69, 2615, 8, 69, 1, 70, 1, 70, 3, 70, 2619, 8, 70, 1, 70, 5, 70, 2622, 8, 70, 10, 70, 12, 70, 2625, 9, 70, 1, 70, 1, 70, 3, 70, 2629, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2636, 8, 70, 1, 70, 1, 70, 3, 70, 2640, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2649, 8, 70, 10, 70, 12, 70, 2652, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2659, 8, 70, 1, 70, 3, 70, 2662, 8, 70, 1, 70, 1, 70, 5, 70, 2666, 8, 70, 10, 70, 12, 70, 2669, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2674, 8, 70, 1, 70, 3, 70, 2677, 8, 70, 1, 70, 1, 70, 5, 70, 2681, 8, 70, 10, 70, 12, 70, 2684, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2689, 8, 70, 3, 70, 2691, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2696, 8, 70, 1, 70, 1, 70, 5, 70, 2700, 8, 70, 10, 70, 12, 70, 2703, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2708, 8, 70, 3, 70, 2710, 8, 70, 1, 70, 1, 70, 3, 70, 2714, 8, 70, 1, 70, 3, 70, 2717, 8, 70, 1, 70, 3, 70, 2720, 8, 70, 1, 70, 1, 70, 5, 70, 2724, 8, 70, 10, 70, 12, 70, 2727, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2732, 8, 70, 3, 70, 2734, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2739, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2746, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2755, 8, 70, 1, 70, 3, 70, 2758, 8, 70, 1, 70, 1, 70, 3, 70, 2762, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2767, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2777, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2786, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2794, 8, 70, 1, 70, 3, 70, 2797, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2805, 8, 70, 1, 70, 3, 70, 2808, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2815, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2820, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2828, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2844, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2849, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2856, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2875, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2881, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2889, 8, 71, 10, 71, 12, 71, 2892, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2903, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2910, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2917, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2930, 8, 71, 10, 71, 12, 71, 2933, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2945, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2951, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2957, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2963, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2969, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2975, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2981, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 2986, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 3, 73, 2993, 8, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 3, 74, 3000, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3007, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3012, 8, 74, 1, 74, 5, 74, 3015, 8, 74, 10, 74, 12, 74, 3018, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 3026, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3033, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3040, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 3, 78, 3047, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 3056, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 3062, 8, 80, 1, 80, 1, 80, 3, 80, 3066, 8, 80, 1, 80, 1, 80, 3, 80, 3070, 8, 80, 1, 81, 1, 81, 3, 81, 3074, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 3080, 8, 81, 1, 81, 3, 81, 3083, 8, 81, 1, 82, 1, 82, 1, 82, 3, 82, 3088, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 3, 83, 3095, 8, 83, 1, 83, 1, 83, 1, 83, 5, 83, 3100, 8, 83, 10, 83, 12, 83, 3103, 9, 83, 1, 83, 3, 83, 3106, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 3111, 8, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3121, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 3127, 8, 85, 10, 85, 12, 85, 3130, 9, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3135, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3142, 8, 86, 10, 86, 12, 86, 3145, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 3, 88, 3153, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 3162, 8, 89, 1, 89, 3, 89, 3165, 8, 89, 1, 90, 1, 90, 3, 90, 3169, 8, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3178, 8, 92, 1, 93, 1, 93, 3, 93, 3182, 8, 93, 1, 93, 3, 93, 3185, 8, 93, 1, 93, 3, 93, 3188, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 3194, 8, 93, 1, 93, 3, 93, 3197, 8, 93, 1, 93, 3, 93, 3200, 8, 93, 1, 93, 1, 93, 3, 93, 3204, 8, 93, 1, 93, 3, 93, 3207, 8, 93, 1, 93, 3, 93, 3210, 8, 93, 1, 93, 3, 93, 3213, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 3222, 8, 93, 10, 93, 12, 93, 3225, 9, 93, 3, 93, 3227, 8, 93, 1, 94, 1, 94, 1, 94, 3, 94, 3232, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3238, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 3243, 8, 96, 1, 96, 4, 96, 3246, 8, 96, 11, 96, 12, 96, 3247, 1, 97, 3, 97, 3251, 8, 97, 1, 97, 1, 97, 3, 97, 3255, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 3260, 8, 98, 1, 98, 3, 98, 3263, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3268, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3278, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3283, 8, 98, 1, 98, 1, 98, 4, 98, 3287, 8, 98, 11, 98, 12, 98, 3288, 3, 98, 3291, 8, 98, 1, 98, 1, 98, 4, 98, 3295, 8, 98, 11, 98, 12, 98, 3296, 3, 98, 3299, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3305, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3311, 8, 98, 10, 98, 12, 98, 3314, 9, 98, 1, 98, 1, 98, 3, 98, 3318, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 3324, 8, 98, 10, 98, 12, 98, 3327, 9, 98, 3, 98, 3329, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3334, 8, 99, 1, 99, 3, 99, 3337, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3342, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3350, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3356, 8, 99, 1, 99, 1, 99, 3, 99, 3360, 8, 99, 3, 99, 3362, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3368, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3374, 8, 99, 10, 99, 12, 99, 3377, 9, 99, 1, 99, 1, 99, 3, 99, 3381, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3387, 8, 99, 10, 99, 12, 99, 3390, 9, 99, 3, 99, 3392, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 3397, 8, 100, 1, 100, 3, 100, 3400, 8, 100, 1, 100, 1, 100, 3, 100, 3404, 8, 100, 1, 100, 3, 100, 3407, 8, 100, 1, 100, 3, 100, 3410, 8, 100, 1, 101, 1, 101, 3, 101, 3414, 8, 101, 1, 101, 3, 101, 3417, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3425, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3431, 8, 101, 1, 101, 1, 101, 3, 101, 3435, 8, 101, 1, 102, 1, 102, 5, 102, 3439, 8, 102, 10, 102, 12, 102, 3442, 9, 102, 1, 102, 1, 102, 3, 102, 3446, 8, 102, 1, 102, 1, 102, 3, 102, 3450, 8, 102, 3, 102, 3452, 8, 102, 1, 102, 1, 102, 5, 102, 3456, 8, 102, 10, 102, 12, 102, 3459, 9, 102, 1, 102, 3, 102, 3462, 8, 102, 1, 102, 3, 102, 3465, 8, 102, 1, 102, 3, 102, 3468, 8, 102, 1, 102, 3, 102, 3471, 8, 102, 1, 102, 1, 102, 5, 102, 3475, 8, 102, 10, 102, 12, 102, 3478, 9, 102, 1, 102, 1, 102, 3, 102, 3482, 8, 102, 1, 102, 3, 102, 3485, 8, 102, 1, 102, 3, 102, 3488, 8, 102, 1, 102, 3, 102, 3491, 8, 102, 1, 102, 3, 102, 3494, 8, 102, 3, 102, 3496, 8, 102, 1, 103, 3, 103, 3499, 8, 103, 1, 103, 1, 103, 3, 103, 3503, 8, 103, 1, 103, 3, 103, 3506, 8, 103, 1, 103, 3, 103, 3509, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3517, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3523, 8, 104, 1, 104, 5, 104, 3526, 8, 104, 10, 104, 12, 104, 3529, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3537, 8, 105, 1, 105, 5, 105, 3540, 8, 105, 10, 105, 12, 105, 3543, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3549, 8, 106, 1, 106, 3, 106, 3552, 8, 106, 1, 106, 3, 106, 3555, 8, 106, 1, 106, 1, 106, 3, 106, 3559, 8, 106, 1, 107, 1, 107, 3, 107, 3563, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3569, 8, 108, 1, 108, 1, 108, 3, 108, 3573, 8, 108, 1, 109, 1, 109, 1, 109, 5, 109, 3578, 8, 109, 10, 109, 12, 109, 3581, 9, 109, 1, 109, 3, 109, 3584, 8, 109, 1, 109, 3, 109, 3587, 8, 109, 1, 109, 3, 109, 3590, 8, 109, 1, 110, 1, 110, 1, 110, 3, 110, 3595, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3602, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3610, 8, 112, 10, 112, 12, 112, 3613, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3619, 8, 113, 10, 113, 12, 113, 3622, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 3, 115, 3630, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3638, 8, 116, 10, 116, 12, 116, 3641, 9, 116, 3, 116, 3643, 8, 116, 1, 116, 1, 116, 3, 116, 3647, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3653, 8, 116, 1, 117, 1, 117, 3, 117, 3657, 8, 117, 1, 117, 3, 117, 3660, 8, 117, 1, 117, 3, 117, 3663, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3668, 8, 117, 1, 117, 3, 117, 3671, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3678, 8, 117, 1, 117, 1, 117, 3, 117, 3682, 8, 117, 1, 117, 3, 117, 3685, 8, 117, 1, 117, 1, 117, 3, 117, 3689, 8, 117, 1, 118, 1, 118, 3, 118, 3693, 8, 118, 1, 118, 3, 118, 3696, 8, 118, 1, 118, 3, 118, 3699, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3704, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3710, 8, 118, 5, 118, 3712, 8, 118, 10, 118, 12, 118, 3715, 9, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3724, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3730, 8, 118, 5, 118, 3732, 8, 118, 10, 118, 12, 118, 3735, 9, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3740, 8, 118, 1, 118, 1, 118, 3, 118, 3744, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3750, 8, 119, 1, 119, 3, 119, 3753, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3765, 8, 120, 1, 120, 1, 120, 3, 120, 3769, 8, 120, 1, 120, 1, 120, 3, 120, 3773, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3781, 8, 121, 1, 121, 1, 121, 3, 121, 3785, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3797, 8, 123, 10, 123, 12, 123, 3800, 9, 123, 1, 124, 1, 124, 3, 124, 3804, 8, 124, 1, 124, 3, 124, 3807, 8, 124, 1, 124, 1, 124, 3, 124, 3811, 8, 124, 1, 124, 3, 124, 3814, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3820, 8, 124, 10, 124, 12, 124, 3823, 9, 124, 1, 124, 1, 124, 3, 124, 3827, 8, 124, 1, 124, 3, 124, 3830, 8, 124, 1, 124, 3, 124, 3833, 8, 124, 1, 125, 1, 125, 3, 125, 3837, 8, 125, 1, 125, 3, 125, 3840, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3847, 8, 125, 10, 125, 12, 125, 3850, 9, 125, 1, 125, 1, 125, 3, 125, 3854, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3861, 8, 126, 10, 126, 12, 126, 3864, 9, 126, 1, 127, 1, 127, 3, 127, 3868, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3873, 8, 128, 10, 128, 12, 128, 3876, 9, 128, 1, 129, 1, 129, 5, 129, 3880, 8, 129, 10, 129, 12, 129, 3883, 9, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3888, 8, 129, 10, 129, 12, 129, 3891, 9, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3896, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3904, 8, 130, 1, 130, 3, 130, 3907, 8, 130, 1, 130, 3, 130, 3910, 8, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3915, 8, 130, 10, 130, 12, 130, 3918, 9, 130, 3, 130, 3920, 8, 130, 1, 130, 3, 130, 3923, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3930, 8, 130, 1, 130, 3, 130, 3933, 8, 130, 1, 130, 1, 130, 3, 130, 3937, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3943, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3953, 8, 132, 1, 132, 1, 132, 3, 132, 3957, 8, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3966, 8, 133, 1, 134, 3, 134, 3969, 8, 134, 1, 134, 1, 134, 3, 134, 3973, 8, 134, 1, 134, 1, 134, 5, 134, 3977, 8, 134, 10, 134, 12, 134, 3980, 9, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3985, 8, 134, 10, 134, 12, 134, 3988, 9, 134, 1, 134, 1, 134, 3, 134, 3992, 8, 134, 1, 134, 1, 134, 3, 134, 3996, 8, 134, 1, 134, 1, 134, 5, 134, 4000, 8, 134, 10, 134, 12, 134, 4003, 9, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4008, 8, 134, 1, 134, 3, 134, 4011, 8, 134, 3, 134, 4013, 8, 134, 1, 134, 1, 134, 3, 134, 4017, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4026, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4036, 8, 136, 1, 137, 1, 137, 5, 137, 4040, 8, 137, 10, 137, 12, 137, 4043, 9, 137, 1, 137, 1, 137, 3, 137, 4047, 8, 137, 1, 137, 1, 137, 3, 137, 4051, 8, 137, 1, 137, 3, 137, 4054, 8, 137, 1, 137, 3, 137, 4057, 8, 137, 1, 137, 3, 137, 4060, 8, 137, 1, 137, 3, 137, 4063, 8, 137, 1, 137, 3, 137, 4066, 8, 137, 1, 138, 1, 138, 3, 138, 4070, 8, 138, 1, 138, 1, 138, 3, 138, 4074, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4082, 8, 139, 1, 139, 1, 139, 3, 139, 4086, 8, 139, 1, 139, 3, 139, 4089, 8, 139, 3, 139, 4091, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4104, 8, 140, 1, 140, 3, 140, 4107, 8, 140, 1, 141, 1, 141, 1, 141, 5, 141, 4112, 8, 141, 10, 141, 12, 141, 4115, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4124, 8, 142, 1, 142, 3, 142, 4127, 8, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4132, 8, 142, 3, 142, 4134, 8, 142, 1, 142, 1, 142, 3, 142, 4138, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4146, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4152, 8, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4161, 8, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4174, 8, 145, 1, 146, 1, 146, 3, 146, 4178, 8, 146, 1, 146, 1, 146, 5, 146, 4182, 8, 146, 10, 146, 12, 146, 4185, 9, 146, 1, 147, 1, 147, 3, 147, 4189, 8, 147, 1, 147, 1, 147, 3, 147, 4193, 8, 147, 1, 147, 3, 147, 4196, 8, 147, 1, 147, 1, 147, 3, 147, 4200, 8, 147, 1, 147, 3, 147, 4203, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4211, 8, 147, 1, 147, 3, 147, 4214, 8, 147, 3, 147, 4216, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 4222, 8, 148, 10, 148, 12, 148, 4225, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4236, 8, 148, 1, 148, 1, 148, 4, 148, 4240, 8, 148, 11, 148, 12, 148, 4241, 3, 148, 4244, 8, 148, 1, 148, 1, 148, 4, 148, 4248, 8, 148, 11, 148, 12, 148, 4249, 3, 148, 4252, 8, 148, 3, 148, 4254, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4260, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4268, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 4276, 8, 150, 1, 151, 1, 151, 3, 151, 4280, 8, 151, 1, 151, 1, 151, 3, 151, 4284, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 4291, 8, 152, 10, 152, 12, 152, 4294, 9, 152, 1, 152, 1, 152, 3, 152, 4298, 8, 152, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 4316, 8, 154, 10, 154, 12, 154, 4319, 9, 154, 1, 155, 1, 155, 3, 155, 4323, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4329, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4336, 8, 156, 1, 157, 1, 157, 1, 157, 3, 157, 4341, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 4348, 8, 158, 10, 158, 12, 158, 4351, 9, 158, 3, 158, 4353, 8, 158, 1, 159, 1, 159, 3, 159, 4357, 8, 159, 1, 160, 1, 160, 3, 160, 4361, 8, 160, 1, 160, 1, 160, 3, 160, 4365, 8, 160, 1, 160, 3, 160, 4368, 8, 160, 1, 160, 3, 160, 4371, 8, 160, 1, 160, 3, 160, 4374, 8, 160, 1, 161, 1, 161, 3, 161, 4378, 8, 161, 1, 161, 1, 161, 3, 161, 4382, 8, 161, 1, 161, 3, 161, 4385, 8, 161, 1, 161, 3, 161, 4388, 8, 161, 1, 161, 3, 161, 4391, 8, 161, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 3, 163, 4398, 8, 163, 1, 163, 1, 163, 3, 163, 4402, 8, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 4415, 8, 165, 10, 165, 12, 165, 4418, 9, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 4430, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 4436, 8, 168, 10, 168, 12, 168, 4439, 9, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4448, 8, 169, 1, 170, 1, 170, 3, 170, 4452, 8, 170, 1, 170, 3, 170, 4455, 8, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4461, 8, 171, 1, 171, 3, 171, 4464, 8, 171, 1, 171, 3, 171, 4467, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4476, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 4485, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 4493, 8, 174, 10, 174, 12, 174, 4496, 9, 174, 1, 174, 3, 174, 4499, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 4507, 8, 175, 10, 175, 12, 175, 4510, 9, 175, 1, 175, 3, 175, 4513, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4522, 8, 176, 10, 176, 12, 176, 4525, 9, 176, 1, 176, 3, 176, 4528, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4537, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4544, 8, 178, 10, 178, 12, 178, 4547, 9, 178, 3, 178, 4549, 8, 178, 1, 178, 1, 178, 3, 178, 4553, 8, 178, 1, 178, 5, 178, 4556, 8, 178, 10, 178, 12, 178, 4559, 9, 178, 1, 178, 3, 178, 4562, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4569, 8, 179, 10, 179, 12, 179, 4572, 9, 179, 3, 179, 4574, 8, 179, 1, 179, 3, 179, 4577, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4584, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4590, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4596, 8, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4620, 8, 182, 10, 182, 12, 182, 4623, 9, 182, 3, 182, 4625, 8, 182, 1, 182, 3, 182, 4628, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4647, 8, 186, 3, 186, 4649, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4670, 8, 187, 10, 187, 12, 187, 4673, 9, 187, 3, 187, 4675, 8, 187, 1, 187, 3, 187, 4678, 8, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4697, 8, 191, 3, 191, 4699, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4711, 8, 193, 10, 193, 12, 193, 4714, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4724, 8, 193, 10, 193, 12, 193, 4727, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 4761, 8, 193, 10, 193, 12, 193, 4764, 9, 193, 1, 193, 1, 193, 3, 193, 4768, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4803, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4817, 8, 197, 1, 198, 1, 198, 1, 198, 5, 198, 4822, 8, 198, 10, 198, 12, 198, 4825, 9, 198, 1, 198, 3, 198, 4828, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4834, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4842, 8, 200, 3, 200, 4844, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4855, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4865, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4872, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4878, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 3, 208, 4886, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 4891, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4897, 8, 209, 10, 209, 12, 209, 4900, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4905, 8, 209, 10, 209, 12, 209, 4908, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4913, 8, 209, 10, 209, 12, 209, 4916, 9, 209, 1, 209, 1, 209, 1, 209, 5, 209, 4921, 8, 209, 10, 209, 12, 209, 4924, 9, 209, 1, 209, 5, 209, 4927, 8, 209, 10, 209, 12, 209, 4930, 9, 209, 1, 209, 1, 209, 3, 209, 4934, 8, 209, 1, 210, 1, 210, 1, 210, 3, 210, 4939, 8, 210, 1, 210, 4, 210, 4942, 8, 210, 11, 210, 12, 210, 4943, 1, 210, 1, 210, 4, 210, 4948, 8, 210, 11, 210, 12, 210, 4949, 3, 210, 4952, 8, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 4, 211, 4961, 8, 211, 11, 211, 12, 211, 4962, 1, 211, 5, 211, 4966, 8, 211, 10, 211, 12, 211, 4969, 9, 211, 1, 211, 1, 211, 4, 211, 4973, 8, 211, 11, 211, 12, 211, 4974, 3, 211, 4977, 8, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 3, 214, 4991, 8, 214, 1, 214, 1, 214, 4, 214, 4995, 8, 214, 11, 214, 12, 214, 4996, 1, 214, 1, 214, 1, 214, 3, 214, 5002, 8, 214, 1, 215, 1, 215, 1, 215, 3, 215, 5007, 8, 215, 1, 215, 1, 215, 4, 215, 5011, 8, 215, 11, 215, 12, 215, 5012, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5020, 8, 215, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 3, 217, 5028, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 4, 217, 5034, 8, 217, 11, 217, 12, 217, 5035, 1, 217, 1, 217, 1, 217, 3, 217, 5041, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5047, 8, 218, 1, 218, 3, 218, 5050, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5058, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 5065, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5074, 8, 220, 1, 220, 3, 220, 5077, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5092, 8, 222, 10, 222, 12, 222, 5095, 9, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5102, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5110, 8, 223, 1, 224, 1, 224, 3, 224, 5114, 8, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5121, 8, 225, 1, 225, 1, 225, 4, 225, 5125, 8, 225, 11, 225, 12, 225, 5126, 1, 226, 1, 226, 1, 226, 1, 226, 4, 226, 5133, 8, 226, 11, 226, 12, 226, 5134, 1, 227, 1, 227, 1, 227, 3, 227, 5140, 8, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5145, 8, 227, 10, 227, 12, 227, 5148, 9, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5153, 8, 227, 10, 227, 12, 227, 5156, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5162, 8, 227, 1, 227, 5, 227, 5165, 8, 227, 10, 227, 12, 227, 5168, 9, 227, 3, 227, 5170, 8, 227, 3, 227, 5172, 8, 227, 1, 227, 1, 227, 4, 227, 5176, 8, 227, 11, 227, 12, 227, 5177, 3, 227, 5180, 8, 227, 1, 227, 1, 227, 5, 227, 5184, 8, 227, 10, 227, 12, 227, 5187, 9, 227, 1, 227, 1, 227, 3, 227, 5191, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5198, 8, 227, 1, 228, 1, 228, 1, 228, 3, 228, 5203, 8, 228, 1, 228, 1, 228, 3, 228, 5207, 8, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5212, 8, 228, 5, 228, 5214, 8, 228, 10, 228, 12, 228, 5217, 9, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5222, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5228, 8, 228, 1, 228, 5, 228, 5231, 8, 228, 10, 228, 12, 228, 5234, 9, 228, 3, 228, 5236, 8, 228, 3, 228, 5238, 8, 228, 1, 228, 1, 228, 4, 228, 5242, 8, 228, 11, 228, 12, 228, 5243, 3, 228, 5246, 8, 228, 1, 228, 1, 228, 5, 228, 5250, 8, 228, 10, 228, 12, 228, 5253, 9, 228, 1, 228, 1, 228, 3, 228, 5257, 8, 228, 1, 229, 1, 229, 1, 229, 3, 229, 5262, 8, 229, 1, 229, 1, 229, 1, 229, 5, 229, 5267, 8, 229, 10, 229, 12, 229, 5270, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5276, 8, 230, 10, 230, 12, 230, 5279, 9, 230, 1, 230, 1, 230, 3, 230, 5283, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5290, 8, 230, 10, 230, 12, 230, 5293, 9, 230, 1, 230, 3, 230, 5296, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5302, 8, 230, 1, 230, 5, 230, 5305, 8, 230, 10, 230, 12, 230, 5308, 9, 230, 3, 230, 5310, 8, 230, 3, 230, 5312, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5318, 8, 230, 10, 230, 12, 230, 5321, 9, 230, 3, 230, 5323, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5330, 8, 230, 3, 230, 5332, 8, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5337, 8, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5342, 8, 230, 10, 230, 12, 230, 5345, 9, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5351, 8, 230, 10, 230, 12, 230, 5354, 9, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5359, 8, 230, 3, 230, 5361, 8, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5368, 8, 231, 1, 231, 3, 231, 5371, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 5381, 8, 232, 10, 232, 12, 232, 5384, 9, 232, 1, 232, 1, 232, 1, 232, 3, 232, 5389, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5397, 8, 233, 1, 233, 3, 233, 5400, 8, 233, 1, 233, 1, 233, 3, 233, 5404, 8, 233, 1, 233, 3, 233, 5407, 8, 233, 1, 233, 1, 233, 3, 233, 5411, 8, 233, 3, 233, 5413, 8, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5424, 8, 234, 1, 234, 3, 234, 5427, 8, 234, 1, 234, 1, 234, 3, 234, 5431, 8, 234, 1, 234, 3, 234, 5434, 8, 234, 1, 234, 3, 234, 5437, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5444, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 5, 236, 5454, 8, 236, 10, 236, 12, 236, 5457, 9, 236, 3, 236, 5459, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5466, 8, 237, 1, 237, 1, 237, 5, 237, 5470, 8, 237, 10, 237, 12, 237, 5473, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5480, 8, 238, 10, 238, 12, 238, 5483, 9, 238, 1, 239, 1, 239, 3, 239, 5487, 8, 239, 1, 239, 1, 239, 1, 239, 5, 239, 5492, 8, 239, 10, 239, 12, 239, 5495, 9, 239, 1, 239, 1, 239, 3, 239, 5499, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5505, 8, 239, 1, 239, 1, 239, 3, 239, 5509, 8, 239, 1, 239, 1, 239, 3, 239, 5513, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5521, 8, 239, 1, 239, 1, 239, 3, 239, 5525, 8, 239, 1, 239, 1, 239, 3, 239, 5529, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5535, 8, 239, 3, 239, 5537, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5549, 8, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5554, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5560, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5566, 8, 242, 1, 242, 1, 242, 3, 242, 5570, 8, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5575, 8, 242, 3, 242, 5577, 8, 242, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5601, 8, 244, 4, 244, 5603, 8, 244, 11, 244, 12, 244, 5604, 1, 244, 3, 244, 5608, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5617, 8, 245, 1, 245, 1, 245, 3, 245, 5621, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5630, 8, 245, 1, 245, 1, 245, 3, 245, 5634, 8, 245, 1, 245, 1, 245, 3, 245, 5638, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5644, 8, 245, 3, 245, 5646, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5655, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5665, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5692, 8, 247, 1, 248, 1, 248, 3, 248, 5696, 8, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5701, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5708, 8, 249, 1, 249, 3, 249, 5711, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5717, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5727, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5737, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5747, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5753, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5762, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5768, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5775, 8, 252, 3, 252, 5777, 8, 252, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 3, 254, 5785, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5791, 8, 254, 1, 254, 1, 254, 3, 254, 5795, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5812, 8, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5822, 8, 257, 1, 258, 1, 258, 3, 258, 5826, 8, 258, 1, 258, 1, 258, 3, 258, 5830, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5840, 8, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5845, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5917, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5935, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 5943, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5949, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5961, 8, 261, 1, 261, 1, 261, 3, 261, 5965, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5976, 8, 261, 1, 261, 1, 261, 3, 261, 5980, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5989, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 5995, 8, 262, 10, 262, 12, 262, 5998, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 6004, 8, 263, 1, 264, 1, 264, 3, 264, 6008, 8, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 6015, 8, 265, 1, 265, 1, 265, 1, 265, 3, 265, 6020, 8, 265, 1, 265, 3, 265, 6023, 8, 265, 1, 265, 3, 265, 6026, 8, 265, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6037, 8, 267, 1, 268, 1, 268, 3, 268, 6041, 8, 268, 1, 268, 1, 268, 3, 268, 6045, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6058, 8, 269, 10, 269, 12, 269, 6061, 9, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 6067, 8, 269, 10, 269, 12, 269, 6070, 9, 269, 3, 269, 6072, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6084, 8, 271, 10, 271, 12, 271, 6087, 9, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6104, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 6117, 8, 274, 1, 274, 3, 274, 6120, 8, 274, 1, 274, 1, 274, 3, 274, 6124, 8, 274, 1, 274, 3, 274, 6127, 8, 274, 3, 274, 6129, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6136, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6143, 8, 275, 5, 275, 6145, 8, 275, 10, 275, 12, 275, 6148, 9, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6154, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6161, 8, 275, 1, 275, 3, 275, 6164, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 5, 275, 6178, 8, 275, 10, 275, 12, 275, 6181, 9, 275, 3, 275, 6183, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6193, 8, 276, 1, 276, 1, 276, 3, 276, 6197, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6203, 8, 276, 1, 276, 3, 276, 6206, 8, 276, 1, 276, 3, 276, 6209, 8, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6214, 8, 276, 1, 276, 1, 276, 3, 276, 6218, 8, 276, 1, 276, 3, 276, 6221, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6228, 8, 276, 1, 276, 3, 276, 6231, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6237, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6273, 8, 276, 1, 276, 3, 276, 6276, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6288, 8, 276, 1, 276, 3, 276, 6291, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6307, 8, 276, 3, 276, 6309, 8, 276, 1, 276, 1, 276, 3, 276, 6313, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6320, 8, 276, 1, 276, 1, 276, 3, 276, 6324, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6331, 8, 276, 1, 276, 3, 276, 6334, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6341, 8, 276, 10, 276, 12, 276, 6344, 9, 276, 3, 276, 6346, 8, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6351, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6357, 8, 276, 3, 276, 6359, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6365, 8, 276, 1, 276, 1, 276, 3, 276, 6369, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6375, 8, 277, 1, 277, 3, 277, 6378, 8, 277, 1, 277, 3, 277, 6381, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6394, 8, 278, 1, 278, 3, 278, 6397, 8, 278, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6403, 8, 279, 1, 280, 3, 280, 6406, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6414, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6422, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6428, 8, 281, 1, 281, 3, 281, 6431, 8, 281, 1, 281, 1, 281, 3, 281, 6435, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6449, 8, 282, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 6459, 8, 284, 10, 284, 12, 284, 6462, 9, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6469, 8, 284, 1, 284, 1, 284, 3, 284, 6473, 8, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 3, 285, 6480, 8, 285, 1, 285, 1, 285, 1, 285, 5, 285, 6485, 8, 285, 10, 285, 12, 285, 6488, 9, 285, 1, 286, 1, 286, 3, 286, 6492, 8, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 5, 287, 6503, 8, 287, 10, 287, 12, 287, 6506, 9, 287, 1, 288, 1, 288, 1, 288, 1, 288, 5, 288, 6512, 8, 288, 10, 288, 12, 288, 6515, 9, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6522, 8, 289, 1, 290, 1, 290, 1, 290, 3, 290, 6527, 8, 290, 1, 290, 3, 290, 6530, 8, 290, 1, 291, 1, 291, 1, 291, 3, 291, 6535, 8, 291, 1, 291, 3, 291, 6538, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6550, 8, 294, 1, 295, 1, 295, 1, 295, 3, 295, 6555, 8, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6568, 8, 295, 3, 295, 6570, 8, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6575, 8, 295, 1, 295, 1, 295, 3, 295, 6579, 8, 295, 1, 295, 3, 295, 6582, 8, 295, 3, 295, 6584, 8, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6591, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6598, 8, 297, 1, 297, 3, 297, 6601, 8, 297, 1, 297, 3, 297, 6604, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6610, 8, 297, 1, 297, 1, 297, 3, 297, 6614, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6620, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6628, 8, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6637, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 3, 303, 6650, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6655, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 5, 303, 6661, 8, 303, 10, 303, 12, 303, 6664, 9, 303, 3, 303, 6666, 8, 303, 1, 304, 1, 304, 1, 304, 3, 304, 6671, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6676, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6682, 8, 304, 10, 304, 12, 304, 6685, 9, 304, 3, 304, 6687, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6695, 8, 305, 1, 306, 1, 306, 3, 306, 6699, 8, 306, 1, 306, 1, 306, 1, 306, 5, 306, 6704, 8, 306, 10, 306, 12, 306, 6707, 9, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6712, 8, 307, 1, 307, 3, 307, 6715, 8, 307, 1, 308, 1, 308, 3, 308, 6719, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6730, 8, 308, 10, 308, 12, 308, 6733, 9, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6738, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6748, 8, 308, 10, 308, 12, 308, 6751, 9, 308, 3, 308, 6753, 8, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6762, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6767, 8, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6786, 8, 318, 10, 318, 12, 318, 6789, 9, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 5, 323, 6802, 8, 323, 10, 323, 12, 323, 6805, 9, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6812, 8, 325, 10, 325, 12, 325, 6815, 9, 325, 1, 326, 1, 326, 3, 326, 6819, 8, 326, 1, 327, 1, 327, 1, 327, 3, 327, 6824, 8, 327, 3, 327, 6826, 8, 327, 1, 327, 3, 327, 6829, 8, 327, 1, 327, 1, 327, 3, 327, 6833, 8, 327, 3, 327, 6835, 8, 327, 1, 328, 1, 328, 1, 328, 5, 328, 6840, 8, 328, 10, 328, 12, 328, 6843, 9, 328, 1, 329, 1, 329, 1, 329, 3, 329, 6848, 8, 329, 3, 329, 6850, 8, 329, 1, 329, 3, 329, 6853, 8, 329, 1, 329, 1, 329, 3, 329, 6857, 8, 329, 3, 329, 6859, 8, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 5, 333, 6870, 8, 333, 10, 333, 12, 333, 6873, 9, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6882, 8, 335, 1, 335, 3, 335, 6885, 8, 335, 1, 335, 3, 335, 6888, 8, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6901, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 3, 340, 6907, 8, 340, 1, 340, 3, 340, 6910, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6918, 8, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 3, 344, 6925, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, 6943, 8, 346, 11, 346, 12, 346, 6944, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 3, 347, 6952, 8, 347, 3, 347, 6954, 8, 347, 1, 348, 1, 348, 1, 348, 4, 348, 6959, 8, 348, 11, 348, 12, 348, 6960, 3, 348, 6963, 8, 348, 1, 349, 1, 349, 3, 349, 6967, 8, 349, 1, 350, 1, 350, 1, 350, 5, 350, 6972, 8, 350, 10, 350, 12, 350, 6975, 9, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6980, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6991, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6997, 8, 353, 1, 354, 1, 354, 1, 355, 1, 355, 3, 355, 7003, 8, 355, 1, 356, 3, 356, 7006, 8, 356, 1, 356, 1, 356, 3, 356, 7010, 8, 356, 1, 356, 4, 356, 7013, 8, 356, 11, 356, 12, 356, 7014, 1, 356, 3, 356, 7018, 8, 356, 1, 356, 1, 356, 3, 356, 7022, 8, 356, 1, 356, 1, 356, 3, 356, 7026, 8, 356, 3, 356, 7028, 8, 356, 1, 357, 1, 357, 1, 358, 3, 358, 7033, 8, 358, 1, 358, 1, 358, 1, 359, 3, 359, 7038, 8, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7051, 8, 360, 1, 360, 3, 360, 7054, 8, 360, 1, 361, 1, 361, 3, 361, 7058, 8, 361, 1, 361, 3, 361, 7061, 8, 361, 1, 361, 3, 361, 7064, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7069, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7074, 8, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7080, 8, 361, 1, 361, 3, 361, 7083, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7088, 8, 361, 1, 361, 3, 361, 7091, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7096, 8, 361, 1, 361, 3, 361, 7099, 8, 361, 1, 361, 1, 361, 3, 361, 7103, 8, 361, 1, 361, 5, 361, 7106, 8, 361, 10, 361, 12, 361, 7109, 9, 361, 1, 361, 1, 361, 3, 361, 7113, 8, 361, 1, 361, 5, 361, 7116, 8, 361, 10, 361, 12, 361, 7119, 9, 361, 1, 361, 1, 361, 3, 361, 7123, 8, 361, 1, 361, 3, 361, 7126, 8, 361, 1, 361, 5, 361, 7129, 8, 361, 10, 361, 12, 361, 7132, 9, 361, 1, 361, 1, 361, 3, 361, 7136, 8, 361, 1, 361, 5, 361, 7139, 8, 361, 10, 361, 12, 361, 7142, 9, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7147, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7152, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7157, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7162, 8, 361, 1, 361, 1, 361, 3, 361, 7166, 8, 361, 1, 361, 3, 361, 7169, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7174, 8, 361, 1, 361, 1, 361, 3, 361, 7178, 8, 361, 1, 361, 1, 361, 3, 361, 7182, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 5, 362, 7188, 8, 362, 10, 362, 12, 362, 7191, 9, 362, 1, 362, 1, 362, 1, 363, 1, 363, 3, 363, 7197, 8, 363, 1, 363, 1, 363, 3, 363, 7201, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7206, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7211, 8, 363, 1, 363, 1, 363, 3, 363, 7215, 8, 363, 3, 363, 7217, 8, 363, 1, 363, 3, 363, 7220, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7236, 8, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 5, 367, 7244, 8, 367, 10, 367, 12, 367, 7247, 9, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 5, 368, 7254, 8, 368, 10, 368, 12, 368, 7257, 9, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7263, 8, 369, 10, 369, 12, 369, 7266, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 5, 370, 7272, 8, 370, 10, 370, 12, 370, 7275, 9, 370, 1, 370, 1, 370, 1, 371, 1, 371, 3, 371, 7281, 8, 371, 1, 372, 1, 372, 1, 372, 5, 372, 7286, 8, 372, 10, 372, 12, 372, 7289, 9, 372, 1, 373, 1, 373, 1, 373, 5, 373, 7294, 8, 373, 10, 373, 12, 373, 7297, 9, 373, 1, 374, 1, 374, 1, 374, 5, 374, 7302, 8, 374, 10, 374, 12, 374, 7305, 9, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7316, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7323, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7333, 8, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7338, 8, 376, 1, 376, 3, 376, 7341, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7346, 8, 376, 1, 376, 3, 376, 7349, 8, 376, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7367, 8, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7374, 8, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7379, 8, 380, 1, 381, 1, 381, 1, 381, 3, 381, 7384, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 4, 381, 7416, 8, 381, 11, 381, 12, 381, 7417, 1, 381, 1, 381, 3, 381, 7422, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 4, 381, 7428, 8, 381, 11, 381, 12, 381, 7429, 1, 381, 1, 381, 3, 381, 7434, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7443, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7451, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7456, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7464, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7469, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7474, 8, 381, 3, 381, 7476, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7485, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7490, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7498, 8, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7503, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7511, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7519, 8, 381, 1, 381, 3, 381, 7522, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7532, 8, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 7550, 8, 381, 1, 381, 3, 381, 7553, 8, 381, 1, 381, 3, 381, 7556, 8, 381, 1, 381, 1, 381, 3, 381, 7560, 8, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 5, 383, 7571, 8, 383, 10, 383, 12, 383, 7574, 9, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7581, 8, 383, 1, 384, 1, 384, 3, 384, 7585, 8, 384, 1, 385, 1, 385, 1, 385, 3, 385, 7590, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7595, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7601, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7606, 8, 385, 1, 385, 1, 385, 3, 385, 7610, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7615, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7620, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7625, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 5, 385, 7633, 8, 385, 10, 385, 12, 385, 7636, 9, 385, 3, 385, 7638, 8, 385, 1, 385, 1, 385, 3, 385, 7642, 8, 385, 1, 385, 1, 385, 3, 385, 7646, 8, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7653, 8, 386, 1, 386, 1, 386, 3, 386, 7657, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7686, 8, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7694, 8, 387, 1, 388, 3, 388, 7697, 8, 388, 1, 388, 3, 388, 7700, 8, 388, 1, 388, 3, 388, 7703, 8, 388, 1, 388, 3, 388, 7706, 8, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7717, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7731, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 5, 395, 7738, 8, 395, 10, 395, 12, 395, 7741, 9, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7767, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 5, 398, 7777, 8, 398, 10, 398, 12, 398, 7780, 9, 398, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7786, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7794, 8, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7799, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 5, 400, 7805, 8, 400, 10, 400, 12, 400, 7808, 9, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7819, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7832, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7838, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7844, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7860, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7866, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 5, 401, 7875, 8, 401, 10, 401, 12, 401, 7878, 9, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7897, 8, 402, 10, 402, 12, 402, 7900, 9, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 4, 402, 7909, 8, 402, 11, 402, 12, 402, 7910, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7928, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7945, 8, 402, 10, 402, 12, 402, 7948, 9, 402, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7960, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7969, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7978, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7987, 8, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7996, 8, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 0, 5, 208, 210, 800, 802, 804, 417, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 76, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 578, 580, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9371, 0, 837, 1, 0, 0, 0, 2, 847, 1, 0, 0, 0, 4, 856, 1, 0, 0, 0, 6, 858, 1, 0, 0, 0, 8, 899, 1, 0, 0, 0, 10, 918, 1, 0, 0, 0, 12, 929, 1, 0, 0, 0, 14, 945, 1, 0, 0, 0, 16, 950, 1, 0, 0, 0, 18, 962, 1, 0, 0, 0, 20, 997, 1, 0, 0, 0, 22, 1007, 1, 0, 0, 0, 24, 1009, 1, 0, 0, 0, 26, 1021, 1, 0, 0, 0, 28, 1051, 1, 0, 0, 0, 30, 1087, 1, 0, 0, 0, 32, 1138, 1, 0, 0, 0, 34, 1167, 1, 0, 0, 0, 36, 1174, 1, 0, 0, 0, 38, 1271, 1, 0, 0, 0, 40, 1273, 1, 0, 0, 0, 42, 1310, 1, 0, 0, 0, 44, 1374, 1, 0, 0, 0, 46, 1396, 1, 0, 0, 0, 48, 1402, 1, 0, 0, 0, 50, 1424, 1, 0, 0, 0, 52, 1504, 1, 0, 0, 0, 54, 1511, 1, 0, 0, 0, 56, 1513, 1, 0, 0, 0, 58, 1518, 1, 0, 0, 0, 60, 1558, 1, 0, 0, 0, 62, 1564, 1, 0, 0, 0, 64, 1566, 1, 0, 0, 0, 66, 1587, 1, 0, 0, 0, 68, 1594, 1, 0, 0, 0, 70, 1596, 1, 0, 0, 0, 72, 1621, 1, 0, 0, 0, 74, 1624, 1, 0, 0, 0, 76, 1652, 1, 0, 0, 0, 78, 1668, 1, 0, 0, 0, 80, 1670, 1, 0, 0, 0, 82, 1764, 1, 0, 0, 0, 84, 1767, 1, 0, 0, 0, 86, 1779, 1, 0, 0, 0, 88, 1783, 1, 0, 0, 0, 90, 1833, 1, 0, 0, 0, 92, 1835, 1, 0, 0, 0, 94, 1863, 1, 0, 0, 0, 96, 1873, 1, 0, 0, 0, 98, 2060, 1, 0, 0, 0, 100, 2062, 1, 0, 0, 0, 102, 2064, 1, 0, 0, 0, 104, 2067, 1, 0, 0, 0, 106, 2142, 1, 0, 0, 0, 108, 2165, 1, 0, 0, 0, 110, 2313, 1, 0, 0, 0, 112, 2318, 1, 0, 0, 0, 114, 2320, 1, 0, 0, 0, 116, 2330, 1, 0, 0, 0, 118, 2386, 1, 0, 0, 0, 120, 2406, 1, 0, 0, 0, 122, 2408, 1, 0, 0, 0, 124, 2443, 1, 0, 0, 0, 126, 2452, 1, 0, 0, 0, 128, 2459, 1, 0, 0, 0, 130, 2482, 1, 0, 0, 0, 132, 2491, 1, 0, 0, 0, 134, 2506, 1, 0, 0, 0, 136, 2528, 1, 0, 0, 0, 138, 2584, 1, 0, 0, 0, 140, 2880, 1, 0, 0, 0, 142, 2980, 1, 0, 0, 0, 144, 2982, 1, 0, 0, 0, 146, 2989, 1, 0, 0, 0, 148, 2996, 1, 0, 0, 0, 150, 3019, 1, 0, 0, 0, 152, 3029, 1, 0, 0, 0, 154, 3036, 1, 0, 0, 0, 156, 3043, 1, 0, 0, 0, 158, 3050, 1, 0, 0, 0, 160, 3059, 1, 0, 0, 0, 162, 3071, 1, 0, 0, 0, 164, 3084, 1, 0, 0, 0, 166, 3091, 1, 0, 0, 0, 168, 3107, 1, 0, 0, 0, 170, 3134, 1, 0, 0, 0, 172, 3136, 1, 0, 0, 0, 174, 3146, 1, 0, 0, 0, 176, 3150, 1, 0, 0, 0, 178, 3156, 1, 0, 0, 0, 180, 3168, 1, 0, 0, 0, 182, 3170, 1, 0, 0, 0, 184, 3177, 1, 0, 0, 0, 186, 3179, 1, 0, 0, 0, 188, 3228, 1, 0, 0, 0, 190, 3237, 1, 0, 0, 0, 192, 3239, 1, 0, 0, 0, 194, 3250, 1, 0, 0, 0, 196, 3256, 1, 0, 0, 0, 198, 3330, 1, 0, 0, 0, 200, 3393, 1, 0, 0, 0, 202, 3411, 1, 0, 0, 0, 204, 3495, 1, 0, 0, 0, 206, 3498, 1, 0, 0, 0, 208, 3510, 1, 0, 0, 0, 210, 3530, 1, 0, 0, 0, 212, 3558, 1, 0, 0, 0, 214, 3562, 1, 0, 0, 0, 216, 3564, 1, 0, 0, 0, 218, 3574, 1, 0, 0, 0, 220, 3594, 1, 0, 0, 0, 222, 3601, 1, 0, 0, 0, 224, 3603, 1, 0, 0, 0, 226, 3614, 1, 0, 0, 0, 228, 3623, 1, 0, 0, 0, 230, 3629, 1, 0, 0, 0, 232, 3652, 1, 0, 0, 0, 234, 3654, 1, 0, 0, 0, 236, 3690, 1, 0, 0, 0, 238, 3745, 1, 0, 0, 0, 240, 3754, 1, 0, 0, 0, 242, 3774, 1, 0, 0, 0, 244, 3786, 1, 0, 0, 0, 246, 3790, 1, 0, 0, 0, 248, 3801, 1, 0, 0, 0, 250, 3834, 1, 0, 0, 0, 252, 3855, 1, 0, 0, 0, 254, 3865, 1, 0, 0, 0, 256, 3869, 1, 0, 0, 0, 258, 3895, 1, 0, 0, 0, 260, 3942, 1, 0, 0, 0, 262, 3944, 1, 0, 0, 0, 264, 3948, 1, 0, 0, 0, 266, 3965, 1, 0, 0, 0, 268, 4016, 1, 0, 0, 0, 270, 4025, 1, 0, 0, 0, 272, 4035, 1, 0, 0, 0, 274, 4037, 1, 0, 0, 0, 276, 4067, 1, 0, 0, 0, 278, 4075, 1, 0, 0, 0, 280, 4092, 1, 0, 0, 0, 282, 4108, 1, 0, 0, 0, 284, 4145, 1, 0, 0, 0, 286, 4151, 1, 0, 0, 0, 288, 4160, 1, 0, 0, 0, 290, 4173, 1, 0, 0, 0, 292, 4177, 1, 0, 0, 0, 294, 4215, 1, 0, 0, 0, 296, 4253, 1, 0, 0, 0, 298, 4267, 1, 0, 0, 0, 300, 4275, 1, 0, 0, 0, 302, 4279, 1, 0, 0, 0, 304, 4285, 1, 0, 0, 0, 306, 4299, 1, 0, 0, 0, 308, 4302, 1, 0, 0, 0, 310, 4320, 1, 0, 0, 0, 312, 4324, 1, 0, 0, 0, 314, 4340, 1, 0, 0, 0, 316, 4342, 1, 0, 0, 0, 318, 4354, 1, 0, 0, 0, 320, 4358, 1, 0, 0, 0, 322, 4375, 1, 0, 0, 0, 324, 4392, 1, 0, 0, 0, 326, 4395, 1, 0, 0, 0, 328, 4405, 1, 0, 0, 0, 330, 4409, 1, 0, 0, 0, 332, 4419, 1, 0, 0, 0, 334, 4422, 1, 0, 0, 0, 336, 4427, 1, 0, 0, 0, 338, 4447, 1, 0, 0, 0, 340, 4449, 1, 0, 0, 0, 342, 4466, 1, 0, 0, 0, 344, 4475, 1, 0, 0, 0, 346, 4484, 1, 0, 0, 0, 348, 4486, 1, 0, 0, 0, 350, 4500, 1, 0, 0, 0, 352, 4514, 1, 0, 0, 0, 354, 4529, 1, 0, 0, 0, 356, 4538, 1, 0, 0, 0, 358, 4563, 1, 0, 0, 0, 360, 4578, 1, 0, 0, 0, 362, 4597, 1, 0, 0, 0, 364, 4627, 1, 0, 0, 0, 366, 4629, 1, 0, 0, 0, 368, 4631, 1, 0, 0, 0, 370, 4633, 1, 0, 0, 0, 372, 4648, 1, 0, 0, 0, 374, 4677, 1, 0, 0, 0, 376, 4679, 1, 0, 0, 0, 378, 4681, 1, 0, 0, 0, 380, 4683, 1, 0, 0, 0, 382, 4698, 1, 0, 0, 0, 384, 4700, 1, 0, 0, 0, 386, 4767, 1, 0, 0, 0, 388, 4769, 1, 0, 0, 0, 390, 4775, 1, 0, 0, 0, 392, 4802, 1, 0, 0, 0, 394, 4816, 1, 0, 0, 0, 396, 4827, 1, 0, 0, 0, 398, 4829, 1, 0, 0, 0, 400, 4835, 1, 0, 0, 0, 402, 4845, 1, 0, 0, 0, 404, 4849, 1, 0, 0, 0, 406, 4856, 1, 0, 0, 0, 408, 4860, 1, 0, 0, 0, 410, 4866, 1, 0, 0, 0, 412, 4873, 1, 0, 0, 0, 414, 4879, 1, 0, 0, 0, 416, 4885, 1, 0, 0, 0, 418, 4890, 1, 0, 0, 0, 420, 4935, 1, 0, 0, 0, 422, 4956, 1, 0, 0, 0, 424, 4981, 1, 0, 0, 0, 426, 4984, 1, 0, 0, 0, 428, 4990, 1, 0, 0, 0, 430, 5006, 1, 0, 0, 0, 432, 5021, 1, 0, 0, 0, 434, 5027, 1, 0, 0, 0, 436, 5057, 1, 0, 0, 0, 438, 5059, 1, 0, 0, 0, 440, 5066, 1, 0, 0, 0, 442, 5078, 1, 0, 0, 0, 444, 5084, 1, 0, 0, 0, 446, 5109, 1, 0, 0, 0, 448, 5113, 1, 0, 0, 0, 450, 5117, 1, 0, 0, 0, 452, 5128, 1, 0, 0, 0, 454, 5136, 1, 0, 0, 0, 456, 5199, 1, 0, 0, 0, 458, 5258, 1, 0, 0, 0, 460, 5360, 1, 0, 0, 0, 462, 5370, 1, 0, 0, 0, 464, 5372, 1, 0, 0, 0, 466, 5390, 1, 0, 0, 0, 468, 5414, 1, 0, 0, 0, 470, 5438, 1, 0, 0, 0, 472, 5445, 1, 0, 0, 0, 474, 5465, 1, 0, 0, 0, 476, 5474, 1, 0, 0, 0, 478, 5536, 1, 0, 0, 0, 480, 5538, 1, 0, 0, 0, 482, 5542, 1, 0, 0, 0, 484, 5576, 1, 0, 0, 0, 486, 5578, 1, 0, 0, 0, 488, 5581, 1, 0, 0, 0, 490, 5645, 1, 0, 0, 0, 492, 5664, 1, 0, 0, 0, 494, 5691, 1, 0, 0, 0, 496, 5695, 1, 0, 0, 0, 498, 5716, 1, 0, 0, 0, 500, 5726, 1, 0, 0, 0, 502, 5736, 1, 0, 0, 0, 504, 5776, 1, 0, 0, 0, 506, 5778, 1, 0, 0, 0, 508, 5781, 1, 0, 0, 0, 510, 5811, 1, 0, 0, 0, 512, 5813, 1, 0, 0, 0, 514, 5816, 1, 0, 0, 0, 516, 5916, 1, 0, 0, 0, 518, 5934, 1, 0, 0, 0, 520, 5936, 1, 0, 0, 0, 522, 5988, 1, 0, 0, 0, 524, 5990, 1, 0, 0, 0, 526, 5999, 1, 0, 0, 0, 528, 6005, 1, 0, 0, 0, 530, 6012, 1, 0, 0, 0, 532, 6027, 1, 0, 0, 0, 534, 6036, 1, 0, 0, 0, 536, 6038, 1, 0, 0, 0, 538, 6052, 1, 0, 0, 0, 540, 6073, 1, 0, 0, 0, 542, 6078, 1, 0, 0, 0, 544, 6088, 1, 0, 0, 0, 546, 6094, 1, 0, 0, 0, 548, 6128, 1, 0, 0, 0, 550, 6182, 1, 0, 0, 0, 552, 6368, 1, 0, 0, 0, 554, 6380, 1, 0, 0, 0, 556, 6396, 1, 0, 0, 0, 558, 6402, 1, 0, 0, 0, 560, 6421, 1, 0, 0, 0, 562, 6434, 1, 0, 0, 0, 564, 6448, 1, 0, 0, 0, 566, 6450, 1, 0, 0, 0, 568, 6453, 1, 0, 0, 0, 570, 6477, 1, 0, 0, 0, 572, 6489, 1, 0, 0, 0, 574, 6495, 1, 0, 0, 0, 576, 6507, 1, 0, 0, 0, 578, 6521, 1, 0, 0, 0, 580, 6523, 1, 0, 0, 0, 582, 6531, 1, 0, 0, 0, 584, 6539, 1, 0, 0, 0, 586, 6541, 1, 0, 0, 0, 588, 6543, 1, 0, 0, 0, 590, 6583, 1, 0, 0, 0, 592, 6590, 1, 0, 0, 0, 594, 6592, 1, 0, 0, 0, 596, 6615, 1, 0, 0, 0, 598, 6621, 1, 0, 0, 0, 600, 6631, 1, 0, 0, 0, 602, 6640, 1, 0, 0, 0, 604, 6643, 1, 0, 0, 0, 606, 6646, 1, 0, 0, 0, 608, 6667, 1, 0, 0, 0, 610, 6688, 1, 0, 0, 0, 612, 6696, 1, 0, 0, 0, 614, 6708, 1, 0, 0, 0, 616, 6716, 1, 0, 0, 0, 618, 6754, 1, 0, 0, 0, 620, 6766, 1, 0, 0, 0, 622, 6768, 1, 0, 0, 0, 624, 6770, 1, 0, 0, 0, 626, 6772, 1, 0, 0, 0, 628, 6774, 1, 0, 0, 0, 630, 6776, 1, 0, 0, 0, 632, 6778, 1, 0, 0, 0, 634, 6780, 1, 0, 0, 0, 636, 6782, 1, 0, 0, 0, 638, 6790, 1, 0, 0, 0, 640, 6792, 1, 0, 0, 0, 642, 6794, 1, 0, 0, 0, 644, 6796, 1, 0, 0, 0, 646, 6798, 1, 0, 0, 0, 648, 6806, 1, 0, 0, 0, 650, 6808, 1, 0, 0, 0, 652, 6818, 1, 0, 0, 0, 654, 6834, 1, 0, 0, 0, 656, 6836, 1, 0, 0, 0, 658, 6858, 1, 0, 0, 0, 660, 6860, 1, 0, 0, 0, 662, 6862, 1, 0, 0, 0, 664, 6864, 1, 0, 0, 0, 666, 6866, 1, 0, 0, 0, 668, 6874, 1, 0, 0, 0, 670, 6884, 1, 0, 0, 0, 672, 6889, 1, 0, 0, 0, 674, 6893, 1, 0, 0, 0, 676, 6900, 1, 0, 0, 0, 678, 6902, 1, 0, 0, 0, 680, 6909, 1, 0, 0, 0, 682, 6911, 1, 0, 0, 0, 684, 6917, 1, 0, 0, 0, 686, 6919, 1, 0, 0, 0, 688, 6924, 1, 0, 0, 0, 690, 6926, 1, 0, 0, 0, 692, 6928, 1, 0, 0, 0, 694, 6946, 1, 0, 0, 0, 696, 6962, 1, 0, 0, 0, 698, 6964, 1, 0, 0, 0, 700, 6968, 1, 0, 0, 0, 702, 6979, 1, 0, 0, 0, 704, 6990, 1, 0, 0, 0, 706, 6996, 1, 0, 0, 0, 708, 6998, 1, 0, 0, 0, 710, 7002, 1, 0, 0, 0, 712, 7027, 1, 0, 0, 0, 714, 7029, 1, 0, 0, 0, 716, 7032, 1, 0, 0, 0, 718, 7037, 1, 0, 0, 0, 720, 7053, 1, 0, 0, 0, 722, 7181, 1, 0, 0, 0, 724, 7183, 1, 0, 0, 0, 726, 7216, 1, 0, 0, 0, 728, 7221, 1, 0, 0, 0, 730, 7225, 1, 0, 0, 0, 732, 7231, 1, 0, 0, 0, 734, 7239, 1, 0, 0, 0, 736, 7250, 1, 0, 0, 0, 738, 7258, 1, 0, 0, 0, 740, 7267, 1, 0, 0, 0, 742, 7280, 1, 0, 0, 0, 744, 7282, 1, 0, 0, 0, 746, 7290, 1, 0, 0, 0, 748, 7298, 1, 0, 0, 0, 750, 7332, 1, 0, 0, 0, 752, 7348, 1, 0, 0, 0, 754, 7350, 1, 0, 0, 0, 756, 7353, 1, 0, 0, 0, 758, 7357, 1, 0, 0, 0, 760, 7378, 1, 0, 0, 0, 762, 7559, 1, 0, 0, 0, 764, 7561, 1, 0, 0, 0, 766, 7580, 1, 0, 0, 0, 768, 7582, 1, 0, 0, 0, 770, 7645, 1, 0, 0, 0, 772, 7685, 1, 0, 0, 0, 774, 7687, 1, 0, 0, 0, 776, 7696, 1, 0, 0, 0, 778, 7707, 1, 0, 0, 0, 780, 7709, 1, 0, 0, 0, 782, 7712, 1, 0, 0, 0, 784, 7716, 1, 0, 0, 0, 786, 7718, 1, 0, 0, 0, 788, 7730, 1, 0, 0, 0, 790, 7732, 1, 0, 0, 0, 792, 7766, 1, 0, 0, 0, 794, 7768, 1, 0, 0, 0, 796, 7773, 1, 0, 0, 0, 798, 7785, 1, 0, 0, 0, 800, 7798, 1, 0, 0, 0, 802, 7809, 1, 0, 0, 0, 804, 7927, 1, 0, 0, 0, 806, 7949, 1, 0, 0, 0, 808, 7959, 1, 0, 0, 0, 810, 7968, 1, 0, 0, 0, 812, 7977, 1, 0, 0, 0, 814, 7986, 1, 0, 0, 0, 816, 7988, 1, 0, 0, 0, 818, 7995, 1, 0, 0, 0, 820, 7997, 1, 0, 0, 0, 822, 7999, 1, 0, 0, 0, 824, 8001, 1, 0, 0, 0, 826, 8003, 1, 0, 0, 0, 828, 8005, 1, 0, 0, 0, 830, 8007, 1, 0, 0, 0, 832, 8009, 1, 0, 0, 0, 834, 836, 3, 2, 1, 0, 835, 834, 1, 0, 0, 0, 836, 839, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 840, 841, 5, 0, 0, 1, 841, 1, 1, 0, 0, 0, 842, 844, 3, 4, 2, 0, 843, 845, 5, 869, 0, 0, 844, 843, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 848, 3, 6, 3, 0, 847, 842, 1, 0, 0, 0, 847, 846, 1, 0, 0, 0, 848, 3, 1, 0, 0, 0, 849, 857, 3, 8, 4, 0, 850, 857, 3, 10, 5, 0, 851, 857, 3, 12, 6, 0, 852, 857, 3, 14, 7, 0, 853, 857, 3, 16, 8, 0, 854, 857, 3, 20, 10, 0, 855, 857, 3, 22, 11, 0, 856, 849, 1, 0, 0, 0, 856, 850, 1, 0, 0, 0, 856, 851, 1, 0, 0, 0, 856, 852, 1, 0, 0, 0, 856, 853, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 5, 1, 0, 0, 0, 858, 859, 5, 869, 0, 0, 859, 7, 1, 0, 0, 0, 860, 900, 3, 24, 12, 0, 861, 900, 3, 26, 13, 0, 862, 900, 3, 28, 14, 0, 863, 900, 3, 30, 15, 0, 864, 900, 3, 32, 16, 0, 865, 900, 3, 536, 268, 0, 866, 900, 3, 36, 18, 0, 867, 900, 3, 38, 19, 0, 868, 900, 3, 40, 20, 0, 869, 900, 3, 42, 21, 0, 870, 900, 3, 44, 22, 0, 871, 900, 3, 50, 25, 0, 872, 900, 3, 34, 17, 0, 873, 900, 3, 120, 60, 0, 874, 900, 3, 122, 61, 0, 875, 900, 3, 124, 62, 0, 876, 900, 3, 126, 63, 0, 877, 900, 3, 128, 64, 0, 878, 900, 3, 130, 65, 0, 879, 900, 3, 132, 66, 0, 880, 900, 3, 134, 67, 0, 881, 900, 3, 136, 68, 0, 882, 900, 3, 138, 69, 0, 883, 900, 3, 144, 72, 0, 884, 900, 3, 146, 73, 0, 885, 900, 3, 148, 74, 0, 886, 900, 3, 150, 75, 0, 887, 900, 3, 152, 76, 0, 888, 900, 3, 154, 77, 0, 889, 900, 3, 156, 78, 0, 890, 900, 3, 158, 79, 0, 891, 900, 3, 160, 80, 0, 892, 900, 3, 162, 81, 0, 893, 900, 3, 164, 82, 0, 894, 900, 3, 166, 83, 0, 895, 900, 3, 168, 84, 0, 896, 900, 3, 170, 85, 0, 897, 900, 3, 172, 86, 0, 898, 900, 3, 176, 88, 0, 899, 860, 1, 0, 0, 0, 899, 861, 1, 0, 0, 0, 899, 862, 1, 0, 0, 0, 899, 863, 1, 0, 0, 0, 899, 864, 1, 0, 0, 0, 899, 865, 1, 0, 0, 0, 899, 866, 1, 0, 0, 0, 899, 867, 1, 0, 0, 0, 899, 868, 1, 0, 0, 0, 899, 869, 1, 0, 0, 0, 899, 870, 1, 0, 0, 0, 899, 871, 1, 0, 0, 0, 899, 872, 1, 0, 0, 0, 899, 873, 1, 0, 0, 0, 899, 874, 1, 0, 0, 0, 899, 875, 1, 0, 0, 0, 899, 876, 1, 0, 0, 0, 899, 877, 1, 0, 0, 0, 899, 878, 1, 0, 0, 0, 899, 879, 1, 0, 0, 0, 899, 880, 1, 0, 0, 0, 899, 881, 1, 0, 0, 0, 899, 882, 1, 0, 0, 0, 899, 883, 1, 0, 0, 0, 899, 884, 1, 0, 0, 0, 899, 885, 1, 0, 0, 0, 899, 886, 1, 0, 0, 0, 899, 887, 1, 0, 0, 0, 899, 888, 1, 0, 0, 0, 899, 889, 1, 0, 0, 0, 899, 890, 1, 0, 0, 0, 899, 891, 1, 0, 0, 0, 899, 892, 1, 0, 0, 0, 899, 893, 1, 0, 0, 0, 899, 894, 1, 0, 0, 0, 899, 895, 1, 0, 0, 0, 899, 896, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 898, 1, 0, 0, 0, 900, 9, 1, 0, 0, 0, 901, 919, 3, 204, 102, 0, 902, 919, 3, 206, 103, 0, 903, 919, 3, 186, 93, 0, 904, 919, 3, 214, 107, 0, 905, 919, 3, 180, 90, 0, 906, 919, 3, 202, 101, 0, 907, 919, 3, 178, 89, 0, 908, 919, 3, 192, 96, 0, 909, 919, 3, 196, 98, 0, 910, 919, 3, 198, 99, 0, 911, 919, 3, 200, 100, 0, 912, 919, 3, 182, 91, 0, 913, 919, 3, 184, 92, 0, 914, 919, 3, 246, 123, 0, 915, 919, 3, 216, 108, 0, 916, 919, 3, 612, 306, 0, 917, 919, 3, 614, 307, 0, 918, 901, 1, 0, 0, 0, 918, 902, 1, 0, 0, 0, 918, 903, 1, 0, 0, 0, 918, 904, 1, 0, 0, 0, 918, 905, 1, 0, 0, 0, 918, 906, 1, 0, 0, 0, 918, 907, 1, 0, 0, 0, 918, 908, 1, 0, 0, 0, 918, 909, 1, 0, 0, 0, 918, 910, 1, 0, 0, 0, 918, 911, 1, 0, 0, 0, 918, 912, 1, 0, 0, 0, 918, 913, 1, 0, 0, 0, 918, 914, 1, 0, 0, 0, 918, 915, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 917, 1, 0, 0, 0, 919, 11, 1, 0, 0, 0, 920, 930, 3, 316, 158, 0, 921, 930, 3, 318, 159, 0, 922, 930, 3, 320, 160, 0, 923, 930, 3, 322, 161, 0, 924, 930, 3, 324, 162, 0, 925, 930, 3, 326, 163, 0, 926, 930, 3, 328, 164, 0, 927, 930, 3, 330, 165, 0, 928, 930, 3, 332, 166, 0, 929, 920, 1, 0, 0, 0, 929, 921, 1, 0, 0, 0, 929, 922, 1, 0, 0, 0, 929, 923, 1, 0, 0, 0, 929, 924, 1, 0, 0, 0, 929, 925, 1, 0, 0, 0, 929, 926, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 928, 1, 0, 0, 0, 930, 13, 1, 0, 0, 0, 931, 946, 3, 348, 174, 0, 932, 946, 3, 350, 175, 0, 933, 946, 3, 352, 176, 0, 934, 946, 3, 354, 177, 0, 935, 946, 3, 356, 178, 0, 936, 946, 3, 358, 179, 0, 937, 946, 3, 360, 180, 0, 938, 946, 3, 362, 181, 0, 939, 946, 3, 398, 199, 0, 940, 946, 3, 400, 200, 0, 941, 946, 3, 402, 201, 0, 942, 946, 3, 404, 202, 0, 943, 946, 3, 406, 203, 0, 944, 946, 3, 408, 204, 0, 945, 931, 1, 0, 0, 0, 945, 932, 1, 0, 0, 0, 945, 933, 1, 0, 0, 0, 945, 934, 1, 0, 0, 0, 945, 935, 1, 0, 0, 0, 945, 936, 1, 0, 0, 0, 945, 937, 1, 0, 0, 0, 945, 938, 1, 0, 0, 0, 945, 939, 1, 0, 0, 0, 945, 940, 1, 0, 0, 0, 945, 941, 1, 0, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 15, 1, 0, 0, 0, 947, 951, 3, 410, 205, 0, 948, 951, 3, 412, 206, 0, 949, 951, 3, 414, 207, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 17, 1, 0, 0, 0, 952, 963, 3, 418, 209, 0, 953, 963, 3, 420, 210, 0, 954, 963, 3, 422, 211, 0, 955, 963, 3, 426, 213, 0, 956, 963, 3, 428, 214, 0, 957, 963, 3, 430, 215, 0, 958, 963, 3, 434, 217, 0, 959, 963, 3, 424, 212, 0, 960, 963, 3, 432, 216, 0, 961, 963, 3, 436, 218, 0, 962, 952, 1, 0, 0, 0, 962, 953, 1, 0, 0, 0, 962, 954, 1, 0, 0, 0, 962, 955, 1, 0, 0, 0, 962, 956, 1, 0, 0, 0, 962, 957, 1, 0, 0, 0, 962, 958, 1, 0, 0, 0, 962, 959, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 961, 1, 0, 0, 0, 963, 19, 1, 0, 0, 0, 964, 998, 3, 454, 227, 0, 965, 998, 3, 456, 228, 0, 966, 998, 3, 458, 229, 0, 967, 998, 3, 460, 230, 0, 968, 998, 3, 464, 232, 0, 969, 998, 3, 476, 238, 0, 970, 998, 3, 478, 239, 0, 971, 998, 3, 466, 233, 0, 972, 998, 3, 468, 234, 0, 973, 998, 3, 470, 235, 0, 974, 998, 3, 472, 236, 0, 975, 998, 3, 522, 261, 0, 976, 998, 3, 524, 262, 0, 977, 998, 3, 526, 263, 0, 978, 998, 3, 528, 264, 0, 979, 998, 3, 530, 265, 0, 980, 998, 3, 538, 269, 0, 981, 998, 3, 542, 271, 0, 982, 998, 3, 544, 272, 0, 983, 998, 3, 546, 273, 0, 984, 998, 3, 548, 274, 0, 985, 998, 3, 550, 275, 0, 986, 998, 3, 552, 276, 0, 987, 998, 3, 566, 283, 0, 988, 998, 3, 568, 284, 0, 989, 998, 3, 570, 285, 0, 990, 998, 3, 572, 286, 0, 991, 998, 3, 574, 287, 0, 992, 998, 3, 576, 288, 0, 993, 998, 3, 580, 290, 0, 994, 998, 3, 582, 291, 0, 995, 998, 3, 584, 292, 0, 996, 998, 3, 586, 293, 0, 997, 964, 1, 0, 0, 0, 997, 965, 1, 0, 0, 0, 997, 966, 1, 0, 0, 0, 997, 967, 1, 0, 0, 0, 997, 968, 1, 0, 0, 0, 997, 969, 1, 0, 0, 0, 997, 970, 1, 0, 0, 0, 997, 971, 1, 0, 0, 0, 997, 972, 1, 0, 0, 0, 997, 973, 1, 0, 0, 0, 997, 974, 1, 0, 0, 0, 997, 975, 1, 0, 0, 0, 997, 976, 1, 0, 0, 0, 997, 977, 1, 0, 0, 0, 997, 978, 1, 0, 0, 0, 997, 979, 1, 0, 0, 0, 997, 980, 1, 0, 0, 0, 997, 981, 1, 0, 0, 0, 997, 982, 1, 0, 0, 0, 997, 983, 1, 0, 0, 0, 997, 984, 1, 0, 0, 0, 997, 985, 1, 0, 0, 0, 997, 986, 1, 0, 0, 0, 997, 987, 1, 0, 0, 0, 997, 988, 1, 0, 0, 0, 997, 989, 1, 0, 0, 0, 997, 990, 1, 0, 0, 0, 997, 991, 1, 0, 0, 0, 997, 992, 1, 0, 0, 0, 997, 993, 1, 0, 0, 0, 997, 994, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 997, 996, 1, 0, 0, 0, 998, 21, 1, 0, 0, 0, 999, 1008, 3, 596, 298, 0, 1000, 1008, 3, 598, 299, 0, 1001, 1008, 3, 600, 300, 0, 1002, 1008, 3, 602, 301, 0, 1003, 1008, 3, 604, 302, 0, 1004, 1008, 3, 606, 303, 0, 1005, 1008, 3, 608, 304, 0, 1006, 1008, 3, 616, 308, 0, 1007, 999, 1, 0, 0, 0, 1007, 1000, 1, 0, 0, 0, 1007, 1001, 1, 0, 0, 0, 1007, 1002, 1, 0, 0, 0, 1007, 1003, 1, 0, 0, 0, 1007, 1004, 1, 0, 0, 0, 1007, 1005, 1, 0, 0, 0, 1007, 1006, 1, 0, 0, 0, 1008, 23, 1, 0, 0, 0, 1009, 1010, 5, 34, 0, 0, 1010, 1012, 7, 0, 0, 0, 1011, 1013, 3, 756, 378, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1018, 3, 622, 311, 0, 1015, 1017, 3, 52, 26, 0, 1016, 1015, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 25, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1023, 5, 34, 0, 0, 1022, 1024, 3, 58, 29, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 5, 385, 0, 0, 1026, 1028, 3, 756, 378, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 3, 698, 349, 0, 1030, 1031, 5, 119, 0, 0, 1031, 1032, 5, 590, 0, 0, 1032, 1039, 3, 60, 30, 0, 1033, 1034, 5, 119, 0, 0, 1034, 1036, 5, 343, 0, 0, 1035, 1037, 5, 114, 0, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1040, 5, 541, 0, 0, 1039, 1033, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 1, 0, 0, 0, 1041, 1043, 3, 68, 34, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1045, 5, 340, 0, 0, 1045, 1047, 5, 882, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 5, 371, 0, 0, 1049, 1050, 3, 416, 208, 0, 1050, 27, 1, 0, 0, 0, 1051, 1053, 5, 34, 0, 0, 1052, 1054, 7, 1, 0, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1056, 1, 0, 0, 0, 1055, 1057, 7, 2, 0, 0, 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 5, 82, 0, 0, 1059, 1061, 3, 634, 317, 0, 1060, 1062, 3, 70, 35, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 119, 0, 0, 1064, 1065, 3, 648, 324, 0, 1065, 1069, 3, 734, 367, 0, 1066, 1068, 3, 72, 36, 0, 1067, 1066, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1084, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1072, 1074, 5, 308, 0, 0, 1073, 1075, 5, 857, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1083, 7, 3, 0, 0, 1077, 1079, 5, 104, 0, 0, 1078, 1080, 5, 857, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 7, 4, 0, 0, 1082, 1072, 1, 0, 0, 0, 1082, 1077, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 29, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1088, 5, 34, 0, 0, 1088, 1089, 5, 451, 0, 0, 1089, 1090, 5, 74, 0, 0, 1090, 1091, 3, 702, 351, 0, 1091, 1092, 5, 6, 0, 0, 1092, 1093, 5, 671, 0, 0, 1093, 1099, 5, 882, 0, 0, 1094, 1096, 5, 428, 0, 0, 1095, 1097, 5, 857, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 710, 355, 0, 1099, 1094, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1106, 1, 0, 0, 0, 1101, 1103, 5, 672, 0, 0, 1102, 1104, 5, 857, 0, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1107, 3, 710, 355, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1113, 1, 0, 0, 0, 1108, 1110, 5, 553, 0, 0, 1109, 1111, 5, 857, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 710, 355, 0, 1113, 1108, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1120, 1, 0, 0, 0, 1115, 1117, 5, 504, 0, 0, 1116, 1118, 5, 857, 0, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1121, 3, 702, 351, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1124, 5, 687, 0, 0, 1123, 1122, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1130, 1, 0, 0, 0, 1125, 1127, 5, 340, 0, 0, 1126, 1128, 5, 857, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1131, 5, 882, 0, 0, 1130, 1125, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1134, 5, 380, 0, 0, 1133, 1135, 5, 857, 0, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 3, 688, 344, 0, 1137, 31, 1, 0, 0, 0, 1138, 1140, 5, 34, 0, 0, 1139, 1141, 3, 58, 29, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 5, 132, 0, 0, 1143, 1145, 3, 756, 378, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 3, 698, 349, 0, 1147, 1149, 5, 866, 0, 0, 1148, 1150, 3, 74, 37, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1155, 1, 0, 0, 0, 1151, 1152, 5, 868, 0, 0, 1152, 1154, 3, 74, 37, 0, 1153, 1151, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1158, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1162, 5, 867, 0, 0, 1159, 1161, 3, 76, 38, 0, 1160, 1159, 1, 0, 0, 0, 1161, 1164, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1165, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1166, 3, 416, 208, 0, 1166, 33, 1, 0, 0, 0, 1167, 1168, 5, 34, 0, 0, 1168, 1170, 5, 582, 0, 0, 1169, 1171, 3, 756, 378, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 3, 650, 325, 0, 1173, 35, 1, 0, 0, 0, 1174, 1175, 5, 34, 0, 0, 1175, 1176, 5, 592, 0, 0, 1176, 1177, 3, 702, 351, 0, 1177, 1178, 5, 67, 0, 0, 1178, 1179, 5, 360, 0, 0, 1179, 1180, 5, 692, 0, 0, 1180, 1181, 7, 5, 0, 0, 1181, 1182, 5, 518, 0, 0, 1182, 1183, 5, 866, 0, 0, 1183, 1188, 3, 78, 39, 0, 1184, 1185, 5, 868, 0, 0, 1185, 1187, 3, 78, 39, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 5, 867, 0, 0, 1192, 37, 1, 0, 0, 0, 1193, 1195, 5, 34, 0, 0, 1194, 1196, 5, 660, 0, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1199, 5, 173, 0, 0, 1198, 1200, 3, 756, 378, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 3, 644, 322, 0, 1202, 1213, 3, 80, 40, 0, 1203, 1210, 3, 98, 49, 0, 1204, 1206, 5, 868, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 3, 98, 49, 0, 1208, 1205, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1203, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1216, 1, 0, 0, 0, 1215, 1217, 3, 104, 52, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1272, 1, 0, 0, 0, 1218, 1220, 5, 34, 0, 0, 1219, 1221, 5, 660, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 5, 173, 0, 0, 1223, 1225, 3, 756, 378, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1228, 3, 644, 322, 0, 1227, 1229, 3, 80, 40, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1240, 1, 0, 0, 0, 1230, 1237, 3, 98, 49, 0, 1231, 1233, 5, 868, 0, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1236, 3, 98, 49, 0, 1235, 1232, 1, 0, 0, 0, 1236, 1239, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1241, 1, 0, 0, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1230, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1244, 3, 104, 52, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1247, 7, 6, 0, 0, 1246, 1245, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1249, 1, 0, 0, 0, 1248, 1250, 5, 13, 0, 0, 1249, 1248, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 3, 204, 102, 0, 1252, 1272, 1, 0, 0, 0, 1253, 1255, 5, 34, 0, 0, 1254, 1256, 5, 660, 0, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1259, 5, 173, 0, 0, 1258, 1260, 3, 756, 378, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1269, 3, 644, 322, 0, 1262, 1263, 5, 99, 0, 0, 1263, 1270, 3, 648, 324, 0, 1264, 1265, 5, 866, 0, 0, 1265, 1266, 5, 99, 0, 0, 1266, 1267, 3, 648, 324, 0, 1267, 1268, 5, 867, 0, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1262, 1, 0, 0, 0, 1269, 1264, 1, 0, 0, 0, 1270, 1272, 1, 0, 0, 0, 1271, 1193, 1, 0, 0, 0, 1271, 1218, 1, 0, 0, 0, 1271, 1253, 1, 0, 0, 0, 1272, 39, 1, 0, 0, 0, 1273, 1275, 5, 34, 0, 0, 1274, 1276, 5, 180, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 5, 658, 0, 0, 1278, 1282, 3, 660, 330, 0, 1279, 1280, 5, 6, 0, 0, 1280, 1281, 5, 361, 0, 0, 1281, 1283, 5, 882, 0, 0, 1282, 1279, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1289, 1, 0, 0, 0, 1284, 1286, 5, 314, 0, 0, 1285, 1287, 5, 857, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 3, 710, 355, 0, 1289, 1284, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1294, 1, 0, 0, 0, 1291, 1292, 5, 399, 0, 0, 1292, 1293, 5, 857, 0, 0, 1293, 1295, 3, 710, 355, 0, 1294, 1291, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1301, 1, 0, 0, 0, 1296, 1298, 5, 380, 0, 0, 1297, 1299, 5, 857, 0, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 3, 688, 344, 0, 1301, 1296, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1308, 1, 0, 0, 0, 1303, 1305, 5, 825, 0, 0, 1304, 1306, 5, 857, 0, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 5, 882, 0, 0, 1308, 1303, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 41, 1, 0, 0, 0, 1310, 1312, 5, 34, 0, 0, 1311, 1313, 5, 180, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 5, 658, 0, 0, 1315, 1316, 3, 660, 330, 0, 1316, 1317, 5, 6, 0, 0, 1317, 1318, 5, 361, 0, 0, 1318, 1319, 5, 882, 0, 0, 1319, 1320, 5, 187, 0, 0, 1320, 1321, 5, 451, 0, 0, 1321, 1322, 5, 74, 0, 0, 1322, 1328, 3, 702, 351, 0, 1323, 1325, 5, 393, 0, 0, 1324, 1326, 5, 857, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 3, 710, 355, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1335, 1, 0, 0, 0, 1330, 1332, 5, 428, 0, 0, 1331, 1333, 5, 857, 0, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 3, 710, 355, 0, 1335, 1330, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1342, 1, 0, 0, 0, 1337, 1339, 5, 314, 0, 0, 1338, 1340, 5, 857, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 710, 355, 0, 1342, 1337, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1349, 1, 0, 0, 0, 1344, 1346, 5, 481, 0, 0, 1345, 1347, 5, 857, 0, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 3, 710, 355, 0, 1349, 1344, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1356, 1, 0, 0, 0, 1351, 1353, 5, 504, 0, 0, 1352, 1354, 5, 857, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 702, 351, 0, 1356, 1351, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1360, 5, 687, 0, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1366, 1, 0, 0, 0, 1361, 1363, 5, 340, 0, 0, 1362, 1364, 5, 857, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 5, 882, 0, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1370, 5, 380, 0, 0, 1369, 1371, 5, 857, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 3, 688, 344, 0, 1373, 43, 1, 0, 0, 0, 1374, 1376, 5, 34, 0, 0, 1375, 1377, 3, 58, 29, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1380, 5, 178, 0, 0, 1379, 1381, 3, 756, 378, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 3, 698, 349, 0, 1383, 1384, 7, 7, 0, 0, 1384, 1385, 7, 8, 0, 0, 1385, 1386, 5, 119, 0, 0, 1386, 1387, 3, 648, 324, 0, 1387, 1388, 5, 65, 0, 0, 1388, 1389, 5, 52, 0, 0, 1389, 1392, 5, 586, 0, 0, 1390, 1391, 7, 9, 0, 0, 1391, 1393, 3, 698, 349, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 3, 416, 208, 0, 1395, 45, 1, 0, 0, 0, 1396, 1398, 5, 194, 0, 0, 1397, 1399, 5, 552, 0, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 3, 48, 24, 0, 1401, 47, 1, 0, 0, 0, 1402, 1414, 3, 702, 351, 0, 1403, 1404, 5, 866, 0, 0, 1404, 1409, 3, 702, 351, 0, 1405, 1406, 5, 868, 0, 0, 1406, 1408, 3, 702, 351, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1412, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 867, 0, 0, 1413, 1415, 1, 0, 0, 0, 1414, 1403, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1417, 5, 13, 0, 0, 1417, 1418, 5, 866, 0, 0, 1418, 1419, 3, 10, 5, 0, 1419, 1422, 5, 867, 0, 0, 1420, 1421, 5, 868, 0, 0, 1421, 1423, 3, 48, 24, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 49, 1, 0, 0, 0, 1424, 1426, 5, 34, 0, 0, 1425, 1427, 3, 758, 379, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1431, 1, 0, 0, 0, 1428, 1429, 5, 308, 0, 0, 1429, 1430, 5, 857, 0, 0, 1430, 1432, 7, 10, 0, 0, 1431, 1428, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1435, 3, 58, 29, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1439, 1, 0, 0, 0, 1436, 1437, 5, 162, 0, 0, 1437, 1438, 5, 591, 0, 0, 1438, 1440, 7, 11, 0, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 5, 684, 0, 0, 1442, 1447, 3, 630, 315, 0, 1443, 1444, 5, 866, 0, 0, 1444, 1445, 3, 656, 328, 0, 1445, 1446, 5, 867, 0, 0, 1446, 1448, 1, 0, 0, 0, 1447, 1443, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1469, 5, 13, 0, 0, 1450, 1452, 5, 866, 0, 0, 1451, 1453, 3, 46, 23, 0, 1452, 1451, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 3, 204, 102, 0, 1455, 1456, 5, 867, 0, 0, 1456, 1470, 1, 0, 0, 0, 1457, 1459, 3, 46, 23, 0, 1458, 1457, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1467, 3, 204, 102, 0, 1461, 1463, 5, 194, 0, 0, 1462, 1464, 7, 12, 0, 0, 1463, 1462, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 5, 27, 0, 0, 1466, 1468, 5, 121, 0, 0, 1467, 1461, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1470, 1, 0, 0, 0, 1469, 1450, 1, 0, 0, 0, 1469, 1458, 1, 0, 0, 0, 1470, 51, 1, 0, 0, 0, 1471, 1473, 5, 42, 0, 0, 1472, 1471, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1476, 3, 54, 27, 0, 1475, 1477, 5, 857, 0, 0, 1476, 1475, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1480, 1, 0, 0, 0, 1478, 1481, 3, 684, 342, 0, 1479, 1481, 5, 42, 0, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1479, 1, 0, 0, 0, 1481, 1505, 1, 0, 0, 0, 1482, 1484, 5, 42, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1487, 5, 28, 0, 0, 1486, 1488, 5, 857, 0, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1505, 3, 686, 343, 0, 1490, 1492, 5, 42, 0, 0, 1491, 1490, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1495, 5, 376, 0, 0, 1494, 1496, 5, 857, 0, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1505, 5, 882, 0, 0, 1498, 1499, 5, 135, 0, 0, 1499, 1501, 5, 515, 0, 0, 1500, 1502, 5, 857, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1505, 7, 13, 0, 0, 1504, 1472, 1, 0, 0, 0, 1504, 1483, 1, 0, 0, 0, 1504, 1491, 1, 0, 0, 0, 1504, 1498, 1, 0, 0, 0, 1505, 53, 1, 0, 0, 0, 1506, 1507, 5, 26, 0, 0, 1507, 1512, 5, 155, 0, 0, 1508, 1512, 5, 823, 0, 0, 1509, 1510, 5, 224, 0, 0, 1510, 1512, 5, 155, 0, 0, 1511, 1506, 1, 0, 0, 0, 1511, 1508, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 55, 1, 0, 0, 0, 1513, 1516, 7, 14, 0, 0, 1514, 1515, 5, 866, 0, 0, 1515, 1517, 5, 867, 0, 0, 1516, 1514, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 57, 1, 0, 0, 0, 1518, 1519, 5, 364, 0, 0, 1519, 1522, 5, 857, 0, 0, 1520, 1523, 3, 680, 340, 0, 1521, 1523, 3, 56, 28, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1521, 1, 0, 0, 0, 1523, 59, 1, 0, 0, 0, 1524, 1525, 5, 311, 0, 0, 1525, 1529, 3, 62, 31, 0, 1526, 1528, 3, 64, 32, 0, 1527, 1526, 1, 0, 0, 0, 1528, 1531, 1, 0, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1559, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1535, 5, 387, 0, 0, 1533, 1536, 3, 708, 354, 0, 1534, 1536, 3, 800, 400, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1546, 3, 66, 33, 0, 1538, 1539, 5, 641, 0, 0, 1539, 1543, 3, 62, 31, 0, 1540, 1542, 3, 64, 32, 0, 1541, 1540, 1, 0, 0, 0, 1542, 1545, 1, 0, 0, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1547, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1538, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1556, 1, 0, 0, 0, 1548, 1549, 5, 379, 0, 0, 1549, 1553, 3, 62, 31, 0, 1550, 1552, 3, 64, 32, 0, 1551, 1550, 1, 0, 0, 0, 1552, 1555, 1, 0, 0, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1557, 1, 0, 0, 0, 1555, 1553, 1, 0, 0, 0, 1556, 1548, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1559, 1, 0, 0, 0, 1558, 1524, 1, 0, 0, 0, 1558, 1532, 1, 0, 0, 0, 1559, 61, 1, 0, 0, 0, 1560, 1565, 5, 287, 0, 0, 1561, 1565, 3, 712, 356, 0, 1562, 1565, 3, 708, 354, 0, 1563, 1565, 3, 800, 400, 0, 1564, 1560, 1, 0, 0, 0, 1564, 1561, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1564, 1563, 1, 0, 0, 0, 1565, 63, 1, 0, 0, 0, 1566, 1567, 5, 853, 0, 0, 1567, 1570, 5, 87, 0, 0, 1568, 1571, 3, 708, 354, 0, 1569, 1571, 3, 800, 400, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1569, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 66, 33, 0, 1573, 65, 1, 0, 0, 0, 1574, 1588, 3, 826, 413, 0, 1575, 1588, 5, 223, 0, 0, 1576, 1588, 5, 242, 0, 0, 1577, 1588, 5, 243, 0, 0, 1578, 1588, 5, 244, 0, 0, 1579, 1588, 5, 245, 0, 0, 1580, 1588, 5, 246, 0, 0, 1581, 1588, 5, 247, 0, 0, 1582, 1588, 5, 248, 0, 0, 1583, 1588, 5, 249, 0, 0, 1584, 1588, 5, 250, 0, 0, 1585, 1588, 5, 251, 0, 0, 1586, 1588, 5, 252, 0, 0, 1587, 1574, 1, 0, 0, 0, 1587, 1575, 1, 0, 0, 0, 1587, 1576, 1, 0, 0, 0, 1587, 1577, 1, 0, 0, 0, 1587, 1578, 1, 0, 0, 0, 1587, 1579, 1, 0, 0, 0, 1587, 1580, 1, 0, 0, 0, 1587, 1581, 1, 0, 0, 0, 1587, 1582, 1, 0, 0, 0, 1587, 1583, 1, 0, 0, 0, 1587, 1584, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1586, 1, 0, 0, 0, 1588, 67, 1, 0, 0, 0, 1589, 1595, 5, 375, 0, 0, 1590, 1595, 5, 368, 0, 0, 1591, 1592, 5, 368, 0, 0, 1592, 1593, 5, 119, 0, 0, 1593, 1595, 5, 598, 0, 0, 1594, 1589, 1, 0, 0, 0, 1594, 1590, 1, 0, 0, 0, 1594, 1591, 1, 0, 0, 0, 1595, 69, 1, 0, 0, 0, 1596, 1597, 5, 188, 0, 0, 1597, 1598, 7, 15, 0, 0, 1598, 71, 1, 0, 0, 0, 1599, 1601, 5, 443, 0, 0, 1600, 1602, 5, 857, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1622, 3, 710, 355, 0, 1604, 1622, 3, 70, 35, 0, 1605, 1606, 5, 194, 0, 0, 1606, 1607, 5, 525, 0, 0, 1607, 1622, 3, 702, 351, 0, 1608, 1609, 5, 340, 0, 0, 1609, 1622, 5, 882, 0, 0, 1610, 1622, 7, 16, 0, 0, 1611, 1613, 5, 825, 0, 0, 1612, 1614, 5, 857, 0, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1622, 5, 882, 0, 0, 1616, 1618, 5, 833, 0, 0, 1617, 1619, 5, 857, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1622, 5, 882, 0, 0, 1621, 1599, 1, 0, 0, 0, 1621, 1604, 1, 0, 0, 0, 1621, 1605, 1, 0, 0, 0, 1621, 1608, 1, 0, 0, 0, 1621, 1610, 1, 0, 0, 0, 1621, 1611, 1, 0, 0, 0, 1621, 1616, 1, 0, 0, 0, 1622, 73, 1, 0, 0, 0, 1623, 1625, 7, 17, 0, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 3, 702, 351, 0, 1627, 1628, 3, 722, 361, 0, 1628, 75, 1, 0, 0, 0, 1629, 1630, 5, 340, 0, 0, 1630, 1653, 5, 882, 0, 0, 1631, 1632, 5, 444, 0, 0, 1632, 1653, 5, 162, 0, 0, 1633, 1635, 5, 114, 0, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1653, 5, 47, 0, 0, 1637, 1638, 5, 354, 0, 0, 1638, 1648, 5, 162, 0, 0, 1639, 1640, 5, 502, 0, 0, 1640, 1648, 5, 162, 0, 0, 1641, 1642, 5, 136, 0, 0, 1642, 1643, 5, 162, 0, 0, 1643, 1648, 5, 360, 0, 0, 1644, 1645, 5, 112, 0, 0, 1645, 1646, 5, 162, 0, 0, 1646, 1648, 5, 360, 0, 0, 1647, 1637, 1, 0, 0, 0, 1647, 1639, 1, 0, 0, 0, 1647, 1641, 1, 0, 0, 0, 1647, 1644, 1, 0, 0, 0, 1648, 1653, 1, 0, 0, 0, 1649, 1650, 5, 162, 0, 0, 1650, 1651, 5, 591, 0, 0, 1651, 1653, 7, 11, 0, 0, 1652, 1629, 1, 0, 0, 0, 1652, 1631, 1, 0, 0, 0, 1652, 1634, 1, 0, 0, 0, 1652, 1647, 1, 0, 0, 0, 1652, 1649, 1, 0, 0, 0, 1653, 77, 1, 0, 0, 0, 1654, 1655, 5, 421, 0, 0, 1655, 1669, 5, 882, 0, 0, 1656, 1657, 5, 39, 0, 0, 1657, 1669, 5, 882, 0, 0, 1658, 1659, 5, 678, 0, 0, 1659, 1669, 5, 882, 0, 0, 1660, 1661, 5, 529, 0, 0, 1661, 1669, 5, 882, 0, 0, 1662, 1663, 5, 601, 0, 0, 1663, 1669, 5, 882, 0, 0, 1664, 1665, 5, 519, 0, 0, 1665, 1669, 5, 882, 0, 0, 1666, 1667, 5, 537, 0, 0, 1667, 1669, 3, 708, 354, 0, 1668, 1654, 1, 0, 0, 0, 1668, 1656, 1, 0, 0, 0, 1668, 1658, 1, 0, 0, 0, 1668, 1660, 1, 0, 0, 0, 1668, 1662, 1, 0, 0, 0, 1668, 1664, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 79, 1, 0, 0, 0, 1670, 1671, 5, 866, 0, 0, 1671, 1676, 3, 82, 41, 0, 1672, 1673, 5, 868, 0, 0, 1673, 1675, 3, 82, 41, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1680, 5, 867, 0, 0, 1680, 81, 1, 0, 0, 0, 1681, 1682, 3, 658, 329, 0, 1682, 1683, 3, 88, 44, 0, 1683, 1765, 1, 0, 0, 0, 1684, 1686, 7, 18, 0, 0, 1685, 1687, 3, 638, 319, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688, 1690, 3, 70, 35, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1695, 3, 734, 367, 0, 1692, 1694, 3, 72, 36, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1765, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1700, 7, 19, 0, 0, 1699, 1701, 7, 18, 0, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1703, 1, 0, 0, 0, 1702, 1704, 3, 638, 319, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1709, 3, 734, 367, 0, 1706, 1708, 3, 72, 36, 0, 1707, 1706, 1, 0, 0, 0, 1708, 1711, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1765, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1714, 3, 86, 43, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 131, 0, 0, 1716, 1718, 5, 92, 0, 0, 1717, 1719, 3, 70, 35, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1724, 3, 734, 367, 0, 1721, 1723, 3, 72, 36, 0, 1722, 1721, 1, 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1765, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1729, 3, 86, 43, 0, 1728, 1727, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1732, 5, 182, 0, 0, 1731, 1733, 7, 18, 0, 0, 1732, 1731, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1735, 1, 0, 0, 0, 1734, 1736, 3, 638, 319, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1738, 1, 0, 0, 0, 1737, 1739, 3, 70, 35, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1744, 3, 734, 367, 0, 1741, 1743, 3, 72, 36, 0, 1742, 1741, 1, 0, 0, 0, 1743, 1746, 1, 0, 0, 0, 1744, 1742, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1765, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1749, 3, 86, 43, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 5, 67, 0, 0, 1751, 1753, 5, 92, 0, 0, 1752, 1754, 3, 638, 319, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 3, 734, 367, 0, 1756, 1757, 3, 92, 46, 0, 1757, 1765, 1, 0, 0, 0, 1758, 1759, 5, 27, 0, 0, 1759, 1760, 5, 866, 0, 0, 1760, 1761, 3, 800, 400, 0, 1761, 1762, 5, 867, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1765, 3, 84, 42, 0, 1764, 1681, 1, 0, 0, 0, 1764, 1684, 1, 0, 0, 0, 1764, 1698, 1, 0, 0, 0, 1764, 1713, 1, 0, 0, 0, 1764, 1728, 1, 0, 0, 0, 1764, 1748, 1, 0, 0, 0, 1764, 1758, 1, 0, 0, 0, 1764, 1763, 1, 0, 0, 0, 1765, 83, 1, 0, 0, 0, 1766, 1768, 3, 86, 43, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 5, 27, 0, 0, 1770, 1771, 5, 866, 0, 0, 1771, 1772, 3, 800, 400, 0, 1772, 1777, 5, 867, 0, 0, 1773, 1775, 5, 114, 0, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1778, 5, 57, 0, 0, 1777, 1774, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 85, 1, 0, 0, 0, 1779, 1781, 5, 31, 0, 0, 1780, 1782, 3, 702, 351, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 87, 1, 0, 0, 0, 1783, 1787, 3, 722, 361, 0, 1784, 1786, 3, 90, 45, 0, 1785, 1784, 1, 0, 0, 0, 1786, 1789, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 89, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1790, 1834, 3, 718, 359, 0, 1791, 1792, 5, 42, 0, 0, 1792, 1834, 3, 750, 375, 0, 1793, 1834, 5, 686, 0, 0, 1794, 1834, 5, 435, 0, 0, 1795, 1800, 5, 315, 0, 0, 1796, 1797, 5, 119, 0, 0, 1797, 1798, 5, 185, 0, 0, 1798, 1800, 3, 752, 376, 0, 1799, 1795, 1, 0, 0, 0, 1799, 1796, 1, 0, 0, 0, 1800, 1834, 1, 0, 0, 0, 1801, 1803, 5, 131, 0, 0, 1802, 1801, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1834, 5, 92, 0, 0, 1805, 1807, 5, 182, 0, 0, 1806, 1808, 5, 92, 0, 0, 1807, 1806, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1834, 1, 0, 0, 0, 1809, 1810, 5, 340, 0, 0, 1810, 1834, 5, 882, 0, 0, 1811, 1812, 5, 338, 0, 0, 1812, 1834, 7, 20, 0, 0, 1813, 1814, 5, 647, 0, 0, 1814, 1834, 7, 21, 0, 0, 1815, 1834, 3, 92, 46, 0, 1816, 1817, 5, 28, 0, 0, 1817, 1834, 3, 686, 343, 0, 1818, 1819, 5, 71, 0, 0, 1819, 1821, 5, 9, 0, 0, 1820, 1818, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 13, 0, 0, 1823, 1824, 5, 866, 0, 0, 1824, 1825, 3, 800, 400, 0, 1825, 1827, 5, 867, 0, 0, 1826, 1828, 7, 22, 0, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1834, 1, 0, 0, 0, 1829, 1830, 5, 241, 0, 0, 1830, 1831, 5, 42, 0, 0, 1831, 1834, 5, 682, 0, 0, 1832, 1834, 3, 84, 42, 0, 1833, 1790, 1, 0, 0, 0, 1833, 1791, 1, 0, 0, 0, 1833, 1793, 1, 0, 0, 0, 1833, 1794, 1, 0, 0, 0, 1833, 1799, 1, 0, 0, 0, 1833, 1802, 1, 0, 0, 0, 1833, 1805, 1, 0, 0, 0, 1833, 1809, 1, 0, 0, 0, 1833, 1811, 1, 0, 0, 0, 1833, 1813, 1, 0, 0, 0, 1833, 1815, 1, 0, 0, 0, 1833, 1816, 1, 0, 0, 0, 1833, 1820, 1, 0, 0, 0, 1833, 1829, 1, 0, 0, 0, 1833, 1832, 1, 0, 0, 0, 1834, 91, 1, 0, 0, 0, 1835, 1836, 5, 138, 0, 0, 1836, 1838, 3, 648, 324, 0, 1837, 1839, 3, 734, 367, 0, 1838, 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1841, 5, 110, 0, 0, 1841, 1843, 7, 23, 0, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1845, 1, 0, 0, 0, 1844, 1846, 3, 94, 47, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 93, 1, 0, 0, 0, 1847, 1848, 5, 119, 0, 0, 1848, 1849, 5, 44, 0, 0, 1849, 1853, 3, 96, 48, 0, 1850, 1851, 5, 119, 0, 0, 1851, 1852, 5, 185, 0, 0, 1852, 1854, 3, 96, 48, 0, 1853, 1850, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1864, 1, 0, 0, 0, 1855, 1856, 5, 119, 0, 0, 1856, 1857, 5, 185, 0, 0, 1857, 1861, 3, 96, 48, 0, 1858, 1859, 5, 119, 0, 0, 1859, 1860, 5, 44, 0, 0, 1860, 1862, 3, 96, 48, 0, 1861, 1858, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 1, 0, 0, 0, 1863, 1847, 1, 0, 0, 0, 1863, 1855, 1, 0, 0, 0, 1864, 95, 1, 0, 0, 0, 1865, 1874, 5, 146, 0, 0, 1866, 1874, 5, 22, 0, 0, 1867, 1868, 5, 155, 0, 0, 1868, 1874, 5, 116, 0, 0, 1869, 1870, 5, 502, 0, 0, 1870, 1874, 5, 305, 0, 0, 1871, 1872, 5, 155, 0, 0, 1872, 1874, 5, 42, 0, 0, 1873, 1865, 1, 0, 0, 0, 1873, 1866, 1, 0, 0, 0, 1873, 1867, 1, 0, 0, 0, 1873, 1869, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1874, 97, 1, 0, 0, 0, 1875, 1877, 5, 380, 0, 0, 1876, 1878, 5, 857, 0, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1880, 1, 0, 0, 0, 1879, 1881, 3, 688, 344, 0, 1880, 1879, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 2061, 1, 0, 0, 0, 1882, 1884, 5, 825, 0, 0, 1883, 1885, 5, 857, 0, 0, 1884, 1883, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 2061, 5, 882, 0, 0, 1887, 1889, 5, 314, 0, 0, 1888, 1890, 5, 857, 0, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 2061, 3, 708, 354, 0, 1892, 1894, 5, 315, 0, 0, 1893, 1895, 5, 857, 0, 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 2061, 3, 708, 354, 0, 1897, 1899, 5, 316, 0, 0, 1898, 1900, 5, 857, 0, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 2061, 3, 708, 354, 0, 1902, 1904, 5, 42, 0, 0, 1903, 1902, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1907, 3, 54, 27, 0, 1906, 1908, 5, 857, 0, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1912, 3, 684, 342, 0, 1910, 1912, 5, 42, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 2061, 1, 0, 0, 0, 1913, 1915, 7, 24, 0, 0, 1914, 1916, 5, 857, 0, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 2061, 7, 25, 0, 0, 1918, 1920, 5, 42, 0, 0, 1919, 1918, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 5, 28, 0, 0, 1922, 1924, 5, 857, 0, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 2061, 3, 686, 343, 0, 1926, 1928, 5, 340, 0, 0, 1927, 1929, 5, 857, 0, 0, 1928, 1927, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 2061, 5, 882, 0, 0, 1931, 1933, 5, 346, 0, 0, 1932, 1934, 5, 857, 0, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 2061, 7, 26, 0, 0, 1936, 1938, 5, 349, 0, 0, 1937, 1939, 5, 857, 0, 0, 1938, 1937, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 2061, 5, 882, 0, 0, 1941, 1942, 7, 27, 0, 0, 1942, 1944, 5, 367, 0, 0, 1943, 1945, 5, 857, 0, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 2061, 5, 882, 0, 0, 1947, 1949, 5, 365, 0, 0, 1948, 1950, 5, 857, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 2061, 7, 25, 0, 0, 1952, 1954, 5, 376, 0, 0, 1953, 1955, 5, 857, 0, 0, 1954, 1953, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 2061, 5, 882, 0, 0, 1957, 1959, 7, 28, 0, 0, 1958, 1960, 5, 857, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 2061, 7, 25, 0, 0, 1962, 1964, 7, 29, 0, 0, 1963, 1965, 5, 857, 0, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 2061, 3, 708, 354, 0, 1967, 1969, 5, 377, 0, 0, 1968, 1970, 5, 857, 0, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 2061, 3, 708, 354, 0, 1972, 1973, 5, 82, 0, 0, 1973, 1975, 5, 367, 0, 0, 1974, 1976, 5, 857, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 2061, 5, 882, 0, 0, 1978, 1980, 5, 431, 0, 0, 1979, 1981, 5, 857, 0, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 2061, 7, 30, 0, 0, 1983, 1985, 5, 443, 0, 0, 1984, 1986, 5, 857, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 2061, 3, 710, 355, 0, 1988, 1990, 5, 480, 0, 0, 1989, 1991, 5, 857, 0, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 2061, 3, 708, 354, 0, 1993, 1995, 5, 490, 0, 0, 1994, 1996, 5, 857, 0, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2061, 3, 708, 354, 0, 1998, 2000, 5, 520, 0, 0, 1999, 2001, 5, 857, 0, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2061, 7, 13, 0, 0, 2003, 2005, 5, 529, 0, 0, 2004, 2006, 5, 857, 0, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2061, 5, 882, 0, 0, 2008, 2010, 5, 588, 0, 0, 2009, 2011, 5, 857, 0, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2061, 7, 31, 0, 0, 2013, 2014, 5, 640, 0, 0, 2014, 2061, 5, 664, 0, 0, 2015, 2017, 5, 833, 0, 0, 2016, 2018, 5, 857, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2061, 5, 882, 0, 0, 2020, 2022, 5, 642, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2061, 7, 13, 0, 0, 2025, 2027, 5, 643, 0, 0, 2026, 2028, 5, 857, 0, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2061, 7, 13, 0, 0, 2030, 2032, 5, 644, 0, 0, 2031, 2033, 5, 857, 0, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2037, 5, 42, 0, 0, 2035, 2037, 3, 708, 354, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2035, 1, 0, 0, 0, 2037, 2061, 1, 0, 0, 0, 2038, 2039, 5, 658, 0, 0, 2039, 2041, 3, 662, 331, 0, 2040, 2042, 3, 102, 51, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2061, 1, 0, 0, 0, 2043, 2044, 5, 659, 0, 0, 2044, 2045, 5, 857, 0, 0, 2045, 2061, 3, 100, 50, 0, 2046, 2061, 3, 102, 51, 0, 2047, 2049, 5, 665, 0, 0, 2048, 2050, 5, 857, 0, 0, 2049, 2048, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2061, 7, 25, 0, 0, 2052, 2054, 5, 181, 0, 0, 2053, 2055, 5, 857, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 866, 0, 0, 2057, 2058, 3, 646, 323, 0, 2058, 2059, 5, 867, 0, 0, 2059, 2061, 1, 0, 0, 0, 2060, 1875, 1, 0, 0, 0, 2060, 1882, 1, 0, 0, 0, 2060, 1887, 1, 0, 0, 0, 2060, 1892, 1, 0, 0, 0, 2060, 1897, 1, 0, 0, 0, 2060, 1903, 1, 0, 0, 0, 2060, 1913, 1, 0, 0, 0, 2060, 1919, 1, 0, 0, 0, 2060, 1926, 1, 0, 0, 0, 2060, 1931, 1, 0, 0, 0, 2060, 1936, 1, 0, 0, 0, 2060, 1941, 1, 0, 0, 0, 2060, 1947, 1, 0, 0, 0, 2060, 1952, 1, 0, 0, 0, 2060, 1957, 1, 0, 0, 0, 2060, 1962, 1, 0, 0, 0, 2060, 1967, 1, 0, 0, 0, 2060, 1972, 1, 0, 0, 0, 2060, 1978, 1, 0, 0, 0, 2060, 1983, 1, 0, 0, 0, 2060, 1988, 1, 0, 0, 0, 2060, 1993, 1, 0, 0, 0, 2060, 1998, 1, 0, 0, 0, 2060, 2003, 1, 0, 0, 0, 2060, 2008, 1, 0, 0, 0, 2060, 2013, 1, 0, 0, 0, 2060, 2015, 1, 0, 0, 0, 2060, 2020, 1, 0, 0, 0, 2060, 2025, 1, 0, 0, 0, 2060, 2030, 1, 0, 0, 0, 2060, 2038, 1, 0, 0, 0, 2060, 2043, 1, 0, 0, 0, 2060, 2046, 1, 0, 0, 0, 2060, 2047, 1, 0, 0, 0, 2060, 2052, 1, 0, 0, 0, 2061, 99, 1, 0, 0, 0, 2062, 2063, 7, 32, 0, 0, 2063, 101, 1, 0, 0, 0, 2064, 2065, 5, 647, 0, 0, 2065, 2066, 7, 21, 0, 0, 2066, 103, 1, 0, 0, 0, 2067, 2068, 5, 130, 0, 0, 2068, 2069, 5, 20, 0, 0, 2069, 2072, 3, 106, 53, 0, 2070, 2071, 5, 528, 0, 0, 2071, 2073, 3, 708, 354, 0, 2072, 2070, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2081, 1, 0, 0, 0, 2074, 2075, 5, 652, 0, 0, 2075, 2076, 5, 20, 0, 0, 2076, 2079, 3, 108, 54, 0, 2077, 2078, 5, 653, 0, 0, 2078, 2080, 3, 708, 354, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2082, 1, 0, 0, 0, 2081, 2074, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2094, 1, 0, 0, 0, 2083, 2084, 5, 866, 0, 0, 2084, 2089, 3, 110, 55, 0, 2085, 2086, 5, 868, 0, 0, 2086, 2088, 3, 110, 55, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2092, 2093, 5, 867, 0, 0, 2093, 2095, 1, 0, 0, 0, 2094, 2083, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 105, 1, 0, 0, 0, 2096, 2098, 5, 101, 0, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2100, 5, 418, 0, 0, 2100, 2101, 5, 866, 0, 0, 2101, 2102, 3, 800, 400, 0, 2102, 2103, 5, 867, 0, 0, 2103, 2143, 1, 0, 0, 0, 2104, 2106, 5, 101, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2111, 5, 92, 0, 0, 2108, 2109, 5, 308, 0, 0, 2109, 2110, 5, 857, 0, 0, 2110, 2112, 7, 33, 0, 0, 2111, 2108, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 5, 866, 0, 0, 2114, 2116, 3, 656, 328, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2143, 5, 867, 0, 0, 2118, 2128, 5, 134, 0, 0, 2119, 2120, 5, 866, 0, 0, 2120, 2121, 3, 800, 400, 0, 2121, 2122, 5, 867, 0, 0, 2122, 2129, 1, 0, 0, 0, 2123, 2124, 5, 337, 0, 0, 2124, 2125, 5, 866, 0, 0, 2125, 2126, 3, 656, 328, 0, 2126, 2127, 5, 867, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2119, 1, 0, 0, 0, 2128, 2123, 1, 0, 0, 0, 2129, 2143, 1, 0, 0, 0, 2130, 2140, 5, 449, 0, 0, 2131, 2132, 5, 866, 0, 0, 2132, 2133, 3, 800, 400, 0, 2133, 2134, 5, 867, 0, 0, 2134, 2141, 1, 0, 0, 0, 2135, 2136, 5, 337, 0, 0, 2136, 2137, 5, 866, 0, 0, 2137, 2138, 3, 656, 328, 0, 2138, 2139, 5, 867, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2131, 1, 0, 0, 0, 2140, 2135, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2097, 1, 0, 0, 0, 2142, 2105, 1, 0, 0, 0, 2142, 2118, 1, 0, 0, 0, 2142, 2130, 1, 0, 0, 0, 2143, 107, 1, 0, 0, 0, 2144, 2146, 5, 101, 0, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 5, 418, 0, 0, 2148, 2149, 5, 866, 0, 0, 2149, 2150, 3, 800, 400, 0, 2150, 2151, 5, 867, 0, 0, 2151, 2166, 1, 0, 0, 0, 2152, 2154, 5, 101, 0, 0, 2153, 2152, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2159, 5, 92, 0, 0, 2156, 2157, 5, 308, 0, 0, 2157, 2158, 5, 857, 0, 0, 2158, 2160, 7, 33, 0, 0, 2159, 2156, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2162, 5, 866, 0, 0, 2162, 2163, 3, 656, 328, 0, 2163, 2164, 5, 867, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2145, 1, 0, 0, 0, 2165, 2153, 1, 0, 0, 0, 2166, 109, 1, 0, 0, 0, 2167, 2168, 5, 130, 0, 0, 2168, 2169, 3, 668, 334, 0, 2169, 2170, 5, 189, 0, 0, 2170, 2171, 5, 447, 0, 0, 2171, 2172, 5, 662, 0, 0, 2172, 2173, 5, 866, 0, 0, 2173, 2178, 3, 112, 56, 0, 2174, 2175, 5, 868, 0, 0, 2175, 2177, 3, 112, 56, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2180, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2181, 2185, 5, 867, 0, 0, 2182, 2184, 3, 118, 59, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2199, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2189, 5, 866, 0, 0, 2189, 2194, 3, 116, 58, 0, 2190, 2191, 5, 868, 0, 0, 2191, 2193, 3, 116, 58, 0, 2192, 2190, 1, 0, 0, 0, 2193, 2196, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2198, 5, 867, 0, 0, 2198, 2200, 1, 0, 0, 0, 2199, 2188, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2314, 1, 0, 0, 0, 2201, 2202, 5, 130, 0, 0, 2202, 2203, 3, 668, 334, 0, 2203, 2204, 5, 189, 0, 0, 2204, 2205, 5, 447, 0, 0, 2205, 2206, 5, 662, 0, 0, 2206, 2210, 3, 112, 56, 0, 2207, 2209, 3, 118, 59, 0, 2208, 2207, 1, 0, 0, 0, 2209, 2212, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2224, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2214, 5, 866, 0, 0, 2214, 2219, 3, 116, 58, 0, 2215, 2216, 5, 868, 0, 0, 2216, 2218, 3, 116, 58, 0, 2217, 2215, 1, 0, 0, 0, 2218, 2221, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2222, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2222, 2223, 5, 867, 0, 0, 2223, 2225, 1, 0, 0, 0, 2224, 2213, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2314, 1, 0, 0, 0, 2226, 2227, 5, 130, 0, 0, 2227, 2228, 3, 668, 334, 0, 2228, 2229, 5, 189, 0, 0, 2229, 2230, 5, 80, 0, 0, 2230, 2231, 5, 866, 0, 0, 2231, 2236, 3, 112, 56, 0, 2232, 2233, 5, 868, 0, 0, 2233, 2235, 3, 112, 56, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2238, 1, 0, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2239, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2239, 2243, 5, 867, 0, 0, 2240, 2242, 3, 118, 59, 0, 2241, 2240, 1, 0, 0, 0, 2242, 2245, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2257, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2246, 2247, 5, 866, 0, 0, 2247, 2252, 3, 116, 58, 0, 2248, 2249, 5, 868, 0, 0, 2249, 2251, 3, 116, 58, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2254, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2255, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2256, 5, 867, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2246, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2314, 1, 0, 0, 0, 2259, 2260, 5, 130, 0, 0, 2260, 2261, 3, 668, 334, 0, 2261, 2262, 5, 189, 0, 0, 2262, 2263, 5, 80, 0, 0, 2263, 2264, 5, 866, 0, 0, 2264, 2269, 3, 114, 57, 0, 2265, 2266, 5, 868, 0, 0, 2266, 2268, 3, 114, 57, 0, 2267, 2265, 1, 0, 0, 0, 2268, 2271, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2272, 2276, 5, 867, 0, 0, 2273, 2275, 3, 118, 59, 0, 2274, 2273, 1, 0, 0, 0, 2275, 2278, 1, 0, 0, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2290, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2279, 2280, 5, 866, 0, 0, 2280, 2285, 3, 116, 58, 0, 2281, 2282, 5, 868, 0, 0, 2282, 2284, 3, 116, 58, 0, 2283, 2281, 1, 0, 0, 0, 2284, 2287, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2288, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 5, 867, 0, 0, 2289, 2291, 1, 0, 0, 0, 2290, 2279, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2314, 1, 0, 0, 0, 2292, 2293, 5, 130, 0, 0, 2293, 2297, 3, 668, 334, 0, 2294, 2296, 3, 118, 59, 0, 2295, 2294, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2311, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 866, 0, 0, 2301, 2306, 3, 116, 58, 0, 2302, 2303, 5, 868, 0, 0, 2303, 2305, 3, 116, 58, 0, 2304, 2302, 1, 0, 0, 0, 2305, 2308, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2310, 5, 867, 0, 0, 2310, 2312, 1, 0, 0, 0, 2311, 2300, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2167, 1, 0, 0, 0, 2313, 2201, 1, 0, 0, 0, 2313, 2226, 1, 0, 0, 0, 2313, 2259, 1, 0, 0, 0, 2313, 2292, 1, 0, 0, 0, 2314, 111, 1, 0, 0, 0, 2315, 2319, 3, 720, 360, 0, 2316, 2319, 3, 800, 400, 0, 2317, 2319, 5, 111, 0, 0, 2318, 2315, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2317, 1, 0, 0, 0, 2319, 113, 1, 0, 0, 0, 2320, 2321, 5, 866, 0, 0, 2321, 2324, 3, 112, 56, 0, 2322, 2323, 5, 868, 0, 0, 2323, 2325, 3, 112, 56, 0, 2324, 2322, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2329, 5, 867, 0, 0, 2329, 115, 1, 0, 0, 0, 2330, 2331, 5, 652, 0, 0, 2331, 2335, 3, 702, 351, 0, 2332, 2334, 3, 118, 59, 0, 2333, 2332, 1, 0, 0, 0, 2334, 2337, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 117, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2338, 2340, 5, 42, 0, 0, 2339, 2338, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2342, 1, 0, 0, 0, 2341, 2343, 5, 647, 0, 0, 2342, 2341, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 5, 380, 0, 0, 2345, 2347, 5, 857, 0, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2387, 3, 688, 344, 0, 2349, 2351, 5, 340, 0, 0, 2350, 2352, 5, 857, 0, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2387, 5, 882, 0, 0, 2354, 2355, 5, 360, 0, 0, 2355, 2357, 5, 367, 0, 0, 2356, 2358, 5, 857, 0, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2387, 5, 882, 0, 0, 2360, 2361, 5, 82, 0, 0, 2361, 2363, 5, 367, 0, 0, 2362, 2364, 5, 857, 0, 0, 2363, 2362, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2387, 5, 882, 0, 0, 2366, 2368, 5, 480, 0, 0, 2367, 2369, 5, 857, 0, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2387, 3, 708, 354, 0, 2371, 2373, 5, 490, 0, 0, 2372, 2374, 5, 857, 0, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2387, 3, 708, 354, 0, 2376, 2378, 5, 658, 0, 0, 2377, 2379, 5, 857, 0, 0, 2378, 2377, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2387, 3, 662, 331, 0, 2381, 2383, 5, 504, 0, 0, 2382, 2384, 5, 857, 0, 0, 2383, 2382, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2387, 3, 702, 351, 0, 2386, 2339, 1, 0, 0, 0, 2386, 2349, 1, 0, 0, 0, 2386, 2354, 1, 0, 0, 0, 2386, 2360, 1, 0, 0, 0, 2386, 2366, 1, 0, 0, 0, 2386, 2371, 1, 0, 0, 0, 2386, 2376, 1, 0, 0, 0, 2386, 2381, 1, 0, 0, 0, 2387, 119, 1, 0, 0, 0, 2388, 2389, 5, 8, 0, 0, 2389, 2391, 7, 0, 0, 0, 2390, 2392, 3, 624, 312, 0, 2391, 2390, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2394, 1, 0, 0, 0, 2393, 2395, 3, 52, 26, 0, 2394, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2407, 1, 0, 0, 0, 2398, 2399, 5, 8, 0, 0, 2399, 2400, 7, 0, 0, 0, 2400, 2401, 3, 624, 312, 0, 2401, 2402, 5, 677, 0, 0, 2402, 2403, 5, 360, 0, 0, 2403, 2404, 5, 367, 0, 0, 2404, 2405, 5, 496, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2388, 1, 0, 0, 0, 2406, 2398, 1, 0, 0, 0, 2407, 121, 1, 0, 0, 0, 2408, 2410, 5, 8, 0, 0, 2409, 2411, 3, 58, 29, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 5, 385, 0, 0, 2413, 2417, 3, 698, 349, 0, 2414, 2415, 5, 119, 0, 0, 2415, 2416, 5, 590, 0, 0, 2416, 2418, 3, 60, 30, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2425, 1, 0, 0, 0, 2419, 2420, 5, 119, 0, 0, 2420, 2422, 5, 343, 0, 0, 2421, 2423, 5, 114, 0, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2426, 5, 541, 0, 0, 2425, 2419, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2430, 1, 0, 0, 0, 2427, 2428, 5, 141, 0, 0, 2428, 2429, 5, 176, 0, 0, 2429, 2431, 3, 698, 349, 0, 2430, 2427, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2434, 3, 68, 34, 0, 2433, 2432, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2436, 5, 340, 0, 0, 2436, 2438, 5, 882, 0, 0, 2437, 2435, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2441, 1, 0, 0, 0, 2439, 2440, 5, 371, 0, 0, 2440, 2442, 3, 416, 208, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 123, 1, 0, 0, 0, 2443, 2444, 5, 8, 0, 0, 2444, 2445, 5, 409, 0, 0, 2445, 2449, 3, 628, 314, 0, 2446, 2448, 3, 76, 38, 0, 2447, 2446, 1, 0, 0, 0, 2448, 2451, 1, 0, 0, 0, 2449, 2447, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 125, 1, 0, 0, 0, 2451, 2449, 1, 0, 0, 0, 2452, 2453, 5, 8, 0, 0, 2453, 2454, 5, 433, 0, 0, 2454, 2455, 5, 585, 0, 0, 2455, 2456, 5, 801, 0, 0, 2456, 2457, 5, 453, 0, 0, 2457, 2458, 5, 92, 0, 0, 2458, 127, 1, 0, 0, 0, 2459, 2460, 5, 8, 0, 0, 2460, 2461, 5, 451, 0, 0, 2461, 2462, 5, 74, 0, 0, 2462, 2463, 3, 702, 351, 0, 2463, 2464, 5, 6, 0, 0, 2464, 2465, 5, 671, 0, 0, 2465, 2471, 5, 882, 0, 0, 2466, 2468, 5, 428, 0, 0, 2467, 2469, 5, 857, 0, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 3, 710, 355, 0, 2471, 2466, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2474, 1, 0, 0, 0, 2473, 2475, 5, 687, 0, 0, 2474, 2473, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 5, 380, 0, 0, 2477, 2479, 5, 857, 0, 0, 2478, 2477, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 3, 688, 344, 0, 2481, 129, 1, 0, 0, 0, 2482, 2483, 5, 8, 0, 0, 2483, 2484, 5, 132, 0, 0, 2484, 2488, 3, 698, 349, 0, 2485, 2487, 3, 76, 38, 0, 2486, 2485, 1, 0, 0, 0, 2487, 2490, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 131, 1, 0, 0, 0, 2490, 2488, 1, 0, 0, 0, 2491, 2492, 5, 8, 0, 0, 2492, 2493, 5, 592, 0, 0, 2493, 2494, 3, 702, 351, 0, 2494, 2495, 5, 518, 0, 0, 2495, 2496, 5, 866, 0, 0, 2496, 2501, 3, 78, 39, 0, 2497, 2498, 5, 868, 0, 0, 2498, 2500, 3, 78, 39, 0, 2499, 2497, 1, 0, 0, 0, 2500, 2503, 1, 0, 0, 0, 2501, 2499, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2504, 2505, 5, 867, 0, 0, 2505, 133, 1, 0, 0, 0, 2506, 2507, 5, 8, 0, 0, 2507, 2508, 5, 173, 0, 0, 2508, 2517, 3, 648, 324, 0, 2509, 2514, 3, 140, 70, 0, 2510, 2511, 5, 868, 0, 0, 2511, 2513, 3, 140, 70, 0, 2512, 2510, 1, 0, 0, 0, 2513, 2516, 1, 0, 0, 0, 2514, 2512, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2518, 1, 0, 0, 0, 2516, 2514, 1, 0, 0, 0, 2517, 2509, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2526, 1, 0, 0, 0, 2519, 2523, 3, 142, 71, 0, 2520, 2522, 3, 142, 71, 0, 2521, 2520, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2519, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 135, 1, 0, 0, 0, 2528, 2530, 5, 8, 0, 0, 2529, 2531, 5, 180, 0, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 5, 658, 0, 0, 2533, 2534, 3, 662, 331, 0, 2534, 2535, 7, 34, 0, 0, 2535, 2536, 5, 361, 0, 0, 2536, 2542, 5, 882, 0, 0, 2537, 2539, 5, 428, 0, 0, 2538, 2540, 5, 857, 0, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2543, 3, 710, 355, 0, 2542, 2537, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 5, 687, 0, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2550, 1, 0, 0, 0, 2547, 2548, 5, 141, 0, 0, 2548, 2549, 5, 176, 0, 0, 2549, 2551, 3, 660, 330, 0, 2550, 2547, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2557, 1, 0, 0, 0, 2552, 2554, 5, 314, 0, 0, 2553, 2555, 5, 857, 0, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 3, 710, 355, 0, 2557, 2552, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2561, 1, 0, 0, 0, 2559, 2560, 5, 155, 0, 0, 2560, 2562, 7, 35, 0, 0, 2561, 2559, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2568, 1, 0, 0, 0, 2563, 2565, 5, 376, 0, 0, 2564, 2566, 5, 857, 0, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 2569, 5, 882, 0, 0, 2568, 2563, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2575, 1, 0, 0, 0, 2570, 2572, 5, 380, 0, 0, 2571, 2573, 5, 857, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 3, 688, 344, 0, 2575, 2570, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2582, 1, 0, 0, 0, 2577, 2579, 5, 825, 0, 0, 2578, 2580, 5, 857, 0, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 5, 882, 0, 0, 2582, 2577, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 137, 1, 0, 0, 0, 2584, 2588, 5, 8, 0, 0, 2585, 2586, 5, 308, 0, 0, 2586, 2587, 5, 857, 0, 0, 2587, 2589, 7, 10, 0, 0, 2588, 2585, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 58, 29, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2596, 1, 0, 0, 0, 2593, 2594, 5, 162, 0, 0, 2594, 2595, 5, 591, 0, 0, 2595, 2597, 7, 11, 0, 0, 2596, 2593, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 5, 684, 0, 0, 2599, 2604, 3, 632, 316, 0, 2600, 2601, 5, 866, 0, 0, 2601, 2602, 3, 656, 328, 0, 2602, 2603, 5, 867, 0, 0, 2603, 2605, 1, 0, 0, 0, 2604, 2600, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 5, 13, 0, 0, 2607, 2614, 3, 204, 102, 0, 2608, 2610, 5, 194, 0, 0, 2609, 2611, 7, 12, 0, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2613, 5, 27, 0, 0, 2613, 2615, 5, 121, 0, 0, 2614, 2608, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 139, 1, 0, 0, 0, 2616, 2623, 3, 98, 49, 0, 2617, 2619, 5, 868, 0, 0, 2618, 2617, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 3, 98, 49, 0, 2621, 2618, 1, 0, 0, 0, 2622, 2625, 1, 0, 0, 0, 2623, 2621, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2881, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2628, 5, 6, 0, 0, 2627, 2629, 5, 29, 0, 0, 2628, 2627, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2631, 3, 658, 329, 0, 2631, 2635, 3, 88, 44, 0, 2632, 2636, 5, 402, 0, 0, 2633, 2634, 5, 306, 0, 0, 2634, 2636, 3, 658, 329, 0, 2635, 2632, 1, 0, 0, 0, 2635, 2633, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2881, 1, 0, 0, 0, 2637, 2639, 5, 6, 0, 0, 2638, 2640, 5, 29, 0, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 5, 866, 0, 0, 2642, 2643, 3, 658, 329, 0, 2643, 2650, 3, 88, 44, 0, 2644, 2645, 5, 868, 0, 0, 2645, 2646, 3, 658, 329, 0, 2646, 2647, 3, 88, 44, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2644, 1, 0, 0, 0, 2649, 2652, 1, 0, 0, 0, 2650, 2648, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2650, 1, 0, 0, 0, 2653, 2654, 5, 867, 0, 0, 2654, 2881, 1, 0, 0, 0, 2655, 2656, 5, 6, 0, 0, 2656, 2658, 7, 18, 0, 0, 2657, 2659, 3, 638, 319, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 1, 0, 0, 0, 2660, 2662, 3, 70, 35, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2667, 3, 734, 367, 0, 2664, 2666, 3, 72, 36, 0, 2665, 2664, 1, 0, 0, 0, 2666, 2669, 1, 0, 0, 0, 2667, 2665, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2881, 1, 0, 0, 0, 2669, 2667, 1, 0, 0, 0, 2670, 2671, 5, 6, 0, 0, 2671, 2673, 7, 19, 0, 0, 2672, 2674, 7, 18, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2676, 1, 0, 0, 0, 2675, 2677, 3, 638, 319, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2682, 3, 734, 367, 0, 2679, 2681, 3, 72, 36, 0, 2680, 2679, 1, 0, 0, 0, 2681, 2684, 1, 0, 0, 0, 2682, 2680, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2881, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2685, 2690, 5, 6, 0, 0, 2686, 2688, 5, 31, 0, 0, 2687, 2689, 3, 702, 351, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2691, 1, 0, 0, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 5, 131, 0, 0, 2693, 2695, 5, 92, 0, 0, 2694, 2696, 3, 70, 35, 0, 2695, 2694, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2701, 3, 734, 367, 0, 2698, 2700, 3, 72, 36, 0, 2699, 2698, 1, 0, 0, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2881, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2709, 5, 6, 0, 0, 2705, 2707, 5, 31, 0, 0, 2706, 2708, 3, 702, 351, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2710, 1, 0, 0, 0, 2709, 2705, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 2713, 5, 182, 0, 0, 2712, 2714, 7, 18, 0, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2716, 1, 0, 0, 0, 2715, 2717, 3, 638, 319, 0, 2716, 2715, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2719, 1, 0, 0, 0, 2718, 2720, 3, 70, 35, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2725, 3, 734, 367, 0, 2722, 2724, 3, 72, 36, 0, 2723, 2722, 1, 0, 0, 0, 2724, 2727, 1, 0, 0, 0, 2725, 2723, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2881, 1, 0, 0, 0, 2727, 2725, 1, 0, 0, 0, 2728, 2733, 5, 6, 0, 0, 2729, 2731, 5, 31, 0, 0, 2730, 2732, 3, 702, 351, 0, 2731, 2730, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2734, 1, 0, 0, 0, 2733, 2729, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 5, 67, 0, 0, 2736, 2738, 5, 92, 0, 0, 2737, 2739, 3, 638, 319, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 3, 734, 367, 0, 2741, 2742, 3, 92, 46, 0, 2742, 2881, 1, 0, 0, 0, 2743, 2745, 5, 6, 0, 0, 2744, 2746, 3, 84, 42, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2881, 1, 0, 0, 0, 2747, 2748, 5, 51, 0, 0, 2748, 2749, 7, 36, 0, 0, 2749, 2881, 3, 702, 351, 0, 2750, 2751, 5, 8, 0, 0, 2751, 2752, 7, 36, 0, 0, 2752, 2754, 3, 702, 351, 0, 2753, 2755, 5, 114, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2758, 5, 57, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2881, 1, 0, 0, 0, 2759, 2761, 5, 308, 0, 0, 2760, 2762, 5, 857, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2881, 7, 37, 0, 0, 2764, 2766, 5, 8, 0, 0, 2765, 2767, 5, 29, 0, 0, 2766, 2765, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2776, 3, 658, 329, 0, 2769, 2770, 5, 155, 0, 0, 2770, 2771, 5, 42, 0, 0, 2771, 2777, 3, 750, 375, 0, 2772, 2773, 5, 155, 0, 0, 2773, 2777, 7, 16, 0, 0, 2774, 2775, 5, 51, 0, 0, 2775, 2777, 5, 42, 0, 0, 2776, 2769, 1, 0, 0, 0, 2776, 2772, 1, 0, 0, 0, 2776, 2774, 1, 0, 0, 0, 2777, 2881, 1, 0, 0, 0, 2778, 2779, 5, 8, 0, 0, 2779, 2780, 5, 82, 0, 0, 2780, 2781, 3, 638, 319, 0, 2781, 2782, 7, 16, 0, 0, 2782, 2881, 1, 0, 0, 0, 2783, 2785, 5, 25, 0, 0, 2784, 2786, 5, 29, 0, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 2788, 3, 658, 329, 0, 2788, 2789, 3, 654, 327, 0, 2789, 2793, 3, 88, 44, 0, 2790, 2794, 5, 402, 0, 0, 2791, 2792, 5, 306, 0, 0, 2792, 2794, 3, 658, 329, 0, 2793, 2790, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2881, 1, 0, 0, 0, 2795, 2797, 5, 42, 0, 0, 2796, 2795, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 5, 26, 0, 0, 2799, 2800, 5, 155, 0, 0, 2800, 2801, 5, 857, 0, 0, 2801, 2807, 3, 684, 342, 0, 2802, 2804, 5, 28, 0, 0, 2803, 2805, 5, 857, 0, 0, 2804, 2803, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 3, 686, 343, 0, 2807, 2802, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2881, 1, 0, 0, 0, 2809, 2810, 5, 33, 0, 0, 2810, 2814, 5, 176, 0, 0, 2811, 2815, 5, 823, 0, 0, 2812, 2813, 5, 26, 0, 0, 2813, 2815, 5, 155, 0, 0, 2814, 2811, 1, 0, 0, 0, 2814, 2812, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2819, 3, 684, 342, 0, 2817, 2818, 5, 28, 0, 0, 2818, 2820, 3, 686, 343, 0, 2819, 2817, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2881, 1, 0, 0, 0, 2821, 2822, 7, 38, 0, 0, 2822, 2881, 5, 93, 0, 0, 2823, 2824, 7, 39, 0, 0, 2824, 2881, 5, 658, 0, 0, 2825, 2827, 5, 51, 0, 0, 2826, 2828, 5, 29, 0, 0, 2827, 2826, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2881, 3, 658, 329, 0, 2830, 2831, 5, 51, 0, 0, 2831, 2832, 7, 18, 0, 0, 2832, 2881, 3, 638, 319, 0, 2833, 2834, 5, 51, 0, 0, 2834, 2835, 5, 131, 0, 0, 2835, 2881, 5, 92, 0, 0, 2836, 2837, 5, 51, 0, 0, 2837, 2838, 5, 67, 0, 0, 2838, 2839, 5, 92, 0, 0, 2839, 2881, 3, 702, 351, 0, 2840, 2881, 5, 66, 0, 0, 2841, 2843, 5, 104, 0, 0, 2842, 2844, 5, 857, 0, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2881, 7, 4, 0, 0, 2846, 2848, 5, 492, 0, 0, 2847, 2849, 5, 29, 0, 0, 2848, 2847, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 3, 658, 329, 0, 2851, 2855, 3, 88, 44, 0, 2852, 2856, 5, 402, 0, 0, 2853, 2854, 5, 306, 0, 0, 2854, 2856, 3, 658, 329, 0, 2855, 2852, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2881, 1, 0, 0, 0, 2857, 2858, 5, 125, 0, 0, 2858, 2859, 5, 20, 0, 0, 2859, 2881, 3, 656, 328, 0, 2860, 2861, 5, 141, 0, 0, 2861, 2862, 5, 29, 0, 0, 2862, 2863, 3, 658, 329, 0, 2863, 2864, 5, 176, 0, 0, 2864, 2865, 3, 654, 327, 0, 2865, 2881, 1, 0, 0, 0, 2866, 2867, 5, 141, 0, 0, 2867, 2868, 7, 18, 0, 0, 2868, 2869, 3, 638, 319, 0, 2869, 2870, 5, 176, 0, 0, 2870, 2871, 3, 634, 317, 0, 2871, 2881, 1, 0, 0, 0, 2872, 2874, 5, 141, 0, 0, 2873, 2875, 7, 40, 0, 0, 2874, 2873, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2881, 3, 644, 322, 0, 2877, 2878, 7, 41, 0, 0, 2878, 2881, 5, 681, 0, 0, 2879, 2881, 3, 142, 71, 0, 2880, 2616, 1, 0, 0, 0, 2880, 2626, 1, 0, 0, 0, 2880, 2637, 1, 0, 0, 0, 2880, 2655, 1, 0, 0, 0, 2880, 2670, 1, 0, 0, 0, 2880, 2685, 1, 0, 0, 0, 2880, 2704, 1, 0, 0, 0, 2880, 2728, 1, 0, 0, 0, 2880, 2743, 1, 0, 0, 0, 2880, 2747, 1, 0, 0, 0, 2880, 2750, 1, 0, 0, 0, 2880, 2759, 1, 0, 0, 0, 2880, 2764, 1, 0, 0, 0, 2880, 2778, 1, 0, 0, 0, 2880, 2783, 1, 0, 0, 0, 2880, 2796, 1, 0, 0, 0, 2880, 2809, 1, 0, 0, 0, 2880, 2821, 1, 0, 0, 0, 2880, 2823, 1, 0, 0, 0, 2880, 2825, 1, 0, 0, 0, 2880, 2830, 1, 0, 0, 0, 2880, 2833, 1, 0, 0, 0, 2880, 2836, 1, 0, 0, 0, 2880, 2840, 1, 0, 0, 0, 2880, 2841, 1, 0, 0, 0, 2880, 2846, 1, 0, 0, 0, 2880, 2857, 1, 0, 0, 0, 2880, 2860, 1, 0, 0, 0, 2880, 2866, 1, 0, 0, 0, 2880, 2872, 1, 0, 0, 0, 2880, 2877, 1, 0, 0, 0, 2880, 2879, 1, 0, 0, 0, 2881, 141, 1, 0, 0, 0, 2882, 2883, 5, 6, 0, 0, 2883, 2884, 5, 130, 0, 0, 2884, 2885, 5, 866, 0, 0, 2885, 2890, 3, 110, 55, 0, 2886, 2887, 5, 868, 0, 0, 2887, 2889, 3, 110, 55, 0, 2888, 2886, 1, 0, 0, 0, 2889, 2892, 1, 0, 0, 0, 2890, 2888, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2890, 1, 0, 0, 0, 2893, 2894, 5, 867, 0, 0, 2894, 2981, 1, 0, 0, 0, 2895, 2896, 5, 51, 0, 0, 2896, 2897, 5, 130, 0, 0, 2897, 2981, 3, 666, 333, 0, 2898, 2899, 5, 369, 0, 0, 2899, 2902, 5, 130, 0, 0, 2900, 2903, 3, 666, 333, 0, 2901, 2903, 5, 7, 0, 0, 2902, 2900, 1, 0, 0, 0, 2902, 2901, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2981, 5, 658, 0, 0, 2905, 2906, 5, 425, 0, 0, 2906, 2909, 5, 130, 0, 0, 2907, 2910, 3, 666, 333, 0, 2908, 2910, 5, 7, 0, 0, 2909, 2907, 1, 0, 0, 0, 2909, 2908, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2981, 5, 658, 0, 0, 2912, 2913, 5, 668, 0, 0, 2913, 2916, 5, 130, 0, 0, 2914, 2917, 3, 666, 333, 0, 2915, 2917, 5, 7, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2981, 1, 0, 0, 0, 2918, 2919, 5, 335, 0, 0, 2919, 2920, 5, 130, 0, 0, 2920, 2981, 3, 708, 354, 0, 2921, 2922, 5, 561, 0, 0, 2922, 2923, 5, 130, 0, 0, 2923, 2924, 3, 666, 333, 0, 2924, 2925, 5, 88, 0, 0, 2925, 2926, 5, 866, 0, 0, 2926, 2931, 3, 110, 55, 0, 2927, 2928, 5, 868, 0, 0, 2928, 2930, 3, 110, 55, 0, 2929, 2927, 1, 0, 0, 0, 2930, 2933, 1, 0, 0, 0, 2931, 2929, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2934, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2934, 2935, 5, 867, 0, 0, 2935, 2981, 1, 0, 0, 0, 2936, 2937, 5, 388, 0, 0, 2937, 2938, 5, 130, 0, 0, 2938, 2939, 3, 668, 334, 0, 2939, 2940, 5, 194, 0, 0, 2940, 2941, 5, 173, 0, 0, 2941, 2944, 3, 648, 324, 0, 2942, 2943, 7, 41, 0, 0, 2943, 2945, 5, 681, 0, 0, 2944, 2942, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2981, 1, 0, 0, 0, 2946, 2947, 5, 10, 0, 0, 2947, 2950, 5, 130, 0, 0, 2948, 2951, 3, 666, 333, 0, 2949, 2951, 5, 7, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2949, 1, 0, 0, 0, 2951, 2981, 1, 0, 0, 0, 2952, 2953, 5, 27, 0, 0, 2953, 2956, 5, 130, 0, 0, 2954, 2957, 3, 666, 333, 0, 2955, 2957, 5, 7, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2955, 1, 0, 0, 0, 2957, 2981, 1, 0, 0, 0, 2958, 2959, 5, 120, 0, 0, 2959, 2962, 5, 130, 0, 0, 2960, 2963, 3, 666, 333, 0, 2961, 2963, 5, 7, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2961, 1, 0, 0, 0, 2963, 2981, 1, 0, 0, 0, 2964, 2965, 5, 550, 0, 0, 2965, 2968, 5, 130, 0, 0, 2966, 2969, 3, 666, 333, 0, 2967, 2969, 5, 7, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2967, 1, 0, 0, 0, 2969, 2981, 1, 0, 0, 0, 2970, 2971, 5, 562, 0, 0, 2971, 2974, 5, 130, 0, 0, 2972, 2975, 3, 666, 333, 0, 2973, 2975, 5, 7, 0, 0, 2974, 2972, 1, 0, 0, 0, 2974, 2973, 1, 0, 0, 0, 2975, 2981, 1, 0, 0, 0, 2976, 2977, 5, 560, 0, 0, 2977, 2981, 5, 527, 0, 0, 2978, 2979, 5, 677, 0, 0, 2979, 2981, 5, 527, 0, 0, 2980, 2882, 1, 0, 0, 0, 2980, 2895, 1, 0, 0, 0, 2980, 2898, 1, 0, 0, 0, 2980, 2905, 1, 0, 0, 0, 2980, 2912, 1, 0, 0, 0, 2980, 2918, 1, 0, 0, 0, 2980, 2921, 1, 0, 0, 0, 2980, 2936, 1, 0, 0, 0, 2980, 2946, 1, 0, 0, 0, 2980, 2952, 1, 0, 0, 0, 2980, 2958, 1, 0, 0, 0, 2980, 2964, 1, 0, 0, 0, 2980, 2970, 1, 0, 0, 0, 2980, 2976, 1, 0, 0, 0, 2980, 2978, 1, 0, 0, 0, 2981, 143, 1, 0, 0, 0, 2982, 2983, 5, 51, 0, 0, 2983, 2985, 7, 0, 0, 0, 2984, 2986, 3, 754, 377, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 3, 624, 312, 0, 2988, 145, 1, 0, 0, 0, 2989, 2990, 5, 51, 0, 0, 2990, 2992, 5, 385, 0, 0, 2991, 2993, 3, 754, 377, 0, 2992, 2991, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 3, 698, 349, 0, 2995, 147, 1, 0, 0, 0, 2996, 2997, 5, 51, 0, 0, 2997, 2999, 5, 82, 0, 0, 2998, 3000, 7, 1, 0, 0, 2999, 2998, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 3, 638, 319, 0, 3002, 3003, 5, 119, 0, 0, 3003, 3016, 3, 648, 324, 0, 3004, 3006, 5, 308, 0, 0, 3005, 3007, 5, 857, 0, 0, 3006, 3005, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3015, 7, 3, 0, 0, 3009, 3011, 5, 104, 0, 0, 3010, 3012, 5, 857, 0, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3015, 7, 4, 0, 0, 3014, 3004, 1, 0, 0, 0, 3014, 3009, 1, 0, 0, 0, 3015, 3018, 1, 0, 0, 0, 3016, 3014, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 149, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3019, 3020, 5, 51, 0, 0, 3020, 3021, 5, 451, 0, 0, 3021, 3022, 5, 74, 0, 0, 3022, 3023, 3, 702, 351, 0, 3023, 3025, 5, 380, 0, 0, 3024, 3026, 5, 857, 0, 0, 3025, 3024, 1, 0, 0, 0, 3025, 3026, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3028, 3, 688, 344, 0, 3028, 151, 1, 0, 0, 0, 3029, 3030, 5, 51, 0, 0, 3030, 3032, 5, 132, 0, 0, 3031, 3033, 3, 754, 377, 0, 3032, 3031, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 3, 698, 349, 0, 3035, 153, 1, 0, 0, 0, 3036, 3037, 5, 51, 0, 0, 3037, 3039, 5, 409, 0, 0, 3038, 3040, 3, 754, 377, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3042, 3, 628, 314, 0, 3042, 155, 1, 0, 0, 0, 3043, 3044, 5, 51, 0, 0, 3044, 3046, 5, 592, 0, 0, 3045, 3047, 3, 754, 377, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3049, 3, 702, 351, 0, 3049, 157, 1, 0, 0, 0, 3050, 3051, 5, 51, 0, 0, 3051, 3052, 5, 161, 0, 0, 3052, 3053, 5, 137, 0, 0, 3053, 3055, 5, 835, 0, 0, 3054, 3056, 3, 754, 377, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3058, 5, 883, 0, 0, 3058, 159, 1, 0, 0, 0, 3059, 3061, 5, 51, 0, 0, 3060, 3062, 5, 660, 0, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3065, 5, 173, 0, 0, 3064, 3066, 3, 754, 377, 0, 3065, 3064, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3069, 3, 646, 323, 0, 3068, 3070, 7, 42, 0, 0, 3069, 3068, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 161, 1, 0, 0, 0, 3071, 3073, 5, 51, 0, 0, 3072, 3074, 5, 180, 0, 0, 3073, 3072, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 5, 658, 0, 0, 3076, 3082, 3, 662, 331, 0, 3077, 3079, 5, 380, 0, 0, 3078, 3080, 5, 857, 0, 0, 3079, 3078, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 3, 688, 344, 0, 3082, 3077, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 163, 1, 0, 0, 0, 3084, 3085, 5, 51, 0, 0, 3085, 3087, 5, 178, 0, 0, 3086, 3088, 3, 754, 377, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3090, 3, 698, 349, 0, 3090, 165, 1, 0, 0, 0, 3091, 3092, 5, 51, 0, 0, 3092, 3094, 5, 684, 0, 0, 3093, 3095, 3, 754, 377, 0, 3094, 3093, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3101, 3, 632, 316, 0, 3097, 3098, 5, 868, 0, 0, 3098, 3100, 3, 632, 316, 0, 3099, 3097, 1, 0, 0, 0, 3100, 3103, 1, 0, 0, 0, 3101, 3099, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3105, 1, 0, 0, 0, 3103, 3101, 1, 0, 0, 0, 3104, 3106, 7, 42, 0, 0, 3105, 3104, 1, 0, 0, 0, 3105, 3106, 1, 0, 0, 0, 3106, 167, 1, 0, 0, 0, 3107, 3108, 5, 51, 0, 0, 3108, 3110, 5, 582, 0, 0, 3109, 3111, 3, 754, 377, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 3, 650, 325, 0, 3113, 169, 1, 0, 0, 0, 3114, 3115, 5, 155, 0, 0, 3115, 3116, 5, 42, 0, 0, 3116, 3120, 5, 582, 0, 0, 3117, 3121, 5, 505, 0, 0, 3118, 3121, 5, 7, 0, 0, 3119, 3121, 3, 650, 325, 0, 3120, 3117, 1, 0, 0, 0, 3120, 3118, 1, 0, 0, 0, 3120, 3119, 1, 0, 0, 0, 3121, 3122, 1, 0, 0, 0, 3122, 3123, 5, 176, 0, 0, 3123, 3128, 3, 652, 326, 0, 3124, 3125, 5, 868, 0, 0, 3125, 3127, 3, 652, 326, 0, 3126, 3124, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3135, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3132, 5, 155, 0, 0, 3132, 3133, 5, 582, 0, 0, 3133, 3135, 3, 462, 231, 0, 3134, 3114, 1, 0, 0, 0, 3134, 3131, 1, 0, 0, 0, 3135, 171, 1, 0, 0, 0, 3136, 3137, 5, 141, 0, 0, 3137, 3138, 5, 173, 0, 0, 3138, 3143, 3, 174, 87, 0, 3139, 3140, 5, 868, 0, 0, 3140, 3142, 3, 174, 87, 0, 3141, 3139, 1, 0, 0, 0, 3142, 3145, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 173, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3147, 3, 648, 324, 0, 3147, 3148, 5, 176, 0, 0, 3148, 3149, 3, 644, 322, 0, 3149, 175, 1, 0, 0, 0, 3150, 3152, 5, 668, 0, 0, 3151, 3153, 5, 173, 0, 0, 3152, 3151, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 3, 648, 324, 0, 3155, 177, 1, 0, 0, 0, 3156, 3157, 5, 21, 0, 0, 3157, 3164, 3, 698, 349, 0, 3158, 3161, 5, 866, 0, 0, 3159, 3162, 3, 744, 372, 0, 3160, 3162, 3, 736, 368, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3165, 5, 867, 0, 0, 3164, 3158, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 179, 1, 0, 0, 0, 3166, 3169, 3, 234, 117, 0, 3167, 3169, 3, 236, 118, 0, 3168, 3166, 1, 0, 0, 0, 3168, 3167, 1, 0, 0, 0, 3169, 181, 1, 0, 0, 0, 3170, 3171, 5, 371, 0, 0, 3171, 3172, 3, 736, 368, 0, 3172, 183, 1, 0, 0, 0, 3173, 3178, 3, 238, 119, 0, 3174, 3178, 3, 240, 120, 0, 3175, 3178, 3, 242, 121, 0, 3176, 3178, 3, 244, 122, 0, 3177, 3173, 1, 0, 0, 0, 3177, 3174, 1, 0, 0, 0, 3177, 3175, 1, 0, 0, 0, 3177, 3176, 1, 0, 0, 0, 3178, 185, 1, 0, 0, 0, 3179, 3181, 5, 86, 0, 0, 3180, 3182, 7, 43, 0, 0, 3181, 3180, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3184, 1, 0, 0, 0, 3183, 3185, 5, 79, 0, 0, 3184, 3183, 1, 0, 0, 0, 3184, 3185, 1, 0, 0, 0, 3185, 3187, 1, 0, 0, 0, 3186, 3188, 5, 88, 0, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3196, 3, 648, 324, 0, 3190, 3191, 5, 130, 0, 0, 3191, 3193, 5, 866, 0, 0, 3192, 3194, 3, 666, 333, 0, 3193, 3192, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3197, 5, 867, 0, 0, 3196, 3190, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3209, 1, 0, 0, 0, 3198, 3200, 3, 262, 131, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3204, 3, 738, 369, 0, 3202, 3204, 3, 190, 95, 0, 3203, 3201, 1, 0, 0, 0, 3203, 3202, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3207, 3, 188, 94, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3210, 1, 0, 0, 0, 3208, 3210, 3, 226, 113, 0, 3209, 3199, 1, 0, 0, 0, 3209, 3208, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 188, 94, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3226, 1, 0, 0, 0, 3214, 3215, 5, 119, 0, 0, 3215, 3216, 5, 373, 0, 0, 3216, 3217, 5, 92, 0, 0, 3217, 3218, 5, 185, 0, 0, 3218, 3223, 3, 228, 114, 0, 3219, 3220, 5, 868, 0, 0, 3220, 3222, 3, 228, 114, 0, 3221, 3219, 1, 0, 0, 0, 3222, 3225, 1, 0, 0, 0, 3223, 3221, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3227, 1, 0, 0, 0, 3225, 3223, 1, 0, 0, 0, 3226, 3214, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 187, 1, 0, 0, 0, 3228, 3229, 5, 13, 0, 0, 3229, 3231, 3, 702, 351, 0, 3230, 3232, 3, 262, 131, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 189, 1, 0, 0, 0, 3233, 3238, 3, 204, 102, 0, 3234, 3235, 5, 173, 0, 0, 3235, 3238, 3, 648, 324, 0, 3236, 3238, 3, 224, 112, 0, 3237, 3233, 1, 0, 0, 0, 3237, 3234, 1, 0, 0, 0, 3237, 3236, 1, 0, 0, 0, 3238, 191, 1, 0, 0, 0, 3239, 3245, 3, 194, 97, 0, 3240, 3242, 5, 828, 0, 0, 3241, 3243, 7, 44, 0, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 3, 194, 97, 0, 3245, 3240, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 193, 1, 0, 0, 0, 3249, 3251, 5, 866, 0, 0, 3250, 3249, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3254, 3, 274, 137, 0, 3253, 3255, 5, 867, 0, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 195, 1, 0, 0, 0, 3256, 3257, 5, 103, 0, 0, 3257, 3259, 5, 360, 0, 0, 3258, 3260, 7, 45, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3263, 5, 450, 0, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3265, 5, 83, 0, 0, 3265, 3267, 5, 882, 0, 0, 3266, 3268, 7, 6, 0, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3270, 5, 88, 0, 0, 3270, 3271, 5, 173, 0, 0, 3271, 3277, 3, 648, 324, 0, 3272, 3273, 5, 130, 0, 0, 3273, 3274, 5, 866, 0, 0, 3274, 3275, 3, 666, 333, 0, 3275, 3276, 5, 867, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3272, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3282, 1, 0, 0, 0, 3279, 3280, 5, 26, 0, 0, 3280, 3281, 5, 155, 0, 0, 3281, 3283, 3, 684, 342, 0, 3282, 3279, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3290, 1, 0, 0, 0, 3284, 3286, 7, 46, 0, 0, 3285, 3287, 3, 298, 149, 0, 3286, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3286, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 3291, 1, 0, 0, 0, 3290, 3284, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3298, 1, 0, 0, 0, 3292, 3294, 5, 102, 0, 0, 3293, 3295, 3, 300, 150, 0, 3294, 3293, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3292, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3304, 1, 0, 0, 0, 3300, 3301, 5, 79, 0, 0, 3301, 3302, 3, 708, 354, 0, 3302, 3303, 7, 47, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3300, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3317, 1, 0, 0, 0, 3306, 3307, 5, 866, 0, 0, 3307, 3312, 3, 230, 115, 0, 3308, 3309, 5, 868, 0, 0, 3309, 3311, 3, 230, 115, 0, 3310, 3308, 1, 0, 0, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3312, 3313, 1, 0, 0, 0, 3313, 3315, 1, 0, 0, 0, 3314, 3312, 1, 0, 0, 0, 3315, 3316, 5, 867, 0, 0, 3316, 3318, 1, 0, 0, 0, 3317, 3306, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3328, 1, 0, 0, 0, 3319, 3320, 5, 155, 0, 0, 3320, 3325, 3, 228, 114, 0, 3321, 3322, 5, 868, 0, 0, 3322, 3324, 3, 228, 114, 0, 3323, 3321, 1, 0, 0, 0, 3324, 3327, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3329, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3328, 3319, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 197, 1, 0, 0, 0, 3330, 3331, 5, 103, 0, 0, 3331, 3333, 5, 695, 0, 0, 3332, 3334, 7, 45, 0, 0, 3333, 3332, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3336, 1, 0, 0, 0, 3335, 3337, 5, 450, 0, 0, 3336, 3335, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3339, 5, 83, 0, 0, 3339, 3341, 5, 882, 0, 0, 3340, 3342, 7, 6, 0, 0, 3341, 3340, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 5, 88, 0, 0, 3344, 3345, 5, 173, 0, 0, 3345, 3349, 3, 648, 324, 0, 3346, 3347, 5, 26, 0, 0, 3347, 3348, 5, 155, 0, 0, 3348, 3350, 3, 684, 342, 0, 3349, 3346, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3361, 1, 0, 0, 0, 3351, 3352, 5, 587, 0, 0, 3352, 3353, 5, 423, 0, 0, 3353, 3355, 5, 20, 0, 0, 3354, 3356, 5, 859, 0, 0, 3355, 3354, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3359, 5, 882, 0, 0, 3358, 3360, 5, 858, 0, 0, 3359, 3358, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3362, 1, 0, 0, 0, 3361, 3351, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3367, 1, 0, 0, 0, 3363, 3364, 5, 79, 0, 0, 3364, 3365, 3, 708, 354, 0, 3365, 3366, 7, 47, 0, 0, 3366, 3368, 1, 0, 0, 0, 3367, 3363, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3380, 1, 0, 0, 0, 3369, 3370, 5, 866, 0, 0, 3370, 3375, 3, 230, 115, 0, 3371, 3372, 5, 868, 0, 0, 3372, 3374, 3, 230, 115, 0, 3373, 3371, 1, 0, 0, 0, 3374, 3377, 1, 0, 0, 0, 3375, 3373, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3378, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3378, 3379, 5, 867, 0, 0, 3379, 3381, 1, 0, 0, 0, 3380, 3369, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3391, 1, 0, 0, 0, 3382, 3383, 5, 155, 0, 0, 3383, 3388, 3, 228, 114, 0, 3384, 3385, 5, 868, 0, 0, 3385, 3387, 3, 228, 114, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3390, 1, 0, 0, 0, 3388, 3386, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3392, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3382, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 199, 1, 0, 0, 0, 3393, 3394, 5, 866, 0, 0, 3394, 3396, 3, 218, 109, 0, 3395, 3397, 3, 252, 126, 0, 3396, 3395, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3399, 1, 0, 0, 0, 3398, 3400, 3, 312, 156, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3403, 5, 867, 0, 0, 3402, 3404, 3, 252, 126, 0, 3403, 3402, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3406, 1, 0, 0, 0, 3405, 3407, 3, 312, 156, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, 0, 3408, 3410, 3, 296, 148, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 201, 1, 0, 0, 0, 3411, 3413, 5, 143, 0, 0, 3412, 3414, 7, 48, 0, 0, 3413, 3412, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3416, 1, 0, 0, 0, 3415, 3417, 5, 88, 0, 0, 3416, 3415, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3424, 3, 648, 324, 0, 3419, 3420, 5, 130, 0, 0, 3420, 3421, 5, 866, 0, 0, 3421, 3422, 3, 666, 333, 0, 3422, 3423, 5, 867, 0, 0, 3423, 3425, 1, 0, 0, 0, 3424, 3419, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3434, 1, 0, 0, 0, 3426, 3427, 5, 866, 0, 0, 3427, 3428, 3, 656, 328, 0, 3428, 3429, 5, 867, 0, 0, 3429, 3431, 1, 0, 0, 0, 3430, 3426, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3435, 3, 222, 111, 0, 3433, 3435, 3, 226, 113, 0, 3434, 3430, 1, 0, 0, 0, 3434, 3433, 1, 0, 0, 0, 3435, 203, 1, 0, 0, 0, 3436, 3440, 3, 274, 137, 0, 3437, 3439, 3, 276, 138, 0, 3438, 3437, 1, 0, 0, 0, 3439, 3442, 1, 0, 0, 0, 3440, 3438, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3451, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3443, 3445, 5, 181, 0, 0, 3444, 3446, 7, 44, 0, 0, 3445, 3444, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3450, 3, 274, 137, 0, 3448, 3450, 3, 272, 136, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3448, 1, 0, 0, 0, 3450, 3452, 1, 0, 0, 0, 3451, 3443, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3457, 1, 0, 0, 0, 3453, 3454, 5, 868, 0, 0, 3454, 3456, 3, 278, 139, 0, 3455, 3453, 1, 0, 0, 0, 3456, 3459, 1, 0, 0, 0, 3457, 3455, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3460, 3462, 3, 252, 126, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3465, 3, 312, 156, 0, 3464, 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3467, 1, 0, 0, 0, 3466, 3468, 3, 232, 116, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3470, 1, 0, 0, 0, 3469, 3471, 3, 296, 148, 0, 3470, 3469, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3496, 1, 0, 0, 0, 3472, 3476, 3, 272, 136, 0, 3473, 3475, 3, 276, 138, 0, 3474, 3473, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3484, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3481, 5, 181, 0, 0, 3480, 3482, 7, 44, 0, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3485, 3, 272, 136, 0, 3484, 3479, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3488, 3, 252, 126, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 1, 0, 0, 0, 3489, 3491, 3, 312, 156, 0, 3490, 3489, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3493, 1, 0, 0, 0, 3492, 3494, 3, 232, 116, 0, 3493, 3492, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 3496, 1, 0, 0, 0, 3495, 3436, 1, 0, 0, 0, 3495, 3472, 1, 0, 0, 0, 3496, 205, 1, 0, 0, 0, 3497, 3499, 3, 46, 23, 0, 3498, 3497, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 3, 208, 104, 0, 3501, 3503, 3, 252, 126, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3506, 3, 312, 156, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 1, 0, 0, 0, 3507, 3509, 3, 296, 148, 0, 3508, 3507, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 207, 1, 0, 0, 0, 3510, 3511, 6, 104, -1, 0, 3511, 3512, 3, 210, 105, 0, 3512, 3527, 1, 0, 0, 0, 3513, 3514, 10, 2, 0, 0, 3514, 3516, 5, 181, 0, 0, 3515, 3517, 7, 44, 0, 0, 3516, 3515, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 3526, 3, 210, 105, 0, 3519, 3520, 10, 1, 0, 0, 3520, 3522, 5, 59, 0, 0, 3521, 3523, 7, 44, 0, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3526, 3, 210, 105, 0, 3525, 3513, 1, 0, 0, 0, 3525, 3519, 1, 0, 0, 0, 3526, 3529, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 209, 1, 0, 0, 0, 3529, 3527, 1, 0, 0, 0, 3530, 3531, 6, 105, -1, 0, 3531, 3532, 3, 212, 106, 0, 3532, 3541, 1, 0, 0, 0, 3533, 3534, 10, 1, 0, 0, 3534, 3536, 5, 828, 0, 0, 3535, 3537, 7, 44, 0, 0, 3536, 3535, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3540, 3, 212, 106, 0, 3539, 3533, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 211, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3559, 3, 220, 110, 0, 3545, 3546, 5, 866, 0, 0, 3546, 3548, 3, 208, 104, 0, 3547, 3549, 3, 252, 126, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3551, 1, 0, 0, 0, 3550, 3552, 3, 312, 156, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3554, 1, 0, 0, 0, 3553, 3555, 3, 296, 148, 0, 3554, 3553, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3557, 5, 867, 0, 0, 3557, 3559, 1, 0, 0, 0, 3558, 3544, 1, 0, 0, 0, 3558, 3545, 1, 0, 0, 0, 3559, 213, 1, 0, 0, 0, 3560, 3563, 3, 248, 124, 0, 3561, 3563, 3, 250, 125, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3561, 1, 0, 0, 0, 3563, 215, 1, 0, 0, 0, 3564, 3568, 3, 224, 112, 0, 3565, 3566, 5, 125, 0, 0, 3566, 3567, 5, 20, 0, 0, 3567, 3569, 3, 670, 335, 0, 3568, 3565, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3572, 1, 0, 0, 0, 3570, 3571, 5, 100, 0, 0, 3571, 3573, 3, 314, 157, 0, 3572, 3570, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 217, 1, 0, 0, 0, 3574, 3579, 3, 220, 110, 0, 3575, 3576, 7, 49, 0, 0, 3576, 3578, 3, 220, 110, 0, 3577, 3575, 1, 0, 0, 0, 3578, 3581, 1, 0, 0, 0, 3579, 3577, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3583, 1, 0, 0, 0, 3581, 3579, 1, 0, 0, 0, 3582, 3584, 3, 252, 126, 0, 3583, 3582, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 1, 0, 0, 0, 3585, 3587, 3, 312, 156, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3589, 1, 0, 0, 0, 3588, 3590, 3, 296, 148, 0, 3589, 3588, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 219, 1, 0, 0, 0, 3591, 3595, 3, 204, 102, 0, 3592, 3595, 3, 614, 307, 0, 3593, 3595, 3, 216, 108, 0, 3594, 3591, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3594, 3593, 1, 0, 0, 0, 3595, 221, 1, 0, 0, 0, 3596, 3602, 3, 204, 102, 0, 3597, 3598, 5, 173, 0, 0, 3598, 3602, 3, 648, 324, 0, 3599, 3602, 3, 738, 369, 0, 3600, 3602, 3, 224, 112, 0, 3601, 3596, 1, 0, 0, 0, 3601, 3597, 1, 0, 0, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3600, 1, 0, 0, 0, 3602, 223, 1, 0, 0, 0, 3603, 3604, 5, 189, 0, 0, 3604, 3605, 5, 586, 0, 0, 3605, 3611, 3, 740, 370, 0, 3606, 3607, 5, 868, 0, 0, 3607, 3608, 5, 586, 0, 0, 3608, 3610, 3, 740, 370, 0, 3609, 3606, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 225, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3615, 5, 155, 0, 0, 3615, 3620, 3, 228, 114, 0, 3616, 3617, 5, 868, 0, 0, 3617, 3619, 3, 228, 114, 0, 3618, 3616, 1, 0, 0, 0, 3619, 3622, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 227, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3623, 3624, 3, 658, 329, 0, 3624, 3625, 5, 857, 0, 0, 3625, 3626, 3, 742, 371, 0, 3626, 229, 1, 0, 0, 0, 3627, 3630, 3, 702, 351, 0, 3628, 3630, 5, 892, 0, 0, 3629, 3627, 1, 0, 0, 0, 3629, 3628, 1, 0, 0, 0, 3630, 231, 1, 0, 0, 0, 3631, 3632, 5, 65, 0, 0, 3632, 3642, 7, 50, 0, 0, 3633, 3634, 5, 510, 0, 0, 3634, 3639, 3, 648, 324, 0, 3635, 3636, 5, 868, 0, 0, 3636, 3638, 3, 648, 324, 0, 3637, 3635, 1, 0, 0, 0, 3638, 3641, 1, 0, 0, 0, 3639, 3637, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3643, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3642, 3633, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3646, 1, 0, 0, 0, 3644, 3645, 7, 51, 0, 0, 3645, 3647, 5, 105, 0, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3653, 1, 0, 0, 0, 3648, 3649, 5, 104, 0, 0, 3649, 3650, 5, 80, 0, 0, 3650, 3651, 5, 594, 0, 0, 3651, 3653, 5, 491, 0, 0, 3652, 3631, 1, 0, 0, 0, 3652, 3648, 1, 0, 0, 0, 3653, 233, 1, 0, 0, 0, 3654, 3656, 5, 44, 0, 0, 3655, 3657, 5, 107, 0, 0, 3656, 3655, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3659, 1, 0, 0, 0, 3658, 3660, 5, 549, 0, 0, 3659, 3658, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3663, 5, 79, 0, 0, 3662, 3661, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3665, 5, 68, 0, 0, 3665, 3670, 3, 648, 324, 0, 3666, 3668, 5, 13, 0, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3671, 3, 702, 351, 0, 3670, 3667, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3677, 1, 0, 0, 0, 3672, 3673, 5, 130, 0, 0, 3673, 3674, 5, 866, 0, 0, 3674, 3675, 3, 666, 333, 0, 3675, 3676, 5, 867, 0, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3672, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3681, 1, 0, 0, 0, 3679, 3680, 5, 192, 0, 0, 3680, 3682, 3, 800, 400, 0, 3681, 3679, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 3684, 1, 0, 0, 0, 3683, 3685, 3, 252, 126, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3688, 1, 0, 0, 0, 3686, 3687, 5, 100, 0, 0, 3687, 3689, 3, 314, 157, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 235, 1, 0, 0, 0, 3690, 3692, 5, 44, 0, 0, 3691, 3693, 5, 107, 0, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 1, 0, 0, 0, 3694, 3696, 5, 549, 0, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 3698, 1, 0, 0, 0, 3697, 3699, 5, 79, 0, 0, 3698, 3697, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3739, 1, 0, 0, 0, 3700, 3703, 3, 648, 324, 0, 3701, 3702, 5, 865, 0, 0, 3702, 3704, 5, 850, 0, 0, 3703, 3701, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3713, 1, 0, 0, 0, 3705, 3706, 5, 868, 0, 0, 3706, 3709, 3, 648, 324, 0, 3707, 3708, 5, 865, 0, 0, 3708, 3710, 5, 850, 0, 0, 3709, 3707, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3712, 1, 0, 0, 0, 3711, 3705, 1, 0, 0, 0, 3712, 3715, 1, 0, 0, 0, 3713, 3711, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3716, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3716, 3717, 5, 68, 0, 0, 3717, 3718, 3, 256, 128, 0, 3718, 3740, 1, 0, 0, 0, 3719, 3720, 5, 68, 0, 0, 3720, 3723, 3, 648, 324, 0, 3721, 3722, 5, 865, 0, 0, 3722, 3724, 5, 850, 0, 0, 3723, 3721, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3733, 1, 0, 0, 0, 3725, 3726, 5, 868, 0, 0, 3726, 3729, 3, 648, 324, 0, 3727, 3728, 5, 865, 0, 0, 3728, 3730, 5, 850, 0, 0, 3729, 3727, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3732, 1, 0, 0, 0, 3731, 3725, 1, 0, 0, 0, 3732, 3735, 1, 0, 0, 0, 3733, 3731, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3736, 1, 0, 0, 0, 3735, 3733, 1, 0, 0, 0, 3736, 3737, 5, 188, 0, 0, 3737, 3738, 3, 256, 128, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3700, 1, 0, 0, 0, 3739, 3719, 1, 0, 0, 0, 3740, 3743, 1, 0, 0, 0, 3741, 3742, 5, 192, 0, 0, 3742, 3744, 3, 800, 400, 0, 3743, 3741, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 237, 1, 0, 0, 0, 3745, 3746, 5, 417, 0, 0, 3746, 3747, 3, 648, 324, 0, 3747, 3752, 5, 516, 0, 0, 3748, 3750, 5, 13, 0, 0, 3749, 3748, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3753, 3, 702, 351, 0, 3752, 3749, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 239, 1, 0, 0, 0, 3754, 3755, 5, 417, 0, 0, 3755, 3756, 3, 648, 324, 0, 3756, 3757, 5, 135, 0, 0, 3757, 3764, 3, 638, 319, 0, 3758, 3759, 3, 810, 405, 0, 3759, 3760, 5, 866, 0, 0, 3760, 3761, 3, 744, 372, 0, 3761, 3762, 5, 867, 0, 0, 3762, 3765, 1, 0, 0, 0, 3763, 3765, 7, 52, 0, 0, 3764, 3758, 1, 0, 0, 0, 3764, 3763, 1, 0, 0, 0, 3765, 3768, 1, 0, 0, 0, 3766, 3767, 5, 192, 0, 0, 3767, 3769, 3, 800, 400, 0, 3768, 3766, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3771, 5, 100, 0, 0, 3771, 3773, 3, 314, 157, 0, 3772, 3770, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 241, 1, 0, 0, 0, 3774, 3775, 5, 417, 0, 0, 3775, 3776, 3, 648, 324, 0, 3776, 3777, 5, 135, 0, 0, 3777, 3780, 7, 53, 0, 0, 3778, 3779, 5, 192, 0, 0, 3779, 3781, 3, 800, 400, 0, 3780, 3778, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3783, 5, 100, 0, 0, 3783, 3785, 3, 314, 157, 0, 3784, 3782, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 243, 1, 0, 0, 0, 3786, 3787, 5, 417, 0, 0, 3787, 3788, 3, 648, 324, 0, 3788, 3789, 5, 334, 0, 0, 3789, 245, 1, 0, 0, 0, 3790, 3791, 5, 425, 0, 0, 3791, 3792, 5, 173, 0, 0, 3792, 3793, 5, 68, 0, 0, 3793, 3798, 3, 712, 356, 0, 3794, 3795, 5, 868, 0, 0, 3795, 3797, 3, 712, 356, 0, 3796, 3794, 1, 0, 0, 0, 3797, 3800, 1, 0, 0, 0, 3798, 3796, 1, 0, 0, 0, 3798, 3799, 1, 0, 0, 0, 3799, 247, 1, 0, 0, 0, 3800, 3798, 1, 0, 0, 0, 3801, 3803, 5, 185, 0, 0, 3802, 3804, 5, 107, 0, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3806, 1, 0, 0, 0, 3805, 3807, 5, 79, 0, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3813, 3, 648, 324, 0, 3809, 3811, 5, 13, 0, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3814, 3, 702, 351, 0, 3813, 3810, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 5, 155, 0, 0, 3816, 3821, 3, 228, 114, 0, 3817, 3818, 5, 868, 0, 0, 3818, 3820, 3, 228, 114, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3826, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3825, 5, 192, 0, 0, 3825, 3827, 3, 800, 400, 0, 3826, 3824, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3829, 1, 0, 0, 0, 3828, 3830, 3, 252, 126, 0, 3829, 3828, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3832, 1, 0, 0, 0, 3831, 3833, 3, 312, 156, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 249, 1, 0, 0, 0, 3834, 3836, 5, 185, 0, 0, 3835, 3837, 5, 107, 0, 0, 3836, 3835, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3839, 1, 0, 0, 0, 3838, 3840, 5, 79, 0, 0, 3839, 3838, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3842, 3, 256, 128, 0, 3842, 3843, 5, 155, 0, 0, 3843, 3848, 3, 228, 114, 0, 3844, 3845, 5, 868, 0, 0, 3845, 3847, 3, 228, 114, 0, 3846, 3844, 1, 0, 0, 0, 3847, 3850, 1, 0, 0, 0, 3848, 3846, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3853, 1, 0, 0, 0, 3850, 3848, 1, 0, 0, 0, 3851, 3852, 5, 192, 0, 0, 3852, 3854, 3, 800, 400, 0, 3853, 3851, 1, 0, 0, 0, 3853, 3854, 1, 0, 0, 0, 3854, 251, 1, 0, 0, 0, 3855, 3856, 5, 125, 0, 0, 3856, 3857, 5, 20, 0, 0, 3857, 3862, 3, 254, 127, 0, 3858, 3859, 5, 868, 0, 0, 3859, 3861, 3, 254, 127, 0, 3860, 3858, 1, 0, 0, 0, 3861, 3864, 1, 0, 0, 0, 3862, 3860, 1, 0, 0, 0, 3862, 3863, 1, 0, 0, 0, 3863, 253, 1, 0, 0, 0, 3864, 3862, 1, 0, 0, 0, 3865, 3867, 3, 800, 400, 0, 3866, 3868, 7, 54, 0, 0, 3867, 3866, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 255, 1, 0, 0, 0, 3869, 3874, 3, 258, 129, 0, 3870, 3871, 5, 868, 0, 0, 3871, 3873, 3, 258, 129, 0, 3872, 3870, 1, 0, 0, 0, 3873, 3876, 1, 0, 0, 0, 3874, 3872, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 257, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3877, 3881, 3, 260, 130, 0, 3878, 3880, 3, 268, 134, 0, 3879, 3878, 1, 0, 0, 0, 3880, 3883, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3896, 1, 0, 0, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3885, 5, 866, 0, 0, 3885, 3889, 3, 260, 130, 0, 3886, 3888, 3, 268, 134, 0, 3887, 3886, 1, 0, 0, 0, 3888, 3891, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 1, 0, 0, 0, 3891, 3889, 1, 0, 0, 0, 3892, 3893, 5, 867, 0, 0, 3893, 3896, 1, 0, 0, 0, 3894, 3896, 3, 280, 140, 0, 3895, 3877, 1, 0, 0, 0, 3895, 3884, 1, 0, 0, 0, 3895, 3894, 1, 0, 0, 0, 3896, 259, 1, 0, 0, 0, 3897, 3903, 3, 648, 324, 0, 3898, 3899, 5, 130, 0, 0, 3899, 3900, 5, 866, 0, 0, 3900, 3901, 3, 666, 333, 0, 3901, 3902, 5, 867, 0, 0, 3902, 3904, 1, 0, 0, 0, 3903, 3898, 1, 0, 0, 0, 3903, 3904, 1, 0, 0, 0, 3904, 3909, 1, 0, 0, 0, 3905, 3907, 5, 13, 0, 0, 3906, 3905, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 3, 702, 351, 0, 3909, 3906, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3919, 1, 0, 0, 0, 3911, 3916, 3, 264, 132, 0, 3912, 3913, 5, 868, 0, 0, 3913, 3915, 3, 264, 132, 0, 3914, 3912, 1, 0, 0, 0, 3915, 3918, 1, 0, 0, 0, 3916, 3914, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3920, 1, 0, 0, 0, 3918, 3916, 1, 0, 0, 0, 3919, 3911, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 3943, 1, 0, 0, 0, 3921, 3923, 5, 95, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3929, 1, 0, 0, 0, 3924, 3930, 3, 204, 102, 0, 3925, 3926, 5, 866, 0, 0, 3926, 3927, 3, 204, 102, 0, 3927, 3928, 5, 867, 0, 0, 3928, 3930, 1, 0, 0, 0, 3929, 3924, 1, 0, 0, 0, 3929, 3925, 1, 0, 0, 0, 3930, 3932, 1, 0, 0, 0, 3931, 3933, 5, 13, 0, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3936, 3, 702, 351, 0, 3935, 3937, 3, 262, 131, 0, 3936, 3935, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3943, 1, 0, 0, 0, 3938, 3939, 5, 866, 0, 0, 3939, 3940, 3, 256, 128, 0, 3940, 3941, 5, 867, 0, 0, 3941, 3943, 1, 0, 0, 0, 3942, 3897, 1, 0, 0, 0, 3942, 3922, 1, 0, 0, 0, 3942, 3938, 1, 0, 0, 0, 3943, 261, 1, 0, 0, 0, 3944, 3945, 5, 866, 0, 0, 3945, 3946, 3, 656, 328, 0, 3946, 3947, 5, 867, 0, 0, 3947, 263, 1, 0, 0, 0, 3948, 3949, 7, 55, 0, 0, 3949, 3952, 7, 18, 0, 0, 3950, 3951, 5, 65, 0, 0, 3951, 3953, 3, 266, 133, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 3956, 5, 866, 0, 0, 3955, 3957, 3, 636, 318, 0, 3956, 3955, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3959, 5, 867, 0, 0, 3959, 265, 1, 0, 0, 0, 3960, 3966, 5, 91, 0, 0, 3961, 3962, 5, 125, 0, 0, 3962, 3966, 5, 20, 0, 0, 3963, 3964, 5, 74, 0, 0, 3964, 3966, 5, 20, 0, 0, 3965, 3960, 1, 0, 0, 0, 3965, 3961, 1, 0, 0, 0, 3965, 3963, 1, 0, 0, 0, 3966, 267, 1, 0, 0, 0, 3967, 3969, 7, 56, 0, 0, 3968, 3967, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3970, 1, 0, 0, 0, 3970, 3972, 5, 91, 0, 0, 3971, 3973, 5, 95, 0, 0, 3972, 3971, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3974, 1, 0, 0, 0, 3974, 3978, 3, 260, 130, 0, 3975, 3977, 3, 270, 135, 0, 3976, 3975, 1, 0, 0, 0, 3977, 3980, 1, 0, 0, 0, 3978, 3976, 1, 0, 0, 0, 3978, 3979, 1, 0, 0, 0, 3979, 4017, 1, 0, 0, 0, 3980, 3978, 1, 0, 0, 0, 3981, 3982, 5, 172, 0, 0, 3982, 3986, 3, 260, 130, 0, 3983, 3985, 3, 270, 135, 0, 3984, 3983, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 4017, 1, 0, 0, 0, 3988, 3986, 1, 0, 0, 0, 3989, 3991, 7, 57, 0, 0, 3990, 3992, 5, 127, 0, 0, 3991, 3990, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3995, 5, 91, 0, 0, 3994, 3996, 5, 95, 0, 0, 3995, 3994, 1, 0, 0, 0, 3995, 3996, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 4001, 3, 260, 130, 0, 3998, 4000, 3, 270, 135, 0, 3999, 3998, 1, 0, 0, 0, 4000, 4003, 1, 0, 0, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4017, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4004, 4012, 5, 113, 0, 0, 4005, 4008, 5, 84, 0, 0, 4006, 4008, 7, 57, 0, 0, 4007, 4005, 1, 0, 0, 0, 4007, 4006, 1, 0, 0, 0, 4008, 4010, 1, 0, 0, 0, 4009, 4011, 5, 127, 0, 0, 4010, 4009, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4013, 1, 0, 0, 0, 4012, 4007, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4015, 5, 91, 0, 0, 4015, 4017, 3, 260, 130, 0, 4016, 3968, 1, 0, 0, 0, 4016, 3981, 1, 0, 0, 0, 4016, 3989, 1, 0, 0, 0, 4016, 4004, 1, 0, 0, 0, 4017, 269, 1, 0, 0, 0, 4018, 4019, 5, 119, 0, 0, 4019, 4026, 3, 800, 400, 0, 4020, 4021, 5, 188, 0, 0, 4021, 4022, 5, 866, 0, 0, 4022, 4023, 3, 656, 328, 0, 4023, 4024, 5, 867, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4018, 1, 0, 0, 0, 4025, 4020, 1, 0, 0, 0, 4026, 271, 1, 0, 0, 0, 4027, 4028, 5, 866, 0, 0, 4028, 4029, 3, 274, 137, 0, 4029, 4030, 5, 867, 0, 0, 4030, 4036, 1, 0, 0, 0, 4031, 4032, 5, 866, 0, 0, 4032, 4033, 3, 272, 136, 0, 4033, 4034, 5, 867, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4027, 1, 0, 0, 0, 4035, 4031, 1, 0, 0, 0, 4036, 273, 1, 0, 0, 0, 4037, 4041, 5, 154, 0, 0, 4038, 4040, 3, 290, 145, 0, 4039, 4038, 1, 0, 0, 0, 4040, 4043, 1, 0, 0, 0, 4041, 4039, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 1, 0, 0, 0, 4043, 4041, 1, 0, 0, 0, 4044, 4046, 3, 292, 146, 0, 4045, 4047, 3, 296, 148, 0, 4046, 4045, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4050, 3, 302, 151, 0, 4049, 4051, 3, 304, 152, 0, 4050, 4049, 1, 0, 0, 0, 4050, 4051, 1, 0, 0, 0, 4051, 4053, 1, 0, 0, 0, 4052, 4054, 3, 306, 153, 0, 4053, 4052, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4056, 1, 0, 0, 0, 4055, 4057, 3, 308, 154, 0, 4056, 4055, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 1, 0, 0, 0, 4058, 4060, 3, 252, 126, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4062, 1, 0, 0, 0, 4061, 4063, 3, 312, 156, 0, 4062, 4061, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4065, 1, 0, 0, 0, 4064, 4066, 3, 296, 148, 0, 4065, 4064, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 275, 1, 0, 0, 0, 4067, 4069, 5, 181, 0, 0, 4068, 4070, 7, 44, 0, 0, 4069, 4068, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4073, 1, 0, 0, 0, 4071, 4074, 3, 274, 137, 0, 4072, 4074, 3, 272, 136, 0, 4073, 4071, 1, 0, 0, 0, 4073, 4072, 1, 0, 0, 0, 4074, 277, 1, 0, 0, 0, 4075, 4090, 5, 95, 0, 0, 4076, 4091, 3, 274, 137, 0, 4077, 4091, 3, 272, 136, 0, 4078, 4081, 5, 866, 0, 0, 4079, 4082, 3, 274, 137, 0, 4080, 4082, 3, 272, 136, 0, 4081, 4079, 1, 0, 0, 0, 4081, 4080, 1, 0, 0, 0, 4082, 4083, 1, 0, 0, 0, 4083, 4088, 5, 867, 0, 0, 4084, 4086, 5, 13, 0, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4087, 1, 0, 0, 0, 4087, 4089, 3, 702, 351, 0, 4088, 4085, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4091, 1, 0, 0, 0, 4090, 4076, 1, 0, 0, 0, 4090, 4077, 1, 0, 0, 0, 4090, 4078, 1, 0, 0, 0, 4091, 279, 1, 0, 0, 0, 4092, 4093, 5, 253, 0, 0, 4093, 4094, 5, 866, 0, 0, 4094, 4095, 5, 882, 0, 0, 4095, 4096, 5, 868, 0, 0, 4096, 4097, 5, 882, 0, 0, 4097, 4098, 5, 337, 0, 0, 4098, 4099, 5, 866, 0, 0, 4099, 4100, 3, 282, 141, 0, 4100, 4101, 5, 867, 0, 0, 4101, 4106, 5, 867, 0, 0, 4102, 4104, 5, 13, 0, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4107, 3, 702, 351, 0, 4106, 4103, 1, 0, 0, 0, 4106, 4107, 1, 0, 0, 0, 4107, 281, 1, 0, 0, 0, 4108, 4113, 3, 284, 142, 0, 4109, 4110, 5, 868, 0, 0, 4110, 4112, 3, 284, 142, 0, 4111, 4109, 1, 0, 0, 0, 4112, 4115, 1, 0, 0, 0, 4113, 4111, 1, 0, 0, 0, 4113, 4114, 1, 0, 0, 0, 4114, 283, 1, 0, 0, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4133, 3, 658, 329, 0, 4117, 4118, 5, 65, 0, 0, 4118, 4134, 5, 256, 0, 0, 4119, 4131, 3, 722, 361, 0, 4120, 4121, 5, 257, 0, 0, 4121, 4123, 5, 882, 0, 0, 4122, 4124, 3, 286, 143, 0, 4123, 4122, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4127, 3, 288, 144, 0, 4126, 4125, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4132, 1, 0, 0, 0, 4128, 4129, 5, 60, 0, 0, 4129, 4130, 5, 257, 0, 0, 4130, 4132, 5, 882, 0, 0, 4131, 4120, 1, 0, 0, 0, 4131, 4128, 1, 0, 0, 0, 4132, 4134, 1, 0, 0, 0, 4133, 4117, 1, 0, 0, 0, 4133, 4119, 1, 0, 0, 0, 4134, 4146, 1, 0, 0, 0, 4135, 4137, 5, 255, 0, 0, 4136, 4138, 5, 257, 0, 0, 4137, 4136, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4140, 5, 882, 0, 0, 4140, 4141, 5, 337, 0, 0, 4141, 4142, 5, 866, 0, 0, 4142, 4143, 3, 282, 141, 0, 4143, 4144, 5, 867, 0, 0, 4144, 4146, 1, 0, 0, 0, 4145, 4116, 1, 0, 0, 0, 4145, 4135, 1, 0, 0, 0, 4146, 285, 1, 0, 0, 0, 4147, 4152, 5, 116, 0, 0, 4148, 4152, 5, 382, 0, 0, 4149, 4150, 5, 42, 0, 0, 4150, 4152, 3, 750, 375, 0, 4151, 4147, 1, 0, 0, 0, 4151, 4148, 1, 0, 0, 0, 4151, 4149, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4154, 5, 119, 0, 0, 4154, 4155, 5, 55, 0, 0, 4155, 287, 1, 0, 0, 0, 4156, 4161, 5, 116, 0, 0, 4157, 4161, 5, 382, 0, 0, 4158, 4159, 5, 42, 0, 0, 4159, 4161, 3, 750, 375, 0, 4160, 4156, 1, 0, 0, 0, 4160, 4157, 1, 0, 0, 0, 4160, 4158, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 5, 119, 0, 0, 4163, 4164, 5, 382, 0, 0, 4164, 289, 1, 0, 0, 0, 4165, 4174, 7, 58, 0, 0, 4166, 4174, 5, 76, 0, 0, 4167, 4174, 5, 172, 0, 0, 4168, 4174, 5, 168, 0, 0, 4169, 4174, 5, 166, 0, 0, 4170, 4174, 5, 636, 0, 0, 4171, 4174, 7, 59, 0, 0, 4172, 4174, 5, 167, 0, 0, 4173, 4165, 1, 0, 0, 0, 4173, 4166, 1, 0, 0, 0, 4173, 4167, 1, 0, 0, 0, 4173, 4168, 1, 0, 0, 0, 4173, 4169, 1, 0, 0, 0, 4173, 4170, 1, 0, 0, 0, 4173, 4171, 1, 0, 0, 0, 4173, 4172, 1, 0, 0, 0, 4174, 291, 1, 0, 0, 0, 4175, 4178, 5, 850, 0, 0, 4176, 4178, 3, 294, 147, 0, 4177, 4175, 1, 0, 0, 0, 4177, 4176, 1, 0, 0, 0, 4178, 4183, 1, 0, 0, 0, 4179, 4180, 5, 868, 0, 0, 4180, 4182, 3, 294, 147, 0, 4181, 4179, 1, 0, 0, 0, 4182, 4185, 1, 0, 0, 0, 4183, 4181, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, 0, 4184, 293, 1, 0, 0, 0, 4185, 4183, 1, 0, 0, 0, 4186, 4187, 5, 892, 0, 0, 4187, 4189, 5, 841, 0, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4195, 3, 800, 400, 0, 4191, 4193, 5, 13, 0, 0, 4192, 4191, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 4194, 1, 0, 0, 0, 4194, 4196, 3, 702, 351, 0, 4195, 4192, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 4216, 1, 0, 0, 0, 4197, 4202, 3, 760, 380, 0, 4198, 4200, 5, 13, 0, 0, 4199, 4198, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 4203, 3, 702, 351, 0, 4202, 4199, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4216, 1, 0, 0, 0, 4204, 4205, 3, 698, 349, 0, 4205, 4206, 5, 865, 0, 0, 4206, 4207, 5, 850, 0, 0, 4207, 4216, 1, 0, 0, 0, 4208, 4213, 3, 658, 329, 0, 4209, 4211, 5, 13, 0, 0, 4210, 4209, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4214, 3, 702, 351, 0, 4213, 4210, 1, 0, 0, 0, 4213, 4214, 1, 0, 0, 0, 4214, 4216, 1, 0, 0, 0, 4215, 4188, 1, 0, 0, 0, 4215, 4197, 1, 0, 0, 0, 4215, 4204, 1, 0, 0, 0, 4215, 4208, 1, 0, 0, 0, 4216, 295, 1, 0, 0, 0, 4217, 4218, 5, 88, 0, 0, 4218, 4223, 3, 230, 115, 0, 4219, 4220, 5, 868, 0, 0, 4220, 4222, 3, 230, 115, 0, 4221, 4219, 1, 0, 0, 0, 4222, 4225, 1, 0, 0, 0, 4223, 4221, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, 0, 4224, 4254, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4226, 4227, 5, 88, 0, 0, 4227, 4228, 5, 372, 0, 0, 4228, 4254, 5, 882, 0, 0, 4229, 4230, 5, 88, 0, 0, 4230, 4231, 5, 128, 0, 0, 4231, 4235, 5, 882, 0, 0, 4232, 4233, 5, 26, 0, 0, 4233, 4234, 5, 155, 0, 0, 4234, 4236, 3, 684, 342, 0, 4235, 4232, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 4243, 1, 0, 0, 0, 4237, 4239, 7, 46, 0, 0, 4238, 4240, 3, 298, 149, 0, 4239, 4238, 1, 0, 0, 0, 4240, 4241, 1, 0, 0, 0, 4241, 4239, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 4244, 1, 0, 0, 0, 4243, 4237, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4251, 1, 0, 0, 0, 4245, 4247, 5, 102, 0, 0, 4246, 4248, 3, 300, 150, 0, 4247, 4246, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 4247, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, 0, 4250, 4252, 1, 0, 0, 0, 4251, 4245, 1, 0, 0, 0, 4251, 4252, 1, 0, 0, 0, 4252, 4254, 1, 0, 0, 0, 4253, 4217, 1, 0, 0, 0, 4253, 4226, 1, 0, 0, 0, 4253, 4229, 1, 0, 0, 0, 4254, 297, 1, 0, 0, 0, 4255, 4256, 5, 174, 0, 0, 4256, 4257, 5, 20, 0, 0, 4257, 4268, 5, 882, 0, 0, 4258, 4260, 5, 123, 0, 0, 4259, 4258, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 4262, 5, 56, 0, 0, 4262, 4263, 5, 20, 0, 0, 4263, 4268, 5, 882, 0, 0, 4264, 4265, 5, 58, 0, 0, 4265, 4266, 5, 20, 0, 0, 4266, 4268, 5, 882, 0, 0, 4267, 4255, 1, 0, 0, 0, 4267, 4259, 1, 0, 0, 0, 4267, 4264, 1, 0, 0, 0, 4268, 299, 1, 0, 0, 0, 4269, 4270, 5, 171, 0, 0, 4270, 4271, 5, 20, 0, 0, 4271, 4276, 5, 882, 0, 0, 4272, 4273, 5, 174, 0, 0, 4273, 4274, 5, 20, 0, 0, 4274, 4276, 5, 882, 0, 0, 4275, 4269, 1, 0, 0, 0, 4275, 4272, 1, 0, 0, 0, 4276, 301, 1, 0, 0, 0, 4277, 4278, 5, 68, 0, 0, 4278, 4280, 3, 256, 128, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4283, 1, 0, 0, 0, 4281, 4282, 5, 192, 0, 0, 4282, 4284, 3, 800, 400, 0, 4283, 4281, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 303, 1, 0, 0, 0, 4285, 4286, 5, 74, 0, 0, 4286, 4287, 5, 20, 0, 0, 4287, 4292, 3, 310, 155, 0, 4288, 4289, 5, 868, 0, 0, 4289, 4291, 3, 310, 155, 0, 4290, 4288, 1, 0, 0, 0, 4291, 4294, 1, 0, 0, 0, 4292, 4290, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4297, 1, 0, 0, 0, 4294, 4292, 1, 0, 0, 0, 4295, 4296, 5, 194, 0, 0, 4296, 4298, 5, 584, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 305, 1, 0, 0, 0, 4299, 4300, 5, 75, 0, 0, 4300, 4301, 3, 800, 400, 0, 4301, 307, 1, 0, 0, 0, 4302, 4303, 5, 689, 0, 0, 4303, 4304, 3, 778, 389, 0, 4304, 4305, 5, 13, 0, 0, 4305, 4306, 5, 866, 0, 0, 4306, 4307, 3, 776, 388, 0, 4307, 4317, 5, 867, 0, 0, 4308, 4309, 5, 868, 0, 0, 4309, 4310, 3, 778, 389, 0, 4310, 4311, 5, 13, 0, 0, 4311, 4312, 5, 866, 0, 0, 4312, 4313, 3, 776, 388, 0, 4313, 4314, 5, 867, 0, 0, 4314, 4316, 1, 0, 0, 0, 4315, 4308, 1, 0, 0, 0, 4316, 4319, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 309, 1, 0, 0, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4322, 3, 800, 400, 0, 4321, 4323, 7, 54, 0, 0, 4322, 4321, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 311, 1, 0, 0, 0, 4324, 4335, 5, 100, 0, 0, 4325, 4326, 3, 314, 157, 0, 4326, 4327, 5, 868, 0, 0, 4327, 4329, 1, 0, 0, 0, 4328, 4325, 1, 0, 0, 0, 4328, 4329, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 4336, 3, 314, 157, 0, 4331, 4332, 3, 314, 157, 0, 4332, 4333, 5, 509, 0, 0, 4333, 4334, 3, 314, 157, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4328, 1, 0, 0, 0, 4335, 4331, 1, 0, 0, 0, 4336, 313, 1, 0, 0, 0, 4337, 4341, 3, 708, 354, 0, 4338, 4341, 3, 682, 341, 0, 4339, 4341, 3, 704, 352, 0, 4340, 4337, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, 4339, 1, 0, 0, 0, 4341, 315, 1, 0, 0, 0, 4342, 4343, 5, 640, 0, 0, 4343, 4352, 5, 664, 0, 0, 4344, 4349, 3, 338, 169, 0, 4345, 4346, 5, 868, 0, 0, 4346, 4348, 3, 338, 169, 0, 4347, 4345, 1, 0, 0, 0, 4348, 4351, 1, 0, 0, 0, 4349, 4347, 1, 0, 0, 0, 4349, 4350, 1, 0, 0, 0, 4350, 4353, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4352, 4344, 1, 0, 0, 0, 4352, 4353, 1, 0, 0, 0, 4353, 317, 1, 0, 0, 0, 4354, 4356, 5, 317, 0, 0, 4355, 4357, 5, 691, 0, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 319, 1, 0, 0, 0, 4358, 4360, 5, 341, 0, 0, 4359, 4361, 5, 691, 0, 0, 4360, 4359, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4367, 1, 0, 0, 0, 4362, 4364, 5, 11, 0, 0, 4363, 4365, 5, 502, 0, 0, 4364, 4363, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 4368, 5, 326, 0, 0, 4367, 4362, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4373, 1, 0, 0, 0, 4369, 4371, 5, 502, 0, 0, 4370, 4369, 1, 0, 0, 0, 4370, 4371, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4374, 5, 140, 0, 0, 4373, 4370, 1, 0, 0, 0, 4373, 4374, 1, 0, 0, 0, 4374, 321, 1, 0, 0, 0, 4375, 4377, 5, 583, 0, 0, 4376, 4378, 5, 691, 0, 0, 4377, 4376, 1, 0, 0, 0, 4377, 4378, 1, 0, 0, 0, 4378, 4384, 1, 0, 0, 0, 4379, 4381, 5, 11, 0, 0, 4380, 4382, 5, 502, 0, 0, 4381, 4380, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4385, 5, 326, 0, 0, 4384, 4379, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4390, 1, 0, 0, 0, 4386, 4388, 5, 502, 0, 0, 4387, 4386, 1, 0, 0, 0, 4387, 4388, 1, 0, 0, 0, 4388, 4389, 1, 0, 0, 0, 4389, 4391, 5, 140, 0, 0, 4390, 4387, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 323, 1, 0, 0, 0, 4392, 4393, 5, 589, 0, 0, 4393, 4394, 3, 702, 351, 0, 4394, 325, 1, 0, 0, 0, 4395, 4397, 5, 583, 0, 0, 4396, 4398, 5, 691, 0, 0, 4397, 4396, 1, 0, 0, 0, 4397, 4398, 1, 0, 0, 0, 4398, 4399, 1, 0, 0, 0, 4399, 4401, 5, 176, 0, 0, 4400, 4402, 5, 589, 0, 0, 4401, 4400, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 4403, 1, 0, 0, 0, 4403, 4404, 3, 702, 351, 0, 4404, 327, 1, 0, 0, 0, 4405, 4406, 5, 140, 0, 0, 4406, 4407, 5, 589, 0, 0, 4407, 4408, 3, 702, 351, 0, 4408, 329, 1, 0, 0, 0, 4409, 4410, 5, 104, 0, 0, 4410, 4411, 7, 60, 0, 0, 4411, 4416, 3, 340, 170, 0, 4412, 4413, 5, 868, 0, 0, 4413, 4415, 3, 340, 170, 0, 4414, 4412, 1, 0, 0, 0, 4415, 4418, 1, 0, 0, 0, 4416, 4414, 1, 0, 0, 0, 4416, 4417, 1, 0, 0, 0, 4417, 331, 1, 0, 0, 0, 4418, 4416, 1, 0, 0, 0, 4419, 4420, 5, 183, 0, 0, 4420, 4421, 5, 752, 0, 0, 4421, 333, 1, 0, 0, 0, 4422, 4423, 5, 155, 0, 0, 4423, 4424, 5, 313, 0, 0, 4424, 4425, 5, 857, 0, 0, 4425, 4426, 7, 25, 0, 0, 4426, 335, 1, 0, 0, 0, 4427, 4429, 5, 155, 0, 0, 4428, 4430, 7, 61, 0, 0, 4429, 4428, 1, 0, 0, 0, 4429, 4430, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 4432, 5, 664, 0, 0, 4432, 4437, 3, 344, 172, 0, 4433, 4434, 5, 868, 0, 0, 4434, 4436, 3, 344, 172, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4439, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 337, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 4441, 5, 194, 0, 0, 4441, 4442, 5, 350, 0, 0, 4442, 4448, 5, 600, 0, 0, 4443, 4444, 5, 135, 0, 0, 4444, 4448, 5, 195, 0, 0, 4445, 4446, 5, 135, 0, 0, 4446, 4448, 5, 515, 0, 0, 4447, 4440, 1, 0, 0, 0, 4447, 4443, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4448, 339, 1, 0, 0, 0, 4449, 4454, 3, 648, 324, 0, 4450, 4452, 5, 13, 0, 0, 4451, 4450, 1, 0, 0, 0, 4451, 4452, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 4455, 3, 702, 351, 0, 4454, 4451, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4457, 3, 342, 171, 0, 4457, 341, 1, 0, 0, 0, 4458, 4460, 5, 135, 0, 0, 4459, 4461, 5, 450, 0, 0, 4460, 4459, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 4467, 1, 0, 0, 0, 4462, 4464, 5, 107, 0, 0, 4463, 4462, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4465, 1, 0, 0, 0, 4465, 4467, 5, 195, 0, 0, 4466, 4458, 1, 0, 0, 0, 4466, 4463, 1, 0, 0, 0, 4467, 343, 1, 0, 0, 0, 4468, 4469, 5, 440, 0, 0, 4469, 4470, 5, 448, 0, 0, 4470, 4476, 3, 346, 173, 0, 4471, 4472, 5, 135, 0, 0, 4472, 4476, 5, 195, 0, 0, 4473, 4474, 5, 135, 0, 0, 4474, 4476, 5, 515, 0, 0, 4475, 4468, 1, 0, 0, 0, 4475, 4471, 1, 0, 0, 0, 4475, 4473, 1, 0, 0, 0, 4476, 345, 1, 0, 0, 0, 4477, 4478, 5, 809, 0, 0, 4478, 4485, 5, 135, 0, 0, 4479, 4480, 5, 135, 0, 0, 4480, 4485, 5, 810, 0, 0, 4481, 4482, 5, 135, 0, 0, 4482, 4485, 5, 811, 0, 0, 4483, 4485, 5, 812, 0, 0, 4484, 4477, 1, 0, 0, 0, 4484, 4479, 1, 0, 0, 0, 4484, 4481, 1, 0, 0, 0, 4484, 4483, 1, 0, 0, 0, 4485, 347, 1, 0, 0, 0, 4486, 4487, 5, 25, 0, 0, 4487, 4488, 5, 453, 0, 0, 4488, 4489, 5, 176, 0, 0, 4489, 4494, 3, 364, 182, 0, 4490, 4491, 5, 868, 0, 0, 4491, 4493, 3, 364, 182, 0, 4492, 4490, 1, 0, 0, 0, 4493, 4496, 1, 0, 0, 0, 4494, 4492, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4498, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4497, 4499, 3, 384, 192, 0, 4498, 4497, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 349, 1, 0, 0, 0, 4500, 4501, 5, 25, 0, 0, 4501, 4502, 5, 572, 0, 0, 4502, 4503, 5, 400, 0, 0, 4503, 4508, 3, 386, 193, 0, 4504, 4505, 5, 868, 0, 0, 4505, 4507, 3, 386, 193, 0, 4506, 4504, 1, 0, 0, 0, 4507, 4510, 1, 0, 0, 0, 4508, 4506, 1, 0, 0, 0, 4508, 4509, 1, 0, 0, 0, 4509, 4512, 1, 0, 0, 0, 4510, 4508, 1, 0, 0, 0, 4511, 4513, 3, 384, 192, 0, 4512, 4511, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 351, 1, 0, 0, 0, 4514, 4515, 5, 25, 0, 0, 4515, 4516, 5, 572, 0, 0, 4516, 4517, 5, 605, 0, 0, 4517, 4518, 5, 176, 0, 0, 4518, 4523, 3, 374, 187, 0, 4519, 4520, 5, 868, 0, 0, 4520, 4522, 3, 374, 187, 0, 4521, 4519, 1, 0, 0, 0, 4522, 4525, 1, 0, 0, 0, 4523, 4521, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 4527, 1, 0, 0, 0, 4525, 4523, 1, 0, 0, 0, 4526, 4528, 3, 384, 192, 0, 4527, 4526, 1, 0, 0, 0, 4527, 4528, 1, 0, 0, 0, 4528, 353, 1, 0, 0, 0, 4529, 4530, 5, 133, 0, 0, 4530, 4531, 7, 62, 0, 0, 4531, 4536, 5, 452, 0, 0, 4532, 4533, 5, 176, 0, 0, 4533, 4537, 5, 882, 0, 0, 4534, 4535, 5, 16, 0, 0, 4535, 4537, 5, 882, 0, 0, 4536, 4532, 1, 0, 0, 0, 4536, 4534, 1, 0, 0, 0, 4537, 355, 1, 0, 0, 0, 4538, 4539, 5, 640, 0, 0, 4539, 4548, 7, 63, 0, 0, 4540, 4545, 3, 390, 195, 0, 4541, 4542, 5, 868, 0, 0, 4542, 4544, 3, 390, 195, 0, 4543, 4541, 1, 0, 0, 0, 4544, 4547, 1, 0, 0, 0, 4545, 4543, 1, 0, 0, 0, 4545, 4546, 1, 0, 0, 0, 4546, 4549, 1, 0, 0, 0, 4547, 4545, 1, 0, 0, 0, 4548, 4540, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4552, 1, 0, 0, 0, 4550, 4551, 5, 676, 0, 0, 4551, 4553, 3, 392, 196, 0, 4552, 4550, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4557, 1, 0, 0, 0, 4554, 4556, 3, 394, 197, 0, 4555, 4554, 1, 0, 0, 0, 4556, 4559, 1, 0, 0, 0, 4557, 4555, 1, 0, 0, 0, 4557, 4558, 1, 0, 0, 0, 4558, 4561, 1, 0, 0, 0, 4559, 4557, 1, 0, 0, 0, 4560, 4562, 3, 384, 192, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 357, 1, 0, 0, 0, 4563, 4564, 5, 646, 0, 0, 4564, 4573, 7, 63, 0, 0, 4565, 4570, 3, 390, 195, 0, 4566, 4567, 5, 868, 0, 0, 4567, 4569, 3, 390, 195, 0, 4568, 4566, 1, 0, 0, 0, 4569, 4572, 1, 0, 0, 0, 4570, 4568, 1, 0, 0, 0, 4570, 4571, 1, 0, 0, 0, 4571, 4574, 1, 0, 0, 0, 4572, 4570, 1, 0, 0, 0, 4573, 4565, 1, 0, 0, 0, 4573, 4574, 1, 0, 0, 0, 4574, 4576, 1, 0, 0, 0, 4575, 4577, 3, 384, 192, 0, 4576, 4575, 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 359, 1, 0, 0, 0, 4578, 4579, 5, 640, 0, 0, 4579, 4583, 5, 415, 0, 0, 4580, 4581, 5, 678, 0, 0, 4581, 4582, 5, 857, 0, 0, 4582, 4584, 5, 882, 0, 0, 4583, 4580, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 4589, 1, 0, 0, 0, 4585, 4586, 5, 868, 0, 0, 4586, 4587, 5, 529, 0, 0, 4587, 4588, 5, 857, 0, 0, 4588, 4590, 5, 882, 0, 0, 4589, 4585, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4595, 1, 0, 0, 0, 4591, 4592, 5, 868, 0, 0, 4592, 4593, 5, 363, 0, 0, 4593, 4594, 5, 857, 0, 0, 4594, 4596, 5, 882, 0, 0, 4595, 4591, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 361, 1, 0, 0, 0, 4597, 4598, 5, 646, 0, 0, 4598, 4599, 5, 415, 0, 0, 4599, 363, 1, 0, 0, 0, 4600, 4601, 3, 366, 183, 0, 4601, 4602, 5, 857, 0, 0, 4602, 4603, 5, 882, 0, 0, 4603, 4628, 1, 0, 0, 0, 4604, 4605, 3, 368, 184, 0, 4605, 4606, 5, 857, 0, 0, 4606, 4607, 3, 708, 354, 0, 4607, 4628, 1, 0, 0, 0, 4608, 4609, 3, 370, 185, 0, 4609, 4610, 5, 857, 0, 0, 4610, 4611, 7, 25, 0, 0, 4611, 4628, 1, 0, 0, 0, 4612, 4628, 3, 372, 186, 0, 4613, 4614, 5, 424, 0, 0, 4614, 4615, 5, 857, 0, 0, 4615, 4624, 5, 866, 0, 0, 4616, 4621, 3, 702, 351, 0, 4617, 4618, 5, 868, 0, 0, 4618, 4620, 3, 702, 351, 0, 4619, 4617, 1, 0, 0, 0, 4620, 4623, 1, 0, 0, 0, 4621, 4619, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4625, 1, 0, 0, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4616, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4628, 5, 867, 0, 0, 4627, 4600, 1, 0, 0, 0, 4627, 4604, 1, 0, 0, 0, 4627, 4608, 1, 0, 0, 0, 4627, 4612, 1, 0, 0, 0, 4627, 4613, 1, 0, 0, 0, 4628, 365, 1, 0, 0, 0, 4629, 4630, 7, 64, 0, 0, 4630, 367, 1, 0, 0, 0, 4631, 4632, 7, 65, 0, 0, 4632, 369, 1, 0, 0, 0, 4633, 4634, 7, 66, 0, 0, 4634, 371, 1, 0, 0, 0, 4635, 4636, 5, 543, 0, 0, 4636, 4637, 5, 857, 0, 0, 4637, 4649, 7, 67, 0, 0, 4638, 4639, 5, 574, 0, 0, 4639, 4640, 5, 857, 0, 0, 4640, 4649, 7, 68, 0, 0, 4641, 4642, 5, 310, 0, 0, 4642, 4646, 5, 857, 0, 0, 4643, 4647, 5, 507, 0, 0, 4644, 4647, 5, 450, 0, 0, 4645, 4647, 3, 396, 198, 0, 4646, 4643, 1, 0, 0, 0, 4646, 4644, 1, 0, 0, 0, 4646, 4645, 1, 0, 0, 0, 4647, 4649, 1, 0, 0, 0, 4648, 4635, 1, 0, 0, 0, 4648, 4638, 1, 0, 0, 0, 4648, 4641, 1, 0, 0, 0, 4649, 373, 1, 0, 0, 0, 4650, 4651, 3, 376, 188, 0, 4651, 4652, 5, 857, 0, 0, 4652, 4653, 5, 882, 0, 0, 4653, 4678, 1, 0, 0, 0, 4654, 4655, 3, 378, 189, 0, 4655, 4656, 5, 857, 0, 0, 4656, 4657, 3, 708, 354, 0, 4657, 4678, 1, 0, 0, 0, 4658, 4659, 3, 380, 190, 0, 4659, 4660, 5, 857, 0, 0, 4660, 4661, 7, 25, 0, 0, 4661, 4678, 1, 0, 0, 0, 4662, 4678, 3, 382, 191, 0, 4663, 4664, 5, 424, 0, 0, 4664, 4665, 5, 857, 0, 0, 4665, 4674, 5, 866, 0, 0, 4666, 4671, 3, 702, 351, 0, 4667, 4668, 5, 868, 0, 0, 4668, 4670, 3, 702, 351, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4673, 1, 0, 0, 0, 4671, 4669, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4675, 1, 0, 0, 0, 4673, 4671, 1, 0, 0, 0, 4674, 4666, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, 4676, 4678, 5, 867, 0, 0, 4677, 4650, 1, 0, 0, 0, 4677, 4654, 1, 0, 0, 0, 4677, 4658, 1, 0, 0, 0, 4677, 4662, 1, 0, 0, 0, 4677, 4663, 1, 0, 0, 0, 4678, 375, 1, 0, 0, 0, 4679, 4680, 7, 69, 0, 0, 4680, 377, 1, 0, 0, 0, 4681, 4682, 7, 70, 0, 0, 4682, 379, 1, 0, 0, 0, 4683, 4684, 7, 71, 0, 0, 4684, 381, 1, 0, 0, 0, 4685, 4686, 5, 543, 0, 0, 4686, 4687, 5, 857, 0, 0, 4687, 4699, 7, 67, 0, 0, 4688, 4689, 5, 574, 0, 0, 4689, 4690, 5, 857, 0, 0, 4690, 4699, 7, 72, 0, 0, 4691, 4692, 5, 310, 0, 0, 4692, 4696, 5, 857, 0, 0, 4693, 4697, 5, 507, 0, 0, 4694, 4697, 5, 450, 0, 0, 4695, 4697, 3, 396, 198, 0, 4696, 4693, 1, 0, 0, 0, 4696, 4694, 1, 0, 0, 0, 4696, 4695, 1, 0, 0, 0, 4697, 4699, 1, 0, 0, 0, 4698, 4685, 1, 0, 0, 0, 4698, 4688, 1, 0, 0, 0, 4698, 4691, 1, 0, 0, 0, 4699, 383, 1, 0, 0, 0, 4700, 4701, 5, 65, 0, 0, 4701, 4702, 5, 328, 0, 0, 4702, 4703, 5, 882, 0, 0, 4703, 385, 1, 0, 0, 0, 4704, 4705, 5, 565, 0, 0, 4705, 4706, 5, 857, 0, 0, 4706, 4707, 5, 866, 0, 0, 4707, 4712, 3, 624, 312, 0, 4708, 4709, 5, 868, 0, 0, 4709, 4711, 3, 624, 312, 0, 4710, 4708, 1, 0, 0, 0, 4711, 4714, 1, 0, 0, 0, 4712, 4710, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4715, 1, 0, 0, 0, 4714, 4712, 1, 0, 0, 0, 4715, 4716, 5, 867, 0, 0, 4716, 4768, 1, 0, 0, 0, 4717, 4718, 5, 567, 0, 0, 4718, 4719, 5, 857, 0, 0, 4719, 4720, 5, 866, 0, 0, 4720, 4725, 3, 624, 312, 0, 4721, 4722, 5, 868, 0, 0, 4722, 4724, 3, 624, 312, 0, 4723, 4721, 1, 0, 0, 0, 4724, 4727, 1, 0, 0, 0, 4725, 4723, 1, 0, 0, 0, 4725, 4726, 1, 0, 0, 0, 4726, 4728, 1, 0, 0, 0, 4727, 4725, 1, 0, 0, 0, 4728, 4729, 5, 867, 0, 0, 4729, 4768, 1, 0, 0, 0, 4730, 4731, 5, 566, 0, 0, 4731, 4732, 5, 857, 0, 0, 4732, 4733, 5, 866, 0, 0, 4733, 4734, 3, 646, 323, 0, 4734, 4735, 5, 867, 0, 0, 4735, 4768, 1, 0, 0, 0, 4736, 4737, 5, 568, 0, 0, 4737, 4738, 5, 857, 0, 0, 4738, 4739, 5, 866, 0, 0, 4739, 4740, 3, 646, 323, 0, 4740, 4741, 5, 867, 0, 0, 4741, 4768, 1, 0, 0, 0, 4742, 4743, 5, 570, 0, 0, 4743, 4744, 5, 857, 0, 0, 4744, 4745, 5, 866, 0, 0, 4745, 4746, 3, 746, 373, 0, 4746, 4747, 5, 867, 0, 0, 4747, 4768, 1, 0, 0, 0, 4748, 4749, 5, 571, 0, 0, 4749, 4750, 5, 857, 0, 0, 4750, 4751, 5, 866, 0, 0, 4751, 4752, 3, 746, 373, 0, 4752, 4753, 5, 867, 0, 0, 4753, 4768, 1, 0, 0, 0, 4754, 4755, 5, 569, 0, 0, 4755, 4756, 5, 857, 0, 0, 4756, 4757, 5, 866, 0, 0, 4757, 4762, 3, 388, 194, 0, 4758, 4759, 5, 868, 0, 0, 4759, 4761, 3, 388, 194, 0, 4760, 4758, 1, 0, 0, 0, 4761, 4764, 1, 0, 0, 0, 4762, 4760, 1, 0, 0, 0, 4762, 4763, 1, 0, 0, 0, 4763, 4765, 1, 0, 0, 0, 4764, 4762, 1, 0, 0, 0, 4765, 4766, 5, 867, 0, 0, 4766, 4768, 1, 0, 0, 0, 4767, 4704, 1, 0, 0, 0, 4767, 4717, 1, 0, 0, 0, 4767, 4730, 1, 0, 0, 0, 4767, 4736, 1, 0, 0, 0, 4767, 4742, 1, 0, 0, 0, 4767, 4748, 1, 0, 0, 0, 4767, 4754, 1, 0, 0, 0, 4768, 387, 1, 0, 0, 0, 4769, 4770, 5, 866, 0, 0, 4770, 4771, 3, 648, 324, 0, 4771, 4772, 5, 868, 0, 0, 4772, 4773, 3, 648, 324, 0, 4773, 4774, 5, 867, 0, 0, 4774, 389, 1, 0, 0, 0, 4775, 4776, 7, 73, 0, 0, 4776, 391, 1, 0, 0, 0, 4777, 4778, 7, 74, 0, 0, 4778, 4779, 5, 857, 0, 0, 4779, 4803, 3, 396, 198, 0, 4780, 4781, 5, 460, 0, 0, 4781, 4782, 5, 857, 0, 0, 4782, 4783, 5, 882, 0, 0, 4783, 4784, 5, 868, 0, 0, 4784, 4785, 5, 461, 0, 0, 4785, 4786, 5, 857, 0, 0, 4786, 4803, 3, 708, 354, 0, 4787, 4788, 5, 611, 0, 0, 4788, 4789, 5, 857, 0, 0, 4789, 4790, 5, 882, 0, 0, 4790, 4791, 5, 868, 0, 0, 4791, 4792, 5, 612, 0, 0, 4792, 4793, 5, 857, 0, 0, 4793, 4803, 3, 708, 354, 0, 4794, 4795, 5, 557, 0, 0, 4795, 4796, 5, 857, 0, 0, 4796, 4797, 5, 882, 0, 0, 4797, 4798, 5, 868, 0, 0, 4798, 4799, 5, 558, 0, 0, 4799, 4800, 5, 857, 0, 0, 4800, 4803, 3, 708, 354, 0, 4801, 4803, 5, 634, 0, 0, 4802, 4777, 1, 0, 0, 0, 4802, 4780, 1, 0, 0, 0, 4802, 4787, 1, 0, 0, 0, 4802, 4794, 1, 0, 0, 0, 4802, 4801, 1, 0, 0, 0, 4803, 393, 1, 0, 0, 0, 4804, 4805, 5, 678, 0, 0, 4805, 4806, 5, 857, 0, 0, 4806, 4817, 5, 882, 0, 0, 4807, 4808, 5, 529, 0, 0, 4808, 4809, 5, 857, 0, 0, 4809, 4817, 5, 882, 0, 0, 4810, 4811, 5, 363, 0, 0, 4811, 4812, 5, 857, 0, 0, 4812, 4817, 5, 882, 0, 0, 4813, 4814, 5, 535, 0, 0, 4814, 4815, 5, 857, 0, 0, 4815, 4817, 5, 882, 0, 0, 4816, 4804, 1, 0, 0, 0, 4816, 4807, 1, 0, 0, 0, 4816, 4810, 1, 0, 0, 0, 4816, 4813, 1, 0, 0, 0, 4817, 395, 1, 0, 0, 0, 4818, 4823, 3, 692, 346, 0, 4819, 4820, 5, 868, 0, 0, 4820, 4822, 3, 692, 346, 0, 4821, 4819, 1, 0, 0, 0, 4822, 4825, 1, 0, 0, 0, 4823, 4821, 1, 0, 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4828, 1, 0, 0, 0, 4825, 4823, 1, 0, 0, 0, 4826, 4828, 5, 882, 0, 0, 4827, 4818, 1, 0, 0, 0, 4827, 4826, 1, 0, 0, 0, 4828, 397, 1, 0, 0, 0, 4829, 4830, 5, 694, 0, 0, 4830, 4831, 7, 75, 0, 0, 4831, 4833, 3, 694, 347, 0, 4832, 4834, 7, 76, 0, 0, 4833, 4832, 1, 0, 0, 0, 4833, 4834, 1, 0, 0, 0, 4834, 399, 1, 0, 0, 0, 4835, 4836, 5, 694, 0, 0, 4836, 4837, 5, 378, 0, 0, 4837, 4843, 3, 694, 347, 0, 4838, 4841, 5, 654, 0, 0, 4839, 4840, 5, 65, 0, 0, 4840, 4842, 5, 489, 0, 0, 4841, 4839, 1, 0, 0, 0, 4841, 4842, 1, 0, 0, 0, 4842, 4844, 1, 0, 0, 0, 4843, 4838, 1, 0, 0, 0, 4843, 4844, 1, 0, 0, 0, 4844, 401, 1, 0, 0, 0, 4845, 4846, 5, 694, 0, 0, 4846, 4847, 5, 540, 0, 0, 4847, 4848, 3, 694, 347, 0, 4848, 403, 1, 0, 0, 0, 4849, 4850, 5, 694, 0, 0, 4850, 4851, 5, 341, 0, 0, 4851, 4854, 3, 694, 347, 0, 4852, 4853, 5, 513, 0, 0, 4853, 4855, 5, 533, 0, 0, 4854, 4852, 1, 0, 0, 0, 4854, 4855, 1, 0, 0, 0, 4855, 405, 1, 0, 0, 0, 4856, 4857, 5, 694, 0, 0, 4857, 4858, 5, 583, 0, 0, 4858, 4859, 3, 694, 347, 0, 4859, 407, 1, 0, 0, 0, 4860, 4861, 5, 694, 0, 0, 4861, 4864, 5, 551, 0, 0, 4862, 4863, 5, 33, 0, 0, 4863, 4865, 3, 694, 347, 0, 4864, 4862, 1, 0, 0, 0, 4864, 4865, 1, 0, 0, 0, 4865, 409, 1, 0, 0, 0, 4866, 4867, 5, 540, 0, 0, 4867, 4868, 3, 702, 351, 0, 4868, 4871, 5, 68, 0, 0, 4869, 4872, 5, 882, 0, 0, 4870, 4872, 5, 892, 0, 0, 4871, 4869, 1, 0, 0, 0, 4871, 4870, 1, 0, 0, 0, 4872, 411, 1, 0, 0, 0, 4873, 4874, 5, 717, 0, 0, 4874, 4877, 3, 702, 351, 0, 4875, 4876, 5, 188, 0, 0, 4876, 4878, 3, 748, 374, 0, 4877, 4875, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 413, 1, 0, 0, 0, 4879, 4880, 7, 77, 0, 0, 4880, 4881, 5, 540, 0, 0, 4881, 4882, 3, 702, 351, 0, 4882, 415, 1, 0, 0, 0, 4883, 4886, 3, 418, 209, 0, 4884, 4886, 3, 4, 2, 0, 4885, 4883, 1, 0, 0, 0, 4885, 4884, 1, 0, 0, 0, 4886, 417, 1, 0, 0, 0, 4887, 4888, 3, 702, 351, 0, 4888, 4889, 5, 878, 0, 0, 4889, 4891, 1, 0, 0, 0, 4890, 4887, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4892, 1, 0, 0, 0, 4892, 4898, 5, 317, 0, 0, 4893, 4894, 3, 438, 219, 0, 4894, 4895, 5, 869, 0, 0, 4895, 4897, 1, 0, 0, 0, 4896, 4893, 1, 0, 0, 0, 4897, 4900, 1, 0, 0, 0, 4898, 4896, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4906, 1, 0, 0, 0, 4900, 4898, 1, 0, 0, 0, 4901, 4902, 3, 440, 220, 0, 4902, 4903, 5, 869, 0, 0, 4903, 4905, 1, 0, 0, 0, 4904, 4901, 1, 0, 0, 0, 4905, 4908, 1, 0, 0, 0, 4906, 4904, 1, 0, 0, 0, 4906, 4907, 1, 0, 0, 0, 4907, 4914, 1, 0, 0, 0, 4908, 4906, 1, 0, 0, 0, 4909, 4910, 3, 442, 221, 0, 4910, 4911, 5, 869, 0, 0, 4911, 4913, 1, 0, 0, 0, 4912, 4909, 1, 0, 0, 0, 4913, 4916, 1, 0, 0, 0, 4914, 4912, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4922, 1, 0, 0, 0, 4916, 4914, 1, 0, 0, 0, 4917, 4918, 3, 444, 222, 0, 4918, 4919, 5, 869, 0, 0, 4919, 4921, 1, 0, 0, 0, 4920, 4917, 1, 0, 0, 0, 4921, 4924, 1, 0, 0, 0, 4922, 4920, 1, 0, 0, 0, 4922, 4923, 1, 0, 0, 0, 4923, 4928, 1, 0, 0, 0, 4924, 4922, 1, 0, 0, 0, 4925, 4927, 3, 448, 224, 0, 4926, 4925, 1, 0, 0, 0, 4927, 4930, 1, 0, 0, 0, 4928, 4926, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4931, 1, 0, 0, 0, 4930, 4928, 1, 0, 0, 0, 4931, 4933, 5, 378, 0, 0, 4932, 4934, 3, 702, 351, 0, 4933, 4932, 1, 0, 0, 0, 4933, 4934, 1, 0, 0, 0, 4934, 419, 1, 0, 0, 0, 4935, 4938, 5, 23, 0, 0, 4936, 4939, 3, 702, 351, 0, 4937, 4939, 3, 800, 400, 0, 4938, 4936, 1, 0, 0, 0, 4938, 4937, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 4941, 1, 0, 0, 0, 4940, 4942, 3, 450, 225, 0, 4941, 4940, 1, 0, 0, 0, 4942, 4943, 1, 0, 0, 0, 4943, 4941, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 4951, 1, 0, 0, 0, 4945, 4947, 5, 53, 0, 0, 4946, 4948, 3, 448, 224, 0, 4947, 4946, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 4947, 1, 0, 0, 0, 4949, 4950, 1, 0, 0, 0, 4950, 4952, 1, 0, 0, 0, 4951, 4945, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 4954, 5, 378, 0, 0, 4954, 4955, 5, 23, 0, 0, 4955, 421, 1, 0, 0, 0, 4956, 4957, 5, 78, 0, 0, 4957, 4958, 3, 800, 400, 0, 4958, 4960, 5, 175, 0, 0, 4959, 4961, 3, 448, 224, 0, 4960, 4959, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 4967, 1, 0, 0, 0, 4964, 4966, 3, 452, 226, 0, 4965, 4964, 1, 0, 0, 0, 4966, 4969, 1, 0, 0, 0, 4967, 4965, 1, 0, 0, 0, 4967, 4968, 1, 0, 0, 0, 4968, 4976, 1, 0, 0, 0, 4969, 4967, 1, 0, 0, 0, 4970, 4972, 5, 53, 0, 0, 4971, 4973, 3, 448, 224, 0, 4972, 4971, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 4972, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 4977, 1, 0, 0, 0, 4976, 4970, 1, 0, 0, 0, 4976, 4977, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 5, 378, 0, 0, 4979, 4980, 5, 78, 0, 0, 4980, 423, 1, 0, 0, 0, 4981, 4982, 5, 90, 0, 0, 4982, 4983, 3, 702, 351, 0, 4983, 425, 1, 0, 0, 0, 4984, 4985, 5, 97, 0, 0, 4985, 4986, 3, 702, 351, 0, 4986, 427, 1, 0, 0, 0, 4987, 4988, 3, 702, 351, 0, 4988, 4989, 5, 878, 0, 0, 4989, 4991, 1, 0, 0, 0, 4990, 4987, 1, 0, 0, 0, 4990, 4991, 1, 0, 0, 0, 4991, 4992, 1, 0, 0, 0, 4992, 4994, 5, 106, 0, 0, 4993, 4995, 3, 448, 224, 0, 4994, 4993, 1, 0, 0, 0, 4995, 4996, 1, 0, 0, 0, 4996, 4994, 1, 0, 0, 0, 4996, 4997, 1, 0, 0, 0, 4997, 4998, 1, 0, 0, 0, 4998, 4999, 5, 378, 0, 0, 4999, 5001, 5, 106, 0, 0, 5000, 5002, 3, 702, 351, 0, 5001, 5000, 1, 0, 0, 0, 5001, 5002, 1, 0, 0, 0, 5002, 429, 1, 0, 0, 0, 5003, 5004, 3, 702, 351, 0, 5004, 5005, 5, 878, 0, 0, 5005, 5007, 1, 0, 0, 0, 5006, 5003, 1, 0, 0, 0, 5006, 5007, 1, 0, 0, 0, 5007, 5008, 1, 0, 0, 0, 5008, 5010, 5, 142, 0, 0, 5009, 5011, 3, 448, 224, 0, 5010, 5009, 1, 0, 0, 0, 5011, 5012, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5014, 1, 0, 0, 0, 5014, 5015, 5, 676, 0, 0, 5015, 5016, 3, 800, 400, 0, 5016, 5017, 5, 378, 0, 0, 5017, 5019, 5, 142, 0, 0, 5018, 5020, 3, 702, 351, 0, 5019, 5018, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 431, 1, 0, 0, 0, 5021, 5022, 5, 148, 0, 0, 5022, 5023, 3, 800, 400, 0, 5023, 433, 1, 0, 0, 0, 5024, 5025, 3, 702, 351, 0, 5025, 5026, 5, 878, 0, 0, 5026, 5028, 1, 0, 0, 0, 5027, 5024, 1, 0, 0, 0, 5027, 5028, 1, 0, 0, 0, 5028, 5029, 1, 0, 0, 0, 5029, 5030, 5, 193, 0, 0, 5030, 5031, 3, 800, 400, 0, 5031, 5033, 5, 371, 0, 0, 5032, 5034, 3, 448, 224, 0, 5033, 5032, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5038, 5, 378, 0, 0, 5038, 5040, 5, 193, 0, 0, 5039, 5041, 3, 702, 351, 0, 5040, 5039, 1, 0, 0, 0, 5040, 5041, 1, 0, 0, 0, 5041, 435, 1, 0, 0, 0, 5042, 5043, 5, 334, 0, 0, 5043, 5058, 3, 702, 351, 0, 5044, 5049, 5, 64, 0, 0, 5045, 5047, 5, 501, 0, 0, 5046, 5045, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5050, 5, 68, 0, 0, 5049, 5046, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5052, 3, 702, 351, 0, 5052, 5053, 5, 88, 0, 0, 5053, 5054, 3, 700, 350, 0, 5054, 5058, 1, 0, 0, 0, 5055, 5056, 5, 516, 0, 0, 5056, 5058, 3, 702, 351, 0, 5057, 5042, 1, 0, 0, 0, 5057, 5044, 1, 0, 0, 0, 5057, 5055, 1, 0, 0, 0, 5058, 437, 1, 0, 0, 0, 5059, 5060, 5, 41, 0, 0, 5060, 5061, 3, 700, 350, 0, 5061, 5064, 3, 722, 361, 0, 5062, 5063, 5, 42, 0, 0, 5063, 5065, 3, 800, 400, 0, 5064, 5062, 1, 0, 0, 0, 5064, 5065, 1, 0, 0, 0, 5065, 439, 1, 0, 0, 0, 5066, 5067, 5, 41, 0, 0, 5067, 5068, 3, 702, 351, 0, 5068, 5069, 5, 30, 0, 0, 5069, 5076, 5, 65, 0, 0, 5070, 5077, 3, 708, 354, 0, 5071, 5073, 5, 164, 0, 0, 5072, 5074, 5, 682, 0, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5077, 5, 882, 0, 0, 5076, 5070, 1, 0, 0, 0, 5076, 5071, 1, 0, 0, 0, 5077, 441, 1, 0, 0, 0, 5078, 5079, 5, 41, 0, 0, 5079, 5080, 3, 702, 351, 0, 5080, 5081, 5, 38, 0, 0, 5081, 5082, 5, 65, 0, 0, 5082, 5083, 3, 204, 102, 0, 5083, 443, 1, 0, 0, 0, 5084, 5085, 5, 41, 0, 0, 5085, 5086, 7, 78, 0, 0, 5086, 5087, 5, 417, 0, 0, 5087, 5088, 5, 65, 0, 0, 5088, 5093, 3, 446, 223, 0, 5089, 5090, 5, 868, 0, 0, 5090, 5092, 3, 446, 223, 0, 5091, 5089, 1, 0, 0, 0, 5092, 5095, 1, 0, 0, 0, 5093, 5091, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5096, 1, 0, 0, 0, 5095, 5093, 1, 0, 0, 0, 5096, 5097, 3, 416, 208, 0, 5097, 445, 1, 0, 0, 0, 5098, 5110, 3, 708, 354, 0, 5099, 5101, 5, 164, 0, 0, 5100, 5102, 5, 682, 0, 0, 5101, 5100, 1, 0, 0, 0, 5101, 5102, 1, 0, 0, 0, 5102, 5103, 1, 0, 0, 0, 5103, 5110, 5, 882, 0, 0, 5104, 5110, 3, 702, 351, 0, 5105, 5110, 5, 165, 0, 0, 5106, 5107, 5, 114, 0, 0, 5107, 5110, 5, 407, 0, 0, 5108, 5110, 5, 163, 0, 0, 5109, 5098, 1, 0, 0, 0, 5109, 5099, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, 5109, 5105, 1, 0, 0, 0, 5109, 5106, 1, 0, 0, 0, 5109, 5108, 1, 0, 0, 0, 5110, 447, 1, 0, 0, 0, 5111, 5114, 3, 18, 9, 0, 5112, 5114, 3, 4, 2, 0, 5113, 5111, 1, 0, 0, 0, 5113, 5112, 1, 0, 0, 0, 5114, 5115, 1, 0, 0, 0, 5115, 5116, 5, 869, 0, 0, 5116, 449, 1, 0, 0, 0, 5117, 5120, 5, 191, 0, 0, 5118, 5121, 3, 720, 360, 0, 5119, 5121, 3, 800, 400, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5119, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5124, 5, 175, 0, 0, 5123, 5125, 3, 448, 224, 0, 5124, 5123, 1, 0, 0, 0, 5125, 5126, 1, 0, 0, 0, 5126, 5124, 1, 0, 0, 0, 5126, 5127, 1, 0, 0, 0, 5127, 451, 1, 0, 0, 0, 5128, 5129, 5, 54, 0, 0, 5129, 5130, 3, 800, 400, 0, 5130, 5132, 5, 175, 0, 0, 5131, 5133, 3, 448, 224, 0, 5132, 5131, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5132, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 453, 1, 0, 0, 0, 5136, 5137, 5, 8, 0, 0, 5137, 5139, 5, 678, 0, 0, 5138, 5140, 3, 754, 377, 0, 5139, 5138, 1, 0, 0, 0, 5139, 5140, 1, 0, 0, 0, 5140, 5197, 1, 0, 0, 0, 5141, 5146, 3, 486, 243, 0, 5142, 5143, 5, 868, 0, 0, 5143, 5145, 3, 486, 243, 0, 5144, 5142, 1, 0, 0, 0, 5145, 5148, 1, 0, 0, 0, 5146, 5144, 1, 0, 0, 0, 5146, 5147, 1, 0, 0, 0, 5147, 5198, 1, 0, 0, 0, 5148, 5146, 1, 0, 0, 0, 5149, 5154, 3, 488, 244, 0, 5150, 5151, 5, 868, 0, 0, 5151, 5153, 3, 488, 244, 0, 5152, 5150, 1, 0, 0, 0, 5153, 5156, 1, 0, 0, 0, 5154, 5152, 1, 0, 0, 0, 5154, 5155, 1, 0, 0, 0, 5155, 5171, 1, 0, 0, 0, 5156, 5154, 1, 0, 0, 0, 5157, 5169, 5, 144, 0, 0, 5158, 5170, 5, 505, 0, 0, 5159, 5166, 3, 500, 250, 0, 5160, 5162, 5, 11, 0, 0, 5161, 5160, 1, 0, 0, 0, 5161, 5162, 1, 0, 0, 0, 5162, 5163, 1, 0, 0, 0, 5163, 5165, 3, 500, 250, 0, 5164, 5161, 1, 0, 0, 0, 5165, 5168, 1, 0, 0, 0, 5166, 5164, 1, 0, 0, 0, 5166, 5167, 1, 0, 0, 0, 5167, 5170, 1, 0, 0, 0, 5168, 5166, 1, 0, 0, 0, 5169, 5158, 1, 0, 0, 0, 5169, 5159, 1, 0, 0, 0, 5170, 5172, 1, 0, 0, 0, 5171, 5157, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 5179, 1, 0, 0, 0, 5173, 5175, 5, 194, 0, 0, 5174, 5176, 3, 502, 251, 0, 5175, 5174, 1, 0, 0, 0, 5176, 5177, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 5180, 1, 0, 0, 0, 5179, 5173, 1, 0, 0, 0, 5179, 5180, 1, 0, 0, 0, 5180, 5185, 1, 0, 0, 0, 5181, 5184, 3, 504, 252, 0, 5182, 5184, 3, 506, 253, 0, 5183, 5181, 1, 0, 0, 0, 5183, 5182, 1, 0, 0, 0, 5184, 5187, 1, 0, 0, 0, 5185, 5183, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5190, 1, 0, 0, 0, 5187, 5185, 1, 0, 0, 0, 5188, 5189, 7, 79, 0, 0, 5189, 5191, 5, 882, 0, 0, 5190, 5188, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5198, 1, 0, 0, 0, 5192, 5193, 3, 652, 326, 0, 5193, 5194, 5, 42, 0, 0, 5194, 5195, 5, 582, 0, 0, 5195, 5196, 3, 462, 231, 0, 5196, 5198, 1, 0, 0, 0, 5197, 5141, 1, 0, 0, 0, 5197, 5149, 1, 0, 0, 0, 5197, 5192, 1, 0, 0, 0, 5198, 455, 1, 0, 0, 0, 5199, 5200, 5, 34, 0, 0, 5200, 5202, 5, 678, 0, 0, 5201, 5203, 3, 756, 378, 0, 5202, 5201, 1, 0, 0, 0, 5202, 5203, 1, 0, 0, 0, 5203, 5204, 1, 0, 0, 0, 5204, 5206, 3, 680, 340, 0, 5205, 5207, 3, 490, 245, 0, 5206, 5205, 1, 0, 0, 0, 5206, 5207, 1, 0, 0, 0, 5207, 5215, 1, 0, 0, 0, 5208, 5209, 5, 868, 0, 0, 5209, 5211, 3, 680, 340, 0, 5210, 5212, 3, 490, 245, 0, 5211, 5210, 1, 0, 0, 0, 5211, 5212, 1, 0, 0, 0, 5212, 5214, 1, 0, 0, 0, 5213, 5208, 1, 0, 0, 0, 5214, 5217, 1, 0, 0, 0, 5215, 5213, 1, 0, 0, 0, 5215, 5216, 1, 0, 0, 0, 5216, 5221, 1, 0, 0, 0, 5217, 5215, 1, 0, 0, 0, 5218, 5219, 5, 42, 0, 0, 5219, 5220, 5, 582, 0, 0, 5220, 5222, 3, 462, 231, 0, 5221, 5218, 1, 0, 0, 0, 5221, 5222, 1, 0, 0, 0, 5222, 5237, 1, 0, 0, 0, 5223, 5235, 5, 144, 0, 0, 5224, 5236, 5, 505, 0, 0, 5225, 5232, 3, 500, 250, 0, 5226, 5228, 5, 11, 0, 0, 5227, 5226, 1, 0, 0, 0, 5227, 5228, 1, 0, 0, 0, 5228, 5229, 1, 0, 0, 0, 5229, 5231, 3, 500, 250, 0, 5230, 5227, 1, 0, 0, 0, 5231, 5234, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 5236, 1, 0, 0, 0, 5234, 5232, 1, 0, 0, 0, 5235, 5224, 1, 0, 0, 0, 5235, 5225, 1, 0, 0, 0, 5236, 5238, 1, 0, 0, 0, 5237, 5223, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 5245, 1, 0, 0, 0, 5239, 5241, 5, 194, 0, 0, 5240, 5242, 3, 502, 251, 0, 5241, 5240, 1, 0, 0, 0, 5242, 5243, 1, 0, 0, 0, 5243, 5241, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 5246, 1, 0, 0, 0, 5245, 5239, 1, 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5251, 1, 0, 0, 0, 5247, 5250, 3, 504, 252, 0, 5248, 5250, 3, 506, 253, 0, 5249, 5247, 1, 0, 0, 0, 5249, 5248, 1, 0, 0, 0, 5250, 5253, 1, 0, 0, 0, 5251, 5249, 1, 0, 0, 0, 5251, 5252, 1, 0, 0, 0, 5252, 5256, 1, 0, 0, 0, 5253, 5251, 1, 0, 0, 0, 5254, 5255, 7, 79, 0, 0, 5255, 5257, 5, 882, 0, 0, 5256, 5254, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 457, 1, 0, 0, 0, 5258, 5259, 5, 51, 0, 0, 5259, 5261, 5, 678, 0, 0, 5260, 5262, 3, 754, 377, 0, 5261, 5260, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5268, 3, 680, 340, 0, 5264, 5265, 5, 868, 0, 0, 5265, 5267, 3, 680, 340, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5270, 1, 0, 0, 0, 5268, 5266, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 459, 1, 0, 0, 0, 5270, 5268, 1, 0, 0, 0, 5271, 5272, 5, 73, 0, 0, 5272, 5277, 3, 514, 257, 0, 5273, 5274, 5, 868, 0, 0, 5274, 5276, 3, 514, 257, 0, 5275, 5273, 1, 0, 0, 0, 5276, 5279, 1, 0, 0, 0, 5277, 5275, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5280, 1, 0, 0, 0, 5279, 5277, 1, 0, 0, 0, 5280, 5282, 5, 119, 0, 0, 5281, 5283, 3, 482, 241, 0, 5282, 5281, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5284, 1, 0, 0, 0, 5284, 5285, 3, 518, 259, 0, 5285, 5295, 5, 176, 0, 0, 5286, 5291, 3, 494, 247, 0, 5287, 5288, 5, 868, 0, 0, 5288, 5290, 3, 494, 247, 0, 5289, 5287, 1, 0, 0, 0, 5290, 5293, 1, 0, 0, 0, 5291, 5289, 1, 0, 0, 0, 5291, 5292, 1, 0, 0, 0, 5292, 5296, 1, 0, 0, 0, 5293, 5291, 1, 0, 0, 0, 5294, 5296, 3, 650, 325, 0, 5295, 5286, 1, 0, 0, 0, 5295, 5294, 1, 0, 0, 0, 5296, 5311, 1, 0, 0, 0, 5297, 5309, 5, 144, 0, 0, 5298, 5310, 5, 505, 0, 0, 5299, 5306, 3, 500, 250, 0, 5300, 5302, 5, 11, 0, 0, 5301, 5300, 1, 0, 0, 0, 5301, 5302, 1, 0, 0, 0, 5302, 5303, 1, 0, 0, 0, 5303, 5305, 3, 500, 250, 0, 5304, 5301, 1, 0, 0, 0, 5305, 5308, 1, 0, 0, 0, 5306, 5304, 1, 0, 0, 0, 5306, 5307, 1, 0, 0, 0, 5307, 5310, 1, 0, 0, 0, 5308, 5306, 1, 0, 0, 0, 5309, 5298, 1, 0, 0, 0, 5309, 5299, 1, 0, 0, 0, 5310, 5312, 1, 0, 0, 0, 5311, 5297, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5322, 1, 0, 0, 0, 5313, 5319, 5, 194, 0, 0, 5314, 5315, 5, 73, 0, 0, 5315, 5318, 5, 121, 0, 0, 5316, 5318, 3, 502, 251, 0, 5317, 5314, 1, 0, 0, 0, 5317, 5316, 1, 0, 0, 0, 5318, 5321, 1, 0, 0, 0, 5319, 5317, 1, 0, 0, 0, 5319, 5320, 1, 0, 0, 0, 5320, 5323, 1, 0, 0, 0, 5321, 5319, 1, 0, 0, 0, 5322, 5313, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5331, 1, 0, 0, 0, 5324, 5325, 5, 13, 0, 0, 5325, 5329, 3, 680, 340, 0, 5326, 5327, 5, 194, 0, 0, 5327, 5328, 5, 582, 0, 0, 5328, 5330, 3, 462, 231, 0, 5329, 5326, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5332, 1, 0, 0, 0, 5331, 5324, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 5361, 1, 0, 0, 0, 5333, 5336, 5, 73, 0, 0, 5334, 5335, 5, 547, 0, 0, 5335, 5337, 5, 119, 0, 0, 5336, 5334, 1, 0, 0, 0, 5336, 5337, 1, 0, 0, 0, 5337, 5338, 1, 0, 0, 0, 5338, 5343, 3, 652, 326, 0, 5339, 5340, 5, 868, 0, 0, 5340, 5342, 3, 652, 326, 0, 5341, 5339, 1, 0, 0, 0, 5342, 5345, 1, 0, 0, 0, 5343, 5341, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5346, 1, 0, 0, 0, 5345, 5343, 1, 0, 0, 0, 5346, 5347, 5, 176, 0, 0, 5347, 5352, 3, 652, 326, 0, 5348, 5349, 5, 868, 0, 0, 5349, 5351, 3, 652, 326, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5354, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5358, 1, 0, 0, 0, 5354, 5352, 1, 0, 0, 0, 5355, 5356, 5, 194, 0, 0, 5356, 5357, 5, 704, 0, 0, 5357, 5359, 5, 121, 0, 0, 5358, 5355, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5361, 1, 0, 0, 0, 5360, 5271, 1, 0, 0, 0, 5360, 5333, 1, 0, 0, 0, 5361, 461, 1, 0, 0, 0, 5362, 5371, 5, 42, 0, 0, 5363, 5371, 5, 505, 0, 0, 5364, 5367, 5, 7, 0, 0, 5365, 5366, 5, 59, 0, 0, 5366, 5368, 3, 650, 325, 0, 5367, 5365, 1, 0, 0, 0, 5367, 5368, 1, 0, 0, 0, 5368, 5371, 1, 0, 0, 0, 5369, 5371, 3, 650, 325, 0, 5370, 5362, 1, 0, 0, 0, 5370, 5363, 1, 0, 0, 0, 5370, 5364, 1, 0, 0, 0, 5370, 5369, 1, 0, 0, 0, 5371, 463, 1, 0, 0, 0, 5372, 5373, 5, 73, 0, 0, 5373, 5374, 5, 547, 0, 0, 5374, 5375, 5, 119, 0, 0, 5375, 5376, 3, 680, 340, 0, 5376, 5377, 5, 176, 0, 0, 5377, 5382, 3, 680, 340, 0, 5378, 5379, 5, 868, 0, 0, 5379, 5381, 3, 680, 340, 0, 5380, 5378, 1, 0, 0, 0, 5381, 5384, 1, 0, 0, 0, 5382, 5380, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 5388, 1, 0, 0, 0, 5384, 5382, 1, 0, 0, 0, 5385, 5386, 5, 194, 0, 0, 5386, 5387, 5, 73, 0, 0, 5387, 5389, 5, 121, 0, 0, 5388, 5385, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 465, 1, 0, 0, 0, 5390, 5391, 5, 8, 0, 0, 5391, 5392, 5, 739, 0, 0, 5392, 5393, 5, 74, 0, 0, 5393, 5399, 3, 642, 321, 0, 5394, 5396, 5, 190, 0, 0, 5395, 5397, 5, 857, 0, 0, 5396, 5395, 1, 0, 0, 0, 5396, 5397, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5400, 3, 474, 237, 0, 5399, 5394, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5406, 1, 0, 0, 0, 5401, 5403, 5, 837, 0, 0, 5402, 5404, 5, 857, 0, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5407, 3, 708, 354, 0, 5406, 5401, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5412, 1, 0, 0, 0, 5408, 5410, 7, 38, 0, 0, 5409, 5411, 5, 66, 0, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5413, 1, 0, 0, 0, 5412, 5408, 1, 0, 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 467, 1, 0, 0, 0, 5414, 5415, 5, 34, 0, 0, 5415, 5416, 5, 739, 0, 0, 5416, 5417, 5, 74, 0, 0, 5417, 5418, 3, 640, 320, 0, 5418, 5419, 5, 839, 0, 0, 5419, 5420, 5, 857, 0, 0, 5420, 5426, 7, 80, 0, 0, 5421, 5423, 5, 190, 0, 0, 5422, 5424, 5, 857, 0, 0, 5423, 5422, 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5427, 3, 474, 237, 0, 5426, 5421, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5433, 1, 0, 0, 0, 5428, 5430, 5, 837, 0, 0, 5429, 5431, 5, 857, 0, 0, 5430, 5429, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5434, 3, 708, 354, 0, 5433, 5428, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5436, 1, 0, 0, 0, 5435, 5437, 7, 38, 0, 0, 5436, 5435, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 469, 1, 0, 0, 0, 5438, 5439, 5, 51, 0, 0, 5439, 5440, 5, 739, 0, 0, 5440, 5441, 5, 74, 0, 0, 5441, 5443, 3, 642, 321, 0, 5442, 5444, 5, 66, 0, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 471, 1, 0, 0, 0, 5445, 5446, 5, 155, 0, 0, 5446, 5447, 5, 739, 0, 0, 5447, 5448, 5, 74, 0, 0, 5448, 5458, 3, 642, 321, 0, 5449, 5450, 5, 65, 0, 0, 5450, 5455, 3, 708, 354, 0, 5451, 5452, 5, 868, 0, 0, 5452, 5454, 3, 708, 354, 0, 5453, 5451, 1, 0, 0, 0, 5454, 5457, 1, 0, 0, 0, 5455, 5453, 1, 0, 0, 0, 5455, 5456, 1, 0, 0, 0, 5456, 5459, 1, 0, 0, 0, 5457, 5455, 1, 0, 0, 0, 5458, 5449, 1, 0, 0, 0, 5458, 5459, 1, 0, 0, 0, 5459, 473, 1, 0, 0, 0, 5460, 5466, 3, 708, 354, 0, 5461, 5462, 3, 708, 354, 0, 5462, 5463, 5, 854, 0, 0, 5463, 5464, 3, 708, 354, 0, 5464, 5466, 1, 0, 0, 0, 5465, 5460, 1, 0, 0, 0, 5465, 5461, 1, 0, 0, 0, 5466, 5471, 1, 0, 0, 0, 5467, 5468, 5, 868, 0, 0, 5468, 5470, 3, 474, 237, 0, 5469, 5467, 1, 0, 0, 0, 5470, 5473, 1, 0, 0, 0, 5471, 5469, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 475, 1, 0, 0, 0, 5473, 5471, 1, 0, 0, 0, 5474, 5475, 5, 141, 0, 0, 5475, 5476, 5, 678, 0, 0, 5476, 5481, 3, 520, 260, 0, 5477, 5478, 5, 868, 0, 0, 5478, 5480, 3, 520, 260, 0, 5479, 5477, 1, 0, 0, 0, 5480, 5483, 1, 0, 0, 0, 5481, 5479, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 477, 1, 0, 0, 0, 5483, 5481, 1, 0, 0, 0, 5484, 5486, 5, 149, 0, 0, 5485, 5487, 3, 754, 377, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5493, 3, 514, 257, 0, 5489, 5490, 5, 868, 0, 0, 5490, 5492, 3, 514, 257, 0, 5491, 5489, 1, 0, 0, 0, 5492, 5495, 1, 0, 0, 0, 5493, 5491, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 5496, 1, 0, 0, 0, 5495, 5493, 1, 0, 0, 0, 5496, 5498, 5, 119, 0, 0, 5497, 5499, 3, 482, 241, 0, 5498, 5497, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5501, 3, 518, 259, 0, 5501, 5502, 5, 68, 0, 0, 5502, 5504, 3, 650, 325, 0, 5503, 5505, 3, 480, 240, 0, 5504, 5503, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5537, 1, 0, 0, 0, 5506, 5508, 5, 149, 0, 0, 5507, 5509, 3, 754, 377, 0, 5508, 5507, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 5512, 5, 7, 0, 0, 5511, 5513, 5, 734, 0, 0, 5512, 5511, 1, 0, 0, 0, 5512, 5513, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5515, 5, 868, 0, 0, 5515, 5516, 5, 73, 0, 0, 5516, 5517, 5, 121, 0, 0, 5517, 5518, 5, 68, 0, 0, 5518, 5520, 3, 650, 325, 0, 5519, 5521, 3, 480, 240, 0, 5520, 5519, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 5537, 1, 0, 0, 0, 5522, 5524, 5, 149, 0, 0, 5523, 5525, 3, 754, 377, 0, 5524, 5523, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5528, 1, 0, 0, 0, 5526, 5527, 5, 547, 0, 0, 5527, 5529, 5, 119, 0, 0, 5528, 5526, 1, 0, 0, 0, 5528, 5529, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 5531, 3, 650, 325, 0, 5531, 5532, 5, 68, 0, 0, 5532, 5534, 3, 650, 325, 0, 5533, 5535, 3, 480, 240, 0, 5534, 5533, 1, 0, 0, 0, 5534, 5535, 1, 0, 0, 0, 5535, 5537, 1, 0, 0, 0, 5536, 5484, 1, 0, 0, 0, 5536, 5506, 1, 0, 0, 0, 5536, 5522, 1, 0, 0, 0, 5537, 479, 1, 0, 0, 0, 5538, 5539, 5, 79, 0, 0, 5539, 5540, 5, 674, 0, 0, 5540, 5541, 5, 678, 0, 0, 5541, 481, 1, 0, 0, 0, 5542, 5543, 7, 81, 0, 0, 5543, 483, 1, 0, 0, 0, 5544, 5545, 5, 155, 0, 0, 5545, 5548, 5, 529, 0, 0, 5546, 5547, 5, 65, 0, 0, 5547, 5549, 3, 680, 340, 0, 5548, 5546, 1, 0, 0, 0, 5548, 5549, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5553, 5, 857, 0, 0, 5551, 5554, 3, 794, 397, 0, 5552, 5554, 5, 882, 0, 0, 5553, 5551, 1, 0, 0, 0, 5553, 5552, 1, 0, 0, 0, 5554, 5577, 1, 0, 0, 0, 5555, 5556, 5, 155, 0, 0, 5556, 5559, 5, 529, 0, 0, 5557, 5558, 5, 65, 0, 0, 5558, 5560, 3, 680, 340, 0, 5559, 5557, 1, 0, 0, 0, 5559, 5560, 1, 0, 0, 0, 5560, 5565, 1, 0, 0, 0, 5561, 5562, 5, 176, 0, 0, 5562, 5566, 5, 829, 0, 0, 5563, 5564, 5, 857, 0, 0, 5564, 5566, 5, 882, 0, 0, 5565, 5561, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5566, 5569, 1, 0, 0, 0, 5567, 5568, 5, 143, 0, 0, 5568, 5570, 5, 882, 0, 0, 5569, 5567, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 5574, 1, 0, 0, 0, 5571, 5572, 5, 147, 0, 0, 5572, 5573, 5, 36, 0, 0, 5573, 5575, 5, 529, 0, 0, 5574, 5571, 1, 0, 0, 0, 5574, 5575, 1, 0, 0, 0, 5575, 5577, 1, 0, 0, 0, 5576, 5544, 1, 0, 0, 0, 5576, 5555, 1, 0, 0, 0, 5577, 485, 1, 0, 0, 0, 5578, 5579, 3, 680, 340, 0, 5579, 5580, 3, 504, 252, 0, 5580, 487, 1, 0, 0, 0, 5581, 5607, 3, 680, 340, 0, 5582, 5583, 5, 423, 0, 0, 5583, 5584, 5, 20, 0, 0, 5584, 5585, 5, 882, 0, 0, 5585, 5608, 3, 496, 248, 0, 5586, 5587, 5, 423, 0, 0, 5587, 5588, 5, 20, 0, 0, 5588, 5589, 5, 829, 0, 0, 5589, 5590, 5, 529, 0, 0, 5590, 5608, 3, 496, 248, 0, 5591, 5592, 5, 423, 0, 0, 5592, 5593, 5, 194, 0, 0, 5593, 5608, 3, 498, 249, 0, 5594, 5595, 5, 369, 0, 0, 5595, 5596, 5, 511, 0, 0, 5596, 5608, 5, 529, 0, 0, 5597, 5598, 7, 82, 0, 0, 5598, 5600, 3, 512, 256, 0, 5599, 5601, 3, 508, 254, 0, 5600, 5599, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5603, 1, 0, 0, 0, 5602, 5597, 1, 0, 0, 0, 5603, 5604, 1, 0, 0, 0, 5604, 5602, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5608, 1, 0, 0, 0, 5606, 5608, 3, 510, 255, 0, 5607, 5582, 1, 0, 0, 0, 5607, 5586, 1, 0, 0, 0, 5607, 5591, 1, 0, 0, 0, 5607, 5594, 1, 0, 0, 0, 5607, 5602, 1, 0, 0, 0, 5607, 5606, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 489, 1, 0, 0, 0, 5609, 5610, 5, 423, 0, 0, 5610, 5616, 5, 20, 0, 0, 5611, 5617, 5, 882, 0, 0, 5612, 5613, 5, 829, 0, 0, 5613, 5617, 5, 529, 0, 0, 5614, 5615, 5, 529, 0, 0, 5615, 5617, 5, 882, 0, 0, 5616, 5611, 1, 0, 0, 0, 5616, 5612, 1, 0, 0, 0, 5616, 5614, 1, 0, 0, 0, 5617, 5620, 1, 0, 0, 0, 5618, 5619, 5, 11, 0, 0, 5619, 5621, 3, 490, 245, 0, 5620, 5618, 1, 0, 0, 0, 5620, 5621, 1, 0, 0, 0, 5621, 5646, 1, 0, 0, 0, 5622, 5623, 5, 423, 0, 0, 5623, 5624, 5, 194, 0, 0, 5624, 5633, 3, 702, 351, 0, 5625, 5629, 5, 20, 0, 0, 5626, 5630, 5, 882, 0, 0, 5627, 5628, 5, 829, 0, 0, 5628, 5630, 5, 529, 0, 0, 5629, 5626, 1, 0, 0, 0, 5629, 5627, 1, 0, 0, 0, 5630, 5634, 1, 0, 0, 0, 5631, 5632, 5, 13, 0, 0, 5632, 5634, 5, 882, 0, 0, 5633, 5625, 1, 0, 0, 0, 5633, 5631, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5637, 1, 0, 0, 0, 5635, 5636, 5, 11, 0, 0, 5636, 5638, 3, 490, 245, 0, 5637, 5635, 1, 0, 0, 0, 5637, 5638, 1, 0, 0, 0, 5638, 5646, 1, 0, 0, 0, 5639, 5640, 5, 423, 0, 0, 5640, 5641, 5, 194, 0, 0, 5641, 5643, 3, 702, 351, 0, 5642, 5644, 3, 492, 246, 0, 5643, 5642, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5646, 1, 0, 0, 0, 5645, 5609, 1, 0, 0, 0, 5645, 5622, 1, 0, 0, 0, 5645, 5639, 1, 0, 0, 0, 5646, 491, 1, 0, 0, 0, 5647, 5648, 5, 427, 0, 0, 5648, 5649, 5, 708, 0, 0, 5649, 5650, 5, 423, 0, 0, 5650, 5654, 5, 20, 0, 0, 5651, 5652, 5, 829, 0, 0, 5652, 5655, 5, 529, 0, 0, 5653, 5655, 5, 882, 0, 0, 5654, 5651, 1, 0, 0, 0, 5654, 5653, 1, 0, 0, 0, 5655, 5665, 1, 0, 0, 0, 5656, 5657, 5, 427, 0, 0, 5657, 5658, 5, 708, 0, 0, 5658, 5659, 5, 423, 0, 0, 5659, 5660, 5, 194, 0, 0, 5660, 5661, 3, 702, 351, 0, 5661, 5662, 5, 13, 0, 0, 5662, 5663, 5, 882, 0, 0, 5663, 5665, 1, 0, 0, 0, 5664, 5647, 1, 0, 0, 0, 5664, 5656, 1, 0, 0, 0, 5665, 493, 1, 0, 0, 0, 5666, 5667, 3, 680, 340, 0, 5667, 5668, 5, 423, 0, 0, 5668, 5669, 5, 20, 0, 0, 5669, 5670, 5, 529, 0, 0, 5670, 5671, 5, 882, 0, 0, 5671, 5692, 1, 0, 0, 0, 5672, 5673, 3, 680, 340, 0, 5673, 5674, 5, 423, 0, 0, 5674, 5675, 5, 20, 0, 0, 5675, 5676, 5, 829, 0, 0, 5676, 5677, 5, 529, 0, 0, 5677, 5678, 3, 496, 248, 0, 5678, 5692, 1, 0, 0, 0, 5679, 5680, 3, 680, 340, 0, 5680, 5681, 5, 423, 0, 0, 5681, 5682, 5, 20, 0, 0, 5682, 5683, 5, 882, 0, 0, 5683, 5684, 3, 496, 248, 0, 5684, 5692, 1, 0, 0, 0, 5685, 5686, 3, 680, 340, 0, 5686, 5687, 5, 423, 0, 0, 5687, 5688, 5, 194, 0, 0, 5688, 5689, 3, 498, 249, 0, 5689, 5692, 1, 0, 0, 0, 5690, 5692, 3, 680, 340, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5672, 1, 0, 0, 0, 5691, 5679, 1, 0, 0, 0, 5691, 5685, 1, 0, 0, 0, 5691, 5690, 1, 0, 0, 0, 5692, 495, 1, 0, 0, 0, 5693, 5694, 5, 143, 0, 0, 5694, 5696, 5, 882, 0, 0, 5695, 5693, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5700, 1, 0, 0, 0, 5697, 5698, 5, 147, 0, 0, 5698, 5699, 5, 36, 0, 0, 5699, 5701, 5, 529, 0, 0, 5700, 5697, 1, 0, 0, 0, 5700, 5701, 1, 0, 0, 0, 5701, 497, 1, 0, 0, 0, 5702, 5710, 3, 702, 351, 0, 5703, 5707, 7, 83, 0, 0, 5704, 5708, 5, 882, 0, 0, 5705, 5706, 5, 829, 0, 0, 5706, 5708, 5, 529, 0, 0, 5707, 5704, 1, 0, 0, 0, 5707, 5705, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 5711, 3, 496, 248, 0, 5710, 5703, 1, 0, 0, 0, 5710, 5711, 1, 0, 0, 0, 5711, 5717, 1, 0, 0, 0, 5712, 5713, 3, 702, 351, 0, 5713, 5714, 5, 188, 0, 0, 5714, 5715, 3, 794, 397, 0, 5715, 5717, 1, 0, 0, 0, 5716, 5702, 1, 0, 0, 0, 5716, 5712, 1, 0, 0, 0, 5717, 499, 1, 0, 0, 0, 5718, 5727, 5, 169, 0, 0, 5719, 5727, 5, 693, 0, 0, 5720, 5721, 5, 331, 0, 0, 5721, 5727, 5, 882, 0, 0, 5722, 5723, 5, 441, 0, 0, 5723, 5727, 5, 882, 0, 0, 5724, 5725, 5, 651, 0, 0, 5725, 5727, 5, 882, 0, 0, 5726, 5718, 1, 0, 0, 0, 5726, 5719, 1, 0, 0, 0, 5726, 5720, 1, 0, 0, 0, 5726, 5722, 1, 0, 0, 0, 5726, 5724, 1, 0, 0, 0, 5727, 501, 1, 0, 0, 0, 5728, 5729, 5, 479, 0, 0, 5729, 5737, 3, 708, 354, 0, 5730, 5731, 5, 482, 0, 0, 5731, 5737, 3, 708, 354, 0, 5732, 5733, 5, 478, 0, 0, 5733, 5737, 3, 708, 354, 0, 5734, 5735, 5, 483, 0, 0, 5735, 5737, 3, 708, 354, 0, 5736, 5728, 1, 0, 0, 0, 5736, 5730, 1, 0, 0, 0, 5736, 5732, 1, 0, 0, 0, 5736, 5734, 1, 0, 0, 0, 5737, 503, 1, 0, 0, 0, 5738, 5739, 5, 529, 0, 0, 5739, 5746, 5, 390, 0, 0, 5740, 5747, 5, 42, 0, 0, 5741, 5747, 5, 500, 0, 0, 5742, 5743, 5, 87, 0, 0, 5743, 5744, 3, 708, 354, 0, 5744, 5745, 5, 698, 0, 0, 5745, 5747, 1, 0, 0, 0, 5746, 5740, 1, 0, 0, 0, 5746, 5741, 1, 0, 0, 0, 5746, 5742, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5777, 1, 0, 0, 0, 5748, 5749, 5, 529, 0, 0, 5749, 5752, 5, 420, 0, 0, 5750, 5753, 5, 42, 0, 0, 5751, 5753, 3, 708, 354, 0, 5752, 5750, 1, 0, 0, 0, 5752, 5751, 1, 0, 0, 0, 5753, 5777, 1, 0, 0, 0, 5754, 5755, 5, 529, 0, 0, 5755, 5756, 5, 581, 0, 0, 5756, 5761, 5, 87, 0, 0, 5757, 5762, 5, 42, 0, 0, 5758, 5759, 3, 708, 354, 0, 5759, 5760, 5, 698, 0, 0, 5760, 5762, 1, 0, 0, 0, 5761, 5757, 1, 0, 0, 0, 5761, 5758, 1, 0, 0, 0, 5762, 5777, 1, 0, 0, 0, 5763, 5764, 5, 529, 0, 0, 5764, 5765, 5, 144, 0, 0, 5765, 5767, 5, 36, 0, 0, 5766, 5768, 7, 84, 0, 0, 5767, 5766, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 5777, 1, 0, 0, 0, 5769, 5770, 5, 395, 0, 0, 5770, 5777, 3, 708, 354, 0, 5771, 5774, 5, 530, 0, 0, 5772, 5775, 3, 708, 354, 0, 5773, 5775, 5, 669, 0, 0, 5774, 5772, 1, 0, 0, 0, 5774, 5773, 1, 0, 0, 0, 5775, 5777, 1, 0, 0, 0, 5776, 5738, 1, 0, 0, 0, 5776, 5748, 1, 0, 0, 0, 5776, 5754, 1, 0, 0, 0, 5776, 5763, 1, 0, 0, 0, 5776, 5769, 1, 0, 0, 0, 5776, 5771, 1, 0, 0, 0, 5777, 505, 1, 0, 0, 0, 5778, 5779, 5, 304, 0, 0, 5779, 5780, 7, 85, 0, 0, 5780, 507, 1, 0, 0, 0, 5781, 5784, 5, 423, 0, 0, 5782, 5783, 5, 194, 0, 0, 5783, 5785, 3, 702, 351, 0, 5784, 5782, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 5794, 1, 0, 0, 0, 5786, 5790, 5, 20, 0, 0, 5787, 5791, 5, 882, 0, 0, 5788, 5789, 5, 829, 0, 0, 5789, 5791, 5, 529, 0, 0, 5790, 5787, 1, 0, 0, 0, 5790, 5788, 1, 0, 0, 0, 5791, 5795, 1, 0, 0, 0, 5792, 5793, 5, 13, 0, 0, 5793, 5795, 5, 882, 0, 0, 5794, 5786, 1, 0, 0, 0, 5794, 5792, 1, 0, 0, 0, 5795, 509, 1, 0, 0, 0, 5796, 5797, 3, 512, 256, 0, 5797, 5798, 5, 429, 0, 0, 5798, 5799, 5, 555, 0, 0, 5799, 5812, 1, 0, 0, 0, 5800, 5801, 3, 512, 256, 0, 5801, 5802, 5, 401, 0, 0, 5802, 5803, 5, 555, 0, 0, 5803, 5804, 5, 155, 0, 0, 5804, 5805, 5, 330, 0, 0, 5805, 5806, 5, 13, 0, 0, 5806, 5807, 5, 882, 0, 0, 5807, 5812, 1, 0, 0, 0, 5808, 5809, 3, 512, 256, 0, 5809, 5810, 5, 675, 0, 0, 5810, 5812, 1, 0, 0, 0, 5811, 5796, 1, 0, 0, 0, 5811, 5800, 1, 0, 0, 0, 5811, 5808, 1, 0, 0, 0, 5812, 511, 1, 0, 0, 0, 5813, 5814, 7, 86, 0, 0, 5814, 5815, 5, 394, 0, 0, 5815, 513, 1, 0, 0, 0, 5816, 5821, 3, 516, 258, 0, 5817, 5818, 5, 866, 0, 0, 5818, 5819, 3, 656, 328, 0, 5819, 5820, 5, 867, 0, 0, 5820, 5822, 1, 0, 0, 0, 5821, 5817, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 515, 1, 0, 0, 0, 5823, 5825, 5, 7, 0, 0, 5824, 5826, 5, 734, 0, 0, 5825, 5824, 1, 0, 0, 0, 5825, 5826, 1, 0, 0, 0, 5826, 5917, 1, 0, 0, 0, 5827, 5829, 5, 8, 0, 0, 5828, 5830, 5, 743, 0, 0, 5829, 5828, 1, 0, 0, 0, 5829, 5830, 1, 0, 0, 0, 5830, 5917, 1, 0, 0, 0, 5831, 5839, 5, 34, 0, 0, 5832, 5833, 5, 660, 0, 0, 5833, 5840, 5, 752, 0, 0, 5834, 5840, 5, 743, 0, 0, 5835, 5840, 5, 684, 0, 0, 5836, 5840, 5, 678, 0, 0, 5837, 5840, 5, 658, 0, 0, 5838, 5840, 5, 582, 0, 0, 5839, 5832, 1, 0, 0, 0, 5839, 5834, 1, 0, 0, 0, 5839, 5835, 1, 0, 0, 0, 5839, 5836, 1, 0, 0, 0, 5839, 5837, 1, 0, 0, 0, 5839, 5838, 1, 0, 0, 0, 5839, 5840, 1, 0, 0, 0, 5840, 5917, 1, 0, 0, 0, 5841, 5917, 5, 44, 0, 0, 5842, 5844, 5, 51, 0, 0, 5843, 5845, 5, 582, 0, 0, 5844, 5843, 1, 0, 0, 0, 5844, 5845, 1, 0, 0, 0, 5845, 5917, 1, 0, 0, 0, 5846, 5917, 5, 385, 0, 0, 5847, 5917, 5, 717, 0, 0, 5848, 5917, 5, 718, 0, 0, 5849, 5850, 5, 73, 0, 0, 5850, 5917, 5, 121, 0, 0, 5851, 5917, 5, 82, 0, 0, 5852, 5917, 5, 86, 0, 0, 5853, 5854, 5, 104, 0, 0, 5854, 5917, 5, 752, 0, 0, 5855, 5917, 5, 735, 0, 0, 5856, 5917, 5, 547, 0, 0, 5857, 5917, 5, 138, 0, 0, 5858, 5917, 5, 736, 0, 0, 5859, 5860, 5, 572, 0, 0, 5860, 5917, 7, 87, 0, 0, 5861, 5917, 5, 154, 0, 0, 5862, 5863, 5, 157, 0, 0, 5863, 5917, 7, 88, 0, 0, 5864, 5917, 5, 749, 0, 0, 5865, 5917, 5, 750, 0, 0, 5866, 5917, 5, 178, 0, 0, 5867, 5917, 5, 185, 0, 0, 5868, 5917, 5, 186, 0, 0, 5869, 5917, 5, 705, 0, 0, 5870, 5917, 5, 706, 0, 0, 5871, 5917, 5, 707, 0, 0, 5872, 5917, 5, 709, 0, 0, 5873, 5917, 5, 710, 0, 0, 5874, 5917, 5, 711, 0, 0, 5875, 5917, 5, 712, 0, 0, 5876, 5917, 5, 714, 0, 0, 5877, 5917, 5, 715, 0, 0, 5878, 5917, 5, 716, 0, 0, 5879, 5917, 5, 719, 0, 0, 5880, 5917, 5, 720, 0, 0, 5881, 5917, 5, 721, 0, 0, 5882, 5917, 5, 722, 0, 0, 5883, 5917, 5, 723, 0, 0, 5884, 5917, 5, 724, 0, 0, 5885, 5917, 5, 725, 0, 0, 5886, 5917, 5, 726, 0, 0, 5887, 5917, 5, 727, 0, 0, 5888, 5917, 5, 728, 0, 0, 5889, 5917, 5, 731, 0, 0, 5890, 5917, 5, 732, 0, 0, 5891, 5917, 5, 733, 0, 0, 5892, 5917, 5, 737, 0, 0, 5893, 5917, 5, 738, 0, 0, 5894, 5917, 5, 740, 0, 0, 5895, 5917, 5, 741, 0, 0, 5896, 5917, 5, 742, 0, 0, 5897, 5917, 5, 745, 0, 0, 5898, 5917, 5, 746, 0, 0, 5899, 5917, 5, 747, 0, 0, 5900, 5917, 5, 160, 0, 0, 5901, 5917, 5, 748, 0, 0, 5902, 5917, 5, 836, 0, 0, 5903, 5917, 5, 751, 0, 0, 5904, 5917, 5, 753, 0, 0, 5905, 5917, 5, 838, 0, 0, 5906, 5917, 5, 754, 0, 0, 5907, 5917, 5, 755, 0, 0, 5908, 5909, 5, 103, 0, 0, 5909, 5910, 5, 68, 0, 0, 5910, 5917, 5, 744, 0, 0, 5911, 5912, 5, 154, 0, 0, 5912, 5913, 5, 88, 0, 0, 5913, 5917, 5, 744, 0, 0, 5914, 5915, 5, 729, 0, 0, 5915, 5917, 5, 730, 0, 0, 5916, 5823, 1, 0, 0, 0, 5916, 5827, 1, 0, 0, 0, 5916, 5831, 1, 0, 0, 0, 5916, 5841, 1, 0, 0, 0, 5916, 5842, 1, 0, 0, 0, 5916, 5846, 1, 0, 0, 0, 5916, 5847, 1, 0, 0, 0, 5916, 5848, 1, 0, 0, 0, 5916, 5849, 1, 0, 0, 0, 5916, 5851, 1, 0, 0, 0, 5916, 5852, 1, 0, 0, 0, 5916, 5853, 1, 0, 0, 0, 5916, 5855, 1, 0, 0, 0, 5916, 5856, 1, 0, 0, 0, 5916, 5857, 1, 0, 0, 0, 5916, 5858, 1, 0, 0, 0, 5916, 5859, 1, 0, 0, 0, 5916, 5861, 1, 0, 0, 0, 5916, 5862, 1, 0, 0, 0, 5916, 5864, 1, 0, 0, 0, 5916, 5865, 1, 0, 0, 0, 5916, 5866, 1, 0, 0, 0, 5916, 5867, 1, 0, 0, 0, 5916, 5868, 1, 0, 0, 0, 5916, 5869, 1, 0, 0, 0, 5916, 5870, 1, 0, 0, 0, 5916, 5871, 1, 0, 0, 0, 5916, 5872, 1, 0, 0, 0, 5916, 5873, 1, 0, 0, 0, 5916, 5874, 1, 0, 0, 0, 5916, 5875, 1, 0, 0, 0, 5916, 5876, 1, 0, 0, 0, 5916, 5877, 1, 0, 0, 0, 5916, 5878, 1, 0, 0, 0, 5916, 5879, 1, 0, 0, 0, 5916, 5880, 1, 0, 0, 0, 5916, 5881, 1, 0, 0, 0, 5916, 5882, 1, 0, 0, 0, 5916, 5883, 1, 0, 0, 0, 5916, 5884, 1, 0, 0, 0, 5916, 5885, 1, 0, 0, 0, 5916, 5886, 1, 0, 0, 0, 5916, 5887, 1, 0, 0, 0, 5916, 5888, 1, 0, 0, 0, 5916, 5889, 1, 0, 0, 0, 5916, 5890, 1, 0, 0, 0, 5916, 5891, 1, 0, 0, 0, 5916, 5892, 1, 0, 0, 0, 5916, 5893, 1, 0, 0, 0, 5916, 5894, 1, 0, 0, 0, 5916, 5895, 1, 0, 0, 0, 5916, 5896, 1, 0, 0, 0, 5916, 5897, 1, 0, 0, 0, 5916, 5898, 1, 0, 0, 0, 5916, 5899, 1, 0, 0, 0, 5916, 5900, 1, 0, 0, 0, 5916, 5901, 1, 0, 0, 0, 5916, 5902, 1, 0, 0, 0, 5916, 5903, 1, 0, 0, 0, 5916, 5904, 1, 0, 0, 0, 5916, 5905, 1, 0, 0, 0, 5916, 5906, 1, 0, 0, 0, 5916, 5907, 1, 0, 0, 0, 5916, 5908, 1, 0, 0, 0, 5916, 5911, 1, 0, 0, 0, 5916, 5914, 1, 0, 0, 0, 5917, 517, 1, 0, 0, 0, 5918, 5935, 5, 850, 0, 0, 5919, 5920, 5, 850, 0, 0, 5920, 5921, 5, 865, 0, 0, 5921, 5935, 5, 850, 0, 0, 5922, 5923, 3, 702, 351, 0, 5923, 5924, 5, 865, 0, 0, 5924, 5925, 5, 850, 0, 0, 5925, 5935, 1, 0, 0, 0, 5926, 5927, 3, 702, 351, 0, 5927, 5928, 5, 865, 0, 0, 5928, 5929, 3, 702, 351, 0, 5929, 5935, 1, 0, 0, 0, 5930, 5931, 3, 702, 351, 0, 5931, 5932, 3, 706, 353, 0, 5932, 5935, 1, 0, 0, 0, 5933, 5935, 3, 702, 351, 0, 5934, 5918, 1, 0, 0, 0, 5934, 5919, 1, 0, 0, 0, 5934, 5922, 1, 0, 0, 0, 5934, 5926, 1, 0, 0, 0, 5934, 5930, 1, 0, 0, 0, 5934, 5933, 1, 0, 0, 0, 5935, 519, 1, 0, 0, 0, 5936, 5937, 3, 680, 340, 0, 5937, 5938, 5, 176, 0, 0, 5938, 5939, 3, 680, 340, 0, 5939, 521, 1, 0, 0, 0, 5940, 5942, 5, 10, 0, 0, 5941, 5943, 3, 532, 266, 0, 5942, 5941, 1, 0, 0, 0, 5942, 5943, 1, 0, 0, 0, 5943, 5944, 1, 0, 0, 0, 5944, 5945, 5, 173, 0, 0, 5945, 5989, 3, 646, 323, 0, 5946, 5948, 5, 10, 0, 0, 5947, 5949, 3, 532, 266, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5950, 1, 0, 0, 0, 5950, 5951, 5, 173, 0, 0, 5951, 5952, 3, 648, 324, 0, 5952, 5953, 5, 185, 0, 0, 5953, 5954, 5, 77, 0, 0, 5954, 5955, 5, 119, 0, 0, 5955, 5960, 3, 656, 328, 0, 5956, 5957, 5, 194, 0, 0, 5957, 5958, 3, 708, 354, 0, 5958, 5959, 5, 19, 0, 0, 5959, 5961, 1, 0, 0, 0, 5960, 5956, 1, 0, 0, 0, 5960, 5961, 1, 0, 0, 0, 5961, 5989, 1, 0, 0, 0, 5962, 5964, 5, 10, 0, 0, 5963, 5965, 3, 532, 266, 0, 5964, 5963, 1, 0, 0, 0, 5964, 5965, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 5967, 5, 173, 0, 0, 5967, 5968, 3, 648, 324, 0, 5968, 5969, 5, 185, 0, 0, 5969, 5970, 5, 77, 0, 0, 5970, 5971, 5, 119, 0, 0, 5971, 5975, 3, 658, 329, 0, 5972, 5973, 5, 188, 0, 0, 5973, 5974, 5, 360, 0, 0, 5974, 5976, 5, 882, 0, 0, 5975, 5972, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5989, 1, 0, 0, 0, 5977, 5979, 5, 10, 0, 0, 5978, 5980, 3, 532, 266, 0, 5979, 5978, 1, 0, 0, 0, 5979, 5980, 1, 0, 0, 0, 5980, 5981, 1, 0, 0, 0, 5981, 5982, 5, 173, 0, 0, 5982, 5983, 3, 648, 324, 0, 5983, 5984, 5, 51, 0, 0, 5984, 5985, 5, 77, 0, 0, 5985, 5986, 5, 119, 0, 0, 5986, 5987, 3, 656, 328, 0, 5987, 5989, 1, 0, 0, 0, 5988, 5940, 1, 0, 0, 0, 5988, 5946, 1, 0, 0, 0, 5988, 5962, 1, 0, 0, 0, 5988, 5977, 1, 0, 0, 0, 5989, 523, 1, 0, 0, 0, 5990, 5991, 5, 27, 0, 0, 5991, 5992, 5, 173, 0, 0, 5992, 5996, 3, 646, 323, 0, 5993, 5995, 3, 534, 267, 0, 5994, 5993, 1, 0, 0, 0, 5995, 5998, 1, 0, 0, 0, 5996, 5994, 1, 0, 0, 0, 5996, 5997, 1, 0, 0, 0, 5997, 525, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5999, 6000, 5, 329, 0, 0, 6000, 6001, 5, 173, 0, 0, 6001, 6003, 3, 646, 323, 0, 6002, 6004, 7, 89, 0, 0, 6003, 6002, 1, 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 527, 1, 0, 0, 0, 6005, 6007, 5, 120, 0, 0, 6006, 6008, 3, 532, 266, 0, 6007, 6006, 1, 0, 0, 0, 6007, 6008, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 6010, 7, 60, 0, 0, 6010, 6011, 3, 646, 323, 0, 6011, 529, 1, 0, 0, 0, 6012, 6014, 5, 562, 0, 0, 6013, 6015, 3, 532, 266, 0, 6014, 6013, 1, 0, 0, 0, 6014, 6015, 1, 0, 0, 0, 6015, 6016, 1, 0, 0, 0, 6016, 6017, 5, 173, 0, 0, 6017, 6019, 3, 646, 323, 0, 6018, 6020, 5, 549, 0, 0, 6019, 6018, 1, 0, 0, 0, 6019, 6020, 1, 0, 0, 0, 6020, 6022, 1, 0, 0, 0, 6021, 6023, 5, 392, 0, 0, 6022, 6021, 1, 0, 0, 0, 6022, 6023, 1, 0, 0, 0, 6023, 6025, 1, 0, 0, 0, 6024, 6026, 5, 679, 0, 0, 6025, 6024, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 531, 1, 0, 0, 0, 6027, 6028, 7, 90, 0, 0, 6028, 533, 1, 0, 0, 0, 6029, 6030, 5, 65, 0, 0, 6030, 6037, 5, 677, 0, 0, 6031, 6037, 5, 549, 0, 0, 6032, 6037, 5, 396, 0, 0, 6033, 6037, 5, 484, 0, 0, 6034, 6037, 5, 392, 0, 0, 6035, 6037, 5, 327, 0, 0, 6036, 6029, 1, 0, 0, 0, 6036, 6031, 1, 0, 0, 0, 6036, 6032, 1, 0, 0, 0, 6036, 6033, 1, 0, 0, 0, 6036, 6034, 1, 0, 0, 0, 6036, 6035, 1, 0, 0, 0, 6037, 535, 1, 0, 0, 0, 6038, 6040, 5, 34, 0, 0, 6039, 6041, 5, 307, 0, 0, 6040, 6039, 1, 0, 0, 0, 6040, 6041, 1, 0, 0, 0, 6041, 6042, 1, 0, 0, 0, 6042, 6044, 5, 409, 0, 0, 6043, 6045, 3, 756, 378, 0, 6044, 6043, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6046, 1, 0, 0, 0, 6046, 6047, 3, 626, 313, 0, 6047, 6048, 5, 580, 0, 0, 6048, 6049, 7, 91, 0, 0, 6049, 6050, 5, 603, 0, 0, 6050, 6051, 5, 882, 0, 0, 6051, 537, 1, 0, 0, 0, 6052, 6053, 5, 432, 0, 0, 6053, 6054, 5, 344, 0, 0, 6054, 6059, 3, 702, 351, 0, 6055, 6056, 5, 868, 0, 0, 6056, 6058, 3, 702, 351, 0, 6057, 6055, 1, 0, 0, 0, 6058, 6061, 1, 0, 0, 0, 6059, 6057, 1, 0, 0, 0, 6059, 6060, 1, 0, 0, 0, 6060, 6071, 1, 0, 0, 0, 6061, 6059, 1, 0, 0, 0, 6062, 6063, 5, 155, 0, 0, 6063, 6068, 3, 540, 270, 0, 6064, 6065, 5, 868, 0, 0, 6065, 6067, 3, 540, 270, 0, 6066, 6064, 1, 0, 0, 0, 6067, 6070, 1, 0, 0, 0, 6068, 6066, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6072, 1, 0, 0, 0, 6070, 6068, 1, 0, 0, 0, 6071, 6062, 1, 0, 0, 0, 6071, 6072, 1, 0, 0, 0, 6072, 539, 1, 0, 0, 0, 6073, 6074, 7, 92, 0, 0, 6074, 6075, 3, 698, 349, 0, 6075, 6076, 5, 857, 0, 0, 6076, 6077, 3, 800, 400, 0, 6077, 541, 1, 0, 0, 0, 6078, 6079, 5, 673, 0, 0, 6079, 6080, 5, 344, 0, 0, 6080, 6085, 3, 702, 351, 0, 6081, 6082, 5, 868, 0, 0, 6082, 6084, 3, 702, 351, 0, 6083, 6081, 1, 0, 0, 0, 6084, 6087, 1, 0, 0, 0, 6085, 6083, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 543, 1, 0, 0, 0, 6087, 6085, 1, 0, 0, 0, 6088, 6089, 5, 432, 0, 0, 6089, 6090, 5, 534, 0, 0, 6090, 6091, 3, 702, 351, 0, 6091, 6092, 5, 603, 0, 0, 6092, 6093, 5, 882, 0, 0, 6093, 545, 1, 0, 0, 0, 6094, 6095, 5, 673, 0, 0, 6095, 6096, 5, 534, 0, 0, 6096, 6097, 3, 702, 351, 0, 6097, 547, 1, 0, 0, 0, 6098, 6099, 5, 713, 0, 0, 6099, 6100, 5, 450, 0, 0, 6100, 6101, 5, 360, 0, 0, 6101, 6103, 5, 367, 0, 0, 6102, 6104, 5, 857, 0, 0, 6103, 6102, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, 6105, 1, 0, 0, 0, 6105, 6129, 5, 882, 0, 0, 6106, 6107, 5, 713, 0, 0, 6107, 6108, 5, 433, 0, 0, 6108, 6109, 5, 68, 0, 0, 6109, 6110, 3, 672, 336, 0, 6110, 6111, 5, 423, 0, 0, 6111, 6112, 5, 20, 0, 0, 6112, 6119, 5, 882, 0, 0, 6113, 6114, 5, 360, 0, 0, 6114, 6116, 5, 367, 0, 0, 6115, 6117, 5, 857, 0, 0, 6116, 6115, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 6120, 5, 882, 0, 0, 6119, 6113, 1, 0, 0, 0, 6119, 6120, 1, 0, 0, 0, 6120, 6126, 1, 0, 0, 0, 6121, 6123, 5, 144, 0, 0, 6122, 6124, 5, 502, 0, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6125, 1, 0, 0, 0, 6125, 6127, 5, 169, 0, 0, 6126, 6121, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6129, 1, 0, 0, 0, 6128, 6098, 1, 0, 0, 0, 6128, 6106, 1, 0, 0, 0, 6129, 549, 1, 0, 0, 0, 6130, 6131, 5, 155, 0, 0, 6131, 6132, 3, 554, 277, 0, 6132, 6135, 7, 93, 0, 0, 6133, 6136, 3, 800, 400, 0, 6134, 6136, 5, 119, 0, 0, 6135, 6133, 1, 0, 0, 0, 6135, 6134, 1, 0, 0, 0, 6136, 6146, 1, 0, 0, 0, 6137, 6138, 5, 868, 0, 0, 6138, 6139, 3, 554, 277, 0, 6139, 6142, 7, 93, 0, 0, 6140, 6143, 3, 800, 400, 0, 6141, 6143, 5, 119, 0, 0, 6142, 6140, 1, 0, 0, 0, 6142, 6141, 1, 0, 0, 0, 6143, 6145, 1, 0, 0, 0, 6144, 6137, 1, 0, 0, 0, 6145, 6148, 1, 0, 0, 0, 6146, 6144, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6183, 1, 0, 0, 0, 6148, 6146, 1, 0, 0, 0, 6149, 6150, 5, 155, 0, 0, 6150, 6153, 3, 54, 27, 0, 6151, 6154, 3, 684, 342, 0, 6152, 6154, 5, 42, 0, 0, 6153, 6151, 1, 0, 0, 0, 6153, 6152, 1, 0, 0, 0, 6154, 6183, 1, 0, 0, 0, 6155, 6156, 5, 155, 0, 0, 6156, 6163, 5, 497, 0, 0, 6157, 6160, 3, 684, 342, 0, 6158, 6159, 5, 28, 0, 0, 6159, 6161, 3, 686, 343, 0, 6160, 6158, 1, 0, 0, 0, 6160, 6161, 1, 0, 0, 0, 6161, 6164, 1, 0, 0, 0, 6162, 6164, 5, 42, 0, 0, 6163, 6157, 1, 0, 0, 0, 6163, 6162, 1, 0, 0, 0, 6164, 6183, 1, 0, 0, 0, 6165, 6183, 3, 484, 242, 0, 6166, 6183, 3, 336, 168, 0, 6167, 6183, 3, 334, 167, 0, 6168, 6169, 5, 155, 0, 0, 6169, 6170, 3, 698, 349, 0, 6170, 6171, 7, 93, 0, 0, 6171, 6179, 3, 800, 400, 0, 6172, 6173, 5, 868, 0, 0, 6173, 6174, 3, 698, 349, 0, 6174, 6175, 7, 93, 0, 0, 6175, 6176, 3, 800, 400, 0, 6176, 6178, 1, 0, 0, 0, 6177, 6172, 1, 0, 0, 0, 6178, 6181, 1, 0, 0, 0, 6179, 6177, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6183, 1, 0, 0, 0, 6181, 6179, 1, 0, 0, 0, 6182, 6130, 1, 0, 0, 0, 6182, 6149, 1, 0, 0, 0, 6182, 6155, 1, 0, 0, 0, 6182, 6165, 1, 0, 0, 0, 6182, 6166, 1, 0, 0, 0, 6182, 6167, 1, 0, 0, 0, 6182, 6168, 1, 0, 0, 0, 6183, 551, 1, 0, 0, 0, 6184, 6185, 5, 157, 0, 0, 6185, 6186, 7, 62, 0, 0, 6186, 6369, 5, 452, 0, 0, 6187, 6188, 5, 157, 0, 0, 6188, 6189, 7, 94, 0, 0, 6189, 6192, 5, 386, 0, 0, 6190, 6191, 5, 80, 0, 0, 6191, 6193, 5, 882, 0, 0, 6192, 6190, 1, 0, 0, 0, 6192, 6193, 1, 0, 0, 0, 6193, 6196, 1, 0, 0, 0, 6194, 6195, 5, 68, 0, 0, 6195, 6197, 3, 708, 354, 0, 6196, 6194, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6205, 1, 0, 0, 0, 6198, 6202, 5, 100, 0, 0, 6199, 6200, 3, 708, 354, 0, 6200, 6201, 5, 868, 0, 0, 6201, 6203, 1, 0, 0, 0, 6202, 6199, 1, 0, 0, 0, 6202, 6203, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6206, 3, 708, 354, 0, 6205, 6198, 1, 0, 0, 0, 6205, 6206, 1, 0, 0, 0, 6206, 6208, 1, 0, 0, 0, 6207, 6209, 3, 384, 192, 0, 6208, 6207, 1, 0, 0, 0, 6208, 6209, 1, 0, 0, 0, 6209, 6369, 1, 0, 0, 0, 6210, 6211, 5, 157, 0, 0, 6211, 6213, 3, 556, 278, 0, 6212, 6214, 3, 558, 279, 0, 6213, 6212, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 6369, 1, 0, 0, 0, 6215, 6217, 5, 157, 0, 0, 6216, 6218, 5, 392, 0, 0, 6217, 6216, 1, 0, 0, 0, 6217, 6218, 1, 0, 0, 0, 6218, 6220, 1, 0, 0, 0, 6219, 6221, 5, 408, 0, 0, 6220, 6219, 1, 0, 0, 0, 6220, 6221, 1, 0, 0, 0, 6221, 6222, 1, 0, 0, 0, 6222, 6223, 7, 46, 0, 0, 6223, 6224, 7, 95, 0, 0, 6224, 6227, 3, 648, 324, 0, 6225, 6226, 7, 95, 0, 0, 6226, 6228, 3, 624, 312, 0, 6227, 6225, 1, 0, 0, 0, 6227, 6228, 1, 0, 0, 0, 6228, 6230, 1, 0, 0, 0, 6229, 6231, 3, 558, 279, 0, 6230, 6229, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6369, 1, 0, 0, 0, 6232, 6233, 5, 157, 0, 0, 6233, 6234, 5, 34, 0, 0, 6234, 6236, 7, 0, 0, 0, 6235, 6237, 3, 756, 378, 0, 6236, 6235, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 6238, 1, 0, 0, 0, 6238, 6369, 3, 622, 311, 0, 6239, 6240, 5, 157, 0, 0, 6240, 6241, 5, 34, 0, 0, 6241, 6242, 7, 96, 0, 0, 6242, 6369, 3, 698, 349, 0, 6243, 6244, 5, 157, 0, 0, 6244, 6245, 5, 34, 0, 0, 6245, 6246, 5, 409, 0, 0, 6246, 6369, 3, 626, 313, 0, 6247, 6248, 5, 157, 0, 0, 6248, 6249, 5, 34, 0, 0, 6249, 6250, 5, 684, 0, 0, 6250, 6369, 3, 630, 315, 0, 6251, 6252, 5, 157, 0, 0, 6252, 6253, 5, 34, 0, 0, 6253, 6254, 5, 173, 0, 0, 6254, 6369, 3, 644, 322, 0, 6255, 6256, 5, 157, 0, 0, 6256, 6257, 5, 34, 0, 0, 6257, 6258, 5, 678, 0, 0, 6258, 6369, 3, 680, 340, 0, 6259, 6260, 5, 157, 0, 0, 6260, 6261, 5, 380, 0, 0, 6261, 6262, 3, 688, 344, 0, 6262, 6263, 7, 97, 0, 0, 6263, 6369, 1, 0, 0, 0, 6264, 6265, 5, 157, 0, 0, 6265, 6369, 3, 560, 280, 0, 6266, 6267, 5, 157, 0, 0, 6267, 6275, 7, 98, 0, 0, 6268, 6272, 5, 100, 0, 0, 6269, 6270, 3, 708, 354, 0, 6270, 6271, 5, 868, 0, 0, 6271, 6273, 1, 0, 0, 0, 6272, 6269, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6276, 3, 708, 354, 0, 6275, 6268, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6369, 1, 0, 0, 0, 6277, 6278, 5, 157, 0, 0, 6278, 6279, 5, 262, 0, 0, 6279, 6280, 5, 866, 0, 0, 6280, 6281, 5, 850, 0, 0, 6281, 6282, 5, 867, 0, 0, 6282, 6369, 7, 98, 0, 0, 6283, 6284, 5, 157, 0, 0, 6284, 6287, 3, 562, 281, 0, 6285, 6286, 7, 95, 0, 0, 6286, 6288, 3, 624, 312, 0, 6287, 6285, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6290, 1, 0, 0, 0, 6289, 6291, 3, 558, 279, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6369, 1, 0, 0, 0, 6292, 6293, 5, 157, 0, 0, 6293, 6294, 5, 132, 0, 0, 6294, 6295, 5, 336, 0, 0, 6295, 6369, 3, 698, 349, 0, 6296, 6297, 5, 157, 0, 0, 6297, 6298, 5, 409, 0, 0, 6298, 6299, 5, 336, 0, 0, 6299, 6369, 3, 628, 314, 0, 6300, 6301, 5, 157, 0, 0, 6301, 6308, 5, 414, 0, 0, 6302, 6303, 5, 65, 0, 0, 6303, 6306, 3, 652, 326, 0, 6304, 6305, 5, 188, 0, 0, 6305, 6307, 3, 650, 325, 0, 6306, 6304, 1, 0, 0, 0, 6306, 6307, 1, 0, 0, 0, 6307, 6309, 1, 0, 0, 0, 6308, 6302, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6369, 1, 0, 0, 0, 6310, 6312, 5, 157, 0, 0, 6311, 6313, 5, 392, 0, 0, 6312, 6311, 1, 0, 0, 0, 6312, 6313, 1, 0, 0, 0, 6313, 6314, 1, 0, 0, 0, 6314, 6315, 7, 99, 0, 0, 6315, 6316, 7, 95, 0, 0, 6316, 6319, 3, 648, 324, 0, 6317, 6318, 7, 95, 0, 0, 6318, 6320, 3, 624, 312, 0, 6319, 6317, 1, 0, 0, 0, 6319, 6320, 1, 0, 0, 0, 6320, 6323, 1, 0, 0, 0, 6321, 6322, 5, 192, 0, 0, 6322, 6324, 3, 800, 400, 0, 6323, 6321, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6369, 1, 0, 0, 0, 6325, 6326, 5, 157, 0, 0, 6326, 6327, 5, 516, 0, 0, 6327, 6330, 5, 752, 0, 0, 6328, 6329, 7, 95, 0, 0, 6329, 6331, 3, 624, 312, 0, 6330, 6328, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6333, 1, 0, 0, 0, 6332, 6334, 3, 558, 279, 0, 6333, 6332, 1, 0, 0, 0, 6333, 6334, 1, 0, 0, 0, 6334, 6369, 1, 0, 0, 0, 6335, 6336, 5, 157, 0, 0, 6336, 6345, 5, 545, 0, 0, 6337, 6342, 3, 564, 282, 0, 6338, 6339, 5, 868, 0, 0, 6339, 6341, 3, 564, 282, 0, 6340, 6338, 1, 0, 0, 0, 6341, 6344, 1, 0, 0, 0, 6342, 6340, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 6346, 1, 0, 0, 0, 6344, 6342, 1, 0, 0, 0, 6345, 6337, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 6350, 1, 0, 0, 0, 6347, 6348, 5, 65, 0, 0, 6348, 6349, 5, 548, 0, 0, 6349, 6351, 3, 708, 354, 0, 6350, 6347, 1, 0, 0, 0, 6350, 6351, 1, 0, 0, 0, 6351, 6358, 1, 0, 0, 0, 6352, 6353, 5, 100, 0, 0, 6353, 6356, 3, 708, 354, 0, 6354, 6355, 5, 509, 0, 0, 6355, 6357, 3, 708, 354, 0, 6356, 6354, 1, 0, 0, 0, 6356, 6357, 1, 0, 0, 0, 6357, 6359, 1, 0, 0, 0, 6358, 6352, 1, 0, 0, 0, 6358, 6359, 1, 0, 0, 0, 6359, 6369, 1, 0, 0, 0, 6360, 6361, 5, 157, 0, 0, 6361, 6362, 7, 63, 0, 0, 6362, 6364, 5, 645, 0, 0, 6363, 6365, 3, 384, 192, 0, 6364, 6363, 1, 0, 0, 0, 6364, 6365, 1, 0, 0, 0, 6365, 6369, 1, 0, 0, 0, 6366, 6367, 5, 157, 0, 0, 6367, 6369, 5, 564, 0, 0, 6368, 6184, 1, 0, 0, 0, 6368, 6187, 1, 0, 0, 0, 6368, 6210, 1, 0, 0, 0, 6368, 6215, 1, 0, 0, 0, 6368, 6232, 1, 0, 0, 0, 6368, 6239, 1, 0, 0, 0, 6368, 6243, 1, 0, 0, 0, 6368, 6247, 1, 0, 0, 0, 6368, 6251, 1, 0, 0, 0, 6368, 6255, 1, 0, 0, 0, 6368, 6259, 1, 0, 0, 0, 6368, 6264, 1, 0, 0, 0, 6368, 6266, 1, 0, 0, 0, 6368, 6277, 1, 0, 0, 0, 6368, 6283, 1, 0, 0, 0, 6368, 6292, 1, 0, 0, 0, 6368, 6296, 1, 0, 0, 0, 6368, 6300, 1, 0, 0, 0, 6368, 6310, 1, 0, 0, 0, 6368, 6325, 1, 0, 0, 0, 6368, 6335, 1, 0, 0, 0, 6368, 6360, 1, 0, 0, 0, 6368, 6366, 1, 0, 0, 0, 6369, 553, 1, 0, 0, 0, 6370, 6381, 5, 892, 0, 0, 6371, 6381, 5, 893, 0, 0, 6372, 6373, 5, 870, 0, 0, 6373, 6375, 5, 870, 0, 0, 6374, 6372, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6376, 1, 0, 0, 0, 6376, 6378, 7, 100, 0, 0, 6377, 6374, 1, 0, 0, 0, 6377, 6378, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6381, 3, 702, 351, 0, 6380, 6370, 1, 0, 0, 0, 6380, 6371, 1, 0, 0, 0, 6380, 6377, 1, 0, 0, 0, 6381, 555, 1, 0, 0, 0, 6382, 6383, 5, 26, 0, 0, 6383, 6397, 5, 155, 0, 0, 6384, 6397, 5, 823, 0, 0, 6385, 6397, 5, 824, 0, 0, 6386, 6397, 5, 40, 0, 0, 6387, 6397, 5, 153, 0, 0, 6388, 6389, 5, 409, 0, 0, 6389, 6397, 5, 645, 0, 0, 6390, 6391, 5, 132, 0, 0, 6391, 6397, 5, 645, 0, 0, 6392, 6394, 7, 61, 0, 0, 6393, 6392, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6397, 7, 101, 0, 0, 6396, 6382, 1, 0, 0, 0, 6396, 6384, 1, 0, 0, 0, 6396, 6385, 1, 0, 0, 0, 6396, 6386, 1, 0, 0, 0, 6396, 6387, 1, 0, 0, 0, 6396, 6388, 1, 0, 0, 0, 6396, 6390, 1, 0, 0, 0, 6396, 6393, 1, 0, 0, 0, 6397, 557, 1, 0, 0, 0, 6398, 6399, 5, 99, 0, 0, 6399, 6403, 5, 882, 0, 0, 6400, 6401, 5, 192, 0, 0, 6401, 6403, 3, 800, 400, 0, 6402, 6398, 1, 0, 0, 0, 6402, 6400, 1, 0, 0, 0, 6403, 559, 1, 0, 0, 0, 6404, 6406, 5, 647, 0, 0, 6405, 6404, 1, 0, 0, 0, 6405, 6406, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6422, 5, 381, 0, 0, 6408, 6409, 5, 453, 0, 0, 6409, 6422, 5, 645, 0, 0, 6410, 6422, 5, 536, 0, 0, 6411, 6422, 5, 734, 0, 0, 6412, 6414, 5, 408, 0, 0, 6413, 6412, 1, 0, 0, 0, 6413, 6414, 1, 0, 0, 0, 6414, 6415, 1, 0, 0, 0, 6415, 6422, 5, 544, 0, 0, 6416, 6422, 5, 546, 0, 0, 6417, 6418, 5, 598, 0, 0, 6418, 6422, 5, 422, 0, 0, 6419, 6422, 5, 312, 0, 0, 6420, 6422, 5, 356, 0, 0, 6421, 6405, 1, 0, 0, 0, 6421, 6408, 1, 0, 0, 0, 6421, 6410, 1, 0, 0, 0, 6421, 6411, 1, 0, 0, 0, 6421, 6413, 1, 0, 0, 0, 6421, 6416, 1, 0, 0, 0, 6421, 6417, 1, 0, 0, 0, 6421, 6419, 1, 0, 0, 0, 6421, 6420, 1, 0, 0, 0, 6422, 561, 1, 0, 0, 0, 6423, 6435, 5, 386, 0, 0, 6424, 6425, 5, 173, 0, 0, 6425, 6435, 5, 645, 0, 0, 6426, 6428, 5, 392, 0, 0, 6427, 6426, 1, 0, 0, 0, 6427, 6428, 1, 0, 0, 0, 6428, 6430, 1, 0, 0, 0, 6429, 6431, 5, 408, 0, 0, 6430, 6429, 1, 0, 0, 0, 6430, 6431, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 6435, 5, 752, 0, 0, 6433, 6435, 5, 667, 0, 0, 6434, 6423, 1, 0, 0, 0, 6434, 6424, 1, 0, 0, 0, 6434, 6427, 1, 0, 0, 0, 6434, 6433, 1, 0, 0, 0, 6435, 563, 1, 0, 0, 0, 6436, 6449, 5, 7, 0, 0, 6437, 6438, 5, 320, 0, 0, 6438, 6449, 5, 437, 0, 0, 6439, 6440, 5, 355, 0, 0, 6440, 6449, 5, 656, 0, 0, 6441, 6449, 5, 358, 0, 0, 6442, 6449, 5, 439, 0, 0, 6443, 6449, 5, 802, 0, 0, 6444, 6445, 5, 521, 0, 0, 6445, 6449, 5, 397, 0, 0, 6446, 6449, 5, 605, 0, 0, 6447, 6449, 5, 655, 0, 0, 6448, 6436, 1, 0, 0, 0, 6448, 6437, 1, 0, 0, 0, 6448, 6439, 1, 0, 0, 0, 6448, 6441, 1, 0, 0, 0, 6448, 6442, 1, 0, 0, 0, 6448, 6443, 1, 0, 0, 0, 6448, 6444, 1, 0, 0, 0, 6448, 6446, 1, 0, 0, 0, 6448, 6447, 1, 0, 0, 0, 6449, 565, 1, 0, 0, 0, 6450, 6451, 5, 318, 0, 0, 6451, 6452, 5, 882, 0, 0, 6452, 567, 1, 0, 0, 0, 6453, 6454, 5, 324, 0, 0, 6454, 6472, 5, 82, 0, 0, 6455, 6460, 3, 588, 294, 0, 6456, 6457, 5, 868, 0, 0, 6457, 6459, 3, 588, 294, 0, 6458, 6456, 1, 0, 0, 0, 6459, 6462, 1, 0, 0, 0, 6460, 6458, 1, 0, 0, 0, 6460, 6461, 1, 0, 0, 0, 6461, 6473, 1, 0, 0, 0, 6462, 6460, 1, 0, 0, 0, 6463, 6464, 3, 648, 324, 0, 6464, 6465, 5, 130, 0, 0, 6465, 6468, 5, 866, 0, 0, 6466, 6469, 3, 666, 333, 0, 6467, 6469, 5, 7, 0, 0, 6468, 6466, 1, 0, 0, 0, 6468, 6467, 1, 0, 0, 0, 6469, 6470, 1, 0, 0, 0, 6470, 6471, 5, 867, 0, 0, 6471, 6473, 1, 0, 0, 0, 6472, 6455, 1, 0, 0, 0, 6472, 6463, 1, 0, 0, 0, 6473, 6474, 1, 0, 0, 0, 6474, 6475, 5, 80, 0, 0, 6475, 6476, 3, 624, 312, 0, 6476, 569, 1, 0, 0, 0, 6477, 6479, 5, 404, 0, 0, 6478, 6480, 3, 532, 266, 0, 6479, 6478, 1, 0, 0, 0, 6479, 6480, 1, 0, 0, 0, 6480, 6481, 1, 0, 0, 0, 6481, 6486, 3, 590, 295, 0, 6482, 6483, 5, 868, 0, 0, 6483, 6485, 3, 590, 295, 0, 6484, 6482, 1, 0, 0, 0, 6485, 6488, 1, 0, 0, 0, 6486, 6484, 1, 0, 0, 0, 6486, 6487, 1, 0, 0, 0, 6487, 571, 1, 0, 0, 0, 6488, 6486, 1, 0, 0, 0, 6489, 6491, 5, 94, 0, 0, 6490, 6492, 7, 102, 0, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6493, 1, 0, 0, 0, 6493, 6494, 3, 800, 400, 0, 6494, 573, 1, 0, 0, 0, 6495, 6496, 5, 103, 0, 0, 6496, 6497, 5, 82, 0, 0, 6497, 6498, 5, 88, 0, 0, 6498, 6499, 5, 324, 0, 0, 6499, 6504, 3, 594, 297, 0, 6500, 6501, 5, 868, 0, 0, 6501, 6503, 3, 594, 297, 0, 6502, 6500, 1, 0, 0, 0, 6503, 6506, 1, 0, 0, 0, 6504, 6502, 1, 0, 0, 0, 6504, 6505, 1, 0, 0, 0, 6505, 575, 1, 0, 0, 0, 6506, 6504, 1, 0, 0, 0, 6507, 6508, 5, 575, 0, 0, 6508, 6513, 3, 578, 289, 0, 6509, 6510, 5, 868, 0, 0, 6510, 6512, 3, 578, 289, 0, 6511, 6509, 1, 0, 0, 0, 6512, 6515, 1, 0, 0, 0, 6513, 6511, 1, 0, 0, 0, 6513, 6514, 1, 0, 0, 0, 6514, 577, 1, 0, 0, 0, 6515, 6513, 1, 0, 0, 0, 6516, 6522, 5, 453, 0, 0, 6517, 6522, 5, 563, 0, 0, 6518, 6519, 5, 548, 0, 0, 6519, 6522, 5, 324, 0, 0, 6520, 6522, 5, 598, 0, 0, 6521, 6516, 1, 0, 0, 0, 6521, 6517, 1, 0, 0, 0, 6521, 6518, 1, 0, 0, 0, 6521, 6520, 1, 0, 0, 0, 6522, 579, 1, 0, 0, 0, 6523, 6524, 5, 575, 0, 0, 6524, 6529, 5, 531, 0, 0, 6525, 6527, 3, 754, 377, 0, 6526, 6525, 1, 0, 0, 0, 6526, 6527, 1, 0, 0, 0, 6527, 6528, 1, 0, 0, 0, 6528, 6530, 3, 702, 351, 0, 6529, 6526, 1, 0, 0, 0, 6529, 6530, 1, 0, 0, 0, 6530, 581, 1, 0, 0, 0, 6531, 6532, 5, 575, 0, 0, 6532, 6534, 7, 63, 0, 0, 6533, 6535, 5, 7, 0, 0, 6534, 6533, 1, 0, 0, 0, 6534, 6535, 1, 0, 0, 0, 6535, 6537, 1, 0, 0, 0, 6536, 6538, 3, 384, 192, 0, 6537, 6536, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 583, 1, 0, 0, 0, 6539, 6540, 5, 576, 0, 0, 6540, 585, 1, 0, 0, 0, 6541, 6542, 5, 749, 0, 0, 6542, 587, 1, 0, 0, 0, 6543, 6549, 3, 648, 324, 0, 6544, 6545, 7, 18, 0, 0, 6545, 6546, 5, 866, 0, 0, 6546, 6547, 3, 636, 318, 0, 6547, 6548, 5, 867, 0, 0, 6548, 6550, 1, 0, 0, 0, 6549, 6544, 1, 0, 0, 0, 6549, 6550, 1, 0, 0, 0, 6550, 589, 1, 0, 0, 0, 6551, 6570, 5, 366, 0, 0, 6552, 6570, 5, 422, 0, 0, 6553, 6555, 7, 103, 0, 0, 6554, 6553, 1, 0, 0, 0, 6554, 6555, 1, 0, 0, 0, 6555, 6556, 1, 0, 0, 0, 6556, 6570, 5, 452, 0, 0, 6557, 6570, 5, 517, 0, 0, 6558, 6570, 5, 734, 0, 0, 6559, 6560, 5, 548, 0, 0, 6560, 6570, 5, 324, 0, 0, 6561, 6570, 5, 645, 0, 0, 6562, 6570, 5, 680, 0, 0, 6563, 6567, 5, 752, 0, 0, 6564, 6565, 5, 194, 0, 0, 6565, 6566, 5, 135, 0, 0, 6566, 6568, 5, 104, 0, 0, 6567, 6564, 1, 0, 0, 0, 6567, 6568, 1, 0, 0, 0, 6568, 6570, 1, 0, 0, 0, 6569, 6551, 1, 0, 0, 0, 6569, 6552, 1, 0, 0, 0, 6569, 6554, 1, 0, 0, 0, 6569, 6557, 1, 0, 0, 0, 6569, 6558, 1, 0, 0, 0, 6569, 6559, 1, 0, 0, 0, 6569, 6561, 1, 0, 0, 0, 6569, 6562, 1, 0, 0, 0, 6569, 6563, 1, 0, 0, 0, 6570, 6584, 1, 0, 0, 0, 6571, 6572, 5, 556, 0, 0, 6572, 6574, 5, 452, 0, 0, 6573, 6575, 3, 384, 192, 0, 6574, 6573, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 6584, 1, 0, 0, 0, 6576, 6578, 7, 60, 0, 0, 6577, 6579, 3, 646, 323, 0, 6578, 6577, 1, 0, 0, 0, 6578, 6579, 1, 0, 0, 0, 6579, 6581, 1, 0, 0, 0, 6580, 6582, 3, 592, 296, 0, 6581, 6580, 1, 0, 0, 0, 6581, 6582, 1, 0, 0, 0, 6582, 6584, 1, 0, 0, 0, 6583, 6569, 1, 0, 0, 0, 6583, 6571, 1, 0, 0, 0, 6583, 6576, 1, 0, 0, 0, 6584, 591, 1, 0, 0, 0, 6585, 6586, 5, 194, 0, 0, 6586, 6587, 5, 135, 0, 0, 6587, 6591, 5, 104, 0, 0, 6588, 6589, 5, 65, 0, 0, 6589, 6591, 5, 391, 0, 0, 6590, 6585, 1, 0, 0, 0, 6590, 6588, 1, 0, 0, 0, 6591, 593, 1, 0, 0, 0, 6592, 6600, 3, 648, 324, 0, 6593, 6594, 5, 130, 0, 0, 6594, 6597, 5, 866, 0, 0, 6595, 6598, 3, 666, 333, 0, 6596, 6598, 5, 7, 0, 0, 6597, 6595, 1, 0, 0, 0, 6597, 6596, 1, 0, 0, 0, 6598, 6599, 1, 0, 0, 0, 6599, 6601, 5, 867, 0, 0, 6600, 6593, 1, 0, 0, 0, 6600, 6601, 1, 0, 0, 0, 6601, 6609, 1, 0, 0, 0, 6602, 6604, 7, 18, 0, 0, 6603, 6602, 1, 0, 0, 0, 6603, 6604, 1, 0, 0, 0, 6604, 6605, 1, 0, 0, 0, 6605, 6606, 5, 866, 0, 0, 6606, 6607, 3, 636, 318, 0, 6607, 6608, 5, 867, 0, 0, 6608, 6610, 1, 0, 0, 0, 6609, 6603, 1, 0, 0, 0, 6609, 6610, 1, 0, 0, 0, 6610, 6613, 1, 0, 0, 0, 6611, 6612, 5, 79, 0, 0, 6612, 6614, 5, 446, 0, 0, 6613, 6611, 1, 0, 0, 0, 6613, 6614, 1, 0, 0, 0, 6614, 595, 1, 0, 0, 0, 6615, 6616, 7, 104, 0, 0, 6616, 6619, 3, 648, 324, 0, 6617, 6620, 3, 658, 329, 0, 6618, 6620, 5, 882, 0, 0, 6619, 6617, 1, 0, 0, 0, 6619, 6618, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 597, 1, 0, 0, 0, 6621, 6627, 7, 104, 0, 0, 6622, 6628, 5, 392, 0, 0, 6623, 6628, 5, 528, 0, 0, 6624, 6625, 5, 826, 0, 0, 6625, 6626, 5, 857, 0, 0, 6626, 6628, 7, 105, 0, 0, 6627, 6622, 1, 0, 0, 0, 6627, 6623, 1, 0, 0, 0, 6627, 6624, 1, 0, 0, 0, 6627, 6628, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6630, 3, 620, 310, 0, 6630, 599, 1, 0, 0, 0, 6631, 6632, 7, 104, 0, 0, 6632, 6636, 5, 10, 0, 0, 6633, 6634, 5, 826, 0, 0, 6634, 6635, 5, 857, 0, 0, 6635, 6637, 5, 666, 0, 0, 6636, 6633, 1, 0, 0, 0, 6636, 6637, 1, 0, 0, 0, 6637, 6638, 1, 0, 0, 0, 6638, 6639, 3, 204, 102, 0, 6639, 601, 1, 0, 0, 0, 6640, 6641, 5, 419, 0, 0, 6641, 6642, 5, 882, 0, 0, 6642, 603, 1, 0, 0, 0, 6643, 6644, 5, 187, 0, 0, 6644, 6645, 3, 624, 312, 0, 6645, 605, 1, 0, 0, 0, 6646, 6654, 5, 158, 0, 0, 6647, 6649, 5, 164, 0, 0, 6648, 6650, 5, 682, 0, 0, 6649, 6648, 1, 0, 0, 0, 6649, 6650, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6655, 3, 712, 356, 0, 6652, 6655, 5, 889, 0, 0, 6653, 6655, 5, 890, 0, 0, 6654, 6647, 1, 0, 0, 0, 6654, 6652, 1, 0, 0, 0, 6654, 6653, 1, 0, 0, 0, 6655, 6665, 1, 0, 0, 0, 6656, 6657, 5, 155, 0, 0, 6657, 6662, 3, 610, 305, 0, 6658, 6659, 5, 868, 0, 0, 6659, 6661, 3, 610, 305, 0, 6660, 6658, 1, 0, 0, 0, 6661, 6664, 1, 0, 0, 0, 6662, 6660, 1, 0, 0, 0, 6662, 6663, 1, 0, 0, 0, 6663, 6666, 1, 0, 0, 0, 6664, 6662, 1, 0, 0, 0, 6665, 6656, 1, 0, 0, 0, 6665, 6666, 1, 0, 0, 0, 6666, 607, 1, 0, 0, 0, 6667, 6675, 5, 145, 0, 0, 6668, 6670, 5, 164, 0, 0, 6669, 6671, 5, 682, 0, 0, 6670, 6669, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 6672, 1, 0, 0, 0, 6672, 6676, 3, 712, 356, 0, 6673, 6676, 5, 889, 0, 0, 6674, 6676, 5, 890, 0, 0, 6675, 6668, 1, 0, 0, 0, 6675, 6673, 1, 0, 0, 0, 6675, 6674, 1, 0, 0, 0, 6675, 6676, 1, 0, 0, 0, 6676, 6686, 1, 0, 0, 0, 6677, 6678, 5, 155, 0, 0, 6678, 6683, 3, 610, 305, 0, 6679, 6680, 5, 868, 0, 0, 6680, 6682, 3, 610, 305, 0, 6681, 6679, 1, 0, 0, 0, 6682, 6685, 1, 0, 0, 0, 6683, 6681, 1, 0, 0, 0, 6683, 6684, 1, 0, 0, 0, 6684, 6687, 1, 0, 0, 0, 6685, 6683, 1, 0, 0, 0, 6686, 6677, 1, 0, 0, 0, 6686, 6687, 1, 0, 0, 0, 6687, 609, 1, 0, 0, 0, 6688, 6689, 7, 106, 0, 0, 6689, 6694, 5, 857, 0, 0, 6690, 6695, 3, 712, 356, 0, 6691, 6695, 5, 883, 0, 0, 6692, 6695, 3, 682, 341, 0, 6693, 6695, 3, 704, 352, 0, 6694, 6690, 1, 0, 0, 0, 6694, 6691, 1, 0, 0, 0, 6694, 6692, 1, 0, 0, 0, 6694, 6693, 1, 0, 0, 0, 6695, 611, 1, 0, 0, 0, 6696, 6698, 5, 194, 0, 0, 6697, 6699, 5, 552, 0, 0, 6698, 6697, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 1, 0, 0, 0, 6700, 6705, 3, 48, 24, 0, 6701, 6702, 5, 868, 0, 0, 6702, 6704, 3, 48, 24, 0, 6703, 6701, 1, 0, 0, 0, 6704, 6707, 1, 0, 0, 0, 6705, 6703, 1, 0, 0, 0, 6705, 6706, 1, 0, 0, 0, 6706, 613, 1, 0, 0, 0, 6707, 6705, 1, 0, 0, 0, 6708, 6709, 5, 173, 0, 0, 6709, 6711, 3, 648, 324, 0, 6710, 6712, 3, 252, 126, 0, 6711, 6710, 1, 0, 0, 0, 6711, 6712, 1, 0, 0, 0, 6712, 6714, 1, 0, 0, 0, 6713, 6715, 3, 312, 156, 0, 6714, 6713, 1, 0, 0, 0, 6714, 6715, 1, 0, 0, 0, 6715, 615, 1, 0, 0, 0, 6716, 6718, 5, 72, 0, 0, 6717, 6719, 7, 107, 0, 0, 6718, 6717, 1, 0, 0, 0, 6718, 6719, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6752, 5, 48, 0, 0, 6721, 6722, 3, 554, 277, 0, 6722, 6723, 5, 857, 0, 0, 6723, 6731, 7, 108, 0, 0, 6724, 6725, 5, 868, 0, 0, 6725, 6726, 3, 554, 277, 0, 6726, 6727, 5, 857, 0, 0, 6727, 6728, 7, 108, 0, 0, 6728, 6730, 1, 0, 0, 0, 6729, 6724, 1, 0, 0, 0, 6730, 6733, 1, 0, 0, 0, 6731, 6729, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6753, 1, 0, 0, 0, 6733, 6731, 1, 0, 0, 0, 6734, 6737, 5, 30, 0, 0, 6735, 6738, 3, 708, 354, 0, 6736, 6738, 3, 554, 277, 0, 6737, 6735, 1, 0, 0, 0, 6737, 6736, 1, 0, 0, 0, 6738, 6739, 1, 0, 0, 0, 6739, 6740, 3, 554, 277, 0, 6740, 6741, 5, 857, 0, 0, 6741, 6749, 3, 618, 309, 0, 6742, 6743, 5, 868, 0, 0, 6743, 6744, 3, 554, 277, 0, 6744, 6745, 5, 857, 0, 0, 6745, 6746, 3, 618, 309, 0, 6746, 6748, 1, 0, 0, 0, 6747, 6742, 1, 0, 0, 0, 6748, 6751, 1, 0, 0, 0, 6749, 6747, 1, 0, 0, 0, 6749, 6750, 1, 0, 0, 0, 6750, 6753, 1, 0, 0, 0, 6751, 6749, 1, 0, 0, 0, 6752, 6721, 1, 0, 0, 0, 6752, 6734, 1, 0, 0, 0, 6753, 617, 1, 0, 0, 0, 6754, 6755, 7, 109, 0, 0, 6755, 619, 1, 0, 0, 0, 6756, 6762, 3, 204, 102, 0, 6757, 6762, 3, 180, 90, 0, 6758, 6762, 3, 186, 93, 0, 6759, 6762, 3, 202, 101, 0, 6760, 6762, 3, 214, 107, 0, 6761, 6756, 1, 0, 0, 0, 6761, 6757, 1, 0, 0, 0, 6761, 6758, 1, 0, 0, 0, 6761, 6759, 1, 0, 0, 0, 6761, 6760, 1, 0, 0, 0, 6762, 6767, 1, 0, 0, 0, 6763, 6764, 5, 65, 0, 0, 6764, 6765, 5, 349, 0, 0, 6765, 6767, 3, 702, 351, 0, 6766, 6761, 1, 0, 0, 0, 6766, 6763, 1, 0, 0, 0, 6767, 621, 1, 0, 0, 0, 6768, 6769, 3, 698, 349, 0, 6769, 623, 1, 0, 0, 0, 6770, 6771, 3, 698, 349, 0, 6771, 625, 1, 0, 0, 0, 6772, 6773, 3, 698, 349, 0, 6773, 627, 1, 0, 0, 0, 6774, 6775, 3, 698, 349, 0, 6775, 629, 1, 0, 0, 0, 6776, 6777, 3, 698, 349, 0, 6777, 631, 1, 0, 0, 0, 6778, 6779, 3, 698, 349, 0, 6779, 633, 1, 0, 0, 0, 6780, 6781, 3, 702, 351, 0, 6781, 635, 1, 0, 0, 0, 6782, 6787, 3, 638, 319, 0, 6783, 6784, 5, 868, 0, 0, 6784, 6786, 3, 638, 319, 0, 6785, 6783, 1, 0, 0, 0, 6786, 6789, 1, 0, 0, 0, 6787, 6785, 1, 0, 0, 0, 6787, 6788, 1, 0, 0, 0, 6788, 637, 1, 0, 0, 0, 6789, 6787, 1, 0, 0, 0, 6790, 6791, 3, 702, 351, 0, 6791, 639, 1, 0, 0, 0, 6792, 6793, 3, 702, 351, 0, 6793, 641, 1, 0, 0, 0, 6794, 6795, 3, 702, 351, 0, 6795, 643, 1, 0, 0, 0, 6796, 6797, 3, 698, 349, 0, 6797, 645, 1, 0, 0, 0, 6798, 6803, 3, 648, 324, 0, 6799, 6800, 5, 868, 0, 0, 6800, 6802, 3, 648, 324, 0, 6801, 6799, 1, 0, 0, 0, 6802, 6805, 1, 0, 0, 0, 6803, 6801, 1, 0, 0, 0, 6803, 6804, 1, 0, 0, 0, 6804, 647, 1, 0, 0, 0, 6805, 6803, 1, 0, 0, 0, 6806, 6807, 3, 698, 349, 0, 6807, 649, 1, 0, 0, 0, 6808, 6813, 3, 652, 326, 0, 6809, 6810, 5, 868, 0, 0, 6810, 6812, 3, 652, 326, 0, 6811, 6809, 1, 0, 0, 0, 6812, 6815, 1, 0, 0, 0, 6813, 6811, 1, 0, 0, 0, 6813, 6814, 1, 0, 0, 0, 6814, 651, 1, 0, 0, 0, 6815, 6813, 1, 0, 0, 0, 6816, 6819, 3, 680, 340, 0, 6817, 6819, 3, 702, 351, 0, 6818, 6816, 1, 0, 0, 0, 6818, 6817, 1, 0, 0, 0, 6819, 653, 1, 0, 0, 0, 6820, 6825, 3, 702, 351, 0, 6821, 6823, 3, 706, 353, 0, 6822, 6824, 3, 706, 353, 0, 6823, 6822, 1, 0, 0, 0, 6823, 6824, 1, 0, 0, 0, 6824, 6826, 1, 0, 0, 0, 6825, 6821, 1, 0, 0, 0, 6825, 6826, 1, 0, 0, 0, 6826, 6835, 1, 0, 0, 0, 6827, 6829, 9, 0, 0, 0, 6828, 6827, 1, 0, 0, 0, 6828, 6829, 1, 0, 0, 0, 6829, 6830, 1, 0, 0, 0, 6830, 6832, 3, 706, 353, 0, 6831, 6833, 3, 706, 353, 0, 6832, 6831, 1, 0, 0, 0, 6832, 6833, 1, 0, 0, 0, 6833, 6835, 1, 0, 0, 0, 6834, 6820, 1, 0, 0, 0, 6834, 6828, 1, 0, 0, 0, 6835, 655, 1, 0, 0, 0, 6836, 6841, 3, 658, 329, 0, 6837, 6838, 5, 868, 0, 0, 6838, 6840, 3, 658, 329, 0, 6839, 6837, 1, 0, 0, 0, 6840, 6843, 1, 0, 0, 0, 6841, 6839, 1, 0, 0, 0, 6841, 6842, 1, 0, 0, 0, 6842, 657, 1, 0, 0, 0, 6843, 6841, 1, 0, 0, 0, 6844, 6849, 3, 702, 351, 0, 6845, 6847, 3, 706, 353, 0, 6846, 6848, 3, 706, 353, 0, 6847, 6846, 1, 0, 0, 0, 6847, 6848, 1, 0, 0, 0, 6848, 6850, 1, 0, 0, 0, 6849, 6845, 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6859, 1, 0, 0, 0, 6851, 6853, 9, 0, 0, 0, 6852, 6851, 1, 0, 0, 0, 6852, 6853, 1, 0, 0, 0, 6853, 6854, 1, 0, 0, 0, 6854, 6856, 3, 706, 353, 0, 6855, 6857, 3, 706, 353, 0, 6856, 6855, 1, 0, 0, 0, 6856, 6857, 1, 0, 0, 0, 6857, 6859, 1, 0, 0, 0, 6858, 6844, 1, 0, 0, 0, 6858, 6852, 1, 0, 0, 0, 6859, 659, 1, 0, 0, 0, 6860, 6861, 3, 702, 351, 0, 6861, 661, 1, 0, 0, 0, 6862, 6863, 3, 702, 351, 0, 6863, 663, 1, 0, 0, 0, 6864, 6865, 3, 702, 351, 0, 6865, 665, 1, 0, 0, 0, 6866, 6871, 3, 668, 334, 0, 6867, 6868, 5, 868, 0, 0, 6868, 6870, 3, 668, 334, 0, 6869, 6867, 1, 0, 0, 0, 6870, 6873, 1, 0, 0, 0, 6871, 6869, 1, 0, 0, 0, 6871, 6872, 1, 0, 0, 0, 6872, 667, 1, 0, 0, 0, 6873, 6871, 1, 0, 0, 0, 6874, 6875, 3, 702, 351, 0, 6875, 669, 1, 0, 0, 0, 6876, 6881, 3, 702, 351, 0, 6877, 6878, 5, 866, 0, 0, 6878, 6879, 3, 708, 354, 0, 6879, 6880, 5, 867, 0, 0, 6880, 6882, 1, 0, 0, 0, 6881, 6877, 1, 0, 0, 0, 6881, 6882, 1, 0, 0, 0, 6882, 6885, 1, 0, 0, 0, 6883, 6885, 3, 800, 400, 0, 6884, 6876, 1, 0, 0, 0, 6884, 6883, 1, 0, 0, 0, 6885, 6887, 1, 0, 0, 0, 6886, 6888, 7, 54, 0, 0, 6887, 6886, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 671, 1, 0, 0, 0, 6889, 6890, 3, 674, 337, 0, 6890, 6891, 5, 878, 0, 0, 6891, 6892, 3, 708, 354, 0, 6892, 673, 1, 0, 0, 0, 6893, 6894, 3, 676, 338, 0, 6894, 6895, 5, 891, 0, 0, 6895, 675, 1, 0, 0, 0, 6896, 6901, 5, 882, 0, 0, 6897, 6901, 5, 889, 0, 0, 6898, 6901, 5, 704, 0, 0, 6899, 6901, 3, 830, 415, 0, 6900, 6896, 1, 0, 0, 0, 6900, 6897, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6900, 6899, 1, 0, 0, 0, 6901, 677, 1, 0, 0, 0, 6902, 6903, 7, 110, 0, 0, 6903, 679, 1, 0, 0, 0, 6904, 6906, 3, 676, 338, 0, 6905, 6907, 3, 678, 339, 0, 6906, 6905, 1, 0, 0, 0, 6906, 6907, 1, 0, 0, 0, 6907, 6910, 1, 0, 0, 0, 6908, 6910, 3, 56, 28, 0, 6909, 6904, 1, 0, 0, 0, 6909, 6908, 1, 0, 0, 0, 6910, 681, 1, 0, 0, 0, 6911, 6912, 7, 111, 0, 0, 6912, 683, 1, 0, 0, 0, 6913, 6918, 5, 228, 0, 0, 6914, 6918, 3, 820, 410, 0, 6915, 6918, 5, 882, 0, 0, 6916, 6918, 5, 879, 0, 0, 6917, 6913, 1, 0, 0, 0, 6917, 6914, 1, 0, 0, 0, 6917, 6915, 1, 0, 0, 0, 6917, 6916, 1, 0, 0, 0, 6918, 685, 1, 0, 0, 0, 6919, 6920, 3, 702, 351, 0, 6920, 687, 1, 0, 0, 0, 6921, 6925, 3, 690, 345, 0, 6922, 6925, 5, 889, 0, 0, 6923, 6925, 5, 882, 0, 0, 6924, 6921, 1, 0, 0, 0, 6924, 6922, 1, 0, 0, 0, 6924, 6923, 1, 0, 0, 0, 6925, 689, 1, 0, 0, 0, 6926, 6927, 7, 112, 0, 0, 6927, 691, 1, 0, 0, 0, 6928, 6929, 3, 708, 354, 0, 6929, 6930, 5, 854, 0, 0, 6930, 6931, 3, 708, 354, 0, 6931, 6932, 5, 854, 0, 0, 6932, 6933, 3, 708, 354, 0, 6933, 6934, 5, 854, 0, 0, 6934, 6935, 3, 708, 354, 0, 6935, 6936, 5, 854, 0, 0, 6936, 6942, 3, 708, 354, 0, 6937, 6938, 5, 878, 0, 0, 6938, 6939, 3, 708, 354, 0, 6939, 6940, 5, 854, 0, 0, 6940, 6941, 3, 708, 354, 0, 6941, 6943, 1, 0, 0, 0, 6942, 6937, 1, 0, 0, 0, 6943, 6944, 1, 0, 0, 0, 6944, 6942, 1, 0, 0, 0, 6944, 6945, 1, 0, 0, 0, 6945, 693, 1, 0, 0, 0, 6946, 6953, 3, 696, 348, 0, 6947, 6948, 5, 868, 0, 0, 6948, 6951, 3, 696, 348, 0, 6949, 6950, 5, 868, 0, 0, 6950, 6952, 3, 708, 354, 0, 6951, 6949, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 6954, 1, 0, 0, 0, 6953, 6947, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 695, 1, 0, 0, 0, 6955, 6963, 5, 882, 0, 0, 6956, 6963, 5, 887, 0, 0, 6957, 6959, 5, 884, 0, 0, 6958, 6957, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6958, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 6963, 1, 0, 0, 0, 6962, 6955, 1, 0, 0, 0, 6962, 6956, 1, 0, 0, 0, 6962, 6958, 1, 0, 0, 0, 6963, 697, 1, 0, 0, 0, 6964, 6966, 3, 702, 351, 0, 6965, 6967, 3, 706, 353, 0, 6966, 6965, 1, 0, 0, 0, 6966, 6967, 1, 0, 0, 0, 6967, 699, 1, 0, 0, 0, 6968, 6973, 3, 702, 351, 0, 6969, 6970, 5, 868, 0, 0, 6970, 6972, 3, 702, 351, 0, 6971, 6969, 1, 0, 0, 0, 6972, 6975, 1, 0, 0, 0, 6973, 6971, 1, 0, 0, 0, 6973, 6974, 1, 0, 0, 0, 6974, 701, 1, 0, 0, 0, 6975, 6973, 1, 0, 0, 0, 6976, 6980, 3, 704, 352, 0, 6977, 6980, 5, 879, 0, 0, 6978, 6980, 5, 882, 0, 0, 6979, 6976, 1, 0, 0, 0, 6979, 6977, 1, 0, 0, 0, 6979, 6978, 1, 0, 0, 0, 6980, 703, 1, 0, 0, 0, 6981, 6991, 5, 889, 0, 0, 6982, 6991, 3, 820, 410, 0, 6983, 6991, 3, 822, 411, 0, 6984, 6991, 3, 690, 345, 0, 6985, 6991, 3, 824, 412, 0, 6986, 6991, 3, 826, 413, 0, 6987, 6991, 3, 828, 414, 0, 6988, 6991, 3, 830, 415, 0, 6989, 6991, 3, 792, 396, 0, 6990, 6981, 1, 0, 0, 0, 6990, 6982, 1, 0, 0, 0, 6990, 6983, 1, 0, 0, 0, 6990, 6984, 1, 0, 0, 0, 6990, 6985, 1, 0, 0, 0, 6990, 6986, 1, 0, 0, 0, 6990, 6987, 1, 0, 0, 0, 6990, 6988, 1, 0, 0, 0, 6990, 6989, 1, 0, 0, 0, 6991, 705, 1, 0, 0, 0, 6992, 6993, 5, 865, 0, 0, 6993, 6997, 5, 889, 0, 0, 6994, 6995, 5, 865, 0, 0, 6995, 6997, 3, 702, 351, 0, 6996, 6992, 1, 0, 0, 0, 6996, 6994, 1, 0, 0, 0, 6997, 707, 1, 0, 0, 0, 6998, 6999, 7, 113, 0, 0, 6999, 709, 1, 0, 0, 0, 7000, 7003, 5, 880, 0, 0, 7001, 7003, 3, 708, 354, 0, 7002, 7000, 1, 0, 0, 0, 7002, 7001, 1, 0, 0, 0, 7003, 711, 1, 0, 0, 0, 7004, 7006, 5, 888, 0, 0, 7005, 7004, 1, 0, 0, 0, 7005, 7006, 1, 0, 0, 0, 7006, 7007, 1, 0, 0, 0, 7007, 7010, 5, 882, 0, 0, 7008, 7010, 5, 881, 0, 0, 7009, 7005, 1, 0, 0, 0, 7009, 7008, 1, 0, 0, 0, 7010, 7012, 1, 0, 0, 0, 7011, 7013, 5, 882, 0, 0, 7012, 7011, 1, 0, 0, 0, 7013, 7014, 1, 0, 0, 0, 7014, 7012, 1, 0, 0, 0, 7014, 7015, 1, 0, 0, 0, 7015, 7028, 1, 0, 0, 0, 7016, 7018, 5, 888, 0, 0, 7017, 7016, 1, 0, 0, 0, 7017, 7018, 1, 0, 0, 0, 7018, 7019, 1, 0, 0, 0, 7019, 7022, 5, 882, 0, 0, 7020, 7022, 5, 881, 0, 0, 7021, 7017, 1, 0, 0, 0, 7021, 7020, 1, 0, 0, 0, 7022, 7025, 1, 0, 0, 0, 7023, 7024, 5, 28, 0, 0, 7024, 7026, 3, 686, 343, 0, 7025, 7023, 1, 0, 0, 0, 7025, 7026, 1, 0, 0, 0, 7026, 7028, 1, 0, 0, 0, 7027, 7009, 1, 0, 0, 0, 7027, 7021, 1, 0, 0, 0, 7028, 713, 1, 0, 0, 0, 7029, 7030, 7, 114, 0, 0, 7030, 715, 1, 0, 0, 0, 7031, 7033, 5, 888, 0, 0, 7032, 7031, 1, 0, 0, 0, 7032, 7033, 1, 0, 0, 0, 7033, 7034, 1, 0, 0, 0, 7034, 7035, 5, 884, 0, 0, 7035, 717, 1, 0, 0, 0, 7036, 7038, 5, 114, 0, 0, 7037, 7036, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 7039, 1, 0, 0, 0, 7039, 7040, 7, 115, 0, 0, 7040, 719, 1, 0, 0, 0, 7041, 7054, 3, 712, 356, 0, 7042, 7054, 3, 708, 354, 0, 7043, 7044, 5, 854, 0, 0, 7044, 7054, 3, 708, 354, 0, 7045, 7054, 3, 716, 358, 0, 7046, 7054, 3, 714, 357, 0, 7047, 7054, 5, 885, 0, 0, 7048, 7054, 5, 887, 0, 0, 7049, 7051, 5, 114, 0, 0, 7050, 7049, 1, 0, 0, 0, 7050, 7051, 1, 0, 0, 0, 7051, 7052, 1, 0, 0, 0, 7052, 7054, 7, 115, 0, 0, 7053, 7041, 1, 0, 0, 0, 7053, 7042, 1, 0, 0, 0, 7053, 7043, 1, 0, 0, 0, 7053, 7045, 1, 0, 0, 0, 7053, 7046, 1, 0, 0, 0, 7053, 7047, 1, 0, 0, 0, 7053, 7048, 1, 0, 0, 0, 7053, 7050, 1, 0, 0, 0, 7054, 721, 1, 0, 0, 0, 7055, 7057, 7, 116, 0, 0, 7056, 7058, 5, 240, 0, 0, 7057, 7056, 1, 0, 0, 0, 7057, 7058, 1, 0, 0, 0, 7058, 7060, 1, 0, 0, 0, 7059, 7061, 3, 728, 364, 0, 7060, 7059, 1, 0, 0, 0, 7060, 7061, 1, 0, 0, 0, 7061, 7063, 1, 0, 0, 0, 7062, 7064, 5, 228, 0, 0, 7063, 7062, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7068, 1, 0, 0, 0, 7065, 7066, 3, 54, 27, 0, 7066, 7067, 3, 684, 342, 0, 7067, 7069, 1, 0, 0, 0, 7068, 7065, 1, 0, 0, 0, 7068, 7069, 1, 0, 0, 0, 7069, 7073, 1, 0, 0, 0, 7070, 7071, 5, 28, 0, 0, 7071, 7074, 3, 686, 343, 0, 7072, 7074, 5, 228, 0, 0, 7073, 7070, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7073, 7074, 1, 0, 0, 0, 7074, 7182, 1, 0, 0, 0, 7075, 7076, 5, 227, 0, 0, 7076, 7077, 7, 117, 0, 0, 7077, 7079, 5, 240, 0, 0, 7078, 7080, 3, 728, 364, 0, 7079, 7078, 1, 0, 0, 0, 7079, 7080, 1, 0, 0, 0, 7080, 7082, 1, 0, 0, 0, 7081, 7083, 5, 228, 0, 0, 7082, 7081, 1, 0, 0, 0, 7082, 7083, 1, 0, 0, 0, 7083, 7182, 1, 0, 0, 0, 7084, 7085, 5, 227, 0, 0, 7085, 7087, 7, 118, 0, 0, 7086, 7088, 3, 728, 364, 0, 7087, 7086, 1, 0, 0, 0, 7087, 7088, 1, 0, 0, 0, 7088, 7090, 1, 0, 0, 0, 7089, 7091, 5, 228, 0, 0, 7090, 7089, 1, 0, 0, 0, 7090, 7091, 1, 0, 0, 0, 7091, 7182, 1, 0, 0, 0, 7092, 7093, 5, 498, 0, 0, 7093, 7095, 5, 225, 0, 0, 7094, 7096, 3, 728, 364, 0, 7095, 7094, 1, 0, 0, 0, 7095, 7096, 1, 0, 0, 0, 7096, 7098, 1, 0, 0, 0, 7097, 7099, 5, 228, 0, 0, 7098, 7097, 1, 0, 0, 0, 7098, 7099, 1, 0, 0, 0, 7099, 7182, 1, 0, 0, 0, 7100, 7102, 7, 119, 0, 0, 7101, 7103, 3, 728, 364, 0, 7102, 7101, 1, 0, 0, 0, 7102, 7103, 1, 0, 0, 0, 7103, 7107, 1, 0, 0, 0, 7104, 7106, 7, 120, 0, 0, 7105, 7104, 1, 0, 0, 0, 7106, 7109, 1, 0, 0, 0, 7107, 7105, 1, 0, 0, 0, 7107, 7108, 1, 0, 0, 0, 7108, 7182, 1, 0, 0, 0, 7109, 7107, 1, 0, 0, 0, 7110, 7112, 5, 210, 0, 0, 7111, 7113, 3, 730, 365, 0, 7112, 7111, 1, 0, 0, 0, 7112, 7113, 1, 0, 0, 0, 7113, 7117, 1, 0, 0, 0, 7114, 7116, 7, 120, 0, 0, 7115, 7114, 1, 0, 0, 0, 7116, 7119, 1, 0, 0, 0, 7117, 7115, 1, 0, 0, 0, 7117, 7118, 1, 0, 0, 0, 7118, 7182, 1, 0, 0, 0, 7119, 7117, 1, 0, 0, 0, 7120, 7122, 5, 211, 0, 0, 7121, 7123, 5, 212, 0, 0, 7122, 7121, 1, 0, 0, 0, 7122, 7123, 1, 0, 0, 0, 7123, 7125, 1, 0, 0, 0, 7124, 7126, 3, 730, 365, 0, 7125, 7124, 1, 0, 0, 0, 7125, 7126, 1, 0, 0, 0, 7126, 7130, 1, 0, 0, 0, 7127, 7129, 7, 120, 0, 0, 7128, 7127, 1, 0, 0, 0, 7129, 7132, 1, 0, 0, 0, 7130, 7128, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7182, 1, 0, 0, 0, 7132, 7130, 1, 0, 0, 0, 7133, 7135, 7, 121, 0, 0, 7134, 7136, 3, 732, 366, 0, 7135, 7134, 1, 0, 0, 0, 7135, 7136, 1, 0, 0, 0, 7136, 7140, 1, 0, 0, 0, 7137, 7139, 7, 120, 0, 0, 7138, 7137, 1, 0, 0, 0, 7139, 7142, 1, 0, 0, 0, 7140, 7138, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7182, 1, 0, 0, 0, 7142, 7140, 1, 0, 0, 0, 7143, 7182, 7, 122, 0, 0, 7144, 7146, 7, 123, 0, 0, 7145, 7147, 3, 728, 364, 0, 7146, 7145, 1, 0, 0, 0, 7146, 7147, 1, 0, 0, 0, 7147, 7182, 1, 0, 0, 0, 7148, 7149, 7, 124, 0, 0, 7149, 7151, 3, 724, 362, 0, 7150, 7152, 5, 228, 0, 0, 7151, 7150, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7156, 1, 0, 0, 0, 7153, 7154, 3, 54, 27, 0, 7154, 7155, 3, 684, 342, 0, 7155, 7157, 1, 0, 0, 0, 7156, 7153, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7182, 1, 0, 0, 0, 7158, 7161, 7, 125, 0, 0, 7159, 7160, 5, 834, 0, 0, 7160, 7162, 3, 708, 354, 0, 7161, 7159, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7182, 1, 0, 0, 0, 7163, 7165, 5, 233, 0, 0, 7164, 7166, 5, 225, 0, 0, 7165, 7164, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7168, 1, 0, 0, 0, 7167, 7169, 5, 228, 0, 0, 7168, 7167, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7173, 1, 0, 0, 0, 7170, 7171, 3, 54, 27, 0, 7171, 7172, 3, 684, 342, 0, 7172, 7174, 1, 0, 0, 0, 7173, 7170, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7177, 1, 0, 0, 0, 7175, 7176, 5, 28, 0, 0, 7176, 7178, 3, 686, 343, 0, 7177, 7175, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7182, 1, 0, 0, 0, 7179, 7180, 5, 233, 0, 0, 7180, 7182, 5, 229, 0, 0, 7181, 7055, 1, 0, 0, 0, 7181, 7075, 1, 0, 0, 0, 7181, 7084, 1, 0, 0, 0, 7181, 7092, 1, 0, 0, 0, 7181, 7100, 1, 0, 0, 0, 7181, 7110, 1, 0, 0, 0, 7181, 7120, 1, 0, 0, 0, 7181, 7133, 1, 0, 0, 0, 7181, 7143, 1, 0, 0, 0, 7181, 7144, 1, 0, 0, 0, 7181, 7148, 1, 0, 0, 0, 7181, 7158, 1, 0, 0, 0, 7181, 7163, 1, 0, 0, 0, 7181, 7179, 1, 0, 0, 0, 7182, 723, 1, 0, 0, 0, 7183, 7184, 5, 866, 0, 0, 7184, 7189, 5, 882, 0, 0, 7185, 7186, 5, 868, 0, 0, 7186, 7188, 5, 882, 0, 0, 7187, 7185, 1, 0, 0, 0, 7188, 7191, 1, 0, 0, 0, 7189, 7187, 1, 0, 0, 0, 7189, 7190, 1, 0, 0, 0, 7190, 7192, 1, 0, 0, 0, 7191, 7189, 1, 0, 0, 0, 7192, 7193, 5, 867, 0, 0, 7193, 725, 1, 0, 0, 0, 7194, 7196, 7, 126, 0, 0, 7195, 7197, 3, 728, 364, 0, 7196, 7195, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7217, 1, 0, 0, 0, 7198, 7200, 5, 224, 0, 0, 7199, 7201, 3, 728, 364, 0, 7200, 7199, 1, 0, 0, 0, 7200, 7201, 1, 0, 0, 0, 7201, 7205, 1, 0, 0, 0, 7202, 7203, 3, 54, 27, 0, 7203, 7204, 3, 684, 342, 0, 7204, 7206, 1, 0, 0, 0, 7205, 7202, 1, 0, 0, 0, 7205, 7206, 1, 0, 0, 0, 7206, 7217, 1, 0, 0, 0, 7207, 7217, 7, 127, 0, 0, 7208, 7210, 7, 128, 0, 0, 7209, 7211, 3, 732, 366, 0, 7210, 7209, 1, 0, 0, 0, 7210, 7211, 1, 0, 0, 0, 7211, 7217, 1, 0, 0, 0, 7212, 7214, 7, 129, 0, 0, 7213, 7215, 7, 130, 0, 0, 7214, 7213, 1, 0, 0, 0, 7214, 7215, 1, 0, 0, 0, 7215, 7217, 1, 0, 0, 0, 7216, 7194, 1, 0, 0, 0, 7216, 7198, 1, 0, 0, 0, 7216, 7207, 1, 0, 0, 0, 7216, 7208, 1, 0, 0, 0, 7216, 7212, 1, 0, 0, 0, 7217, 7219, 1, 0, 0, 0, 7218, 7220, 5, 12, 0, 0, 7219, 7218, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 727, 1, 0, 0, 0, 7221, 7222, 5, 866, 0, 0, 7222, 7223, 3, 708, 354, 0, 7223, 7224, 5, 867, 0, 0, 7224, 729, 1, 0, 0, 0, 7225, 7226, 5, 866, 0, 0, 7226, 7227, 3, 708, 354, 0, 7227, 7228, 5, 868, 0, 0, 7228, 7229, 3, 708, 354, 0, 7229, 7230, 5, 867, 0, 0, 7230, 731, 1, 0, 0, 0, 7231, 7232, 5, 866, 0, 0, 7232, 7235, 3, 708, 354, 0, 7233, 7234, 5, 868, 0, 0, 7234, 7236, 3, 708, 354, 0, 7235, 7233, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7238, 5, 867, 0, 0, 7238, 733, 1, 0, 0, 0, 7239, 7240, 5, 866, 0, 0, 7240, 7245, 3, 670, 335, 0, 7241, 7242, 5, 868, 0, 0, 7242, 7244, 3, 670, 335, 0, 7243, 7241, 1, 0, 0, 0, 7244, 7247, 1, 0, 0, 0, 7245, 7243, 1, 0, 0, 0, 7245, 7246, 1, 0, 0, 0, 7246, 7248, 1, 0, 0, 0, 7247, 7245, 1, 0, 0, 0, 7248, 7249, 5, 867, 0, 0, 7249, 735, 1, 0, 0, 0, 7250, 7255, 3, 800, 400, 0, 7251, 7252, 5, 868, 0, 0, 7252, 7254, 3, 800, 400, 0, 7253, 7251, 1, 0, 0, 0, 7254, 7257, 1, 0, 0, 0, 7255, 7253, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 737, 1, 0, 0, 0, 7257, 7255, 1, 0, 0, 0, 7258, 7259, 7, 131, 0, 0, 7259, 7264, 3, 740, 370, 0, 7260, 7261, 5, 868, 0, 0, 7261, 7263, 3, 740, 370, 0, 7262, 7260, 1, 0, 0, 0, 7263, 7266, 1, 0, 0, 0, 7264, 7262, 1, 0, 0, 0, 7264, 7265, 1, 0, 0, 0, 7265, 739, 1, 0, 0, 0, 7266, 7264, 1, 0, 0, 0, 7267, 7268, 5, 866, 0, 0, 7268, 7273, 3, 742, 371, 0, 7269, 7270, 5, 868, 0, 0, 7270, 7272, 3, 742, 371, 0, 7271, 7269, 1, 0, 0, 0, 7272, 7275, 1, 0, 0, 0, 7273, 7271, 1, 0, 0, 0, 7273, 7274, 1, 0, 0, 0, 7274, 7276, 1, 0, 0, 0, 7275, 7273, 1, 0, 0, 0, 7276, 7277, 5, 867, 0, 0, 7277, 741, 1, 0, 0, 0, 7278, 7281, 3, 800, 400, 0, 7279, 7281, 5, 42, 0, 0, 7280, 7278, 1, 0, 0, 0, 7280, 7279, 1, 0, 0, 0, 7281, 743, 1, 0, 0, 0, 7282, 7287, 3, 720, 360, 0, 7283, 7284, 5, 868, 0, 0, 7284, 7286, 3, 720, 360, 0, 7285, 7283, 1, 0, 0, 0, 7286, 7289, 1, 0, 0, 0, 7287, 7285, 1, 0, 0, 0, 7287, 7288, 1, 0, 0, 0, 7288, 745, 1, 0, 0, 0, 7289, 7287, 1, 0, 0, 0, 7290, 7295, 5, 882, 0, 0, 7291, 7292, 5, 868, 0, 0, 7292, 7294, 5, 882, 0, 0, 7293, 7291, 1, 0, 0, 0, 7294, 7297, 1, 0, 0, 0, 7295, 7293, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 747, 1, 0, 0, 0, 7297, 7295, 1, 0, 0, 0, 7298, 7303, 5, 892, 0, 0, 7299, 7300, 5, 868, 0, 0, 7300, 7302, 5, 892, 0, 0, 7301, 7299, 1, 0, 0, 0, 7302, 7305, 1, 0, 0, 0, 7303, 7301, 1, 0, 0, 0, 7303, 7304, 1, 0, 0, 0, 7304, 749, 1, 0, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 7333, 5, 116, 0, 0, 7307, 7308, 5, 24, 0, 0, 7308, 7309, 5, 866, 0, 0, 7309, 7310, 3, 800, 400, 0, 7310, 7311, 5, 13, 0, 0, 7311, 7312, 3, 726, 363, 0, 7312, 7313, 5, 867, 0, 0, 7313, 7333, 1, 0, 0, 0, 7314, 7316, 3, 806, 403, 0, 7315, 7314, 1, 0, 0, 0, 7315, 7316, 1, 0, 0, 0, 7316, 7317, 1, 0, 0, 0, 7317, 7333, 3, 720, 360, 0, 7318, 7322, 3, 752, 376, 0, 7319, 7320, 5, 119, 0, 0, 7320, 7321, 5, 185, 0, 0, 7321, 7323, 3, 752, 376, 0, 7322, 7319, 1, 0, 0, 0, 7322, 7323, 1, 0, 0, 0, 7323, 7333, 1, 0, 0, 0, 7324, 7325, 5, 866, 0, 0, 7325, 7326, 3, 800, 400, 0, 7326, 7327, 5, 867, 0, 0, 7327, 7333, 1, 0, 0, 0, 7328, 7329, 5, 866, 0, 0, 7329, 7330, 3, 698, 349, 0, 7330, 7331, 5, 867, 0, 0, 7331, 7333, 1, 0, 0, 0, 7332, 7306, 1, 0, 0, 0, 7332, 7307, 1, 0, 0, 0, 7332, 7315, 1, 0, 0, 0, 7332, 7318, 1, 0, 0, 0, 7332, 7324, 1, 0, 0, 0, 7332, 7328, 1, 0, 0, 0, 7333, 751, 1, 0, 0, 0, 7334, 7340, 7, 132, 0, 0, 7335, 7337, 5, 866, 0, 0, 7336, 7338, 3, 708, 354, 0, 7337, 7336, 1, 0, 0, 0, 7337, 7338, 1, 0, 0, 0, 7338, 7339, 1, 0, 0, 0, 7339, 7341, 5, 867, 0, 0, 7340, 7335, 1, 0, 0, 0, 7340, 7341, 1, 0, 0, 0, 7341, 7349, 1, 0, 0, 0, 7342, 7343, 5, 295, 0, 0, 7343, 7345, 5, 866, 0, 0, 7344, 7346, 3, 708, 354, 0, 7345, 7344, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 7347, 1, 0, 0, 0, 7347, 7349, 5, 867, 0, 0, 7348, 7334, 1, 0, 0, 0, 7348, 7342, 1, 0, 0, 0, 7349, 753, 1, 0, 0, 0, 7350, 7351, 5, 78, 0, 0, 7351, 7352, 5, 60, 0, 0, 7352, 755, 1, 0, 0, 0, 7353, 7354, 5, 78, 0, 0, 7354, 7355, 5, 114, 0, 0, 7355, 7356, 5, 60, 0, 0, 7356, 757, 1, 0, 0, 0, 7357, 7358, 5, 124, 0, 0, 7358, 7359, 5, 143, 0, 0, 7359, 759, 1, 0, 0, 0, 7360, 7379, 3, 762, 381, 0, 7361, 7379, 3, 770, 385, 0, 7362, 7379, 3, 772, 386, 0, 7363, 7364, 3, 792, 396, 0, 7364, 7366, 5, 866, 0, 0, 7365, 7367, 3, 796, 398, 0, 7366, 7365, 1, 0, 0, 0, 7366, 7367, 1, 0, 0, 0, 7367, 7368, 1, 0, 0, 0, 7368, 7369, 5, 867, 0, 0, 7369, 7379, 1, 0, 0, 0, 7370, 7371, 3, 628, 314, 0, 7371, 7373, 5, 866, 0, 0, 7372, 7374, 3, 796, 398, 0, 7373, 7372, 1, 0, 0, 0, 7373, 7374, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 7376, 5, 867, 0, 0, 7376, 7379, 1, 0, 0, 0, 7377, 7379, 3, 794, 397, 0, 7378, 7360, 1, 0, 0, 0, 7378, 7361, 1, 0, 0, 0, 7378, 7362, 1, 0, 0, 0, 7378, 7363, 1, 0, 0, 0, 7378, 7370, 1, 0, 0, 0, 7378, 7377, 1, 0, 0, 0, 7379, 761, 1, 0, 0, 0, 7380, 7383, 7, 133, 0, 0, 7381, 7382, 5, 866, 0, 0, 7382, 7384, 5, 867, 0, 0, 7383, 7381, 1, 0, 0, 0, 7383, 7384, 1, 0, 0, 0, 7384, 7560, 1, 0, 0, 0, 7385, 7560, 3, 56, 28, 0, 7386, 7387, 5, 33, 0, 0, 7387, 7388, 5, 866, 0, 0, 7388, 7389, 3, 800, 400, 0, 7389, 7390, 5, 868, 0, 0, 7390, 7391, 3, 726, 363, 0, 7391, 7392, 5, 867, 0, 0, 7392, 7560, 1, 0, 0, 0, 7393, 7394, 5, 33, 0, 0, 7394, 7395, 5, 866, 0, 0, 7395, 7396, 3, 800, 400, 0, 7396, 7397, 5, 188, 0, 0, 7397, 7398, 3, 684, 342, 0, 7398, 7399, 5, 867, 0, 0, 7399, 7560, 1, 0, 0, 0, 7400, 7401, 5, 24, 0, 0, 7401, 7402, 5, 866, 0, 0, 7402, 7403, 3, 800, 400, 0, 7403, 7404, 5, 13, 0, 0, 7404, 7405, 3, 726, 363, 0, 7405, 7406, 5, 867, 0, 0, 7406, 7560, 1, 0, 0, 0, 7407, 7408, 5, 189, 0, 0, 7408, 7409, 5, 866, 0, 0, 7409, 7410, 3, 658, 329, 0, 7410, 7411, 5, 867, 0, 0, 7411, 7560, 1, 0, 0, 0, 7412, 7413, 5, 23, 0, 0, 7413, 7415, 3, 800, 400, 0, 7414, 7416, 3, 764, 382, 0, 7415, 7414, 1, 0, 0, 0, 7416, 7417, 1, 0, 0, 0, 7417, 7415, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 7421, 1, 0, 0, 0, 7419, 7420, 5, 53, 0, 0, 7420, 7422, 3, 798, 399, 0, 7421, 7419, 1, 0, 0, 0, 7421, 7422, 1, 0, 0, 0, 7422, 7423, 1, 0, 0, 0, 7423, 7424, 5, 378, 0, 0, 7424, 7560, 1, 0, 0, 0, 7425, 7427, 5, 23, 0, 0, 7426, 7428, 3, 764, 382, 0, 7427, 7426, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7429, 7430, 1, 0, 0, 0, 7430, 7433, 1, 0, 0, 0, 7431, 7432, 5, 53, 0, 0, 7432, 7434, 3, 798, 399, 0, 7433, 7431, 1, 0, 0, 0, 7433, 7434, 1, 0, 0, 0, 7434, 7435, 1, 0, 0, 0, 7435, 7436, 5, 378, 0, 0, 7436, 7560, 1, 0, 0, 0, 7437, 7438, 5, 224, 0, 0, 7438, 7439, 5, 866, 0, 0, 7439, 7442, 3, 796, 398, 0, 7440, 7441, 5, 188, 0, 0, 7441, 7443, 3, 684, 342, 0, 7442, 7440, 1, 0, 0, 0, 7442, 7443, 1, 0, 0, 0, 7443, 7444, 1, 0, 0, 0, 7444, 7445, 5, 867, 0, 0, 7445, 7560, 1, 0, 0, 0, 7446, 7447, 5, 296, 0, 0, 7447, 7450, 5, 866, 0, 0, 7448, 7451, 3, 712, 356, 0, 7449, 7451, 3, 800, 400, 0, 7450, 7448, 1, 0, 0, 0, 7450, 7449, 1, 0, 0, 0, 7451, 7452, 1, 0, 0, 0, 7452, 7455, 5, 80, 0, 0, 7453, 7456, 3, 712, 356, 0, 7454, 7456, 3, 800, 400, 0, 7455, 7453, 1, 0, 0, 0, 7455, 7454, 1, 0, 0, 0, 7456, 7457, 1, 0, 0, 0, 7457, 7458, 5, 867, 0, 0, 7458, 7560, 1, 0, 0, 0, 7459, 7460, 7, 134, 0, 0, 7460, 7463, 5, 866, 0, 0, 7461, 7464, 3, 712, 356, 0, 7462, 7464, 3, 800, 400, 0, 7463, 7461, 1, 0, 0, 0, 7463, 7462, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7468, 5, 68, 0, 0, 7466, 7469, 3, 708, 354, 0, 7467, 7469, 3, 800, 400, 0, 7468, 7466, 1, 0, 0, 0, 7468, 7467, 1, 0, 0, 0, 7469, 7475, 1, 0, 0, 0, 7470, 7473, 5, 65, 0, 0, 7471, 7474, 3, 708, 354, 0, 7472, 7474, 3, 800, 400, 0, 7473, 7471, 1, 0, 0, 0, 7473, 7472, 1, 0, 0, 0, 7474, 7476, 1, 0, 0, 0, 7475, 7470, 1, 0, 0, 0, 7475, 7476, 1, 0, 0, 0, 7476, 7477, 1, 0, 0, 0, 7477, 7478, 5, 867, 0, 0, 7478, 7560, 1, 0, 0, 0, 7479, 7480, 5, 300, 0, 0, 7480, 7481, 5, 866, 0, 0, 7481, 7484, 7, 135, 0, 0, 7482, 7485, 3, 712, 356, 0, 7483, 7485, 3, 800, 400, 0, 7484, 7482, 1, 0, 0, 0, 7484, 7483, 1, 0, 0, 0, 7484, 7485, 1, 0, 0, 0, 7485, 7486, 1, 0, 0, 0, 7486, 7489, 5, 68, 0, 0, 7487, 7490, 3, 712, 356, 0, 7488, 7490, 3, 800, 400, 0, 7489, 7487, 1, 0, 0, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7492, 5, 867, 0, 0, 7492, 7560, 1, 0, 0, 0, 7493, 7494, 5, 300, 0, 0, 7494, 7497, 5, 866, 0, 0, 7495, 7498, 3, 712, 356, 0, 7496, 7498, 3, 800, 400, 0, 7497, 7495, 1, 0, 0, 0, 7497, 7496, 1, 0, 0, 0, 7498, 7499, 1, 0, 0, 0, 7499, 7502, 5, 68, 0, 0, 7500, 7503, 3, 712, 356, 0, 7501, 7503, 3, 800, 400, 0, 7502, 7500, 1, 0, 0, 0, 7502, 7501, 1, 0, 0, 0, 7503, 7504, 1, 0, 0, 0, 7504, 7505, 5, 867, 0, 0, 7505, 7560, 1, 0, 0, 0, 7506, 7507, 5, 840, 0, 0, 7507, 7510, 5, 866, 0, 0, 7508, 7511, 3, 712, 356, 0, 7509, 7511, 3, 800, 400, 0, 7510, 7508, 1, 0, 0, 0, 7510, 7509, 1, 0, 0, 0, 7511, 7518, 1, 0, 0, 0, 7512, 7513, 5, 13, 0, 0, 7513, 7514, 7, 136, 0, 0, 7514, 7515, 5, 866, 0, 0, 7515, 7516, 3, 708, 354, 0, 7516, 7517, 5, 867, 0, 0, 7517, 7519, 1, 0, 0, 0, 7518, 7512, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7521, 1, 0, 0, 0, 7520, 7522, 3, 766, 383, 0, 7521, 7520, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 7523, 1, 0, 0, 0, 7523, 7524, 5, 867, 0, 0, 7524, 7560, 1, 0, 0, 0, 7525, 7526, 5, 293, 0, 0, 7526, 7527, 5, 866, 0, 0, 7527, 7528, 3, 66, 33, 0, 7528, 7531, 5, 68, 0, 0, 7529, 7532, 3, 712, 356, 0, 7530, 7532, 3, 800, 400, 0, 7531, 7529, 1, 0, 0, 0, 7531, 7530, 1, 0, 0, 0, 7532, 7533, 1, 0, 0, 0, 7533, 7534, 5, 867, 0, 0, 7534, 7560, 1, 0, 0, 0, 7535, 7536, 5, 827, 0, 0, 7536, 7537, 5, 866, 0, 0, 7537, 7538, 7, 137, 0, 0, 7538, 7539, 5, 868, 0, 0, 7539, 7540, 3, 712, 356, 0, 7540, 7541, 5, 867, 0, 0, 7541, 7560, 1, 0, 0, 0, 7542, 7543, 5, 254, 0, 0, 7543, 7544, 5, 866, 0, 0, 7544, 7545, 3, 800, 400, 0, 7545, 7546, 5, 868, 0, 0, 7546, 7549, 3, 800, 400, 0, 7547, 7548, 5, 579, 0, 0, 7548, 7550, 3, 726, 363, 0, 7549, 7547, 1, 0, 0, 0, 7549, 7550, 1, 0, 0, 0, 7550, 7552, 1, 0, 0, 0, 7551, 7553, 3, 286, 143, 0, 7552, 7551, 1, 0, 0, 0, 7552, 7553, 1, 0, 0, 0, 7553, 7555, 1, 0, 0, 0, 7554, 7556, 3, 288, 144, 0, 7555, 7554, 1, 0, 0, 0, 7555, 7556, 1, 0, 0, 0, 7556, 7557, 1, 0, 0, 0, 7557, 7558, 5, 867, 0, 0, 7558, 7560, 1, 0, 0, 0, 7559, 7380, 1, 0, 0, 0, 7559, 7385, 1, 0, 0, 0, 7559, 7386, 1, 0, 0, 0, 7559, 7393, 1, 0, 0, 0, 7559, 7400, 1, 0, 0, 0, 7559, 7407, 1, 0, 0, 0, 7559, 7412, 1, 0, 0, 0, 7559, 7425, 1, 0, 0, 0, 7559, 7437, 1, 0, 0, 0, 7559, 7446, 1, 0, 0, 0, 7559, 7459, 1, 0, 0, 0, 7559, 7479, 1, 0, 0, 0, 7559, 7493, 1, 0, 0, 0, 7559, 7506, 1, 0, 0, 0, 7559, 7525, 1, 0, 0, 0, 7559, 7535, 1, 0, 0, 0, 7559, 7542, 1, 0, 0, 0, 7560, 763, 1, 0, 0, 0, 7561, 7562, 5, 191, 0, 0, 7562, 7563, 3, 798, 399, 0, 7563, 7564, 5, 175, 0, 0, 7564, 7565, 3, 798, 399, 0, 7565, 765, 1, 0, 0, 0, 7566, 7567, 5, 448, 0, 0, 7567, 7572, 3, 768, 384, 0, 7568, 7569, 5, 868, 0, 0, 7569, 7571, 3, 768, 384, 0, 7570, 7568, 1, 0, 0, 0, 7571, 7574, 1, 0, 0, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7573, 1, 0, 0, 0, 7573, 7581, 1, 0, 0, 0, 7574, 7572, 1, 0, 0, 0, 7575, 7576, 5, 448, 0, 0, 7576, 7577, 3, 708, 354, 0, 7577, 7578, 5, 854, 0, 0, 7578, 7579, 3, 708, 354, 0, 7579, 7581, 1, 0, 0, 0, 7580, 7566, 1, 0, 0, 0, 7580, 7575, 1, 0, 0, 0, 7581, 767, 1, 0, 0, 0, 7582, 7584, 3, 708, 354, 0, 7583, 7585, 7, 138, 0, 0, 7584, 7583, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 769, 1, 0, 0, 0, 7586, 7587, 7, 139, 0, 0, 7587, 7589, 5, 866, 0, 0, 7588, 7590, 7, 44, 0, 0, 7589, 7588, 1, 0, 0, 0, 7589, 7590, 1, 0, 0, 0, 7590, 7591, 1, 0, 0, 0, 7591, 7592, 3, 798, 399, 0, 7592, 7594, 5, 867, 0, 0, 7593, 7595, 3, 774, 387, 0, 7594, 7593, 1, 0, 0, 0, 7594, 7595, 1, 0, 0, 0, 7595, 7646, 1, 0, 0, 0, 7596, 7597, 5, 262, 0, 0, 7597, 7605, 5, 866, 0, 0, 7598, 7606, 5, 850, 0, 0, 7599, 7601, 5, 7, 0, 0, 7600, 7599, 1, 0, 0, 0, 7600, 7601, 1, 0, 0, 0, 7601, 7602, 1, 0, 0, 0, 7602, 7606, 3, 798, 399, 0, 7603, 7604, 5, 49, 0, 0, 7604, 7606, 3, 796, 398, 0, 7605, 7598, 1, 0, 0, 0, 7605, 7600, 1, 0, 0, 0, 7605, 7603, 1, 0, 0, 0, 7606, 7607, 1, 0, 0, 0, 7607, 7609, 5, 867, 0, 0, 7608, 7610, 3, 774, 387, 0, 7609, 7608, 1, 0, 0, 0, 7609, 7610, 1, 0, 0, 0, 7610, 7646, 1, 0, 0, 0, 7611, 7612, 7, 140, 0, 0, 7612, 7614, 5, 866, 0, 0, 7613, 7615, 5, 7, 0, 0, 7614, 7613, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 7616, 1, 0, 0, 0, 7616, 7617, 3, 798, 399, 0, 7617, 7619, 5, 867, 0, 0, 7618, 7620, 3, 774, 387, 0, 7619, 7618, 1, 0, 0, 0, 7619, 7620, 1, 0, 0, 0, 7620, 7646, 1, 0, 0, 0, 7621, 7622, 5, 266, 0, 0, 7622, 7624, 5, 866, 0, 0, 7623, 7625, 5, 49, 0, 0, 7624, 7623, 1, 0, 0, 0, 7624, 7625, 1, 0, 0, 0, 7625, 7626, 1, 0, 0, 0, 7626, 7637, 3, 796, 398, 0, 7627, 7628, 5, 125, 0, 0, 7628, 7629, 5, 20, 0, 0, 7629, 7634, 3, 254, 127, 0, 7630, 7631, 5, 868, 0, 0, 7631, 7633, 3, 254, 127, 0, 7632, 7630, 1, 0, 0, 0, 7633, 7636, 1, 0, 0, 0, 7634, 7632, 1, 0, 0, 0, 7634, 7635, 1, 0, 0, 0, 7635, 7638, 1, 0, 0, 0, 7636, 7634, 1, 0, 0, 0, 7637, 7627, 1, 0, 0, 0, 7637, 7638, 1, 0, 0, 0, 7638, 7641, 1, 0, 0, 0, 7639, 7640, 5, 156, 0, 0, 7640, 7642, 5, 882, 0, 0, 7641, 7639, 1, 0, 0, 0, 7641, 7642, 1, 0, 0, 0, 7642, 7643, 1, 0, 0, 0, 7643, 7644, 5, 867, 0, 0, 7644, 7646, 1, 0, 0, 0, 7645, 7586, 1, 0, 0, 0, 7645, 7596, 1, 0, 0, 0, 7645, 7611, 1, 0, 0, 0, 7645, 7621, 1, 0, 0, 0, 7646, 771, 1, 0, 0, 0, 7647, 7648, 7, 141, 0, 0, 7648, 7649, 5, 866, 0, 0, 7649, 7652, 3, 800, 400, 0, 7650, 7651, 5, 868, 0, 0, 7651, 7653, 3, 708, 354, 0, 7652, 7650, 1, 0, 0, 0, 7652, 7653, 1, 0, 0, 0, 7653, 7656, 1, 0, 0, 0, 7654, 7655, 5, 868, 0, 0, 7655, 7657, 3, 708, 354, 0, 7656, 7654, 1, 0, 0, 0, 7656, 7657, 1, 0, 0, 0, 7657, 7658, 1, 0, 0, 0, 7658, 7659, 5, 867, 0, 0, 7659, 7660, 3, 774, 387, 0, 7660, 7686, 1, 0, 0, 0, 7661, 7662, 7, 142, 0, 0, 7662, 7663, 5, 866, 0, 0, 7663, 7664, 3, 800, 400, 0, 7664, 7665, 5, 867, 0, 0, 7665, 7666, 3, 774, 387, 0, 7666, 7686, 1, 0, 0, 0, 7667, 7668, 7, 143, 0, 0, 7668, 7669, 5, 866, 0, 0, 7669, 7670, 5, 867, 0, 0, 7670, 7686, 3, 774, 387, 0, 7671, 7672, 5, 273, 0, 0, 7672, 7673, 5, 866, 0, 0, 7673, 7674, 3, 800, 400, 0, 7674, 7675, 5, 868, 0, 0, 7675, 7676, 3, 708, 354, 0, 7676, 7677, 5, 867, 0, 0, 7677, 7678, 3, 774, 387, 0, 7678, 7686, 1, 0, 0, 0, 7679, 7680, 5, 272, 0, 0, 7680, 7681, 5, 866, 0, 0, 7681, 7682, 3, 708, 354, 0, 7682, 7683, 5, 867, 0, 0, 7683, 7684, 3, 774, 387, 0, 7684, 7686, 1, 0, 0, 0, 7685, 7647, 1, 0, 0, 0, 7685, 7661, 1, 0, 0, 0, 7685, 7667, 1, 0, 0, 0, 7685, 7671, 1, 0, 0, 0, 7685, 7679, 1, 0, 0, 0, 7686, 773, 1, 0, 0, 0, 7687, 7693, 5, 129, 0, 0, 7688, 7689, 5, 866, 0, 0, 7689, 7690, 3, 776, 388, 0, 7690, 7691, 5, 867, 0, 0, 7691, 7694, 1, 0, 0, 0, 7692, 7694, 3, 778, 389, 0, 7693, 7688, 1, 0, 0, 0, 7693, 7692, 1, 0, 0, 0, 7694, 775, 1, 0, 0, 0, 7695, 7697, 3, 778, 389, 0, 7696, 7695, 1, 0, 0, 0, 7696, 7697, 1, 0, 0, 0, 7697, 7699, 1, 0, 0, 0, 7698, 7700, 3, 790, 395, 0, 7699, 7698, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 7702, 1, 0, 0, 0, 7701, 7703, 3, 252, 126, 0, 7702, 7701, 1, 0, 0, 0, 7702, 7703, 1, 0, 0, 0, 7703, 7705, 1, 0, 0, 0, 7704, 7706, 3, 780, 390, 0, 7705, 7704, 1, 0, 0, 0, 7705, 7706, 1, 0, 0, 0, 7706, 777, 1, 0, 0, 0, 7707, 7708, 3, 702, 351, 0, 7708, 779, 1, 0, 0, 0, 7709, 7710, 3, 782, 391, 0, 7710, 7711, 3, 784, 392, 0, 7711, 781, 1, 0, 0, 0, 7712, 7713, 7, 144, 0, 0, 7713, 783, 1, 0, 0, 0, 7714, 7717, 3, 788, 394, 0, 7715, 7717, 3, 786, 393, 0, 7716, 7714, 1, 0, 0, 0, 7716, 7715, 1, 0, 0, 0, 7717, 785, 1, 0, 0, 0, 7718, 7719, 5, 17, 0, 0, 7719, 7720, 3, 788, 394, 0, 7720, 7721, 5, 11, 0, 0, 7721, 7722, 3, 788, 394, 0, 7722, 787, 1, 0, 0, 0, 7723, 7724, 5, 36, 0, 0, 7724, 7731, 5, 586, 0, 0, 7725, 7726, 5, 669, 0, 0, 7726, 7731, 7, 145, 0, 0, 7727, 7728, 3, 800, 400, 0, 7728, 7729, 7, 145, 0, 0, 7729, 7731, 1, 0, 0, 0, 7730, 7723, 1, 0, 0, 0, 7730, 7725, 1, 0, 0, 0, 7730, 7727, 1, 0, 0, 0, 7731, 789, 1, 0, 0, 0, 7732, 7733, 5, 130, 0, 0, 7733, 7734, 5, 20, 0, 0, 7734, 7739, 3, 800, 400, 0, 7735, 7736, 5, 868, 0, 0, 7736, 7738, 3, 800, 400, 0, 7737, 7735, 1, 0, 0, 0, 7738, 7741, 1, 0, 0, 0, 7739, 7737, 1, 0, 0, 0, 7739, 7740, 1, 0, 0, 0, 7740, 791, 1, 0, 0, 0, 7741, 7739, 1, 0, 0, 0, 7742, 7767, 3, 832, 416, 0, 7743, 7767, 5, 757, 0, 0, 7744, 7767, 5, 289, 0, 0, 7745, 7767, 5, 285, 0, 0, 7746, 7767, 5, 286, 0, 0, 7747, 7767, 5, 287, 0, 0, 7748, 7767, 5, 290, 0, 0, 7749, 7767, 5, 291, 0, 0, 7750, 7767, 5, 292, 0, 0, 7751, 7767, 5, 78, 0, 0, 7752, 7767, 5, 86, 0, 0, 7753, 7767, 5, 288, 0, 0, 7754, 7767, 5, 294, 0, 0, 7755, 7767, 5, 488, 0, 0, 7756, 7767, 5, 295, 0, 0, 7757, 7767, 5, 142, 0, 0, 7758, 7767, 5, 143, 0, 0, 7759, 7767, 5, 297, 0, 0, 7760, 7767, 5, 298, 0, 0, 7761, 7767, 5, 299, 0, 0, 7762, 7767, 5, 300, 0, 0, 7763, 7767, 5, 301, 0, 0, 7764, 7767, 5, 302, 0, 0, 7765, 7767, 5, 303, 0, 0, 7766, 7742, 1, 0, 0, 0, 7766, 7743, 1, 0, 0, 0, 7766, 7744, 1, 0, 0, 0, 7766, 7745, 1, 0, 0, 0, 7766, 7746, 1, 0, 0, 0, 7766, 7747, 1, 0, 0, 0, 7766, 7748, 1, 0, 0, 0, 7766, 7749, 1, 0, 0, 0, 7766, 7750, 1, 0, 0, 0, 7766, 7751, 1, 0, 0, 0, 7766, 7752, 1, 0, 0, 0, 7766, 7753, 1, 0, 0, 0, 7766, 7754, 1, 0, 0, 0, 7766, 7755, 1, 0, 0, 0, 7766, 7756, 1, 0, 0, 0, 7766, 7757, 1, 0, 0, 0, 7766, 7758, 1, 0, 0, 0, 7766, 7759, 1, 0, 0, 0, 7766, 7760, 1, 0, 0, 0, 7766, 7761, 1, 0, 0, 0, 7766, 7762, 1, 0, 0, 0, 7766, 7763, 1, 0, 0, 0, 7766, 7764, 1, 0, 0, 0, 7766, 7765, 1, 0, 0, 0, 7767, 793, 1, 0, 0, 0, 7768, 7769, 7, 146, 0, 0, 7769, 7770, 5, 866, 0, 0, 7770, 7771, 3, 798, 399, 0, 7771, 7772, 5, 867, 0, 0, 7772, 795, 1, 0, 0, 0, 7773, 7778, 3, 798, 399, 0, 7774, 7775, 5, 868, 0, 0, 7775, 7777, 3, 798, 399, 0, 7776, 7774, 1, 0, 0, 0, 7777, 7780, 1, 0, 0, 0, 7778, 7776, 1, 0, 0, 0, 7778, 7779, 1, 0, 0, 0, 7779, 797, 1, 0, 0, 0, 7780, 7778, 1, 0, 0, 0, 7781, 7786, 3, 720, 360, 0, 7782, 7786, 3, 658, 329, 0, 7783, 7786, 3, 760, 380, 0, 7784, 7786, 3, 800, 400, 0, 7785, 7781, 1, 0, 0, 0, 7785, 7782, 1, 0, 0, 0, 7785, 7783, 1, 0, 0, 0, 7785, 7784, 1, 0, 0, 0, 7786, 799, 1, 0, 0, 0, 7787, 7788, 6, 400, -1, 0, 7788, 7789, 7, 147, 0, 0, 7789, 7799, 3, 800, 400, 4, 7790, 7791, 3, 802, 401, 0, 7791, 7793, 5, 89, 0, 0, 7792, 7794, 5, 114, 0, 0, 7793, 7792, 1, 0, 0, 0, 7793, 7794, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7796, 7, 148, 0, 0, 7796, 7799, 1, 0, 0, 0, 7797, 7799, 3, 802, 401, 0, 7798, 7787, 1, 0, 0, 0, 7798, 7790, 1, 0, 0, 0, 7798, 7797, 1, 0, 0, 0, 7799, 7806, 1, 0, 0, 0, 7800, 7801, 10, 3, 0, 0, 7801, 7802, 3, 812, 406, 0, 7802, 7803, 3, 800, 400, 4, 7803, 7805, 1, 0, 0, 0, 7804, 7800, 1, 0, 0, 0, 7805, 7808, 1, 0, 0, 0, 7806, 7804, 1, 0, 0, 0, 7806, 7807, 1, 0, 0, 0, 7807, 801, 1, 0, 0, 0, 7808, 7806, 1, 0, 0, 0, 7809, 7810, 6, 401, -1, 0, 7810, 7811, 3, 804, 402, 0, 7811, 7876, 1, 0, 0, 0, 7812, 7813, 10, 8, 0, 0, 7813, 7814, 3, 808, 404, 0, 7814, 7815, 3, 802, 401, 9, 7815, 7875, 1, 0, 0, 0, 7816, 7818, 10, 6, 0, 0, 7817, 7819, 5, 114, 0, 0, 7818, 7817, 1, 0, 0, 0, 7818, 7819, 1, 0, 0, 0, 7819, 7820, 1, 0, 0, 0, 7820, 7821, 5, 17, 0, 0, 7821, 7822, 3, 802, 401, 0, 7822, 7823, 5, 11, 0, 0, 7823, 7824, 3, 802, 401, 7, 7824, 7875, 1, 0, 0, 0, 7825, 7826, 10, 5, 0, 0, 7826, 7827, 5, 604, 0, 0, 7827, 7828, 5, 99, 0, 0, 7828, 7875, 3, 802, 401, 6, 7829, 7831, 10, 3, 0, 0, 7830, 7832, 5, 114, 0, 0, 7831, 7830, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 7833, 1, 0, 0, 0, 7833, 7834, 7, 149, 0, 0, 7834, 7875, 3, 802, 401, 4, 7835, 7837, 10, 10, 0, 0, 7836, 7838, 5, 114, 0, 0, 7837, 7836, 1, 0, 0, 0, 7837, 7838, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7840, 5, 80, 0, 0, 7840, 7843, 5, 866, 0, 0, 7841, 7844, 3, 204, 102, 0, 7842, 7844, 3, 736, 368, 0, 7843, 7841, 1, 0, 0, 0, 7843, 7842, 1, 0, 0, 0, 7844, 7845, 1, 0, 0, 0, 7845, 7846, 5, 867, 0, 0, 7846, 7875, 1, 0, 0, 0, 7847, 7848, 10, 9, 0, 0, 7848, 7849, 5, 89, 0, 0, 7849, 7875, 3, 718, 359, 0, 7850, 7851, 10, 7, 0, 0, 7851, 7852, 3, 808, 404, 0, 7852, 7853, 7, 150, 0, 0, 7853, 7854, 5, 866, 0, 0, 7854, 7855, 3, 204, 102, 0, 7855, 7856, 5, 867, 0, 0, 7856, 7875, 1, 0, 0, 0, 7857, 7859, 10, 4, 0, 0, 7858, 7860, 5, 114, 0, 0, 7859, 7858, 1, 0, 0, 0, 7859, 7860, 1, 0, 0, 0, 7860, 7861, 1, 0, 0, 0, 7861, 7862, 5, 99, 0, 0, 7862, 7865, 3, 802, 401, 0, 7863, 7864, 5, 384, 0, 0, 7864, 7866, 5, 882, 0, 0, 7865, 7863, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7875, 1, 0, 0, 0, 7867, 7868, 10, 2, 0, 0, 7868, 7869, 5, 485, 0, 0, 7869, 7870, 5, 510, 0, 0, 7870, 7871, 5, 866, 0, 0, 7871, 7872, 3, 802, 401, 0, 7872, 7873, 5, 867, 0, 0, 7873, 7875, 1, 0, 0, 0, 7874, 7812, 1, 0, 0, 0, 7874, 7816, 1, 0, 0, 0, 7874, 7825, 1, 0, 0, 0, 7874, 7829, 1, 0, 0, 0, 7874, 7835, 1, 0, 0, 0, 7874, 7847, 1, 0, 0, 0, 7874, 7850, 1, 0, 0, 0, 7874, 7857, 1, 0, 0, 0, 7874, 7867, 1, 0, 0, 0, 7875, 7878, 1, 0, 0, 0, 7876, 7874, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 803, 1, 0, 0, 0, 7878, 7876, 1, 0, 0, 0, 7879, 7880, 6, 402, -1, 0, 7880, 7928, 3, 720, 360, 0, 7881, 7928, 3, 658, 329, 0, 7882, 7928, 3, 760, 380, 0, 7883, 7928, 3, 682, 341, 0, 7884, 7885, 3, 806, 403, 0, 7885, 7886, 3, 804, 402, 11, 7886, 7928, 1, 0, 0, 0, 7887, 7888, 5, 228, 0, 0, 7888, 7928, 3, 804, 402, 10, 7889, 7890, 5, 892, 0, 0, 7890, 7891, 5, 841, 0, 0, 7891, 7928, 3, 804, 402, 9, 7892, 7893, 5, 866, 0, 0, 7893, 7898, 3, 800, 400, 0, 7894, 7895, 5, 868, 0, 0, 7895, 7897, 3, 800, 400, 0, 7896, 7894, 1, 0, 0, 0, 7897, 7900, 1, 0, 0, 0, 7898, 7896, 1, 0, 0, 0, 7898, 7899, 1, 0, 0, 0, 7899, 7901, 1, 0, 0, 0, 7900, 7898, 1, 0, 0, 0, 7901, 7902, 5, 867, 0, 0, 7902, 7928, 1, 0, 0, 0, 7903, 7904, 5, 586, 0, 0, 7904, 7905, 5, 866, 0, 0, 7905, 7908, 3, 800, 400, 0, 7906, 7907, 5, 868, 0, 0, 7907, 7909, 3, 800, 400, 0, 7908, 7906, 1, 0, 0, 0, 7909, 7910, 1, 0, 0, 0, 7910, 7908, 1, 0, 0, 0, 7910, 7911, 1, 0, 0, 0, 7911, 7912, 1, 0, 0, 0, 7912, 7913, 5, 867, 0, 0, 7913, 7928, 1, 0, 0, 0, 7914, 7915, 5, 60, 0, 0, 7915, 7916, 5, 866, 0, 0, 7916, 7917, 3, 204, 102, 0, 7917, 7918, 5, 867, 0, 0, 7918, 7928, 1, 0, 0, 0, 7919, 7920, 5, 866, 0, 0, 7920, 7921, 3, 204, 102, 0, 7921, 7922, 5, 867, 0, 0, 7922, 7928, 1, 0, 0, 0, 7923, 7924, 5, 87, 0, 0, 7924, 7925, 3, 800, 400, 0, 7925, 7926, 3, 66, 33, 0, 7926, 7928, 1, 0, 0, 0, 7927, 7879, 1, 0, 0, 0, 7927, 7881, 1, 0, 0, 0, 7927, 7882, 1, 0, 0, 0, 7927, 7883, 1, 0, 0, 0, 7927, 7884, 1, 0, 0, 0, 7927, 7887, 1, 0, 0, 0, 7927, 7889, 1, 0, 0, 0, 7927, 7892, 1, 0, 0, 0, 7927, 7903, 1, 0, 0, 0, 7927, 7914, 1, 0, 0, 0, 7927, 7919, 1, 0, 0, 0, 7927, 7923, 1, 0, 0, 0, 7928, 7946, 1, 0, 0, 0, 7929, 7930, 10, 3, 0, 0, 7930, 7931, 3, 814, 407, 0, 7931, 7932, 3, 804, 402, 4, 7932, 7945, 1, 0, 0, 0, 7933, 7934, 10, 2, 0, 0, 7934, 7935, 3, 816, 408, 0, 7935, 7936, 3, 804, 402, 3, 7936, 7945, 1, 0, 0, 0, 7937, 7938, 10, 1, 0, 0, 7938, 7939, 3, 818, 409, 0, 7939, 7940, 3, 804, 402, 2, 7940, 7945, 1, 0, 0, 0, 7941, 7942, 10, 13, 0, 0, 7942, 7943, 5, 28, 0, 0, 7943, 7945, 3, 686, 343, 0, 7944, 7929, 1, 0, 0, 0, 7944, 7933, 1, 0, 0, 0, 7944, 7937, 1, 0, 0, 0, 7944, 7941, 1, 0, 0, 0, 7945, 7948, 1, 0, 0, 0, 7946, 7944, 1, 0, 0, 0, 7946, 7947, 1, 0, 0, 0, 7947, 805, 1, 0, 0, 0, 7948, 7946, 1, 0, 0, 0, 7949, 7950, 7, 151, 0, 0, 7950, 807, 1, 0, 0, 0, 7951, 7960, 3, 810, 405, 0, 7952, 7953, 5, 859, 0, 0, 7953, 7960, 5, 858, 0, 0, 7954, 7955, 5, 860, 0, 0, 7955, 7960, 5, 857, 0, 0, 7956, 7957, 5, 859, 0, 0, 7957, 7958, 5, 857, 0, 0, 7958, 7960, 5, 858, 0, 0, 7959, 7951, 1, 0, 0, 0, 7959, 7952, 1, 0, 0, 0, 7959, 7954, 1, 0, 0, 0, 7959, 7956, 1, 0, 0, 0, 7960, 809, 1, 0, 0, 0, 7961, 7969, 5, 857, 0, 0, 7962, 7969, 5, 858, 0, 0, 7963, 7969, 5, 859, 0, 0, 7964, 7965, 5, 859, 0, 0, 7965, 7969, 5, 857, 0, 0, 7966, 7967, 5, 858, 0, 0, 7967, 7969, 5, 857, 0, 0, 7968, 7961, 1, 0, 0, 0, 7968, 7962, 1, 0, 0, 0, 7968, 7963, 1, 0, 0, 0, 7968, 7964, 1, 0, 0, 0, 7968, 7966, 1, 0, 0, 0, 7969, 811, 1, 0, 0, 0, 7970, 7978, 5, 11, 0, 0, 7971, 7972, 5, 863, 0, 0, 7972, 7978, 5, 863, 0, 0, 7973, 7978, 5, 196, 0, 0, 7974, 7978, 5, 124, 0, 0, 7975, 7976, 5, 862, 0, 0, 7976, 7978, 5, 862, 0, 0, 7977, 7970, 1, 0, 0, 0, 7977, 7971, 1, 0, 0, 0, 7977, 7973, 1, 0, 0, 0, 7977, 7974, 1, 0, 0, 0, 7977, 7975, 1, 0, 0, 0, 7978, 813, 1, 0, 0, 0, 7979, 7980, 5, 859, 0, 0, 7980, 7987, 5, 859, 0, 0, 7981, 7982, 5, 858, 0, 0, 7982, 7987, 5, 858, 0, 0, 7983, 7987, 5, 863, 0, 0, 7984, 7987, 5, 864, 0, 0, 7985, 7987, 5, 862, 0, 0, 7986, 7979, 1, 0, 0, 0, 7986, 7981, 1, 0, 0, 0, 7986, 7983, 1, 0, 0, 0, 7986, 7984, 1, 0, 0, 0, 7986, 7985, 1, 0, 0, 0, 7987, 815, 1, 0, 0, 0, 7988, 7989, 7, 152, 0, 0, 7989, 817, 1, 0, 0, 0, 7990, 7991, 5, 854, 0, 0, 7991, 7996, 5, 858, 0, 0, 7992, 7993, 5, 854, 0, 0, 7993, 7994, 5, 858, 0, 0, 7994, 7996, 5, 858, 0, 0, 7995, 7990, 1, 0, 0, 0, 7995, 7992, 1, 0, 0, 0, 7996, 819, 1, 0, 0, 0, 7997, 7998, 7, 153, 0, 0, 7998, 821, 1, 0, 0, 0, 7999, 8000, 7, 154, 0, 0, 8000, 823, 1, 0, 0, 0, 8001, 8002, 7, 155, 0, 0, 8002, 825, 1, 0, 0, 0, 8003, 8004, 7, 156, 0, 0, 8004, 827, 1, 0, 0, 0, 8005, 8006, 7, 157, 0, 0, 8006, 829, 1, 0, 0, 0, 8007, 8008, 7, 158, 0, 0, 8008, 831, 1, 0, 0, 0, 8009, 8010, 7, 159, 0, 0, 8010, 833, 1, 0, 0, 0, 1152, 837, 844, 847, 856, 899, 918, 929, 945, 950, 962, 997, 1007, 1012, 1018, 1023, 1027, 1036, 1039, 1042, 1046, 1053, 1056, 1061, 1069, 1074, 1079, 1082, 1084, 1096, 1099, 1103, 1106, 1110, 1113, 1117, 1120, 1123, 1127, 1130, 1134, 1140, 1144, 1149, 1155, 1162, 1170, 1188, 1195, 1199, 1205, 1210, 1213, 1216, 1220, 1224, 1228, 1232, 1237, 1240, 1243, 1246, 1249, 1255, 1259, 1269, 1271, 1275, 1282, 1286, 1289, 1294, 1298, 1301, 1305, 1308, 1312, 1325, 1328, 1332, 1335, 1339, 1342, 1346, 1349, 1353, 1356, 1359, 1363, 1366, 1370, 1376, 1380, 1392, 1398, 1409, 1414, 1422, 1426, 1431, 1434, 1439, 1447, 1452, 1458, 1463, 1467, 1469, 1472, 1476, 1480, 1483, 1487, 1491, 1495, 1501, 1504, 1511, 1516, 1522, 1529, 1535, 1543, 1546, 1553, 1556, 1558, 1564, 1570, 1587, 1594, 1601, 1613, 1618, 1621, 1624, 1634, 1647, 1652, 1668, 1676, 1686, 1689, 1695, 1700, 1703, 1709, 1713, 1718, 1724, 1728, 1732, 1735, 1738, 1744, 1748, 1753, 1764, 1767, 1774, 1777, 1781, 1787, 1799, 1802, 1807, 1820, 1827, 1833, 1838, 1842, 1845, 1853, 1861, 1863, 1873, 1877, 1880, 1884, 1889, 1894, 1899, 1903, 1907, 1911, 1915, 1919, 1923, 1928, 1933, 1938, 1944, 1949, 1954, 1959, 1964, 1969, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2017, 2022, 2027, 2032, 2036, 2041, 2049, 2054, 2060, 2072, 2079, 2081, 2089, 2094, 2097, 2105, 2111, 2115, 2128, 2140, 2142, 2145, 2153, 2159, 2165, 2178, 2185, 2194, 2199, 2210, 2219, 2224, 2236, 2243, 2252, 2257, 2269, 2276, 2285, 2290, 2297, 2306, 2311, 2313, 2318, 2326, 2335, 2339, 2342, 2346, 2351, 2357, 2363, 2368, 2373, 2378, 2383, 2386, 2391, 2396, 2406, 2410, 2417, 2422, 2425, 2430, 2433, 2437, 2441, 2449, 2468, 2471, 2474, 2478, 2488, 2501, 2514, 2517, 2523, 2526, 2530, 2539, 2542, 2545, 2550, 2554, 2557, 2561, 2565, 2568, 2572, 2575, 2579, 2582, 2588, 2591, 2596, 2604, 2610, 2614, 2618, 2623, 2628, 2635, 2639, 2650, 2658, 2661, 2667, 2673, 2676, 2682, 2688, 2690, 2695, 2701, 2707, 2709, 2713, 2716, 2719, 2725, 2731, 2733, 2738, 2745, 2754, 2757, 2761, 2766, 2776, 2785, 2793, 2796, 2804, 2807, 2814, 2819, 2827, 2843, 2848, 2855, 2874, 2880, 2890, 2902, 2909, 2916, 2931, 2944, 2950, 2956, 2962, 2968, 2974, 2980, 2985, 2992, 2999, 3006, 3011, 3014, 3016, 3025, 3032, 3039, 3046, 3055, 3061, 3065, 3069, 3073, 3079, 3082, 3087, 3094, 3101, 3105, 3110, 3120, 3128, 3134, 3143, 3152, 3161, 3164, 3168, 3177, 3181, 3184, 3187, 3193, 3196, 3199, 3203, 3206, 3209, 3212, 3223, 3226, 3231, 3237, 3242, 3247, 3250, 3254, 3259, 3262, 3267, 3277, 3282, 3288, 3290, 3296, 3298, 3304, 3312, 3317, 3325, 3328, 3333, 3336, 3341, 3349, 3355, 3359, 3361, 3367, 3375, 3380, 3388, 3391, 3396, 3399, 3403, 3406, 3409, 3413, 3416, 3424, 3430, 3434, 3440, 3445, 3449, 3451, 3457, 3461, 3464, 3467, 3470, 3476, 3481, 3484, 3487, 3490, 3493, 3495, 3498, 3502, 3505, 3508, 3516, 3522, 3525, 3527, 3536, 3541, 3548, 3551, 3554, 3558, 3562, 3568, 3572, 3579, 3583, 3586, 3589, 3594, 3601, 3611, 3620, 3629, 3639, 3642, 3646, 3652, 3656, 3659, 3662, 3667, 3670, 3677, 3681, 3684, 3688, 3692, 3695, 3698, 3703, 3709, 3713, 3723, 3729, 3733, 3739, 3743, 3749, 3752, 3764, 3768, 3772, 3780, 3784, 3798, 3803, 3806, 3810, 3813, 3821, 3826, 3829, 3832, 3836, 3839, 3848, 3853, 3862, 3867, 3874, 3881, 3889, 3895, 3903, 3906, 3909, 3916, 3919, 3922, 3929, 3932, 3936, 3942, 3952, 3956, 3965, 3968, 3972, 3978, 3986, 3991, 3995, 4001, 4007, 4010, 4012, 4016, 4025, 4035, 4041, 4046, 4050, 4053, 4056, 4059, 4062, 4065, 4069, 4073, 4081, 4085, 4088, 4090, 4103, 4106, 4113, 4123, 4126, 4131, 4133, 4137, 4145, 4151, 4160, 4173, 4177, 4183, 4188, 4192, 4195, 4199, 4202, 4210, 4213, 4215, 4223, 4235, 4241, 4243, 4249, 4251, 4253, 4259, 4267, 4275, 4279, 4283, 4292, 4297, 4317, 4322, 4328, 4335, 4340, 4349, 4352, 4356, 4360, 4364, 4367, 4370, 4373, 4377, 4381, 4384, 4387, 4390, 4397, 4401, 4416, 4429, 4437, 4447, 4451, 4454, 4460, 4463, 4466, 4475, 4484, 4494, 4498, 4508, 4512, 4523, 4527, 4536, 4545, 4548, 4552, 4557, 4561, 4570, 4573, 4576, 4583, 4589, 4595, 4621, 4624, 4627, 4646, 4648, 4671, 4674, 4677, 4696, 4698, 4712, 4725, 4762, 4767, 4802, 4816, 4823, 4827, 4833, 4841, 4843, 4854, 4864, 4871, 4877, 4885, 4890, 4898, 4906, 4914, 4922, 4928, 4933, 4938, 4943, 4949, 4951, 4962, 4967, 4974, 4976, 4990, 4996, 5001, 5006, 5012, 5019, 5027, 5035, 5040, 5046, 5049, 5057, 5064, 5073, 5076, 5093, 5101, 5109, 5113, 5120, 5126, 5134, 5139, 5146, 5154, 5161, 5166, 5169, 5171, 5177, 5179, 5183, 5185, 5190, 5197, 5202, 5206, 5211, 5215, 5221, 5227, 5232, 5235, 5237, 5243, 5245, 5249, 5251, 5256, 5261, 5268, 5277, 5282, 5291, 5295, 5301, 5306, 5309, 5311, 5317, 5319, 5322, 5329, 5331, 5336, 5343, 5352, 5358, 5360, 5367, 5370, 5382, 5388, 5396, 5399, 5403, 5406, 5410, 5412, 5423, 5426, 5430, 5433, 5436, 5443, 5455, 5458, 5465, 5471, 5481, 5486, 5493, 5498, 5504, 5508, 5512, 5520, 5524, 5528, 5534, 5536, 5548, 5553, 5559, 5565, 5569, 5574, 5576, 5600, 5604, 5607, 5616, 5620, 5629, 5633, 5637, 5643, 5645, 5654, 5664, 5691, 5695, 5700, 5707, 5710, 5716, 5726, 5736, 5746, 5752, 5761, 5767, 5774, 5776, 5784, 5790, 5794, 5811, 5821, 5825, 5829, 5839, 5844, 5916, 5934, 5942, 5948, 5960, 5964, 5975, 5979, 5988, 5996, 6003, 6007, 6014, 6019, 6022, 6025, 6036, 6040, 6044, 6059, 6068, 6071, 6085, 6103, 6116, 6119, 6123, 6126, 6128, 6135, 6142, 6146, 6153, 6160, 6163, 6179, 6182, 6192, 6196, 6202, 6205, 6208, 6213, 6217, 6220, 6227, 6230, 6236, 6272, 6275, 6287, 6290, 6306, 6308, 6312, 6319, 6323, 6330, 6333, 6342, 6345, 6350, 6356, 6358, 6364, 6368, 6374, 6377, 6380, 6393, 6396, 6402, 6405, 6413, 6421, 6427, 6430, 6434, 6448, 6460, 6468, 6472, 6479, 6486, 6491, 6504, 6513, 6521, 6526, 6529, 6534, 6537, 6549, 6554, 6567, 6569, 6574, 6578, 6581, 6583, 6590, 6597, 6600, 6603, 6609, 6613, 6619, 6627, 6636, 6649, 6654, 6662, 6665, 6670, 6675, 6683, 6686, 6694, 6698, 6705, 6711, 6714, 6718, 6731, 6737, 6749, 6752, 6761, 6766, 6787, 6803, 6813, 6818, 6823, 6825, 6828, 6832, 6834, 6841, 6847, 6849, 6852, 6856, 6858, 6871, 6881, 6884, 6887, 6900, 6906, 6909, 6917, 6924, 6944, 6951, 6953, 6960, 6962, 6966, 6973, 6979, 6990, 6996, 7002, 7005, 7009, 7014, 7017, 7021, 7025, 7027, 7032, 7037, 7050, 7053, 7057, 7060, 7063, 7068, 7073, 7079, 7082, 7087, 7090, 7095, 7098, 7102, 7107, 7112, 7117, 7122, 7125, 7130, 7135, 7140, 7146, 7151, 7156, 7161, 7165, 7168, 7173, 7177, 7181, 7189, 7196, 7200, 7205, 7210, 7214, 7216, 7219, 7235, 7245, 7255, 7264, 7273, 7280, 7287, 7295, 7303, 7315, 7322, 7332, 7337, 7340, 7345, 7348, 7366, 7373, 7378, 7383, 7417, 7421, 7429, 7433, 7442, 7450, 7455, 7463, 7468, 7473, 7475, 7484, 7489, 7497, 7502, 7510, 7518, 7521, 7531, 7549, 7552, 7555, 7559, 7572, 7580, 7584, 7589, 7594, 7600, 7605, 7609, 7614, 7619, 7624, 7634, 7637, 7641, 7645, 7652, 7656, 7685, 7693, 7696, 7699, 7702, 7705, 7716, 7730, 7739, 7766, 7778, 7785, 7793, 7798, 7806, 7818, 7831, 7837, 7843, 7859, 7865, 7874, 7876, 7898, 7910, 7927, 7944, 7946, 7959, 7968, 7977, 7986, 7995] \ No newline at end of file diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index 970d00d..bb2427a 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -1044,289 +1044,286 @@ export class MySqlParser extends antlr.Parser { public static readonly RULE_joinPart = 134; public static readonly RULE_joinSpec = 135; public static readonly RULE_queryExpression = 136; - public static readonly RULE_queryExpressionNointo = 137; - public static readonly RULE_querySpecification = 138; - public static readonly RULE_querySpecificationNointo = 139; - public static readonly RULE_unionParenthesis = 140; - public static readonly RULE_unionStatement = 141; - public static readonly RULE_lateralStatement = 142; - public static readonly RULE_jsonTable = 143; - public static readonly RULE_jsonColumnList = 144; - public static readonly RULE_jsonColumn = 145; - public static readonly RULE_jsonOnEmpty = 146; - public static readonly RULE_jsonOnError = 147; - public static readonly RULE_selectSpec = 148; - public static readonly RULE_selectElements = 149; - public static readonly RULE_selectElement = 150; - public static readonly RULE_intoClause = 151; - public static readonly RULE_selectFieldsInto = 152; - public static readonly RULE_selectLinesInto = 153; - public static readonly RULE_fromClause = 154; - public static readonly RULE_groupByClause = 155; - public static readonly RULE_havingClause = 156; - public static readonly RULE_windowClause = 157; - public static readonly RULE_groupByItem = 158; - public static readonly RULE_limitClause = 159; - public static readonly RULE_limitClauseAtom = 160; - public static readonly RULE_startTransaction = 161; - public static readonly RULE_beginWork = 162; - public static readonly RULE_commitWork = 163; - public static readonly RULE_rollbackWork = 164; - public static readonly RULE_savepointStatement = 165; - public static readonly RULE_rollbackStatement = 166; - public static readonly RULE_releaseStatement = 167; - public static readonly RULE_lockTables = 168; - public static readonly RULE_unlockTables = 169; - public static readonly RULE_setAutocommitStatement = 170; - public static readonly RULE_setTransactionStatement = 171; - public static readonly RULE_transactionMode = 172; - public static readonly RULE_lockTableElement = 173; - public static readonly RULE_lockAction = 174; - public static readonly RULE_transactionOption = 175; - public static readonly RULE_transactionLevel = 176; - public static readonly RULE_changeMaster = 177; - public static readonly RULE_changeReplicationFilter = 178; - public static readonly RULE_changeReplicationSource = 179; - public static readonly RULE_purgeBinaryLogs = 180; - public static readonly RULE_startSlaveOrReplica = 181; - public static readonly RULE_stopSlaveOrReplica = 182; - public static readonly RULE_startGroupReplication = 183; - public static readonly RULE_stopGroupReplication = 184; - public static readonly RULE_masterOption = 185; - public static readonly RULE_stringMasterOption = 186; - public static readonly RULE_decimalMasterOption = 187; - public static readonly RULE_boolMasterOption = 188; - public static readonly RULE_v8NewMasterOption = 189; - public static readonly RULE_replicationSourceOption = 190; - public static readonly RULE_stringSourceOption = 191; - public static readonly RULE_decimalSourceOption = 192; - public static readonly RULE_boolSourceOption = 193; - public static readonly RULE_otherSourceOption = 194; - public static readonly RULE_channelOption = 195; - public static readonly RULE_replicationFilter = 196; - public static readonly RULE_tablePair = 197; - public static readonly RULE_threadType = 198; - public static readonly RULE_untilOption = 199; - public static readonly RULE_connectionOptions = 200; - public static readonly RULE_gtuidSet = 201; - public static readonly RULE_xaStartTransaction = 202; - public static readonly RULE_xaEndTransaction = 203; - public static readonly RULE_xaPrepareStatement = 204; - public static readonly RULE_xaCommitWork = 205; - public static readonly RULE_xaRollbackWork = 206; - public static readonly RULE_xaRecoverWork = 207; - public static readonly RULE_prepareStatement = 208; - public static readonly RULE_executeStatement = 209; - public static readonly RULE_deallocatePrepare = 210; - public static readonly RULE_routineBody = 211; - public static readonly RULE_blockStatement = 212; - public static readonly RULE_caseStatement = 213; - public static readonly RULE_ifStatement = 214; - public static readonly RULE_iterateStatement = 215; - public static readonly RULE_leaveStatement = 216; - public static readonly RULE_loopStatement = 217; - public static readonly RULE_repeatStatement = 218; - public static readonly RULE_returnStatement = 219; - public static readonly RULE_whileStatement = 220; - public static readonly RULE_cursorStatement = 221; - public static readonly RULE_declareVariable = 222; - public static readonly RULE_declareCondition = 223; - public static readonly RULE_declareCursor = 224; - public static readonly RULE_declareHandler = 225; - public static readonly RULE_handlerConditionValue = 226; - public static readonly RULE_procedureSqlStatement = 227; - public static readonly RULE_caseAlternative = 228; - public static readonly RULE_elifAlternative = 229; - public static readonly RULE_alterUser = 230; - public static readonly RULE_createUser = 231; - public static readonly RULE_dropUser = 232; - public static readonly RULE_grantStatement = 233; - public static readonly RULE_roleOption = 234; - public static readonly RULE_grantProxy = 235; - public static readonly RULE_alterResourceGroup = 236; - public static readonly RULE_createResourceGroup = 237; - public static readonly RULE_dropResourceGroup = 238; - public static readonly RULE_setResourceGroup = 239; - public static readonly RULE_resourceGroupVcpuSpec = 240; - public static readonly RULE_renameUser = 241; - public static readonly RULE_revokeStatement = 242; - public static readonly RULE_ignoreUnknownUser = 243; - public static readonly RULE_privilegeObjectType = 244; - public static readonly RULE_setPasswordStatement = 245; - public static readonly RULE_userSpecification = 246; - public static readonly RULE_alterUserAuthOption = 247; - public static readonly RULE_createUserAuthOption = 248; - public static readonly RULE_createUserInitialAuthOption = 249; - public static readonly RULE_userAuthOption = 250; - public static readonly RULE_authOptionClause = 251; - public static readonly RULE_authenticationRule = 252; - public static readonly RULE_tlsOption = 253; - public static readonly RULE_userResourceOption = 254; - public static readonly RULE_userPasswordOption = 255; - public static readonly RULE_userLockOption = 256; - public static readonly RULE_factorAuthOption = 257; - public static readonly RULE_registrationOption = 258; - public static readonly RULE_factor = 259; - public static readonly RULE_privelegeClause = 260; - public static readonly RULE_privilege = 261; - public static readonly RULE_privilegeLevel = 262; - public static readonly RULE_renameUserClause = 263; - public static readonly RULE_analyzeTable = 264; - public static readonly RULE_checkTable = 265; - public static readonly RULE_checksumTable = 266; - public static readonly RULE_optimizeTable = 267; - public static readonly RULE_repairTable = 268; - public static readonly RULE_tableActionOption = 269; - public static readonly RULE_checkTableOption = 270; - public static readonly RULE_createFunction = 271; - public static readonly RULE_installComponent = 272; - public static readonly RULE_variableExpr = 273; - public static readonly RULE_uninstallComponent = 274; - public static readonly RULE_installPlugin = 275; - public static readonly RULE_uninstallPlugin = 276; - public static readonly RULE_cloneStatement = 277; - public static readonly RULE_setStatement = 278; - public static readonly RULE_showStatement = 279; - public static readonly RULE_variableClause = 280; - public static readonly RULE_showCommonEntity = 281; - public static readonly RULE_showFilter = 282; - public static readonly RULE_showGlobalInfoClause = 283; - public static readonly RULE_showSchemaEntity = 284; - public static readonly RULE_showProfileType = 285; - public static readonly RULE_binlogStatement = 286; - public static readonly RULE_cacheIndexStatement = 287; - public static readonly RULE_flushStatement = 288; - public static readonly RULE_killStatement = 289; - public static readonly RULE_loadIndexIntoCache = 290; - public static readonly RULE_resetStatement = 291; - public static readonly RULE_resetOption = 292; - public static readonly RULE_resetPersist = 293; - public static readonly RULE_resetAllChannel = 294; - public static readonly RULE_reStartStatement = 295; - public static readonly RULE_shutdownStatement = 296; - public static readonly RULE_tableIndex = 297; - public static readonly RULE_flushOption = 298; - public static readonly RULE_flushTableOption = 299; - public static readonly RULE_loadedTableIndexes = 300; - public static readonly RULE_simpleDescribeStatement = 301; - public static readonly RULE_fullDescribeStatement = 302; - public static readonly RULE_analyzeDescribeStatement = 303; - public static readonly RULE_helpStatement = 304; - public static readonly RULE_useStatement = 305; - public static readonly RULE_signalStatement = 306; - public static readonly RULE_resignalStatement = 307; - public static readonly RULE_signalConditionInformation = 308; - public static readonly RULE_withStatement = 309; - public static readonly RULE_tableStatement = 310; - public static readonly RULE_diagnosticsStatement = 311; - public static readonly RULE_diagnosticsConditionInformationName = 312; - public static readonly RULE_describeObjectClause = 313; - public static readonly RULE_databaseNameCreate = 314; - public static readonly RULE_databaseName = 315; - public static readonly RULE_functionNameCreate = 316; - public static readonly RULE_functionName = 317; - public static readonly RULE_viewNameCreate = 318; - public static readonly RULE_viewName = 319; - public static readonly RULE_indexNameCreate = 320; - public static readonly RULE_indexNames = 321; - public static readonly RULE_indexName = 322; - public static readonly RULE_groupNameCreate = 323; - public static readonly RULE_groupName = 324; - public static readonly RULE_tableNameCreate = 325; - public static readonly RULE_tableNames = 326; - public static readonly RULE_tableName = 327; - public static readonly RULE_userOrRoleNames = 328; - public static readonly RULE_userOrRoleName = 329; - public static readonly RULE_columnNameCreate = 330; - public static readonly RULE_columnNames = 331; - public static readonly RULE_columnName = 332; - public static readonly RULE_tablespaceNameCreate = 333; - public static readonly RULE_tablespaceName = 334; - public static readonly RULE_partitionNameCreate = 335; - public static readonly RULE_partitionNames = 336; - public static readonly RULE_partitionName = 337; - public static readonly RULE_indexColumnName = 338; - public static readonly RULE_userHostPort = 339; - public static readonly RULE_userAtHost = 340; - public static readonly RULE_simpleUserName = 341; - public static readonly RULE_hostName = 342; - public static readonly RULE_userName = 343; - public static readonly RULE_mysqlVariable = 344; - public static readonly RULE_charsetName = 345; - public static readonly RULE_collationName = 346; - public static readonly RULE_engineName = 347; - public static readonly RULE_engineNameBase = 348; - public static readonly RULE_uuidSet = 349; - public static readonly RULE_xid = 350; - public static readonly RULE_xuidStringId = 351; - public static readonly RULE_fullId = 352; - public static readonly RULE_uidList = 353; - public static readonly RULE_uid = 354; - public static readonly RULE_simpleId = 355; - public static readonly RULE_dottedId = 356; - public static readonly RULE_decimalLiteral = 357; - public static readonly RULE_fileSizeLiteral = 358; - public static readonly RULE_stringLiteral = 359; - public static readonly RULE_booleanLiteral = 360; - public static readonly RULE_hexadecimalLiteral = 361; - public static readonly RULE_nullNotnull = 362; - public static readonly RULE_constant = 363; - public static readonly RULE_dataType = 364; - public static readonly RULE_collectionOptions = 365; - public static readonly RULE_convertedDataType = 366; - public static readonly RULE_lengthOneDimension = 367; - public static readonly RULE_lengthTwoDimension = 368; - public static readonly RULE_lengthTwoOptionalDimension = 369; - public static readonly RULE_indexColumnNames = 370; - public static readonly RULE_expressions = 371; - public static readonly RULE_valuesOrValueList = 372; - public static readonly RULE_expressionsWithDefaults = 373; - public static readonly RULE_expressionOrDefault = 374; - public static readonly RULE_constants = 375; - public static readonly RULE_simpleStrings = 376; - public static readonly RULE_userVariables = 377; - public static readonly RULE_defaultValue = 378; - public static readonly RULE_currentTimestamp = 379; - public static readonly RULE_ifExists = 380; - public static readonly RULE_ifNotExists = 381; - public static readonly RULE_orReplace = 382; - public static readonly RULE_functionCall = 383; - public static readonly RULE_specificFunction = 384; - public static readonly RULE_caseFuncAlternative = 385; - public static readonly RULE_levelsInWeightString = 386; - public static readonly RULE_levelInWeightListElement = 387; - public static readonly RULE_aggregateWindowedFunction = 388; - public static readonly RULE_nonAggregateWindowedFunction = 389; - public static readonly RULE_overClause = 390; - public static readonly RULE_windowSpec = 391; - public static readonly RULE_windowName = 392; - public static readonly RULE_frameClause = 393; - public static readonly RULE_frameUnits = 394; - public static readonly RULE_frameExtent = 395; - public static readonly RULE_frameBetween = 396; - public static readonly RULE_frameRange = 397; - public static readonly RULE_partitionClause = 398; - public static readonly RULE_scalarFunctionName = 399; - public static readonly RULE_passwordFunctionClause = 400; - public static readonly RULE_functionArgs = 401; - public static readonly RULE_functionArg = 402; - public static readonly RULE_expression = 403; - public static readonly RULE_predicate = 404; - public static readonly RULE_expressionAtom = 405; - public static readonly RULE_unaryOperator = 406; - public static readonly RULE_comparisonOperator = 407; - public static readonly RULE_comparisonBase = 408; - public static readonly RULE_logicalOperator = 409; - public static readonly RULE_bitOperator = 410; - public static readonly RULE_mathOperator = 411; - public static readonly RULE_jsonOperator = 412; - public static readonly RULE_charsetNameBase = 413; - public static readonly RULE_transactionLevelBase = 414; - public static readonly RULE_privilegesBase = 415; - public static readonly RULE_intervalTypeBase = 416; - public static readonly RULE_dataTypeBase = 417; - public static readonly RULE_keywordsCanBeId = 418; - public static readonly RULE_functionNameBase = 419; + public static readonly RULE_querySpecification = 137; + public static readonly RULE_unionStatement = 138; + public static readonly RULE_lateralStatement = 139; + public static readonly RULE_jsonTable = 140; + public static readonly RULE_jsonColumnList = 141; + public static readonly RULE_jsonColumn = 142; + public static readonly RULE_jsonOnEmpty = 143; + public static readonly RULE_jsonOnError = 144; + public static readonly RULE_selectSpec = 145; + public static readonly RULE_selectElements = 146; + public static readonly RULE_selectElement = 147; + public static readonly RULE_intoClause = 148; + public static readonly RULE_selectFieldsInto = 149; + public static readonly RULE_selectLinesInto = 150; + public static readonly RULE_fromClause = 151; + public static readonly RULE_groupByClause = 152; + public static readonly RULE_havingClause = 153; + public static readonly RULE_windowClause = 154; + public static readonly RULE_groupByItem = 155; + public static readonly RULE_limitClause = 156; + public static readonly RULE_limitClauseAtom = 157; + public static readonly RULE_startTransaction = 158; + public static readonly RULE_beginWork = 159; + public static readonly RULE_commitWork = 160; + public static readonly RULE_rollbackWork = 161; + public static readonly RULE_savepointStatement = 162; + public static readonly RULE_rollbackStatement = 163; + public static readonly RULE_releaseStatement = 164; + public static readonly RULE_lockTables = 165; + public static readonly RULE_unlockTables = 166; + public static readonly RULE_setAutocommitStatement = 167; + public static readonly RULE_setTransactionStatement = 168; + public static readonly RULE_transactionMode = 169; + public static readonly RULE_lockTableElement = 170; + public static readonly RULE_lockAction = 171; + public static readonly RULE_transactionOption = 172; + public static readonly RULE_transactionLevel = 173; + public static readonly RULE_changeMaster = 174; + public static readonly RULE_changeReplicationFilter = 175; + public static readonly RULE_changeReplicationSource = 176; + public static readonly RULE_purgeBinaryLogs = 177; + public static readonly RULE_startSlaveOrReplica = 178; + public static readonly RULE_stopSlaveOrReplica = 179; + public static readonly RULE_startGroupReplication = 180; + public static readonly RULE_stopGroupReplication = 181; + public static readonly RULE_masterOption = 182; + public static readonly RULE_stringMasterOption = 183; + public static readonly RULE_decimalMasterOption = 184; + public static readonly RULE_boolMasterOption = 185; + public static readonly RULE_v8NewMasterOption = 186; + public static readonly RULE_replicationSourceOption = 187; + public static readonly RULE_stringSourceOption = 188; + public static readonly RULE_decimalSourceOption = 189; + public static readonly RULE_boolSourceOption = 190; + public static readonly RULE_otherSourceOption = 191; + public static readonly RULE_channelOption = 192; + public static readonly RULE_replicationFilter = 193; + public static readonly RULE_tablePair = 194; + public static readonly RULE_threadType = 195; + public static readonly RULE_untilOption = 196; + public static readonly RULE_connectionOptions = 197; + public static readonly RULE_gtuidSet = 198; + public static readonly RULE_xaStartTransaction = 199; + public static readonly RULE_xaEndTransaction = 200; + public static readonly RULE_xaPrepareStatement = 201; + public static readonly RULE_xaCommitWork = 202; + public static readonly RULE_xaRollbackWork = 203; + public static readonly RULE_xaRecoverWork = 204; + public static readonly RULE_prepareStatement = 205; + public static readonly RULE_executeStatement = 206; + public static readonly RULE_deallocatePrepare = 207; + public static readonly RULE_routineBody = 208; + public static readonly RULE_blockStatement = 209; + public static readonly RULE_caseStatement = 210; + public static readonly RULE_ifStatement = 211; + public static readonly RULE_iterateStatement = 212; + public static readonly RULE_leaveStatement = 213; + public static readonly RULE_loopStatement = 214; + public static readonly RULE_repeatStatement = 215; + public static readonly RULE_returnStatement = 216; + public static readonly RULE_whileStatement = 217; + public static readonly RULE_cursorStatement = 218; + public static readonly RULE_declareVariable = 219; + public static readonly RULE_declareCondition = 220; + public static readonly RULE_declareCursor = 221; + public static readonly RULE_declareHandler = 222; + public static readonly RULE_handlerConditionValue = 223; + public static readonly RULE_procedureSqlStatement = 224; + public static readonly RULE_caseAlternative = 225; + public static readonly RULE_elifAlternative = 226; + public static readonly RULE_alterUser = 227; + public static readonly RULE_createUser = 228; + public static readonly RULE_dropUser = 229; + public static readonly RULE_grantStatement = 230; + public static readonly RULE_roleOption = 231; + public static readonly RULE_grantProxy = 232; + public static readonly RULE_alterResourceGroup = 233; + public static readonly RULE_createResourceGroup = 234; + public static readonly RULE_dropResourceGroup = 235; + public static readonly RULE_setResourceGroup = 236; + public static readonly RULE_resourceGroupVcpuSpec = 237; + public static readonly RULE_renameUser = 238; + public static readonly RULE_revokeStatement = 239; + public static readonly RULE_ignoreUnknownUser = 240; + public static readonly RULE_privilegeObjectType = 241; + public static readonly RULE_setPasswordStatement = 242; + public static readonly RULE_userSpecification = 243; + public static readonly RULE_alterUserAuthOption = 244; + public static readonly RULE_createUserAuthOption = 245; + public static readonly RULE_createUserInitialAuthOption = 246; + public static readonly RULE_userAuthOption = 247; + public static readonly RULE_authOptionClause = 248; + public static readonly RULE_authenticationRule = 249; + public static readonly RULE_tlsOption = 250; + public static readonly RULE_userResourceOption = 251; + public static readonly RULE_userPasswordOption = 252; + public static readonly RULE_userLockOption = 253; + public static readonly RULE_factorAuthOption = 254; + public static readonly RULE_registrationOption = 255; + public static readonly RULE_factor = 256; + public static readonly RULE_privelegeClause = 257; + public static readonly RULE_privilege = 258; + public static readonly RULE_privilegeLevel = 259; + public static readonly RULE_renameUserClause = 260; + public static readonly RULE_analyzeTable = 261; + public static readonly RULE_checkTable = 262; + public static readonly RULE_checksumTable = 263; + public static readonly RULE_optimizeTable = 264; + public static readonly RULE_repairTable = 265; + public static readonly RULE_tableActionOption = 266; + public static readonly RULE_checkTableOption = 267; + public static readonly RULE_createFunction = 268; + public static readonly RULE_installComponent = 269; + public static readonly RULE_variableExpr = 270; + public static readonly RULE_uninstallComponent = 271; + public static readonly RULE_installPlugin = 272; + public static readonly RULE_uninstallPlugin = 273; + public static readonly RULE_cloneStatement = 274; + public static readonly RULE_setStatement = 275; + public static readonly RULE_showStatement = 276; + public static readonly RULE_variableClause = 277; + public static readonly RULE_showCommonEntity = 278; + public static readonly RULE_showFilter = 279; + public static readonly RULE_showGlobalInfoClause = 280; + public static readonly RULE_showSchemaEntity = 281; + public static readonly RULE_showProfileType = 282; + public static readonly RULE_binlogStatement = 283; + public static readonly RULE_cacheIndexStatement = 284; + public static readonly RULE_flushStatement = 285; + public static readonly RULE_killStatement = 286; + public static readonly RULE_loadIndexIntoCache = 287; + public static readonly RULE_resetStatement = 288; + public static readonly RULE_resetOption = 289; + public static readonly RULE_resetPersist = 290; + public static readonly RULE_resetAllChannel = 291; + public static readonly RULE_reStartStatement = 292; + public static readonly RULE_shutdownStatement = 293; + public static readonly RULE_tableIndex = 294; + public static readonly RULE_flushOption = 295; + public static readonly RULE_flushTableOption = 296; + public static readonly RULE_loadedTableIndexes = 297; + public static readonly RULE_simpleDescribeStatement = 298; + public static readonly RULE_fullDescribeStatement = 299; + public static readonly RULE_analyzeDescribeStatement = 300; + public static readonly RULE_helpStatement = 301; + public static readonly RULE_useStatement = 302; + public static readonly RULE_signalStatement = 303; + public static readonly RULE_resignalStatement = 304; + public static readonly RULE_signalConditionInformation = 305; + public static readonly RULE_withStatement = 306; + public static readonly RULE_tableStatement = 307; + public static readonly RULE_diagnosticsStatement = 308; + public static readonly RULE_diagnosticsConditionInformationName = 309; + public static readonly RULE_describeObjectClause = 310; + public static readonly RULE_databaseNameCreate = 311; + public static readonly RULE_databaseName = 312; + public static readonly RULE_functionNameCreate = 313; + public static readonly RULE_functionName = 314; + public static readonly RULE_viewNameCreate = 315; + public static readonly RULE_viewName = 316; + public static readonly RULE_indexNameCreate = 317; + public static readonly RULE_indexNames = 318; + public static readonly RULE_indexName = 319; + public static readonly RULE_groupNameCreate = 320; + public static readonly RULE_groupName = 321; + public static readonly RULE_tableNameCreate = 322; + public static readonly RULE_tableNames = 323; + public static readonly RULE_tableName = 324; + public static readonly RULE_userOrRoleNames = 325; + public static readonly RULE_userOrRoleName = 326; + public static readonly RULE_columnNameCreate = 327; + public static readonly RULE_columnNames = 328; + public static readonly RULE_columnName = 329; + public static readonly RULE_tablespaceNameCreate = 330; + public static readonly RULE_tablespaceName = 331; + public static readonly RULE_partitionNameCreate = 332; + public static readonly RULE_partitionNames = 333; + public static readonly RULE_partitionName = 334; + public static readonly RULE_indexColumnName = 335; + public static readonly RULE_userHostPort = 336; + public static readonly RULE_userAtHost = 337; + public static readonly RULE_simpleUserName = 338; + public static readonly RULE_hostName = 339; + public static readonly RULE_userName = 340; + public static readonly RULE_mysqlVariable = 341; + public static readonly RULE_charsetName = 342; + public static readonly RULE_collationName = 343; + public static readonly RULE_engineName = 344; + public static readonly RULE_engineNameBase = 345; + public static readonly RULE_uuidSet = 346; + public static readonly RULE_xid = 347; + public static readonly RULE_xuidStringId = 348; + public static readonly RULE_fullId = 349; + public static readonly RULE_uidList = 350; + public static readonly RULE_uid = 351; + public static readonly RULE_simpleId = 352; + public static readonly RULE_dottedId = 353; + public static readonly RULE_decimalLiteral = 354; + public static readonly RULE_fileSizeLiteral = 355; + public static readonly RULE_stringLiteral = 356; + public static readonly RULE_booleanLiteral = 357; + public static readonly RULE_hexadecimalLiteral = 358; + public static readonly RULE_nullNotnull = 359; + public static readonly RULE_constant = 360; + public static readonly RULE_dataType = 361; + public static readonly RULE_collectionOptions = 362; + public static readonly RULE_convertedDataType = 363; + public static readonly RULE_lengthOneDimension = 364; + public static readonly RULE_lengthTwoDimension = 365; + public static readonly RULE_lengthTwoOptionalDimension = 366; + public static readonly RULE_indexColumnNames = 367; + public static readonly RULE_expressions = 368; + public static readonly RULE_valuesOrValueList = 369; + public static readonly RULE_expressionsWithDefaults = 370; + public static readonly RULE_expressionOrDefault = 371; + public static readonly RULE_constants = 372; + public static readonly RULE_simpleStrings = 373; + public static readonly RULE_userVariables = 374; + public static readonly RULE_defaultValue = 375; + public static readonly RULE_currentTimestamp = 376; + public static readonly RULE_ifExists = 377; + public static readonly RULE_ifNotExists = 378; + public static readonly RULE_orReplace = 379; + public static readonly RULE_functionCall = 380; + public static readonly RULE_specificFunction = 381; + public static readonly RULE_caseFuncAlternative = 382; + public static readonly RULE_levelsInWeightString = 383; + public static readonly RULE_levelInWeightListElement = 384; + public static readonly RULE_aggregateWindowedFunction = 385; + public static readonly RULE_nonAggregateWindowedFunction = 386; + public static readonly RULE_overClause = 387; + public static readonly RULE_windowSpec = 388; + public static readonly RULE_windowName = 389; + public static readonly RULE_frameClause = 390; + public static readonly RULE_frameUnits = 391; + public static readonly RULE_frameExtent = 392; + public static readonly RULE_frameBetween = 393; + public static readonly RULE_frameRange = 394; + public static readonly RULE_partitionClause = 395; + public static readonly RULE_scalarFunctionName = 396; + public static readonly RULE_passwordFunctionClause = 397; + public static readonly RULE_functionArgs = 398; + public static readonly RULE_functionArg = 399; + public static readonly RULE_expression = 400; + public static readonly RULE_predicate = 401; + public static readonly RULE_expressionAtom = 402; + public static readonly RULE_unaryOperator = 403; + public static readonly RULE_comparisonOperator = 404; + public static readonly RULE_comparisonBase = 405; + public static readonly RULE_logicalOperator = 406; + public static readonly RULE_bitOperator = 407; + public static readonly RULE_mathOperator = 408; + public static readonly RULE_jsonOperator = 409; + public static readonly RULE_charsetNameBase = 410; + public static readonly RULE_transactionLevelBase = 411; + public static readonly RULE_privilegesBase = 412; + public static readonly RULE_intervalTypeBase = 413; + public static readonly RULE_dataTypeBase = 414; + public static readonly RULE_keywordsCanBeId = 415; + public static readonly RULE_functionNameBase = 416; public static readonly literalNames = [ null, null, null, null, null, "'ACTIVE'", "'ADD'", "'ALL'", "'ALTER'", @@ -1743,8 +1740,7 @@ export class MySqlParser extends antlr.Parser { "multipleUpdateStatement", "orderByClause", "orderByExpression", "tableSources", "tableSource", "tableSourceItem", "fullColumnNames", "indexHint", "indexHintType", "joinPart", "joinSpec", "queryExpression", - "queryExpressionNointo", "querySpecification", "querySpecificationNointo", - "unionParenthesis", "unionStatement", "lateralStatement", "jsonTable", + "querySpecification", "unionStatement", "lateralStatement", "jsonTable", "jsonColumnList", "jsonColumn", "jsonOnEmpty", "jsonOnError", "selectSpec", "selectElements", "selectElement", "intoClause", "selectFieldsInto", "selectLinesInto", "fromClause", "groupByClause", "havingClause", @@ -1839,21 +1835,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; + this.state = 837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 169870592) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 268573697) !== 0) || ((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & 2151694339) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 536936449) !== 0) || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 442923) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 2184193) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 16781443) !== 0) || _la === 362 || _la === 371 || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 270573569) !== 0) || _la === 540 || _la === 562 || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 16643) !== 0) || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 268435521) !== 0) || _la === 673 || _la === 694 || _la === 713 || _la === 717 || _la === 749 || _la === 866 || _la === 869) { { { - this.state = 840; + this.state = 834; this.singleStatement(); } } - this.state = 845; + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 846; + this.state = 840; this.match(MySqlParser.EOF); } } @@ -1875,7 +1871,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, MySqlParser.RULE_singleStatement); try { - this.state = 853; + this.state = 847; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -1941,14 +1937,14 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 848; + this.state = 842; this.sqlStatement(); - this.state = 850; + this.state = 844; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 849; + this.state = 843; this.match(MySqlParser.SEMI); } break; @@ -1958,7 +1954,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 852; + this.state = 846; this.emptyStatement_(); } break; @@ -1984,55 +1980,55 @@ export class MySqlParser extends antlr.Parser { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, MySqlParser.RULE_sqlStatement); try { - this.state = 862; + this.state = 856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 855; + this.state = 849; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 856; + this.state = 850; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 857; + this.state = 851; this.transactionStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 858; + this.state = 852; this.replicationStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 859; + this.state = 853; this.preparedStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 860; + this.state = 854; this.administrationStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 861; + this.state = 855; this.utilityStatement(); } break; @@ -2058,7 +2054,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 864; + this.state = 858; this.match(MySqlParser.SEMI); } } @@ -2080,279 +2076,279 @@ export class MySqlParser extends antlr.Parser { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, MySqlParser.RULE_ddlStatement); try { - this.state = 905; + this.state = 899; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 866; + this.state = 860; this.createDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 867; + this.state = 861; this.createEvent(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 868; + this.state = 862; this.createIndex(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 869; + this.state = 863; this.createLogfileGroup(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 870; + this.state = 864; this.createProcedure(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 871; + this.state = 865; this.createFunction(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 872; + this.state = 866; this.createServer(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 873; + this.state = 867; this.createTable(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 874; + this.state = 868; this.createTablespaceInnodb(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 875; + this.state = 869; this.createTablespaceNdb(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 876; + this.state = 870; this.createTrigger(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 877; + this.state = 871; this.createView(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 878; + this.state = 872; this.createRole(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 879; + this.state = 873; this.alterDatabase(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 880; + this.state = 874; this.alterEvent(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 881; + this.state = 875; this.alterFunction(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 882; + this.state = 876; this.alterInstance(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 883; + this.state = 877; this.alterLogfileGroup(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 884; + this.state = 878; this.alterProcedure(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 885; + this.state = 879; this.alterServer(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 886; + this.state = 880; this.alterTable(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 887; + this.state = 881; this.alterTablespace(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 888; + this.state = 882; this.alterView(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 889; + this.state = 883; this.dropDatabase(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 890; + this.state = 884; this.dropEvent(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 891; + this.state = 885; this.dropIndex(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 892; + this.state = 886; this.dropLogfileGroup(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 893; + this.state = 887; this.dropProcedure(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 894; + this.state = 888; this.dropFunction(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 895; + this.state = 889; this.dropServer(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 896; + this.state = 890; this.dropSpatial(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 897; + this.state = 891; this.dropTable(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 898; + this.state = 892; this.dropTablespace(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 899; + this.state = 893; this.dropTrigger(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 900; + this.state = 894; this.dropView(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 901; + this.state = 895; this.dropRole(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 902; + this.state = 896; this.setRole(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 903; + this.state = 897; this.renameTable(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 904; + this.state = 898; this.truncateTable(); } break; @@ -2376,125 +2372,125 @@ export class MySqlParser extends antlr.Parser { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, MySqlParser.RULE_dmlStatement); try { - this.state = 924; + this.state = 918; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 901; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 908; + this.state = 902; this.setOperations(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 909; + this.state = 903; this.insertStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 910; + this.state = 904; this.updateStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 911; + this.state = 905; this.deleteStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 912; + this.state = 906; this.replaceStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 913; + this.state = 907; this.callStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 914; + this.state = 908; this.interSectStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 915; + this.state = 909; this.loadDataStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 916; + this.state = 910; this.loadXmlStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 917; + this.state = 911; this.parenthesizedQuery(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 918; + this.state = 912; this.doStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 919; + this.state = 913; this.handlerStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 920; + this.state = 914; this.importTableStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 921; + this.state = 915; this.valuesStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 922; + this.state = 916; this.withStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 923; + this.state = 917; this.tableStatement(); } break; @@ -2518,69 +2514,69 @@ export class MySqlParser extends antlr.Parser { let localContext = new TransactionStatementContext(this.context, this.state); this.enterRule(localContext, 12, MySqlParser.RULE_transactionStatement); try { - this.state = 935; + this.state = 929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 926; + this.state = 920; this.startTransaction(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 927; + this.state = 921; this.beginWork(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 928; + this.state = 922; this.commitWork(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 929; + this.state = 923; this.rollbackWork(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 930; + this.state = 924; this.savepointStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 931; + this.state = 925; this.rollbackStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 932; + this.state = 926; this.releaseStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 933; + this.state = 927; this.lockTables(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 934; + this.state = 928; this.unlockTables(); } break; @@ -2604,104 +2600,104 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReplicationStatementContext(this.context, this.state); this.enterRule(localContext, 14, MySqlParser.RULE_replicationStatement); try { - this.state = 951; + this.state = 945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 937; + this.state = 931; this.changeMaster(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 938; + this.state = 932; this.changeReplicationFilter(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 939; + this.state = 933; this.changeReplicationSource(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 940; + this.state = 934; this.purgeBinaryLogs(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 941; + this.state = 935; this.startSlaveOrReplica(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 942; + this.state = 936; this.stopSlaveOrReplica(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 943; + this.state = 937; this.startGroupReplication(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 944; + this.state = 938; this.stopGroupReplication(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 945; + this.state = 939; this.xaStartTransaction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 946; + this.state = 940; this.xaEndTransaction(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 947; + this.state = 941; this.xaPrepareStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 948; + this.state = 942; this.xaCommitWork(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 949; + this.state = 943; this.xaRollbackWork(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 950; + this.state = 944; this.xaRecoverWork(); } break; @@ -2725,20 +2721,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new PreparedStatementContext(this.context, this.state); this.enterRule(localContext, 16, MySqlParser.RULE_preparedStatement); try { - this.state = 956; + this.state = 950; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PREPARE: this.enterOuterAlt(localContext, 1); { - this.state = 953; + this.state = 947; this.prepareStatement(); } break; case MySqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 2); { - this.state = 954; + this.state = 948; this.executeStatement(); } break; @@ -2746,7 +2742,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_DEALLOCATE: this.enterOuterAlt(localContext, 3); { - this.state = 955; + this.state = 949; this.deallocatePrepare(); } break; @@ -2772,76 +2768,76 @@ export class MySqlParser extends antlr.Parser { let localContext = new CompoundStatementContext(this.context, this.state); this.enterRule(localContext, 18, MySqlParser.RULE_compoundStatement); try { - this.state = 968; + this.state = 962; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 958; + this.state = 952; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 959; + this.state = 953; this.caseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 960; + this.state = 954; this.ifStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 961; + this.state = 955; this.leaveStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 962; + this.state = 956; this.loopStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 963; + this.state = 957; this.repeatStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 964; + this.state = 958; this.whileStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 965; + this.state = 959; this.iterateStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 966; + this.state = 960; this.returnStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 967; + this.state = 961; this.cursorStatement(); } break; @@ -2865,237 +2861,237 @@ export class MySqlParser extends antlr.Parser { let localContext = new AdministrationStatementContext(this.context, this.state); this.enterRule(localContext, 20, MySqlParser.RULE_administrationStatement); try { - this.state = 1003; + this.state = 997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 970; + this.state = 964; this.alterUser(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 971; + this.state = 965; this.createUser(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 972; + this.state = 966; this.dropUser(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 973; + this.state = 967; this.grantStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 974; + this.state = 968; this.grantProxy(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 975; + this.state = 969; this.renameUser(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 976; + this.state = 970; this.revokeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 977; + this.state = 971; this.alterResourceGroup(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 978; + this.state = 972; this.createResourceGroup(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 979; + this.state = 973; this.dropResourceGroup(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 980; + this.state = 974; this.setResourceGroup(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 981; + this.state = 975; this.analyzeTable(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 982; + this.state = 976; this.checkTable(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 983; + this.state = 977; this.checksumTable(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 984; + this.state = 978; this.optimizeTable(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 985; + this.state = 979; this.repairTable(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 986; + this.state = 980; this.installComponent(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 987; + this.state = 981; this.uninstallComponent(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 988; + this.state = 982; this.installPlugin(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 989; + this.state = 983; this.uninstallPlugin(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 990; + this.state = 984; this.cloneStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 991; + this.state = 985; this.setStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 992; + this.state = 986; this.showStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 993; + this.state = 987; this.binlogStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 994; + this.state = 988; this.cacheIndexStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 995; + this.state = 989; this.flushStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 996; + this.state = 990; this.killStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 997; + this.state = 991; this.loadIndexIntoCache(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 998; + this.state = 992; this.resetStatement(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 999; + this.state = 993; this.resetPersist(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1000; + this.state = 994; this.resetAllChannel(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1001; + this.state = 995; this.reStartStatement(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1002; + this.state = 996; this.shutdownStatement(); } break; @@ -3119,62 +3115,62 @@ export class MySqlParser extends antlr.Parser { let localContext = new UtilityStatementContext(this.context, this.state); this.enterRule(localContext, 22, MySqlParser.RULE_utilityStatement); try { - this.state = 1013; + this.state = 1007; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1005; + this.state = 999; this.simpleDescribeStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1006; + this.state = 1000; this.fullDescribeStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1007; + this.state = 1001; this.analyzeDescribeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1008; + this.state = 1002; this.helpStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1009; + this.state = 1003; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1010; + this.state = 1004; this.signalStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1011; + this.state = 1005; this.resignalStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1012; + this.state = 1006; this.diagnosticsStatement(); } break; @@ -3201,9 +3197,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1015; + this.state = 1009; this.match(MySqlParser.KW_CREATE); - this.state = 1016; + this.state = 1010; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -3213,29 +3209,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1018; + this.state = 1012; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 1017; + this.state = 1011; this.ifNotExists(); } break; } - this.state = 1020; + this.state = 1014; this.databaseNameCreate(); - this.state = 1024; + this.state = 1018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823) { { { - this.state = 1021; + this.state = 1015; this.createDatabaseOption(); } } - this.state = 1026; + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3262,87 +3258,87 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1027; + this.state = 1021; this.match(MySqlParser.KW_CREATE); - this.state = 1029; + this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1028; + this.state = 1022; this.ownerStatement(); } } - this.state = 1031; + this.state = 1025; this.match(MySqlParser.KW_EVENT); - this.state = 1033; + this.state = 1027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 1032; + this.state = 1026; this.ifNotExists(); } break; } - this.state = 1035; + this.state = 1029; localContext._event_name = this.fullId(); - this.state = 1036; + this.state = 1030; this.match(MySqlParser.KW_ON); - this.state = 1037; + this.state = 1031; this.match(MySqlParser.KW_SCHEDULE); - this.state = 1038; + this.state = 1032; this.scheduleExpression(); - this.state = 1045; + this.state = 1039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 1039; + this.state = 1033; this.match(MySqlParser.KW_ON); - this.state = 1040; + this.state = 1034; this.match(MySqlParser.KW_COMPLETION); - this.state = 1042; + this.state = 1036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1041; + this.state = 1035; this.match(MySqlParser.KW_NOT); } } - this.state = 1044; + this.state = 1038; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 1048; + this.state = 1042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 1047; + this.state = 1041; this.enableType(); } } - this.state = 1052; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1050; + this.state = 1044; this.match(MySqlParser.KW_COMMENT); - this.state = 1051; + this.state = 1045; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1054; + this.state = 1048; this.match(MySqlParser.KW_DO); - this.state = 1055; + this.state = 1049; this.routineBody(); } } @@ -3368,14 +3364,14 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1057; + this.state = 1051; this.match(MySqlParser.KW_CREATE); - this.state = 1059; + this.state = 1053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 514) { { - this.state = 1058; + this.state = 1052; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -3388,12 +3384,12 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1062; + this.state = 1056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 161 || _la === 182) { { - this.state = 1061; + this.state = 1055; localContext._indexCategory = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161 || _la === 182)) { @@ -3406,66 +3402,66 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1064; + this.state = 1058; this.match(MySqlParser.KW_INDEX); - this.state = 1065; + this.state = 1059; this.indexNameCreate(); - this.state = 1067; + this.state = 1061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1066; + this.state = 1060; this.indexType(); } } - this.state = 1069; + this.state = 1063; this.match(MySqlParser.KW_ON); - this.state = 1070; + this.state = 1064; this.tableName(); - this.state = 1071; + this.state = 1065; this.indexColumnNames(); - this.state = 1075; + this.state = 1069; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1072; + this.state = 1066; this.indexOption(); } } } - this.state = 1077; + this.state = 1071; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); } - this.state = 1090; + this.state = 1084; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1088; + this.state = 1082; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 1078; + this.state = 1072; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1080; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1079; + this.state = 1073; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1082; + this.state = 1076; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -3479,19 +3475,19 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_LOCK: { - this.state = 1083; + this.state = 1077; this.match(MySqlParser.KW_LOCK); - this.state = 1085; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1084; + this.state = 1078; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1087; + this.state = 1081; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -3508,7 +3504,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 1092; + this.state = 1086; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -3535,153 +3531,153 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1093; + this.state = 1087; this.match(MySqlParser.KW_CREATE); - this.state = 1094; + this.state = 1088; this.match(MySqlParser.KW_LOGFILE); - this.state = 1095; + this.state = 1089; this.match(MySqlParser.KW_GROUP); - this.state = 1096; + this.state = 1090; localContext._logfileGroupName = this.uid(); - this.state = 1097; + this.state = 1091; this.match(MySqlParser.KW_ADD); - this.state = 1098; + this.state = 1092; this.match(MySqlParser.KW_UNDOFILE); - this.state = 1099; + this.state = 1093; localContext._undoFile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1105; + this.state = 1099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1100; + this.state = 1094; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1102; + this.state = 1096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1101; + this.state = 1095; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1104; + this.state = 1098; localContext._initSize = this.fileSizeLiteral(); } } - this.state = 1112; + this.state = 1106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 672) { { - this.state = 1107; + this.state = 1101; this.match(MySqlParser.KW_UNDO_BUFFER_SIZE); - this.state = 1109; + this.state = 1103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1108; + this.state = 1102; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1111; + this.state = 1105; localContext._undoSize = this.fileSizeLiteral(); } } - this.state = 1119; + this.state = 1113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 553) { { - this.state = 1114; + this.state = 1108; this.match(MySqlParser.KW_REDO_BUFFER_SIZE); - this.state = 1116; + this.state = 1110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1115; + this.state = 1109; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1118; + this.state = 1112; localContext._redoSize = this.fileSizeLiteral(); } } - this.state = 1126; + this.state = 1120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1121; + this.state = 1115; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1123; + this.state = 1117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1122; + this.state = 1116; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1125; + this.state = 1119; localContext._nodegroup = this.uid(); } } - this.state = 1129; + this.state = 1123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1128; + this.state = 1122; this.match(MySqlParser.KW_WAIT); } } - this.state = 1136; + this.state = 1130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1131; + this.state = 1125; this.match(MySqlParser.KW_COMMENT); - this.state = 1133; + this.state = 1127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1132; + this.state = 1126; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1135; + this.state = 1129; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1138; + this.state = 1132; this.match(MySqlParser.KW_ENGINE); - this.state = 1140; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1139; + this.state = 1133; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1142; + this.state = 1136; this.engineName(); } } @@ -3707,79 +3703,79 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1144; + this.state = 1138; this.match(MySqlParser.KW_CREATE); - this.state = 1146; + this.state = 1140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1145; + this.state = 1139; this.ownerStatement(); } } - this.state = 1148; + this.state = 1142; this.match(MySqlParser.KW_PROCEDURE); - this.state = 1150; + this.state = 1144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 1149; + this.state = 1143; this.ifNotExists(); } break; } - this.state = 1152; + this.state = 1146; localContext._sp_name = this.fullId(); - this.state = 1153; + this.state = 1147; this.match(MySqlParser.LR_BRACKET); - this.state = 1155; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18880593) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100680481) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1154; + this.state = 1148; this.procedureParameter(); } } - this.state = 1161; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1157; + this.state = 1151; this.match(MySqlParser.COMMA); - this.state = 1158; + this.state = 1152; this.procedureParameter(); } } - this.state = 1163; + this.state = 1157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1164; + this.state = 1158; this.match(MySqlParser.RR_BRACKET); - this.state = 1168; + this.state = 1162; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1165; + this.state = 1159; this.routineOption(); } } } - this.state = 1170; + this.state = 1164; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); } - this.state = 1171; + this.state = 1165; this.routineBody(); } } @@ -3803,21 +3799,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1173; + this.state = 1167; this.match(MySqlParser.KW_CREATE); - this.state = 1174; + this.state = 1168; this.match(MySqlParser.KW_ROLE); - this.state = 1176; + this.state = 1170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { - this.state = 1175; + this.state = 1169; this.ifNotExists(); } break; } - this.state = 1178; + this.state = 1172; this.userOrRoleNames(); } } @@ -3842,19 +3838,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1180; + this.state = 1174; this.match(MySqlParser.KW_CREATE); - this.state = 1181; + this.state = 1175; this.match(MySqlParser.KW_SERVER); - this.state = 1182; + this.state = 1176; localContext._servername = this.uid(); - this.state = 1183; + this.state = 1177; this.match(MySqlParser.KW_FOREIGN); - this.state = 1184; + this.state = 1178; this.match(MySqlParser.KW_DATA); - this.state = 1185; + this.state = 1179; this.match(MySqlParser.KW_WRAPPER); - this.state = 1186; + this.state = 1180; localContext._wrapperName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 882)) { @@ -3864,29 +3860,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1187; + this.state = 1181; this.match(MySqlParser.KW_OPTIONS); - this.state = 1188; + this.state = 1182; this.match(MySqlParser.LR_BRACKET); - this.state = 1189; + this.state = 1183; this.serverOption(); - this.state = 1194; + this.state = 1188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1190; + this.state = 1184; this.match(MySqlParser.COMMA); - this.state = 1191; + this.state = 1185; this.serverOption(); } } - this.state = 1196; + this.state = 1190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1197; + this.state = 1191; this.match(MySqlParser.RR_BRACKET); } } @@ -3910,83 +3906,83 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 1277; + this.state = 1271; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: localContext = new CopyCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1199; + this.state = 1193; this.match(MySqlParser.KW_CREATE); - this.state = 1201; + this.state = 1195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1200; + this.state = 1194; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1203; + this.state = 1197; this.match(MySqlParser.KW_TABLE); - this.state = 1205; + this.state = 1199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: { - this.state = 1204; + this.state = 1198; this.ifNotExists(); } break; } - this.state = 1207; + this.state = 1201; this.tableNameCreate(); - this.state = 1208; + this.state = 1202; this.createDefinitions(); - this.state = 1219; + this.state = 1213; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 1209; + this.state = 1203; this.tableOption(); - this.state = 1216; + this.state = 1210; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1211; + this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1210; + this.state = 1204; this.match(MySqlParser.COMMA); } } - this.state = 1213; + this.state = 1207; this.tableOption(); } } } - this.state = 1218; + this.state = 1212; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); } } break; } - this.state = 1222; + this.state = 1216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1221; + this.state = 1215; this.partitionDefinitions(); } } @@ -3997,92 +3993,92 @@ export class MySqlParser extends antlr.Parser { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1224; + this.state = 1218; this.match(MySqlParser.KW_CREATE); - this.state = 1226; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1225; + this.state = 1219; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1228; + this.state = 1222; this.match(MySqlParser.KW_TABLE); - this.state = 1230; + this.state = 1224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1229; + this.state = 1223; this.ifNotExists(); } break; } - this.state = 1232; + this.state = 1226; this.tableNameCreate(); - this.state = 1234; + this.state = 1228; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 1233; + this.state = 1227; this.createDefinitions(); } break; } - this.state = 1246; + this.state = 1240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 882) { { - this.state = 1236; + this.state = 1230; this.tableOption(); - this.state = 1243; + this.state = 1237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 868 || _la === 882) { { { - this.state = 1238; + this.state = 1232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1237; + this.state = 1231; this.match(MySqlParser.COMMA); } } - this.state = 1240; + this.state = 1234; this.tableOption(); } } - this.state = 1245; + this.state = 1239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1249; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1248; + this.state = 1242; this.partitionDefinitions(); } } - this.state = 1252; + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 1251; + this.state = 1245; _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { this.errorHandler.recoverInline(this); @@ -4094,17 +4090,17 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1255; + this.state = 1249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 1254; + this.state = 1248; this.match(MySqlParser.KW_AS); } } - this.state = 1257; + this.state = 1251; this.selectStatement(); } break; @@ -4112,52 +4108,52 @@ export class MySqlParser extends antlr.Parser { localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1259; + this.state = 1253; this.match(MySqlParser.KW_CREATE); - this.state = 1261; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1260; + this.state = 1254; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1263; + this.state = 1257; this.match(MySqlParser.KW_TABLE); - this.state = 1265; + this.state = 1259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { case 1: { - this.state = 1264; + this.state = 1258; this.ifNotExists(); } break; } - this.state = 1267; + this.state = 1261; this.tableNameCreate(); - this.state = 1275; + this.state = 1269; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: { - this.state = 1268; + this.state = 1262; this.match(MySqlParser.KW_LIKE); - this.state = 1269; + this.state = 1263; this.tableName(); } break; case MySqlParser.LR_BRACKET: { - this.state = 1270; + this.state = 1264; this.match(MySqlParser.LR_BRACKET); - this.state = 1271; + this.state = 1265; this.match(MySqlParser.KW_LIKE); - this.state = 1272; + this.state = 1266; this.tableName(); - this.state = 1273; + this.state = 1267; this.match(MySqlParser.RR_BRACKET); } break; @@ -4189,112 +4185,112 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1279; + this.state = 1273; this.match(MySqlParser.KW_CREATE); - this.state = 1281; + this.state = 1275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1280; + this.state = 1274; this.match(MySqlParser.KW_UNDO); } } - this.state = 1283; + this.state = 1277; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1284; + this.state = 1278; this.tablespaceNameCreate(); - this.state = 1288; + this.state = 1282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 1285; + this.state = 1279; this.match(MySqlParser.KW_ADD); - this.state = 1286; + this.state = 1280; this.match(MySqlParser.KW_DATAFILE); - this.state = 1287; + this.state = 1281; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1295; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1290; + this.state = 1284; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1292; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1291; + this.state = 1285; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1294; + this.state = 1288; localContext._autoextendSize = this.fileSizeLiteral(); } } - this.state = 1300; + this.state = 1294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1297; + this.state = 1291; this.match(MySqlParser.KW_FILE_BLOCK_SIZE); - this.state = 1298; + this.state = 1292; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1299; + this.state = 1293; localContext._fileBlockSize = this.fileSizeLiteral(); } } - this.state = 1307; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 1302; + this.state = 1296; this.match(MySqlParser.KW_ENGINE); - this.state = 1304; + this.state = 1298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1303; + this.state = 1297; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1306; + this.state = 1300; this.engineName(); } } - this.state = 1314; + this.state = 1308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 1309; + this.state = 1303; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1311; + this.state = 1305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1310; + this.state = 1304; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1313; + this.state = 1307; this.match(MySqlParser.STRING_LITERAL); } } @@ -4322,191 +4318,191 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1316; + this.state = 1310; this.match(MySqlParser.KW_CREATE); - this.state = 1318; + this.state = 1312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1317; + this.state = 1311; this.match(MySqlParser.KW_UNDO); } } - this.state = 1320; + this.state = 1314; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1321; + this.state = 1315; this.tablespaceNameCreate(); - this.state = 1322; + this.state = 1316; this.match(MySqlParser.KW_ADD); - this.state = 1323; + this.state = 1317; this.match(MySqlParser.KW_DATAFILE); - this.state = 1324; + this.state = 1318; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1325; + this.state = 1319; this.match(MySqlParser.KW_USE); - this.state = 1326; + this.state = 1320; this.match(MySqlParser.KW_LOGFILE); - this.state = 1327; + this.state = 1321; this.match(MySqlParser.KW_GROUP); - this.state = 1328; + this.state = 1322; localContext._logfileGroupName = this.uid(); - this.state = 1334; + this.state = 1328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 393) { { - this.state = 1329; + this.state = 1323; this.match(MySqlParser.KW_EXTENT_SIZE); - this.state = 1331; + this.state = 1325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1330; + this.state = 1324; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1333; + this.state = 1327; localContext._extentSize = this.fileSizeLiteral(); } } - this.state = 1341; + this.state = 1335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1336; + this.state = 1330; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1338; + this.state = 1332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1337; + this.state = 1331; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1340; + this.state = 1334; localContext._initialSize = this.fileSizeLiteral(); } } - this.state = 1348; + this.state = 1342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1343; + this.state = 1337; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1345; + this.state = 1339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1344; + this.state = 1338; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1347; + this.state = 1341; localContext._autoextendSize = this.fileSizeLiteral(); } } - this.state = 1355; + this.state = 1349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 481) { { - this.state = 1350; + this.state = 1344; this.match(MySqlParser.KW_MAX_SIZE); - this.state = 1352; + this.state = 1346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1351; + this.state = 1345; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1354; + this.state = 1348; localContext._maxSize = this.fileSizeLiteral(); } } - this.state = 1362; + this.state = 1356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1357; + this.state = 1351; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1359; + this.state = 1353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1358; + this.state = 1352; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1361; + this.state = 1355; localContext._nodegroup = this.uid(); } } - this.state = 1365; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1364; + this.state = 1358; this.match(MySqlParser.KW_WAIT); } } - this.state = 1372; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1367; + this.state = 1361; this.match(MySqlParser.KW_COMMENT); - this.state = 1369; + this.state = 1363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1368; + this.state = 1362; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1371; + this.state = 1365; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1374; + this.state = 1368; this.match(MySqlParser.KW_ENGINE); - this.state = 1376; + this.state = 1370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1375; + this.state = 1369; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1378; + this.state = 1372; this.engineName(); } } @@ -4531,33 +4527,33 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1380; + this.state = 1374; this.match(MySqlParser.KW_CREATE); - this.state = 1382; + this.state = 1376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1381; + this.state = 1375; this.ownerStatement(); } } - this.state = 1384; + this.state = 1378; this.match(MySqlParser.KW_TRIGGER); - this.state = 1386; + this.state = 1380; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1385; + this.state = 1379; this.ifNotExists(); } break; } - this.state = 1388; + this.state = 1382; localContext._trigger_name = this.fullId(); - this.state = 1389; + this.state = 1383; localContext._triggerTime = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 16 || _la === 306)) { @@ -4567,7 +4563,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1390; + this.state = 1384; localContext._triggerEvent = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 44 || _la === 86 || _la === 185)) { @@ -4577,22 +4573,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1391; + this.state = 1385; this.match(MySqlParser.KW_ON); - this.state = 1392; + this.state = 1386; this.tableName(); - this.state = 1393; + this.state = 1387; this.match(MySqlParser.KW_FOR); - this.state = 1394; + this.state = 1388; this.match(MySqlParser.KW_EACH); - this.state = 1395; + this.state = 1389; this.match(MySqlParser.KW_ROW); - this.state = 1398; + this.state = 1392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1396; + this.state = 1390; localContext._triggerPlace = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 406 || _la === 538)) { @@ -4602,12 +4598,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1397; + this.state = 1391; localContext._other_trigger_name = this.fullId(); } break; } - this.state = 1400; + this.state = 1394; this.routineBody(); } } @@ -4631,19 +4627,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1402; + this.state = 1396; this.match(MySqlParser.KW_WITH); - this.state = 1404; + this.state = 1398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1403; + this.state = 1397; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 1406; + this.state = 1400; this.commonTableExpressions(); } } @@ -4668,54 +4664,54 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1402; localContext._cteName = this.uid(); - this.state = 1420; + this.state = 1414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1409; + this.state = 1403; this.match(MySqlParser.LR_BRACKET); - this.state = 1410; + this.state = 1404; localContext._cteColumnName = this.uid(); - this.state = 1415; + this.state = 1409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1411; + this.state = 1405; this.match(MySqlParser.COMMA); - this.state = 1412; + this.state = 1406; localContext._cteColumnName = this.uid(); } } - this.state = 1417; + this.state = 1411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1418; + this.state = 1412; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1422; + this.state = 1416; this.match(MySqlParser.KW_AS); - this.state = 1423; + this.state = 1417; this.match(MySqlParser.LR_BRACKET); - this.state = 1424; + this.state = 1418; this.dmlStatement(); - this.state = 1425; + this.state = 1419; this.match(MySqlParser.RR_BRACKET); - this.state = 1428; + this.state = 1422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1426; + this.state = 1420; this.match(MySqlParser.COMMA); - this.state = 1427; + this.state = 1421; this.commonTableExpressions(); } break; @@ -4743,28 +4739,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1430; + this.state = 1424; this.match(MySqlParser.KW_CREATE); - this.state = 1432; + this.state = 1426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 1431; + this.state = 1425; this.orReplace(); } } - this.state = 1437; + this.state = 1431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 1434; + this.state = 1428; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1435; + this.state = 1429; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1436; + this.state = 1430; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -4777,26 +4773,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1440; + this.state = 1434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1439; + this.state = 1433; this.ownerStatement(); } } - this.state = 1445; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 1442; + this.state = 1436; this.match(MySqlParser.KW_SQL); - this.state = 1443; + this.state = 1437; this.match(MySqlParser.KW_SECURITY); - this.state = 1444; + this.state = 1438; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -4809,33 +4805,51 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1447; + this.state = 1441; this.match(MySqlParser.KW_VIEW); - this.state = 1448; + this.state = 1442; this.viewNameCreate(); - this.state = 1453; + this.state = 1447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1449; + this.state = 1443; this.match(MySqlParser.LR_BRACKET); - this.state = 1450; + this.state = 1444; this.columnNames(); - this.state = 1451; + this.state = 1445; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1455; + this.state = 1449; this.match(MySqlParser.KW_AS); - this.state = 1475; + this.state = 1469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1456; + this.state = 1450; this.match(MySqlParser.LR_BRACKET); + this.state = 1452; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 194) { + { + this.state = 1451; + this.withClause(); + } + } + + this.state = 1454; + this.selectStatement(); + this.state = 1455; + this.match(MySqlParser.RR_BRACKET); + } + break; + case 2: + { this.state = 1458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -4848,37 +4862,19 @@ export class MySqlParser extends antlr.Parser { this.state = 1460; this.selectStatement(); - this.state = 1461; - this.match(MySqlParser.RR_BRACKET); - } - break; - case 2: - { - this.state = 1464; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 194) { - { - this.state = 1463; - this.withClause(); - } - } - - this.state = 1466; - this.selectStatement(); - this.state = 1473; + this.state = 1467; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: { - this.state = 1467; + this.state = 1461; this.match(MySqlParser.KW_WITH); - this.state = 1469; + this.state = 1463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 1468; + this.state = 1462; localContext._checkOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -4891,9 +4887,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1471; + this.state = 1465; this.match(MySqlParser.KW_CHECK); - this.state = 1472; + this.state = 1466; this.match(MySqlParser.KW_OPTION); } break; @@ -4922,35 +4918,35 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 52, MySqlParser.RULE_createDatabaseOption); let _la: number; try { - this.state = 1510; + this.state = 1504; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1478; + this.state = 1472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1477; + this.state = 1471; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1480; + this.state = 1474; this.charSet(); - this.state = 1482; + this.state = 1476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1481; + this.state = 1475; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1486; + this.state = 1480; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -4998,13 +4994,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1484; + this.state = 1478; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1485; + this.state = 1479; this.match(MySqlParser.KW_DEFAULT); } break; @@ -5016,47 +5012,68 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1489; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1488; + this.state = 1482; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1491; + this.state = 1485; this.match(MySqlParser.KW_COLLATE); - this.state = 1493; + this.state = 1487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1492; + this.state = 1486; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1495; + this.state = 1489; this.collationName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1497; + this.state = 1491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1496; + this.state = 1490; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1499; + this.state = 1493; this.match(MySqlParser.KW_ENCRYPTION); + this.state = 1495; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 1494; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 1497; + this.match(MySqlParser.STRING_LITERAL); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 1498; + this.match(MySqlParser.KW_READ); + this.state = 1499; + this.match(MySqlParser.KW_ONLY); this.state = 1501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -5068,27 +5085,6 @@ export class MySqlParser extends antlr.Parser { } this.state = 1503; - this.match(MySqlParser.STRING_LITERAL); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 1504; - this.match(MySqlParser.KW_READ); - this.state = 1505; - this.match(MySqlParser.KW_ONLY); - this.state = 1507; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 1506; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 1509; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -5119,31 +5115,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new CharSetContext(this.context, this.state); this.enterRule(localContext, 54, MySqlParser.RULE_charSet); try { - this.state = 1517; + this.state = 1511; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 1512; + this.state = 1506; this.match(MySqlParser.KW_CHARACTER); - this.state = 1513; + this.state = 1507; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 1514; + this.state = 1508; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHAR: this.enterOuterAlt(localContext, 3); { - this.state = 1515; + this.state = 1509; this.match(MySqlParser.KW_CHAR); - this.state = 1516; + this.state = 1510; this.match(MySqlParser.KW_SET); } break; @@ -5172,7 +5168,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1513; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 678)) { this.errorHandler.recoverInline(this); @@ -5181,14 +5177,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1522; + this.state = 1516; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1520; + this.state = 1514; this.match(MySqlParser.LR_BRACKET); - this.state = 1521; + this.state = 1515; this.match(MySqlParser.RR_BRACKET); } break; @@ -5215,22 +5211,22 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1524; + this.state = 1518; this.match(MySqlParser.KW_DEFINER); - this.state = 1525; + this.state = 1519; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1528; + this.state = 1522; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1526; + this.state = 1520; this.userName(); } break; case 2: { - this.state = 1527; + this.state = 1521; this.currentUserExpression(); } break; @@ -5256,28 +5252,28 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 60, MySqlParser.RULE_scheduleExpression); let _la: number; try { - this.state = 1564; + this.state = 1558; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AT: localContext = new PreciseScheduleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1530; + this.state = 1524; this.match(MySqlParser.KW_AT); - this.state = 1531; + this.state = 1525; this.timestampValue(); - this.state = 1535; + this.state = 1529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1532; + this.state = 1526; this.intervalExpr(); } } - this.state = 1537; + this.state = 1531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5287,74 +5283,74 @@ export class MySqlParser extends antlr.Parser { localContext = new IntervalScheduleContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1538; + this.state = 1532; this.match(MySqlParser.KW_EVERY); - this.state = 1541; + this.state = 1535; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1539; + this.state = 1533; this.decimalLiteral(); } break; case 2: { - this.state = 1540; + this.state = 1534; this.expression(0); } break; } - this.state = 1543; + this.state = 1537; this.intervalType(); - this.state = 1552; + this.state = 1546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 641) { { - this.state = 1544; + this.state = 1538; this.match(MySqlParser.KW_STARTS); - this.state = 1545; + this.state = 1539; (localContext as IntervalScheduleContext)._startTimestamp = this.timestampValue(); - this.state = 1549; + this.state = 1543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1546; + this.state = 1540; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._startIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1551; + this.state = 1545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1562; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 379) { { - this.state = 1554; + this.state = 1548; this.match(MySqlParser.KW_ENDS); - this.state = 1555; + this.state = 1549; (localContext as IntervalScheduleContext)._endTimestamp = this.timestampValue(); - this.state = 1559; + this.state = 1553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1556; + this.state = 1550; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._endIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1561; + this.state = 1555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5385,34 +5381,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new TimestampValueContext(this.context, this.state); this.enterRule(localContext, 62, MySqlParser.RULE_timestampValue); try { - this.state = 1570; + this.state = 1564; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1560; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1567; + this.state = 1561; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1568; + this.state = 1562; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1569; + this.state = 1563; this.expression(0); } break; @@ -5438,27 +5434,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1572; + this.state = 1566; this.match(MySqlParser.PLUS); - this.state = 1573; + this.state = 1567; this.match(MySqlParser.KW_INTERVAL); - this.state = 1576; + this.state = 1570; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1574; + this.state = 1568; this.decimalLiteral(); } break; case 2: { - this.state = 1575; + this.state = 1569; this.expression(0); } break; } - this.state = 1578; + this.state = 1572; this.intervalType(); } } @@ -5480,7 +5476,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new IntervalTypeContext(this.context, this.state); this.enterRule(localContext, 66, MySqlParser.RULE_intervalType); try { - this.state = 1593; + this.state = 1587; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_QUARTER: @@ -5493,91 +5489,91 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_MICROSECOND: this.enterOuterAlt(localContext, 1); { - this.state = 1580; + this.state = 1574; this.intervalTypeBase(); } break; case MySqlParser.KW_YEAR: this.enterOuterAlt(localContext, 2); { - this.state = 1581; + this.state = 1575; this.match(MySqlParser.KW_YEAR); } break; case MySqlParser.KW_YEAR_MONTH: this.enterOuterAlt(localContext, 3); { - this.state = 1582; + this.state = 1576; this.match(MySqlParser.KW_YEAR_MONTH); } break; case MySqlParser.KW_DAY_HOUR: this.enterOuterAlt(localContext, 4); { - this.state = 1583; + this.state = 1577; this.match(MySqlParser.KW_DAY_HOUR); } break; case MySqlParser.KW_DAY_MINUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1584; + this.state = 1578; this.match(MySqlParser.KW_DAY_MINUTE); } break; case MySqlParser.KW_DAY_SECOND: this.enterOuterAlt(localContext, 6); { - this.state = 1585; + this.state = 1579; this.match(MySqlParser.KW_DAY_SECOND); } break; case MySqlParser.KW_HOUR_MINUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1586; + this.state = 1580; this.match(MySqlParser.KW_HOUR_MINUTE); } break; case MySqlParser.KW_HOUR_SECOND: this.enterOuterAlt(localContext, 8); { - this.state = 1587; + this.state = 1581; this.match(MySqlParser.KW_HOUR_SECOND); } break; case MySqlParser.KW_MINUTE_SECOND: this.enterOuterAlt(localContext, 9); { - this.state = 1588; + this.state = 1582; this.match(MySqlParser.KW_MINUTE_SECOND); } break; case MySqlParser.KW_SECOND_MICROSECOND: this.enterOuterAlt(localContext, 10); { - this.state = 1589; + this.state = 1583; this.match(MySqlParser.KW_SECOND_MICROSECOND); } break; case MySqlParser.KW_MINUTE_MICROSECOND: this.enterOuterAlt(localContext, 11); { - this.state = 1590; + this.state = 1584; this.match(MySqlParser.KW_MINUTE_MICROSECOND); } break; case MySqlParser.KW_HOUR_MICROSECOND: this.enterOuterAlt(localContext, 12); { - this.state = 1591; + this.state = 1585; this.match(MySqlParser.KW_HOUR_MICROSECOND); } break; case MySqlParser.KW_DAY_MICROSECOND: this.enterOuterAlt(localContext, 13); { - this.state = 1592; + this.state = 1586; this.match(MySqlParser.KW_DAY_MICROSECOND); } break; @@ -5603,31 +5599,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new EnableTypeContext(this.context, this.state); this.enterRule(localContext, 68, MySqlParser.RULE_enableType); try { - this.state = 1600; + this.state = 1594; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1595; + this.state = 1589; this.match(MySqlParser.KW_ENABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1596; + this.state = 1590; this.match(MySqlParser.KW_DISABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1597; + this.state = 1591; this.match(MySqlParser.KW_DISABLE); - this.state = 1598; + this.state = 1592; this.match(MySqlParser.KW_ON); - this.state = 1599; + this.state = 1593; this.match(MySqlParser.KW_SLAVE); } break; @@ -5654,9 +5650,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1602; + this.state = 1596; this.match(MySqlParser.KW_USING); - this.state = 1603; + this.state = 1597; _la = this.tokenStream.LA(1); if(!(_la === 323 || _la === 418)) { this.errorHandler.recoverInline(this); @@ -5686,52 +5682,52 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 72, MySqlParser.RULE_indexOption); let _la: number; try { - this.state = 1627; + this.state = 1621; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_KEY_BLOCK_SIZE: this.enterOuterAlt(localContext, 1); { - this.state = 1605; + this.state = 1599; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1607; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1606; + this.state = 1600; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1609; + this.state = 1603; this.fileSizeLiteral(); } break; case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1610; + this.state = 1604; this.indexType(); } break; case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1611; + this.state = 1605; this.match(MySqlParser.KW_WITH); - this.state = 1612; + this.state = 1606; this.match(MySqlParser.KW_PARSER); - this.state = 1613; + this.state = 1607; localContext._parserName = this.uid(); } break; case MySqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 1614; + this.state = 1608; this.match(MySqlParser.KW_COMMENT); - this.state = 1615; + this.state = 1609; this.match(MySqlParser.STRING_LITERAL); } break; @@ -5739,7 +5735,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VISIBLE: this.enterOuterAlt(localContext, 5); { - this.state = 1616; + this.state = 1610; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -5753,38 +5749,38 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 6); { - this.state = 1617; + this.state = 1611; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1619; + this.state = 1613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1618; + this.state = 1612; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1621; + this.state = 1615; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1622; + this.state = 1616; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1624; + this.state = 1618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1623; + this.state = 1617; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1626; + this.state = 1620; this.match(MySqlParser.STRING_LITERAL); } break; @@ -5813,12 +5809,12 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1630; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80 || _la === 85 || _la === 126) { { - this.state = 1629; + this.state = 1623; localContext._direction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 85 || _la === 126)) { @@ -5831,9 +5827,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1632; + this.state = 1626; localContext._paramName = this.uid(); - this.state = 1633; + this.state = 1627; this.dataType(); } } @@ -5856,16 +5852,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 76, MySqlParser.RULE_routineOption); let _la: number; try { - this.state = 1658; + this.state = 1652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_COMMENT: localContext = new RoutineCommentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1635; + this.state = 1629; this.match(MySqlParser.KW_COMMENT); - this.state = 1636; + this.state = 1630; this.match(MySqlParser.STRING_LITERAL); } break; @@ -5873,9 +5869,9 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineLanguageContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1637; + this.state = 1631; this.match(MySqlParser.KW_LANGUAGE); - this.state = 1638; + this.state = 1632; this.match(MySqlParser.KW_SQL); } break; @@ -5884,17 +5880,17 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineBehaviorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1640; + this.state = 1634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1639; + this.state = 1633; this.match(MySqlParser.KW_NOT); } } - this.state = 1642; + this.state = 1636; this.match(MySqlParser.KW_DETERMINISTIC); } break; @@ -5905,42 +5901,42 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineDataContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1653; + this.state = 1647; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONTAINS: { - this.state = 1643; + this.state = 1637; this.match(MySqlParser.KW_CONTAINS); - this.state = 1644; + this.state = 1638; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_NO: { - this.state = 1645; + this.state = 1639; this.match(MySqlParser.KW_NO); - this.state = 1646; + this.state = 1640; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_READS: { - this.state = 1647; + this.state = 1641; this.match(MySqlParser.KW_READS); - this.state = 1648; + this.state = 1642; this.match(MySqlParser.KW_SQL); - this.state = 1649; + this.state = 1643; this.match(MySqlParser.KW_DATA); } break; case MySqlParser.KW_MODIFIES: { - this.state = 1650; + this.state = 1644; this.match(MySqlParser.KW_MODIFIES); - this.state = 1651; + this.state = 1645; this.match(MySqlParser.KW_SQL); - this.state = 1652; + this.state = 1646; this.match(MySqlParser.KW_DATA); } break; @@ -5953,11 +5949,11 @@ export class MySqlParser extends antlr.Parser { localContext = new RoutineSecurityContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1655; + this.state = 1649; this.match(MySqlParser.KW_SQL); - this.state = 1656; + this.state = 1650; this.match(MySqlParser.KW_SECURITY); - this.state = 1657; + this.state = 1651; (localContext as RoutineSecurityContext)._context = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -5991,69 +5987,69 @@ export class MySqlParser extends antlr.Parser { let localContext = new ServerOptionContext(this.context, this.state); this.enterRule(localContext, 78, MySqlParser.RULE_serverOption); try { - this.state = 1674; + this.state = 1668; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_HOST: this.enterOuterAlt(localContext, 1); { - this.state = 1660; + this.state = 1654; this.match(MySqlParser.KW_HOST); - this.state = 1661; + this.state = 1655; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 1662; + this.state = 1656; this.match(MySqlParser.KW_DATABASE); - this.state = 1663; + this.state = 1657; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_USER: this.enterOuterAlt(localContext, 3); { - this.state = 1664; + this.state = 1658; this.match(MySqlParser.KW_USER); - this.state = 1665; + this.state = 1659; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PASSWORD: this.enterOuterAlt(localContext, 4); { - this.state = 1666; + this.state = 1660; this.match(MySqlParser.KW_PASSWORD); - this.state = 1667; + this.state = 1661; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SOCKET: this.enterOuterAlt(localContext, 5); { - this.state = 1668; + this.state = 1662; this.match(MySqlParser.KW_SOCKET); - this.state = 1669; + this.state = 1663; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_OWNER: this.enterOuterAlt(localContext, 6); { - this.state = 1670; + this.state = 1664; this.match(MySqlParser.KW_OWNER); - this.state = 1671; + this.state = 1665; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PORT: this.enterOuterAlt(localContext, 7); { - this.state = 1672; + this.state = 1666; this.match(MySqlParser.KW_PORT); - this.state = 1673; + this.state = 1667; this.decimalLiteral(); } break; @@ -6082,27 +6078,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1676; + this.state = 1670; this.match(MySqlParser.LR_BRACKET); - this.state = 1677; + this.state = 1671; this.createDefinition(); - this.state = 1682; + this.state = 1676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1678; + this.state = 1672; this.match(MySqlParser.COMMA); - this.state = 1679; + this.state = 1673; this.createDefinition(); } } - this.state = 1684; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1685; + this.state = 1679; this.match(MySqlParser.RR_BRACKET); } } @@ -6125,22 +6121,22 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 82, MySqlParser.RULE_createDefinition); let _la: number; try { - this.state = 1770; + this.state = 1764; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1687; + this.state = 1681; this.columnName(); - this.state = 1688; + this.state = 1682; this.columnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1690; + this.state = 1684; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6149,39 +6145,39 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1692; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1691; + this.state = 1685; this.indexName(); } } - this.state = 1695; + this.state = 1689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1694; + this.state = 1688; this.indexType(); } } - this.state = 1697; + this.state = 1691; this.indexColumnNames(); - this.state = 1701; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1698; + this.state = 1692; this.indexOption(); } } - this.state = 1703; + this.state = 1697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6190,7 +6186,7 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1704; + this.state = 1698; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -6199,12 +6195,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1706; + this.state = 1700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1705; + this.state = 1699; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6216,29 +6212,29 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1709; + this.state = 1703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1708; + this.state = 1702; this.indexName(); } } - this.state = 1711; + this.state = 1705; this.indexColumnNames(); - this.state = 1715; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1712; + this.state = 1706; this.indexOption(); } } - this.state = 1717; + this.state = 1711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6247,43 +6243,43 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1719; + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1718; + this.state = 1712; this.constraintSymbol(); } } - this.state = 1721; + this.state = 1715; this.match(MySqlParser.KW_PRIMARY); - this.state = 1722; + this.state = 1716; this.match(MySqlParser.KW_KEY); - this.state = 1724; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1723; + this.state = 1717; this.indexType(); } } - this.state = 1726; + this.state = 1720; this.indexColumnNames(); - this.state = 1730; + this.state = 1724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1727; + this.state = 1721; this.indexOption(); } } - this.state = 1732; + this.state = 1726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6292,24 +6288,24 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1734; + this.state = 1728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1733; + this.state = 1727; this.constraintSymbol(); } } - this.state = 1736; + this.state = 1730; this.match(MySqlParser.KW_UNIQUE); - this.state = 1738; + this.state = 1732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1737; + this.state = 1731; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6321,39 +6317,39 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1741; + this.state = 1735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1740; + this.state = 1734; this.indexName(); } } - this.state = 1744; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1743; + this.state = 1737; this.indexType(); } } - this.state = 1746; + this.state = 1740; this.indexColumnNames(); - this.state = 1750; + this.state = 1744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1747; + this.state = 1741; this.indexOption(); } } - this.state = 1752; + this.state = 1746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6362,53 +6358,53 @@ export class MySqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1754; + this.state = 1748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1753; + this.state = 1747; this.constraintSymbol(); } } - this.state = 1756; + this.state = 1750; this.match(MySqlParser.KW_FOREIGN); - this.state = 1757; + this.state = 1751; this.match(MySqlParser.KW_KEY); - this.state = 1759; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1758; + this.state = 1752; this.indexName(); } } - this.state = 1761; + this.state = 1755; this.indexColumnNames(); - this.state = 1762; + this.state = 1756; this.referenceDefinition(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1764; + this.state = 1758; this.match(MySqlParser.KW_CHECK); - this.state = 1765; + this.state = 1759; this.match(MySqlParser.LR_BRACKET); - this.state = 1766; + this.state = 1760; this.expression(0); - this.state = 1767; + this.state = 1761; this.match(MySqlParser.RR_BRACKET); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1769; + this.state = 1763; this.checkConstraintDefinition(); } break; @@ -6435,40 +6431,40 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1772; + this.state = 1766; this.constraintSymbol(); } } - this.state = 1775; + this.state = 1769; this.match(MySqlParser.KW_CHECK); - this.state = 1776; + this.state = 1770; this.match(MySqlParser.LR_BRACKET); - this.state = 1777; + this.state = 1771; this.expression(0); - this.state = 1778; + this.state = 1772; this.match(MySqlParser.RR_BRACKET); - this.state = 1783; + this.state = 1777; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1780; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1779; + this.state = 1773; this.match(MySqlParser.KW_NOT); } } - this.state = 1782; + this.state = 1776; this.match(MySqlParser.KW_ENFORCED); } break; @@ -6495,14 +6491,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1785; + this.state = 1779; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 1787; + this.state = 1781; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1786; + this.state = 1780; localContext._symbol_ = this.uid(); } break; @@ -6530,21 +6526,21 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1789; + this.state = 1783; this.dataType(); - this.state = 1793; + this.state = 1787; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1790; + this.state = 1784; this.columnConstraint(); } } } - this.state = 1795; + this.state = 1789; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6569,7 +6565,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 90, MySqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 1839; + this.state = 1833; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NOT: @@ -6578,7 +6574,7 @@ export class MySqlParser extends antlr.Parser { localContext = new NullColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1790; this.nullNotnull(); } break; @@ -6586,9 +6582,9 @@ export class MySqlParser extends antlr.Parser { localContext = new DefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1797; + this.state = 1791; this.match(MySqlParser.KW_DEFAULT); - this.state = 1798; + this.state = 1792; this.defaultValue(); } break; @@ -6596,7 +6592,7 @@ export class MySqlParser extends antlr.Parser { localContext = new VisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1799; + this.state = 1793; this.match(MySqlParser.KW_VISIBLE); } break; @@ -6604,7 +6600,7 @@ export class MySqlParser extends antlr.Parser { localContext = new InvisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1800; + this.state = 1794; this.match(MySqlParser.KW_INVISIBLE); } break; @@ -6613,22 +6609,22 @@ export class MySqlParser extends antlr.Parser { localContext = new AutoIncrementColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1805; + this.state = 1799; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AUTO_INCREMENT: { - this.state = 1801; + this.state = 1795; this.match(MySqlParser.KW_AUTO_INCREMENT); } break; case MySqlParser.KW_ON: { - this.state = 1802; + this.state = 1796; this.match(MySqlParser.KW_ON); - this.state = 1803; + this.state = 1797; this.match(MySqlParser.KW_UPDATE); - this.state = 1804; + this.state = 1798; this.currentTimestamp(); } break; @@ -6642,17 +6638,17 @@ export class MySqlParser extends antlr.Parser { localContext = new PrimaryKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1808; + this.state = 1802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 131) { { - this.state = 1807; + this.state = 1801; this.match(MySqlParser.KW_PRIMARY); } } - this.state = 1810; + this.state = 1804; this.match(MySqlParser.KW_KEY); } break; @@ -6660,14 +6656,14 @@ export class MySqlParser extends antlr.Parser { localContext = new UniqueKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1811; + this.state = 1805; this.match(MySqlParser.KW_UNIQUE); - this.state = 1813; + this.state = 1807; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 1812; + this.state = 1806; this.match(MySqlParser.KW_KEY); } break; @@ -6678,9 +6674,9 @@ export class MySqlParser extends antlr.Parser { localContext = new CommentColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1815; + this.state = 1809; this.match(MySqlParser.KW_COMMENT); - this.state = 1816; + this.state = 1810; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6688,9 +6684,9 @@ export class MySqlParser extends antlr.Parser { localContext = new FormatColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1817; + this.state = 1811; this.match(MySqlParser.KW_COLUMN_FORMAT); - this.state = 1818; + this.state = 1812; (localContext as FormatColumnConstraintContext)._colformat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 374 || _la === 403)) { @@ -6706,9 +6702,9 @@ export class MySqlParser extends antlr.Parser { localContext = new StorageColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1819; + this.state = 1813; this.match(MySqlParser.KW_STORAGE); - this.state = 1820; + this.state = 1814; (localContext as StorageColumnConstraintContext)._storageval = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { @@ -6724,7 +6720,7 @@ export class MySqlParser extends antlr.Parser { localContext = new ReferenceColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1821; + this.state = 1815; this.referenceDefinition(); } break; @@ -6732,9 +6728,9 @@ export class MySqlParser extends antlr.Parser { localContext = new CollateColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1822; + this.state = 1816; this.match(MySqlParser.KW_COLLATE); - this.state = 1823; + this.state = 1817; this.collationName(); } break; @@ -6743,32 +6739,32 @@ export class MySqlParser extends antlr.Parser { localContext = new GeneratedColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1826; + this.state = 1820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1824; + this.state = 1818; this.match(MySqlParser.KW_GENERATED); - this.state = 1825; + this.state = 1819; this.match(MySqlParser.KW_ALWAYS); } } - this.state = 1828; + this.state = 1822; this.match(MySqlParser.KW_AS); - this.state = 1829; + this.state = 1823; this.match(MySqlParser.LR_BRACKET); - this.state = 1830; + this.state = 1824; this.expression(0); - this.state = 1831; + this.state = 1825; this.match(MySqlParser.RR_BRACKET); - this.state = 1833; + this.state = 1827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 648 || _la === 685) { { - this.state = 1832; + this.state = 1826; _la = this.tokenStream.LA(1); if(!(_la === 648 || _la === 685)) { this.errorHandler.recoverInline(this); @@ -6786,11 +6782,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SerialDefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1835; + this.state = 1829; this.match(MySqlParser.KW_SERIAL); - this.state = 1836; + this.state = 1830; this.match(MySqlParser.KW_DEFAULT); - this.state = 1837; + this.state = 1831; this.match(MySqlParser.KW_VALUE); } break; @@ -6799,7 +6795,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CheckExprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1838; + this.state = 1832; this.checkConstraintDefinition(); } break; @@ -6828,28 +6824,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1835; this.match(MySqlParser.KW_REFERENCES); - this.state = 1842; + this.state = 1836; this.tableName(); - this.state = 1844; + this.state = 1838; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1843; + this.state = 1837; this.indexColumnNames(); } break; } - this.state = 1848; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 1846; + this.state = 1840; this.match(MySqlParser.KW_MATCH); - this.state = 1847; + this.state = 1841; localContext._matchType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 408 || _la === 526 || _la === 597)) { @@ -6862,12 +6858,12 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 1851; + this.state = 1845; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1850; + this.state = 1844; this.referenceAction(); } break; @@ -6892,28 +6888,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReferenceActionContext(this.context, this.state); this.enterRule(localContext, 94, MySqlParser.RULE_referenceAction); try { - this.state = 1869; + this.state = 1863; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1847; this.match(MySqlParser.KW_ON); - this.state = 1854; + this.state = 1848; this.match(MySqlParser.KW_DELETE); - this.state = 1855; + this.state = 1849; localContext._onDelete = this.referenceControlType(); - this.state = 1859; + this.state = 1853; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1856; + this.state = 1850; this.match(MySqlParser.KW_ON); - this.state = 1857; + this.state = 1851; this.match(MySqlParser.KW_UPDATE); - this.state = 1858; + this.state = 1852; localContext._onUpdate = this.referenceControlType(); } break; @@ -6923,22 +6919,22 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1861; + this.state = 1855; this.match(MySqlParser.KW_ON); - this.state = 1862; + this.state = 1856; this.match(MySqlParser.KW_UPDATE); - this.state = 1863; + this.state = 1857; localContext._onUpdate = this.referenceControlType(); - this.state = 1867; + this.state = 1861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 1864; + this.state = 1858; this.match(MySqlParser.KW_ON); - this.state = 1865; + this.state = 1859; this.match(MySqlParser.KW_DELETE); - this.state = 1866; + this.state = 1860; localContext._onDelete = this.referenceControlType(); } break; @@ -6965,47 +6961,47 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReferenceControlTypeContext(this.context, this.state); this.enterRule(localContext, 96, MySqlParser.RULE_referenceControlType); try { - this.state = 1879; + this.state = 1873; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1871; + this.state = 1865; this.match(MySqlParser.KW_RESTRICT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1872; + this.state = 1866; this.match(MySqlParser.KW_CASCADE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1873; + this.state = 1867; this.match(MySqlParser.KW_SET); - this.state = 1874; + this.state = 1868; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1875; + this.state = 1869; this.match(MySqlParser.KW_NO); - this.state = 1876; + this.state = 1870; this.match(MySqlParser.KW_ACTION); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1877; + this.state = 1871; this.match(MySqlParser.KW_SET); - this.state = 1878; + this.state = 1872; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7030,31 +7026,31 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 98, MySqlParser.RULE_tableOption); let _la: number; try { - this.state = 2066; + this.state = 2060; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: localContext = new TableOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1881; + this.state = 1875; this.match(MySqlParser.KW_ENGINE); - this.state = 1883; + this.state = 1877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1882; + this.state = 1876; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1886; + this.state = 1880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: { - this.state = 1885; + this.state = 1879; this.engineName(); } break; @@ -7065,19 +7061,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1888; + this.state = 1882; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1890; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1889; + this.state = 1883; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1892; + this.state = 1886; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7085,19 +7081,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAutoextendSizeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1893; + this.state = 1887; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1895; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1894; + this.state = 1888; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1897; + this.state = 1891; this.decimalLiteral(); } break; @@ -7105,19 +7101,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAutoIncrementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1898; + this.state = 1892; this.match(MySqlParser.KW_AUTO_INCREMENT); - this.state = 1900; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1899; + this.state = 1893; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1902; + this.state = 1896; this.decimalLiteral(); } break; @@ -7125,19 +7121,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionAverageContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1903; + this.state = 1897; this.match(MySqlParser.KW_AVG_ROW_LENGTH); - this.state = 1905; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1904; + this.state = 1898; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1907; + this.state = 1901; this.decimalLiteral(); } break; @@ -7145,29 +7141,29 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCharsetContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1909; + this.state = 1903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1908; + this.state = 1902; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1911; + this.state = 1905; this.charSet(); - this.state = 1913; + this.state = 1907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1912; + this.state = 1906; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1917; + this.state = 1911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -7215,13 +7211,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1915; + this.state = 1909; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1916; + this.state = 1910; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7234,7 +7230,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionChecksumContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1919; + this.state = 1913; _la = this.tokenStream.LA(1); if(!(_la === 329 || _la === 522)) { this.errorHandler.recoverInline(this); @@ -7243,17 +7239,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1921; + this.state = 1915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1920; + this.state = 1914; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1923; + this.state = 1917; (localContext as TableOptionChecksumContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -7269,29 +7265,29 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCollateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1925; + this.state = 1919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1924; + this.state = 1918; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1927; + this.state = 1921; this.match(MySqlParser.KW_COLLATE); - this.state = 1929; + this.state = 1923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1928; + this.state = 1922; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1931; + this.state = 1925; this.collationName(); } break; @@ -7299,19 +7295,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCommentContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1932; + this.state = 1926; this.match(MySqlParser.KW_COMMENT); - this.state = 1934; + this.state = 1928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1933; + this.state = 1927; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1936; + this.state = 1930; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7319,19 +7315,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionCompressionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1937; + this.state = 1931; this.match(MySqlParser.KW_COMPRESSION); - this.state = 1939; + this.state = 1933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1938; + this.state = 1932; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1941; + this.state = 1935; _la = this.tokenStream.LA(1); if(!(_la === 882 || _la === 889)) { this.errorHandler.recoverInline(this); @@ -7346,8 +7342,37 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionConnectionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1942; + this.state = 1936; this.match(MySqlParser.KW_CONNECTION); + this.state = 1938; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 1937; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 1940; + this.match(MySqlParser.STRING_LITERAL); + } + break; + case 12: + localContext = new TableOptionDataDirectoryContext(localContext); + this.enterOuterAlt(localContext, 12); + { + this.state = 1941; + _la = this.tokenStream.LA(1); + if(!(_la === 82 || _la === 360)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1942; + this.match(MySqlParser.KW_DIRECTORY); this.state = 1944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -7362,52 +7387,23 @@ export class MySqlParser extends antlr.Parser { this.match(MySqlParser.STRING_LITERAL); } break; - case 12: - localContext = new TableOptionDataDirectoryContext(localContext); - this.enterOuterAlt(localContext, 12); - { - this.state = 1947; - _la = this.tokenStream.LA(1); - if(!(_la === 82 || _la === 360)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 1948; - this.match(MySqlParser.KW_DIRECTORY); - this.state = 1950; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 1949; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 1952; - this.match(MySqlParser.STRING_LITERAL); - } - break; case 13: localContext = new TableOptionDelayContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1953; + this.state = 1947; this.match(MySqlParser.KW_DELAY_KEY_WRITE); - this.state = 1955; + this.state = 1949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1954; + this.state = 1948; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1957; + this.state = 1951; (localContext as TableOptionDelayContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -7423,19 +7419,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEncryptionContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1958; + this.state = 1952; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 1960; + this.state = 1954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1959; + this.state = 1953; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1962; + this.state = 1956; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7443,7 +7439,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPageCompressedContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1963; + this.state = 1957; _la = this.tokenStream.LA(1); if(!(_la === 523 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -7452,17 +7448,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1965; + this.state = 1959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1964; + this.state = 1958; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1967; + this.state = 1961; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -7477,7 +7473,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPageCompressionLevelContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 1968; + this.state = 1962; _la = this.tokenStream.LA(1); if(!(_la === 524 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -7486,17 +7482,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1970; + this.state = 1964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1969; + this.state = 1963; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1972; + this.state = 1966; this.decimalLiteral(); } break; @@ -7504,8 +7500,30 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionEncryptionKeyIdContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 1973; + this.state = 1967; this.match(MySqlParser.KW_ENCRYPTION_KEY_ID); + this.state = 1969; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 1968; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 1971; + this.decimalLiteral(); + } + break; + case 18: + localContext = new TableOptionIndexDirectoryContext(localContext); + this.enterOuterAlt(localContext, 18); + { + this.state = 1972; + this.match(MySqlParser.KW_INDEX); + this.state = 1973; + this.match(MySqlParser.KW_DIRECTORY); this.state = 1975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -7517,28 +7535,6 @@ export class MySqlParser extends antlr.Parser { } this.state = 1977; - this.decimalLiteral(); - } - break; - case 18: - localContext = new TableOptionIndexDirectoryContext(localContext); - this.enterOuterAlt(localContext, 18); - { - this.state = 1978; - this.match(MySqlParser.KW_INDEX); - this.state = 1979; - this.match(MySqlParser.KW_DIRECTORY); - this.state = 1981; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 1980; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 1983; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7546,19 +7542,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionInsertMethodContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 1984; + this.state = 1978; this.match(MySqlParser.KW_INSERT_METHOD); - this.state = 1986; + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1985; + this.state = 1979; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1988; + this.state = 1982; (localContext as TableOptionInsertMethodContext)._insertMethod = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 502)) { @@ -7574,19 +7570,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionKeyBlockSizeContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 1989; + this.state = 1983; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1991; + this.state = 1985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1990; + this.state = 1984; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1993; + this.state = 1987; this.fileSizeLiteral(); } break; @@ -7594,19 +7590,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 1994; + this.state = 1988; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 1996; + this.state = 1990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1995; + this.state = 1989; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1998; + this.state = 1992; this.decimalLiteral(); } break; @@ -7614,19 +7610,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 1999; + this.state = 1993; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2001; + this.state = 1995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2000; + this.state = 1994; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2003; + this.state = 1997; this.decimalLiteral(); } break; @@ -7634,19 +7630,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPackKeysContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2004; + this.state = 1998; this.match(MySqlParser.KW_PACK_KEYS); - this.state = 2006; + this.state = 2000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2005; + this.state = 1999; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2008; + this.state = 2002; (localContext as TableOptionPackKeysContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -7662,19 +7658,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPasswordContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2009; + this.state = 2003; this.match(MySqlParser.KW_PASSWORD); - this.state = 2011; + this.state = 2005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2010; + this.state = 2004; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2013; + this.state = 2007; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7682,19 +7678,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionRowFormatContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2014; + this.state = 2008; this.match(MySqlParser.KW_ROW_FORMAT); - this.state = 2016; + this.state = 2010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2015; + this.state = 2009; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2018; + this.state = 2012; (localContext as TableOptionRowFormatContext)._rowFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 342 || _la === 345 || _la === 374 || _la === 403 || _la === 554 || _la === 889)) { @@ -7710,9 +7706,9 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionStartTransactionContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2019; + this.state = 2013; this.match(MySqlParser.KW_START); - this.state = 2020; + this.state = 2014; this.match(MySqlParser.KW_TRANSACTION); } break; @@ -7720,19 +7716,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionSecondaryEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2021; + this.state = 2015; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 2023; + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2022; + this.state = 2016; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2025; + this.state = 2019; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7740,19 +7736,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionRecalculationContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2026; + this.state = 2020; this.match(MySqlParser.KW_STATS_AUTO_RECALC); - this.state = 2028; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2027; + this.state = 2021; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2030; + this.state = 2024; (localContext as TableOptionRecalculationContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -7768,19 +7764,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionPersistentContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2031; + this.state = 2025; this.match(MySqlParser.KW_STATS_PERSISTENT); - this.state = 2033; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2032; + this.state = 2026; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2035; + this.state = 2029; (localContext as TableOptionPersistentContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -7796,24 +7792,24 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionSamplePageContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2036; + this.state = 2030; this.match(MySqlParser.KW_STATS_SAMPLE_PAGES); - this.state = 2038; + this.state = 2032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2037; + this.state = 2031; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2042; + this.state = 2036; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 2040; + this.state = 2034; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7824,7 +7820,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 2041; + this.state = 2035; this.decimalLiteral(); } break; @@ -7837,16 +7833,16 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2044; + this.state = 2038; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2045; + this.state = 2039; this.tablespaceName(); - this.state = 2047; + this.state = 2041; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2046; + this.state = 2040; this.tablespaceStorage(); } break; @@ -7857,11 +7853,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTableTypeContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2049; + this.state = 2043; this.match(MySqlParser.KW_TABLE_TYPE); - this.state = 2050; + this.state = 2044; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2051; + this.state = 2045; this.tableType(); } break; @@ -7869,7 +7865,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 2052; + this.state = 2046; this.tablespaceStorage(); } break; @@ -7877,19 +7873,19 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionTransactionalContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 2053; + this.state = 2047; this.match(MySqlParser.KW_TRANSACTIONAL); - this.state = 2055; + this.state = 2049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2054; + this.state = 2048; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2057; + this.state = 2051; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -7904,23 +7900,23 @@ export class MySqlParser extends antlr.Parser { localContext = new TableOptionUnionContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 2058; + this.state = 2052; this.match(MySqlParser.KW_UNION); - this.state = 2060; + this.state = 2054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2059; + this.state = 2053; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2062; + this.state = 2056; this.match(MySqlParser.LR_BRACKET); - this.state = 2063; + this.state = 2057; this.tableNames(); - this.state = 2064; + this.state = 2058; this.match(MySqlParser.RR_BRACKET); } break; @@ -7947,7 +7943,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2068; + this.state = 2062; _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 506)) { this.errorHandler.recoverInline(this); @@ -7979,9 +7975,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2070; + this.state = 2064; this.match(MySqlParser.KW_STORAGE); - this.state = 2071; + this.state = 2065; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { this.errorHandler.recoverInline(this); @@ -8013,43 +8009,43 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2073; + this.state = 2067; this.match(MySqlParser.KW_PARTITION); - this.state = 2074; + this.state = 2068; this.match(MySqlParser.KW_BY); - this.state = 2075; + this.state = 2069; this.partitionFunctionDefinition(); - this.state = 2078; + this.state = 2072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 2076; + this.state = 2070; this.match(MySqlParser.KW_PARTITIONS); - this.state = 2077; + this.state = 2071; localContext._count = this.decimalLiteral(); } } - this.state = 2087; + this.state = 2081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 652) { { - this.state = 2080; + this.state = 2074; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2081; + this.state = 2075; this.match(MySqlParser.KW_BY); - this.state = 2082; + this.state = 2076; this.subpartitionFunctionDefinition(); - this.state = 2085; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 653) { { - this.state = 2083; + this.state = 2077; this.match(MySqlParser.KW_SUBPARTITIONS); - this.state = 2084; + this.state = 2078; localContext._subCount = this.decimalLiteral(); } } @@ -8057,32 +8053,32 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2100; + this.state = 2094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 2089; + this.state = 2083; this.match(MySqlParser.LR_BRACKET); - this.state = 2090; + this.state = 2084; this.partitionDefinition(); - this.state = 2095; + this.state = 2089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2091; + this.state = 2085; this.match(MySqlParser.COMMA); - this.state = 2092; + this.state = 2086; this.partitionDefinition(); } } - this.state = 2097; + this.state = 2091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2098; + this.state = 2092; this.match(MySqlParser.RR_BRACKET); } break; @@ -8108,30 +8104,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 106, MySqlParser.RULE_partitionFunctionDefinition); let _la: number; try { - this.state = 2148; + this.state = 2142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: localContext = new PartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2103; + this.state = 2097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2102; + this.state = 2096; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2105; + this.state = 2099; this.match(MySqlParser.KW_HASH); - this.state = 2106; + this.state = 2100; this.match(MySqlParser.LR_BRACKET); - this.state = 2107; + this.state = 2101; this.expression(0); - this.state = 2108; + this.state = 2102; this.match(MySqlParser.RR_BRACKET); } break; @@ -8139,28 +8135,28 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2111; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2110; + this.state = 2104; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2113; + this.state = 2107; this.match(MySqlParser.KW_KEY); - this.state = 2117; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2114; + this.state = 2108; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2115; + this.state = 2109; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2116; + this.state = 2110; (localContext as PartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -8173,19 +8169,19 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2119; + this.state = 2113; this.match(MySqlParser.LR_BRACKET); - this.state = 2121; + this.state = 2115; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 2120; + this.state = 2114; this.columnNames(); } break; } - this.state = 2123; + this.state = 2117; this.match(MySqlParser.RR_BRACKET); } break; @@ -8193,30 +8189,30 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionRangeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2124; + this.state = 2118; this.match(MySqlParser.KW_RANGE); - this.state = 2134; + this.state = 2128; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2125; + this.state = 2119; this.match(MySqlParser.LR_BRACKET); - this.state = 2126; + this.state = 2120; this.expression(0); - this.state = 2127; + this.state = 2121; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2129; + this.state = 2123; this.match(MySqlParser.KW_COLUMNS); - this.state = 2130; + this.state = 2124; this.match(MySqlParser.LR_BRACKET); - this.state = 2131; + this.state = 2125; this.columnNames(); - this.state = 2132; + this.state = 2126; this.match(MySqlParser.RR_BRACKET); } break; @@ -8229,30 +8225,30 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionFunctionListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2136; + this.state = 2130; this.match(MySqlParser.KW_LIST); - this.state = 2146; + this.state = 2140; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2137; + this.state = 2131; this.match(MySqlParser.LR_BRACKET); - this.state = 2138; + this.state = 2132; this.expression(0); - this.state = 2139; + this.state = 2133; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2141; + this.state = 2135; this.match(MySqlParser.KW_COLUMNS); - this.state = 2142; + this.state = 2136; this.match(MySqlParser.LR_BRACKET); - this.state = 2143; + this.state = 2137; this.columnNames(); - this.state = 2144; + this.state = 2138; this.match(MySqlParser.RR_BRACKET); } break; @@ -8282,30 +8278,30 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 108, MySqlParser.RULE_subpartitionFunctionDefinition); let _la: number; try { - this.state = 2171; + this.state = 2165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: localContext = new SubPartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2151; + this.state = 2145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2150; + this.state = 2144; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2153; + this.state = 2147; this.match(MySqlParser.KW_HASH); - this.state = 2154; + this.state = 2148; this.match(MySqlParser.LR_BRACKET); - this.state = 2155; + this.state = 2149; this.expression(0); - this.state = 2156; + this.state = 2150; this.match(MySqlParser.RR_BRACKET); } break; @@ -8313,28 +8309,28 @@ export class MySqlParser extends antlr.Parser { localContext = new SubPartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2159; + this.state = 2153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2158; + this.state = 2152; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2161; + this.state = 2155; this.match(MySqlParser.KW_KEY); - this.state = 2165; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2162; + this.state = 2156; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2163; + this.state = 2157; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2164; + this.state = 2158; (localContext as SubPartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -8347,11 +8343,11 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2167; + this.state = 2161; this.match(MySqlParser.LR_BRACKET); - this.state = 2168; + this.state = 2162; this.columnNames(); - this.state = 2169; + this.state = 2163; this.match(MySqlParser.RR_BRACKET); } break; @@ -8376,85 +8372,85 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 110, MySqlParser.RULE_partitionDefinition); let _la: number; try { - this.state = 2319; + this.state = 2313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2167; this.match(MySqlParser.KW_PARTITION); - this.state = 2174; + this.state = 2168; this.partitionName(); - this.state = 2175; + this.state = 2169; this.match(MySqlParser.KW_VALUES); - this.state = 2176; + this.state = 2170; this.match(MySqlParser.KW_LESS); - this.state = 2177; + this.state = 2171; this.match(MySqlParser.KW_THAN); - this.state = 2178; + this.state = 2172; this.match(MySqlParser.LR_BRACKET); - this.state = 2179; + this.state = 2173; this.partitionDefinerAtom(); - this.state = 2184; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2180; + this.state = 2174; this.match(MySqlParser.COMMA); - this.state = 2181; + this.state = 2175; this.partitionDefinerAtom(); } } - this.state = 2186; + this.state = 2180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2187; + this.state = 2181; this.match(MySqlParser.RR_BRACKET); - this.state = 2191; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2188; + this.state = 2182; this.partitionOption(); } } - this.state = 2193; + this.state = 2187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2205; + this.state = 2199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2194; + this.state = 2188; this.match(MySqlParser.LR_BRACKET); - this.state = 2195; + this.state = 2189; this.subpartitionDefinition(); - this.state = 2200; + this.state = 2194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2196; + this.state = 2190; this.match(MySqlParser.COMMA); - this.state = 2197; + this.state = 2191; this.subpartitionDefinition(); } } - this.state = 2202; + this.state = 2196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2203; + this.state = 2197; this.match(MySqlParser.RR_BRACKET); } } @@ -8465,58 +8461,58 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2207; + this.state = 2201; this.match(MySqlParser.KW_PARTITION); - this.state = 2208; + this.state = 2202; this.partitionName(); - this.state = 2209; + this.state = 2203; this.match(MySqlParser.KW_VALUES); - this.state = 2210; + this.state = 2204; this.match(MySqlParser.KW_LESS); - this.state = 2211; + this.state = 2205; this.match(MySqlParser.KW_THAN); - this.state = 2212; + this.state = 2206; this.partitionDefinerAtom(); - this.state = 2216; + this.state = 2210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2213; + this.state = 2207; this.partitionOption(); } } - this.state = 2218; + this.state = 2212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2230; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2219; + this.state = 2213; this.match(MySqlParser.LR_BRACKET); - this.state = 2220; + this.state = 2214; this.subpartitionDefinition(); - this.state = 2225; + this.state = 2219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2221; + this.state = 2215; this.match(MySqlParser.COMMA); - this.state = 2222; + this.state = 2216; this.subpartitionDefinition(); } } - this.state = 2227; + this.state = 2221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2228; + this.state = 2222; this.match(MySqlParser.RR_BRACKET); } } @@ -8527,76 +8523,76 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionListAtomContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2232; + this.state = 2226; this.match(MySqlParser.KW_PARTITION); - this.state = 2233; + this.state = 2227; this.partitionName(); - this.state = 2234; + this.state = 2228; this.match(MySqlParser.KW_VALUES); - this.state = 2235; + this.state = 2229; this.match(MySqlParser.KW_IN); - this.state = 2236; + this.state = 2230; this.match(MySqlParser.LR_BRACKET); - this.state = 2237; + this.state = 2231; this.partitionDefinerAtom(); - this.state = 2242; + this.state = 2236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2238; + this.state = 2232; this.match(MySqlParser.COMMA); - this.state = 2239; + this.state = 2233; this.partitionDefinerAtom(); } } - this.state = 2244; + this.state = 2238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2245; + this.state = 2239; this.match(MySqlParser.RR_BRACKET); - this.state = 2249; + this.state = 2243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2246; + this.state = 2240; this.partitionOption(); } } - this.state = 2251; + this.state = 2245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2263; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2252; + this.state = 2246; this.match(MySqlParser.LR_BRACKET); - this.state = 2253; + this.state = 2247; this.subpartitionDefinition(); - this.state = 2258; + this.state = 2252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2254; + this.state = 2248; this.match(MySqlParser.COMMA); - this.state = 2255; + this.state = 2249; this.subpartitionDefinition(); } } - this.state = 2260; + this.state = 2254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2261; + this.state = 2255; this.match(MySqlParser.RR_BRACKET); } } @@ -8607,76 +8603,76 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionListVectorContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2265; + this.state = 2259; this.match(MySqlParser.KW_PARTITION); - this.state = 2266; + this.state = 2260; this.partitionName(); - this.state = 2267; + this.state = 2261; this.match(MySqlParser.KW_VALUES); - this.state = 2268; + this.state = 2262; this.match(MySqlParser.KW_IN); - this.state = 2269; + this.state = 2263; this.match(MySqlParser.LR_BRACKET); - this.state = 2270; + this.state = 2264; this.partitionDefinerVector(); - this.state = 2275; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2271; + this.state = 2265; this.match(MySqlParser.COMMA); - this.state = 2272; + this.state = 2266; this.partitionDefinerVector(); } } - this.state = 2277; + this.state = 2271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2278; + this.state = 2272; this.match(MySqlParser.RR_BRACKET); - this.state = 2282; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2279; + this.state = 2273; this.partitionOption(); } } - this.state = 2284; + this.state = 2278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2296; + this.state = 2290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2285; + this.state = 2279; this.match(MySqlParser.LR_BRACKET); - this.state = 2286; + this.state = 2280; this.subpartitionDefinition(); - this.state = 2291; + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2287; + this.state = 2281; this.match(MySqlParser.COMMA); - this.state = 2288; + this.state = 2282; this.subpartitionDefinition(); } } - this.state = 2293; + this.state = 2287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2294; + this.state = 2288; this.match(MySqlParser.RR_BRACKET); } } @@ -8687,50 +8683,50 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionSimpleContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2298; + this.state = 2292; this.match(MySqlParser.KW_PARTITION); - this.state = 2299; + this.state = 2293; this.partitionName(); - this.state = 2303; + this.state = 2297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2300; + this.state = 2294; this.partitionOption(); } } - this.state = 2305; + this.state = 2299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2317; + this.state = 2311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2306; + this.state = 2300; this.match(MySqlParser.LR_BRACKET); - this.state = 2307; + this.state = 2301; this.subpartitionDefinition(); - this.state = 2312; + this.state = 2306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2308; + this.state = 2302; this.match(MySqlParser.COMMA); - this.state = 2309; + this.state = 2303; this.subpartitionDefinition(); } } - this.state = 2314; + this.state = 2308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2315; + this.state = 2309; this.match(MySqlParser.RR_BRACKET); } } @@ -8757,27 +8753,27 @@ export class MySqlParser extends antlr.Parser { let localContext = new PartitionDefinerAtomContext(this.context, this.state); this.enterRule(localContext, 112, MySqlParser.RULE_partitionDefinerAtom); try { - this.state = 2324; + this.state = 2318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2321; + this.state = 2315; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2322; + this.state = 2316; this.expression(0); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2323; + this.state = 2317; this.match(MySqlParser.KW_MAXVALUE); } break; @@ -8804,27 +8800,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2326; + this.state = 2320; this.match(MySqlParser.LR_BRACKET); - this.state = 2327; + this.state = 2321; this.partitionDefinerAtom(); - this.state = 2330; + this.state = 2324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2328; + this.state = 2322; this.match(MySqlParser.COMMA); - this.state = 2329; + this.state = 2323; this.partitionDefinerAtom(); } } - this.state = 2332; + this.state = 2326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 2334; + this.state = 2328; this.match(MySqlParser.RR_BRACKET); } } @@ -8849,21 +8845,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2336; + this.state = 2330; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2337; + this.state = 2331; localContext._logicalName = this.uid(); - this.state = 2341; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2338; + this.state = 2332; this.partitionOption(); } } - this.state = 2343; + this.state = 2337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8888,7 +8884,7 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 118, MySqlParser.RULE_partitionOption); let _la: number; try { - this.state = 2392; + this.state = 2386; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: @@ -8897,39 +8893,39 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2345; + this.state = 2339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2344; + this.state = 2338; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2348; + this.state = 2342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 2347; + this.state = 2341; this.match(MySqlParser.KW_STORAGE); } } - this.state = 2350; + this.state = 2344; this.match(MySqlParser.KW_ENGINE); - this.state = 2352; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2351; + this.state = 2345; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2354; + this.state = 2348; this.engineName(); } break; @@ -8937,8 +8933,30 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionCommentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2355; + this.state = 2349; this.match(MySqlParser.KW_COMMENT); + this.state = 2351; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 857) { + { + this.state = 2350; + this.match(MySqlParser.EQUAL_SYMBOL); + } + } + + this.state = 2353; + (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); + } + break; + case MySqlParser.KW_DATA: + localContext = new PartitionOptionDataDirectoryContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 2354; + this.match(MySqlParser.KW_DATA); + this.state = 2355; + this.match(MySqlParser.KW_DIRECTORY); this.state = 2357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -8950,15 +8968,15 @@ export class MySqlParser extends antlr.Parser { } this.state = 2359; - (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); + (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); } break; - case MySqlParser.KW_DATA: - localContext = new PartitionOptionDataDirectoryContext(localContext); - this.enterOuterAlt(localContext, 3); + case MySqlParser.KW_INDEX: + localContext = new PartitionOptionIndexDirectoryContext(localContext); + this.enterOuterAlt(localContext, 4); { this.state = 2360; - this.match(MySqlParser.KW_DATA); + this.match(MySqlParser.KW_INDEX); this.state = 2361; this.match(MySqlParser.KW_DIRECTORY); this.state = 2363; @@ -8972,28 +8990,6 @@ export class MySqlParser extends antlr.Parser { } this.state = 2365; - (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); - } - break; - case MySqlParser.KW_INDEX: - localContext = new PartitionOptionIndexDirectoryContext(localContext); - this.enterOuterAlt(localContext, 4); - { - this.state = 2366; - this.match(MySqlParser.KW_INDEX); - this.state = 2367; - this.match(MySqlParser.KW_DIRECTORY); - this.state = 2369; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 857) { - { - this.state = 2368; - this.match(MySqlParser.EQUAL_SYMBOL); - } - } - - this.state = 2371; (localContext as PartitionOptionIndexDirectoryContext)._indexDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9001,19 +8997,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2372; + this.state = 2366; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2374; + this.state = 2368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2373; + this.state = 2367; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2376; + this.state = 2370; (localContext as PartitionOptionMaxRowsContext)._maxRows = this.decimalLiteral(); } break; @@ -9021,19 +9017,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2377; + this.state = 2371; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2379; + this.state = 2373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2378; + this.state = 2372; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2381; + this.state = 2375; (localContext as PartitionOptionMinRowsContext)._minRows = this.decimalLiteral(); } break; @@ -9041,19 +9037,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2382; + this.state = 2376; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2384; + this.state = 2378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2383; + this.state = 2377; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2386; + this.state = 2380; this.tablespaceName(); } break; @@ -9061,19 +9057,19 @@ export class MySqlParser extends antlr.Parser { localContext = new PartitionOptionNodeGroupContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2387; + this.state = 2381; this.match(MySqlParser.KW_NODEGROUP); - this.state = 2389; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2388; + this.state = 2382; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2391; + this.state = 2385; (localContext as PartitionOptionNodeGroupContext)._nodegroup = this.uid(); } break; @@ -9100,16 +9096,16 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 120, MySqlParser.RULE_alterDatabase); let _la: number; try { - this.state = 2412; + this.state = 2406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: localContext = new AlterSimpleDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2394; + this.state = 2388; this.match(MySqlParser.KW_ALTER); - this.state = 2395; + this.state = 2389; (localContext as AlterSimpleDatabaseContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9119,27 +9115,27 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2397; + this.state = 2391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2396; + this.state = 2390; this.databaseName(); } break; } - this.state = 2400; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2399; + this.state = 2393; this.createDatabaseOption(); } } - this.state = 2402; + this.state = 2396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823); @@ -9149,9 +9145,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterUpgradeNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2404; + this.state = 2398; this.match(MySqlParser.KW_ALTER); - this.state = 2405; + this.state = 2399; (localContext as AlterUpgradeNameContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9161,15 +9157,15 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2406; + this.state = 2400; this.databaseName(); - this.state = 2407; + this.state = 2401; this.match(MySqlParser.KW_UPGRADE); - this.state = 2408; + this.state = 2402; this.match(MySqlParser.KW_DATA); - this.state = 2409; + this.state = 2403; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2410; + this.state = 2404; this.match(MySqlParser.KW_NAME); } break; @@ -9196,104 +9192,104 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2414; + this.state = 2408; this.match(MySqlParser.KW_ALTER); - this.state = 2416; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2415; + this.state = 2409; this.ownerStatement(); } } - this.state = 2418; + this.state = 2412; this.match(MySqlParser.KW_EVENT); - this.state = 2419; + this.state = 2413; localContext._event_name = this.fullId(); - this.state = 2423; + this.state = 2417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2420; + this.state = 2414; this.match(MySqlParser.KW_ON); - this.state = 2421; + this.state = 2415; this.match(MySqlParser.KW_SCHEDULE); - this.state = 2422; + this.state = 2416; this.scheduleExpression(); } break; } - this.state = 2431; + this.state = 2425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2425; + this.state = 2419; this.match(MySqlParser.KW_ON); - this.state = 2426; + this.state = 2420; this.match(MySqlParser.KW_COMPLETION); - this.state = 2428; + this.state = 2422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2427; + this.state = 2421; this.match(MySqlParser.KW_NOT); } } - this.state = 2430; + this.state = 2424; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 2436; + this.state = 2430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2433; + this.state = 2427; this.match(MySqlParser.KW_RENAME); - this.state = 2434; + this.state = 2428; this.match(MySqlParser.KW_TO); - this.state = 2435; + this.state = 2429; localContext._new_event_name = this.fullId(); } break; } - this.state = 2439; + this.state = 2433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 2438; + this.state = 2432; this.enableType(); } } - this.state = 2443; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 2441; + this.state = 2435; this.match(MySqlParser.KW_COMMENT); - this.state = 2442; + this.state = 2436; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2447; + this.state = 2441; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2445; + this.state = 2439; this.match(MySqlParser.KW_DO); - this.state = 2446; + this.state = 2440; this.routineBody(); } break; @@ -9321,23 +9317,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2449; + this.state = 2443; this.match(MySqlParser.KW_ALTER); - this.state = 2450; + this.state = 2444; this.match(MySqlParser.KW_FUNCTION); - this.state = 2451; + this.state = 2445; this.functionName(); - this.state = 2455; + this.state = 2449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2452; + this.state = 2446; this.routineOption(); } } - this.state = 2457; + this.state = 2451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9363,17 +9359,17 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2458; + this.state = 2452; this.match(MySqlParser.KW_ALTER); - this.state = 2459; + this.state = 2453; this.match(MySqlParser.KW_INSTANCE); - this.state = 2460; + this.state = 2454; this.match(MySqlParser.KW_ROTATE); - this.state = 2461; + this.state = 2455; this.match(MySqlParser.KW_INNODB); - this.state = 2462; + this.state = 2456; this.match(MySqlParser.KW_MASTER); - this.state = 2463; + this.state = 2457; this.match(MySqlParser.KW_KEY); } } @@ -9398,65 +9394,65 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2465; + this.state = 2459; this.match(MySqlParser.KW_ALTER); - this.state = 2466; + this.state = 2460; this.match(MySqlParser.KW_LOGFILE); - this.state = 2467; + this.state = 2461; this.match(MySqlParser.KW_GROUP); - this.state = 2468; + this.state = 2462; localContext._logfileGroupName = this.uid(); - this.state = 2469; + this.state = 2463; this.match(MySqlParser.KW_ADD); - this.state = 2470; + this.state = 2464; this.match(MySqlParser.KW_UNDOFILE); - this.state = 2471; + this.state = 2465; this.match(MySqlParser.STRING_LITERAL); - this.state = 2477; + this.state = 2471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2472; + this.state = 2466; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2474; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2473; + this.state = 2467; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2476; + this.state = 2470; this.fileSizeLiteral(); } } - this.state = 2480; + this.state = 2474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2479; + this.state = 2473; this.match(MySqlParser.KW_WAIT); } } - this.state = 2482; + this.state = 2476; this.match(MySqlParser.KW_ENGINE); - this.state = 2484; + this.state = 2478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2483; + this.state = 2477; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2486; + this.state = 2480; this.engineName(); } } @@ -9481,23 +9477,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2488; + this.state = 2482; this.match(MySqlParser.KW_ALTER); - this.state = 2489; + this.state = 2483; this.match(MySqlParser.KW_PROCEDURE); - this.state = 2490; + this.state = 2484; localContext._proc_name = this.fullId(); - this.state = 2494; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2491; + this.state = 2485; this.routineOption(); } } - this.state = 2496; + this.state = 2490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9524,35 +9520,35 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2497; + this.state = 2491; this.match(MySqlParser.KW_ALTER); - this.state = 2498; + this.state = 2492; this.match(MySqlParser.KW_SERVER); - this.state = 2499; + this.state = 2493; localContext._serverName = this.uid(); - this.state = 2500; + this.state = 2494; this.match(MySqlParser.KW_OPTIONS); - this.state = 2501; + this.state = 2495; this.match(MySqlParser.LR_BRACKET); - this.state = 2502; + this.state = 2496; this.serverOption(); - this.state = 2507; + this.state = 2501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2503; + this.state = 2497; this.match(MySqlParser.COMMA); - this.state = 2504; + this.state = 2498; this.serverOption(); } } - this.state = 2509; + this.state = 2503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2510; + this.state = 2504; this.match(MySqlParser.RR_BRACKET); } } @@ -9578,58 +9574,58 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2512; + this.state = 2506; this.match(MySqlParser.KW_ALTER); - this.state = 2513; + this.state = 2507; this.match(MySqlParser.KW_TABLE); - this.state = 2514; + this.state = 2508; this.tableName(); - this.state = 2523; + this.state = 2517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 2515; + this.state = 2509; this.alterOption(); - this.state = 2520; + this.state = 2514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2516; + this.state = 2510; this.match(MySqlParser.COMMA); - this.state = 2517; + this.state = 2511; this.alterOption(); } } - this.state = 2522; + this.state = 2516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2532; + this.state = 2526; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2525; + this.state = 2519; this.alterPartitionSpecification(); - this.state = 2529; + this.state = 2523; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2526; + this.state = 2520; this.alterPartitionSpecification(); } } } - this.state = 2531; + this.state = 2525; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); } @@ -9659,23 +9655,23 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2534; + this.state = 2528; this.match(MySqlParser.KW_ALTER); - this.state = 2536; + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 2535; + this.state = 2529; this.match(MySqlParser.KW_UNDO); } } - this.state = 2538; + this.state = 2532; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2539; + this.state = 2533; this.tablespaceName(); - this.state = 2540; + this.state = 2534; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51)) { this.errorHandler.recoverInline(this); @@ -9684,86 +9680,86 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2541; + this.state = 2535; this.match(MySqlParser.KW_DATAFILE); - this.state = 2542; + this.state = 2536; this.match(MySqlParser.STRING_LITERAL); - this.state = 2548; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2543; + this.state = 2537; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2545; + this.state = 2539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2544; + this.state = 2538; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2547; + this.state = 2541; this.fileSizeLiteral(); } } - this.state = 2551; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2550; + this.state = 2544; this.match(MySqlParser.KW_WAIT); } } - this.state = 2556; + this.state = 2550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: { - this.state = 2553; + this.state = 2547; this.match(MySqlParser.KW_RENAME); - this.state = 2554; + this.state = 2548; this.match(MySqlParser.KW_TO); - this.state = 2555; + this.state = 2549; this.tablespaceNameCreate(); } break; } - this.state = 2563; + this.state = 2557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2558; + this.state = 2552; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 2560; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2559; + this.state = 2553; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2562; + this.state = 2556; this.fileSizeLiteral(); } } - this.state = 2567; + this.state = 2561; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2565; + this.state = 2559; this.match(MySqlParser.KW_SET); - this.state = 2566; + this.state = 2560; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 81)) { this.errorHandler.recoverInline(this); @@ -9775,68 +9771,68 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 2574; + this.state = 2568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 376) { { - this.state = 2569; + this.state = 2563; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2571; + this.state = 2565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2570; + this.state = 2564; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2573; + this.state = 2567; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2581; + this.state = 2575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 2576; + this.state = 2570; this.match(MySqlParser.KW_ENGINE); - this.state = 2578; + this.state = 2572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2577; + this.state = 2571; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2580; + this.state = 2574; this.engineName(); } } - this.state = 2588; + this.state = 2582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 2583; + this.state = 2577; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 2585; + this.state = 2579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2584; + this.state = 2578; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2587; + this.state = 2581; this.match(MySqlParser.STRING_LITERAL); } } @@ -9864,18 +9860,18 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2590; + this.state = 2584; this.match(MySqlParser.KW_ALTER); - this.state = 2594; + this.state = 2588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2591; + this.state = 2585; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2592; + this.state = 2586; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2593; + this.state = 2587; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -9888,26 +9884,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2597; + this.state = 2591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2596; + this.state = 2590; this.ownerStatement(); } } - this.state = 2602; + this.state = 2596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 2599; + this.state = 2593; this.match(MySqlParser.KW_SQL); - this.state = 2600; + this.state = 2594; this.match(MySqlParser.KW_SECURITY); - this.state = 2601; + this.state = 2595; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -9920,41 +9916,41 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2604; + this.state = 2598; this.match(MySqlParser.KW_VIEW); - this.state = 2605; + this.state = 2599; this.viewName(); - this.state = 2610; + this.state = 2604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2606; + this.state = 2600; this.match(MySqlParser.LR_BRACKET); - this.state = 2607; + this.state = 2601; this.columnNames(); - this.state = 2608; + this.state = 2602; this.match(MySqlParser.RR_BRACKET); } } - this.state = 2612; + this.state = 2606; this.match(MySqlParser.KW_AS); - this.state = 2613; + this.state = 2607; this.selectStatement(); - this.state = 2620; + this.state = 2614; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2614; + this.state = 2608; this.match(MySqlParser.KW_WITH); - this.state = 2616; + this.state = 2610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 2615; + this.state = 2609; localContext._checkOpt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -9967,9 +9963,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2618; + this.state = 2612; this.match(MySqlParser.KW_CHECK); - this.state = 2619; + this.state = 2613; this.match(MySqlParser.KW_OPTION); } break; @@ -9996,38 +9992,38 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 2886; + this.state = 2880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: localContext = new AlterByTableOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2622; + this.state = 2616; this.tableOption(); - this.state = 2629; + this.state = 2623; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 305, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2624; + this.state = 2618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 2623; + this.state = 2617; this.match(MySqlParser.COMMA); } } - this.state = 2626; + this.state = 2620; this.tableOption(); } } } - this.state = 2631; + this.state = 2625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 305, this.context); } @@ -10037,36 +10033,36 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2632; + this.state = 2626; this.match(MySqlParser.KW_ADD); - this.state = 2634; + this.state = 2628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2633; + this.state = 2627; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2636; + this.state = 2630; this.columnName(); - this.state = 2637; + this.state = 2631; this.columnDefinition(); - this.state = 2641; + this.state = 2635; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2638; + this.state = 2632; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2639; + this.state = 2633; this.match(MySqlParser.KW_AFTER); - this.state = 2640; + this.state = 2634; this.columnName(); } break; @@ -10152,43 +10148,43 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddColumnsContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2643; + this.state = 2637; this.match(MySqlParser.KW_ADD); - this.state = 2645; + this.state = 2639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 29) { { - this.state = 2644; + this.state = 2638; this.match(MySqlParser.KW_COLUMN); } } - this.state = 2647; + this.state = 2641; this.match(MySqlParser.LR_BRACKET); - this.state = 2648; + this.state = 2642; this.columnName(); - this.state = 2649; + this.state = 2643; this.columnDefinition(); - this.state = 2656; + this.state = 2650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2650; + this.state = 2644; this.match(MySqlParser.COMMA); - this.state = 2651; + this.state = 2645; this.columnName(); - this.state = 2652; + this.state = 2646; this.columnDefinition(); } } - this.state = 2658; + this.state = 2652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2659; + this.state = 2653; this.match(MySqlParser.RR_BRACKET); } break; @@ -10196,9 +10192,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddIndexContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2661; + this.state = 2655; this.match(MySqlParser.KW_ADD); - this.state = 2662; + this.state = 2656; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10207,41 +10203,41 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2664; + this.state = 2658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2663; + this.state = 2657; this.indexName(); } } - this.state = 2667; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2666; + this.state = 2660; this.indexType(); } } - this.state = 2669; + this.state = 2663; this.indexColumnNames(); - this.state = 2673; + this.state = 2667; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 312, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2670; + this.state = 2664; this.indexOption(); } } } - this.state = 2675; + this.state = 2669; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 312, this.context); } @@ -10251,9 +10247,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddSpecialIndexContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2676; + this.state = 2670; this.match(MySqlParser.KW_ADD); - this.state = 2677; + this.state = 2671; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -10262,12 +10258,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2679; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2678; + this.state = 2672; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10279,31 +10275,31 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2682; + this.state = 2676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2681; + this.state = 2675; this.indexName(); } } - this.state = 2684; + this.state = 2678; this.indexColumnNames(); - this.state = 2688; + this.state = 2682; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 315, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2685; + this.state = 2679; this.indexOption(); } } } - this.state = 2690; + this.state = 2684; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 315, this.context); } @@ -10313,21 +10309,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2691; + this.state = 2685; this.match(MySqlParser.KW_ADD); - this.state = 2696; + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2692; + this.state = 2686; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2694; + this.state = 2688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2693; + this.state = 2687; (localContext as AlterByAddPrimaryKeyContext)._symbol_ = this.uid(); } break; @@ -10335,35 +10331,35 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2698; + this.state = 2692; this.match(MySqlParser.KW_PRIMARY); - this.state = 2699; + this.state = 2693; this.match(MySqlParser.KW_KEY); - this.state = 2701; + this.state = 2695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2700; + this.state = 2694; this.indexType(); } } - this.state = 2703; + this.state = 2697; this.indexColumnNames(); - this.state = 2707; + this.state = 2701; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2704; + this.state = 2698; this.indexOption(); } } } - this.state = 2709; + this.state = 2703; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); } @@ -10373,21 +10369,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddUniqueKeyContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2710; + this.state = 2704; this.match(MySqlParser.KW_ADD); - this.state = 2715; + this.state = 2709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2711; + this.state = 2705; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2713; + this.state = 2707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2712; + this.state = 2706; (localContext as AlterByAddUniqueKeyContext)._symbol_ = this.uid(); } } @@ -10395,14 +10391,14 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2717; + this.state = 2711; this.match(MySqlParser.KW_UNIQUE); - this.state = 2719; + this.state = 2713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2718; + this.state = 2712; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10414,41 +10410,41 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2722; + this.state = 2716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2721; + this.state = 2715; this.indexName(); } } - this.state = 2725; + this.state = 2719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2724; + this.state = 2718; this.indexType(); } } - this.state = 2727; + this.state = 2721; this.indexColumnNames(); - this.state = 2731; + this.state = 2725; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2728; + this.state = 2722; this.indexOption(); } } } - this.state = 2733; + this.state = 2727; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); } @@ -10458,21 +10454,21 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddForeignKeyContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2734; + this.state = 2728; this.match(MySqlParser.KW_ADD); - this.state = 2739; + this.state = 2733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2735; + this.state = 2729; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2737; + this.state = 2731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2736; + this.state = 2730; (localContext as AlterByAddForeignKeyContext)._symbol_ = this.uid(); } } @@ -10480,23 +10476,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2741; + this.state = 2735; this.match(MySqlParser.KW_FOREIGN); - this.state = 2742; + this.state = 2736; this.match(MySqlParser.KW_KEY); - this.state = 2744; + this.state = 2738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2743; + this.state = 2737; this.indexName(); } } - this.state = 2746; + this.state = 2740; this.indexColumnNames(); - this.state = 2747; + this.state = 2741; this.referenceDefinition(); } break; @@ -10504,14 +10500,14 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2749; + this.state = 2743; this.match(MySqlParser.KW_ADD); - this.state = 2751; + this.state = 2745; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2750; + this.state = 2744; this.checkConstraintDefinition(); } break; @@ -10522,9 +10518,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropConstraintCheckContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2753; + this.state = 2747; this.match(MySqlParser.KW_DROP); - this.state = 2754; + this.state = 2748; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -10533,7 +10529,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2755; + this.state = 2749; (localContext as AlterByDropConstraintCheckContext)._symbol_ = this.uid(); } break; @@ -10541,9 +10537,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2756; + this.state = 2750; this.match(MySqlParser.KW_ALTER); - this.state = 2757; + this.state = 2751; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -10552,24 +10548,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2758; + this.state = 2752; (localContext as AlterByAlterCheckTableConstraintContext)._symbol_ = this.uid(); - this.state = 2760; + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2759; + this.state = 2753; this.match(MySqlParser.KW_NOT); } } - this.state = 2763; + this.state = 2757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2762; + this.state = 2756; this.match(MySqlParser.KW_ENFORCED); } } @@ -10580,19 +10576,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterBySetAlgorithmContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2765; + this.state = 2759; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2767; + this.state = 2761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2766; + this.state = 2760; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2769; + this.state = 2763; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430 || _la === 434)) { this.errorHandler.recoverInline(this); @@ -10607,38 +10603,38 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterColumnDefaultContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2770; + this.state = 2764; this.match(MySqlParser.KW_ALTER); - this.state = 2772; + this.state = 2766; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 2771; + this.state = 2765; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2774; + this.state = 2768; this.columnName(); - this.state = 2782; + this.state = 2776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2775; + this.state = 2769; this.match(MySqlParser.KW_SET); - this.state = 2776; + this.state = 2770; this.match(MySqlParser.KW_DEFAULT); - this.state = 2777; + this.state = 2771; this.defaultValue(); } break; case 2: { - this.state = 2778; + this.state = 2772; this.match(MySqlParser.KW_SET); - this.state = 2779; + this.state = 2773; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -10651,9 +10647,9 @@ export class MySqlParser extends antlr.Parser { break; case 3: { - this.state = 2780; + this.state = 2774; this.match(MySqlParser.KW_DROP); - this.state = 2781; + this.state = 2775; this.match(MySqlParser.KW_DEFAULT); } break; @@ -10664,13 +10660,13 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAlterIndexVisibilityContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2784; + this.state = 2778; this.match(MySqlParser.KW_ALTER); - this.state = 2785; + this.state = 2779; this.match(MySqlParser.KW_INDEX); - this.state = 2786; + this.state = 2780; this.indexName(); - this.state = 2787; + this.state = 2781; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -10685,38 +10681,38 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByChangeColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2789; + this.state = 2783; this.match(MySqlParser.KW_CHANGE); - this.state = 2791; + this.state = 2785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 2790; + this.state = 2784; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2793; + this.state = 2787; (localContext as AlterByChangeColumnContext)._oldColumn = this.columnName(); - this.state = 2794; + this.state = 2788; (localContext as AlterByChangeColumnContext)._newColumn = this.columnNameCreate(); - this.state = 2795; + this.state = 2789; this.columnDefinition(); - this.state = 2799; + this.state = 2793; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2796; + this.state = 2790; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2797; + this.state = 2791; this.match(MySqlParser.KW_AFTER); - this.state = 2798; + this.state = 2792; this.columnName(); } break; @@ -10802,42 +10798,42 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDefaultCharsetContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2802; + this.state = 2796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2801; + this.state = 2795; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2804; + this.state = 2798; this.match(MySqlParser.KW_CHARACTER); - this.state = 2805; + this.state = 2799; this.match(MySqlParser.KW_SET); - this.state = 2806; + this.state = 2800; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2807; + this.state = 2801; this.charsetName(); - this.state = 2813; + this.state = 2807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2808; + this.state = 2802; this.match(MySqlParser.KW_COLLATE); - this.state = 2810; + this.state = 2804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2809; + this.state = 2803; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2812; + this.state = 2806; this.collationName(); } } @@ -10848,40 +10844,40 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByConvertCharsetContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2815; + this.state = 2809; this.match(MySqlParser.KW_CONVERT); - this.state = 2816; + this.state = 2810; this.match(MySqlParser.KW_TO); - this.state = 2820; + this.state = 2814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARSET: { - this.state = 2817; + this.state = 2811; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHARACTER: { - this.state = 2818; + this.state = 2812; this.match(MySqlParser.KW_CHARACTER); - this.state = 2819; + this.state = 2813; this.match(MySqlParser.KW_SET); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2822; + this.state = 2816; this.charsetName(); - this.state = 2825; + this.state = 2819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2823; + this.state = 2817; this.match(MySqlParser.KW_COLLATE); - this.state = 2824; + this.state = 2818; this.collationName(); } } @@ -10892,7 +10888,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterKeysContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2827; + this.state = 2821; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -10901,7 +10897,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2828; + this.state = 2822; this.match(MySqlParser.KW_KEYS); } break; @@ -10909,7 +10905,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterTablespaceOptionContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2829; + this.state = 2823; _la = this.tokenStream.LA(1); if(!(_la === 369 || _la === 425)) { this.errorHandler.recoverInline(this); @@ -10918,7 +10914,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2830; + this.state = 2824; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -10926,19 +10922,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2831; + this.state = 2825; this.match(MySqlParser.KW_DROP); - this.state = 2833; + this.state = 2827; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: { - this.state = 2832; + this.state = 2826; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2835; + this.state = 2829; this.columnName(); } break; @@ -10946,9 +10942,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropIndexContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2836; + this.state = 2830; this.match(MySqlParser.KW_DROP); - this.state = 2837; + this.state = 2831; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -10957,7 +10953,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2838; + this.state = 2832; this.indexName(); } break; @@ -10965,11 +10961,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2839; + this.state = 2833; this.match(MySqlParser.KW_DROP); - this.state = 2840; + this.state = 2834; this.match(MySqlParser.KW_PRIMARY); - this.state = 2841; + this.state = 2835; this.match(MySqlParser.KW_KEY); } break; @@ -10977,13 +10973,13 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropForeignKeyContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2842; + this.state = 2836; this.match(MySqlParser.KW_DROP); - this.state = 2843; + this.state = 2837; this.match(MySqlParser.KW_FOREIGN); - this.state = 2844; + this.state = 2838; this.match(MySqlParser.KW_KEY); - this.state = 2845; + this.state = 2839; (localContext as AlterByDropForeignKeyContext)._fk_symbol = this.uid(); } break; @@ -10991,7 +10987,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByForceContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2846; + this.state = 2840; this.match(MySqlParser.KW_FORCE); } break; @@ -10999,19 +10995,19 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByLockContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2847; + this.state = 2841; this.match(MySqlParser.KW_LOCK); - this.state = 2849; + this.state = 2843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2848; + this.state = 2842; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2851; + this.state = 2845; (localContext as AlterByLockContext)._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -11027,36 +11023,36 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByModifyColumnContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2852; + this.state = 2846; this.match(MySqlParser.KW_MODIFY); - this.state = 2854; + this.state = 2848; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2853; + this.state = 2847; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2856; + this.state = 2850; this.columnName(); - this.state = 2857; + this.state = 2851; this.columnDefinition(); - this.state = 2861; + this.state = 2855; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2858; + this.state = 2852; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2859; + this.state = 2853; this.match(MySqlParser.KW_AFTER); - this.state = 2860; + this.state = 2854; this.columnName(); } break; @@ -11142,11 +11138,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByOrderContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2863; + this.state = 2857; this.match(MySqlParser.KW_ORDER); - this.state = 2864; + this.state = 2858; this.match(MySqlParser.KW_BY); - this.state = 2865; + this.state = 2859; this.columnNames(); } break; @@ -11154,15 +11150,15 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameColumnContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2866; + this.state = 2860; this.match(MySqlParser.KW_RENAME); - this.state = 2867; + this.state = 2861; this.match(MySqlParser.KW_COLUMN); - this.state = 2868; + this.state = 2862; (localContext as AlterByRenameColumnContext)._olcdColumn = this.columnName(); - this.state = 2869; + this.state = 2863; this.match(MySqlParser.KW_TO); - this.state = 2870; + this.state = 2864; (localContext as AlterByRenameColumnContext)._newColumn = this.columnNameCreate(); } break; @@ -11170,9 +11166,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameIndexContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2872; + this.state = 2866; this.match(MySqlParser.KW_RENAME); - this.state = 2873; + this.state = 2867; (localContext as AlterByRenameIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -11182,11 +11178,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2874; + this.state = 2868; this.indexName(); - this.state = 2875; + this.state = 2869; this.match(MySqlParser.KW_TO); - this.state = 2876; + this.state = 2870; this.indexNameCreate(); } break; @@ -11194,14 +11190,14 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByRenameContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2878; + this.state = 2872; this.match(MySqlParser.KW_RENAME); - this.state = 2880; + this.state = 2874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 176) { { - this.state = 2879; + this.state = 2873; (localContext as AlterByRenameContext)._renameFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 176)) { @@ -11214,7 +11210,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 2882; + this.state = 2876; this.tableNameCreate(); } break; @@ -11222,7 +11218,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByValidateContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2883; + this.state = 2877; _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { this.errorHandler.recoverInline(this); @@ -11231,7 +11227,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2884; + this.state = 2878; this.match(MySqlParser.KW_VALIDATION); } break; @@ -11239,7 +11235,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterPartitionContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2885; + this.state = 2879; this.alterPartitionSpecification(); } break; @@ -11264,38 +11260,38 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 142, MySqlParser.RULE_alterPartitionSpecification); let _la: number; try { - this.state = 2986; + this.state = 2980; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ADD: localContext = new AlterByAddPartitionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2888; + this.state = 2882; this.match(MySqlParser.KW_ADD); - this.state = 2889; + this.state = 2883; this.match(MySqlParser.KW_PARTITION); - this.state = 2890; + this.state = 2884; this.match(MySqlParser.LR_BRACKET); - this.state = 2891; + this.state = 2885; this.partitionDefinition(); - this.state = 2896; + this.state = 2890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2892; + this.state = 2886; this.match(MySqlParser.COMMA); - this.state = 2893; + this.state = 2887; this.partitionDefinition(); } } - this.state = 2898; + this.state = 2892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2899; + this.state = 2893; this.match(MySqlParser.RR_BRACKET); } break; @@ -11303,11 +11299,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDropPartitionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2901; + this.state = 2895; this.match(MySqlParser.KW_DROP); - this.state = 2902; + this.state = 2896; this.match(MySqlParser.KW_PARTITION); - this.state = 2903; + this.state = 2897; this.partitionNames(); } break; @@ -11315,11 +11311,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByDiscardPartitionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2904; + this.state = 2898; this.match(MySqlParser.KW_DISCARD); - this.state = 2905; + this.state = 2899; this.match(MySqlParser.KW_PARTITION); - this.state = 2908; + this.state = 2902; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -11871,20 +11867,20 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2906; + this.state = 2900; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2907; + this.state = 2901; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2910; + this.state = 2904; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -11892,11 +11888,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByImportPartitionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2911; + this.state = 2905; this.match(MySqlParser.KW_IMPORT); - this.state = 2912; + this.state = 2906; this.match(MySqlParser.KW_PARTITION); - this.state = 2915; + this.state = 2909; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -12448,20 +12444,20 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2913; + this.state = 2907; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2914; + this.state = 2908; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2917; + this.state = 2911; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -12469,11 +12465,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByTruncatePartitionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2918; + this.state = 2912; this.match(MySqlParser.KW_TRUNCATE); - this.state = 2919; + this.state = 2913; this.match(MySqlParser.KW_PARTITION); - this.state = 2922; + this.state = 2916; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13025,13 +13021,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2920; + this.state = 2914; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2921; + this.state = 2915; this.match(MySqlParser.KW_ALL); } break; @@ -13044,11 +13040,11 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByCoalescePartitionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2924; + this.state = 2918; this.match(MySqlParser.KW_COALESCE); - this.state = 2925; + this.state = 2919; this.match(MySqlParser.KW_PARTITION); - this.state = 2926; + this.state = 2920; this.decimalLiteral(); } break; @@ -13056,35 +13052,35 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByReorganizePartitionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2927; + this.state = 2921; this.match(MySqlParser.KW_REORGANIZE); - this.state = 2928; + this.state = 2922; this.match(MySqlParser.KW_PARTITION); - this.state = 2929; + this.state = 2923; this.partitionNames(); - this.state = 2930; + this.state = 2924; this.match(MySqlParser.KW_INTO); - this.state = 2931; + this.state = 2925; this.match(MySqlParser.LR_BRACKET); - this.state = 2932; + this.state = 2926; this.partitionDefinition(); - this.state = 2937; + this.state = 2931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2933; + this.state = 2927; this.match(MySqlParser.COMMA); - this.state = 2934; + this.state = 2928; this.partitionDefinition(); } } - this.state = 2939; + this.state = 2933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2940; + this.state = 2934; this.match(MySqlParser.RR_BRACKET); } break; @@ -13092,24 +13088,24 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByExchangePartitionContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2942; + this.state = 2936; this.match(MySqlParser.KW_EXCHANGE); - this.state = 2943; + this.state = 2937; this.match(MySqlParser.KW_PARTITION); - this.state = 2944; + this.state = 2938; this.partitionName(); - this.state = 2945; + this.state = 2939; this.match(MySqlParser.KW_WITH); - this.state = 2946; + this.state = 2940; this.match(MySqlParser.KW_TABLE); - this.state = 2947; + this.state = 2941; this.tableName(); - this.state = 2950; + this.state = 2944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2948; + this.state = 2942; (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { @@ -13119,7 +13115,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2949; + this.state = 2943; this.match(MySqlParser.KW_VALIDATION); } break; @@ -13130,8 +13126,583 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByAnalyzePartitionContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2952; + this.state = 2946; this.match(MySqlParser.KW_ANALYZE); + this.state = 2947; + this.match(MySqlParser.KW_PARTITION); + this.state = 2950; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case MySqlParser.KW_ARRAY: + case MySqlParser.KW_ATTRIBUTE: + case MySqlParser.KW_BUCKETS: + case MySqlParser.KW_CONDITION: + case MySqlParser.KW_CURRENT: + case MySqlParser.KW_CURRENT_USER: + case MySqlParser.KW_DATABASE: + case MySqlParser.KW_DEFAULT: + case MySqlParser.KW_DIAGNOSTICS: + case MySqlParser.KW_EMPTY: + case MySqlParser.KW_ENFORCED: + case MySqlParser.KW_EXCEPT: + case MySqlParser.KW_GROUP: + case MySqlParser.KW_IF: + case MySqlParser.KW_INSERT: + case MySqlParser.KW_LATERAL: + case MySqlParser.KW_LEFT: + case MySqlParser.KW_NUMBER: + case MySqlParser.KW_OPTIONAL: + case MySqlParser.KW_ORDER: + case MySqlParser.KW_PRIMARY: + case MySqlParser.KW_REPEAT: + case MySqlParser.KW_REPLACE: + case MySqlParser.KW_RIGHT: + case MySqlParser.KW_SCHEMA: + case MySqlParser.KW_SKIP_QUERY_REWRITE: + case MySqlParser.KW_STACKED: + case MySqlParser.KW_DATE: + case MySqlParser.KW_TIME: + case MySqlParser.KW_TIMESTAMP: + case MySqlParser.KW_DATETIME: + case MySqlParser.KW_YEAR: + case MySqlParser.KW_BINARY: + case MySqlParser.KW_TEXT: + case MySqlParser.KW_ENUM: + case MySqlParser.KW_SERIAL: + case MySqlParser.KW_JSON_TABLE: + case MySqlParser.KW_JSON_VALUE: + case MySqlParser.KW_NESTED: + case MySqlParser.KW_ORDINALITY: + case MySqlParser.KW_PATH: + case MySqlParser.KW_AVG: + case MySqlParser.KW_BIT_AND: + case MySqlParser.KW_BIT_OR: + case MySqlParser.KW_BIT_XOR: + case MySqlParser.KW_COUNT: + case MySqlParser.KW_CUME_DIST: + case MySqlParser.KW_DENSE_RANK: + case MySqlParser.KW_FIRST_VALUE: + case MySqlParser.KW_GROUP_CONCAT: + case MySqlParser.KW_LAG: + case MySqlParser.KW_LAST_VALUE: + case MySqlParser.KW_LEAD: + case MySqlParser.KW_MAX: + case MySqlParser.KW_MIN: + case MySqlParser.KW_NTILE: + case MySqlParser.KW_NTH_VALUE: + case MySqlParser.KW_PERCENT_RANK: + case MySqlParser.KW_RANK: + case MySqlParser.KW_ROW_NUMBER: + case MySqlParser.KW_STD: + case MySqlParser.KW_STDDEV: + case MySqlParser.KW_STDDEV_POP: + case MySqlParser.KW_STDDEV_SAMP: + case MySqlParser.KW_SUM: + case MySqlParser.KW_VAR_POP: + case MySqlParser.KW_VAR_SAMP: + case MySqlParser.KW_VARIANCE: + case MySqlParser.KW_CURRENT_DATE: + case MySqlParser.KW_CURRENT_TIME: + case MySqlParser.KW_CURRENT_TIMESTAMP: + case MySqlParser.KW_LOCALTIME: + case MySqlParser.KW_CURDATE: + case MySqlParser.KW_CURTIME: + case MySqlParser.KW_DATE_ADD: + case MySqlParser.KW_DATE_SUB: + case MySqlParser.KW_LOCALTIMESTAMP: + case MySqlParser.KW_NOW: + case MySqlParser.KW_POSITION: + case MySqlParser.KW_SUBSTR: + case MySqlParser.KW_SUBSTRING: + case MySqlParser.KW_SYSDATE: + case MySqlParser.KW_TRIM: + case MySqlParser.KW_UTC_DATE: + case MySqlParser.KW_UTC_TIME: + case MySqlParser.KW_UTC_TIMESTAMP: + case MySqlParser.KW_ACCOUNT: + case MySqlParser.KW_ACTION: + case MySqlParser.KW_AFTER: + case MySqlParser.KW_AGGREGATE: + case MySqlParser.KW_ALGORITHM: + case MySqlParser.KW_ANY: + case MySqlParser.KW_AT: + case MySqlParser.KW_AUTHORS: + case MySqlParser.KW_AUTOCOMMIT: + case MySqlParser.KW_AUTOEXTEND_SIZE: + case MySqlParser.KW_AUTO_INCREMENT: + case MySqlParser.KW_AVG_ROW_LENGTH: + case MySqlParser.KW_BEGIN: + case MySqlParser.KW_BINLOG: + case MySqlParser.KW_BIT: + case MySqlParser.KW_BLOCK: + case MySqlParser.KW_BOOL: + case MySqlParser.KW_BOOLEAN: + case MySqlParser.KW_BTREE: + case MySqlParser.KW_CACHE: + case MySqlParser.KW_CASCADED: + case MySqlParser.KW_CHAIN: + case MySqlParser.KW_CHANGED: + case MySqlParser.KW_CHANNEL: + case MySqlParser.KW_CHECKSUM: + case MySqlParser.KW_CIPHER: + case MySqlParser.KW_CLASS_ORIGIN: + case MySqlParser.KW_CLIENT: + case MySqlParser.KW_CLOSE: + case MySqlParser.KW_COALESCE: + case MySqlParser.KW_CODE: + case MySqlParser.KW_COLUMNS: + case MySqlParser.KW_COLUMN_FORMAT: + case MySqlParser.KW_COLUMN_NAME: + case MySqlParser.KW_COMMENT: + case MySqlParser.KW_COMMIT: + case MySqlParser.KW_COMPACT: + case MySqlParser.KW_COMPLETION: + case MySqlParser.KW_COMPRESSED: + case MySqlParser.KW_COMPRESSION: + case MySqlParser.KW_CONCURRENT: + case MySqlParser.KW_CONNECT: + case MySqlParser.KW_CONNECTION: + case MySqlParser.KW_CONSISTENT: + case MySqlParser.KW_CONSTRAINT_CATALOG: + case MySqlParser.KW_CONSTRAINT_SCHEMA: + case MySqlParser.KW_CONSTRAINT_NAME: + case MySqlParser.KW_CONTAINS: + case MySqlParser.KW_CONTEXT: + case MySqlParser.KW_CONTRIBUTORS: + case MySqlParser.KW_COPY: + case MySqlParser.KW_CPU: + case MySqlParser.KW_CURSOR_NAME: + case MySqlParser.KW_DATA: + case MySqlParser.KW_DATAFILE: + case MySqlParser.KW_DEALLOCATE: + case MySqlParser.KW_DEFAULT_AUTH: + case MySqlParser.KW_DEFINER: + case MySqlParser.KW_DELAY_KEY_WRITE: + case MySqlParser.KW_DES_KEY_FILE: + case MySqlParser.KW_DIRECTORY: + case MySqlParser.KW_DISABLE: + case MySqlParser.KW_DISCARD: + case MySqlParser.KW_DISK: + case MySqlParser.KW_DO: + case MySqlParser.KW_DUMPFILE: + case MySqlParser.KW_DUPLICATE: + case MySqlParser.KW_DYNAMIC: + case MySqlParser.KW_ENABLE: + case MySqlParser.KW_ENCRYPTION: + case MySqlParser.KW_END: + case MySqlParser.KW_ENDS: + case MySqlParser.KW_ENGINE: + case MySqlParser.KW_ENGINES: + case MySqlParser.KW_ERROR: + case MySqlParser.KW_ERRORS: + case MySqlParser.KW_ESCAPE: + case MySqlParser.KW_EVENT: + case MySqlParser.KW_EVENTS: + case MySqlParser.KW_EVERY: + case MySqlParser.KW_EXCHANGE: + case MySqlParser.KW_EXCLUSIVE: + case MySqlParser.KW_EXPIRE: + case MySqlParser.KW_EXPORT: + case MySqlParser.KW_EXTENDED: + case MySqlParser.KW_EXTENT_SIZE: + case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: + case MySqlParser.KW_FAST: + case MySqlParser.KW_FAULTS: + case MySqlParser.KW_FIELDS: + case MySqlParser.KW_FILE_BLOCK_SIZE: + case MySqlParser.KW_FILTER: + case MySqlParser.KW_FIRST: + case MySqlParser.KW_FIXED: + case MySqlParser.KW_FLUSH: + case MySqlParser.KW_FOLLOWS: + case MySqlParser.KW_FOUND: + case MySqlParser.KW_FULL: + case MySqlParser.KW_FUNCTION: + case MySqlParser.KW_GENERAL: + case MySqlParser.KW_GLOBAL: + case MySqlParser.KW_GRANTS: + case MySqlParser.KW_GROUP_REPLICATION: + case MySqlParser.KW_HANDLER: + case MySqlParser.KW_HASH: + case MySqlParser.KW_HELP: + case MySqlParser.KW_HISTORY: + case MySqlParser.KW_HOST: + case MySqlParser.KW_HOSTS: + case MySqlParser.KW_IDENTIFIED: + case MySqlParser.KW_IGNORE_SERVER_IDS: + case MySqlParser.KW_IMPORT: + case MySqlParser.KW_INDEXES: + case MySqlParser.KW_INITIAL_SIZE: + case MySqlParser.KW_INPLACE: + case MySqlParser.KW_INSERT_METHOD: + case MySqlParser.KW_INSTALL: + case MySqlParser.KW_INSTANCE: + case MySqlParser.KW_INSTANT: + case MySqlParser.KW_INVISIBLE: + case MySqlParser.KW_INVOKER: + case MySqlParser.KW_IO: + case MySqlParser.KW_IO_THREAD: + case MySqlParser.KW_IPC: + case MySqlParser.KW_ISOLATION: + case MySqlParser.KW_ISSUER: + case MySqlParser.KW_JSON: + case MySqlParser.KW_KEY_BLOCK_SIZE: + case MySqlParser.KW_LANGUAGE: + case MySqlParser.KW_LAST: + case MySqlParser.KW_LEAVES: + case MySqlParser.KW_LESS: + case MySqlParser.KW_LEVEL: + case MySqlParser.KW_LIST: + case MySqlParser.KW_LOCAL: + case MySqlParser.KW_LOGFILE: + case MySqlParser.KW_LOGS: + case MySqlParser.KW_MASTER: + case MySqlParser.KW_MASTER_AUTO_POSITION: + case MySqlParser.KW_MASTER_CONNECT_RETRY: + case MySqlParser.KW_MASTER_DELAY: + case MySqlParser.KW_MASTER_HEARTBEAT_PERIOD: + case MySqlParser.KW_MASTER_HOST: + case MySqlParser.KW_MASTER_LOG_FILE: + case MySqlParser.KW_MASTER_LOG_POS: + case MySqlParser.KW_MASTER_PASSWORD: + case MySqlParser.KW_MASTER_PORT: + case MySqlParser.KW_MASTER_RETRY_COUNT: + case MySqlParser.KW_MASTER_SSL: + case MySqlParser.KW_MASTER_SSL_CA: + case MySqlParser.KW_MASTER_SSL_CAPATH: + case MySqlParser.KW_MASTER_SSL_CERT: + case MySqlParser.KW_MASTER_SSL_CIPHER: + case MySqlParser.KW_MASTER_SSL_CRL: + case MySqlParser.KW_MASTER_SSL_CRLPATH: + case MySqlParser.KW_MASTER_SSL_KEY: + case MySqlParser.KW_MASTER_TLS_VERSION: + case MySqlParser.KW_MASTER_USER: + case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: + case MySqlParser.KW_MAX_QUERIES_PER_HOUR: + case MySqlParser.KW_MAX_ROWS: + case MySqlParser.KW_MAX_SIZE: + case MySqlParser.KW_MAX_UPDATES_PER_HOUR: + case MySqlParser.KW_MAX_USER_CONNECTIONS: + case MySqlParser.KW_MEDIUM: + case MySqlParser.KW_MEMBER: + case MySqlParser.KW_MERGE: + case MySqlParser.KW_MESSAGE_TEXT: + case MySqlParser.KW_MID: + case MySqlParser.KW_MIGRATE: + case MySqlParser.KW_MIN_ROWS: + case MySqlParser.KW_MODE: + case MySqlParser.KW_MODIFY: + case MySqlParser.KW_MUTEX: + case MySqlParser.KW_MYSQL: + case MySqlParser.KW_MYSQL_ERRNO: + case MySqlParser.KW_NAME: + case MySqlParser.KW_NAMES: + case MySqlParser.KW_NCHAR: + case MySqlParser.KW_NEVER: + case MySqlParser.KW_NEXT: + case MySqlParser.KW_NO: + case MySqlParser.KW_NOWAIT: + case MySqlParser.KW_NODEGROUP: + case MySqlParser.KW_NONE: + case MySqlParser.KW_ODBC: + case MySqlParser.KW_OFFLINE: + case MySqlParser.KW_OFFSET: + case MySqlParser.KW_OF: + case MySqlParser.KW_OLD_PASSWORD: + case MySqlParser.KW_ONE: + case MySqlParser.KW_ONLINE: + case MySqlParser.KW_ONLY: + case MySqlParser.KW_OPEN: + case MySqlParser.KW_OPTIMIZER_COSTS: + case MySqlParser.KW_OPTIONS: + case MySqlParser.KW_OWNER: + case MySqlParser.KW_PACK_KEYS: + case MySqlParser.KW_PAGE: + case MySqlParser.KW_PAGE_CHECKSUM: + case MySqlParser.KW_PARSER: + case MySqlParser.KW_PARTIAL: + case MySqlParser.KW_PARTITIONING: + case MySqlParser.KW_PARTITIONS: + case MySqlParser.KW_PASSWORD: + case MySqlParser.KW_PASSWORD_LOCK_TIME: + case MySqlParser.KW_PHASE: + case MySqlParser.KW_PLUGIN: + case MySqlParser.KW_PLUGIN_DIR: + case MySqlParser.KW_PLUGINS: + case MySqlParser.KW_PORT: + case MySqlParser.KW_PRECEDES: + case MySqlParser.KW_PREPARE: + case MySqlParser.KW_PRESERVE: + case MySqlParser.KW_PREV: + case MySqlParser.KW_PROCESSLIST: + case MySqlParser.KW_PROFILE: + case MySqlParser.KW_PROFILES: + case MySqlParser.KW_PROXY: + case MySqlParser.KW_QUERY: + case MySqlParser.KW_QUICK: + case MySqlParser.KW_REBUILD: + case MySqlParser.KW_RECOVER: + case MySqlParser.KW_RECURSIVE: + case MySqlParser.KW_REDO_BUFFER_SIZE: + case MySqlParser.KW_REDUNDANT: + case MySqlParser.KW_RELAY: + case MySqlParser.KW_RELAY_LOG_FILE: + case MySqlParser.KW_RELAY_LOG_POS: + case MySqlParser.KW_RELAYLOG: + case MySqlParser.KW_REMOVE: + case MySqlParser.KW_REORGANIZE: + case MySqlParser.KW_REPAIR: + case MySqlParser.KW_REPLICATE_DO_DB: + case MySqlParser.KW_REPLICATE_DO_TABLE: + case MySqlParser.KW_REPLICATE_IGNORE_DB: + case MySqlParser.KW_REPLICATE_IGNORE_TABLE: + case MySqlParser.KW_REPLICATE_REWRITE_DB: + case MySqlParser.KW_REPLICATE_WILD_DO_TABLE: + case MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE: + case MySqlParser.KW_REPLICATION: + case MySqlParser.KW_RESET: + case MySqlParser.KW_RESUME: + case MySqlParser.KW_RETURNED_SQLSTATE: + case MySqlParser.KW_RETURNS: + case MySqlParser.KW_REUSE: + case MySqlParser.KW_ROLE: + case MySqlParser.KW_ROLLBACK: + case MySqlParser.KW_ROLLUP: + case MySqlParser.KW_ROTATE: + case MySqlParser.KW_ROW: + case MySqlParser.KW_ROWS: + case MySqlParser.KW_ROW_FORMAT: + case MySqlParser.KW_SAVEPOINT: + case MySqlParser.KW_SCHEDULE: + case MySqlParser.KW_SECURITY: + case MySqlParser.KW_SERVER: + case MySqlParser.KW_SESSION: + case MySqlParser.KW_SHARE: + case MySqlParser.KW_SHARED: + case MySqlParser.KW_SIGNED: + case MySqlParser.KW_SIMPLE: + case MySqlParser.KW_SLAVE: + case MySqlParser.KW_SLOW: + case MySqlParser.KW_SNAPSHOT: + case MySqlParser.KW_SOCKET: + case MySqlParser.KW_SOME: + case MySqlParser.KW_SONAME: + case MySqlParser.KW_SOUNDS: + case MySqlParser.KW_SOURCE: + case MySqlParser.KW_SQL_AFTER_GTIDS: + case MySqlParser.KW_SQL_AFTER_MTS_GAPS: + case MySqlParser.KW_SQL_BEFORE_GTIDS: + case MySqlParser.KW_SQL_BUFFER_RESULT: + case MySqlParser.KW_SQL_CACHE: + case MySqlParser.KW_SQL_NO_CACHE: + case MySqlParser.KW_SQL_THREAD: + case MySqlParser.KW_START: + case MySqlParser.KW_STARTS: + case MySqlParser.KW_STATS_AUTO_RECALC: + case MySqlParser.KW_STATS_PERSISTENT: + case MySqlParser.KW_STATS_SAMPLE_PAGES: + case MySqlParser.KW_STATUS: + case MySqlParser.KW_STOP: + case MySqlParser.KW_STORAGE: + case MySqlParser.KW_STRING: + case MySqlParser.KW_SUBCLASS_ORIGIN: + case MySqlParser.KW_SUBJECT: + case MySqlParser.KW_SUBPARTITION: + case MySqlParser.KW_SUBPARTITIONS: + case MySqlParser.KW_SUSPEND: + case MySqlParser.KW_SWAPS: + case MySqlParser.KW_SWITCHES: + case MySqlParser.KW_TABLE_NAME: + case MySqlParser.KW_TABLESPACE: + case MySqlParser.KW_TABLE_TYPE: + case MySqlParser.KW_TEMPORARY: + case MySqlParser.KW_TEMPTABLE: + case MySqlParser.KW_THAN: + case MySqlParser.KW_TRADITIONAL: + case MySqlParser.KW_TRANSACTION: + case MySqlParser.KW_TRANSACTIONAL: + case MySqlParser.KW_TRIGGERS: + case MySqlParser.KW_TRUNCATE: + case MySqlParser.KW_UNBOUNDED: + case MySqlParser.KW_UNDEFINED: + case MySqlParser.KW_UNDOFILE: + case MySqlParser.KW_UNDO_BUFFER_SIZE: + case MySqlParser.KW_UNINSTALL: + case MySqlParser.KW_UNKNOWN: + case MySqlParser.KW_UNTIL: + case MySqlParser.KW_UPGRADE: + case MySqlParser.KW_USER: + case MySqlParser.KW_USE_FRM: + case MySqlParser.KW_USER_RESOURCES: + case MySqlParser.KW_VALIDATION: + case MySqlParser.KW_VALUE: + case MySqlParser.KW_VARIABLES: + case MySqlParser.KW_VIEW: + case MySqlParser.KW_VIRTUAL: + case MySqlParser.KW_VISIBLE: + case MySqlParser.KW_WAIT: + case MySqlParser.KW_WARNINGS: + case MySqlParser.KW_WITHOUT: + case MySqlParser.KW_WORK: + case MySqlParser.KW_WRAPPER: + case MySqlParser.KW_X509: + case MySqlParser.KW_XA: + case MySqlParser.KW_XML: + case MySqlParser.KW_QUARTER: + case MySqlParser.KW_MONTH: + case MySqlParser.KW_DAY: + case MySqlParser.KW_HOUR: + case MySqlParser.KW_MINUTE: + case MySqlParser.KW_WEEK: + case MySqlParser.KW_SECOND: + case MySqlParser.KW_MICROSECOND: + case MySqlParser.KW_ADMIN: + case MySqlParser.KW_AUDIT_ABORT_EXEMPT: + case MySqlParser.KW_AUDIT_ADMIN: + case MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN: + case MySqlParser.KW_BACKUP_ADMIN: + case MySqlParser.KW_BINLOG_ADMIN: + case MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN: + case MySqlParser.KW_CLONE_ADMIN: + case MySqlParser.KW_CONNECTION_ADMIN: + case MySqlParser.KW_ENCRYPTION_KEY_ADMIN: + case MySqlParser.KW_EXECUTE: + case MySqlParser.KW_FILE: + case MySqlParser.KW_FIREWALL_ADMIN: + case MySqlParser.KW_FIREWALL_EXEMPT: + case MySqlParser.KW_FIREWALL_USER: + case MySqlParser.KW_GROUP_REPLICATION_ADMIN: + case MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE: + case MySqlParser.KW_INVOKE: + case MySqlParser.KW_LAMBDA: + case MySqlParser.KW_NDB_STORED_USER: + case MySqlParser.KW_PASSWORDLESS_USER_ADMIN: + case MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN: + case MySqlParser.KW_PRIVILEGES: + case MySqlParser.KW_PROCESS: + case MySqlParser.KW_RELOAD: + case MySqlParser.KW_REPLICATION_APPLIER: + case MySqlParser.KW_REPLICATION_SLAVE_ADMIN: + case MySqlParser.KW_RESOURCE_GROUP_ADMIN: + case MySqlParser.KW_RESOURCE_GROUP_USER: + case MySqlParser.KW_ROLE_ADMIN: + case MySqlParser.KW_ROUTINE: + case MySqlParser.KW_S3: + case MySqlParser.KW_SESSION_VARIABLES_ADMIN: + case MySqlParser.KW_SET_USER_ID: + case MySqlParser.KW_SHOW_ROUTINE: + case MySqlParser.KW_SHUTDOWN: + case MySqlParser.KW_SUPER: + case MySqlParser.KW_SYSTEM_VARIABLES_ADMIN: + case MySqlParser.KW_TABLES: + case MySqlParser.KW_TABLE_ENCRYPTION_ADMIN: + case MySqlParser.KW_VERSION_TOKEN_ADMIN: + case MySqlParser.KW_XA_RECOVER_ADMIN: + case MySqlParser.KW_ARMSCII8: + case MySqlParser.KW_ASCII: + case MySqlParser.KW_BIG5: + case MySqlParser.KW_CP1250: + case MySqlParser.KW_CP1251: + case MySqlParser.KW_CP1256: + case MySqlParser.KW_CP1257: + case MySqlParser.KW_CP850: + case MySqlParser.KW_CP852: + case MySqlParser.KW_CP866: + case MySqlParser.KW_CP932: + case MySqlParser.KW_DEC8: + case MySqlParser.KW_EUCJPMS: + case MySqlParser.KW_EUCKR: + case MySqlParser.KW_GB18030: + case MySqlParser.KW_GB2312: + case MySqlParser.KW_GBK: + case MySqlParser.KW_GEOSTD8: + case MySqlParser.KW_GREEK: + case MySqlParser.KW_HEBREW: + case MySqlParser.KW_HP8: + case MySqlParser.KW_KEYBCS2: + case MySqlParser.KW_KOI8R: + case MySqlParser.KW_KOI8U: + case MySqlParser.KW_LATIN1: + case MySqlParser.KW_LATIN2: + case MySqlParser.KW_LATIN5: + case MySqlParser.KW_LATIN7: + case MySqlParser.KW_MACCE: + case MySqlParser.KW_MACROMAN: + case MySqlParser.KW_SJIS: + case MySqlParser.KW_SWE7: + case MySqlParser.KW_TIS620: + case MySqlParser.KW_UCS2: + case MySqlParser.KW_UJIS: + case MySqlParser.KW_UTF16: + case MySqlParser.KW_UTF16LE: + case MySqlParser.KW_UTF32: + case MySqlParser.KW_UTF8: + case MySqlParser.KW_UTF8MB3: + case MySqlParser.KW_UTF8MB4: + case MySqlParser.KW_ARCHIVE: + case MySqlParser.KW_BLACKHOLE: + case MySqlParser.KW_CSV: + case MySqlParser.KW_FEDERATED: + case MySqlParser.KW_INNODB: + case MySqlParser.KW_MEMORY: + case MySqlParser.KW_MRG_MYISAM: + case MySqlParser.KW_MYISAM: + case MySqlParser.KW_NDB: + case MySqlParser.KW_NDBCLUSTER: + case MySqlParser.KW_PERFORMANCE_SCHEMA: + case MySqlParser.KW_TOKUDB: + case MySqlParser.KW_REPEATABLE: + case MySqlParser.KW_COMMITTED: + case MySqlParser.KW_UNCOMMITTED: + case MySqlParser.KW_SERIALIZABLE: + case MySqlParser.KW_GEOMETRYCOLLECTION: + case MySqlParser.KW_LINESTRING: + case MySqlParser.KW_MULTILINESTRING: + case MySqlParser.KW_MULTIPOINT: + case MySqlParser.KW_MULTIPOLYGON: + case MySqlParser.KW_POINT: + case MySqlParser.KW_POLYGON: + case MySqlParser.KW_CATALOG_NAME: + case MySqlParser.KW_CHARSET: + case MySqlParser.KW_COLLATION: + case MySqlParser.KW_ENGINE_ATTRIBUTE: + case MySqlParser.KW_FORMAT: + case MySqlParser.KW_GET_FORMAT: + case MySqlParser.KW_RANDOM: + case MySqlParser.KW_REVERSE: + case MySqlParser.KW_ROW_COUNT: + case MySqlParser.KW_SCHEMA_NAME: + case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: + case MySqlParser.KW_SRID: + case MySqlParser.KW_SYSTEM_USER: + case MySqlParser.KW_TP_CONNECTION_ADMIN: + case MySqlParser.KW_WEIGHT_STRING: + case MySqlParser.MOD: + case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: + case MySqlParser.STRING_LITERAL: + case MySqlParser.ID: + { + this.state = 2948; + this.partitionNames(); + } + break; + case MySqlParser.KW_ALL: + { + this.state = 2949; + this.match(MySqlParser.KW_ALL); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case MySqlParser.KW_CHECK: + localContext = new AlterByCheckPartitionContext(localContext); + this.enterOuterAlt(localContext, 10); + { + this.state = 2952; + this.match(MySqlParser.KW_CHECK); this.state = 2953; this.match(MySqlParser.KW_PARTITION); this.state = 2956; @@ -13701,12 +14272,12 @@ export class MySqlParser extends antlr.Parser { } } break; - case MySqlParser.KW_CHECK: - localContext = new AlterByCheckPartitionContext(localContext); - this.enterOuterAlt(localContext, 10); + case MySqlParser.KW_OPTIMIZE: + localContext = new AlterByOptimizePartitionContext(localContext); + this.enterOuterAlt(localContext, 11); { this.state = 2958; - this.match(MySqlParser.KW_CHECK); + this.match(MySqlParser.KW_OPTIMIZE); this.state = 2959; this.match(MySqlParser.KW_PARTITION); this.state = 2962; @@ -14276,12 +14847,12 @@ export class MySqlParser extends antlr.Parser { } } break; - case MySqlParser.KW_OPTIMIZE: - localContext = new AlterByOptimizePartitionContext(localContext); - this.enterOuterAlt(localContext, 11); + case MySqlParser.KW_REBUILD: + localContext = new AlterByRebuildPartitionContext(localContext); + this.enterOuterAlt(localContext, 12); { this.state = 2964; - this.match(MySqlParser.KW_OPTIMIZE); + this.match(MySqlParser.KW_REBUILD); this.state = 2965; this.match(MySqlParser.KW_PARTITION); this.state = 2968; @@ -14851,12 +15422,12 @@ export class MySqlParser extends antlr.Parser { } } break; - case MySqlParser.KW_REBUILD: - localContext = new AlterByRebuildPartitionContext(localContext); - this.enterOuterAlt(localContext, 12); + case MySqlParser.KW_REPAIR: + localContext = new AlterByRepairPartitionContext(localContext); + this.enterOuterAlt(localContext, 13); { this.state = 2970; - this.match(MySqlParser.KW_REBUILD); + this.match(MySqlParser.KW_REPAIR); this.state = 2971; this.match(MySqlParser.KW_PARTITION); this.state = 2974; @@ -15426,588 +15997,13 @@ export class MySqlParser extends antlr.Parser { } } break; - case MySqlParser.KW_REPAIR: - localContext = new AlterByRepairPartitionContext(localContext); - this.enterOuterAlt(localContext, 13); - { - this.state = 2976; - this.match(MySqlParser.KW_REPAIR); - this.state = 2977; - this.match(MySqlParser.KW_PARTITION); - this.state = 2980; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case MySqlParser.KW_ARRAY: - case MySqlParser.KW_ATTRIBUTE: - case MySqlParser.KW_BUCKETS: - case MySqlParser.KW_CONDITION: - case MySqlParser.KW_CURRENT: - case MySqlParser.KW_CURRENT_USER: - case MySqlParser.KW_DATABASE: - case MySqlParser.KW_DEFAULT: - case MySqlParser.KW_DIAGNOSTICS: - case MySqlParser.KW_EMPTY: - case MySqlParser.KW_ENFORCED: - case MySqlParser.KW_EXCEPT: - case MySqlParser.KW_GROUP: - case MySqlParser.KW_IF: - case MySqlParser.KW_INSERT: - case MySqlParser.KW_LATERAL: - case MySqlParser.KW_LEFT: - case MySqlParser.KW_NUMBER: - case MySqlParser.KW_OPTIONAL: - case MySqlParser.KW_ORDER: - case MySqlParser.KW_PRIMARY: - case MySqlParser.KW_REPEAT: - case MySqlParser.KW_REPLACE: - case MySqlParser.KW_RIGHT: - case MySqlParser.KW_SCHEMA: - case MySqlParser.KW_SKIP_QUERY_REWRITE: - case MySqlParser.KW_STACKED: - case MySqlParser.KW_DATE: - case MySqlParser.KW_TIME: - case MySqlParser.KW_TIMESTAMP: - case MySqlParser.KW_DATETIME: - case MySqlParser.KW_YEAR: - case MySqlParser.KW_BINARY: - case MySqlParser.KW_TEXT: - case MySqlParser.KW_ENUM: - case MySqlParser.KW_SERIAL: - case MySqlParser.KW_JSON_TABLE: - case MySqlParser.KW_JSON_VALUE: - case MySqlParser.KW_NESTED: - case MySqlParser.KW_ORDINALITY: - case MySqlParser.KW_PATH: - case MySqlParser.KW_AVG: - case MySqlParser.KW_BIT_AND: - case MySqlParser.KW_BIT_OR: - case MySqlParser.KW_BIT_XOR: - case MySqlParser.KW_COUNT: - case MySqlParser.KW_CUME_DIST: - case MySqlParser.KW_DENSE_RANK: - case MySqlParser.KW_FIRST_VALUE: - case MySqlParser.KW_GROUP_CONCAT: - case MySqlParser.KW_LAG: - case MySqlParser.KW_LAST_VALUE: - case MySqlParser.KW_LEAD: - case MySqlParser.KW_MAX: - case MySqlParser.KW_MIN: - case MySqlParser.KW_NTILE: - case MySqlParser.KW_NTH_VALUE: - case MySqlParser.KW_PERCENT_RANK: - case MySqlParser.KW_RANK: - case MySqlParser.KW_ROW_NUMBER: - case MySqlParser.KW_STD: - case MySqlParser.KW_STDDEV: - case MySqlParser.KW_STDDEV_POP: - case MySqlParser.KW_STDDEV_SAMP: - case MySqlParser.KW_SUM: - case MySqlParser.KW_VAR_POP: - case MySqlParser.KW_VAR_SAMP: - case MySqlParser.KW_VARIANCE: - case MySqlParser.KW_CURRENT_DATE: - case MySqlParser.KW_CURRENT_TIME: - case MySqlParser.KW_CURRENT_TIMESTAMP: - case MySqlParser.KW_LOCALTIME: - case MySqlParser.KW_CURDATE: - case MySqlParser.KW_CURTIME: - case MySqlParser.KW_DATE_ADD: - case MySqlParser.KW_DATE_SUB: - case MySqlParser.KW_LOCALTIMESTAMP: - case MySqlParser.KW_NOW: - case MySqlParser.KW_POSITION: - case MySqlParser.KW_SUBSTR: - case MySqlParser.KW_SUBSTRING: - case MySqlParser.KW_SYSDATE: - case MySqlParser.KW_TRIM: - case MySqlParser.KW_UTC_DATE: - case MySqlParser.KW_UTC_TIME: - case MySqlParser.KW_UTC_TIMESTAMP: - case MySqlParser.KW_ACCOUNT: - case MySqlParser.KW_ACTION: - case MySqlParser.KW_AFTER: - case MySqlParser.KW_AGGREGATE: - case MySqlParser.KW_ALGORITHM: - case MySqlParser.KW_ANY: - case MySqlParser.KW_AT: - case MySqlParser.KW_AUTHORS: - case MySqlParser.KW_AUTOCOMMIT: - case MySqlParser.KW_AUTOEXTEND_SIZE: - case MySqlParser.KW_AUTO_INCREMENT: - case MySqlParser.KW_AVG_ROW_LENGTH: - case MySqlParser.KW_BEGIN: - case MySqlParser.KW_BINLOG: - case MySqlParser.KW_BIT: - case MySqlParser.KW_BLOCK: - case MySqlParser.KW_BOOL: - case MySqlParser.KW_BOOLEAN: - case MySqlParser.KW_BTREE: - case MySqlParser.KW_CACHE: - case MySqlParser.KW_CASCADED: - case MySqlParser.KW_CHAIN: - case MySqlParser.KW_CHANGED: - case MySqlParser.KW_CHANNEL: - case MySqlParser.KW_CHECKSUM: - case MySqlParser.KW_CIPHER: - case MySqlParser.KW_CLASS_ORIGIN: - case MySqlParser.KW_CLIENT: - case MySqlParser.KW_CLOSE: - case MySqlParser.KW_COALESCE: - case MySqlParser.KW_CODE: - case MySqlParser.KW_COLUMNS: - case MySqlParser.KW_COLUMN_FORMAT: - case MySqlParser.KW_COLUMN_NAME: - case MySqlParser.KW_COMMENT: - case MySqlParser.KW_COMMIT: - case MySqlParser.KW_COMPACT: - case MySqlParser.KW_COMPLETION: - case MySqlParser.KW_COMPRESSED: - case MySqlParser.KW_COMPRESSION: - case MySqlParser.KW_CONCURRENT: - case MySqlParser.KW_CONNECT: - case MySqlParser.KW_CONNECTION: - case MySqlParser.KW_CONSISTENT: - case MySqlParser.KW_CONSTRAINT_CATALOG: - case MySqlParser.KW_CONSTRAINT_SCHEMA: - case MySqlParser.KW_CONSTRAINT_NAME: - case MySqlParser.KW_CONTAINS: - case MySqlParser.KW_CONTEXT: - case MySqlParser.KW_CONTRIBUTORS: - case MySqlParser.KW_COPY: - case MySqlParser.KW_CPU: - case MySqlParser.KW_CURSOR_NAME: - case MySqlParser.KW_DATA: - case MySqlParser.KW_DATAFILE: - case MySqlParser.KW_DEALLOCATE: - case MySqlParser.KW_DEFAULT_AUTH: - case MySqlParser.KW_DEFINER: - case MySqlParser.KW_DELAY_KEY_WRITE: - case MySqlParser.KW_DES_KEY_FILE: - case MySqlParser.KW_DIRECTORY: - case MySqlParser.KW_DISABLE: - case MySqlParser.KW_DISCARD: - case MySqlParser.KW_DISK: - case MySqlParser.KW_DO: - case MySqlParser.KW_DUMPFILE: - case MySqlParser.KW_DUPLICATE: - case MySqlParser.KW_DYNAMIC: - case MySqlParser.KW_ENABLE: - case MySqlParser.KW_ENCRYPTION: - case MySqlParser.KW_END: - case MySqlParser.KW_ENDS: - case MySqlParser.KW_ENGINE: - case MySqlParser.KW_ENGINES: - case MySqlParser.KW_ERROR: - case MySqlParser.KW_ERRORS: - case MySqlParser.KW_ESCAPE: - case MySqlParser.KW_EVENT: - case MySqlParser.KW_EVENTS: - case MySqlParser.KW_EVERY: - case MySqlParser.KW_EXCHANGE: - case MySqlParser.KW_EXCLUSIVE: - case MySqlParser.KW_EXPIRE: - case MySqlParser.KW_EXPORT: - case MySqlParser.KW_EXTENDED: - case MySqlParser.KW_EXTENT_SIZE: - case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: - case MySqlParser.KW_FAST: - case MySqlParser.KW_FAULTS: - case MySqlParser.KW_FIELDS: - case MySqlParser.KW_FILE_BLOCK_SIZE: - case MySqlParser.KW_FILTER: - case MySqlParser.KW_FIRST: - case MySqlParser.KW_FIXED: - case MySqlParser.KW_FLUSH: - case MySqlParser.KW_FOLLOWS: - case MySqlParser.KW_FOUND: - case MySqlParser.KW_FULL: - case MySqlParser.KW_FUNCTION: - case MySqlParser.KW_GENERAL: - case MySqlParser.KW_GLOBAL: - case MySqlParser.KW_GRANTS: - case MySqlParser.KW_GROUP_REPLICATION: - case MySqlParser.KW_HANDLER: - case MySqlParser.KW_HASH: - case MySqlParser.KW_HELP: - case MySqlParser.KW_HISTORY: - case MySqlParser.KW_HOST: - case MySqlParser.KW_HOSTS: - case MySqlParser.KW_IDENTIFIED: - case MySqlParser.KW_IGNORE_SERVER_IDS: - case MySqlParser.KW_IMPORT: - case MySqlParser.KW_INDEXES: - case MySqlParser.KW_INITIAL_SIZE: - case MySqlParser.KW_INPLACE: - case MySqlParser.KW_INSERT_METHOD: - case MySqlParser.KW_INSTALL: - case MySqlParser.KW_INSTANCE: - case MySqlParser.KW_INSTANT: - case MySqlParser.KW_INVISIBLE: - case MySqlParser.KW_INVOKER: - case MySqlParser.KW_IO: - case MySqlParser.KW_IO_THREAD: - case MySqlParser.KW_IPC: - case MySqlParser.KW_ISOLATION: - case MySqlParser.KW_ISSUER: - case MySqlParser.KW_JSON: - case MySqlParser.KW_KEY_BLOCK_SIZE: - case MySqlParser.KW_LANGUAGE: - case MySqlParser.KW_LAST: - case MySqlParser.KW_LEAVES: - case MySqlParser.KW_LESS: - case MySqlParser.KW_LEVEL: - case MySqlParser.KW_LIST: - case MySqlParser.KW_LOCAL: - case MySqlParser.KW_LOGFILE: - case MySqlParser.KW_LOGS: - case MySqlParser.KW_MASTER: - case MySqlParser.KW_MASTER_AUTO_POSITION: - case MySqlParser.KW_MASTER_CONNECT_RETRY: - case MySqlParser.KW_MASTER_DELAY: - case MySqlParser.KW_MASTER_HEARTBEAT_PERIOD: - case MySqlParser.KW_MASTER_HOST: - case MySqlParser.KW_MASTER_LOG_FILE: - case MySqlParser.KW_MASTER_LOG_POS: - case MySqlParser.KW_MASTER_PASSWORD: - case MySqlParser.KW_MASTER_PORT: - case MySqlParser.KW_MASTER_RETRY_COUNT: - case MySqlParser.KW_MASTER_SSL: - case MySqlParser.KW_MASTER_SSL_CA: - case MySqlParser.KW_MASTER_SSL_CAPATH: - case MySqlParser.KW_MASTER_SSL_CERT: - case MySqlParser.KW_MASTER_SSL_CIPHER: - case MySqlParser.KW_MASTER_SSL_CRL: - case MySqlParser.KW_MASTER_SSL_CRLPATH: - case MySqlParser.KW_MASTER_SSL_KEY: - case MySqlParser.KW_MASTER_TLS_VERSION: - case MySqlParser.KW_MASTER_USER: - case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: - case MySqlParser.KW_MAX_QUERIES_PER_HOUR: - case MySqlParser.KW_MAX_ROWS: - case MySqlParser.KW_MAX_SIZE: - case MySqlParser.KW_MAX_UPDATES_PER_HOUR: - case MySqlParser.KW_MAX_USER_CONNECTIONS: - case MySqlParser.KW_MEDIUM: - case MySqlParser.KW_MEMBER: - case MySqlParser.KW_MERGE: - case MySqlParser.KW_MESSAGE_TEXT: - case MySqlParser.KW_MID: - case MySqlParser.KW_MIGRATE: - case MySqlParser.KW_MIN_ROWS: - case MySqlParser.KW_MODE: - case MySqlParser.KW_MODIFY: - case MySqlParser.KW_MUTEX: - case MySqlParser.KW_MYSQL: - case MySqlParser.KW_MYSQL_ERRNO: - case MySqlParser.KW_NAME: - case MySqlParser.KW_NAMES: - case MySqlParser.KW_NCHAR: - case MySqlParser.KW_NEVER: - case MySqlParser.KW_NEXT: - case MySqlParser.KW_NO: - case MySqlParser.KW_NOWAIT: - case MySqlParser.KW_NODEGROUP: - case MySqlParser.KW_NONE: - case MySqlParser.KW_ODBC: - case MySqlParser.KW_OFFLINE: - case MySqlParser.KW_OFFSET: - case MySqlParser.KW_OF: - case MySqlParser.KW_OLD_PASSWORD: - case MySqlParser.KW_ONE: - case MySqlParser.KW_ONLINE: - case MySqlParser.KW_ONLY: - case MySqlParser.KW_OPEN: - case MySqlParser.KW_OPTIMIZER_COSTS: - case MySqlParser.KW_OPTIONS: - case MySqlParser.KW_OWNER: - case MySqlParser.KW_PACK_KEYS: - case MySqlParser.KW_PAGE: - case MySqlParser.KW_PAGE_CHECKSUM: - case MySqlParser.KW_PARSER: - case MySqlParser.KW_PARTIAL: - case MySqlParser.KW_PARTITIONING: - case MySqlParser.KW_PARTITIONS: - case MySqlParser.KW_PASSWORD: - case MySqlParser.KW_PASSWORD_LOCK_TIME: - case MySqlParser.KW_PHASE: - case MySqlParser.KW_PLUGIN: - case MySqlParser.KW_PLUGIN_DIR: - case MySqlParser.KW_PLUGINS: - case MySqlParser.KW_PORT: - case MySqlParser.KW_PRECEDES: - case MySqlParser.KW_PREPARE: - case MySqlParser.KW_PRESERVE: - case MySqlParser.KW_PREV: - case MySqlParser.KW_PROCESSLIST: - case MySqlParser.KW_PROFILE: - case MySqlParser.KW_PROFILES: - case MySqlParser.KW_PROXY: - case MySqlParser.KW_QUERY: - case MySqlParser.KW_QUICK: - case MySqlParser.KW_REBUILD: - case MySqlParser.KW_RECOVER: - case MySqlParser.KW_RECURSIVE: - case MySqlParser.KW_REDO_BUFFER_SIZE: - case MySqlParser.KW_REDUNDANT: - case MySqlParser.KW_RELAY: - case MySqlParser.KW_RELAY_LOG_FILE: - case MySqlParser.KW_RELAY_LOG_POS: - case MySqlParser.KW_RELAYLOG: - case MySqlParser.KW_REMOVE: - case MySqlParser.KW_REORGANIZE: - case MySqlParser.KW_REPAIR: - case MySqlParser.KW_REPLICATE_DO_DB: - case MySqlParser.KW_REPLICATE_DO_TABLE: - case MySqlParser.KW_REPLICATE_IGNORE_DB: - case MySqlParser.KW_REPLICATE_IGNORE_TABLE: - case MySqlParser.KW_REPLICATE_REWRITE_DB: - case MySqlParser.KW_REPLICATE_WILD_DO_TABLE: - case MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE: - case MySqlParser.KW_REPLICATION: - case MySqlParser.KW_RESET: - case MySqlParser.KW_RESUME: - case MySqlParser.KW_RETURNED_SQLSTATE: - case MySqlParser.KW_RETURNS: - case MySqlParser.KW_REUSE: - case MySqlParser.KW_ROLE: - case MySqlParser.KW_ROLLBACK: - case MySqlParser.KW_ROLLUP: - case MySqlParser.KW_ROTATE: - case MySqlParser.KW_ROW: - case MySqlParser.KW_ROWS: - case MySqlParser.KW_ROW_FORMAT: - case MySqlParser.KW_SAVEPOINT: - case MySqlParser.KW_SCHEDULE: - case MySqlParser.KW_SECURITY: - case MySqlParser.KW_SERVER: - case MySqlParser.KW_SESSION: - case MySqlParser.KW_SHARE: - case MySqlParser.KW_SHARED: - case MySqlParser.KW_SIGNED: - case MySqlParser.KW_SIMPLE: - case MySqlParser.KW_SLAVE: - case MySqlParser.KW_SLOW: - case MySqlParser.KW_SNAPSHOT: - case MySqlParser.KW_SOCKET: - case MySqlParser.KW_SOME: - case MySqlParser.KW_SONAME: - case MySqlParser.KW_SOUNDS: - case MySqlParser.KW_SOURCE: - case MySqlParser.KW_SQL_AFTER_GTIDS: - case MySqlParser.KW_SQL_AFTER_MTS_GAPS: - case MySqlParser.KW_SQL_BEFORE_GTIDS: - case MySqlParser.KW_SQL_BUFFER_RESULT: - case MySqlParser.KW_SQL_CACHE: - case MySqlParser.KW_SQL_NO_CACHE: - case MySqlParser.KW_SQL_THREAD: - case MySqlParser.KW_START: - case MySqlParser.KW_STARTS: - case MySqlParser.KW_STATS_AUTO_RECALC: - case MySqlParser.KW_STATS_PERSISTENT: - case MySqlParser.KW_STATS_SAMPLE_PAGES: - case MySqlParser.KW_STATUS: - case MySqlParser.KW_STOP: - case MySqlParser.KW_STORAGE: - case MySqlParser.KW_STRING: - case MySqlParser.KW_SUBCLASS_ORIGIN: - case MySqlParser.KW_SUBJECT: - case MySqlParser.KW_SUBPARTITION: - case MySqlParser.KW_SUBPARTITIONS: - case MySqlParser.KW_SUSPEND: - case MySqlParser.KW_SWAPS: - case MySqlParser.KW_SWITCHES: - case MySqlParser.KW_TABLE_NAME: - case MySqlParser.KW_TABLESPACE: - case MySqlParser.KW_TABLE_TYPE: - case MySqlParser.KW_TEMPORARY: - case MySqlParser.KW_TEMPTABLE: - case MySqlParser.KW_THAN: - case MySqlParser.KW_TRADITIONAL: - case MySqlParser.KW_TRANSACTION: - case MySqlParser.KW_TRANSACTIONAL: - case MySqlParser.KW_TRIGGERS: - case MySqlParser.KW_TRUNCATE: - case MySqlParser.KW_UNBOUNDED: - case MySqlParser.KW_UNDEFINED: - case MySqlParser.KW_UNDOFILE: - case MySqlParser.KW_UNDO_BUFFER_SIZE: - case MySqlParser.KW_UNINSTALL: - case MySqlParser.KW_UNKNOWN: - case MySqlParser.KW_UNTIL: - case MySqlParser.KW_UPGRADE: - case MySqlParser.KW_USER: - case MySqlParser.KW_USE_FRM: - case MySqlParser.KW_USER_RESOURCES: - case MySqlParser.KW_VALIDATION: - case MySqlParser.KW_VALUE: - case MySqlParser.KW_VARIABLES: - case MySqlParser.KW_VIEW: - case MySqlParser.KW_VIRTUAL: - case MySqlParser.KW_VISIBLE: - case MySqlParser.KW_WAIT: - case MySqlParser.KW_WARNINGS: - case MySqlParser.KW_WITHOUT: - case MySqlParser.KW_WORK: - case MySqlParser.KW_WRAPPER: - case MySqlParser.KW_X509: - case MySqlParser.KW_XA: - case MySqlParser.KW_XML: - case MySqlParser.KW_QUARTER: - case MySqlParser.KW_MONTH: - case MySqlParser.KW_DAY: - case MySqlParser.KW_HOUR: - case MySqlParser.KW_MINUTE: - case MySqlParser.KW_WEEK: - case MySqlParser.KW_SECOND: - case MySqlParser.KW_MICROSECOND: - case MySqlParser.KW_ADMIN: - case MySqlParser.KW_AUDIT_ABORT_EXEMPT: - case MySqlParser.KW_AUDIT_ADMIN: - case MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN: - case MySqlParser.KW_BACKUP_ADMIN: - case MySqlParser.KW_BINLOG_ADMIN: - case MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN: - case MySqlParser.KW_CLONE_ADMIN: - case MySqlParser.KW_CONNECTION_ADMIN: - case MySqlParser.KW_ENCRYPTION_KEY_ADMIN: - case MySqlParser.KW_EXECUTE: - case MySqlParser.KW_FILE: - case MySqlParser.KW_FIREWALL_ADMIN: - case MySqlParser.KW_FIREWALL_EXEMPT: - case MySqlParser.KW_FIREWALL_USER: - case MySqlParser.KW_GROUP_REPLICATION_ADMIN: - case MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE: - case MySqlParser.KW_INVOKE: - case MySqlParser.KW_LAMBDA: - case MySqlParser.KW_NDB_STORED_USER: - case MySqlParser.KW_PASSWORDLESS_USER_ADMIN: - case MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN: - case MySqlParser.KW_PRIVILEGES: - case MySqlParser.KW_PROCESS: - case MySqlParser.KW_RELOAD: - case MySqlParser.KW_REPLICATION_APPLIER: - case MySqlParser.KW_REPLICATION_SLAVE_ADMIN: - case MySqlParser.KW_RESOURCE_GROUP_ADMIN: - case MySqlParser.KW_RESOURCE_GROUP_USER: - case MySqlParser.KW_ROLE_ADMIN: - case MySqlParser.KW_ROUTINE: - case MySqlParser.KW_S3: - case MySqlParser.KW_SESSION_VARIABLES_ADMIN: - case MySqlParser.KW_SET_USER_ID: - case MySqlParser.KW_SHOW_ROUTINE: - case MySqlParser.KW_SHUTDOWN: - case MySqlParser.KW_SUPER: - case MySqlParser.KW_SYSTEM_VARIABLES_ADMIN: - case MySqlParser.KW_TABLES: - case MySqlParser.KW_TABLE_ENCRYPTION_ADMIN: - case MySqlParser.KW_VERSION_TOKEN_ADMIN: - case MySqlParser.KW_XA_RECOVER_ADMIN: - case MySqlParser.KW_ARMSCII8: - case MySqlParser.KW_ASCII: - case MySqlParser.KW_BIG5: - case MySqlParser.KW_CP1250: - case MySqlParser.KW_CP1251: - case MySqlParser.KW_CP1256: - case MySqlParser.KW_CP1257: - case MySqlParser.KW_CP850: - case MySqlParser.KW_CP852: - case MySqlParser.KW_CP866: - case MySqlParser.KW_CP932: - case MySqlParser.KW_DEC8: - case MySqlParser.KW_EUCJPMS: - case MySqlParser.KW_EUCKR: - case MySqlParser.KW_GB18030: - case MySqlParser.KW_GB2312: - case MySqlParser.KW_GBK: - case MySqlParser.KW_GEOSTD8: - case MySqlParser.KW_GREEK: - case MySqlParser.KW_HEBREW: - case MySqlParser.KW_HP8: - case MySqlParser.KW_KEYBCS2: - case MySqlParser.KW_KOI8R: - case MySqlParser.KW_KOI8U: - case MySqlParser.KW_LATIN1: - case MySqlParser.KW_LATIN2: - case MySqlParser.KW_LATIN5: - case MySqlParser.KW_LATIN7: - case MySqlParser.KW_MACCE: - case MySqlParser.KW_MACROMAN: - case MySqlParser.KW_SJIS: - case MySqlParser.KW_SWE7: - case MySqlParser.KW_TIS620: - case MySqlParser.KW_UCS2: - case MySqlParser.KW_UJIS: - case MySqlParser.KW_UTF16: - case MySqlParser.KW_UTF16LE: - case MySqlParser.KW_UTF32: - case MySqlParser.KW_UTF8: - case MySqlParser.KW_UTF8MB3: - case MySqlParser.KW_UTF8MB4: - case MySqlParser.KW_ARCHIVE: - case MySqlParser.KW_BLACKHOLE: - case MySqlParser.KW_CSV: - case MySqlParser.KW_FEDERATED: - case MySqlParser.KW_INNODB: - case MySqlParser.KW_MEMORY: - case MySqlParser.KW_MRG_MYISAM: - case MySqlParser.KW_MYISAM: - case MySqlParser.KW_NDB: - case MySqlParser.KW_NDBCLUSTER: - case MySqlParser.KW_PERFORMANCE_SCHEMA: - case MySqlParser.KW_TOKUDB: - case MySqlParser.KW_REPEATABLE: - case MySqlParser.KW_COMMITTED: - case MySqlParser.KW_UNCOMMITTED: - case MySqlParser.KW_SERIALIZABLE: - case MySqlParser.KW_GEOMETRYCOLLECTION: - case MySqlParser.KW_LINESTRING: - case MySqlParser.KW_MULTILINESTRING: - case MySqlParser.KW_MULTIPOINT: - case MySqlParser.KW_MULTIPOLYGON: - case MySqlParser.KW_POINT: - case MySqlParser.KW_POLYGON: - case MySqlParser.KW_CATALOG_NAME: - case MySqlParser.KW_CHARSET: - case MySqlParser.KW_COLLATION: - case MySqlParser.KW_ENGINE_ATTRIBUTE: - case MySqlParser.KW_FORMAT: - case MySqlParser.KW_GET_FORMAT: - case MySqlParser.KW_RANDOM: - case MySqlParser.KW_REVERSE: - case MySqlParser.KW_ROW_COUNT: - case MySqlParser.KW_SCHEMA_NAME: - case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: - case MySqlParser.KW_SRID: - case MySqlParser.KW_SYSTEM_USER: - case MySqlParser.KW_TP_CONNECTION_ADMIN: - case MySqlParser.KW_WEIGHT_STRING: - case MySqlParser.MOD: - case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: - case MySqlParser.STRING_LITERAL: - case MySqlParser.ID: - { - this.state = 2978; - this.partitionNames(); - } - break; - case MySqlParser.KW_ALL: - { - this.state = 2979; - this.match(MySqlParser.KW_ALL); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - break; case MySqlParser.KW_REMOVE: localContext = new AlterByRemovePartitioningContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2982; + this.state = 2976; this.match(MySqlParser.KW_REMOVE); - this.state = 2983; + this.state = 2977; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16015,9 +16011,9 @@ export class MySqlParser extends antlr.Parser { localContext = new AlterByUpgradePartitioningContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2984; + this.state = 2978; this.match(MySqlParser.KW_UPGRADE); - this.state = 2985; + this.state = 2979; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16046,9 +16042,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2988; + this.state = 2982; this.match(MySqlParser.KW_DROP); - this.state = 2989; + this.state = 2983; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -16058,17 +16054,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2991; + this.state = 2985; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: { - this.state = 2990; + this.state = 2984; this.ifExists(); } break; } - this.state = 2993; + this.state = 2987; this.databaseName(); } } @@ -16092,21 +16088,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2995; + this.state = 2989; this.match(MySqlParser.KW_DROP); - this.state = 2996; + this.state = 2990; this.match(MySqlParser.KW_EVENT); - this.state = 2998; + this.state = 2992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: { - this.state = 2997; + this.state = 2991; this.ifExists(); } break; } - this.state = 3000; + this.state = 2994; localContext._event_name = this.fullId(); } } @@ -16132,16 +16128,16 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3002; + this.state = 2996; this.match(MySqlParser.KW_DROP); - this.state = 3003; + this.state = 2997; this.match(MySqlParser.KW_INDEX); - this.state = 3005; + this.state = 2999; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { case 1: { - this.state = 3004; + this.state = 2998; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -16154,36 +16150,36 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 3007; + this.state = 3001; this.indexName(); - this.state = 3008; + this.state = 3002; this.match(MySqlParser.KW_ON); - this.state = 3009; + this.state = 3003; this.tableName(); - this.state = 3022; + this.state = 3016; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 366, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3020; + this.state = 3014; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 3010; + this.state = 3004; this.match(MySqlParser.KW_ALGORITHM); - this.state = 3012; + this.state = 3006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3011; + this.state = 3005; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3014; + this.state = 3008; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -16197,19 +16193,19 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_LOCK: { - this.state = 3015; + this.state = 3009; this.match(MySqlParser.KW_LOCK); - this.state = 3017; + this.state = 3011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3016; + this.state = 3010; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3019; + this.state = 3013; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -16226,7 +16222,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 3024; + this.state = 3018; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 366, this.context); } @@ -16253,27 +16249,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3025; + this.state = 3019; this.match(MySqlParser.KW_DROP); - this.state = 3026; + this.state = 3020; this.match(MySqlParser.KW_LOGFILE); - this.state = 3027; + this.state = 3021; this.match(MySqlParser.KW_GROUP); - this.state = 3028; + this.state = 3022; localContext._logfileGroupName = this.uid(); - this.state = 3029; + this.state = 3023; this.match(MySqlParser.KW_ENGINE); - this.state = 3031; + this.state = 3025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3030; + this.state = 3024; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3033; + this.state = 3027; this.engineName(); } } @@ -16297,21 +16293,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3035; + this.state = 3029; this.match(MySqlParser.KW_DROP); - this.state = 3036; + this.state = 3030; this.match(MySqlParser.KW_PROCEDURE); - this.state = 3038; + this.state = 3032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { case 1: { - this.state = 3037; + this.state = 3031; this.ifExists(); } break; } - this.state = 3040; + this.state = 3034; localContext._sp_name = this.fullId(); } } @@ -16335,21 +16331,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3042; + this.state = 3036; this.match(MySqlParser.KW_DROP); - this.state = 3043; + this.state = 3037; this.match(MySqlParser.KW_FUNCTION); - this.state = 3045; + this.state = 3039; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: { - this.state = 3044; + this.state = 3038; this.ifExists(); } break; } - this.state = 3047; + this.state = 3041; this.functionName(); } } @@ -16373,21 +16369,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3049; + this.state = 3043; this.match(MySqlParser.KW_DROP); - this.state = 3050; + this.state = 3044; this.match(MySqlParser.KW_SERVER); - this.state = 3052; + this.state = 3046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: { - this.state = 3051; + this.state = 3045; this.ifExists(); } break; } - this.state = 3054; + this.state = 3048; localContext._serverName = this.uid(); } } @@ -16412,25 +16408,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3056; + this.state = 3050; this.match(MySqlParser.KW_DROP); - this.state = 3057; + this.state = 3051; this.match(MySqlParser.KW_SPATIAL); - this.state = 3058; + this.state = 3052; this.match(MySqlParser.KW_REFERENCE); - this.state = 3059; + this.state = 3053; this.match(MySqlParser.KW_SYSTEM); - this.state = 3061; + this.state = 3055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3060; + this.state = 3054; this.ifExists(); } } - this.state = 3063; + this.state = 3057; this.match(MySqlParser.DECIMAL_LITERAL); } } @@ -16455,38 +16451,38 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3065; + this.state = 3059; this.match(MySqlParser.KW_DROP); - this.state = 3067; + this.state = 3061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 3066; + this.state = 3060; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 3069; + this.state = 3063; this.match(MySqlParser.KW_TABLE); - this.state = 3071; + this.state = 3065; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 3070; + this.state = 3064; this.ifExists(); } break; } - this.state = 3073; + this.state = 3067; this.tableNames(); - this.state = 3075; + this.state = 3069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3074; + this.state = 3068; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -16522,40 +16518,40 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3077; + this.state = 3071; this.match(MySqlParser.KW_DROP); - this.state = 3079; + this.state = 3073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3078; + this.state = 3072; this.match(MySqlParser.KW_UNDO); } } - this.state = 3081; + this.state = 3075; this.match(MySqlParser.KW_TABLESPACE); - this.state = 3082; + this.state = 3076; this.tablespaceName(); - this.state = 3088; + this.state = 3082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 3083; + this.state = 3077; this.match(MySqlParser.KW_ENGINE); - this.state = 3085; + this.state = 3079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3084; + this.state = 3078; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3087; + this.state = 3081; this.engineName(); } } @@ -16582,21 +16578,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3090; + this.state = 3084; this.match(MySqlParser.KW_DROP); - this.state = 3091; + this.state = 3085; this.match(MySqlParser.KW_TRIGGER); - this.state = 3093; + this.state = 3087; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 3092; + this.state = 3086; this.ifExists(); } break; } - this.state = 3095; + this.state = 3089; localContext._trigger_name = this.fullId(); } } @@ -16621,44 +16617,44 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3097; + this.state = 3091; this.match(MySqlParser.KW_DROP); - this.state = 3098; + this.state = 3092; this.match(MySqlParser.KW_VIEW); - this.state = 3100; + this.state = 3094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 3099; + this.state = 3093; this.ifExists(); } break; } - this.state = 3102; + this.state = 3096; this.viewName(); - this.state = 3107; + this.state = 3101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3103; + this.state = 3097; this.match(MySqlParser.COMMA); - this.state = 3104; + this.state = 3098; this.viewName(); } } - this.state = 3109; + this.state = 3103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3111; + this.state = 3105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3110; + this.state = 3104; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -16693,21 +16689,21 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3113; + this.state = 3107; this.match(MySqlParser.KW_DROP); - this.state = 3114; + this.state = 3108; this.match(MySqlParser.KW_ROLE); - this.state = 3116; + this.state = 3110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 3115; + this.state = 3109; this.ifExists(); } break; } - this.state = 3118; + this.state = 3112; this.userOrRoleNames(); } } @@ -16730,61 +16726,61 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 170, MySqlParser.RULE_setRole); let _la: number; try { - this.state = 3140; + this.state = 3134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3120; + this.state = 3114; this.match(MySqlParser.KW_SET); - this.state = 3121; + this.state = 3115; this.match(MySqlParser.KW_DEFAULT); - this.state = 3122; + this.state = 3116; this.match(MySqlParser.KW_ROLE); - this.state = 3126; + this.state = 3120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 3123; + this.state = 3117; this.match(MySqlParser.KW_NONE); } break; case 2: { - this.state = 3124; + this.state = 3118; this.match(MySqlParser.KW_ALL); } break; case 3: { - this.state = 3125; + this.state = 3119; this.userOrRoleNames(); } break; } - this.state = 3128; + this.state = 3122; this.match(MySqlParser.KW_TO); { - this.state = 3129; + this.state = 3123; this.userOrRoleName(); } - this.state = 3134; + this.state = 3128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3130; + this.state = 3124; this.match(MySqlParser.COMMA); { - this.state = 3131; + this.state = 3125; this.userOrRoleName(); } } } - this.state = 3136; + this.state = 3130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16793,11 +16789,11 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3137; + this.state = 3131; this.match(MySqlParser.KW_SET); - this.state = 3138; + this.state = 3132; this.match(MySqlParser.KW_ROLE); - this.state = 3139; + this.state = 3133; this.roleOption(); } break; @@ -16824,25 +16820,25 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3142; + this.state = 3136; this.match(MySqlParser.KW_RENAME); - this.state = 3143; + this.state = 3137; this.match(MySqlParser.KW_TABLE); - this.state = 3144; + this.state = 3138; this.renameTableClause(); - this.state = 3149; + this.state = 3143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3145; + this.state = 3139; this.match(MySqlParser.COMMA); - this.state = 3146; + this.state = 3140; this.renameTableClause(); } } - this.state = 3151; + this.state = 3145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16868,11 +16864,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3152; + this.state = 3146; this.tableName(); - this.state = 3153; + this.state = 3147; this.match(MySqlParser.KW_TO); - this.state = 3154; + this.state = 3148; this.tableNameCreate(); } } @@ -16897,19 +16893,19 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3156; + this.state = 3150; this.match(MySqlParser.KW_TRUNCATE); - this.state = 3158; + this.state = 3152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 173) { { - this.state = 3157; + this.state = 3151; this.match(MySqlParser.KW_TABLE); } } - this.state = 3160; + this.state = 3154; this.tableName(); } } @@ -16933,34 +16929,34 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3162; + this.state = 3156; this.match(MySqlParser.KW_CALL); - this.state = 3163; + this.state = 3157; localContext._sp_name = this.fullId(); - this.state = 3170; + this.state = 3164; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 3164; + this.state = 3158; this.match(MySqlParser.LR_BRACKET); - this.state = 3167; + this.state = 3161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { - this.state = 3165; + this.state = 3159; this.constants(); } break; case 2: { - this.state = 3166; + this.state = 3160; this.expressions(); } break; } - this.state = 3169; + this.state = 3163; this.match(MySqlParser.RR_BRACKET); } break; @@ -16985,20 +16981,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 180, MySqlParser.RULE_deleteStatement); try { - this.state = 3174; + this.state = 3168; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3172; + this.state = 3166; this.singleDeleteStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3173; + this.state = 3167; this.multipleDeleteStatement(); } break; @@ -17024,9 +17020,9 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3176; + this.state = 3170; this.match(MySqlParser.KW_DO); - this.state = 3177; + this.state = 3171; this.expressions(); } } @@ -17048,34 +17044,34 @@ export class MySqlParser extends antlr.Parser { let localContext = new HandlerStatementContext(this.context, this.state); this.enterRule(localContext, 184, MySqlParser.RULE_handlerStatement); try { - this.state = 3183; + this.state = 3177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3179; + this.state = 3173; this.handlerOpenStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3180; + this.state = 3174; this.handlerReadIndexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3181; + this.state = 3175; this.handlerReadStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3182; + this.state = 3176; this.handlerCloseStatement(); } break; @@ -17102,14 +17098,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3185; + this.state = 3179; this.match(MySqlParser.KW_INSERT); - this.state = 3187; + this.state = 3181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 76 || _la === 107) { { - this.state = 3186; + this.state = 3180; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 76 || _la === 107)) { @@ -17122,89 +17118,89 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3190; + this.state = 3184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3189; + this.state = 3183; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3193; + this.state = 3187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3192; + this.state = 3186; this.match(MySqlParser.KW_INTO); } } - this.state = 3195; + this.state = 3189; this.tableName(); - this.state = 3202; + this.state = 3196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3196; + this.state = 3190; this.match(MySqlParser.KW_PARTITION); - this.state = 3197; + this.state = 3191; this.match(MySqlParser.LR_BRACKET); - this.state = 3199; + this.state = 3193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3198; + this.state = 3192; this.partitionNames(); } } - this.state = 3201; + this.state = 3195; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3215; + this.state = 3209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3205; + this.state = 3199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: { - this.state = 3204; + this.state = 3198; this.fullColumnNames(); } break; } - this.state = 3209; + this.state = 3203; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: { - this.state = 3207; + this.state = 3201; this.valuesOrValueList(); } break; case 2: { - this.state = 3208; + this.state = 3202; this.selectOrTableOrValues(); } break; } - this.state = 3212; + this.state = 3206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: { - this.state = 3211; + this.state = 3205; this.asRowAlias(); } break; @@ -17213,50 +17209,50 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 3214; + this.state = 3208; this.setAssignmentList(); } break; } - this.state = 3218; + this.state = 3212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3217; + this.state = 3211; this.asRowAlias(); } } - this.state = 3232; + this.state = 3226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3220; + this.state = 3214; this.match(MySqlParser.KW_ON); - this.state = 3221; + this.state = 3215; this.match(MySqlParser.KW_DUPLICATE); - this.state = 3222; + this.state = 3216; this.match(MySqlParser.KW_KEY); - this.state = 3223; + this.state = 3217; this.match(MySqlParser.KW_UPDATE); - this.state = 3224; + this.state = 3218; localContext._duplicatedFirst = this.updatedElement(); - this.state = 3229; + this.state = 3223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3225; + this.state = 3219; this.match(MySqlParser.COMMA); - this.state = 3226; + this.state = 3220; localContext._updatedElement = this.updatedElement(); localContext._duplicatedElements.push(localContext._updatedElement); } } - this.state = 3231; + this.state = 3225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17285,16 +17281,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3234; + this.state = 3228; this.match(MySqlParser.KW_AS); - this.state = 3235; + this.state = 3229; localContext._rowAlias = this.uid(); - this.state = 3237; + this.state = 3231; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: { - this.state = 3236; + this.state = 3230; this.fullColumnNames(); } break; @@ -17319,30 +17315,30 @@ export class MySqlParser extends antlr.Parser { let localContext = new SelectOrTableOrValuesContext(this.context, this.state); this.enterRule(localContext, 190, MySqlParser.RULE_selectOrTableOrValues); try { - this.state = 3243; + this.state = 3237; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3239; + this.state = 3233; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3240; + this.state = 3234; this.match(MySqlParser.KW_TABLE); - this.state = 3241; + this.state = 3235; this.tableName(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3242; + this.state = 3236; this.rowValuesList(); } break; @@ -17371,22 +17367,22 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3245; + this.state = 3239; this.interSectQuery(); - this.state = 3251; + this.state = 3245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3246; + this.state = 3240; this.match(MySqlParser.KW_INTERSECT); - this.state = 3248; + this.state = 3242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3247; + this.state = 3241; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -17398,11 +17394,11 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3250; + this.state = 3244; this.interSectQuery(); } } - this.state = 3253; + this.state = 3247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 828); @@ -17429,24 +17425,24 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3256; + this.state = 3250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 3255; + this.state = 3249; this.match(MySqlParser.LR_BRACKET); } } - this.state = 3258; + this.state = 3252; this.querySpecification(); - this.state = 3260; + this.state = 3254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 3259; + this.state = 3253; this.match(MySqlParser.RR_BRACKET); } break; @@ -17474,16 +17470,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3262; + this.state = 3256; this.match(MySqlParser.KW_LOAD); - this.state = 3263; + this.state = 3257; this.match(MySqlParser.KW_DATA); - this.state = 3265; + this.state = 3259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3264; + this.state = 3258; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -17496,26 +17492,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3268; + this.state = 3262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3267; + this.state = 3261; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3270; + this.state = 3264; this.match(MySqlParser.KW_INFILE); - this.state = 3271; + this.state = 3265; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3273; + this.state = 3267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3272; + this.state = 3266; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -17528,48 +17524,48 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3275; + this.state = 3269; this.match(MySqlParser.KW_INTO); - this.state = 3276; + this.state = 3270; this.match(MySqlParser.KW_TABLE); - this.state = 3277; + this.state = 3271; this.tableName(); - this.state = 3283; + this.state = 3277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3278; + this.state = 3272; this.match(MySqlParser.KW_PARTITION); - this.state = 3279; + this.state = 3273; this.match(MySqlParser.LR_BRACKET); - this.state = 3280; + this.state = 3274; this.partitionNames(); - this.state = 3281; + this.state = 3275; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3288; + this.state = 3282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3285; + this.state = 3279; this.match(MySqlParser.KW_CHARACTER); - this.state = 3286; + this.state = 3280; this.match(MySqlParser.KW_SET); - this.state = 3287; + this.state = 3281; localContext._charset = this.charsetName(); } } - this.state = 3296; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 337 || _la === 398) { { - this.state = 3290; + this.state = 3284; localContext._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -17579,57 +17575,57 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3292; + this.state = 3286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3291; + this.state = 3285; this.selectFieldsInto(); } } - this.state = 3294; + this.state = 3288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 123 || _la === 174); } } - this.state = 3304; + this.state = 3298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3298; + this.state = 3292; this.match(MySqlParser.KW_LINES); - this.state = 3300; + this.state = 3294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3299; + this.state = 3293; this.selectLinesInto(); } } - this.state = 3302; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 171 || _la === 174); } } - this.state = 3310; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3306; + this.state = 3300; this.match(MySqlParser.KW_IGNORE); - this.state = 3307; + this.state = 3301; this.decimalLiteral(); - this.state = 3308; + this.state = 3302; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -17642,58 +17638,58 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3323; + this.state = 3317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3312; + this.state = 3306; this.match(MySqlParser.LR_BRACKET); - this.state = 3313; + this.state = 3307; this.assignmentField(); - this.state = 3318; + this.state = 3312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3314; + this.state = 3308; this.match(MySqlParser.COMMA); - this.state = 3315; + this.state = 3309; this.assignmentField(); } } - this.state = 3320; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3321; + this.state = 3315; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3334; + this.state = 3328; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3325; + this.state = 3319; this.match(MySqlParser.KW_SET); - this.state = 3326; + this.state = 3320; this.updatedElement(); - this.state = 3331; + this.state = 3325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3327; + this.state = 3321; this.match(MySqlParser.COMMA); - this.state = 3328; + this.state = 3322; this.updatedElement(); } } - this.state = 3333; + this.state = 3327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17723,16 +17719,16 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3336; + this.state = 3330; this.match(MySqlParser.KW_LOAD); - this.state = 3337; + this.state = 3331; this.match(MySqlParser.KW_XML); - this.state = 3339; + this.state = 3333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3338; + this.state = 3332; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -17745,26 +17741,26 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3342; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3341; + this.state = 3335; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3344; + this.state = 3338; this.match(MySqlParser.KW_INFILE); - this.state = 3345; + this.state = 3339; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3347; + this.state = 3341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3346; + this.state = 3340; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -17777,55 +17773,55 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3349; + this.state = 3343; this.match(MySqlParser.KW_INTO); - this.state = 3350; + this.state = 3344; this.match(MySqlParser.KW_TABLE); - this.state = 3351; + this.state = 3345; this.tableName(); - this.state = 3355; + this.state = 3349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3352; + this.state = 3346; this.match(MySqlParser.KW_CHARACTER); - this.state = 3353; + this.state = 3347; this.match(MySqlParser.KW_SET); - this.state = 3354; + this.state = 3348; localContext._charset = this.charsetName(); } } - this.state = 3367; + this.state = 3361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 587) { { - this.state = 3357; + this.state = 3351; this.match(MySqlParser.KW_ROWS); - this.state = 3358; + this.state = 3352; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 3359; + this.state = 3353; this.match(MySqlParser.KW_BY); - this.state = 3361; + this.state = 3355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 859) { { - this.state = 3360; + this.state = 3354; this.match(MySqlParser.LESS_SYMBOL); } } - this.state = 3363; + this.state = 3357; localContext._tag = this.match(MySqlParser.STRING_LITERAL); - this.state = 3365; + this.state = 3359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 858) { { - this.state = 3364; + this.state = 3358; this.match(MySqlParser.GREATER_SYMBOL); } } @@ -17833,16 +17829,16 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3373; + this.state = 3367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3369; + this.state = 3363; this.match(MySqlParser.KW_IGNORE); - this.state = 3370; + this.state = 3364; this.decimalLiteral(); - this.state = 3371; + this.state = 3365; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -17855,58 +17851,58 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3386; + this.state = 3380; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3375; + this.state = 3369; this.match(MySqlParser.LR_BRACKET); - this.state = 3376; + this.state = 3370; this.assignmentField(); - this.state = 3381; + this.state = 3375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3377; + this.state = 3371; this.match(MySqlParser.COMMA); - this.state = 3378; + this.state = 3372; this.assignmentField(); } } - this.state = 3383; + this.state = 3377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3384; + this.state = 3378; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3397; + this.state = 3391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 3388; + this.state = 3382; this.match(MySqlParser.KW_SET); - this.state = 3389; + this.state = 3383; this.updatedElement(); - this.state = 3394; + this.state = 3388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3390; + this.state = 3384; this.match(MySqlParser.COMMA); - this.state = 3391; + this.state = 3385; this.updatedElement(); } } - this.state = 3396; + this.state = 3390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17936,58 +17932,58 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3399; + this.state = 3393; this.match(MySqlParser.LR_BRACKET); - this.state = 3400; + this.state = 3394; this.parenthesizedQueryExpression(); - this.state = 3402; + this.state = 3396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3401; + this.state = 3395; this.orderByClause(); } } - this.state = 3405; + this.state = 3399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3404; + this.state = 3398; this.limitClause(); } } - this.state = 3407; + this.state = 3401; this.match(MySqlParser.RR_BRACKET); - this.state = 3409; + this.state = 3403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3408; + this.state = 3402; this.orderByClause(); } } - this.state = 3412; + this.state = 3406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3411; + this.state = 3405; this.limitClause(); } } - this.state = 3415; + this.state = 3409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3414; + this.state = 3408; this.intoClause(); } } @@ -18015,14 +18011,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3417; + this.state = 3411; this.match(MySqlParser.KW_REPLACE); - this.state = 3419; + this.state = 3413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 107) { { - this.state = 3418; + this.state = 3412; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 107)) { @@ -18035,35 +18031,35 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3422; + this.state = 3416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3421; + this.state = 3415; this.match(MySqlParser.KW_INTO); } } - this.state = 3424; + this.state = 3418; this.tableName(); - this.state = 3430; + this.state = 3424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3425; + this.state = 3419; this.match(MySqlParser.KW_PARTITION); - this.state = 3426; + this.state = 3420; this.match(MySqlParser.LR_BRACKET); - this.state = 3427; + this.state = 3421; this.partitionNames(); - this.state = 3428; + this.state = 3422; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3440; + this.state = 3434; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: @@ -18072,27 +18068,27 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3436; + this.state = 3430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3432; + this.state = 3426; this.match(MySqlParser.LR_BRACKET); - this.state = 3433; + this.state = 3427; this.columnNames(); - this.state = 3434; + this.state = 3428; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3438; + this.state = 3432; this.replaceStatementValuesOrSelectOrTable(); } break; case MySqlParser.KW_SET: { - this.state = 3439; + this.state = 3433; this.setAssignmentList(); } break; @@ -18121,116 +18117,48 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3511; + this.state = 3495; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { - case 1: - localContext = new SimpleSelectContext(localContext); + switch (this.tokenStream.LA(1)) { + case MySqlParser.KW_SELECT: + localContext = new UnionAndLateralSelectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3442; + this.state = 3436; this.querySpecification(); - this.state = 3444; + this.state = 3440; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { - case 1: - { - this.state = 3443; - this.lockClause(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 446, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3437; + this.unionStatement(); + } + } } - break; - } - } - break; - case 2: - localContext = new SimpleSelectContext(localContext); - this.enterOuterAlt(localContext, 2); - { - this.state = 3446; - this.querySpecificationNointo(); - this.state = 3448; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { - case 1: - { - this.state = 3447; - this.lockClause(); - } - break; + this.state = 3442; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 446, this.context); } this.state = 3451; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { - case 1: - { - this.state = 3450; - this.intoClause(); - } - break; - } - } - break; - case 3: - localContext = new ParenthesisSelectContext(localContext); - this.enterOuterAlt(localContext, 3); - { - this.state = 3453; - this.queryExpression(); - this.state = 3455; - this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3454; - this.lockClause(); - } - break; - } - } - break; - case 4: - localContext = new UnionSelectContext(localContext); - this.enterOuterAlt(localContext, 4); - { - this.state = 3457; - this.querySpecificationNointo(); - this.state = 3459; - this.errorHandler.sync(this); - alternative = 1; - do { - switch (alternative) { - case 1: - { - { - this.state = 3458; - this.unionStatement(); - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 3461; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); - } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 3471; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { - case 1: - { - this.state = 3463; + this.state = 3443; this.match(MySqlParser.KW_UNION); - this.state = 3465; + this.state = 3445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3464; - (localContext as UnionSelectContext)._unionType = this.tokenStream.LT(1); + this.state = 3444; + (localContext as UnionAndLateralSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { - (localContext as UnionSelectContext)._unionType = this.errorHandler.recoverInline(this); + (localContext as UnionAndLateralSelectContext)._unionType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); @@ -18239,18 +18167,18 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3469; + this.state = 3449; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 3467; + this.state = 3447; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3468; + this.state = 3448; this.queryExpression(); } break; @@ -18260,81 +18188,105 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 3474; + this.state = 3457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3453; + this.match(MySqlParser.COMMA); + this.state = 3454; + this.lateralStatement(); + } + } + } + this.state = 3459; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); + } + this.state = 3461; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3473; + this.state = 3460; this.orderByClause(); } break; } - this.state = 3477; + this.state = 3464; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3476; + this.state = 3463; this.limitClause(); } break; } - this.state = 3480; + this.state = 3467; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 3479; + this.state = 3466; this.lockClause(); } break; } + this.state = 3470; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + case 1: + { + this.state = 3469; + this.intoClause(); + } + break; + } } break; - case 5: - localContext = new UnionParenthesisSelectContext(localContext); - this.enterOuterAlt(localContext, 5); + case MySqlParser.LR_BRACKET: + localContext = new SelectExpressionContext(localContext); + this.enterOuterAlt(localContext, 2); { - this.state = 3482; - this.queryExpressionNointo(); + this.state = 3472; + this.queryExpression(); + this.state = 3476; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3473; + this.unionStatement(); + } + } + } + this.state = 3478; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + } this.state = 3484; this.errorHandler.sync(this); - alternative = 1; - do { - switch (alternative) { - case 1: - { - { - this.state = 3483; - this.unionParenthesis(); - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 3486; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); - } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 3493; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: { - this.state = 3488; + this.state = 3479; this.match(MySqlParser.KW_UNION); - this.state = 3490; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3489; - (localContext as UnionParenthesisSelectContext)._unionType = this.tokenStream.LT(1); + this.state = 3480; + (localContext as SelectExpressionContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { - (localContext as UnionParenthesisSelectContext)._unionType = this.errorHandler.recoverInline(this); + (localContext as SelectExpressionContext)._unionType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); @@ -18343,73 +18295,45 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3492; + this.state = 3483; this.queryExpression(); } break; } - this.state = 3496; + this.state = 3487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3495; + this.state = 3486; this.orderByClause(); } break; } - this.state = 3499; + this.state = 3490; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 3498; + this.state = 3489; this.limitClause(); } break; } - this.state = 3502; + this.state = 3493; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3501; + this.state = 3492; this.lockClause(); } break; } } break; - case 6: - localContext = new WithLateralStatementContext(localContext); - this.enterOuterAlt(localContext, 6); - { - this.state = 3504; - this.querySpecificationNointo(); - this.state = 3507; - this.errorHandler.sync(this); - alternative = 1; - do { - switch (alternative) { - case 1: - { - { - this.state = 3505; - this.match(MySqlParser.COMMA); - this.state = 3506; - this.lateralStatement(); - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 3509; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 463, this.context); - } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - } - break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -18433,44 +18357,44 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3514; + this.state = 3498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 3513; + this.state = 3497; this.withClause(); } } - this.state = 3516; + this.state = 3500; this.queryExpressionBody(0); - this.state = 3518; + this.state = 3502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3517; + this.state = 3501; this.orderByClause(); } } - this.state = 3521; + this.state = 3505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3520; + this.state = 3504; this.limitClause(); } } - this.state = 3524; + this.state = 3508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3523; + this.state = 3507; this.intoClause(); } } @@ -18511,13 +18435,13 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 3527; + this.state = 3511; this.queryItem(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3543; + this.state = 3527; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -18525,25 +18449,25 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 3541; + this.state = 3525; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3529; + this.state = 3513; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3530; + this.state = 3514; this.match(MySqlParser.KW_UNION); - this.state = 3532; + this.state = 3516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3531; + this.state = 3515; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18555,7 +18479,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3534; + this.state = 3518; this.queryItem(0); } break; @@ -18563,18 +18487,18 @@ export class MySqlParser extends antlr.Parser { { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3535; + this.state = 3519; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3536; + this.state = 3520; this.match(MySqlParser.KW_EXCEPT); - this.state = 3538; + this.state = 3522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3537; + this.state = 3521; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18586,16 +18510,16 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3540; + this.state = 3524; this.queryItem(0); } break; } } } - this.state = 3545; + this.state = 3529; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); } } } @@ -18633,13 +18557,13 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 3547; + this.state = 3531; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3557; + this.state = 3541; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 474, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -18650,18 +18574,18 @@ export class MySqlParser extends antlr.Parser { { localContext = new QueryItemContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryItem); - this.state = 3549; + this.state = 3533; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3550; + this.state = 3534; this.match(MySqlParser.KW_INTERSECT); - this.state = 3552; + this.state = 3536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3551; + this.state = 3535; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18673,14 +18597,14 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3554; + this.state = 3538; this.queryPrimary(); } } } - this.state = 3559; + this.state = 3543; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 474, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); } } } @@ -18703,54 +18627,54 @@ export class MySqlParser extends antlr.Parser { this.enterRule(localContext, 212, MySqlParser.RULE_queryPrimary); let _la: number; try { - this.state = 3574; + this.state = 3558; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3560; + this.state = 3544; this.queryBlock(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3561; + this.state = 3545; this.match(MySqlParser.LR_BRACKET); - this.state = 3562; + this.state = 3546; this.queryExpressionBody(0); - this.state = 3564; + this.state = 3548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3563; + this.state = 3547; this.orderByClause(); } } - this.state = 3567; + this.state = 3551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3566; + this.state = 3550; this.limitClause(); } } - this.state = 3570; + this.state = 3554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3569; + this.state = 3553; this.intoClause(); } } - this.state = 3572; + this.state = 3556; this.match(MySqlParser.RR_BRACKET); } break; @@ -18774,20 +18698,20 @@ export class MySqlParser extends antlr.Parser { let localContext = new UpdateStatementContext(this.context, this.state); this.enterRule(localContext, 214, MySqlParser.RULE_updateStatement); try { - this.state = 3578; + this.state = 3562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3576; + this.state = 3560; this.singleUpdateStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3577; + this.state = 3561; this.multipleUpdateStatement(); } break; @@ -18813,30 +18737,30 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3580; + this.state = 3564; this.rowValuesList(); - this.state = 3584; + this.state = 3568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 3581; + this.state = 3565; this.match(MySqlParser.KW_ORDER); - this.state = 3582; + this.state = 3566; this.match(MySqlParser.KW_BY); - this.state = 3583; + this.state = 3567; this.indexColumnName(); } break; } - this.state = 3588; + this.state = 3572; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 481, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: { - this.state = 3586; + this.state = 3570; this.match(MySqlParser.KW_LIMIT); - this.state = 3587; + this.state = 3571; this.limitClauseAtom(); } break; @@ -18864,15 +18788,15 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3590; + this.state = 3574; this.queryBlock(); - this.state = 3595; + this.state = 3579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 59 || _la === 181 || _la === 828) { { { - this.state = 3591; + this.state = 3575; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 181 || _la === 828)) { this.errorHandler.recoverInline(this); @@ -18881,40 +18805,40 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3592; + this.state = 3576; this.queryBlock(); } } - this.state = 3597; + this.state = 3581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3599; + this.state = 3583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 483, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { case 1: { - this.state = 3598; + this.state = 3582; this.orderByClause(); } break; } - this.state = 3602; + this.state = 3586; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 481, this.context) ) { case 1: { - this.state = 3601; + this.state = 3585; this.limitClause(); } break; } - this.state = 3605; + this.state = 3589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3604; + this.state = 3588; this.intoClause(); } } @@ -18939,28 +18863,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new QueryBlockContext(this.context, this.state); this.enterRule(localContext, 220, MySqlParser.RULE_queryBlock); try { - this.state = 3610; + this.state = 3594; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3607; + this.state = 3591; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3608; + this.state = 3592; this.tableStatement(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3609; + this.state = 3593; this.valuesStatement(); } break; @@ -18986,36 +18910,36 @@ export class MySqlParser extends antlr.Parser { let localContext = new ReplaceStatementValuesOrSelectOrTableContext(this.context, this.state); this.enterRule(localContext, 222, MySqlParser.RULE_replaceStatementValuesOrSelectOrTable); try { - this.state = 3617; + this.state = 3601; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3612; + this.state = 3596; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3613; + this.state = 3597; this.match(MySqlParser.KW_TABLE); - this.state = 3614; + this.state = 3598; this.tableName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3615; + this.state = 3599; this.valuesOrValueList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3616; + this.state = 3600; this.rowValuesList(); } break; @@ -19042,31 +18966,31 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3619; + this.state = 3603; this.match(MySqlParser.KW_VALUES); - this.state = 3620; + this.state = 3604; this.match(MySqlParser.KW_ROW); - this.state = 3621; + this.state = 3605; this.expressionsWithDefaults(); - this.state = 3627; + this.state = 3611; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3622; + this.state = 3606; this.match(MySqlParser.COMMA); - this.state = 3623; + this.state = 3607; this.match(MySqlParser.KW_ROW); - this.state = 3624; + this.state = 3608; this.expressionsWithDefaults(); } } } - this.state = 3629; + this.state = 3613; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); } } } @@ -19091,24 +19015,24 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3630; + this.state = 3614; this.match(MySqlParser.KW_SET); - this.state = 3631; + this.state = 3615; localContext._setFirst = this.updatedElement(); - this.state = 3636; + this.state = 3620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3632; + this.state = 3616; this.match(MySqlParser.COMMA); - this.state = 3633; + this.state = 3617; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3638; + this.state = 3622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19134,11 +19058,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3639; + this.state = 3623; this.columnName(); - this.state = 3640; + this.state = 3624; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3641; + this.state = 3625; this.expressionOrDefault(); } } @@ -19160,7 +19084,7 @@ export class MySqlParser extends antlr.Parser { let localContext = new AssignmentFieldContext(this.context, this.state); this.enterRule(localContext, 230, MySqlParser.RULE_assignmentField); try { - this.state = 3645; + this.state = 3629; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -19713,14 +19637,14 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 3643; + this.state = 3627; localContext._var_name = this.uid(); } break; case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 3644; + this.state = 3628; this.match(MySqlParser.LOCAL_ID); } break; @@ -19748,15 +19672,15 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3668; + this.state = 3652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3647; + this.state = 3631; this.match(MySqlParser.KW_FOR); - this.state = 3648; + this.state = 3632; _la = this.tokenStream.LA(1); if(!(_la === 185 || _la === 594)) { this.errorHandler.recoverInline(this); @@ -19765,42 +19689,42 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3658; + this.state = 3642; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3649; + this.state = 3633; this.match(MySqlParser.KW_OF); - this.state = 3650; + this.state = 3634; this.tableName(); - this.state = 3655; + this.state = 3639; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 491, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3651; + this.state = 3635; this.match(MySqlParser.COMMA); - this.state = 3652; + this.state = 3636; this.tableName(); } } } - this.state = 3657; + this.state = 3641; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 491, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); } } break; } - this.state = 3662; + this.state = 3646; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { case 1: { - this.state = 3660; + this.state = 3644; _la = this.tokenStream.LA(1); if(!(_la === 159 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -19809,7 +19733,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3661; + this.state = 3645; this.match(MySqlParser.KW_LOCKED); } break; @@ -19819,13 +19743,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_LOCK: this.enterOuterAlt(localContext, 2); { - this.state = 3664; + this.state = 3648; this.match(MySqlParser.KW_LOCK); - this.state = 3665; + this.state = 3649; this.match(MySqlParser.KW_IN); - this.state = 3666; + this.state = 3650; this.match(MySqlParser.KW_SHARE); - this.state = 3667; + this.state = 3651; this.match(MySqlParser.KW_MODE); } break; @@ -19854,108 +19778,108 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3670; + this.state = 3654; this.match(MySqlParser.KW_DELETE); - this.state = 3672; + this.state = 3656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3671; + this.state = 3655; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3675; + this.state = 3659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 3674; + this.state = 3658; this.match(MySqlParser.KW_QUICK); } } - this.state = 3678; + this.state = 3662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3677; + this.state = 3661; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3680; + this.state = 3664; this.match(MySqlParser.KW_FROM); - this.state = 3681; + this.state = 3665; this.tableName(); - this.state = 3686; + this.state = 3670; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: { - this.state = 3683; + this.state = 3667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3682; + this.state = 3666; this.match(MySqlParser.KW_AS); } } - this.state = 3685; + this.state = 3669; localContext._table_alias = this.uid(); } break; } - this.state = 3693; + this.state = 3677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3688; + this.state = 3672; this.match(MySqlParser.KW_PARTITION); - this.state = 3689; + this.state = 3673; this.match(MySqlParser.LR_BRACKET); - this.state = 3690; + this.state = 3674; this.partitionNames(); - this.state = 3691; + this.state = 3675; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3697; + this.state = 3681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3695; + this.state = 3679; this.match(MySqlParser.KW_WHERE); - this.state = 3696; + this.state = 3680; this.expression(0); } } - this.state = 3700; + this.state = 3684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3699; + this.state = 3683; this.orderByClause(); } } - this.state = 3704; + this.state = 3688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3702; + this.state = 3686; this.match(MySqlParser.KW_LIMIT); - this.state = 3703; + this.state = 3687; this.limitClauseAtom(); } } @@ -19983,39 +19907,39 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3706; + this.state = 3690; this.match(MySqlParser.KW_DELETE); - this.state = 3708; + this.state = 3692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3707; + this.state = 3691; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3711; + this.state = 3695; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: { - this.state = 3710; + this.state = 3694; this.match(MySqlParser.KW_QUICK); } break; } - this.state = 3714; + this.state = 3698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3713; + this.state = 3697; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3755; + this.state = 3739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -20567,117 +20491,117 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3716; + this.state = 3700; this.tableName(); - this.state = 3719; + this.state = 3703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3717; + this.state = 3701; this.match(MySqlParser.DOT); - this.state = 3718; + this.state = 3702; this.match(MySqlParser.STAR); } } - this.state = 3729; + this.state = 3713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3721; + this.state = 3705; this.match(MySqlParser.COMMA); - this.state = 3722; + this.state = 3706; this.tableName(); - this.state = 3725; + this.state = 3709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3723; + this.state = 3707; this.match(MySqlParser.DOT); - this.state = 3724; + this.state = 3708; this.match(MySqlParser.STAR); } } } } - this.state = 3731; + this.state = 3715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3732; + this.state = 3716; this.match(MySqlParser.KW_FROM); - this.state = 3733; + this.state = 3717; this.tableSources(); } break; case MySqlParser.KW_FROM: { - this.state = 3735; + this.state = 3719; this.match(MySqlParser.KW_FROM); - this.state = 3736; + this.state = 3720; this.tableName(); - this.state = 3739; + this.state = 3723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3737; + this.state = 3721; this.match(MySqlParser.DOT); - this.state = 3738; + this.state = 3722; this.match(MySqlParser.STAR); } } - this.state = 3749; + this.state = 3733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3741; + this.state = 3725; this.match(MySqlParser.COMMA); - this.state = 3742; + this.state = 3726; this.tableName(); - this.state = 3745; + this.state = 3729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3743; + this.state = 3727; this.match(MySqlParser.DOT); - this.state = 3744; + this.state = 3728; this.match(MySqlParser.STAR); } } } } - this.state = 3751; + this.state = 3735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3752; + this.state = 3736; this.match(MySqlParser.KW_USING); - this.state = 3753; + this.state = 3737; this.tableSources(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3759; + this.state = 3743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3757; + this.state = 3741; this.match(MySqlParser.KW_WHERE); - this.state = 3758; + this.state = 3742; this.expression(0); } } @@ -20705,28 +20629,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3761; + this.state = 3745; this.match(MySqlParser.KW_HANDLER); - this.state = 3762; + this.state = 3746; this.tableName(); - this.state = 3763; + this.state = 3747; this.match(MySqlParser.KW_OPEN); - this.state = 3768; + this.state = 3752; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 3765; + this.state = 3749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3764; + this.state = 3748; this.match(MySqlParser.KW_AS); } } - this.state = 3767; + this.state = 3751; localContext._table_alias = this.uid(); } break; @@ -20754,28 +20678,28 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3770; + this.state = 3754; this.match(MySqlParser.KW_HANDLER); - this.state = 3771; + this.state = 3755; this.tableName(); - this.state = 3772; + this.state = 3756; this.match(MySqlParser.KW_READ); - this.state = 3773; + this.state = 3757; this.indexName(); - this.state = 3780; + this.state = 3764; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EQUAL_SYMBOL: case MySqlParser.GREATER_SYMBOL: case MySqlParser.LESS_SYMBOL: { - this.state = 3774; + this.state = 3758; this.comparisonBase(); - this.state = 3775; + this.state = 3759; this.match(MySqlParser.LR_BRACKET); - this.state = 3776; + this.state = 3760; this.constants(); - this.state = 3777; + this.state = 3761; this.match(MySqlParser.RR_BRACKET); } break; @@ -20784,7 +20708,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_NEXT: case MySqlParser.KW_PREV: { - this.state = 3779; + this.state = 3763; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 501 || _la === 542)) { @@ -20799,26 +20723,26 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3784; + this.state = 3768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3782; + this.state = 3766; this.match(MySqlParser.KW_WHERE); - this.state = 3783; + this.state = 3767; this.expression(0); } } - this.state = 3788; + this.state = 3772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3786; + this.state = 3770; this.match(MySqlParser.KW_LIMIT); - this.state = 3787; + this.state = 3771; this.limitClauseAtom(); } } @@ -20846,13 +20770,13 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3790; + this.state = 3774; this.match(MySqlParser.KW_HANDLER); - this.state = 3791; + this.state = 3775; this.tableName(); - this.state = 3792; + this.state = 3776; this.match(MySqlParser.KW_READ); - this.state = 3793; + this.state = 3777; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 501)) { @@ -20862,26 +20786,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3796; + this.state = 3780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3794; + this.state = 3778; this.match(MySqlParser.KW_WHERE); - this.state = 3795; + this.state = 3779; this.expression(0); } } - this.state = 3800; + this.state = 3784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3798; + this.state = 3782; this.match(MySqlParser.KW_LIMIT); - this.state = 3799; + this.state = 3783; this.limitClauseAtom(); } } @@ -20908,11 +20832,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3802; + this.state = 3786; this.match(MySqlParser.KW_HANDLER); - this.state = 3803; + this.state = 3787; this.tableName(); - this.state = 3804; + this.state = 3788; this.match(MySqlParser.KW_CLOSE); } } @@ -20937,27 +20861,27 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3806; + this.state = 3790; this.match(MySqlParser.KW_IMPORT); - this.state = 3807; + this.state = 3791; this.match(MySqlParser.KW_TABLE); - this.state = 3808; + this.state = 3792; this.match(MySqlParser.KW_FROM); - this.state = 3809; + this.state = 3793; this.stringLiteral(); - this.state = 3814; + this.state = 3798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3810; + this.state = 3794; this.match(MySqlParser.COMMA); - this.state = 3811; + this.state = 3795; this.stringLiteral(); } } - this.state = 3816; + this.state = 3800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20984,98 +20908,98 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3817; + this.state = 3801; this.match(MySqlParser.KW_UPDATE); - this.state = 3819; + this.state = 3803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3818; + this.state = 3802; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3822; + this.state = 3806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3821; + this.state = 3805; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3824; + this.state = 3808; this.tableName(); - this.state = 3829; + this.state = 3813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3826; + this.state = 3810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3825; + this.state = 3809; this.match(MySqlParser.KW_AS); } } - this.state = 3828; + this.state = 3812; localContext._table_alias = this.uid(); } } - this.state = 3831; + this.state = 3815; this.match(MySqlParser.KW_SET); - this.state = 3832; + this.state = 3816; this.updatedElement(); - this.state = 3837; + this.state = 3821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3833; + this.state = 3817; this.match(MySqlParser.COMMA); - this.state = 3834; + this.state = 3818; this.updatedElement(); } } - this.state = 3839; + this.state = 3823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3842; + this.state = 3826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3840; + this.state = 3824; this.match(MySqlParser.KW_WHERE); - this.state = 3841; + this.state = 3825; this.expression(0); } } - this.state = 3845; + this.state = 3829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3844; + this.state = 3828; this.orderByClause(); } } - this.state = 3848; + this.state = 3832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3847; + this.state = 3831; this.limitClause(); } } @@ -21103,58 +21027,58 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3850; + this.state = 3834; this.match(MySqlParser.KW_UPDATE); - this.state = 3852; + this.state = 3836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3851; + this.state = 3835; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3855; + this.state = 3839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3854; + this.state = 3838; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3857; + this.state = 3841; this.tableSources(); - this.state = 3858; + this.state = 3842; this.match(MySqlParser.KW_SET); - this.state = 3859; + this.state = 3843; this.updatedElement(); - this.state = 3864; + this.state = 3848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3860; + this.state = 3844; this.match(MySqlParser.COMMA); - this.state = 3861; + this.state = 3845; this.updatedElement(); } } - this.state = 3866; + this.state = 3850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3869; + this.state = 3853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3867; + this.state = 3851; this.match(MySqlParser.KW_WHERE); - this.state = 3868; + this.state = 3852; this.expression(0); } } @@ -21182,29 +21106,29 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3871; + this.state = 3855; this.match(MySqlParser.KW_ORDER); - this.state = 3872; + this.state = 3856; this.match(MySqlParser.KW_BY); - this.state = 3873; + this.state = 3857; this.orderByExpression(); - this.state = 3878; + this.state = 3862; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 532, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3874; + this.state = 3858; this.match(MySqlParser.COMMA); - this.state = 3875; + this.state = 3859; this.orderByExpression(); } } } - this.state = 3880; + this.state = 3864; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 532, this.context); } } } @@ -21229,14 +21153,14 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3881; + this.state = 3865; this.expression(0); - this.state = 3883; + this.state = 3867; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 536, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { case 1: { - this.state = 3882; + this.state = 3866; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -21272,25 +21196,25 @@ export class MySqlParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3885; + this.state = 3869; this.tableSource(); - this.state = 3890; + this.state = 3874; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 537, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 534, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3886; + this.state = 3870; this.match(MySqlParser.COMMA); - this.state = 3887; + this.state = 3871; this.tableSource(); } } } - this.state = 3892; + this.state = 3876; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 537, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 534, this.context); } } } @@ -21314,30 +21238,30 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3911; + this.state = 3895; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 537, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3893; + this.state = 3877; this.tableSourceItem(); - this.state = 3897; + this.state = 3881; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 538, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3894; + this.state = 3878; this.joinPart(); } } } - this.state = 3899; + this.state = 3883; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 538, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 535, this.context); } } break; @@ -21345,25 +21269,25 @@ export class MySqlParser extends antlr.Parser { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3900; + this.state = 3884; this.match(MySqlParser.LR_BRACKET); - this.state = 3901; + this.state = 3885; this.tableSourceItem(); - this.state = 3905; + this.state = 3889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 35 || ((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 536887425) !== 0) || _la === 150 || _la === 172) { { { - this.state = 3902; + this.state = 3886; this.joinPart(); } } - this.state = 3907; + this.state = 3891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3908; + this.state = 3892; this.match(MySqlParser.RR_BRACKET); } break; @@ -21371,7 +21295,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3910; + this.state = 3894; this.jsonTable(); } break; @@ -21397,75 +21321,75 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 3958; + this.state = 3942; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3913; + this.state = 3897; this.tableName(); - this.state = 3919; + this.state = 3903; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 538, this.context) ) { case 1: { - this.state = 3914; + this.state = 3898; this.match(MySqlParser.KW_PARTITION); - this.state = 3915; + this.state = 3899; this.match(MySqlParser.LR_BRACKET); - this.state = 3916; + this.state = 3900; this.partitionNames(); - this.state = 3917; + this.state = 3901; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3925; + this.state = 3909; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 543, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { case 1: { - this.state = 3922; + this.state = 3906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3921; + this.state = 3905; this.match(MySqlParser.KW_AS); } } - this.state = 3924; + this.state = 3908; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 3935; + this.state = 3919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { case 1: { - this.state = 3927; + this.state = 3911; this.indexHint(); - this.state = 3932; + this.state = 3916; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 544, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 541, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3928; + this.state = 3912; this.match(MySqlParser.COMMA); - this.state = 3929; + this.state = 3913; this.indexHint(); } } } - this.state = 3934; + this.state = 3918; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 544, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 541, this.context); } } break; @@ -21476,54 +21400,54 @@ export class MySqlParser extends antlr.Parser { localContext = new SubqueryTableItemContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3938; + this.state = 3922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 95) { { - this.state = 3937; + this.state = 3921; this.match(MySqlParser.KW_LATERAL); } } - this.state = 3945; + this.state = 3929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 3940; + this.state = 3924; this.selectStatement(); } break; case 2: { - this.state = 3941; + this.state = 3925; this.match(MySqlParser.LR_BRACKET); - this.state = 3942; + this.state = 3926; (localContext as SubqueryTableItemContext)._parenthesisSubquery = this.selectStatement(); - this.state = 3943; + this.state = 3927; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3948; + this.state = 3932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3947; + this.state = 3931; this.match(MySqlParser.KW_AS); } } - this.state = 3950; + this.state = 3934; (localContext as SubqueryTableItemContext)._alias = this.uid(); - this.state = 3952; + this.state = 3936; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 3951; + this.state = 3935; this.fullColumnNames(); } break; @@ -21534,11 +21458,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3954; + this.state = 3938; this.match(MySqlParser.LR_BRACKET); - this.state = 3955; + this.state = 3939; this.tableSources(); - this.state = 3956; + this.state = 3940; this.match(MySqlParser.RR_BRACKET); } break; @@ -21564,11 +21488,11 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3960; + this.state = 3944; this.match(MySqlParser.LR_BRACKET); - this.state = 3961; + this.state = 3945; this.columnNames(); - this.state = 3962; + this.state = 3946; this.match(MySqlParser.RR_BRACKET); } } @@ -21593,7 +21517,7 @@ export class MySqlParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3964; + this.state = 3948; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 79 || _la === 187)) { @@ -21603,7 +21527,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3965; + this.state = 3949; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -21613,31 +21537,31 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3968; + this.state = 3952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 3966; + this.state = 3950; this.match(MySqlParser.KW_FOR); - this.state = 3967; + this.state = 3951; this.indexHintType(); } } - this.state = 3970; + this.state = 3954; this.match(MySqlParser.LR_BRACKET); - this.state = 3972; + this.state = 3956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3971; + this.state = 3955; this.indexNames(); } } - this.state = 3974; + this.state = 3958; this.match(MySqlParser.RR_BRACKET); } } @@ -21659,31 +21583,31 @@ export class MySqlParser extends antlr.Parser { let localContext = new IndexHintTypeContext(this.context, this.state); this.enterRule(localContext, 266, MySqlParser.RULE_indexHintType); try { - this.state = 3981; + this.state = 3965; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3976; + this.state = 3960; this.match(MySqlParser.KW_JOIN); } break; case MySqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3977; + this.state = 3961; this.match(MySqlParser.KW_ORDER); - this.state = 3978; + this.state = 3962; this.match(MySqlParser.KW_BY); } break; case MySqlParser.KW_GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 3979; + this.state = 3963; this.match(MySqlParser.KW_GROUP); - this.state = 3980; + this.state = 3964; this.match(MySqlParser.KW_BY); } break; @@ -21711,7 +21635,7 @@ export class MySqlParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 4032; + this.state = 4016; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CROSS: @@ -21720,12 +21644,12 @@ export class MySqlParser extends antlr.Parser { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3984; + this.state = 3968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 84) { { - this.state = 3983; + this.state = 3967; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 84)) { this.errorHandler.recoverInline(this); @@ -21737,35 +21661,35 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 3986; + this.state = 3970; this.match(MySqlParser.KW_JOIN); - this.state = 3988; + this.state = 3972; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: { - this.state = 3987; + this.state = 3971; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 3990; + this.state = 3974; this.tableSourceItem(); - this.state = 3994; + this.state = 3978; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 556, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 553, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3991; + this.state = 3975; this.joinSpec(); } } } - this.state = 3996; + this.state = 3980; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 556, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 553, this.context); } } break; @@ -21773,25 +21697,25 @@ export class MySqlParser extends antlr.Parser { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3997; + this.state = 3981; this.match(MySqlParser.KW_STRAIGHT_JOIN); - this.state = 3998; + this.state = 3982; this.tableSourceItem(); - this.state = 4002; + this.state = 3986; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 557, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 554, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3999; + this.state = 3983; this.joinSpec(); } } } - this.state = 4004; + this.state = 3988; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 557, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 554, this.context); } } break; @@ -21800,7 +21724,7 @@ export class MySqlParser extends antlr.Parser { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4005; + this.state = 3989; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -21809,45 +21733,45 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4007; + this.state = 3991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4006; + this.state = 3990; this.match(MySqlParser.KW_OUTER); } } - this.state = 4009; + this.state = 3993; this.match(MySqlParser.KW_JOIN); - this.state = 4011; + this.state = 3995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4010; + this.state = 3994; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4013; + this.state = 3997; this.tableSourceItem(); - this.state = 4017; + this.state = 4001; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 560, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 557, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4014; + this.state = 3998; this.joinSpec(); } } } - this.state = 4019; + this.state = 4003; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 560, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 557, this.context); } } break; @@ -21855,26 +21779,26 @@ export class MySqlParser extends antlr.Parser { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4020; + this.state = 4004; this.match(MySqlParser.KW_NATURAL); - this.state = 4028; + this.state = 4012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84 || _la === 98 || _la === 150) { { - this.state = 4023; + this.state = 4007; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_INNER: { - this.state = 4021; + this.state = 4005; this.match(MySqlParser.KW_INNER); } break; case MySqlParser.KW_LEFT: case MySqlParser.KW_RIGHT: { - this.state = 4022; + this.state = 4006; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -21888,12 +21812,12 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4026; + this.state = 4010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4025; + this.state = 4009; this.match(MySqlParser.KW_OUTER); } } @@ -21901,9 +21825,9 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4030; + this.state = 4014; this.match(MySqlParser.KW_JOIN); - this.state = 4031; + this.state = 4015; this.tableSourceItem(); } break; @@ -21929,16 +21853,16 @@ export class MySqlParser extends antlr.Parser { let localContext = new JoinSpecContext(this.context, this.state); this.enterRule(localContext, 270, MySqlParser.RULE_joinSpec); try { - this.state = 4041; + this.state = 4025; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { { - this.state = 4034; + this.state = 4018; this.match(MySqlParser.KW_ON); - this.state = 4035; + this.state = 4019; this.expression(0); } } @@ -21946,13 +21870,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 4036; + this.state = 4020; this.match(MySqlParser.KW_USING); - this.state = 4037; + this.state = 4021; this.match(MySqlParser.LR_BRACKET); - this.state = 4038; + this.state = 4022; this.columnNames(); - this.state = 4039; + this.state = 4023; this.match(MySqlParser.RR_BRACKET); } break; @@ -21978,73 +21902,28 @@ export class MySqlParser extends antlr.Parser { let localContext = new QueryExpressionContext(this.context, this.state); this.enterRule(localContext, 272, MySqlParser.RULE_queryExpression); try { - this.state = 4051; + this.state = 4035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 566, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4043; + this.state = 4027; this.match(MySqlParser.LR_BRACKET); - this.state = 4044; + this.state = 4028; this.querySpecification(); - this.state = 4045; + this.state = 4029; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4047; + this.state = 4031; this.match(MySqlParser.LR_BRACKET); - this.state = 4048; + this.state = 4032; this.queryExpression(); - this.state = 4049; - this.match(MySqlParser.RR_BRACKET); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public queryExpressionNointo(): QueryExpressionNointoContext { - let localContext = new QueryExpressionNointoContext(this.context, this.state); - this.enterRule(localContext, 274, MySqlParser.RULE_queryExpressionNointo); - try { - this.state = 4061; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4053; - this.match(MySqlParser.LR_BRACKET); - this.state = 4054; - this.querySpecificationNointo(); - this.state = 4055; - this.match(MySqlParser.RR_BRACKET); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4057; - this.match(MySqlParser.LR_BRACKET); - this.state = 4058; - this.queryExpressionNointo(); - this.state = 4059; + this.state = 4033; this.match(MySqlParser.RR_BRACKET); } break; @@ -22066,326 +21945,103 @@ export class MySqlParser extends antlr.Parser { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 276, MySqlParser.RULE_querySpecification); - try { - let alternative: number; - this.state = 4117; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4063; - this.match(MySqlParser.KW_SELECT); - this.state = 4067; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 4064; - this.selectSpec(); - } - } - } - this.state = 4069; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); - } - this.state = 4070; - this.selectElements(); - this.state = 4072; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { - case 1: - { - this.state = 4071; - this.intoClause(); - } - break; - } - this.state = 4074; - this.fromClause(); - this.state = 4076; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { - case 1: - { - this.state = 4075; - this.groupByClause(); - } - break; - } - this.state = 4079; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { - case 1: - { - this.state = 4078; - this.havingClause(); - } - break; - } - this.state = 4082; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { - case 1: - { - this.state = 4081; - this.windowClause(); - } - break; - } - this.state = 4085; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 573, this.context) ) { - case 1: - { - this.state = 4084; - this.orderByClause(); - } - break; - } - this.state = 4088; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { - case 1: - { - this.state = 4087; - this.limitClause(); - } - break; - } - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4090; - this.match(MySqlParser.KW_SELECT); - this.state = 4094; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 4091; - this.selectSpec(); - } - } - } - this.state = 4096; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); - } - this.state = 4097; - this.selectElements(); - this.state = 4098; - this.fromClause(); - this.state = 4100; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { - case 1: - { - this.state = 4099; - this.groupByClause(); - } - break; - } - this.state = 4103; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { - case 1: - { - this.state = 4102; - this.havingClause(); - } - break; - } - this.state = 4106; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { - case 1: - { - this.state = 4105; - this.windowClause(); - } - break; - } - this.state = 4109; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { - case 1: - { - this.state = 4108; - this.orderByClause(); - } - break; - } - this.state = 4112; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { - case 1: - { - this.state = 4111; - this.limitClause(); - } - break; - } - this.state = 4115; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { - case 1: - { - this.state = 4114; - this.intoClause(); - } - break; - } - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public querySpecificationNointo(): QuerySpecificationNointoContext { - let localContext = new QuerySpecificationNointoContext(this.context, this.state); - this.enterRule(localContext, 278, MySqlParser.RULE_querySpecificationNointo); + this.enterRule(localContext, 274, MySqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4119; + this.state = 4037; this.match(MySqlParser.KW_SELECT); - this.state = 4123; + this.state = 4041; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4120; + this.state = 4038; this.selectSpec(); } } } - this.state = 4125; + this.state = 4043; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); } - this.state = 4126; + this.state = 4044; this.selectElements(); - this.state = 4127; - this.fromClause(); - this.state = 4129; + this.state = 4046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: { - this.state = 4128; + this.state = 4045; + this.intoClause(); + } + break; + } + this.state = 4048; + this.fromClause(); + this.state = 4050; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 566, this.context) ) { + case 1: + { + this.state = 4049; this.groupByClause(); } break; } - this.state = 4132; + this.state = 4053; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { case 1: { - this.state = 4131; + this.state = 4052; this.havingClause(); } break; } - this.state = 4135; + this.state = 4056; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: { - this.state = 4134; + this.state = 4055; this.windowClause(); } break; } - this.state = 4138; + this.state = 4059; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { case 1: { - this.state = 4137; + this.state = 4058; this.orderByClause(); } break; } - this.state = 4141; + this.state = 4062; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 588, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { case 1: { - this.state = 4140; + this.state = 4061; this.limitClause(); } break; } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public unionParenthesis(): UnionParenthesisContext { - let localContext = new UnionParenthesisContext(this.context, this.state); - this.enterRule(localContext, 280, MySqlParser.RULE_unionParenthesis); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4143; - this.match(MySqlParser.KW_UNION); - this.state = 4145; + this.state = 4065; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 7 || _la === 49) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { + case 1: { - this.state = 4144; - localContext._unionType = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 7 || _la === 49)) { - localContext._unionType = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 4064; + this.intoClause(); } + break; } - - this.state = 4147; - this.queryExpressionNointo(); } } catch (re) { @@ -22404,19 +22060,19 @@ export class MySqlParser extends antlr.Parser { } public unionStatement(): UnionStatementContext { let localContext = new UnionStatementContext(this.context, this.state); - this.enterRule(localContext, 282, MySqlParser.RULE_unionStatement); + this.enterRule(localContext, 276, MySqlParser.RULE_unionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4149; + this.state = 4067; this.match(MySqlParser.KW_UNION); - this.state = 4151; + this.state = 4069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 4150; + this.state = 4068; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -22429,19 +22085,19 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4155; + this.state = 4073; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4153; - this.querySpecificationNointo(); + this.state = 4071; + this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4154; - this.queryExpressionNointo(); + this.state = 4072; + this.queryExpression(); } break; default: @@ -22465,69 +22121,69 @@ export class MySqlParser extends antlr.Parser { } public lateralStatement(): LateralStatementContext { let localContext = new LateralStatementContext(this.context, this.state); - this.enterRule(localContext, 284, MySqlParser.RULE_lateralStatement); + this.enterRule(localContext, 278, MySqlParser.RULE_lateralStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4157; + this.state = 4075; this.match(MySqlParser.KW_LATERAL); - this.state = 4172; + this.state = 4090; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4158; - this.querySpecificationNointo(); + this.state = 4076; + this.querySpecification(); } break; case 2: { - this.state = 4159; - this.queryExpressionNointo(); + this.state = 4077; + this.queryExpression(); } break; case 3: { { - this.state = 4160; + this.state = 4078; this.match(MySqlParser.LR_BRACKET); - this.state = 4163; + this.state = 4081; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4161; - this.querySpecificationNointo(); + this.state = 4079; + this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4162; - this.queryExpressionNointo(); + this.state = 4080; + this.queryExpression(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4165; + this.state = 4083; this.match(MySqlParser.RR_BRACKET); - this.state = 4170; + this.state = 4088; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 4167; + this.state = 4085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4166; + this.state = 4084; this.match(MySqlParser.KW_AS); } } - this.state = 4169; + this.state = 4087; localContext._alias = this.uid(); } break; @@ -22554,47 +22210,47 @@ export class MySqlParser extends antlr.Parser { } public jsonTable(): JsonTableContext { let localContext = new JsonTableContext(this.context, this.state); - this.enterRule(localContext, 286, MySqlParser.RULE_jsonTable); + this.enterRule(localContext, 280, MySqlParser.RULE_jsonTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4174; + this.state = 4092; this.match(MySqlParser.KW_JSON_TABLE); - this.state = 4175; + this.state = 4093; this.match(MySqlParser.LR_BRACKET); - this.state = 4176; + this.state = 4094; this.match(MySqlParser.STRING_LITERAL); - this.state = 4177; + this.state = 4095; this.match(MySqlParser.COMMA); - this.state = 4178; + this.state = 4096; this.match(MySqlParser.STRING_LITERAL); - this.state = 4179; + this.state = 4097; this.match(MySqlParser.KW_COLUMNS); - this.state = 4180; + this.state = 4098; this.match(MySqlParser.LR_BRACKET); - this.state = 4181; + this.state = 4099; this.jsonColumnList(); - this.state = 4182; + this.state = 4100; this.match(MySqlParser.RR_BRACKET); - this.state = 4183; + this.state = 4101; this.match(MySqlParser.RR_BRACKET); - this.state = 4188; + this.state = 4106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4185; + this.state = 4103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4184; + this.state = 4102; this.match(MySqlParser.KW_AS); } } - this.state = 4187; + this.state = 4105; localContext._alias = this.uid(); } break; @@ -22617,26 +22273,26 @@ export class MySqlParser extends antlr.Parser { } public jsonColumnList(): JsonColumnListContext { let localContext = new JsonColumnListContext(this.context, this.state); - this.enterRule(localContext, 288, MySqlParser.RULE_jsonColumnList); + this.enterRule(localContext, 282, MySqlParser.RULE_jsonColumnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4190; + this.state = 4108; this.jsonColumn(); - this.state = 4195; + this.state = 4113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4191; + this.state = 4109; this.match(MySqlParser.COMMA); - this.state = 4192; + this.state = 4110; this.jsonColumn(); } } - this.state = 4197; + this.state = 4115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22658,25 +22314,25 @@ export class MySqlParser extends antlr.Parser { } public jsonColumn(): JsonColumnContext { let localContext = new JsonColumnContext(this.context, this.state); - this.enterRule(localContext, 290, MySqlParser.RULE_jsonColumn); + this.enterRule(localContext, 284, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4227; + this.state = 4145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4198; + this.state = 4116; this.columnName(); - this.state = 4215; + this.state = 4133; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: { - this.state = 4199; + this.state = 4117; this.match(MySqlParser.KW_FOR); - this.state = 4200; + this.state = 4118; this.match(MySqlParser.KW_ORDINALITY); } break; @@ -22740,33 +22396,33 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_POINT: case MySqlParser.KW_POLYGON: { - this.state = 4201; + this.state = 4119; this.dataType(); - this.state = 4213; + this.state = 4131; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PATH: { - this.state = 4202; + this.state = 4120; this.match(MySqlParser.KW_PATH); - this.state = 4203; + this.state = 4121; this.match(MySqlParser.STRING_LITERAL); - this.state = 4205; + this.state = 4123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 4204; + this.state = 4122; this.jsonOnEmpty(); } break; } - this.state = 4208; + this.state = 4126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 4207; + this.state = 4125; this.jsonOnError(); } } @@ -22775,11 +22431,11 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_EXISTS: { - this.state = 4210; + this.state = 4128; this.match(MySqlParser.KW_EXISTS); - this.state = 4211; + this.state = 4129; this.match(MySqlParser.KW_PATH); - this.state = 4212; + this.state = 4130; this.match(MySqlParser.STRING_LITERAL); } break; @@ -22796,27 +22452,27 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4217; + this.state = 4135; this.match(MySqlParser.KW_NESTED); - this.state = 4219; + this.state = 4137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 4218; + this.state = 4136; this.match(MySqlParser.KW_PATH); } } - this.state = 4221; + this.state = 4139; this.match(MySqlParser.STRING_LITERAL); - this.state = 4222; + this.state = 4140; this.match(MySqlParser.KW_COLUMNS); - this.state = 4223; + this.state = 4141; this.match(MySqlParser.LR_BRACKET); - this.state = 4224; + this.state = 4142; this.jsonColumnList(); - this.state = 4225; + this.state = 4143; this.match(MySqlParser.RR_BRACKET); } break; @@ -22838,39 +22494,39 @@ export class MySqlParser extends antlr.Parser { } public jsonOnEmpty(): JsonOnEmptyContext { let localContext = new JsonOnEmptyContext(this.context, this.state); - this.enterRule(localContext, 292, MySqlParser.RULE_jsonOnEmpty); + this.enterRule(localContext, 286, MySqlParser.RULE_jsonOnEmpty); try { this.enterOuterAlt(localContext, 1); { - this.state = 4233; + this.state = 4151; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4229; + this.state = 4147; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4230; + this.state = 4148; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4231; + this.state = 4149; this.match(MySqlParser.KW_DEFAULT); - this.state = 4232; + this.state = 4150; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4235; + this.state = 4153; this.match(MySqlParser.KW_ON); - this.state = 4236; + this.state = 4154; this.match(MySqlParser.KW_EMPTY); } } @@ -22890,39 +22546,39 @@ export class MySqlParser extends antlr.Parser { } public jsonOnError(): JsonOnErrorContext { let localContext = new JsonOnErrorContext(this.context, this.state); - this.enterRule(localContext, 294, MySqlParser.RULE_jsonOnError); + this.enterRule(localContext, 288, MySqlParser.RULE_jsonOnError); try { this.enterOuterAlt(localContext, 1); { - this.state = 4242; + this.state = 4160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4238; + this.state = 4156; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4239; + this.state = 4157; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4240; + this.state = 4158; this.match(MySqlParser.KW_DEFAULT); - this.state = 4241; + this.state = 4159; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4244; + this.state = 4162; this.match(MySqlParser.KW_ON); - this.state = 4245; + this.state = 4163; this.match(MySqlParser.KW_ERROR); } } @@ -22942,10 +22598,10 @@ export class MySqlParser extends antlr.Parser { } public selectSpec(): SelectSpecContext { let localContext = new SelectSpecContext(this.context, this.state); - this.enterRule(localContext, 296, MySqlParser.RULE_selectSpec); + this.enterRule(localContext, 290, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4255; + this.state = 4173; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: @@ -22953,7 +22609,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4247; + this.state = 4165; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -22967,35 +22623,35 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4248; + this.state = 4166; this.match(MySqlParser.KW_HIGH_PRIORITY); } break; case MySqlParser.KW_STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4249; + this.state = 4167; this.match(MySqlParser.KW_STRAIGHT_JOIN); } break; case MySqlParser.KW_SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4250; + this.state = 4168; this.match(MySqlParser.KW_SQL_SMALL_RESULT); } break; case MySqlParser.KW_SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4251; + this.state = 4169; this.match(MySqlParser.KW_SQL_BIG_RESULT); } break; case MySqlParser.KW_SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4252; + this.state = 4170; this.match(MySqlParser.KW_SQL_BUFFER_RESULT); } break; @@ -23003,7 +22659,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4253; + this.state = 4171; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 638)) { this.errorHandler.recoverInline(this); @@ -23017,7 +22673,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4254; + this.state = 4172; this.match(MySqlParser.KW_SQL_CALC_FOUND_ROWS); } break; @@ -23041,44 +22697,44 @@ export class MySqlParser extends antlr.Parser { } public selectElements(): SelectElementsContext { let localContext = new SelectElementsContext(this.context, this.state); - this.enterRule(localContext, 298, MySqlParser.RULE_selectElements); + this.enterRule(localContext, 292, MySqlParser.RULE_selectElements); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4259; + this.state = 4177; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { case 1: { - this.state = 4257; + this.state = 4175; localContext._star = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 4258; + this.state = 4176; this.selectElement(); } break; } - this.state = 4265; + this.state = 4183; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 609, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4261; + this.state = 4179; this.match(MySqlParser.COMMA); - this.state = 4262; + this.state = 4180; this.selectElement(); } } } - this.state = 4267; + this.state = 4185; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 609, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 591, this.context); } } } @@ -23098,115 +22754,115 @@ export class MySqlParser extends antlr.Parser { } public selectElement(): SelectElementContext { let localContext = new SelectElementContext(this.context, this.state); - this.enterRule(localContext, 300, MySqlParser.RULE_selectElement); + this.enterRule(localContext, 294, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4297; + this.state = 4215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: - localContext = new SelectStarElementContext(localContext); + localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4268; - (localContext as SelectStarElementContext)._select_element = this.fullId(); - this.state = 4269; - this.match(MySqlParser.DOT); - this.state = 4270; - this.match(MySqlParser.STAR); - } - break; - case 2: - localContext = new SelectColumnElementContext(localContext); - this.enterOuterAlt(localContext, 2); - { - this.state = 4272; - this.columnName(); - this.state = 4277; + this.state = 4188; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { case 1: { - this.state = 4274; + this.state = 4186; + this.match(MySqlParser.LOCAL_ID); + this.state = 4187; + this.match(MySqlParser.VAR_ASSIGN); + } + break; + } + this.state = 4190; + this.expression(0); + this.state = 4195; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { + case 1: + { + this.state = 4192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4273; + this.state = 4191; this.match(MySqlParser.KW_AS); } } - this.state = 4276; - (localContext as SelectColumnElementContext)._alias = this.uid(); + this.state = 4194; + (localContext as SelectExpressionElementContext)._alias = this.uid(); } break; } } break; - case 3: + case 2: localContext = new SelectFunctionElementContext(localContext); - this.enterOuterAlt(localContext, 3); + this.enterOuterAlt(localContext, 2); { - this.state = 4279; + this.state = 4197; this.functionCall(); - this.state = 4284; + this.state = 4202; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 596, this.context) ) { case 1: { - this.state = 4281; + this.state = 4199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4280; + this.state = 4198; this.match(MySqlParser.KW_AS); } } - this.state = 4283; + this.state = 4201; (localContext as SelectFunctionElementContext)._alias = this.uid(); } break; } } break; + case 3: + localContext = new SelectStarElementContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 4204; + (localContext as SelectStarElementContext)._select_element = this.fullId(); + this.state = 4205; + this.match(MySqlParser.DOT); + this.state = 4206; + this.match(MySqlParser.STAR); + } + break; case 4: - localContext = new SelectExpressionElementContext(localContext); + localContext = new SelectColumnElementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4288; + this.state = 4208; + this.columnName(); + this.state = 4213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 4286; - this.match(MySqlParser.LOCAL_ID); - this.state = 4287; - this.match(MySqlParser.VAR_ASSIGN); - } - break; - } - this.state = 4290; - this.expression(0); - this.state = 4295; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { - case 1: - { - this.state = 4292; + this.state = 4210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4291; + this.state = 4209; this.match(MySqlParser.KW_AS); } } - this.state = 4294; - (localContext as SelectExpressionElementContext)._alias = this.uid(); + this.state = 4212; + (localContext as SelectColumnElementContext)._alias = this.uid(); } break; } @@ -23230,38 +22886,38 @@ export class MySqlParser extends antlr.Parser { } public intoClause(): IntoClauseContext { let localContext = new IntoClauseContext(this.context, this.state); - this.enterRule(localContext, 302, MySqlParser.RULE_intoClause); + this.enterRule(localContext, 296, MySqlParser.RULE_intoClause); let _la: number; try { let alternative: number; - this.state = 4335; + this.state = 4253; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4299; + this.state = 4217; this.match(MySqlParser.KW_INTO); - this.state = 4300; + this.state = 4218; this.assignmentField(); - this.state = 4305; + this.state = 4223; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 618, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4301; + this.state = 4219; this.match(MySqlParser.COMMA); - this.state = 4302; + this.state = 4220; this.assignmentField(); } } } - this.state = 4307; + this.state = 4225; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 618, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); } } break; @@ -23269,11 +22925,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4308; + this.state = 4226; this.match(MySqlParser.KW_INTO); - this.state = 4309; + this.state = 4227; this.match(MySqlParser.KW_DUMPFILE); - this.state = 4310; + this.state = 4228; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23282,32 +22938,32 @@ export class MySqlParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 4311; + this.state = 4229; this.match(MySqlParser.KW_INTO); - this.state = 4312; + this.state = 4230; this.match(MySqlParser.KW_OUTFILE); - this.state = 4313; + this.state = 4231; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4317; + this.state = 4235; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 619, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { case 1: { - this.state = 4314; + this.state = 4232; this.match(MySqlParser.KW_CHARACTER); - this.state = 4315; + this.state = 4233; this.match(MySqlParser.KW_SET); - this.state = 4316; + this.state = 4234; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } break; } - this.state = 4325; + this.state = 4243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: { - this.state = 4319; + this.state = 4237; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -23317,7 +22973,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4321; + this.state = 4239; this.errorHandler.sync(this); alternative = 1; do { @@ -23325,7 +22981,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4320; + this.state = 4238; this.selectFieldsInto(); } } @@ -23333,21 +22989,21 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4323; + this.state = 4241; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 620, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 602, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 4333; + this.state = 4251; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { case 1: { - this.state = 4327; + this.state = 4245; this.match(MySqlParser.KW_LINES); - this.state = 4329; + this.state = 4247; this.errorHandler.sync(this); alternative = 1; do { @@ -23355,7 +23011,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 4328; + this.state = 4246; this.selectLinesInto(); } } @@ -23363,9 +23019,9 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4331; + this.state = 4249; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -23391,20 +23047,20 @@ export class MySqlParser extends antlr.Parser { } public selectFieldsInto(): SelectFieldsIntoContext { let localContext = new SelectFieldsIntoContext(this.context, this.state); - this.enterRule(localContext, 304, MySqlParser.RULE_selectFieldsInto); + this.enterRule(localContext, 298, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4349; + this.state = 4267; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4337; + this.state = 4255; this.match(MySqlParser.KW_TERMINATED); - this.state = 4338; + this.state = 4256; this.match(MySqlParser.KW_BY); - this.state = 4339; + this.state = 4257; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23412,32 +23068,32 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4341; + this.state = 4259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 4340; + this.state = 4258; this.match(MySqlParser.KW_OPTIONALLY); } } - this.state = 4343; + this.state = 4261; this.match(MySqlParser.KW_ENCLOSED); - this.state = 4344; + this.state = 4262; this.match(MySqlParser.KW_BY); - this.state = 4345; + this.state = 4263; localContext._enclosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4346; + this.state = 4264; this.match(MySqlParser.KW_ESCAPED); - this.state = 4347; + this.state = 4265; this.match(MySqlParser.KW_BY); - this.state = 4348; + this.state = 4266; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23461,30 +23117,30 @@ export class MySqlParser extends antlr.Parser { } public selectLinesInto(): SelectLinesIntoContext { let localContext = new SelectLinesIntoContext(this.context, this.state); - this.enterRule(localContext, 306, MySqlParser.RULE_selectLinesInto); + this.enterRule(localContext, 300, MySqlParser.RULE_selectLinesInto); try { - this.state = 4357; + this.state = 4275; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4351; + this.state = 4269; this.match(MySqlParser.KW_STARTING); - this.state = 4352; + this.state = 4270; this.match(MySqlParser.KW_BY); - this.state = 4353; + this.state = 4271; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4354; + this.state = 4272; this.match(MySqlParser.KW_TERMINATED); - this.state = 4355; + this.state = 4273; this.match(MySqlParser.KW_BY); - this.state = 4356; + this.state = 4274; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23508,30 +23164,30 @@ export class MySqlParser extends antlr.Parser { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 308, MySqlParser.RULE_fromClause); + this.enterRule(localContext, 302, MySqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4361; + this.state = 4279; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4359; + this.state = 4277; this.match(MySqlParser.KW_FROM); - this.state = 4360; + this.state = 4278; this.tableSources(); } break; } - this.state = 4365; + this.state = 4283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: { - this.state = 4363; + this.state = 4281; this.match(MySqlParser.KW_WHERE); - this.state = 4364; + this.state = 4282; localContext._whereExpr = this.expression(0); } break; @@ -23554,43 +23210,43 @@ export class MySqlParser extends antlr.Parser { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 310, MySqlParser.RULE_groupByClause); + this.enterRule(localContext, 304, MySqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4367; + this.state = 4285; this.match(MySqlParser.KW_GROUP); - this.state = 4368; + this.state = 4286; this.match(MySqlParser.KW_BY); - this.state = 4369; + this.state = 4287; this.groupByItem(); - this.state = 4374; + this.state = 4292; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 630, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4370; + this.state = 4288; this.match(MySqlParser.COMMA); - this.state = 4371; + this.state = 4289; this.groupByItem(); } } } - this.state = 4376; + this.state = 4294; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 630, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); } - this.state = 4379; + this.state = 4297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { case 1: { - this.state = 4377; + this.state = 4295; this.match(MySqlParser.KW_WITH); - this.state = 4378; + this.state = 4296; this.match(MySqlParser.KW_ROLLUP); } break; @@ -23613,13 +23269,13 @@ export class MySqlParser extends antlr.Parser { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 312, MySqlParser.RULE_havingClause); + this.enterRule(localContext, 306, MySqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4381; + this.state = 4299; this.match(MySqlParser.KW_HAVING); - this.state = 4382; + this.state = 4300; localContext._havingExpr = this.expression(0); } } @@ -23639,48 +23295,48 @@ export class MySqlParser extends antlr.Parser { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 314, MySqlParser.RULE_windowClause); + this.enterRule(localContext, 308, MySqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4384; + this.state = 4302; this.match(MySqlParser.KW_WINDOW); - this.state = 4385; + this.state = 4303; this.windowName(); - this.state = 4386; + this.state = 4304; this.match(MySqlParser.KW_AS); - this.state = 4387; + this.state = 4305; this.match(MySqlParser.LR_BRACKET); - this.state = 4388; + this.state = 4306; this.windowSpec(); - this.state = 4389; + this.state = 4307; this.match(MySqlParser.RR_BRACKET); - this.state = 4399; + this.state = 4317; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 632, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4390; + this.state = 4308; this.match(MySqlParser.COMMA); - this.state = 4391; + this.state = 4309; this.windowName(); - this.state = 4392; + this.state = 4310; this.match(MySqlParser.KW_AS); - this.state = 4393; + this.state = 4311; this.match(MySqlParser.LR_BRACKET); - this.state = 4394; + this.state = 4312; this.windowSpec(); - this.state = 4395; + this.state = 4313; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4401; + this.state = 4319; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 632, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); } } } @@ -23700,19 +23356,19 @@ export class MySqlParser extends antlr.Parser { } public groupByItem(): GroupByItemContext { let localContext = new GroupByItemContext(this.context, this.state); - this.enterRule(localContext, 316, MySqlParser.RULE_groupByItem); + this.enterRule(localContext, 310, MySqlParser.RULE_groupByItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4402; + this.state = 4320; this.expression(0); - this.state = 4404; + this.state = 4322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 4403; + this.state = 4321; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -23743,40 +23399,40 @@ export class MySqlParser extends antlr.Parser { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 318, MySqlParser.RULE_limitClause); + this.enterRule(localContext, 312, MySqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4406; + this.state = 4324; this.match(MySqlParser.KW_LIMIT); - this.state = 4417; + this.state = 4335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4410; + this.state = 4328; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4407; + this.state = 4325; localContext._offset = this.limitClauseAtom(); - this.state = 4408; + this.state = 4326; this.match(MySqlParser.COMMA); } break; } - this.state = 4412; + this.state = 4330; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4413; + this.state = 4331; localContext._limit = this.limitClauseAtom(); - this.state = 4414; + this.state = 4332; this.match(MySqlParser.KW_OFFSET); - this.state = 4415; + this.state = 4333; localContext._offset = this.limitClauseAtom(); } break; @@ -23799,9 +23455,9 @@ export class MySqlParser extends antlr.Parser { } public limitClauseAtom(): LimitClauseAtomContext { let localContext = new LimitClauseAtomContext(this.context, this.state); - this.enterRule(localContext, 320, MySqlParser.RULE_limitClauseAtom); + this.enterRule(localContext, 314, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4422; + this.state = 4340; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -23812,7 +23468,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4419; + this.state = 4337; this.decimalLiteral(); } break; @@ -23820,7 +23476,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4420; + this.state = 4338; this.mysqlVariable(); } break; @@ -24372,7 +24028,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4421; + this.state = 4339; this.simpleId(); } break; @@ -24396,35 +24052,35 @@ export class MySqlParser extends antlr.Parser { } public startTransaction(): StartTransactionContext { let localContext = new StartTransactionContext(this.context, this.state); - this.enterRule(localContext, 322, MySqlParser.RULE_startTransaction); + this.enterRule(localContext, 316, MySqlParser.RULE_startTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4424; + this.state = 4342; this.match(MySqlParser.KW_START); - this.state = 4425; + this.state = 4343; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4434; + this.state = 4352; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 638, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 4426; + this.state = 4344; this.transactionMode(); - this.state = 4431; + this.state = 4349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4427; + this.state = 4345; this.match(MySqlParser.COMMA); - this.state = 4428; + this.state = 4346; this.transactionMode(); } } - this.state = 4433; + this.state = 4351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24449,19 +24105,19 @@ export class MySqlParser extends antlr.Parser { } public beginWork(): BeginWorkContext { let localContext = new BeginWorkContext(this.context, this.state); - this.enterRule(localContext, 324, MySqlParser.RULE_beginWork); + this.enterRule(localContext, 318, MySqlParser.RULE_beginWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4436; + this.state = 4354; this.match(MySqlParser.KW_BEGIN); - this.state = 4438; + this.state = 4356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4437; + this.state = 4355; this.match(MySqlParser.KW_WORK); } } @@ -24484,61 +24140,61 @@ export class MySqlParser extends antlr.Parser { } public commitWork(): CommitWorkContext { let localContext = new CommitWorkContext(this.context, this.state); - this.enterRule(localContext, 326, MySqlParser.RULE_commitWork); + this.enterRule(localContext, 320, MySqlParser.RULE_commitWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4440; + this.state = 4358; this.match(MySqlParser.KW_COMMIT); - this.state = 4442; + this.state = 4360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4441; + this.state = 4359; this.match(MySqlParser.KW_WORK); } } - this.state = 4449; + this.state = 4367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4444; + this.state = 4362; this.match(MySqlParser.KW_AND); - this.state = 4446; + this.state = 4364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4445; + this.state = 4363; localContext._nochain = this.match(MySqlParser.KW_NO); } } - this.state = 4448; + this.state = 4366; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4455; + this.state = 4373; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 4452; + this.state = 4370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4451; + this.state = 4369; localContext._norelease = this.match(MySqlParser.KW_NO); } } - this.state = 4454; + this.state = 4372; this.match(MySqlParser.KW_RELEASE); } break; @@ -24561,61 +24217,61 @@ export class MySqlParser extends antlr.Parser { } public rollbackWork(): RollbackWorkContext { let localContext = new RollbackWorkContext(this.context, this.state); - this.enterRule(localContext, 328, MySqlParser.RULE_rollbackWork); + this.enterRule(localContext, 322, MySqlParser.RULE_rollbackWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4457; + this.state = 4375; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4459; + this.state = 4377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4458; + this.state = 4376; this.match(MySqlParser.KW_WORK); } } - this.state = 4466; + this.state = 4384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4461; + this.state = 4379; this.match(MySqlParser.KW_AND); - this.state = 4463; + this.state = 4381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4462; + this.state = 4380; localContext._nochain = this.match(MySqlParser.KW_NO); } } - this.state = 4465; + this.state = 4383; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4472; + this.state = 4390; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { case 1: { - this.state = 4469; + this.state = 4387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4468; + this.state = 4386; localContext._norelease = this.match(MySqlParser.KW_NO); } } - this.state = 4471; + this.state = 4389; this.match(MySqlParser.KW_RELEASE); } break; @@ -24638,13 +24294,13 @@ export class MySqlParser extends antlr.Parser { } public savepointStatement(): SavepointStatementContext { let localContext = new SavepointStatementContext(this.context, this.state); - this.enterRule(localContext, 330, MySqlParser.RULE_savepointStatement); + this.enterRule(localContext, 324, MySqlParser.RULE_savepointStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4474; + this.state = 4392; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4475; + this.state = 4393; localContext._identifier = this.uid(); } } @@ -24664,36 +24320,36 @@ export class MySqlParser extends antlr.Parser { } public rollbackStatement(): RollbackStatementContext { let localContext = new RollbackStatementContext(this.context, this.state); - this.enterRule(localContext, 332, MySqlParser.RULE_rollbackStatement); + this.enterRule(localContext, 326, MySqlParser.RULE_rollbackStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4477; + this.state = 4395; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4479; + this.state = 4397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4478; + this.state = 4396; this.match(MySqlParser.KW_WORK); } } - this.state = 4481; + this.state = 4399; this.match(MySqlParser.KW_TO); - this.state = 4483; + this.state = 4401; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: { - this.state = 4482; + this.state = 4400; this.match(MySqlParser.KW_SAVEPOINT); } break; } - this.state = 4485; + this.state = 4403; localContext._identifier = this.uid(); } } @@ -24713,15 +24369,15 @@ export class MySqlParser extends antlr.Parser { } public releaseStatement(): ReleaseStatementContext { let localContext = new ReleaseStatementContext(this.context, this.state); - this.enterRule(localContext, 334, MySqlParser.RULE_releaseStatement); + this.enterRule(localContext, 328, MySqlParser.RULE_releaseStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4487; + this.state = 4405; this.match(MySqlParser.KW_RELEASE); - this.state = 4488; + this.state = 4406; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4489; + this.state = 4407; localContext._identifier = this.uid(); } } @@ -24741,14 +24397,14 @@ export class MySqlParser extends antlr.Parser { } public lockTables(): LockTablesContext { let localContext = new LockTablesContext(this.context, this.state); - this.enterRule(localContext, 336, MySqlParser.RULE_lockTables); + this.enterRule(localContext, 330, MySqlParser.RULE_lockTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4491; + this.state = 4409; this.match(MySqlParser.KW_LOCK); - this.state = 4492; + this.state = 4410; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -24757,21 +24413,21 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4493; + this.state = 4411; this.lockTableElement(); - this.state = 4498; + this.state = 4416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4494; + this.state = 4412; this.match(MySqlParser.COMMA); - this.state = 4495; + this.state = 4413; this.lockTableElement(); } } - this.state = 4500; + this.state = 4418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24793,13 +24449,13 @@ export class MySqlParser extends antlr.Parser { } public unlockTables(): UnlockTablesContext { let localContext = new UnlockTablesContext(this.context, this.state); - this.enterRule(localContext, 338, MySqlParser.RULE_unlockTables); + this.enterRule(localContext, 332, MySqlParser.RULE_unlockTables); try { this.enterOuterAlt(localContext, 1); { - this.state = 4501; + this.state = 4419; this.match(MySqlParser.KW_UNLOCK); - this.state = 4502; + this.state = 4420; this.match(MySqlParser.KW_TABLES); } } @@ -24819,18 +24475,18 @@ export class MySqlParser extends antlr.Parser { } public setAutocommitStatement(): SetAutocommitStatementContext { let localContext = new SetAutocommitStatementContext(this.context, this.state); - this.enterRule(localContext, 340, MySqlParser.RULE_setAutocommitStatement); + this.enterRule(localContext, 334, MySqlParser.RULE_setAutocommitStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4504; + this.state = 4422; this.match(MySqlParser.KW_SET); - this.state = 4505; + this.state = 4423; this.match(MySqlParser.KW_AUTOCOMMIT); - this.state = 4506; + this.state = 4424; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4507; + this.state = 4425; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -24858,19 +24514,19 @@ export class MySqlParser extends antlr.Parser { } public setTransactionStatement(): SetTransactionStatementContext { let localContext = new SetTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 342, MySqlParser.RULE_setTransactionStatement); + this.enterRule(localContext, 336, MySqlParser.RULE_setTransactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4509; + this.state = 4427; this.match(MySqlParser.KW_SET); - this.state = 4511; + this.state = 4429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 4510; + this.state = 4428; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { @@ -24883,23 +24539,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 4513; + this.state = 4431; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4514; + this.state = 4432; this.transactionOption(); - this.state = 4519; + this.state = 4437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4515; + this.state = 4433; this.match(MySqlParser.COMMA); - this.state = 4516; + this.state = 4434; this.transactionOption(); } } - this.state = 4521; + this.state = 4439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24921,37 +24577,37 @@ export class MySqlParser extends antlr.Parser { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 344, MySqlParser.RULE_transactionMode); + this.enterRule(localContext, 338, MySqlParser.RULE_transactionMode); try { - this.state = 4529; + this.state = 4447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4522; + this.state = 4440; this.match(MySqlParser.KW_WITH); - this.state = 4523; + this.state = 4441; this.match(MySqlParser.KW_CONSISTENT); - this.state = 4524; + this.state = 4442; this.match(MySqlParser.KW_SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4525; + this.state = 4443; this.match(MySqlParser.KW_READ); - this.state = 4526; + this.state = 4444; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4527; + this.state = 4445; this.match(MySqlParser.KW_READ); - this.state = 4528; + this.state = 4446; this.match(MySqlParser.KW_ONLY); } break; @@ -24973,34 +24629,34 @@ export class MySqlParser extends antlr.Parser { } public lockTableElement(): LockTableElementContext { let localContext = new LockTableElementContext(this.context, this.state); - this.enterRule(localContext, 346, MySqlParser.RULE_lockTableElement); + this.enterRule(localContext, 340, MySqlParser.RULE_lockTableElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4531; + this.state = 4449; this.tableName(); - this.state = 4536; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4533; + this.state = 4451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4532; + this.state = 4450; this.match(MySqlParser.KW_AS); } } - this.state = 4535; + this.state = 4453; localContext._alias = this.uid(); } } - this.state = 4538; + this.state = 4456; this.lockAction(); } } @@ -25020,23 +24676,23 @@ export class MySqlParser extends antlr.Parser { } public lockAction(): LockActionContext { let localContext = new LockActionContext(this.context, this.state); - this.enterRule(localContext, 348, MySqlParser.RULE_lockAction); + this.enterRule(localContext, 342, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4548; + this.state = 4466; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 4540; + this.state = 4458; this.match(MySqlParser.KW_READ); - this.state = 4542; + this.state = 4460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 4541; + this.state = 4459; this.match(MySqlParser.KW_LOCAL); } } @@ -25047,17 +24703,17 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4545; + this.state = 4463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 4544; + this.state = 4462; this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 4547; + this.state = 4465; this.match(MySqlParser.KW_WRITE); } break; @@ -25081,37 +24737,37 @@ export class MySqlParser extends antlr.Parser { } public transactionOption(): TransactionOptionContext { let localContext = new TransactionOptionContext(this.context, this.state); - this.enterRule(localContext, 350, MySqlParser.RULE_transactionOption); + this.enterRule(localContext, 344, MySqlParser.RULE_transactionOption); try { - this.state = 4557; + this.state = 4475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 643, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4550; + this.state = 4468; this.match(MySqlParser.KW_ISOLATION); - this.state = 4551; + this.state = 4469; this.match(MySqlParser.KW_LEVEL); - this.state = 4552; + this.state = 4470; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4553; + this.state = 4471; this.match(MySqlParser.KW_READ); - this.state = 4554; + this.state = 4472; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4555; + this.state = 4473; this.match(MySqlParser.KW_READ); - this.state = 4556; + this.state = 4474; this.match(MySqlParser.KW_ONLY); } break; @@ -25133,42 +24789,42 @@ export class MySqlParser extends antlr.Parser { } public transactionLevel(): TransactionLevelContext { let localContext = new TransactionLevelContext(this.context, this.state); - this.enterRule(localContext, 352, MySqlParser.RULE_transactionLevel); + this.enterRule(localContext, 346, MySqlParser.RULE_transactionLevel); try { - this.state = 4566; + this.state = 4484; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4559; + this.state = 4477; this.match(MySqlParser.KW_REPEATABLE); - this.state = 4560; + this.state = 4478; this.match(MySqlParser.KW_READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4561; + this.state = 4479; this.match(MySqlParser.KW_READ); - this.state = 4562; + this.state = 4480; this.match(MySqlParser.KW_COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4563; + this.state = 4481; this.match(MySqlParser.KW_READ); - this.state = 4564; + this.state = 4482; this.match(MySqlParser.KW_UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4565; + this.state = 4483; this.match(MySqlParser.KW_SERIALIZABLE); } break; @@ -25190,41 +24846,41 @@ export class MySqlParser extends antlr.Parser { } public changeMaster(): ChangeMasterContext { let localContext = new ChangeMasterContext(this.context, this.state); - this.enterRule(localContext, 354, MySqlParser.RULE_changeMaster); + this.enterRule(localContext, 348, MySqlParser.RULE_changeMaster); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4568; + this.state = 4486; this.match(MySqlParser.KW_CHANGE); - this.state = 4569; + this.state = 4487; this.match(MySqlParser.KW_MASTER); - this.state = 4570; + this.state = 4488; this.match(MySqlParser.KW_TO); - this.state = 4571; + this.state = 4489; this.masterOption(); - this.state = 4576; + this.state = 4494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4572; + this.state = 4490; this.match(MySqlParser.COMMA); - this.state = 4573; + this.state = 4491; this.masterOption(); } } - this.state = 4578; + this.state = 4496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4580; + this.state = 4498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4579; + this.state = 4497; this.channelOption(); } } @@ -25247,41 +24903,41 @@ export class MySqlParser extends antlr.Parser { } public changeReplicationFilter(): ChangeReplicationFilterContext { let localContext = new ChangeReplicationFilterContext(this.context, this.state); - this.enterRule(localContext, 356, MySqlParser.RULE_changeReplicationFilter); + this.enterRule(localContext, 350, MySqlParser.RULE_changeReplicationFilter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4582; + this.state = 4500; this.match(MySqlParser.KW_CHANGE); - this.state = 4583; + this.state = 4501; this.match(MySqlParser.KW_REPLICATION); - this.state = 4584; + this.state = 4502; this.match(MySqlParser.KW_FILTER); - this.state = 4585; + this.state = 4503; this.replicationFilter(); - this.state = 4590; + this.state = 4508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4586; + this.state = 4504; this.match(MySqlParser.COMMA); - this.state = 4587; + this.state = 4505; this.replicationFilter(); } } - this.state = 4592; + this.state = 4510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4594; + this.state = 4512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4593; + this.state = 4511; this.channelOption(); } } @@ -25304,43 +24960,43 @@ export class MySqlParser extends antlr.Parser { } public changeReplicationSource(): ChangeReplicationSourceContext { let localContext = new ChangeReplicationSourceContext(this.context, this.state); - this.enterRule(localContext, 358, MySqlParser.RULE_changeReplicationSource); + this.enterRule(localContext, 352, MySqlParser.RULE_changeReplicationSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4596; + this.state = 4514; this.match(MySqlParser.KW_CHANGE); - this.state = 4597; + this.state = 4515; this.match(MySqlParser.KW_REPLICATION); - this.state = 4598; + this.state = 4516; this.match(MySqlParser.KW_SOURCE); - this.state = 4599; + this.state = 4517; this.match(MySqlParser.KW_TO); - this.state = 4600; + this.state = 4518; this.replicationSourceOption(); - this.state = 4605; + this.state = 4523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4601; + this.state = 4519; this.match(MySqlParser.COMMA); - this.state = 4602; + this.state = 4520; this.replicationSourceOption(); } } - this.state = 4607; + this.state = 4525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4609; + this.state = 4527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4608; + this.state = 4526; this.channelOption(); } } @@ -25363,14 +25019,14 @@ export class MySqlParser extends antlr.Parser { } public purgeBinaryLogs(): PurgeBinaryLogsContext { let localContext = new PurgeBinaryLogsContext(this.context, this.state); - this.enterRule(localContext, 360, MySqlParser.RULE_purgeBinaryLogs); + this.enterRule(localContext, 354, MySqlParser.RULE_purgeBinaryLogs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4611; + this.state = 4529; this.match(MySqlParser.KW_PURGE); - this.state = 4612; + this.state = 4530; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -25380,24 +25036,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4613; + this.state = 4531; this.match(MySqlParser.KW_LOGS); - this.state = 4618; + this.state = 4536; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 4614; + this.state = 4532; this.match(MySqlParser.KW_TO); - this.state = 4615; + this.state = 4533; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_BEFORE: { - this.state = 4616; + this.state = 4534; this.match(MySqlParser.KW_BEFORE); - this.state = 4617; + this.state = 4535; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -25422,14 +25078,14 @@ export class MySqlParser extends antlr.Parser { } public startSlaveOrReplica(): StartSlaveOrReplicaContext { let localContext = new StartSlaveOrReplicaContext(this.context, this.state); - this.enterRule(localContext, 362, MySqlParser.RULE_startSlaveOrReplica); + this.enterRule(localContext, 356, MySqlParser.RULE_startSlaveOrReplica); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4620; + this.state = 4538; this.match(MySqlParser.KW_START); - this.state = 4621; + this.state = 4539; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -25438,64 +25094,64 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4630; + this.state = 4548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4622; + this.state = 4540; this.threadType(); - this.state = 4627; + this.state = 4545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4623; + this.state = 4541; this.match(MySqlParser.COMMA); - this.state = 4624; + this.state = 4542; this.threadType(); } } - this.state = 4629; + this.state = 4547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4634; + this.state = 4552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 4632; + this.state = 4550; this.match(MySqlParser.KW_UNTIL); - this.state = 4633; + this.state = 4551; this.untilOption(); } } - this.state = 4639; + this.state = 4557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 363 || _la === 529 || _la === 535 || _la === 678) { { { - this.state = 4636; + this.state = 4554; this.connectionOptions(); } } - this.state = 4641; + this.state = 4559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4643; + this.state = 4561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4642; + this.state = 4560; this.channelOption(); } } @@ -25518,14 +25174,14 @@ export class MySqlParser extends antlr.Parser { } public stopSlaveOrReplica(): StopSlaveOrReplicaContext { let localContext = new StopSlaveOrReplicaContext(this.context, this.state); - this.enterRule(localContext, 364, MySqlParser.RULE_stopSlaveOrReplica); + this.enterRule(localContext, 358, MySqlParser.RULE_stopSlaveOrReplica); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4645; + this.state = 4563; this.match(MySqlParser.KW_STOP); - this.state = 4646; + this.state = 4564; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -25534,38 +25190,38 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4655; + this.state = 4573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4647; + this.state = 4565; this.threadType(); - this.state = 4652; + this.state = 4570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4648; + this.state = 4566; this.match(MySqlParser.COMMA); - this.state = 4649; + this.state = 4567; this.threadType(); } } - this.state = 4654; + this.state = 4572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4658; + this.state = 4576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4657; + this.state = 4575; this.channelOption(); } } @@ -25588,57 +25244,57 @@ export class MySqlParser extends antlr.Parser { } public startGroupReplication(): StartGroupReplicationContext { let localContext = new StartGroupReplicationContext(this.context, this.state); - this.enterRule(localContext, 366, MySqlParser.RULE_startGroupReplication); + this.enterRule(localContext, 360, MySqlParser.RULE_startGroupReplication); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4660; + this.state = 4578; this.match(MySqlParser.KW_START); - this.state = 4661; + this.state = 4579; this.match(MySqlParser.KW_GROUP_REPLICATION); - this.state = 4665; + this.state = 4583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4662; + this.state = 4580; this.match(MySqlParser.KW_USER); - this.state = 4663; + this.state = 4581; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4664; + this.state = 4582; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 4671; + this.state = 4589; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 679, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { case 1: { - this.state = 4667; + this.state = 4585; this.match(MySqlParser.COMMA); - this.state = 4668; + this.state = 4586; this.match(MySqlParser.KW_PASSWORD); - this.state = 4669; + this.state = 4587; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4670; + this.state = 4588; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 4677; + this.state = 4595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 4673; + this.state = 4591; this.match(MySqlParser.COMMA); - this.state = 4674; + this.state = 4592; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4675; + this.state = 4593; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4676; + this.state = 4594; this.match(MySqlParser.STRING_LITERAL); } } @@ -25661,13 +25317,13 @@ export class MySqlParser extends antlr.Parser { } public stopGroupReplication(): StopGroupReplicationContext { let localContext = new StopGroupReplicationContext(this.context, this.state); - this.enterRule(localContext, 368, MySqlParser.RULE_stopGroupReplication); + this.enterRule(localContext, 362, MySqlParser.RULE_stopGroupReplication); try { this.enterOuterAlt(localContext, 1); { - this.state = 4679; + this.state = 4597; this.match(MySqlParser.KW_STOP); - this.state = 4680; + this.state = 4598; this.match(MySqlParser.KW_GROUP_REPLICATION); } } @@ -25687,10 +25343,10 @@ export class MySqlParser extends antlr.Parser { } public masterOption(): MasterOptionContext { let localContext = new MasterOptionContext(this.context, this.state); - this.enterRule(localContext, 370, MySqlParser.RULE_masterOption); + this.enterRule(localContext, 364, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4709; + this.state = 4627; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER_BIND: @@ -25714,11 +25370,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4682; + this.state = 4600; this.stringMasterOption(); - this.state = 4683; + this.state = 4601; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4684; + this.state = 4602; this.match(MySqlParser.STRING_LITERAL); } break; @@ -25733,11 +25389,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4686; + this.state = 4604; this.decimalMasterOption(); - this.state = 4687; + this.state = 4605; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4688; + this.state = 4606; this.decimalLiteral(); } break; @@ -25751,11 +25407,11 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4690; + this.state = 4608; this.boolMasterOption(); - this.state = 4691; + this.state = 4609; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4692; + this.state = 4610; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25773,7 +25429,7 @@ export class MySqlParser extends antlr.Parser { localContext = new V8AddMasterOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4694; + this.state = 4612; this.v8NewMasterOption(); } break; @@ -25781,39 +25437,39 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4695; + this.state = 4613; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4696; + this.state = 4614; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4697; + this.state = 4615; this.match(MySqlParser.LR_BRACKET); - this.state = 4706; + this.state = 4624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4698; + this.state = 4616; (localContext as MasterUidListOptionContext)._server_id = this.uid(); - this.state = 4703; + this.state = 4621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4699; + this.state = 4617; this.match(MySqlParser.COMMA); - this.state = 4700; + this.state = 4618; (localContext as MasterUidListOptionContext)._server_id = this.uid(); } } - this.state = 4705; + this.state = 4623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4708; + this.state = 4626; this.match(MySqlParser.RR_BRACKET); } break; @@ -25837,12 +25493,12 @@ export class MySqlParser extends antlr.Parser { } public stringMasterOption(): StringMasterOptionContext { let localContext = new StringMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 372, MySqlParser.RULE_stringMasterOption); + this.enterRule(localContext, 366, MySqlParser.RULE_stringMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4711; + this.state = 4629; _la = this.tokenStream.LA(1); if(!(_la === 108 || ((((_la - 455)) & ~0x1F) === 0 && ((1 << (_la - 455)) & 4190897) !== 0) || _la === 499 || _la === 557)) { this.errorHandler.recoverInline(this); @@ -25869,12 +25525,12 @@ export class MySqlParser extends antlr.Parser { } public decimalMasterOption(): DecimalMasterOptionContext { let localContext = new DecimalMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 374, MySqlParser.RULE_decimalMasterOption); + this.enterRule(localContext, 368, MySqlParser.RULE_decimalMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4713; + this.state = 4631; _la = this.tokenStream.LA(1); if(!(((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 2097831) !== 0) || _la === 558)) { this.errorHandler.recoverInline(this); @@ -25901,12 +25557,12 @@ export class MySqlParser extends antlr.Parser { } public boolMasterOption(): BoolMasterOptionContext { let localContext = new BoolMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 376, MySqlParser.RULE_boolMasterOption); + this.enterRule(localContext, 370, MySqlParser.RULE_boolMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4715; + this.state = 4633; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 411 || _la === 416 || _la === 454 || _la === 466 || _la === 573 || _la === 617)) { this.errorHandler.recoverInline(this); @@ -25933,20 +25589,20 @@ export class MySqlParser extends antlr.Parser { } public v8NewMasterOption(): V8NewMasterOptionContext { let localContext = new V8NewMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 378, MySqlParser.RULE_v8NewMasterOption); + this.enterRule(localContext, 372, MySqlParser.RULE_v8NewMasterOption); let _la: number; try { - this.state = 4730; + this.state = 4648; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4717; + this.state = 4635; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4718; + this.state = 4636; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4719; + this.state = 4637; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -25960,11 +25616,11 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4720; + this.state = 4638; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4721; + this.state = 4639; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4722; + this.state = 4640; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -25978,22 +25634,22 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4723; + this.state = 4641; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4724; + this.state = 4642; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4728; + this.state = 4646; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4725; + this.state = 4643; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4726; + this.state = 4644; this.match(MySqlParser.KW_LOCAL); } break; @@ -26005,7 +25661,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4727; + this.state = 4645; this.gtuidSet(); } break; @@ -26034,10 +25690,10 @@ export class MySqlParser extends antlr.Parser { } public replicationSourceOption(): ReplicationSourceOptionContext { let localContext = new ReplicationSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 380, MySqlParser.RULE_replicationSourceOption); + this.enterRule(localContext, 374, MySqlParser.RULE_replicationSourceOption); let _la: number; try { - this.state = 4759; + this.state = 4677; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NETWORK_NAMESPACE: @@ -26061,11 +25717,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4732; + this.state = 4650; this.stringSourceOption(); - this.state = 4733; + this.state = 4651; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4734; + this.state = 4652; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26080,11 +25736,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4736; + this.state = 4654; this.decimalSourceOption(); - this.state = 4737; + this.state = 4655; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4738; + this.state = 4656; this.decimalLiteral(); } break; @@ -26098,11 +25754,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4740; + this.state = 4658; this.boolSourceOption(); - this.state = 4741; + this.state = 4659; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4742; + this.state = 4660; (localContext as SourceBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26120,7 +25776,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceOtherOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4744; + this.state = 4662; this.otherSourceOption(); } break; @@ -26128,39 +25784,39 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4745; + this.state = 4663; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4746; + this.state = 4664; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4747; + this.state = 4665; this.match(MySqlParser.LR_BRACKET); - this.state = 4756; + this.state = 4674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4748; + this.state = 4666; (localContext as SourceUidListOptionContext)._server_id = this.uid(); - this.state = 4753; + this.state = 4671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4749; + this.state = 4667; this.match(MySqlParser.COMMA); - this.state = 4750; + this.state = 4668; (localContext as SourceUidListOptionContext)._server_id = this.uid(); } } - this.state = 4755; + this.state = 4673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4758; + this.state = 4676; this.match(MySqlParser.RR_BRACKET); } break; @@ -26184,12 +25840,12 @@ export class MySqlParser extends antlr.Parser { } public stringSourceOption(): StringSourceOptionContext { let localContext = new StringSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 382, MySqlParser.RULE_stringSourceOption); + this.enterRule(localContext, 376, MySqlParser.RULE_stringSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4761; + this.state = 4679; _la = this.tokenStream.LA(1); if(!(_la === 499 || _la === 557 || ((((_la - 606)) & ~0x1F) === 0 && ((1 << (_la - 606)) & 125771823) !== 0))) { this.errorHandler.recoverInline(this); @@ -26216,12 +25872,12 @@ export class MySqlParser extends antlr.Parser { } public decimalSourceOption(): DecimalSourceOptionContext { let localContext = new DecimalSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 384, MySqlParser.RULE_decimalSourceOption); + this.enterRule(localContext, 378, MySqlParser.RULE_decimalSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4763; + this.state = 4681; _la = this.tokenStream.LA(1); if(!(_la === 558 || ((((_la - 610)) & ~0x1F) === 0 && ((1 << (_la - 610)) & 1397) !== 0))) { this.errorHandler.recoverInline(this); @@ -26248,12 +25904,12 @@ export class MySqlParser extends antlr.Parser { } public boolSourceOption(): BoolSourceOptionContext { let localContext = new BoolSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 386, MySqlParser.RULE_boolSourceOption); + this.enterRule(localContext, 380, MySqlParser.RULE_boolSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4765; + this.state = 4683; _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 416 || _la === 573 || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 65809) !== 0))) { this.errorHandler.recoverInline(this); @@ -26280,20 +25936,20 @@ export class MySqlParser extends antlr.Parser { } public otherSourceOption(): OtherSourceOptionContext { let localContext = new OtherSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 388, MySqlParser.RULE_otherSourceOption); + this.enterRule(localContext, 382, MySqlParser.RULE_otherSourceOption); let _la: number; try { - this.state = 4780; + this.state = 4698; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4767; + this.state = 4685; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4768; + this.state = 4686; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4769; + this.state = 4687; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26307,11 +25963,11 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4770; + this.state = 4688; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4771; + this.state = 4689; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4772; + this.state = 4690; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26325,22 +25981,22 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4773; + this.state = 4691; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4774; + this.state = 4692; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4778; + this.state = 4696; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4775; + this.state = 4693; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4776; + this.state = 4694; this.match(MySqlParser.KW_LOCAL); } break; @@ -26352,7 +26008,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4777; + this.state = 4695; this.gtuidSet(); } break; @@ -26381,15 +26037,15 @@ export class MySqlParser extends antlr.Parser { } public channelOption(): ChannelOptionContext { let localContext = new ChannelOptionContext(this.context, this.state); - this.enterRule(localContext, 390, MySqlParser.RULE_channelOption); + this.enterRule(localContext, 384, MySqlParser.RULE_channelOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 4782; + this.state = 4700; this.match(MySqlParser.KW_FOR); - this.state = 4783; + this.state = 4701; this.match(MySqlParser.KW_CHANNEL); - this.state = 4784; + this.state = 4702; this.match(MySqlParser.STRING_LITERAL); } } @@ -26409,41 +26065,41 @@ export class MySqlParser extends antlr.Parser { } public replicationFilter(): ReplicationFilterContext { let localContext = new ReplicationFilterContext(this.context, this.state); - this.enterRule(localContext, 392, MySqlParser.RULE_replicationFilter); + this.enterRule(localContext, 386, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4849; + this.state = 4767; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_REPLICATE_DO_DB: localContext = new DoDbReplicationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4786; + this.state = 4704; this.match(MySqlParser.KW_REPLICATE_DO_DB); - this.state = 4787; + this.state = 4705; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4788; + this.state = 4706; this.match(MySqlParser.LR_BRACKET); - this.state = 4789; + this.state = 4707; this.databaseName(); - this.state = 4794; + this.state = 4712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4790; + this.state = 4708; this.match(MySqlParser.COMMA); - this.state = 4791; + this.state = 4709; this.databaseName(); } } - this.state = 4796; + this.state = 4714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4797; + this.state = 4715; this.match(MySqlParser.RR_BRACKET); } break; @@ -26451,31 +26107,31 @@ export class MySqlParser extends antlr.Parser { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4799; + this.state = 4717; this.match(MySqlParser.KW_REPLICATE_IGNORE_DB); - this.state = 4800; + this.state = 4718; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4801; + this.state = 4719; this.match(MySqlParser.LR_BRACKET); - this.state = 4802; + this.state = 4720; this.databaseName(); - this.state = 4807; + this.state = 4725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4803; + this.state = 4721; this.match(MySqlParser.COMMA); - this.state = 4804; + this.state = 4722; this.databaseName(); } } - this.state = 4809; + this.state = 4727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4810; + this.state = 4728; this.match(MySqlParser.RR_BRACKET); } break; @@ -26483,15 +26139,15 @@ export class MySqlParser extends antlr.Parser { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4812; + this.state = 4730; this.match(MySqlParser.KW_REPLICATE_DO_TABLE); - this.state = 4813; + this.state = 4731; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4814; + this.state = 4732; this.match(MySqlParser.LR_BRACKET); - this.state = 4815; + this.state = 4733; this.tableNames(); - this.state = 4816; + this.state = 4734; this.match(MySqlParser.RR_BRACKET); } break; @@ -26499,15 +26155,15 @@ export class MySqlParser extends antlr.Parser { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4818; + this.state = 4736; this.match(MySqlParser.KW_REPLICATE_IGNORE_TABLE); - this.state = 4819; + this.state = 4737; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4820; + this.state = 4738; this.match(MySqlParser.LR_BRACKET); - this.state = 4821; + this.state = 4739; this.tableNames(); - this.state = 4822; + this.state = 4740; this.match(MySqlParser.RR_BRACKET); } break; @@ -26515,15 +26171,15 @@ export class MySqlParser extends antlr.Parser { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4824; + this.state = 4742; this.match(MySqlParser.KW_REPLICATE_WILD_DO_TABLE); - this.state = 4825; + this.state = 4743; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4826; + this.state = 4744; this.match(MySqlParser.LR_BRACKET); - this.state = 4827; + this.state = 4745; this.simpleStrings(); - this.state = 4828; + this.state = 4746; this.match(MySqlParser.RR_BRACKET); } break; @@ -26531,15 +26187,15 @@ export class MySqlParser extends antlr.Parser { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4830; + this.state = 4748; this.match(MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE); - this.state = 4831; + this.state = 4749; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4832; + this.state = 4750; this.match(MySqlParser.LR_BRACKET); - this.state = 4833; + this.state = 4751; this.simpleStrings(); - this.state = 4834; + this.state = 4752; this.match(MySqlParser.RR_BRACKET); } break; @@ -26547,31 +26203,31 @@ export class MySqlParser extends antlr.Parser { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4836; + this.state = 4754; this.match(MySqlParser.KW_REPLICATE_REWRITE_DB); - this.state = 4837; + this.state = 4755; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4838; + this.state = 4756; this.match(MySqlParser.LR_BRACKET); - this.state = 4839; + this.state = 4757; this.tablePair(); - this.state = 4844; + this.state = 4762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4840; + this.state = 4758; this.match(MySqlParser.COMMA); - this.state = 4841; + this.state = 4759; this.tablePair(); } } - this.state = 4846; + this.state = 4764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4847; + this.state = 4765; this.match(MySqlParser.RR_BRACKET); } break; @@ -26595,19 +26251,19 @@ export class MySqlParser extends antlr.Parser { } public tablePair(): TablePairContext { let localContext = new TablePairContext(this.context, this.state); - this.enterRule(localContext, 394, MySqlParser.RULE_tablePair); + this.enterRule(localContext, 388, MySqlParser.RULE_tablePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 4851; + this.state = 4769; this.match(MySqlParser.LR_BRACKET); - this.state = 4852; + this.state = 4770; localContext._firstTable = this.tableName(); - this.state = 4853; + this.state = 4771; this.match(MySqlParser.COMMA); - this.state = 4854; + this.state = 4772; localContext._secondTable = this.tableName(); - this.state = 4855; + this.state = 4773; this.match(MySqlParser.RR_BRACKET); } } @@ -26627,12 +26283,12 @@ export class MySqlParser extends antlr.Parser { } public threadType(): ThreadTypeContext { let localContext = new ThreadTypeContext(this.context, this.state); - this.enterRule(localContext, 396, MySqlParser.RULE_threadType); + this.enterRule(localContext, 390, MySqlParser.RULE_threadType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4857; + this.state = 4775; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 639)) { this.errorHandler.recoverInline(this); @@ -26659,10 +26315,10 @@ export class MySqlParser extends antlr.Parser { } public untilOption(): UntilOptionContext { let localContext = new UntilOptionContext(this.context, this.state); - this.enterRule(localContext, 398, MySqlParser.RULE_untilOption); + this.enterRule(localContext, 392, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4884; + this.state = 4802; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQL_AFTER_GTIDS: @@ -26670,7 +26326,7 @@ export class MySqlParser extends antlr.Parser { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4859; + this.state = 4777; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 633 || _la === 635)) { @@ -26680,9 +26336,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4860; + this.state = 4778; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4861; + this.state = 4779; this.gtuidSet(); } break; @@ -26690,19 +26346,19 @@ export class MySqlParser extends antlr.Parser { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4862; + this.state = 4780; this.match(MySqlParser.KW_MASTER_LOG_FILE); - this.state = 4863; + this.state = 4781; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4864; + this.state = 4782; this.match(MySqlParser.STRING_LITERAL); - this.state = 4865; + this.state = 4783; this.match(MySqlParser.COMMA); - this.state = 4866; + this.state = 4784; this.match(MySqlParser.KW_MASTER_LOG_POS); - this.state = 4867; + this.state = 4785; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4868; + this.state = 4786; this.decimalLiteral(); } break; @@ -26710,19 +26366,19 @@ export class MySqlParser extends antlr.Parser { localContext = new SourceLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4869; + this.state = 4787; this.match(MySqlParser.KW_SOURCE_LOG_FILE); - this.state = 4870; + this.state = 4788; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4871; + this.state = 4789; this.match(MySqlParser.STRING_LITERAL); - this.state = 4872; + this.state = 4790; this.match(MySqlParser.COMMA); - this.state = 4873; + this.state = 4791; this.match(MySqlParser.KW_SOURCE_LOG_POS); - this.state = 4874; + this.state = 4792; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4875; + this.state = 4793; this.decimalLiteral(); } break; @@ -26730,19 +26386,19 @@ export class MySqlParser extends antlr.Parser { localContext = new RelayLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4876; + this.state = 4794; this.match(MySqlParser.KW_RELAY_LOG_FILE); - this.state = 4877; + this.state = 4795; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4878; + this.state = 4796; this.match(MySqlParser.STRING_LITERAL); - this.state = 4879; + this.state = 4797; this.match(MySqlParser.COMMA); - this.state = 4880; + this.state = 4798; this.match(MySqlParser.KW_RELAY_LOG_POS); - this.state = 4881; + this.state = 4799; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4882; + this.state = 4800; this.decimalLiteral(); } break; @@ -26750,7 +26406,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4883; + this.state = 4801; this.match(MySqlParser.KW_SQL_AFTER_MTS_GAPS); } break; @@ -26774,20 +26430,20 @@ export class MySqlParser extends antlr.Parser { } public connectionOptions(): ConnectionOptionsContext { let localContext = new ConnectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 400, MySqlParser.RULE_connectionOptions); + this.enterRule(localContext, 394, MySqlParser.RULE_connectionOptions); try { - this.state = 4898; + this.state = 4816; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4886; + this.state = 4804; this.match(MySqlParser.KW_USER); - this.state = 4887; + this.state = 4805; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4888; + this.state = 4806; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26795,11 +26451,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4889; + this.state = 4807; this.match(MySqlParser.KW_PASSWORD); - this.state = 4890; + this.state = 4808; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4891; + this.state = 4809; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26807,11 +26463,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4892; + this.state = 4810; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4893; + this.state = 4811; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4894; + this.state = 4812; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26819,11 +26475,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4895; + this.state = 4813; this.match(MySqlParser.KW_PLUGIN_DIR); - this.state = 4896; + this.state = 4814; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4897; + this.state = 4815; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26847,10 +26503,10 @@ export class MySqlParser extends antlr.Parser { } public gtuidSet(): GtuidSetContext { let localContext = new GtuidSetContext(this.context, this.state); - this.enterRule(localContext, 402, MySqlParser.RULE_gtuidSet); + this.enterRule(localContext, 396, MySqlParser.RULE_gtuidSet); try { let alternative: number; - this.state = 4909; + this.state = 4827; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -26861,32 +26517,32 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4900; + this.state = 4818; this.uuidSet(); - this.state = 4905; + this.state = 4823; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 697, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 679, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4901; + this.state = 4819; this.match(MySqlParser.COMMA); - this.state = 4902; + this.state = 4820; this.uuidSet(); } } } - this.state = 4907; + this.state = 4825; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 697, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 679, this.context); } } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4908; + this.state = 4826; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26910,14 +26566,14 @@ export class MySqlParser extends antlr.Parser { } public xaStartTransaction(): XaStartTransactionContext { let localContext = new XaStartTransactionContext(this.context, this.state); - this.enterRule(localContext, 404, MySqlParser.RULE_xaStartTransaction); + this.enterRule(localContext, 398, MySqlParser.RULE_xaStartTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4911; + this.state = 4829; this.match(MySqlParser.KW_XA); - this.state = 4912; + this.state = 4830; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 317 || _la === 640)) { @@ -26927,14 +26583,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4913; + this.state = 4831; this.xid(); - this.state = 4915; + this.state = 4833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 577) { { - this.state = 4914; + this.state = 4832; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 577)) { @@ -26965,32 +26621,32 @@ export class MySqlParser extends antlr.Parser { } public xaEndTransaction(): XaEndTransactionContext { let localContext = new XaEndTransactionContext(this.context, this.state); - this.enterRule(localContext, 406, MySqlParser.RULE_xaEndTransaction); + this.enterRule(localContext, 400, MySqlParser.RULE_xaEndTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4917; + this.state = 4835; this.match(MySqlParser.KW_XA); - this.state = 4918; + this.state = 4836; this.match(MySqlParser.KW_END); - this.state = 4919; + this.state = 4837; this.xid(); - this.state = 4925; + this.state = 4843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 654) { { - this.state = 4920; + this.state = 4838; this.match(MySqlParser.KW_SUSPEND); - this.state = 4923; + this.state = 4841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4921; + this.state = 4839; this.match(MySqlParser.KW_FOR); - this.state = 4922; + this.state = 4840; this.match(MySqlParser.KW_MIGRATE); } } @@ -27016,15 +26672,15 @@ export class MySqlParser extends antlr.Parser { } public xaPrepareStatement(): XaPrepareStatementContext { let localContext = new XaPrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 408, MySqlParser.RULE_xaPrepareStatement); + this.enterRule(localContext, 402, MySqlParser.RULE_xaPrepareStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4927; + this.state = 4845; this.match(MySqlParser.KW_XA); - this.state = 4928; + this.state = 4846; this.match(MySqlParser.KW_PREPARE); - this.state = 4929; + this.state = 4847; this.xid(); } } @@ -27044,25 +26700,25 @@ export class MySqlParser extends antlr.Parser { } public xaCommitWork(): XaCommitWorkContext { let localContext = new XaCommitWorkContext(this.context, this.state); - this.enterRule(localContext, 410, MySqlParser.RULE_xaCommitWork); + this.enterRule(localContext, 404, MySqlParser.RULE_xaCommitWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4931; + this.state = 4849; this.match(MySqlParser.KW_XA); - this.state = 4932; + this.state = 4850; this.match(MySqlParser.KW_COMMIT); - this.state = 4933; + this.state = 4851; this.xid(); - this.state = 4936; + this.state = 4854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 4934; + this.state = 4852; this.match(MySqlParser.KW_ONE); - this.state = 4935; + this.state = 4853; this.match(MySqlParser.KW_PHASE); } } @@ -27085,15 +26741,15 @@ export class MySqlParser extends antlr.Parser { } public xaRollbackWork(): XaRollbackWorkContext { let localContext = new XaRollbackWorkContext(this.context, this.state); - this.enterRule(localContext, 412, MySqlParser.RULE_xaRollbackWork); + this.enterRule(localContext, 406, MySqlParser.RULE_xaRollbackWork); try { this.enterOuterAlt(localContext, 1); { - this.state = 4938; + this.state = 4856; this.match(MySqlParser.KW_XA); - this.state = 4939; + this.state = 4857; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4940; + this.state = 4858; this.xid(); } } @@ -27113,23 +26769,23 @@ export class MySqlParser extends antlr.Parser { } public xaRecoverWork(): XaRecoverWorkContext { let localContext = new XaRecoverWorkContext(this.context, this.state); - this.enterRule(localContext, 414, MySqlParser.RULE_xaRecoverWork); + this.enterRule(localContext, 408, MySqlParser.RULE_xaRecoverWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4942; + this.state = 4860; this.match(MySqlParser.KW_XA); - this.state = 4943; + this.state = 4861; this.match(MySqlParser.KW_RECOVER); - this.state = 4946; + this.state = 4864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 4944; + this.state = 4862; this.match(MySqlParser.KW_CONVERT); - this.state = 4945; + this.state = 4863; this.xid(); } } @@ -27152,28 +26808,28 @@ export class MySqlParser extends antlr.Parser { } public prepareStatement(): PrepareStatementContext { let localContext = new PrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 416, MySqlParser.RULE_prepareStatement); + this.enterRule(localContext, 410, MySqlParser.RULE_prepareStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4948; + this.state = 4866; this.match(MySqlParser.KW_PREPARE); - this.state = 4949; + this.state = 4867; localContext._stmt_name = this.uid(); - this.state = 4950; + this.state = 4868; this.match(MySqlParser.KW_FROM); - this.state = 4953; + this.state = 4871; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4951; + this.state = 4869; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4952; + this.state = 4870; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -27198,23 +26854,23 @@ export class MySqlParser extends antlr.Parser { } public executeStatement(): ExecuteStatementContext { let localContext = new ExecuteStatementContext(this.context, this.state); - this.enterRule(localContext, 418, MySqlParser.RULE_executeStatement); + this.enterRule(localContext, 412, MySqlParser.RULE_executeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4955; + this.state = 4873; this.match(MySqlParser.KW_EXECUTE); - this.state = 4956; + this.state = 4874; localContext._stmt_name = this.uid(); - this.state = 4959; + this.state = 4877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 4957; + this.state = 4875; this.match(MySqlParser.KW_USING); - this.state = 4958; + this.state = 4876; this.userVariables(); } } @@ -27237,12 +26893,12 @@ export class MySqlParser extends antlr.Parser { } public deallocatePrepare(): DeallocatePrepareContext { let localContext = new DeallocatePrepareContext(this.context, this.state); - this.enterRule(localContext, 420, MySqlParser.RULE_deallocatePrepare); + this.enterRule(localContext, 414, MySqlParser.RULE_deallocatePrepare); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4961; + this.state = 4879; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 362)) { @@ -27252,9 +26908,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4962; + this.state = 4880; this.match(MySqlParser.KW_PREPARE); - this.state = 4963; + this.state = 4881; localContext._stmt_name = this.uid(); } } @@ -27274,22 +26930,22 @@ export class MySqlParser extends antlr.Parser { } public routineBody(): RoutineBodyContext { let localContext = new RoutineBodyContext(this.context, this.state); - this.enterRule(localContext, 422, MySqlParser.RULE_routineBody); + this.enterRule(localContext, 416, MySqlParser.RULE_routineBody); try { - this.state = 4967; + this.state = 4885; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 706, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 688, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4965; + this.state = 4883; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4966; + this.state = 4884; this.sqlStatement(); } break; @@ -27311,120 +26967,120 @@ export class MySqlParser extends antlr.Parser { } public blockStatement(): BlockStatementContext { let localContext = new BlockStatementContext(this.context, this.state); - this.enterRule(localContext, 424, MySqlParser.RULE_blockStatement); + this.enterRule(localContext, 418, MySqlParser.RULE_blockStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4972; + this.state = 4890; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: { - this.state = 4969; + this.state = 4887; localContext._begin = this.uid(); - this.state = 4970; + this.state = 4888; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4974; + this.state = 4892; this.match(MySqlParser.KW_BEGIN); - this.state = 4980; + this.state = 4898; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 708, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4975; + this.state = 4893; this.declareVariable(); - this.state = 4976; + this.state = 4894; this.match(MySqlParser.SEMI); } } } - this.state = 4982; + this.state = 4900; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 708, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); } - this.state = 4988; + this.state = 4906; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 709, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4983; + this.state = 4901; this.declareCondition(); - this.state = 4984; + this.state = 4902; this.match(MySqlParser.SEMI); } } } - this.state = 4990; + this.state = 4908; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 709, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); } - this.state = 4996; + this.state = 4914; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 710, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4991; + this.state = 4909; this.declareCursor(); - this.state = 4992; + this.state = 4910; this.match(MySqlParser.SEMI); } } } - this.state = 4998; + this.state = 4916; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 710, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); } - this.state = 5004; + this.state = 4922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 4999; + this.state = 4917; this.declareHandler(); - this.state = 5000; + this.state = 4918; this.match(MySqlParser.SEMI); } } - this.state = 5006; + this.state = 4924; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5010; + this.state = 4928; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 712, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 694, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5007; + this.state = 4925; this.procedureSqlStatement(); } } } - this.state = 5012; + this.state = 4930; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 712, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 694, this.context); } - this.state = 5013; + this.state = 4931; this.match(MySqlParser.KW_END); - this.state = 5015; + this.state = 4933; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 713, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 695, this.context) ) { case 1: { - this.state = 5014; + this.state = 4932; localContext._end = this.uid(); } break; @@ -27447,52 +27103,52 @@ export class MySqlParser extends antlr.Parser { } public caseStatement(): CaseStatementContext { let localContext = new CaseStatementContext(this.context, this.state); - this.enterRule(localContext, 426, MySqlParser.RULE_caseStatement); + this.enterRule(localContext, 420, MySqlParser.RULE_caseStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5017; + this.state = 4935; this.match(MySqlParser.KW_CASE); - this.state = 5020; + this.state = 4938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 5018; + this.state = 4936; localContext._case_value = this.uid(); } break; case 2: { - this.state = 5019; + this.state = 4937; this.expression(0); } break; } - this.state = 5023; + this.state = 4941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5022; + this.state = 4940; this.caseAlternative(); } } - this.state = 5025; + this.state = 4943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 5033; + this.state = 4951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5027; + this.state = 4945; this.match(MySqlParser.KW_ELSE); - this.state = 5029; + this.state = 4947; this.errorHandler.sync(this); alternative = 1; do { @@ -27500,7 +27156,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5028; + this.state = 4946; this.procedureSqlStatement(); } } @@ -27508,16 +27164,16 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5031; + this.state = 4949; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 716, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 698, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5035; + this.state = 4953; this.match(MySqlParser.KW_END); - this.state = 5036; + this.state = 4954; this.match(MySqlParser.KW_CASE); } } @@ -27537,19 +27193,19 @@ export class MySqlParser extends antlr.Parser { } public ifStatement(): IfStatementContext { let localContext = new IfStatementContext(this.context, this.state); - this.enterRule(localContext, 428, MySqlParser.RULE_ifStatement); + this.enterRule(localContext, 422, MySqlParser.RULE_ifStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5038; + this.state = 4956; this.match(MySqlParser.KW_IF); - this.state = 5039; + this.state = 4957; this.expression(0); - this.state = 5040; + this.state = 4958; this.match(MySqlParser.KW_THEN); - this.state = 5042; + this.state = 4960; this.errorHandler.sync(this); alternative = 1; do { @@ -27557,7 +27213,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5041; + this.state = 4959; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -27566,32 +27222,32 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5044; + this.state = 4962; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 718, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5049; + this.state = 4967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 5046; + this.state = 4964; this.elifAlternative(); } } - this.state = 5051; + this.state = 4969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5058; + this.state = 4976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5052; + this.state = 4970; this.match(MySqlParser.KW_ELSE); - this.state = 5054; + this.state = 4972; this.errorHandler.sync(this); alternative = 1; do { @@ -27599,7 +27255,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5053; + this.state = 4971; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -27608,16 +27264,16 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5056; + this.state = 4974; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 720, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5060; + this.state = 4978; this.match(MySqlParser.KW_END); - this.state = 5061; + this.state = 4979; this.match(MySqlParser.KW_IF); } } @@ -27637,13 +27293,13 @@ export class MySqlParser extends antlr.Parser { } public iterateStatement(): IterateStatementContext { let localContext = new IterateStatementContext(this.context, this.state); - this.enterRule(localContext, 430, MySqlParser.RULE_iterateStatement); + this.enterRule(localContext, 424, MySqlParser.RULE_iterateStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5063; + this.state = 4981; this.match(MySqlParser.KW_ITERATE); - this.state = 5064; + this.state = 4982; localContext._label = this.uid(); } } @@ -27663,13 +27319,13 @@ export class MySqlParser extends antlr.Parser { } public leaveStatement(): LeaveStatementContext { let localContext = new LeaveStatementContext(this.context, this.state); - this.enterRule(localContext, 432, MySqlParser.RULE_leaveStatement); + this.enterRule(localContext, 426, MySqlParser.RULE_leaveStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5066; + this.state = 4984; this.match(MySqlParser.KW_LEAVE); - this.state = 5067; + this.state = 4985; localContext._label = this.uid(); } } @@ -27689,27 +27345,27 @@ export class MySqlParser extends antlr.Parser { } public loopStatement(): LoopStatementContext { let localContext = new LoopStatementContext(this.context, this.state); - this.enterRule(localContext, 434, MySqlParser.RULE_loopStatement); + this.enterRule(localContext, 428, MySqlParser.RULE_loopStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5072; + this.state = 4990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5069; + this.state = 4987; localContext._begin_label = this.uid(); - this.state = 5070; + this.state = 4988; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5074; + this.state = 4992; this.match(MySqlParser.KW_LOOP); - this.state = 5076; + this.state = 4994; this.errorHandler.sync(this); alternative = 1; do { @@ -27717,7 +27373,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5075; + this.state = 4993; this.procedureSqlStatement(); } } @@ -27725,20 +27381,20 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5078; + this.state = 4996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 723, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5080; + this.state = 4998; this.match(MySqlParser.KW_END); - this.state = 5081; + this.state = 4999; this.match(MySqlParser.KW_LOOP); - this.state = 5083; + this.state = 5001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5082; + this.state = 5000; localContext._end_label = this.uid(); } } @@ -27761,27 +27417,27 @@ export class MySqlParser extends antlr.Parser { } public repeatStatement(): RepeatStatementContext { let localContext = new RepeatStatementContext(this.context, this.state); - this.enterRule(localContext, 436, MySqlParser.RULE_repeatStatement); + this.enterRule(localContext, 430, MySqlParser.RULE_repeatStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5088; + this.state = 5006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: { - this.state = 5085; + this.state = 5003; localContext._begin_label = this.uid(); - this.state = 5086; + this.state = 5004; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 5090; + this.state = 5008; this.match(MySqlParser.KW_REPEAT); - this.state = 5092; + this.state = 5010; this.errorHandler.sync(this); alternative = 1; do { @@ -27789,7 +27445,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5091; + this.state = 5009; this.procedureSqlStatement(); } } @@ -27797,24 +27453,24 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5094; + this.state = 5012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 726, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 708, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5096; + this.state = 5014; this.match(MySqlParser.KW_UNTIL); - this.state = 5097; + this.state = 5015; this.expression(0); - this.state = 5098; + this.state = 5016; this.match(MySqlParser.KW_END); - this.state = 5099; + this.state = 5017; this.match(MySqlParser.KW_REPEAT); - this.state = 5101; + this.state = 5019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5100; + this.state = 5018; localContext._end_label = this.uid(); } } @@ -27837,13 +27493,13 @@ export class MySqlParser extends antlr.Parser { } public returnStatement(): ReturnStatementContext { let localContext = new ReturnStatementContext(this.context, this.state); - this.enterRule(localContext, 438, MySqlParser.RULE_returnStatement); + this.enterRule(localContext, 432, MySqlParser.RULE_returnStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5103; + this.state = 5021; this.match(MySqlParser.KW_RETURN); - this.state = 5104; + this.state = 5022; this.expression(0); } } @@ -27863,31 +27519,31 @@ export class MySqlParser extends antlr.Parser { } public whileStatement(): WhileStatementContext { let localContext = new WhileStatementContext(this.context, this.state); - this.enterRule(localContext, 440, MySqlParser.RULE_whileStatement); + this.enterRule(localContext, 434, MySqlParser.RULE_whileStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5109; + this.state = 5027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5106; + this.state = 5024; localContext._begin_label = this.uid(); - this.state = 5107; + this.state = 5025; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5111; + this.state = 5029; this.match(MySqlParser.KW_WHILE); - this.state = 5112; + this.state = 5030; this.expression(0); - this.state = 5113; + this.state = 5031; this.match(MySqlParser.KW_DO); - this.state = 5115; + this.state = 5033; this.errorHandler.sync(this); alternative = 1; do { @@ -27895,7 +27551,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5114; + this.state = 5032; this.procedureSqlStatement(); } } @@ -27903,20 +27559,20 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5117; + this.state = 5035; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 729, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5119; + this.state = 5037; this.match(MySqlParser.KW_END); - this.state = 5120; + this.state = 5038; this.match(MySqlParser.KW_WHILE); - this.state = 5122; + this.state = 5040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483629) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5121; + this.state = 5039; localContext._end_label = this.uid(); } } @@ -27939,19 +27595,19 @@ export class MySqlParser extends antlr.Parser { } public cursorStatement(): CursorStatementContext { let localContext = new CursorStatementContext(this.context, this.state); - this.enterRule(localContext, 442, MySqlParser.RULE_cursorStatement); + this.enterRule(localContext, 436, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 5139; + this.state = 5057; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5124; + this.state = 5042; this.match(MySqlParser.KW_CLOSE); - this.state = 5125; + this.state = 5043; (localContext as CloseCursorContext)._cursor_name = this.uid(); } break; @@ -27959,33 +27615,33 @@ export class MySqlParser extends antlr.Parser { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5126; + this.state = 5044; this.match(MySqlParser.KW_FETCH); - this.state = 5131; + this.state = 5049; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 732, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { case 1: { - this.state = 5128; + this.state = 5046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 5127; + this.state = 5045; this.match(MySqlParser.KW_NEXT); } } - this.state = 5130; + this.state = 5048; this.match(MySqlParser.KW_FROM); } break; } - this.state = 5133; + this.state = 5051; (localContext as FetchCursorContext)._cursor_name = this.uid(); - this.state = 5134; + this.state = 5052; this.match(MySqlParser.KW_INTO); - this.state = 5135; + this.state = 5053; (localContext as FetchCursorContext)._var_names = this.uidList(); } break; @@ -27993,9 +27649,9 @@ export class MySqlParser extends antlr.Parser { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5137; + this.state = 5055; this.match(MySqlParser.KW_OPEN); - this.state = 5138; + this.state = 5056; (localContext as OpenCursorContext)._cursor_name = this.uid(); } break; @@ -28019,25 +27675,25 @@ export class MySqlParser extends antlr.Parser { } public declareVariable(): DeclareVariableContext { let localContext = new DeclareVariableContext(this.context, this.state); - this.enterRule(localContext, 444, MySqlParser.RULE_declareVariable); + this.enterRule(localContext, 438, MySqlParser.RULE_declareVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5141; + this.state = 5059; this.match(MySqlParser.KW_DECLARE); - this.state = 5142; + this.state = 5060; localContext._var_names = this.uidList(); - this.state = 5143; + this.state = 5061; this.dataType(); - this.state = 5146; + this.state = 5064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5144; + this.state = 5062; this.match(MySqlParser.KW_DEFAULT); - this.state = 5145; + this.state = 5063; this.expression(0); } } @@ -28060,20 +27716,20 @@ export class MySqlParser extends antlr.Parser { } public declareCondition(): DeclareConditionContext { let localContext = new DeclareConditionContext(this.context, this.state); - this.enterRule(localContext, 446, MySqlParser.RULE_declareCondition); + this.enterRule(localContext, 440, MySqlParser.RULE_declareCondition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5148; + this.state = 5066; this.match(MySqlParser.KW_DECLARE); - this.state = 5149; + this.state = 5067; localContext._condition_name = this.uid(); - this.state = 5150; + this.state = 5068; this.match(MySqlParser.KW_CONDITION); - this.state = 5151; + this.state = 5069; this.match(MySqlParser.KW_FOR); - this.state = 5158; + this.state = 5076; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28083,25 +27739,25 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5152; + this.state = 5070; this.decimalLiteral(); } break; case MySqlParser.KW_SQLSTATE: { - this.state = 5153; + this.state = 5071; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5155; + this.state = 5073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5154; + this.state = 5072; this.match(MySqlParser.KW_VALUE); } } - this.state = 5157; + this.state = 5075; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28126,19 +27782,19 @@ export class MySqlParser extends antlr.Parser { } public declareCursor(): DeclareCursorContext { let localContext = new DeclareCursorContext(this.context, this.state); - this.enterRule(localContext, 448, MySqlParser.RULE_declareCursor); + this.enterRule(localContext, 442, MySqlParser.RULE_declareCursor); try { this.enterOuterAlt(localContext, 1); { - this.state = 5160; + this.state = 5078; this.match(MySqlParser.KW_DECLARE); - this.state = 5161; + this.state = 5079; localContext._condition_name = this.uid(); - this.state = 5162; + this.state = 5080; this.match(MySqlParser.KW_CURSOR); - this.state = 5163; + this.state = 5081; this.match(MySqlParser.KW_FOR); - this.state = 5164; + this.state = 5082; this.selectStatement(); } } @@ -28158,14 +27814,14 @@ export class MySqlParser extends antlr.Parser { } public declareHandler(): DeclareHandlerContext { let localContext = new DeclareHandlerContext(this.context, this.state); - this.enterRule(localContext, 450, MySqlParser.RULE_declareHandler); + this.enterRule(localContext, 444, MySqlParser.RULE_declareHandler); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5166; + this.state = 5084; this.match(MySqlParser.KW_DECLARE); - this.state = 5167; + this.state = 5085; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 61 || _la === 180)) { @@ -28175,29 +27831,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5168; + this.state = 5086; this.match(MySqlParser.KW_HANDLER); - this.state = 5169; + this.state = 5087; this.match(MySqlParser.KW_FOR); - this.state = 5170; + this.state = 5088; this.handlerConditionValue(); - this.state = 5175; + this.state = 5093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5171; + this.state = 5089; this.match(MySqlParser.COMMA); - this.state = 5172; + this.state = 5090; this.handlerConditionValue(); } } - this.state = 5177; + this.state = 5095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5178; + this.state = 5096; this.routineBody(); } } @@ -28217,10 +27873,10 @@ export class MySqlParser extends antlr.Parser { } public handlerConditionValue(): HandlerConditionValueContext { let localContext = new HandlerConditionValueContext(this.context, this.state); - this.enterRule(localContext, 452, MySqlParser.RULE_handlerConditionValue); + this.enterRule(localContext, 446, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 5191; + this.state = 5109; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28232,7 +27888,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5180; + this.state = 5098; this.decimalLiteral(); } break; @@ -28240,19 +27896,19 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5181; + this.state = 5099; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5183; + this.state = 5101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5182; + this.state = 5100; this.match(MySqlParser.KW_VALUE); } } - this.state = 5185; + this.state = 5103; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28807,7 +28463,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5186; + this.state = 5104; (localContext as HandlerConditionNameContext)._condition_name = this.uid(); } break; @@ -28815,7 +28471,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5187; + this.state = 5105; this.match(MySqlParser.KW_SQLWARNING); } break; @@ -28823,9 +28479,9 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5188; + this.state = 5106; this.match(MySqlParser.KW_NOT); - this.state = 5189; + this.state = 5107; this.match(MySqlParser.KW_FOUND); } break; @@ -28833,7 +28489,7 @@ export class MySqlParser extends antlr.Parser { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5190; + this.state = 5108; this.match(MySqlParser.KW_SQLEXCEPTION); } break; @@ -28857,27 +28513,27 @@ export class MySqlParser extends antlr.Parser { } public procedureSqlStatement(): ProcedureSqlStatementContext { let localContext = new ProcedureSqlStatementContext(this.context, this.state); - this.enterRule(localContext, 454, MySqlParser.RULE_procedureSqlStatement); + this.enterRule(localContext, 448, MySqlParser.RULE_procedureSqlStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5195; + this.state = 5113; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 740, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 722, this.context) ) { case 1: { - this.state = 5193; + this.state = 5111; this.compoundStatement(); } break; case 2: { - this.state = 5194; + this.state = 5112; this.sqlStatement(); } break; } - this.state = 5197; + this.state = 5115; this.match(MySqlParser.SEMI); } } @@ -28897,32 +28553,32 @@ export class MySqlParser extends antlr.Parser { } public caseAlternative(): CaseAlternativeContext { let localContext = new CaseAlternativeContext(this.context, this.state); - this.enterRule(localContext, 456, MySqlParser.RULE_caseAlternative); + this.enterRule(localContext, 450, MySqlParser.RULE_caseAlternative); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5199; + this.state = 5117; this.match(MySqlParser.KW_WHEN); - this.state = 5202; + this.state = 5120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { case 1: { - this.state = 5200; + this.state = 5118; this.constant(); } break; case 2: { - this.state = 5201; + this.state = 5119; this.expression(0); } break; } - this.state = 5204; + this.state = 5122; this.match(MySqlParser.KW_THEN); - this.state = 5206; + this.state = 5124; this.errorHandler.sync(this); alternative = 1; do { @@ -28930,7 +28586,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5205; + this.state = 5123; this.procedureSqlStatement(); } } @@ -28938,9 +28594,9 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5208; + this.state = 5126; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 742, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 724, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -28960,18 +28616,18 @@ export class MySqlParser extends antlr.Parser { } public elifAlternative(): ElifAlternativeContext { let localContext = new ElifAlternativeContext(this.context, this.state); - this.enterRule(localContext, 458, MySqlParser.RULE_elifAlternative); + this.enterRule(localContext, 452, MySqlParser.RULE_elifAlternative); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5210; + this.state = 5128; this.match(MySqlParser.KW_ELSEIF); - this.state = 5211; + this.state = 5129; this.expression(0); - this.state = 5212; + this.state = 5130; this.match(MySqlParser.KW_THEN); - this.state = 5214; + this.state = 5132; this.errorHandler.sync(this); alternative = 1; do { @@ -28979,7 +28635,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5213; + this.state = 5131; this.procedureSqlStatement(); } } @@ -28987,9 +28643,9 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5216; + this.state = 5134; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 743, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 725, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29009,46 +28665,46 @@ export class MySqlParser extends antlr.Parser { } public alterUser(): AlterUserContext { let localContext = new AlterUserContext(this.context, this.state); - this.enterRule(localContext, 460, MySqlParser.RULE_alterUser); + this.enterRule(localContext, 454, MySqlParser.RULE_alterUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5218; + this.state = 5136; this.match(MySqlParser.KW_ALTER); - this.state = 5219; + this.state = 5137; this.match(MySqlParser.KW_USER); - this.state = 5221; + this.state = 5139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 744, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 726, this.context) ) { case 1: { - this.state = 5220; + this.state = 5138; this.ifExists(); } break; } - this.state = 5279; + this.state = 5197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 756, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { case 1: { { - this.state = 5223; + this.state = 5141; this.userSpecification(); - this.state = 5228; + this.state = 5146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5224; + this.state = 5142; this.match(MySqlParser.COMMA); - this.state = 5225; + this.state = 5143; this.userSpecification(); } } - this.state = 5230; + this.state = 5148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29058,37 +28714,37 @@ export class MySqlParser extends antlr.Parser { case 2: { { - this.state = 5231; + this.state = 5149; this.alterUserAuthOption(); - this.state = 5236; + this.state = 5154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5232; + this.state = 5150; this.match(MySqlParser.COMMA); - this.state = 5233; + this.state = 5151; this.alterUserAuthOption(); } } - this.state = 5238; + this.state = 5156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5253; + this.state = 5171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5239; + this.state = 5157; this.match(MySqlParser.KW_REQUIRE); - this.state = 5251; + this.state = 5169; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5240; + this.state = 5158; this.match(MySqlParser.KW_NONE); } break; @@ -29098,29 +28754,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5241; + this.state = 5159; this.tlsOption(); - this.state = 5248; + this.state = 5166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5243; + this.state = 5161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5242; + this.state = 5160; this.match(MySqlParser.KW_AND); } } - this.state = 5245; + this.state = 5163; this.tlsOption(); } } - this.state = 5250; + this.state = 5168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29132,49 +28788,49 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5261; + this.state = 5179; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 752, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { case 1: { - this.state = 5255; + this.state = 5173; this.match(MySqlParser.KW_WITH); - this.state = 5257; + this.state = 5175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5256; + this.state = 5174; this.userResourceOption(); } } - this.state = 5259; + this.state = 5177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5267; + this.state = 5185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5265; + this.state = 5183; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5263; + this.state = 5181; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5264; + this.state = 5182; this.userLockOption(); } break; @@ -29182,16 +28838,16 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 5269; + this.state = 5187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5272; + this.state = 5190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5270; + this.state = 5188; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29200,7 +28856,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5271; + this.state = 5189; this.match(MySqlParser.STRING_LITERAL); } } @@ -29212,14 +28868,14 @@ export class MySqlParser extends antlr.Parser { { { { - this.state = 5274; + this.state = 5192; this.userOrRoleName(); } - this.state = 5275; + this.state = 5193; this.match(MySqlParser.KW_DEFAULT); - this.state = 5276; + this.state = 5194; this.match(MySqlParser.KW_ROLE); - this.state = 5277; + this.state = 5195; this.roleOption(); } } @@ -29243,90 +28899,90 @@ export class MySqlParser extends antlr.Parser { } public createUser(): CreateUserContext { let localContext = new CreateUserContext(this.context, this.state); - this.enterRule(localContext, 462, MySqlParser.RULE_createUser); + this.enterRule(localContext, 456, MySqlParser.RULE_createUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5281; + this.state = 5199; this.match(MySqlParser.KW_CREATE); - this.state = 5282; + this.state = 5200; this.match(MySqlParser.KW_USER); - this.state = 5284; + this.state = 5202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5283; + this.state = 5201; this.ifNotExists(); } } - this.state = 5286; + this.state = 5204; this.userName(); - this.state = 5288; + this.state = 5206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5287; + this.state = 5205; this.createUserAuthOption(); } } - this.state = 5297; + this.state = 5215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5290; + this.state = 5208; this.match(MySqlParser.COMMA); - this.state = 5291; + this.state = 5209; this.userName(); - this.state = 5293; + this.state = 5211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5292; + this.state = 5210; this.createUserAuthOption(); } } } } - this.state = 5299; + this.state = 5217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5303; + this.state = 5221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5300; + this.state = 5218; this.match(MySqlParser.KW_DEFAULT); - this.state = 5301; + this.state = 5219; this.match(MySqlParser.KW_ROLE); - this.state = 5302; + this.state = 5220; this.roleOption(); } } - this.state = 5319; + this.state = 5237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5305; + this.state = 5223; this.match(MySqlParser.KW_REQUIRE); - this.state = 5317; + this.state = 5235; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5306; + this.state = 5224; this.match(MySqlParser.KW_NONE); } break; @@ -29336,29 +28992,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5307; + this.state = 5225; this.tlsOption(); - this.state = 5314; + this.state = 5232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5309; + this.state = 5227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5308; + this.state = 5226; this.match(MySqlParser.KW_AND); } } - this.state = 5311; + this.state = 5229; this.tlsOption(); } } - this.state = 5316; + this.state = 5234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29370,49 +29026,49 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5327; + this.state = 5245; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { - this.state = 5321; + this.state = 5239; this.match(MySqlParser.KW_WITH); - this.state = 5323; + this.state = 5241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5322; + this.state = 5240; this.userResourceOption(); } } - this.state = 5325; + this.state = 5243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5333; + this.state = 5251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5331; + this.state = 5249; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5329; + this.state = 5247; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5330; + this.state = 5248; this.userLockOption(); } break; @@ -29420,16 +29076,16 @@ export class MySqlParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 5335; + this.state = 5253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5338; + this.state = 5256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5336; + this.state = 5254; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29438,7 +29094,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5337; + this.state = 5255; this.match(MySqlParser.STRING_LITERAL); } } @@ -29461,40 +29117,40 @@ export class MySqlParser extends antlr.Parser { } public dropUser(): DropUserContext { let localContext = new DropUserContext(this.context, this.state); - this.enterRule(localContext, 464, MySqlParser.RULE_dropUser); + this.enterRule(localContext, 458, MySqlParser.RULE_dropUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5340; + this.state = 5258; this.match(MySqlParser.KW_DROP); - this.state = 5341; + this.state = 5259; this.match(MySqlParser.KW_USER); - this.state = 5343; + this.state = 5261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5342; + this.state = 5260; this.ifExists(); } } - this.state = 5345; + this.state = 5263; this.userName(); - this.state = 5350; + this.state = 5268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5346; + this.state = 5264; this.match(MySqlParser.COMMA); - this.state = 5347; + this.state = 5265; this.userName(); } } - this.state = 5352; + this.state = 5270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29516,73 +29172,73 @@ export class MySqlParser extends antlr.Parser { } public grantStatement(): GrantStatementContext { let localContext = new GrantStatementContext(this.context, this.state); - this.enterRule(localContext, 466, MySqlParser.RULE_grantStatement); + this.enterRule(localContext, 460, MySqlParser.RULE_grantStatement); let _la: number; try { let alternative: number; - this.state = 5442; + this.state = 5360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 772, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5353; + this.state = 5271; this.match(MySqlParser.KW_GRANT); - this.state = 5354; + this.state = 5272; this.privelegeClause(); - this.state = 5359; + this.state = 5277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5355; + this.state = 5273; this.match(MySqlParser.COMMA); - this.state = 5356; + this.state = 5274; this.privelegeClause(); } } - this.state = 5361; + this.state = 5279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5362; + this.state = 5280; this.match(MySqlParser.KW_ON); - this.state = 5364; + this.state = 5282; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 774, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 756, this.context) ) { case 1: { - this.state = 5363; + this.state = 5281; this.privilegeObjectType(); } break; } - this.state = 5366; + this.state = 5284; this.privilegeLevel(); - this.state = 5367; + this.state = 5285; this.match(MySqlParser.KW_TO); - this.state = 5377; + this.state = 5295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 758, this.context) ) { case 1: { { - this.state = 5368; + this.state = 5286; this.userAuthOption(); - this.state = 5373; + this.state = 5291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5369; + this.state = 5287; this.match(MySqlParser.COMMA); - this.state = 5370; + this.state = 5288; this.userAuthOption(); } } - this.state = 5375; + this.state = 5293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29591,24 +29247,24 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 5376; + this.state = 5294; this.userOrRoleNames(); } break; } - this.state = 5393; + this.state = 5311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5379; + this.state = 5297; this.match(MySqlParser.KW_REQUIRE); - this.state = 5391; + this.state = 5309; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5380; + this.state = 5298; localContext._tlsNone = this.match(MySqlParser.KW_NONE); } break; @@ -29618,29 +29274,29 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5381; + this.state = 5299; this.tlsOption(); - this.state = 5388; + this.state = 5306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5383; + this.state = 5301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5382; + this.state = 5300; this.match(MySqlParser.KW_AND); } } - this.state = 5385; + this.state = 5303; this.tlsOption(); } } - this.state = 5390; + this.state = 5308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29652,27 +29308,27 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 5404; + this.state = 5322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 783, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 765, this.context) ) { case 1: { - this.state = 5395; + this.state = 5313; this.match(MySqlParser.KW_WITH); - this.state = 5401; + this.state = 5319; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 782, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 764, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5399; + this.state = 5317; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_GRANT: { - this.state = 5396; + this.state = 5314; this.match(MySqlParser.KW_GRANT); - this.state = 5397; + this.state = 5315; this.match(MySqlParser.KW_OPTION); } break; @@ -29681,7 +29337,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_MAX_UPDATES_PER_HOUR: case MySqlParser.KW_MAX_USER_CONNECTIONS: { - this.state = 5398; + this.state = 5316; this.userResourceOption(); } break; @@ -29690,32 +29346,32 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 5403; + this.state = 5321; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 782, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 764, this.context); } } break; } - this.state = 5413; + this.state = 5331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 5406; + this.state = 5324; this.match(MySqlParser.KW_AS); - this.state = 5407; + this.state = 5325; this.userName(); - this.state = 5411; + this.state = 5329; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { case 1: { - this.state = 5408; + this.state = 5326; this.match(MySqlParser.KW_WITH); - this.state = 5409; + this.state = 5327; this.match(MySqlParser.KW_ROLE); - this.state = 5410; + this.state = 5328; this.roleOption(); } break; @@ -29728,76 +29384,76 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5415; + this.state = 5333; this.match(MySqlParser.KW_GRANT); - this.state = 5418; + this.state = 5336; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 786, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 768, this.context) ) { case 1: { - this.state = 5416; + this.state = 5334; this.match(MySqlParser.KW_PROXY); - this.state = 5417; + this.state = 5335; this.match(MySqlParser.KW_ON); } break; } { - this.state = 5420; + this.state = 5338; this.userOrRoleName(); } - this.state = 5425; + this.state = 5343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5421; + this.state = 5339; this.match(MySqlParser.COMMA); { - this.state = 5422; + this.state = 5340; this.userOrRoleName(); } } } - this.state = 5427; + this.state = 5345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5428; + this.state = 5346; this.match(MySqlParser.KW_TO); { - this.state = 5429; + this.state = 5347; this.userOrRoleName(); } - this.state = 5434; + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5430; + this.state = 5348; this.match(MySqlParser.COMMA); { - this.state = 5431; + this.state = 5349; this.userOrRoleName(); } } } - this.state = 5436; + this.state = 5354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5440; + this.state = 5358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 789, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { - this.state = 5437; + this.state = 5355; this.match(MySqlParser.KW_WITH); - this.state = 5438; + this.state = 5356; this.match(MySqlParser.KW_ADMIN); - this.state = 5439; + this.state = 5357; this.match(MySqlParser.KW_OPTION); } break; @@ -29822,39 +29478,39 @@ export class MySqlParser extends antlr.Parser { } public roleOption(): RoleOptionContext { let localContext = new RoleOptionContext(this.context, this.state); - this.enterRule(localContext, 468, MySqlParser.RULE_roleOption); + this.enterRule(localContext, 462, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5452; + this.state = 5370; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 774, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5444; + this.state = 5362; this.match(MySqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5445; + this.state = 5363; this.match(MySqlParser.KW_NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5446; + this.state = 5364; this.match(MySqlParser.KW_ALL); - this.state = 5449; + this.state = 5367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5447; + this.state = 5365; this.match(MySqlParser.KW_EXCEPT); - this.state = 5448; + this.state = 5366; this.userOrRoleNames(); } } @@ -29864,7 +29520,7 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5451; + this.state = 5369; this.userOrRoleNames(); } break; @@ -29886,50 +29542,50 @@ export class MySqlParser extends antlr.Parser { } public grantProxy(): GrantProxyContext { let localContext = new GrantProxyContext(this.context, this.state); - this.enterRule(localContext, 470, MySqlParser.RULE_grantProxy); + this.enterRule(localContext, 464, MySqlParser.RULE_grantProxy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5454; + this.state = 5372; this.match(MySqlParser.KW_GRANT); - this.state = 5455; + this.state = 5373; this.match(MySqlParser.KW_PROXY); - this.state = 5456; + this.state = 5374; this.match(MySqlParser.KW_ON); - this.state = 5457; + this.state = 5375; localContext._fromFirst = this.userName(); - this.state = 5458; + this.state = 5376; this.match(MySqlParser.KW_TO); - this.state = 5459; + this.state = 5377; localContext._toFirst = this.userName(); - this.state = 5464; + this.state = 5382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5460; + this.state = 5378; this.match(MySqlParser.COMMA); - this.state = 5461; + this.state = 5379; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5466; + this.state = 5384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5470; + this.state = 5388; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { case 1: { - this.state = 5467; + this.state = 5385; this.match(MySqlParser.KW_WITH); - this.state = 5468; + this.state = 5386; this.match(MySqlParser.KW_GRANT); - this.state = 5469; + this.state = 5387; this.match(MySqlParser.KW_OPTION); } break; @@ -29952,69 +29608,69 @@ export class MySqlParser extends antlr.Parser { } public alterResourceGroup(): AlterResourceGroupContext { let localContext = new AlterResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 472, MySqlParser.RULE_alterResourceGroup); + this.enterRule(localContext, 466, MySqlParser.RULE_alterResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5472; + this.state = 5390; this.match(MySqlParser.KW_ALTER); - this.state = 5473; + this.state = 5391; this.match(MySqlParser.KW_RESOURCE); - this.state = 5474; + this.state = 5392; this.match(MySqlParser.KW_GROUP); - this.state = 5475; + this.state = 5393; this.groupName(); - this.state = 5481; + this.state = 5399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5476; + this.state = 5394; this.match(MySqlParser.KW_VCPU); - this.state = 5478; + this.state = 5396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5477; + this.state = 5395; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5480; + this.state = 5398; this.resourceGroupVcpuSpec(); } } - this.state = 5488; + this.state = 5406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5483; + this.state = 5401; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5485; + this.state = 5403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5484; + this.state = 5402; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5487; + this.state = 5405; this.decimalLiteral(); } } - this.state = 5494; + this.state = 5412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5490; + this.state = 5408; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30023,12 +29679,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5492; + this.state = 5410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5491; + this.state = 5409; this.match(MySqlParser.KW_FORCE); } } @@ -30054,24 +29710,24 @@ export class MySqlParser extends antlr.Parser { } public createResourceGroup(): CreateResourceGroupContext { let localContext = new CreateResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 474, MySqlParser.RULE_createResourceGroup); + this.enterRule(localContext, 468, MySqlParser.RULE_createResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5496; + this.state = 5414; this.match(MySqlParser.KW_CREATE); - this.state = 5497; + this.state = 5415; this.match(MySqlParser.KW_RESOURCE); - this.state = 5498; + this.state = 5416; this.match(MySqlParser.KW_GROUP); - this.state = 5499; + this.state = 5417; this.groupNameCreate(); - this.state = 5500; + this.state = 5418; this.match(MySqlParser.KW_TYPE); - this.state = 5501; + this.state = 5419; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5502; + this.state = 5420; _la = this.tokenStream.LA(1); if(!(_la === 678 || _la === 835)) { this.errorHandler.recoverInline(this); @@ -30080,56 +29736,56 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5508; + this.state = 5426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5503; + this.state = 5421; this.match(MySqlParser.KW_VCPU); - this.state = 5505; + this.state = 5423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5504; + this.state = 5422; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5507; + this.state = 5425; this.resourceGroupVcpuSpec(); } } - this.state = 5515; + this.state = 5433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5510; + this.state = 5428; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5512; + this.state = 5430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5511; + this.state = 5429; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5514; + this.state = 5432; this.decimalLiteral(); } } - this.state = 5518; + this.state = 5436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5517; + this.state = 5435; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30159,25 +29815,25 @@ export class MySqlParser extends antlr.Parser { } public dropResourceGroup(): DropResourceGroupContext { let localContext = new DropResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 476, MySqlParser.RULE_dropResourceGroup); + this.enterRule(localContext, 470, MySqlParser.RULE_dropResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5520; + this.state = 5438; this.match(MySqlParser.KW_DROP); - this.state = 5521; + this.state = 5439; this.match(MySqlParser.KW_RESOURCE); - this.state = 5522; + this.state = 5440; this.match(MySqlParser.KW_GROUP); - this.state = 5523; + this.state = 5441; this.groupName(); - this.state = 5525; + this.state = 5443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5524; + this.state = 5442; this.match(MySqlParser.KW_FORCE); } } @@ -30200,41 +29856,41 @@ export class MySqlParser extends antlr.Parser { } public setResourceGroup(): SetResourceGroupContext { let localContext = new SetResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 478, MySqlParser.RULE_setResourceGroup); + this.enterRule(localContext, 472, MySqlParser.RULE_setResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5527; + this.state = 5445; this.match(MySqlParser.KW_SET); - this.state = 5528; + this.state = 5446; this.match(MySqlParser.KW_RESOURCE); - this.state = 5529; + this.state = 5447; this.match(MySqlParser.KW_GROUP); - this.state = 5530; + this.state = 5448; this.groupName(); - this.state = 5540; + this.state = 5458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5531; + this.state = 5449; this.match(MySqlParser.KW_FOR); - this.state = 5532; + this.state = 5450; this.decimalLiteral(); - this.state = 5537; + this.state = 5455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5533; + this.state = 5451; this.match(MySqlParser.COMMA); - this.state = 5534; + this.state = 5452; this.decimalLiteral(); } } - this.state = 5539; + this.state = 5457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30259,48 +29915,48 @@ export class MySqlParser extends antlr.Parser { } public resourceGroupVcpuSpec(): ResourceGroupVcpuSpecContext { let localContext = new ResourceGroupVcpuSpecContext(this.context, this.state); - this.enterRule(localContext, 480, MySqlParser.RULE_resourceGroupVcpuSpec); + this.enterRule(localContext, 474, MySqlParser.RULE_resourceGroupVcpuSpec); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5547; + this.state = 5465; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: { - this.state = 5542; + this.state = 5460; this.decimalLiteral(); } break; case 2: { - this.state = 5543; + this.state = 5461; this.decimalLiteral(); - this.state = 5544; + this.state = 5462; this.match(MySqlParser.MINUS); - this.state = 5545; + this.state = 5463; this.decimalLiteral(); } break; } - this.state = 5553; + this.state = 5471; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 810, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 792, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5549; + this.state = 5467; this.match(MySqlParser.COMMA); - this.state = 5550; + this.state = 5468; this.resourceGroupVcpuSpec(); } } } - this.state = 5555; + this.state = 5473; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 810, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 792, this.context); } } } @@ -30320,30 +29976,30 @@ export class MySqlParser extends antlr.Parser { } public renameUser(): RenameUserContext { let localContext = new RenameUserContext(this.context, this.state); - this.enterRule(localContext, 482, MySqlParser.RULE_renameUser); + this.enterRule(localContext, 476, MySqlParser.RULE_renameUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5556; + this.state = 5474; this.match(MySqlParser.KW_RENAME); - this.state = 5557; + this.state = 5475; this.match(MySqlParser.KW_USER); - this.state = 5558; + this.state = 5476; this.renameUserClause(); - this.state = 5563; + this.state = 5481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5559; + this.state = 5477; this.match(MySqlParser.COMMA); - this.state = 5560; + this.state = 5478; this.renameUserClause(); } } - this.state = 5565; + this.state = 5483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30365,70 +30021,70 @@ export class MySqlParser extends antlr.Parser { } public revokeStatement(): RevokeStatementContext { let localContext = new RevokeStatementContext(this.context, this.state); - this.enterRule(localContext, 484, MySqlParser.RULE_revokeStatement); + this.enterRule(localContext, 478, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5618; + this.state = 5536; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5566; + this.state = 5484; this.match(MySqlParser.KW_REVOKE); - this.state = 5568; + this.state = 5486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5567; + this.state = 5485; this.ifExists(); } } - this.state = 5570; + this.state = 5488; this.privelegeClause(); - this.state = 5575; + this.state = 5493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5571; + this.state = 5489; this.match(MySqlParser.COMMA); - this.state = 5572; + this.state = 5490; this.privelegeClause(); } } - this.state = 5577; + this.state = 5495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5578; + this.state = 5496; this.match(MySqlParser.KW_ON); - this.state = 5580; + this.state = 5498; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { case 1: { - this.state = 5579; + this.state = 5497; this.privilegeObjectType(); } break; } - this.state = 5582; + this.state = 5500; this.privilegeLevel(); - this.state = 5583; + this.state = 5501; this.match(MySqlParser.KW_FROM); - this.state = 5584; + this.state = 5502; this.userOrRoleNames(); - this.state = 5586; + this.state = 5504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5585; + this.state = 5503; this.ignoreUnknownUser(); } } @@ -30439,46 +30095,46 @@ export class MySqlParser extends antlr.Parser { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5588; + this.state = 5506; this.match(MySqlParser.KW_REVOKE); - this.state = 5590; + this.state = 5508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5589; + this.state = 5507; this.ifExists(); } } - this.state = 5592; + this.state = 5510; this.match(MySqlParser.KW_ALL); - this.state = 5594; + this.state = 5512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5593; + this.state = 5511; this.match(MySqlParser.KW_PRIVILEGES); } } - this.state = 5596; + this.state = 5514; this.match(MySqlParser.COMMA); - this.state = 5597; + this.state = 5515; this.match(MySqlParser.KW_GRANT); - this.state = 5598; + this.state = 5516; this.match(MySqlParser.KW_OPTION); - this.state = 5599; + this.state = 5517; this.match(MySqlParser.KW_FROM); - this.state = 5600; + this.state = 5518; this.userOrRoleNames(); - this.state = 5602; + this.state = 5520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5601; + this.state = 5519; this.ignoreUnknownUser(); } } @@ -30489,42 +30145,42 @@ export class MySqlParser extends antlr.Parser { localContext = new ProxyAndRoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5604; + this.state = 5522; this.match(MySqlParser.KW_REVOKE); - this.state = 5606; + this.state = 5524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 801, this.context) ) { case 1: { - this.state = 5605; + this.state = 5523; this.ifExists(); } break; } - this.state = 5610; + this.state = 5528; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 802, this.context) ) { case 1: { - this.state = 5608; + this.state = 5526; this.match(MySqlParser.KW_PROXY); - this.state = 5609; + this.state = 5527; this.match(MySqlParser.KW_ON); } break; } - this.state = 5612; + this.state = 5530; this.userOrRoleNames(); - this.state = 5613; + this.state = 5531; this.match(MySqlParser.KW_FROM); - this.state = 5614; + this.state = 5532; this.userOrRoleNames(); - this.state = 5616; + this.state = 5534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5615; + this.state = 5533; this.ignoreUnknownUser(); } } @@ -30549,15 +30205,15 @@ export class MySqlParser extends antlr.Parser { } public ignoreUnknownUser(): IgnoreUnknownUserContext { let localContext = new IgnoreUnknownUserContext(this.context, this.state); - this.enterRule(localContext, 486, MySqlParser.RULE_ignoreUnknownUser); + this.enterRule(localContext, 480, MySqlParser.RULE_ignoreUnknownUser); try { this.enterOuterAlt(localContext, 1); { - this.state = 5620; + this.state = 5538; this.match(MySqlParser.KW_IGNORE); - this.state = 5621; + this.state = 5539; this.match(MySqlParser.KW_UNKNOWN); - this.state = 5622; + this.state = 5540; this.match(MySqlParser.KW_USER); } } @@ -30577,12 +30233,12 @@ export class MySqlParser extends antlr.Parser { } public privilegeObjectType(): PrivilegeObjectTypeContext { let localContext = new PrivilegeObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 488, MySqlParser.RULE_privilegeObjectType); + this.enterRule(localContext, 482, MySqlParser.RULE_privilegeObjectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5624; + this.state = 5542; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 173 || _la === 409)) { this.errorHandler.recoverInline(this); @@ -30609,47 +30265,47 @@ export class MySqlParser extends antlr.Parser { } public setPasswordStatement(): SetPasswordStatementContext { let localContext = new SetPasswordStatementContext(this.context, this.state); - this.enterRule(localContext, 490, MySqlParser.RULE_setPasswordStatement); + this.enterRule(localContext, 484, MySqlParser.RULE_setPasswordStatement); let _la: number; try { - this.state = 5658; + this.state = 5576; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 811, this.context) ) { case 1: localContext = new V57Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5626; + this.state = 5544; this.match(MySqlParser.KW_SET); - this.state = 5627; + this.state = 5545; this.match(MySqlParser.KW_PASSWORD); - this.state = 5630; + this.state = 5548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5628; + this.state = 5546; this.match(MySqlParser.KW_FOR); - this.state = 5629; + this.state = 5547; this.userName(); } } - this.state = 5632; + this.state = 5550; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5635; + this.state = 5553; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OLD_PASSWORD: case MySqlParser.KW_PASSWORD: { - this.state = 5633; + this.state = 5551; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5634; + this.state = 5552; this.match(MySqlParser.STRING_LITERAL); } break; @@ -30662,66 +30318,66 @@ export class MySqlParser extends antlr.Parser { localContext = new V80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5637; + this.state = 5555; this.match(MySqlParser.KW_SET); - this.state = 5638; + this.state = 5556; this.match(MySqlParser.KW_PASSWORD); - this.state = 5641; + this.state = 5559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5639; + this.state = 5557; this.match(MySqlParser.KW_FOR); - this.state = 5640; + this.state = 5558; this.userName(); } } - this.state = 5647; + this.state = 5565; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 5643; + this.state = 5561; this.match(MySqlParser.KW_TO); - this.state = 5644; + this.state = 5562; this.match(MySqlParser.KW_RANDOM); } break; case MySqlParser.EQUAL_SYMBOL: { - this.state = 5645; + this.state = 5563; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5646; + this.state = 5564; this.match(MySqlParser.STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5651; + this.state = 5569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 827, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { case 1: { - this.state = 5649; + this.state = 5567; this.match(MySqlParser.KW_REPLACE); - this.state = 5650; + this.state = 5568; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5656; + this.state = 5574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5653; + this.state = 5571; this.match(MySqlParser.KW_RETAIN); - this.state = 5654; + this.state = 5572; this.match(MySqlParser.KW_CURRENT); - this.state = 5655; + this.state = 5573; this.match(MySqlParser.KW_PASSWORD); } } @@ -30746,13 +30402,13 @@ export class MySqlParser extends antlr.Parser { } public userSpecification(): UserSpecificationContext { let localContext = new UserSpecificationContext(this.context, this.state); - this.enterRule(localContext, 492, MySqlParser.RULE_userSpecification); + this.enterRule(localContext, 486, MySqlParser.RULE_userSpecification); try { this.enterOuterAlt(localContext, 1); { - this.state = 5660; + this.state = 5578; this.userName(); - this.state = 5661; + this.state = 5579; this.userPasswordOption(); } } @@ -30772,77 +30428,66 @@ export class MySqlParser extends antlr.Parser { } public alterUserAuthOption(): AlterUserAuthOptionContext { let localContext = new AlterUserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 494, MySqlParser.RULE_alterUserAuthOption); + this.enterRule(localContext, 488, MySqlParser.RULE_alterUserAuthOption); let _la: number; try { let alternative: number; - this.state = 5701; + this.enterOuterAlt(localContext, 1); + { + this.state = 5581; + this.userName(); + this.state = 5607; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 833, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); { - this.state = 5663; - this.userName(); - this.state = 5664; + this.state = 5582; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5665; + this.state = 5583; this.match(MySqlParser.KW_BY); - this.state = 5666; + this.state = 5584; this.match(MySqlParser.STRING_LITERAL); - this.state = 5667; + this.state = 5585; this.authOptionClause(); } break; case 2: - this.enterOuterAlt(localContext, 2); { - this.state = 5669; - this.userName(); - this.state = 5670; + this.state = 5586; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5671; + this.state = 5587; this.match(MySqlParser.KW_BY); - this.state = 5672; + this.state = 5588; this.match(MySqlParser.KW_RANDOM); - this.state = 5673; + this.state = 5589; this.match(MySqlParser.KW_PASSWORD); - this.state = 5674; + this.state = 5590; this.authOptionClause(); } break; case 3: - this.enterOuterAlt(localContext, 3); { - this.state = 5676; - this.userName(); - this.state = 5677; + this.state = 5591; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5678; + this.state = 5592; this.match(MySqlParser.KW_WITH); - this.state = 5679; + this.state = 5593; this.authenticationRule(); } break; case 4: - this.enterOuterAlt(localContext, 4); { - this.state = 5681; - this.userName(); - this.state = 5682; + this.state = 5594; this.match(MySqlParser.KW_DISCARD); - this.state = 5683; + this.state = 5595; this.match(MySqlParser.KW_OLD); - this.state = 5684; + this.state = 5596; this.match(MySqlParser.KW_PASSWORD); } break; case 5: - this.enterOuterAlt(localContext, 5); { - this.state = 5686; - this.userName(); - this.state = 5692; + this.state = 5602; this.errorHandler.sync(this); alternative = 1; do { @@ -30850,7 +30495,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 5687; + this.state = 5597; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -30859,14 +30504,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5688; + this.state = 5598; this.factor(); - this.state = 5690; + this.state = 5600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5689; + this.state = 5599; this.factorAuthOption(); } } @@ -30877,37 +30522,20 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5694; + this.state = 5604; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 813, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 6: - this.enterOuterAlt(localContext, 6); { - this.state = 5696; - this.userName(); - this.state = 5698; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 873 || _la === 874) { - { - this.state = 5697; - this.registrationOption(); - } - } - - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 5700; - this.userName(); + this.state = 5606; + this.registrationOption(); } break; } + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -30925,34 +30553,34 @@ export class MySqlParser extends antlr.Parser { } public createUserAuthOption(): CreateUserAuthOptionContext { let localContext = new CreateUserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 496, MySqlParser.RULE_createUserAuthOption); + this.enterRule(localContext, 490, MySqlParser.RULE_createUserAuthOption); let _la: number; try { - this.state = 5739; + this.state = 5645; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 821, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5703; + this.state = 5609; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5704; + this.state = 5610; this.match(MySqlParser.KW_BY); - this.state = 5710; + this.state = 5616; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5705; + this.state = 5611; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5706; + this.state = 5612; this.match(MySqlParser.KW_RANDOM); - this.state = 5707; + this.state = 5613; this.match(MySqlParser.KW_PASSWORD); } } @@ -30960,9 +30588,9 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_PASSWORD: { { - this.state = 5708; + this.state = 5614; this.match(MySqlParser.KW_PASSWORD); - this.state = 5709; + this.state = 5615; this.match(MySqlParser.STRING_LITERAL); } } @@ -30970,14 +30598,14 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5714; + this.state = 5620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5712; + this.state = 5618; this.match(MySqlParser.KW_AND); - this.state = 5713; + this.state = 5619; this.createUserAuthOption(); } } @@ -30987,35 +30615,35 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5716; + this.state = 5622; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5717; + this.state = 5623; this.match(MySqlParser.KW_WITH); - this.state = 5718; + this.state = 5624; localContext._authPlugin = this.uid(); - this.state = 5727; + this.state = 5633; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5719; + this.state = 5625; this.match(MySqlParser.KW_BY); - this.state = 5723; + this.state = 5629; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5720; + this.state = 5626; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5721; + this.state = 5627; this.match(MySqlParser.KW_RANDOM); - this.state = 5722; + this.state = 5628; this.match(MySqlParser.KW_PASSWORD); } } @@ -31028,9 +30656,9 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_AS: { - this.state = 5725; + this.state = 5631; this.match(MySqlParser.KW_AS); - this.state = 5726; + this.state = 5632; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31111,14 +30739,14 @@ export class MySqlParser extends antlr.Parser { default: break; } - this.state = 5731; + this.state = 5637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5729; + this.state = 5635; this.match(MySqlParser.KW_AND); - this.state = 5730; + this.state = 5636; this.createUserAuthOption(); } } @@ -31128,18 +30756,18 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5733; + this.state = 5639; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5734; + this.state = 5640; this.match(MySqlParser.KW_WITH); - this.state = 5735; + this.state = 5641; localContext._authPlugin = this.uid(); - this.state = 5737; + this.state = 5643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 427) { { - this.state = 5736; + this.state = 5642; this.createUserInitialAuthOption(); } } @@ -31164,38 +30792,38 @@ export class MySqlParser extends antlr.Parser { } public createUserInitialAuthOption(): CreateUserInitialAuthOptionContext { let localContext = new CreateUserInitialAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 498, MySqlParser.RULE_createUserInitialAuthOption); + this.enterRule(localContext, 492, MySqlParser.RULE_createUserInitialAuthOption); try { - this.state = 5758; + this.state = 5664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 823, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5741; + this.state = 5647; this.match(MySqlParser.KW_INITIAL); - this.state = 5742; + this.state = 5648; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5743; + this.state = 5649; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5744; + this.state = 5650; this.match(MySqlParser.KW_BY); - this.state = 5748; + this.state = 5654; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_RANDOM: { { - this.state = 5745; + this.state = 5651; this.match(MySqlParser.KW_RANDOM); - this.state = 5746; + this.state = 5652; this.match(MySqlParser.KW_PASSWORD); } } break; case MySqlParser.STRING_LITERAL: { - this.state = 5747; + this.state = 5653; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31207,19 +30835,19 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5750; + this.state = 5656; this.match(MySqlParser.KW_INITIAL); - this.state = 5751; + this.state = 5657; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5752; + this.state = 5658; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5753; + this.state = 5659; this.match(MySqlParser.KW_WITH); - this.state = 5754; + this.state = 5660; localContext._authPlugin = this.uid(); - this.state = 5755; + this.state = 5661; this.match(MySqlParser.KW_AS); - this.state = 5756; + this.state = 5662; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31241,24 +30869,24 @@ export class MySqlParser extends antlr.Parser { } public userAuthOption(): UserAuthOptionContext { let localContext = new UserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 500, MySqlParser.RULE_userAuthOption); + this.enterRule(localContext, 494, MySqlParser.RULE_userAuthOption); try { - this.state = 5785; + this.state = 5691; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 843, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5760; + this.state = 5666; this.userName(); - this.state = 5761; + this.state = 5667; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5762; + this.state = 5668; this.match(MySqlParser.KW_BY); - this.state = 5763; + this.state = 5669; this.match(MySqlParser.KW_PASSWORD); - this.state = 5764; + this.state = 5670; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -31266,17 +30894,17 @@ export class MySqlParser extends antlr.Parser { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5766; + this.state = 5672; this.userName(); - this.state = 5767; + this.state = 5673; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5768; + this.state = 5674; this.match(MySqlParser.KW_BY); - this.state = 5769; + this.state = 5675; this.match(MySqlParser.KW_RANDOM); - this.state = 5770; + this.state = 5676; this.match(MySqlParser.KW_PASSWORD); - this.state = 5771; + this.state = 5677; this.authOptionClause(); } break; @@ -31284,15 +30912,15 @@ export class MySqlParser extends antlr.Parser { localContext = new StringAuthOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5773; + this.state = 5679; this.userName(); - this.state = 5774; + this.state = 5680; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5775; + this.state = 5681; this.match(MySqlParser.KW_BY); - this.state = 5776; + this.state = 5682; this.match(MySqlParser.STRING_LITERAL); - this.state = 5777; + this.state = 5683; this.authOptionClause(); } break; @@ -31300,13 +30928,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5779; + this.state = 5685; this.userName(); - this.state = 5780; + this.state = 5686; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5781; + this.state = 5687; this.match(MySqlParser.KW_WITH); - this.state = 5782; + this.state = 5688; this.authenticationRule(); } break; @@ -31314,7 +30942,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5784; + this.state = 5690; this.userName(); } break; @@ -31336,33 +30964,33 @@ export class MySqlParser extends antlr.Parser { } public authOptionClause(): AuthOptionClauseContext { let localContext = new AuthOptionClauseContext(this.context, this.state); - this.enterRule(localContext, 502, MySqlParser.RULE_authOptionClause); + this.enterRule(localContext, 496, MySqlParser.RULE_authOptionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5789; + this.state = 5695; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 844, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { case 1: { - this.state = 5787; + this.state = 5693; this.match(MySqlParser.KW_REPLACE); - this.state = 5788; + this.state = 5694; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5794; + this.state = 5700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5791; + this.state = 5697; this.match(MySqlParser.KW_RETAIN); - this.state = 5792; + this.state = 5698; this.match(MySqlParser.KW_CURRENT); - this.state = 5793; + this.state = 5699; this.match(MySqlParser.KW_PASSWORD); } } @@ -31385,24 +31013,24 @@ export class MySqlParser extends antlr.Parser { } public authenticationRule(): AuthenticationRuleContext { let localContext = new AuthenticationRuleContext(this.context, this.state); - this.enterRule(localContext, 504, MySqlParser.RULE_authenticationRule); + this.enterRule(localContext, 498, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5810; + this.state = 5716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5796; + this.state = 5702; (localContext as ModuleContext)._authPlugin = this.uid(); - this.state = 5804; + this.state = 5710; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { case 1: { - this.state = 5797; + this.state = 5703; _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 20 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -31411,27 +31039,27 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5801; + this.state = 5707; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5798; + this.state = 5704; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { - this.state = 5799; + this.state = 5705; this.match(MySqlParser.KW_RANDOM); - this.state = 5800; + this.state = 5706; this.match(MySqlParser.KW_PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5803; + this.state = 5709; this.authOptionClause(); } break; @@ -31442,11 +31070,11 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5806; + this.state = 5712; (localContext as PasswordModuleOptionContext)._authPlugin = this.uid(); - this.state = 5807; + this.state = 5713; this.match(MySqlParser.KW_USING); - this.state = 5808; + this.state = 5714; this.passwordFunctionClause(); } break; @@ -31468,49 +31096,49 @@ export class MySqlParser extends antlr.Parser { } public tlsOption(): TlsOptionContext { let localContext = new TlsOptionContext(this.context, this.state); - this.enterRule(localContext, 506, MySqlParser.RULE_tlsOption); + this.enterRule(localContext, 500, MySqlParser.RULE_tlsOption); try { - this.state = 5820; + this.state = 5726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5812; + this.state = 5718; this.match(MySqlParser.KW_SSL); } break; case MySqlParser.KW_X509: this.enterOuterAlt(localContext, 2); { - this.state = 5813; + this.state = 5719; this.match(MySqlParser.KW_X509); } break; case MySqlParser.KW_CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5814; + this.state = 5720; this.match(MySqlParser.KW_CIPHER); - this.state = 5815; + this.state = 5721; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5816; + this.state = 5722; this.match(MySqlParser.KW_ISSUER); - this.state = 5817; + this.state = 5723; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5818; + this.state = 5724; this.match(MySqlParser.KW_SUBJECT); - this.state = 5819; + this.state = 5725; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31534,44 +31162,44 @@ export class MySqlParser extends antlr.Parser { } public userResourceOption(): UserResourceOptionContext { let localContext = new UserResourceOptionContext(this.context, this.state); - this.enterRule(localContext, 508, MySqlParser.RULE_userResourceOption); + this.enterRule(localContext, 502, MySqlParser.RULE_userResourceOption); try { - this.state = 5830; + this.state = 5736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5822; + this.state = 5728; this.match(MySqlParser.KW_MAX_QUERIES_PER_HOUR); - this.state = 5823; + this.state = 5729; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5824; + this.state = 5730; this.match(MySqlParser.KW_MAX_UPDATES_PER_HOUR); - this.state = 5825; + this.state = 5731; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5826; + this.state = 5732; this.match(MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR); - this.state = 5827; + this.state = 5733; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5828; + this.state = 5734; this.match(MySqlParser.KW_MAX_USER_CONNECTIONS); - this.state = 5829; + this.state = 5735; this.decimalLiteral(); } break; @@ -31595,41 +31223,41 @@ export class MySqlParser extends antlr.Parser { } public userPasswordOption(): UserPasswordOptionContext { let localContext = new UserPasswordOptionContext(this.context, this.state); - this.enterRule(localContext, 510, MySqlParser.RULE_userPasswordOption); + this.enterRule(localContext, 504, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5870; + this.state = 5776; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 856, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5832; + this.state = 5738; this.match(MySqlParser.KW_PASSWORD); - this.state = 5833; + this.state = 5739; this.match(MySqlParser.KW_EXPIRE); - this.state = 5840; + this.state = 5746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5834; + this.state = 5740; localContext._expireType = this.match(MySqlParser.KW_DEFAULT); } break; case MySqlParser.KW_NEVER: { - this.state = 5835; + this.state = 5741; localContext._expireType = this.match(MySqlParser.KW_NEVER); } break; case MySqlParser.KW_INTERVAL: { - this.state = 5836; + this.state = 5742; localContext._expireType = this.match(MySqlParser.KW_INTERVAL); - this.state = 5837; + this.state = 5743; this.decimalLiteral(); - this.state = 5838; + this.state = 5744; this.match(MySqlParser.KW_DAY); } break; @@ -31712,16 +31340,16 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5842; + this.state = 5748; this.match(MySqlParser.KW_PASSWORD); - this.state = 5843; + this.state = 5749; this.match(MySqlParser.KW_HISTORY); - this.state = 5846; + this.state = 5752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5844; + this.state = 5750; this.match(MySqlParser.KW_DEFAULT); } break; @@ -31732,7 +31360,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5845; + this.state = 5751; this.decimalLiteral(); } break; @@ -31744,18 +31372,18 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5848; + this.state = 5754; this.match(MySqlParser.KW_PASSWORD); - this.state = 5849; + this.state = 5755; this.match(MySqlParser.KW_REUSE); - this.state = 5850; + this.state = 5756; this.match(MySqlParser.KW_INTERVAL); - this.state = 5855; + this.state = 5761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5851; + this.state = 5757; this.match(MySqlParser.KW_DEFAULT); } break; @@ -31766,9 +31394,9 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5852; + this.state = 5758; this.decimalLiteral(); - this.state = 5853; + this.state = 5759; this.match(MySqlParser.KW_DAY); } break; @@ -31780,18 +31408,18 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5857; + this.state = 5763; this.match(MySqlParser.KW_PASSWORD); - this.state = 5858; + this.state = 5764; this.match(MySqlParser.KW_REQUIRE); - this.state = 5859; + this.state = 5765; this.match(MySqlParser.KW_CURRENT); - this.state = 5861; + this.state = 5767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 122) { { - this.state = 5860; + this.state = 5766; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -31808,18 +31436,18 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5863; + this.state = 5769; this.match(MySqlParser.KW_FAILED_LOGIN_ATTEMPTS); - this.state = 5864; + this.state = 5770; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5865; + this.state = 5771; this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); - this.state = 5868; + this.state = 5774; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -31829,13 +31457,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5866; + this.state = 5772; this.decimalLiteral(); } break; case MySqlParser.KW_UNBOUNDED: { - this.state = 5867; + this.state = 5773; this.match(MySqlParser.KW_UNBOUNDED); } break; @@ -31862,14 +31490,14 @@ export class MySqlParser extends antlr.Parser { } public userLockOption(): UserLockOptionContext { let localContext = new UserLockOptionContext(this.context, this.state); - this.enterRule(localContext, 512, MySqlParser.RULE_userLockOption); + this.enterRule(localContext, 506, MySqlParser.RULE_userLockOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5872; + this.state = 5778; this.match(MySqlParser.KW_ACCOUNT); - this.state = 5873; + this.state = 5779; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 183)) { @@ -31897,48 +31525,48 @@ export class MySqlParser extends antlr.Parser { } public factorAuthOption(): FactorAuthOptionContext { let localContext = new FactorAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 514, MySqlParser.RULE_factorAuthOption); + this.enterRule(localContext, 508, MySqlParser.RULE_factorAuthOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5875; + this.state = 5781; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5878; + this.state = 5784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 5876; + this.state = 5782; this.match(MySqlParser.KW_WITH); - this.state = 5877; + this.state = 5783; localContext._authPlugin = this.uid(); } } - this.state = 5888; + this.state = 5794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5880; + this.state = 5786; this.match(MySqlParser.KW_BY); - this.state = 5884; + this.state = 5790; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5881; + this.state = 5787; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5882; + this.state = 5788; this.match(MySqlParser.KW_RANDOM); - this.state = 5883; + this.state = 5789; this.match(MySqlParser.KW_PASSWORD); } } @@ -31951,9 +31579,9 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_AS: { - this.state = 5886; + this.state = 5792; this.match(MySqlParser.KW_AS); - this.state = 5887; + this.state = 5793; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31978,47 +31606,47 @@ export class MySqlParser extends antlr.Parser { } public registrationOption(): RegistrationOptionContext { let localContext = new RegistrationOptionContext(this.context, this.state); - this.enterRule(localContext, 516, MySqlParser.RULE_registrationOption); + this.enterRule(localContext, 510, MySqlParser.RULE_registrationOption); try { - this.state = 5905; + this.state = 5811; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5890; + this.state = 5796; this.factor(); - this.state = 5891; + this.state = 5797; this.match(MySqlParser.KW_INITIATE); - this.state = 5892; + this.state = 5798; this.match(MySqlParser.KW_REGISTRATION); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5894; + this.state = 5800; this.factor(); - this.state = 5895; + this.state = 5801; this.match(MySqlParser.KW_FINISH); - this.state = 5896; + this.state = 5802; this.match(MySqlParser.KW_REGISTRATION); - this.state = 5897; + this.state = 5803; this.match(MySqlParser.KW_SET); - this.state = 5898; + this.state = 5804; this.match(MySqlParser.KW_CHALLENGE_RESPONSE); - this.state = 5899; + this.state = 5805; this.match(MySqlParser.KW_AS); - this.state = 5900; + this.state = 5806; this.match(MySqlParser.STRING_LITERAL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5902; + this.state = 5808; this.factor(); - this.state = 5903; + this.state = 5809; this.match(MySqlParser.KW_UNREGISTER); } break; @@ -32040,12 +31668,12 @@ export class MySqlParser extends antlr.Parser { } public factor(): FactorContext { let localContext = new FactorContext(this.context, this.state); - this.enterRule(localContext, 518, MySqlParser.RULE_factor); + this.enterRule(localContext, 512, MySqlParser.RULE_factor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5907; + this.state = 5813; _la = this.tokenStream.LA(1); if(!(_la === 873 || _la === 874)) { this.errorHandler.recoverInline(this); @@ -32054,7 +31682,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5908; + this.state = 5814; this.match(MySqlParser.KW_FACTOR); } } @@ -32074,23 +31702,23 @@ export class MySqlParser extends antlr.Parser { } public privelegeClause(): PrivelegeClauseContext { let localContext = new PrivelegeClauseContext(this.context, this.state); - this.enterRule(localContext, 520, MySqlParser.RULE_privelegeClause); + this.enterRule(localContext, 514, MySqlParser.RULE_privelegeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5910; + this.state = 5816; this.privilege(); - this.state = 5915; + this.state = 5821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 5911; + this.state = 5817; this.match(MySqlParser.LR_BRACKET); - this.state = 5912; + this.state = 5818; this.columnNames(); - this.state = 5913; + this.state = 5819; this.match(MySqlParser.RR_BRACKET); } } @@ -32113,23 +31741,23 @@ export class MySqlParser extends antlr.Parser { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 522, MySqlParser.RULE_privilege); + this.enterRule(localContext, 516, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 6010; + this.state = 5916; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5917; + this.state = 5823; this.match(MySqlParser.KW_ALL); - this.state = 5919; + this.state = 5825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5918; + this.state = 5824; this.match(MySqlParser.KW_PRIVILEGES); } } @@ -32139,14 +31767,14 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5921; + this.state = 5827; this.match(MySqlParser.KW_ALTER); - this.state = 5923; + this.state = 5829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 743) { { - this.state = 5922; + this.state = 5828; this.match(MySqlParser.KW_ROUTINE); } } @@ -32156,46 +31784,46 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5925; + this.state = 5831; this.match(MySqlParser.KW_CREATE); - this.state = 5933; + this.state = 5839; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TEMPORARY: { - this.state = 5926; + this.state = 5832; this.match(MySqlParser.KW_TEMPORARY); - this.state = 5927; + this.state = 5833; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_ROUTINE: { - this.state = 5928; + this.state = 5834; this.match(MySqlParser.KW_ROUTINE); } break; case MySqlParser.KW_VIEW: { - this.state = 5929; + this.state = 5835; this.match(MySqlParser.KW_VIEW); } break; case MySqlParser.KW_USER: { - this.state = 5930; + this.state = 5836; this.match(MySqlParser.KW_USER); } break; case MySqlParser.KW_TABLESPACE: { - this.state = 5931; + this.state = 5837; this.match(MySqlParser.KW_TABLESPACE); } break; case MySqlParser.KW_ROLE: { - this.state = 5932; + this.state = 5838; this.match(MySqlParser.KW_ROLE); } break; @@ -32211,21 +31839,21 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5935; + this.state = 5841; this.match(MySqlParser.KW_DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5936; + this.state = 5842; this.match(MySqlParser.KW_DROP); - this.state = 5938; + this.state = 5844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 5937; + this.state = 5843; this.match(MySqlParser.KW_ROLE); } } @@ -32235,90 +31863,90 @@ export class MySqlParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5940; + this.state = 5846; this.match(MySqlParser.KW_EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5941; + this.state = 5847; this.match(MySqlParser.KW_EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5942; + this.state = 5848; this.match(MySqlParser.KW_FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5943; + this.state = 5849; this.match(MySqlParser.KW_GRANT); - this.state = 5944; + this.state = 5850; this.match(MySqlParser.KW_OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5945; + this.state = 5851; this.match(MySqlParser.KW_INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5946; + this.state = 5852; this.match(MySqlParser.KW_INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5947; + this.state = 5853; this.match(MySqlParser.KW_LOCK); - this.state = 5948; + this.state = 5854; this.match(MySqlParser.KW_TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5949; + this.state = 5855; this.match(MySqlParser.KW_PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5950; + this.state = 5856; this.match(MySqlParser.KW_PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5951; + this.state = 5857; this.match(MySqlParser.KW_REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5952; + this.state = 5858; this.match(MySqlParser.KW_RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5953; + this.state = 5859; this.match(MySqlParser.KW_REPLICATION); - this.state = 5954; + this.state = 5860; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -32332,16 +31960,16 @@ export class MySqlParser extends antlr.Parser { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5955; + this.state = 5861; this.match(MySqlParser.KW_SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5956; + this.state = 5862; this.match(MySqlParser.KW_SHOW); - this.state = 5957; + this.state = 5863; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 684)) { this.errorHandler.recoverInline(this); @@ -32355,339 +31983,339 @@ export class MySqlParser extends antlr.Parser { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5958; + this.state = 5864; this.match(MySqlParser.KW_SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5959; + this.state = 5865; this.match(MySqlParser.KW_SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5960; + this.state = 5866; this.match(MySqlParser.KW_TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5961; + this.state = 5867; this.match(MySqlParser.KW_UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5962; + this.state = 5868; this.match(MySqlParser.KW_USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5963; + this.state = 5869; this.match(MySqlParser.KW_APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5964; + this.state = 5870; this.match(MySqlParser.KW_AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5965; + this.state = 5871; this.match(MySqlParser.KW_AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5966; + this.state = 5872; this.match(MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5967; + this.state = 5873; this.match(MySqlParser.KW_BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5968; + this.state = 5874; this.match(MySqlParser.KW_BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5969; + this.state = 5875; this.match(MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5970; + this.state = 5876; this.match(MySqlParser.KW_CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5971; + this.state = 5877; this.match(MySqlParser.KW_CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5972; + this.state = 5878; this.match(MySqlParser.KW_ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5973; + this.state = 5879; this.match(MySqlParser.KW_FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5974; + this.state = 5880; this.match(MySqlParser.KW_FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5975; + this.state = 5881; this.match(MySqlParser.KW_FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5976; + this.state = 5882; this.match(MySqlParser.KW_FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5977; + this.state = 5883; this.match(MySqlParser.KW_FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5978; + this.state = 5884; this.match(MySqlParser.KW_FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5979; + this.state = 5885; this.match(MySqlParser.KW_FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5980; + this.state = 5886; this.match(MySqlParser.KW_GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5981; + this.state = 5887; this.match(MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5982; + this.state = 5888; this.match(MySqlParser.KW_INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5983; + this.state = 5889; this.match(MySqlParser.KW_NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5984; + this.state = 5890; this.match(MySqlParser.KW_PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5985; + this.state = 5891; this.match(MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5986; + this.state = 5892; this.match(MySqlParser.KW_REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5987; + this.state = 5893; this.match(MySqlParser.KW_REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5988; + this.state = 5894; this.match(MySqlParser.KW_RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5989; + this.state = 5895; this.match(MySqlParser.KW_RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5990; + this.state = 5896; this.match(MySqlParser.KW_ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5991; + this.state = 5897; this.match(MySqlParser.KW_SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5992; + this.state = 5898; this.match(MySqlParser.KW_SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 5993; + this.state = 5899; this.match(MySqlParser.KW_SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 5994; + this.state = 5900; this.match(MySqlParser.KW_SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 5995; + this.state = 5901; this.match(MySqlParser.KW_SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 5996; + this.state = 5902; this.match(MySqlParser.KW_SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 5997; + this.state = 5903; this.match(MySqlParser.KW_SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 5998; + this.state = 5904; this.match(MySqlParser.KW_TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 5999; + this.state = 5905; this.match(MySqlParser.KW_TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 6000; + this.state = 5906; this.match(MySqlParser.KW_VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 6001; + this.state = 5907; this.match(MySqlParser.KW_XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 6002; + this.state = 5908; this.match(MySqlParser.KW_LOAD); - this.state = 6003; + this.state = 5909; this.match(MySqlParser.KW_FROM); - this.state = 6004; + this.state = 5910; this.match(MySqlParser.KW_S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 6005; + this.state = 5911; this.match(MySqlParser.KW_SELECT); - this.state = 6006; + this.state = 5912; this.match(MySqlParser.KW_INTO); - this.state = 6007; + this.state = 5913; this.match(MySqlParser.KW_S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 6008; + this.state = 5914; this.match(MySqlParser.KW_INVOKE); - this.state = 6009; + this.state = 5915; this.match(MySqlParser.KW_LAMBDA); } break; @@ -32709,16 +32337,16 @@ export class MySqlParser extends antlr.Parser { } public privilegeLevel(): PrivilegeLevelContext { let localContext = new PrivilegeLevelContext(this.context, this.state); - this.enterRule(localContext, 524, MySqlParser.RULE_privilegeLevel); + this.enterRule(localContext, 518, MySqlParser.RULE_privilegeLevel); try { - this.state = 6028; + this.state = 5934; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 867, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6012; + this.state = 5918; this.match(MySqlParser.STAR); } break; @@ -32726,11 +32354,11 @@ export class MySqlParser extends antlr.Parser { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6013; + this.state = 5919; this.match(MySqlParser.STAR); - this.state = 6014; + this.state = 5920; this.match(MySqlParser.DOT); - this.state = 6015; + this.state = 5921; this.match(MySqlParser.STAR); } break; @@ -32738,11 +32366,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6016; + this.state = 5922; this.uid(); - this.state = 6017; + this.state = 5923; this.match(MySqlParser.DOT); - this.state = 6018; + this.state = 5924; this.match(MySqlParser.STAR); } break; @@ -32750,11 +32378,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6020; + this.state = 5926; this.uid(); - this.state = 6021; + this.state = 5927; this.match(MySqlParser.DOT); - this.state = 6022; + this.state = 5928; this.uid(); } break; @@ -32762,9 +32390,9 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6024; + this.state = 5930; this.uid(); - this.state = 6025; + this.state = 5931; this.dottedId(); } break; @@ -32772,7 +32400,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6027; + this.state = 5933; this.uid(); } break; @@ -32794,15 +32422,15 @@ export class MySqlParser extends antlr.Parser { } public renameUserClause(): RenameUserClauseContext { let localContext = new RenameUserClauseContext(this.context, this.state); - this.enterRule(localContext, 526, MySqlParser.RULE_renameUserClause); + this.enterRule(localContext, 520, MySqlParser.RULE_renameUserClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6030; + this.state = 5936; localContext._fromFirst = this.userName(); - this.state = 6031; + this.state = 5937; this.match(MySqlParser.KW_TO); - this.state = 6032; + this.state = 5938; localContext._toFirst = this.userName(); } } @@ -32822,70 +32450,70 @@ export class MySqlParser extends antlr.Parser { } public analyzeTable(): AnalyzeTableContext { let localContext = new AnalyzeTableContext(this.context, this.state); - this.enterRule(localContext, 528, MySqlParser.RULE_analyzeTable); + this.enterRule(localContext, 522, MySqlParser.RULE_analyzeTable); let _la: number; try { - this.state = 6082; + this.state = 5988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6034; + this.state = 5940; this.match(MySqlParser.KW_ANALYZE); - this.state = 6036; + this.state = 5942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6035; + this.state = 5941; this.tableActionOption(); } } - this.state = 6038; + this.state = 5944; this.match(MySqlParser.KW_TABLE); - this.state = 6039; + this.state = 5945; this.tableNames(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6040; + this.state = 5946; this.match(MySqlParser.KW_ANALYZE); - this.state = 6042; + this.state = 5948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6041; + this.state = 5947; this.tableActionOption(); } } - this.state = 6044; + this.state = 5950; this.match(MySqlParser.KW_TABLE); - this.state = 6045; + this.state = 5951; this.tableName(); - this.state = 6046; + this.state = 5952; this.match(MySqlParser.KW_UPDATE); - this.state = 6047; + this.state = 5953; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6048; + this.state = 5954; this.match(MySqlParser.KW_ON); - this.state = 6049; + this.state = 5955; this.columnNames(); - this.state = 6054; + this.state = 5960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 870, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 851, this.context) ) { case 1: { - this.state = 6050; + this.state = 5956; this.match(MySqlParser.KW_WITH); - this.state = 6051; + this.state = 5957; this.decimalLiteral(); - this.state = 6052; + this.state = 5958; this.match(MySqlParser.KW_BUCKETS); } break; @@ -32895,40 +32523,40 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6056; + this.state = 5962; this.match(MySqlParser.KW_ANALYZE); - this.state = 6058; + this.state = 5964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6057; + this.state = 5963; this.tableActionOption(); } } - this.state = 6060; + this.state = 5966; this.match(MySqlParser.KW_TABLE); - this.state = 6061; + this.state = 5967; this.tableName(); - this.state = 6062; + this.state = 5968; this.match(MySqlParser.KW_UPDATE); - this.state = 6063; + this.state = 5969; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6064; + this.state = 5970; this.match(MySqlParser.KW_ON); - this.state = 6065; + this.state = 5971; this.columnName(); - this.state = 6069; + this.state = 5975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6066; + this.state = 5972; this.match(MySqlParser.KW_USING); - this.state = 6067; + this.state = 5973; this.match(MySqlParser.KW_DATA); - this.state = 6068; + this.state = 5974; this.match(MySqlParser.STRING_LITERAL); } } @@ -32938,29 +32566,29 @@ export class MySqlParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6071; + this.state = 5977; this.match(MySqlParser.KW_ANALYZE); - this.state = 6073; + this.state = 5979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6072; + this.state = 5978; this.tableActionOption(); } } - this.state = 6075; + this.state = 5981; this.match(MySqlParser.KW_TABLE); - this.state = 6076; + this.state = 5982; this.tableName(); - this.state = 6077; + this.state = 5983; this.match(MySqlParser.KW_DROP); - this.state = 6078; + this.state = 5984; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6079; + this.state = 5985; this.match(MySqlParser.KW_ON); - this.state = 6080; + this.state = 5986; this.columnNames(); } break; @@ -32982,28 +32610,28 @@ export class MySqlParser extends antlr.Parser { } public checkTable(): CheckTableContext { let localContext = new CheckTableContext(this.context, this.state); - this.enterRule(localContext, 530, MySqlParser.RULE_checkTable); + this.enterRule(localContext, 524, MySqlParser.RULE_checkTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6084; + this.state = 5990; this.match(MySqlParser.KW_CHECK); - this.state = 6085; + this.state = 5991; this.match(MySqlParser.KW_TABLE); - this.state = 6086; + this.state = 5992; this.tableNames(); - this.state = 6090; + this.state = 5996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 327 || _la === 392 || _la === 396 || _la === 484 || _la === 549) { { { - this.state = 6087; + this.state = 5993; this.checkTableOption(); } } - this.state = 6092; + this.state = 5998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33025,23 +32653,23 @@ export class MySqlParser extends antlr.Parser { } public checksumTable(): ChecksumTableContext { let localContext = new ChecksumTableContext(this.context, this.state); - this.enterRule(localContext, 532, MySqlParser.RULE_checksumTable); + this.enterRule(localContext, 526, MySqlParser.RULE_checksumTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6093; + this.state = 5999; this.match(MySqlParser.KW_CHECKSUM); - this.state = 6094; + this.state = 6000; this.match(MySqlParser.KW_TABLE); - this.state = 6095; + this.state = 6001; this.tableNames(); - this.state = 6097; + this.state = 6003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392 || _la === 549) { { - this.state = 6096; + this.state = 6002; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 549)) { @@ -33072,24 +32700,24 @@ export class MySqlParser extends antlr.Parser { } public optimizeTable(): OptimizeTableContext { let localContext = new OptimizeTableContext(this.context, this.state); - this.enterRule(localContext, 534, MySqlParser.RULE_optimizeTable); + this.enterRule(localContext, 528, MySqlParser.RULE_optimizeTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6099; + this.state = 6005; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 6101; + this.state = 6007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6100; + this.state = 6006; this.tableActionOption(); } } - this.state = 6103; + this.state = 6009; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -33098,7 +32726,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6104; + this.state = 6010; this.tableNames(); } } @@ -33118,53 +32746,53 @@ export class MySqlParser extends antlr.Parser { } public repairTable(): RepairTableContext { let localContext = new RepairTableContext(this.context, this.state); - this.enterRule(localContext, 536, MySqlParser.RULE_repairTable); + this.enterRule(localContext, 530, MySqlParser.RULE_repairTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6106; + this.state = 6012; this.match(MySqlParser.KW_REPAIR); - this.state = 6108; + this.state = 6014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6107; + this.state = 6013; this.tableActionOption(); } } - this.state = 6110; + this.state = 6016; this.match(MySqlParser.KW_TABLE); - this.state = 6111; + this.state = 6017; this.tableNames(); - this.state = 6113; + this.state = 6019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 6112; + this.state = 6018; this.match(MySqlParser.KW_QUICK); } } - this.state = 6116; + this.state = 6022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6115; + this.state = 6021; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6119; + this.state = 6025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 679) { { - this.state = 6118; + this.state = 6024; this.match(MySqlParser.KW_USE_FRM); } } @@ -33187,12 +32815,12 @@ export class MySqlParser extends antlr.Parser { } public tableActionOption(): TableActionOptionContext { let localContext = new TableActionOptionContext(this.context, this.state); - this.enterRule(localContext, 538, MySqlParser.RULE_tableActionOption); + this.enterRule(localContext, 532, MySqlParser.RULE_tableActionOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6121; + this.state = 6027; _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -33219,52 +32847,52 @@ export class MySqlParser extends antlr.Parser { } public checkTableOption(): CheckTableOptionContext { let localContext = new CheckTableOptionContext(this.context, this.state); - this.enterRule(localContext, 540, MySqlParser.RULE_checkTableOption); + this.enterRule(localContext, 534, MySqlParser.RULE_checkTableOption); try { - this.state = 6130; + this.state = 6036; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6123; + this.state = 6029; this.match(MySqlParser.KW_FOR); - this.state = 6124; + this.state = 6030; this.match(MySqlParser.KW_UPGRADE); } break; case MySqlParser.KW_QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 6125; + this.state = 6031; this.match(MySqlParser.KW_QUICK); } break; case MySqlParser.KW_FAST: this.enterOuterAlt(localContext, 3); { - this.state = 6126; + this.state = 6032; this.match(MySqlParser.KW_FAST); } break; case MySqlParser.KW_MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 6127; + this.state = 6033; this.match(MySqlParser.KW_MEDIUM); } break; case MySqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 6128; + this.state = 6034; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 6129; + this.state = 6035; this.match(MySqlParser.KW_CHANGED); } break; @@ -33288,40 +32916,40 @@ export class MySqlParser extends antlr.Parser { } public createFunction(): CreateFunctionContext { let localContext = new CreateFunctionContext(this.context, this.state); - this.enterRule(localContext, 542, MySqlParser.RULE_createFunction); + this.enterRule(localContext, 536, MySqlParser.RULE_createFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6132; + this.state = 6038; this.match(MySqlParser.KW_CREATE); - this.state = 6134; + this.state = 6040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 6133; + this.state = 6039; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 6136; + this.state = 6042; this.match(MySqlParser.KW_FUNCTION); - this.state = 6138; + this.state = 6044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 865, this.context) ) { case 1: { - this.state = 6137; + this.state = 6043; this.ifNotExists(); } break; } - this.state = 6140; + this.state = 6046; this.functionNameCreate(); - this.state = 6141; + this.state = 6047; this.match(MySqlParser.KW_RETURNS); - this.state = 6142; + this.state = 6048; localContext._returnType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 261) !== 0) || _la === 649)) { @@ -33331,9 +32959,9 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6143; + this.state = 6049; this.match(MySqlParser.KW_SONAME); - this.state = 6144; + this.state = 6050; this.match(MySqlParser.STRING_LITERAL); } } @@ -33353,55 +32981,55 @@ export class MySqlParser extends antlr.Parser { } public installComponent(): InstallComponentContext { let localContext = new InstallComponentContext(this.context, this.state); - this.enterRule(localContext, 544, MySqlParser.RULE_installComponent); + this.enterRule(localContext, 538, MySqlParser.RULE_installComponent); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6146; + this.state = 6052; this.match(MySqlParser.KW_INSTALL); - this.state = 6147; + this.state = 6053; this.match(MySqlParser.KW_COMPONENT); - this.state = 6148; + this.state = 6054; localContext._component_name = this.uid(); - this.state = 6153; + this.state = 6059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6149; + this.state = 6055; this.match(MySqlParser.COMMA); - this.state = 6150; + this.state = 6056; localContext._component_name = this.uid(); } } - this.state = 6155; + this.state = 6061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6165; + this.state = 6071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 868, this.context) ) { case 1: { - this.state = 6156; + this.state = 6062; this.match(MySqlParser.KW_SET); - this.state = 6157; + this.state = 6063; this.variableExpr(); - this.state = 6162; + this.state = 6068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6158; + this.state = 6064; this.match(MySqlParser.COMMA); - this.state = 6159; + this.state = 6065; this.variableExpr(); } } - this.state = 6164; + this.state = 6070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33426,12 +33054,12 @@ export class MySqlParser extends antlr.Parser { } public variableExpr(): VariableExprContext { let localContext = new VariableExprContext(this.context, this.state); - this.enterRule(localContext, 546, MySqlParser.RULE_variableExpr); + this.enterRule(localContext, 540, MySqlParser.RULE_variableExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6167; + this.state = 6073; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 531 || _la === 893 || _la === 894)) { this.errorHandler.recoverInline(this); @@ -33440,11 +33068,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6168; + this.state = 6074; localContext._system_var_name = this.fullId(); - this.state = 6169; + this.state = 6075; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6170; + this.state = 6076; this.expression(0); } } @@ -33464,30 +33092,30 @@ export class MySqlParser extends antlr.Parser { } public uninstallComponent(): UninstallComponentContext { let localContext = new UninstallComponentContext(this.context, this.state); - this.enterRule(localContext, 548, MySqlParser.RULE_uninstallComponent); + this.enterRule(localContext, 542, MySqlParser.RULE_uninstallComponent); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6172; + this.state = 6078; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6173; + this.state = 6079; this.match(MySqlParser.KW_COMPONENT); - this.state = 6174; + this.state = 6080; localContext._component_name = this.uid(); - this.state = 6179; + this.state = 6085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6175; + this.state = 6081; this.match(MySqlParser.COMMA); - this.state = 6176; + this.state = 6082; localContext._component_name = this.uid(); } } - this.state = 6181; + this.state = 6087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33509,19 +33137,19 @@ export class MySqlParser extends antlr.Parser { } public installPlugin(): InstallPluginContext { let localContext = new InstallPluginContext(this.context, this.state); - this.enterRule(localContext, 550, MySqlParser.RULE_installPlugin); + this.enterRule(localContext, 544, MySqlParser.RULE_installPlugin); try { this.enterOuterAlt(localContext, 1); { - this.state = 6182; + this.state = 6088; this.match(MySqlParser.KW_INSTALL); - this.state = 6183; + this.state = 6089; this.match(MySqlParser.KW_PLUGIN); - this.state = 6184; + this.state = 6090; localContext._pluginName = this.uid(); - this.state = 6185; + this.state = 6091; this.match(MySqlParser.KW_SONAME); - this.state = 6186; + this.state = 6092; this.match(MySqlParser.STRING_LITERAL); } } @@ -33541,15 +33169,15 @@ export class MySqlParser extends antlr.Parser { } public uninstallPlugin(): UninstallPluginContext { let localContext = new UninstallPluginContext(this.context, this.state); - this.enterRule(localContext, 552, MySqlParser.RULE_uninstallPlugin); + this.enterRule(localContext, 546, MySqlParser.RULE_uninstallPlugin); try { this.enterOuterAlt(localContext, 1); { - this.state = 6188; + this.state = 6094; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6189; + this.state = 6095; this.match(MySqlParser.KW_PLUGIN); - this.state = 6190; + this.state = 6096; localContext._pluginName = this.uid(); } } @@ -33569,96 +33197,96 @@ export class MySqlParser extends antlr.Parser { } public cloneStatement(): CloneStatementContext { let localContext = new CloneStatementContext(this.context, this.state); - this.enterRule(localContext, 554, MySqlParser.RULE_cloneStatement); + this.enterRule(localContext, 548, MySqlParser.RULE_cloneStatement); let _la: number; try { - this.state = 6222; + this.state = 6128; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6192; + this.state = 6098; this.match(MySqlParser.KW_CLONE); - this.state = 6193; + this.state = 6099; this.match(MySqlParser.KW_LOCAL); - this.state = 6194; + this.state = 6100; this.match(MySqlParser.KW_DATA); - this.state = 6195; + this.state = 6101; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6197; + this.state = 6103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6196; + this.state = 6102; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6199; + this.state = 6105; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6200; + this.state = 6106; this.match(MySqlParser.KW_CLONE); - this.state = 6201; + this.state = 6107; this.match(MySqlParser.KW_INSTANCE); - this.state = 6202; + this.state = 6108; this.match(MySqlParser.KW_FROM); - this.state = 6203; + this.state = 6109; this.userHostPort(); - this.state = 6204; + this.state = 6110; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 6205; + this.state = 6111; this.match(MySqlParser.KW_BY); - this.state = 6206; + this.state = 6112; this.match(MySqlParser.STRING_LITERAL); - this.state = 6213; + this.state = 6119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 6207; + this.state = 6113; this.match(MySqlParser.KW_DATA); - this.state = 6208; + this.state = 6114; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6210; + this.state = 6116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6209; + this.state = 6115; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6212; + this.state = 6118; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6220; + this.state = 6126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 6215; + this.state = 6121; this.match(MySqlParser.KW_REQUIRE); - this.state = 6217; + this.state = 6123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 6216; + this.state = 6122; this.match(MySqlParser.KW_NO); } } - this.state = 6219; + this.state = 6125; this.match(MySqlParser.KW_SSL); } } @@ -33683,21 +33311,21 @@ export class MySqlParser extends antlr.Parser { } public setStatement(): SetStatementContext { let localContext = new SetStatementContext(this.context, this.state); - this.enterRule(localContext, 556, MySqlParser.RULE_setStatement); + this.enterRule(localContext, 550, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 6276; + this.state = 6182; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 902, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6224; + this.state = 6130; this.match(MySqlParser.KW_SET); - this.state = 6225; + this.state = 6131; this.variableClause(); - this.state = 6226; + this.state = 6132; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33706,33 +33334,33 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6229; + this.state = 6135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 876, this.context) ) { case 1: { - this.state = 6227; + this.state = 6133; this.expression(0); } break; case 2: { - this.state = 6228; + this.state = 6134; this.match(MySqlParser.KW_ON); } break; } - this.state = 6240; + this.state = 6146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6231; + this.state = 6137; this.match(MySqlParser.COMMA); - this.state = 6232; + this.state = 6138; this.variableClause(); - this.state = 6233; + this.state = 6139; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33741,25 +33369,25 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6236; + this.state = 6142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 896, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { case 1: { - this.state = 6234; + this.state = 6140; this.expression(0); } break; case 2: { - this.state = 6235; + this.state = 6141; this.match(MySqlParser.KW_ON); } break; } } } - this.state = 6242; + this.state = 6148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33769,11 +33397,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6243; + this.state = 6149; this.match(MySqlParser.KW_SET); - this.state = 6244; + this.state = 6150; this.charSet(); - this.state = 6247; + this.state = 6153; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -33821,13 +33449,13 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6245; + this.state = 6151; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 6246; + this.state = 6152; this.match(MySqlParser.KW_DEFAULT); } break; @@ -33840,11 +33468,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6249; + this.state = 6155; this.match(MySqlParser.KW_SET); - this.state = 6250; + this.state = 6156; this.match(MySqlParser.KW_NAMES); - this.state = 6257; + this.state = 6163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -33892,16 +33520,16 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6251; + this.state = 6157; this.charsetName(); - this.state = 6254; + this.state = 6160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 6252; + this.state = 6158; this.match(MySqlParser.KW_COLLATE); - this.state = 6253; + this.state = 6159; this.collationName(); } } @@ -33910,7 +33538,7 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_DEFAULT: { - this.state = 6256; + this.state = 6162; this.match(MySqlParser.KW_DEFAULT); } break; @@ -33923,7 +33551,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6259; + this.state = 6165; this.setPasswordStatement(); } break; @@ -33931,7 +33559,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6260; + this.state = 6166; this.setTransactionStatement(); } break; @@ -33939,7 +33567,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6261; + this.state = 6167; this.setAutocommitStatement(); } break; @@ -33947,11 +33575,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6262; + this.state = 6168; this.match(MySqlParser.KW_SET); - this.state = 6263; + this.state = 6169; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6264; + this.state = 6170; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33960,19 +33588,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6265; + this.state = 6171; this.expression(0); - this.state = 6273; + this.state = 6179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6266; + this.state = 6172; this.match(MySqlParser.COMMA); - this.state = 6267; + this.state = 6173; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6268; + this.state = 6174; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -33981,11 +33609,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6269; + this.state = 6175; this.expression(0); } } - this.state = 6275; + this.state = 6181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34009,19 +33637,19 @@ export class MySqlParser extends antlr.Parser { } public showStatement(): ShowStatementContext { let localContext = new ShowStatementContext(this.context, this.state); - this.enterRule(localContext, 558, MySqlParser.RULE_showStatement); + this.enterRule(localContext, 552, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 6462; + this.state = 6368; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 912, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6278; + this.state = 6184; this.match(MySqlParser.KW_SHOW); - this.state = 6279; + this.state = 6185; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -34031,7 +33659,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6280; + this.state = 6186; this.match(MySqlParser.KW_LOGS); } break; @@ -34039,9 +33667,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6281; + this.state = 6187; this.match(MySqlParser.KW_SHOW); - this.state = 6282; + this.state = 6188; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 559)) { @@ -34051,62 +33679,62 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6283; + this.state = 6189; this.match(MySqlParser.KW_EVENTS); - this.state = 6286; + this.state = 6192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 6284; + this.state = 6190; this.match(MySqlParser.KW_IN); - this.state = 6285; + this.state = 6191; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6290; + this.state = 6196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 6288; + this.state = 6194; this.match(MySqlParser.KW_FROM); - this.state = 6289; + this.state = 6195; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 6299; + this.state = 6205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6292; + this.state = 6198; this.match(MySqlParser.KW_LIMIT); - this.state = 6296; + this.state = 6202; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 6293; + this.state = 6199; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 6294; + this.state = 6200; this.match(MySqlParser.COMMA); } break; } - this.state = 6298; + this.state = 6204; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } - this.state = 6302; + this.state = 6208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6301; + this.state = 6207; this.channelOption(); } } @@ -34117,16 +33745,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6304; + this.state = 6210; this.match(MySqlParser.KW_SHOW); - this.state = 6305; + this.state = 6211; this.showCommonEntity(); - this.state = 6307; + this.state = 6213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6306; + this.state = 6212; this.showFilter(); } } @@ -34137,29 +33765,29 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6309; + this.state = 6215; this.match(MySqlParser.KW_SHOW); - this.state = 6311; + this.state = 6217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6310; + this.state = 6216; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6314; + this.state = 6220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6313; + this.state = 6219; this.match(MySqlParser.KW_FULL); } } - this.state = 6316; + this.state = 6222; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -34169,7 +33797,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6317; + this.state = 6223; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34179,14 +33807,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6318; + this.state = 6224; this.tableName(); - this.state = 6321; + this.state = 6227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6319; + this.state = 6225; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34196,17 +33824,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6320; + this.state = 6226; this.databaseName(); } } - this.state = 6324; + this.state = 6230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6323; + this.state = 6229; this.showFilter(); } } @@ -34217,11 +33845,11 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6326; + this.state = 6232; this.match(MySqlParser.KW_SHOW); - this.state = 6327; + this.state = 6233; this.match(MySqlParser.KW_CREATE); - this.state = 6328; + this.state = 6234; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { this.errorHandler.recoverInline(this); @@ -34230,17 +33858,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6330; + this.state = 6236; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: { - this.state = 6329; + this.state = 6235; this.ifNotExists(); } break; } - this.state = 6332; + this.state = 6238; this.databaseNameCreate(); } break; @@ -34248,11 +33876,11 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6333; + this.state = 6239; this.match(MySqlParser.KW_SHOW); - this.state = 6334; + this.state = 6240; this.match(MySqlParser.KW_CREATE); - this.state = 6335; + this.state = 6241; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 178 || _la === 385)) { this.errorHandler.recoverInline(this); @@ -34261,7 +33889,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6336; + this.state = 6242; this.fullId(); } break; @@ -34269,13 +33897,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6337; + this.state = 6243; this.match(MySqlParser.KW_SHOW); - this.state = 6338; + this.state = 6244; this.match(MySqlParser.KW_CREATE); - this.state = 6339; + this.state = 6245; this.match(MySqlParser.KW_FUNCTION); - this.state = 6340; + this.state = 6246; this.functionNameCreate(); } break; @@ -34283,13 +33911,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6341; + this.state = 6247; this.match(MySqlParser.KW_SHOW); - this.state = 6342; + this.state = 6248; this.match(MySqlParser.KW_CREATE); - this.state = 6343; + this.state = 6249; this.match(MySqlParser.KW_VIEW); - this.state = 6344; + this.state = 6250; this.viewNameCreate(); } break; @@ -34297,13 +33925,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6345; + this.state = 6251; this.match(MySqlParser.KW_SHOW); - this.state = 6346; + this.state = 6252; this.match(MySqlParser.KW_CREATE); - this.state = 6347; + this.state = 6253; this.match(MySqlParser.KW_TABLE); - this.state = 6348; + this.state = 6254; this.tableNameCreate(); } break; @@ -34311,13 +33939,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6349; + this.state = 6255; this.match(MySqlParser.KW_SHOW); - this.state = 6350; + this.state = 6256; this.match(MySqlParser.KW_CREATE); - this.state = 6351; + this.state = 6257; this.match(MySqlParser.KW_USER); - this.state = 6352; + this.state = 6258; this.userName(); } break; @@ -34325,13 +33953,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6353; + this.state = 6259; this.match(MySqlParser.KW_SHOW); - this.state = 6354; + this.state = 6260; this.match(MySqlParser.KW_ENGINE); - this.state = 6355; + this.state = 6261; this.engineName(); - this.state = 6356; + this.state = 6262; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 493 || _la === 645)) { @@ -34347,9 +33975,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6358; + this.state = 6264; this.match(MySqlParser.KW_SHOW); - this.state = 6359; + this.state = 6265; this.showGlobalInfoClause(); } break; @@ -34357,9 +33985,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6360; + this.state = 6266; this.match(MySqlParser.KW_SHOW); - this.state = 6361; + this.state = 6267; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34369,26 +33997,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6369; + this.state = 6275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6362; + this.state = 6268; this.match(MySqlParser.KW_LIMIT); - this.state = 6366; + this.state = 6272; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { case 1: { - this.state = 6363; + this.state = 6269; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 6364; + this.state = 6270; this.match(MySqlParser.COMMA); } break; } - this.state = 6368; + this.state = 6274; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -34399,17 +34027,17 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6371; + this.state = 6277; this.match(MySqlParser.KW_SHOW); - this.state = 6372; + this.state = 6278; this.match(MySqlParser.KW_COUNT); - this.state = 6373; + this.state = 6279; this.match(MySqlParser.LR_BRACKET); - this.state = 6374; + this.state = 6280; this.match(MySqlParser.STAR); - this.state = 6375; + this.state = 6281; this.match(MySqlParser.RR_BRACKET); - this.state = 6376; + this.state = 6282; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34425,16 +34053,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6377; + this.state = 6283; this.match(MySqlParser.KW_SHOW); - this.state = 6378; + this.state = 6284; this.showSchemaEntity(); - this.state = 6381; + this.state = 6287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6379; + this.state = 6285; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34444,17 +34072,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6380; + this.state = 6286; this.databaseName(); } } - this.state = 6384; + this.state = 6290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6383; + this.state = 6289; this.showFilter(); } } @@ -34465,13 +34093,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowPercedureCodeContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6386; + this.state = 6292; this.match(MySqlParser.KW_SHOW); - this.state = 6387; + this.state = 6293; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6388; + this.state = 6294; this.match(MySqlParser.KW_CODE); - this.state = 6389; + this.state = 6295; (localContext as ShowPercedureCodeContext)._proc_name = this.fullId(); } break; @@ -34479,13 +34107,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowFunctionCodeContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6390; + this.state = 6296; this.match(MySqlParser.KW_SHOW); - this.state = 6391; + this.state = 6297; this.match(MySqlParser.KW_FUNCTION); - this.state = 6392; + this.state = 6298; this.match(MySqlParser.KW_CODE); - this.state = 6393; + this.state = 6299; this.functionName(); } break; @@ -34493,27 +34121,27 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 6394; + this.state = 6300; this.match(MySqlParser.KW_SHOW); - this.state = 6395; + this.state = 6301; this.match(MySqlParser.KW_GRANTS); - this.state = 6402; + this.state = 6308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6396; + this.state = 6302; this.match(MySqlParser.KW_FOR); - this.state = 6397; + this.state = 6303; this.userOrRoleName(); - this.state = 6400; + this.state = 6306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6398; + this.state = 6304; this.match(MySqlParser.KW_USING); - this.state = 6399; + this.state = 6305; this.userOrRoleNames(); } } @@ -34527,19 +34155,19 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 6404; + this.state = 6310; this.match(MySqlParser.KW_SHOW); - this.state = 6406; + this.state = 6312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6405; + this.state = 6311; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6408; + this.state = 6314; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 93 || _la === 426)) { @@ -34549,7 +34177,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6409; + this.state = 6315; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34559,14 +34187,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6410; + this.state = 6316; this.tableName(); - this.state = 6413; + this.state = 6319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6411; + this.state = 6317; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34576,19 +34204,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6412; + this.state = 6318; this.databaseName(); } } - this.state = 6417; + this.state = 6323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6415; + this.state = 6321; this.match(MySqlParser.KW_WHERE); - this.state = 6416; + this.state = 6322; this.expression(0); } } @@ -34599,18 +34227,18 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 6419; + this.state = 6325; this.match(MySqlParser.KW_SHOW); - this.state = 6420; + this.state = 6326; this.match(MySqlParser.KW_OPEN); - this.state = 6421; + this.state = 6327; this.match(MySqlParser.KW_TABLES); - this.state = 6424; + this.state = 6330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6422; + this.state = 6328; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -34619,17 +34247,17 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6423; + this.state = 6329; this.databaseName(); } } - this.state = 6427; + this.state = 6333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6426; + this.state = 6332; this.showFilter(); } } @@ -34640,67 +34268,67 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 6429; + this.state = 6335; this.match(MySqlParser.KW_SHOW); - this.state = 6430; + this.state = 6336; this.match(MySqlParser.KW_PROFILE); - this.state = 6439; + this.state = 6345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 320 || _la === 355 || _la === 358 || _la === 439 || _la === 521 || _la === 605 || _la === 655 || _la === 802) { { - this.state = 6431; + this.state = 6337; this.showProfileType(); - this.state = 6436; + this.state = 6342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6432; + this.state = 6338; this.match(MySqlParser.COMMA); - this.state = 6433; + this.state = 6339; this.showProfileType(); } } - this.state = 6438; + this.state = 6344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 6444; + this.state = 6350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6441; + this.state = 6347; this.match(MySqlParser.KW_FOR); - this.state = 6442; + this.state = 6348; this.match(MySqlParser.KW_QUERY); - this.state = 6443; + this.state = 6349; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } - this.state = 6452; + this.state = 6358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6446; + this.state = 6352; this.match(MySqlParser.KW_LIMIT); - this.state = 6447; + this.state = 6353; (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); - this.state = 6450; + this.state = 6356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 509) { { - this.state = 6448; + this.state = 6354; this.match(MySqlParser.KW_OFFSET); - this.state = 6449; + this.state = 6355; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); } } @@ -34714,9 +34342,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 6454; + this.state = 6360; this.match(MySqlParser.KW_SHOW); - this.state = 6455; + this.state = 6361; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -34725,14 +34353,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6456; + this.state = 6362; this.match(MySqlParser.KW_STATUS); - this.state = 6458; + this.state = 6364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6457; + this.state = 6363; this.channelOption(); } } @@ -34743,9 +34371,9 @@ export class MySqlParser extends antlr.Parser { localContext = new ShowReplicasContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 6460; + this.state = 6366; this.match(MySqlParser.KW_SHOW); - this.state = 6461; + this.state = 6367; this.match(MySqlParser.KW_REPLICAS); } break; @@ -34767,23 +34395,23 @@ export class MySqlParser extends antlr.Parser { } public variableClause(): VariableClauseContext { let localContext = new VariableClauseContext(this.context, this.state); - this.enterRule(localContext, 560, MySqlParser.RULE_variableClause); + this.enterRule(localContext, 554, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 6474; + this.state = 6380; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6464; + this.state = 6370; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 6465; + this.state = 6371; this.match(MySqlParser.GLOBAL_ID); } break; @@ -35340,24 +34968,24 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 6471; + this.state = 6377; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 933, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 6468; + this.state = 6374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 870) { { - this.state = 6466; + this.state = 6372; this.match(MySqlParser.AT_SIGN); - this.state = 6467; + this.state = 6373; this.match(MySqlParser.AT_SIGN); } } - this.state = 6470; + this.state = 6376; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 450 || _la === 531 || _la === 532 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35369,7 +34997,7 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 6473; + this.state = 6379; localContext._target = this.uid(); } break; @@ -35393,64 +35021,64 @@ export class MySqlParser extends antlr.Parser { } public showCommonEntity(): ShowCommonEntityContext { let localContext = new ShowCommonEntityContext(this.context, this.state); - this.enterRule(localContext, 562, MySqlParser.RULE_showCommonEntity); + this.enterRule(localContext, 556, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 6490; + this.state = 6396; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 6476; + this.state = 6382; this.match(MySqlParser.KW_CHARACTER); - this.state = 6477; + this.state = 6383; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 6478; + this.state = 6384; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 3); { - this.state = 6479; + this.state = 6385; this.match(MySqlParser.KW_COLLATION); } break; case MySqlParser.KW_DATABASES: this.enterOuterAlt(localContext, 4); { - this.state = 6480; + this.state = 6386; this.match(MySqlParser.KW_DATABASES); } break; case MySqlParser.KW_SCHEMAS: this.enterOuterAlt(localContext, 5); { - this.state = 6481; + this.state = 6387; this.match(MySqlParser.KW_SCHEMAS); } break; case MySqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 6); { - this.state = 6482; + this.state = 6388; this.match(MySqlParser.KW_FUNCTION); - this.state = 6483; + this.state = 6389; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 7); { - this.state = 6484; + this.state = 6390; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6485; + this.state = 6391; this.match(MySqlParser.KW_STATUS); } break; @@ -35460,12 +35088,12 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VARIABLES: this.enterOuterAlt(localContext, 8); { - this.state = 6487; + this.state = 6393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 6486; + this.state = 6392; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35477,7 +35105,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6489; + this.state = 6395; _la = this.tokenStream.LA(1); if(!(_la === 645 || _la === 683)) { this.errorHandler.recoverInline(this); @@ -35508,26 +35136,26 @@ export class MySqlParser extends antlr.Parser { } public showFilter(): ShowFilterContext { let localContext = new ShowFilterContext(this.context, this.state); - this.enterRule(localContext, 564, MySqlParser.RULE_showFilter); + this.enterRule(localContext, 558, MySqlParser.RULE_showFilter); try { - this.state = 6496; + this.state = 6402; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 6492; + this.state = 6398; this.match(MySqlParser.KW_LIKE); - this.state = 6493; + this.state = 6399; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 6494; + this.state = 6400; this.match(MySqlParser.KW_WHERE); - this.state = 6495; + this.state = 6401; this.expression(0); } break; @@ -35551,50 +35179,50 @@ export class MySqlParser extends antlr.Parser { } public showGlobalInfoClause(): ShowGlobalInfoClauseContext { let localContext = new ShowGlobalInfoClauseContext(this.context, this.state); - this.enterRule(localContext, 566, MySqlParser.RULE_showGlobalInfoClause); + this.enterRule(localContext, 560, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 6515; + this.state = 6421; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ENGINES: case MySqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 6499; + this.state = 6405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 6498; + this.state = 6404; this.match(MySqlParser.KW_STORAGE); } } - this.state = 6501; + this.state = 6407; this.match(MySqlParser.KW_ENGINES); } break; case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 6502; + this.state = 6408; this.match(MySqlParser.KW_MASTER); - this.state = 6503; + this.state = 6409; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 6504; + this.state = 6410; this.match(MySqlParser.KW_PLUGINS); } break; case MySqlParser.KW_PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 6505; + this.state = 6411; this.match(MySqlParser.KW_PRIVILEGES); } break; @@ -35602,47 +35230,47 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 6507; + this.state = 6413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6506; + this.state = 6412; this.match(MySqlParser.KW_FULL); } } - this.state = 6509; + this.state = 6415; this.match(MySqlParser.KW_PROCESSLIST); } break; case MySqlParser.KW_PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 6510; + this.state = 6416; this.match(MySqlParser.KW_PROFILES); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 6511; + this.state = 6417; this.match(MySqlParser.KW_SLAVE); - this.state = 6512; + this.state = 6418; this.match(MySqlParser.KW_HOSTS); } break; case MySqlParser.KW_AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 6513; + this.state = 6419; this.match(MySqlParser.KW_AUTHORS); } break; case MySqlParser.KW_CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 6514; + this.state = 6420; this.match(MySqlParser.KW_CONTRIBUTORS); } break; @@ -35666,25 +35294,25 @@ export class MySqlParser extends antlr.Parser { } public showSchemaEntity(): ShowSchemaEntityContext { let localContext = new ShowSchemaEntityContext(this.context, this.state); - this.enterRule(localContext, 568, MySqlParser.RULE_showSchemaEntity); + this.enterRule(localContext, 562, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 6528; + this.state = 6434; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 6517; + this.state = 6423; this.match(MySqlParser.KW_EVENTS); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 6518; + this.state = 6424; this.match(MySqlParser.KW_TABLE); - this.state = 6519; + this.state = 6425; this.match(MySqlParser.KW_STATUS); } break; @@ -35693,34 +35321,34 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 6521; + this.state = 6427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6520; + this.state = 6426; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6524; + this.state = 6430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6523; + this.state = 6429; this.match(MySqlParser.KW_FULL); } } - this.state = 6526; + this.state = 6432; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 6527; + this.state = 6433; this.match(MySqlParser.KW_TRIGGERS); } break; @@ -35744,77 +35372,77 @@ export class MySqlParser extends antlr.Parser { } public showProfileType(): ShowProfileTypeContext { let localContext = new ShowProfileTypeContext(this.context, this.state); - this.enterRule(localContext, 570, MySqlParser.RULE_showProfileType); + this.enterRule(localContext, 564, MySqlParser.RULE_showProfileType); try { - this.state = 6542; + this.state = 6448; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 6530; + this.state = 6436; this.match(MySqlParser.KW_ALL); } break; case MySqlParser.KW_BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 6531; + this.state = 6437; this.match(MySqlParser.KW_BLOCK); - this.state = 6532; + this.state = 6438; this.match(MySqlParser.KW_IO); } break; case MySqlParser.KW_CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 6533; + this.state = 6439; this.match(MySqlParser.KW_CONTEXT); - this.state = 6534; + this.state = 6440; this.match(MySqlParser.KW_SWITCHES); } break; case MySqlParser.KW_CPU: this.enterOuterAlt(localContext, 4); { - this.state = 6535; + this.state = 6441; this.match(MySqlParser.KW_CPU); } break; case MySqlParser.KW_IPC: this.enterOuterAlt(localContext, 5); { - this.state = 6536; + this.state = 6442; this.match(MySqlParser.KW_IPC); } break; case MySqlParser.KW_MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 6537; + this.state = 6443; this.match(MySqlParser.KW_MEMORY); } break; case MySqlParser.KW_PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 6538; + this.state = 6444; this.match(MySqlParser.KW_PAGE); - this.state = 6539; + this.state = 6445; this.match(MySqlParser.KW_FAULTS); } break; case MySqlParser.KW_SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 6540; + this.state = 6446; this.match(MySqlParser.KW_SOURCE); } break; case MySqlParser.KW_SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 6541; + this.state = 6447; this.match(MySqlParser.KW_SWAPS); } break; @@ -35838,13 +35466,13 @@ export class MySqlParser extends antlr.Parser { } public binlogStatement(): BinlogStatementContext { let localContext = new BinlogStatementContext(this.context, this.state); - this.enterRule(localContext, 572, MySqlParser.RULE_binlogStatement); + this.enterRule(localContext, 566, MySqlParser.RULE_binlogStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6544; + this.state = 6450; this.match(MySqlParser.KW_BINLOG); - this.state = 6545; + this.state = 6451; this.match(MySqlParser.STRING_LITERAL); } } @@ -35864,35 +35492,35 @@ export class MySqlParser extends antlr.Parser { } public cacheIndexStatement(): CacheIndexStatementContext { let localContext = new CacheIndexStatementContext(this.context, this.state); - this.enterRule(localContext, 574, MySqlParser.RULE_cacheIndexStatement); + this.enterRule(localContext, 568, MySqlParser.RULE_cacheIndexStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6547; + this.state = 6453; this.match(MySqlParser.KW_CACHE); - this.state = 6548; + this.state = 6454; this.match(MySqlParser.KW_INDEX); - this.state = 6566; + this.state = 6472; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { case 1: { - this.state = 6549; + this.state = 6455; this.tableIndex(); - this.state = 6554; + this.state = 6460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6550; + this.state = 6456; this.match(MySqlParser.COMMA); - this.state = 6551; + this.state = 6457; this.tableIndex(); } } - this.state = 6556; + this.state = 6462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35900,13 +35528,13 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 6557; + this.state = 6463; this.tableName(); - this.state = 6558; + this.state = 6464; this.match(MySqlParser.KW_PARTITION); - this.state = 6559; + this.state = 6465; this.match(MySqlParser.LR_BRACKET); - this.state = 6562; + this.state = 6468; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -36458,27 +36086,27 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6560; + this.state = 6466; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6561; + this.state = 6467; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6564; + this.state = 6470; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6568; + this.state = 6474; this.match(MySqlParser.KW_IN); - this.state = 6569; + this.state = 6475; this.databaseName(); } } @@ -36498,38 +36126,38 @@ export class MySqlParser extends antlr.Parser { } public flushStatement(): FlushStatementContext { let localContext = new FlushStatementContext(this.context, this.state); - this.enterRule(localContext, 576, MySqlParser.RULE_flushStatement); + this.enterRule(localContext, 570, MySqlParser.RULE_flushStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6571; + this.state = 6477; this.match(MySqlParser.KW_FLUSH); - this.state = 6573; + this.state = 6479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6572; + this.state = 6478; this.tableActionOption(); } } - this.state = 6575; + this.state = 6481; this.flushOption(); - this.state = 6580; + this.state = 6486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6576; + this.state = 6482; this.match(MySqlParser.COMMA); - this.state = 6577; + this.state = 6483; this.flushOption(); } } - this.state = 6582; + this.state = 6488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36551,19 +36179,19 @@ export class MySqlParser extends antlr.Parser { } public killStatement(): KillStatementContext { let localContext = new KillStatementContext(this.context, this.state); - this.enterRule(localContext, 578, MySqlParser.RULE_killStatement); + this.enterRule(localContext, 572, MySqlParser.RULE_killStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6583; + this.state = 6489; this.match(MySqlParser.KW_KILL); - this.state = 6585; + this.state = 6491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { case 1: { - this.state = 6584; + this.state = 6490; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 349 || _la === 548)) { @@ -36576,7 +36204,7 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 6587; + this.state = 6493; this.expression(0); } } @@ -36596,34 +36224,34 @@ export class MySqlParser extends antlr.Parser { } public loadIndexIntoCache(): LoadIndexIntoCacheContext { let localContext = new LoadIndexIntoCacheContext(this.context, this.state); - this.enterRule(localContext, 580, MySqlParser.RULE_loadIndexIntoCache); + this.enterRule(localContext, 574, MySqlParser.RULE_loadIndexIntoCache); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6589; + this.state = 6495; this.match(MySqlParser.KW_LOAD); - this.state = 6590; + this.state = 6496; this.match(MySqlParser.KW_INDEX); - this.state = 6591; + this.state = 6497; this.match(MySqlParser.KW_INTO); - this.state = 6592; + this.state = 6498; this.match(MySqlParser.KW_CACHE); - this.state = 6593; + this.state = 6499; this.loadedTableIndexes(); - this.state = 6598; + this.state = 6504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6594; + this.state = 6500; this.match(MySqlParser.COMMA); - this.state = 6595; + this.state = 6501; this.loadedTableIndexes(); } } - this.state = 6600; + this.state = 6506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36645,28 +36273,28 @@ export class MySqlParser extends antlr.Parser { } public resetStatement(): ResetStatementContext { let localContext = new ResetStatementContext(this.context, this.state); - this.enterRule(localContext, 582, MySqlParser.RULE_resetStatement); + this.enterRule(localContext, 576, MySqlParser.RULE_resetStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6601; + this.state = 6507; this.match(MySqlParser.KW_RESET); - this.state = 6602; + this.state = 6508; this.resetOption(); - this.state = 6607; + this.state = 6513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6603; + this.state = 6509; this.match(MySqlParser.COMMA); - this.state = 6604; + this.state = 6510; this.resetOption(); } } - this.state = 6609; + this.state = 6515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36688,38 +36316,38 @@ export class MySqlParser extends antlr.Parser { } public resetOption(): ResetOptionContext { let localContext = new ResetOptionContext(this.context, this.state); - this.enterRule(localContext, 584, MySqlParser.RULE_resetOption); + this.enterRule(localContext, 578, MySqlParser.RULE_resetOption); try { - this.state = 6615; + this.state = 6521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 1); { - this.state = 6610; + this.state = 6516; this.match(MySqlParser.KW_MASTER); } break; case MySqlParser.KW_REPLICA: this.enterOuterAlt(localContext, 2); { - this.state = 6611; + this.state = 6517; this.match(MySqlParser.KW_REPLICA); } break; case MySqlParser.KW_QUERY: this.enterOuterAlt(localContext, 3); { - this.state = 6612; + this.state = 6518; this.match(MySqlParser.KW_QUERY); - this.state = 6613; + this.state = 6519; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 4); { - this.state = 6614; + this.state = 6520; this.match(MySqlParser.KW_SLAVE); } break; @@ -36743,30 +36371,30 @@ export class MySqlParser extends antlr.Parser { } public resetPersist(): ResetPersistContext { let localContext = new ResetPersistContext(this.context, this.state); - this.enterRule(localContext, 586, MySqlParser.RULE_resetPersist); + this.enterRule(localContext, 580, MySqlParser.RULE_resetPersist); try { this.enterOuterAlt(localContext, 1); { - this.state = 6617; + this.state = 6523; this.match(MySqlParser.KW_RESET); - this.state = 6618; + this.state = 6524; this.match(MySqlParser.KW_PERSIST); - this.state = 6623; + this.state = 6529; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { case 1: { - this.state = 6620; + this.state = 6526; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 935, this.context) ) { case 1: { - this.state = 6619; + this.state = 6525; this.ifExists(); } break; } - this.state = 6622; + this.state = 6528; localContext._system_var_name = this.uid(); } break; @@ -36789,14 +36417,14 @@ export class MySqlParser extends antlr.Parser { } public resetAllChannel(): ResetAllChannelContext { let localContext = new ResetAllChannelContext(this.context, this.state); - this.enterRule(localContext, 588, MySqlParser.RULE_resetAllChannel); + this.enterRule(localContext, 582, MySqlParser.RULE_resetAllChannel); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6625; + this.state = 6531; this.match(MySqlParser.KW_RESET); - this.state = 6626; + this.state = 6532; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -36805,22 +36433,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6628; + this.state = 6534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 6627; + this.state = 6533; this.match(MySqlParser.KW_ALL); } } - this.state = 6631; + this.state = 6537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6630; + this.state = 6536; this.channelOption(); } } @@ -36843,11 +36471,11 @@ export class MySqlParser extends antlr.Parser { } public reStartStatement(): ReStartStatementContext { let localContext = new ReStartStatementContext(this.context, this.state); - this.enterRule(localContext, 590, MySqlParser.RULE_reStartStatement); + this.enterRule(localContext, 584, MySqlParser.RULE_reStartStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6633; + this.state = 6539; this.match(MySqlParser.KW_RESTART); } } @@ -36867,11 +36495,11 @@ export class MySqlParser extends antlr.Parser { } public shutdownStatement(): ShutdownStatementContext { let localContext = new ShutdownStatementContext(this.context, this.state); - this.enterRule(localContext, 592, MySqlParser.RULE_shutdownStatement); + this.enterRule(localContext, 586, MySqlParser.RULE_shutdownStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6635; + this.state = 6541; this.match(MySqlParser.KW_SHUTDOWN); } } @@ -36891,19 +36519,19 @@ export class MySqlParser extends antlr.Parser { } public tableIndex(): TableIndexContext { let localContext = new TableIndexContext(this.context, this.state); - this.enterRule(localContext, 594, MySqlParser.RULE_tableIndex); + this.enterRule(localContext, 588, MySqlParser.RULE_tableIndex); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6637; + this.state = 6543; this.tableName(); - this.state = 6643; + this.state = 6549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6638; + this.state = 6544; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -36913,11 +36541,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6639; + this.state = 6545; this.match(MySqlParser.LR_BRACKET); - this.state = 6640; + this.state = 6546; this.indexNames(); - this.state = 6641; + this.state = 6547; this.match(MySqlParser.RR_BRACKET); } } @@ -36940,28 +36568,28 @@ export class MySqlParser extends antlr.Parser { } public flushOption(): FlushOptionContext { let localContext = new FlushOptionContext(this.context, this.state); - this.enterRule(localContext, 596, MySqlParser.RULE_flushOption); + this.enterRule(localContext, 590, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6677; + this.state = 6583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6663; + this.state = 6569; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DES_KEY_FILE: { - this.state = 6645; + this.state = 6551; this.match(MySqlParser.KW_DES_KEY_FILE); } break; case MySqlParser.KW_HOSTS: { - this.state = 6646; + this.state = 6552; this.match(MySqlParser.KW_HOSTS); } break; @@ -36973,12 +36601,12 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_RELAY: case MySqlParser.KW_SLOW: { - this.state = 6648; + this.state = 6554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599) { { - this.state = 6647; + this.state = 6553; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599)) { this.errorHandler.recoverInline(this); @@ -36990,56 +36618,56 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6650; + this.state = 6556; this.match(MySqlParser.KW_LOGS); } break; case MySqlParser.KW_OPTIMIZER_COSTS: { - this.state = 6651; + this.state = 6557; this.match(MySqlParser.KW_OPTIMIZER_COSTS); } break; case MySqlParser.KW_PRIVILEGES: { - this.state = 6652; + this.state = 6558; this.match(MySqlParser.KW_PRIVILEGES); } break; case MySqlParser.KW_QUERY: { - this.state = 6653; + this.state = 6559; this.match(MySqlParser.KW_QUERY); - this.state = 6654; + this.state = 6560; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_STATUS: { - this.state = 6655; + this.state = 6561; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_USER_RESOURCES: { - this.state = 6656; + this.state = 6562; this.match(MySqlParser.KW_USER_RESOURCES); } break; case MySqlParser.KW_TABLES: { - this.state = 6657; + this.state = 6563; this.match(MySqlParser.KW_TABLES); - this.state = 6661; + this.state = 6567; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 941, this.context) ) { case 1: { - this.state = 6658; + this.state = 6564; this.match(MySqlParser.KW_WITH); - this.state = 6659; + this.state = 6565; this.match(MySqlParser.KW_READ); - this.state = 6660; + this.state = 6566; this.match(MySqlParser.KW_LOCK); } break; @@ -37055,16 +36683,16 @@ export class MySqlParser extends antlr.Parser { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6665; + this.state = 6571; this.match(MySqlParser.KW_RELAY); - this.state = 6666; + this.state = 6572; this.match(MySqlParser.KW_LOGS); - this.state = 6668; + this.state = 6574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6667; + this.state = 6573; this.channelOption(); } } @@ -37075,7 +36703,7 @@ export class MySqlParser extends antlr.Parser { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6670; + this.state = 6576; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -37084,22 +36712,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6672; + this.state = 6578; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { case 1: { - this.state = 6671; + this.state = 6577; this.tableNames(); } break; } - this.state = 6675; + this.state = 6581; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 964, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { case 1: { - this.state = 6674; + this.state = 6580; this.flushTableOption(); } break; @@ -37124,28 +36752,28 @@ export class MySqlParser extends antlr.Parser { } public flushTableOption(): FlushTableOptionContext { let localContext = new FlushTableOptionContext(this.context, this.state); - this.enterRule(localContext, 598, MySqlParser.RULE_flushTableOption); + this.enterRule(localContext, 592, MySqlParser.RULE_flushTableOption); try { - this.state = 6684; + this.state = 6590; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6679; + this.state = 6585; this.match(MySqlParser.KW_WITH); - this.state = 6680; + this.state = 6586; this.match(MySqlParser.KW_READ); - this.state = 6681; + this.state = 6587; this.match(MySqlParser.KW_LOCK); } break; case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6682; + this.state = 6588; this.match(MySqlParser.KW_FOR); - this.state = 6683; + this.state = 6589; this.match(MySqlParser.KW_EXPORT); } break; @@ -37169,23 +36797,23 @@ export class MySqlParser extends antlr.Parser { } public loadedTableIndexes(): LoadedTableIndexesContext { let localContext = new LoadedTableIndexesContext(this.context, this.state); - this.enterRule(localContext, 600, MySqlParser.RULE_loadedTableIndexes); + this.enterRule(localContext, 594, MySqlParser.RULE_loadedTableIndexes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6686; + this.state = 6592; this.tableName(); - this.state = 6694; + this.state = 6600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 6687; + this.state = 6593; this.match(MySqlParser.KW_PARTITION); - this.state = 6688; + this.state = 6594; this.match(MySqlParser.LR_BRACKET); - this.state = 6691; + this.state = 6597; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -37737,35 +37365,35 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6689; + this.state = 6595; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6690; + this.state = 6596; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6693; + this.state = 6599; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6703; + this.state = 6609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { case 1: { - this.state = 6697; + this.state = 6603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6696; + this.state = 6602; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -37778,23 +37406,23 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6699; + this.state = 6605; this.match(MySqlParser.LR_BRACKET); - this.state = 6700; + this.state = 6606; this.indexNames(); - this.state = 6701; + this.state = 6607; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6707; + this.state = 6613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6705; + this.state = 6611; this.match(MySqlParser.KW_IGNORE); - this.state = 6706; + this.state = 6612; this.match(MySqlParser.KW_LEAVES); } } @@ -37817,12 +37445,12 @@ export class MySqlParser extends antlr.Parser { } public simpleDescribeStatement(): SimpleDescribeStatementContext { let localContext = new SimpleDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 602, MySqlParser.RULE_simpleDescribeStatement); + this.enterRule(localContext, 596, MySqlParser.RULE_simpleDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6709; + this.state = 6615; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -37832,20 +37460,20 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6710; + this.state = 6616; this.tableName(); - this.state = 6713; + this.state = 6619; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { case 1: { - this.state = 6711; + this.state = 6617; localContext._column = this.columnName(); } break; case 2: { - this.state = 6712; + this.state = 6618; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -37868,12 +37496,12 @@ export class MySqlParser extends antlr.Parser { } public fullDescribeStatement(): FullDescribeStatementContext { let localContext = new FullDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 604, MySqlParser.RULE_fullDescribeStatement); + this.enterRule(localContext, 598, MySqlParser.RULE_fullDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6715; + this.state = 6621; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -37883,28 +37511,28 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6721; + this.state = 6627; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EXTENDED: { - this.state = 6716; + this.state = 6622; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_PARTITIONS: { - this.state = 6717; + this.state = 6623; this.match(MySqlParser.KW_PARTITIONS); } break; case MySqlParser.KW_FORMAT: { - this.state = 6718; + this.state = 6624; this.match(MySqlParser.KW_FORMAT); - this.state = 6719; + this.state = 6625; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6720; + this.state = 6626; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 663 || _la === 666)) { this.errorHandler.recoverInline(this); @@ -37926,7 +37554,7 @@ export class MySqlParser extends antlr.Parser { default: break; } - this.state = 6723; + this.state = 6629; this.describeObjectClause(); } } @@ -37946,12 +37574,12 @@ export class MySqlParser extends antlr.Parser { } public analyzeDescribeStatement(): AnalyzeDescribeStatementContext { let localContext = new AnalyzeDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 606, MySqlParser.RULE_analyzeDescribeStatement); + this.enterRule(localContext, 600, MySqlParser.RULE_analyzeDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6725; + this.state = 6631; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -37961,23 +37589,23 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6726; + this.state = 6632; this.match(MySqlParser.KW_ANALYZE); - this.state = 6730; + this.state = 6636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 826) { { - this.state = 6727; + this.state = 6633; this.match(MySqlParser.KW_FORMAT); - this.state = 6728; + this.state = 6634; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6729; + this.state = 6635; this.match(MySqlParser.KW_TREE); } } - this.state = 6732; + this.state = 6638; this.selectStatement(); } } @@ -37997,13 +37625,13 @@ export class MySqlParser extends antlr.Parser { } public helpStatement(): HelpStatementContext { let localContext = new HelpStatementContext(this.context, this.state); - this.enterRule(localContext, 608, MySqlParser.RULE_helpStatement); + this.enterRule(localContext, 602, MySqlParser.RULE_helpStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6734; + this.state = 6640; this.match(MySqlParser.KW_HELP); - this.state = 6735; + this.state = 6641; this.match(MySqlParser.STRING_LITERAL); } } @@ -38023,13 +37651,13 @@ export class MySqlParser extends antlr.Parser { } public useStatement(): UseStatementContext { let localContext = new UseStatementContext(this.context, this.state); - this.enterRule(localContext, 610, MySqlParser.RULE_useStatement); + this.enterRule(localContext, 604, MySqlParser.RULE_useStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6737; + this.state = 6643; this.match(MySqlParser.KW_USE); - this.state = 6738; + this.state = 6644; this.databaseName(); } } @@ -38049,73 +37677,73 @@ export class MySqlParser extends antlr.Parser { } public signalStatement(): SignalStatementContext { let localContext = new SignalStatementContext(this.context, this.state); - this.enterRule(localContext, 612, MySqlParser.RULE_signalStatement); + this.enterRule(localContext, 606, MySqlParser.RULE_signalStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6740; + this.state = 6646; this.match(MySqlParser.KW_SIGNAL); - this.state = 6748; + this.state = 6654; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6741; + this.state = 6647; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6743; + this.state = 6649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6742; + this.state = 6648; this.match(MySqlParser.KW_VALUE); } } - this.state = 6745; + this.state = 6651; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6746; + this.state = 6652; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6747; + this.state = 6653; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6759; + this.state = 6665; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 959, this.context) ) { case 1: { - this.state = 6750; + this.state = 6656; this.match(MySqlParser.KW_SET); - this.state = 6751; + this.state = 6657; this.signalConditionInformation(); - this.state = 6756; + this.state = 6662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6752; + this.state = 6658; this.match(MySqlParser.COMMA); - this.state = 6753; + this.state = 6659; this.signalConditionInformation(); } } - this.state = 6758; + this.state = 6664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38140,45 +37768,45 @@ export class MySqlParser extends antlr.Parser { } public resignalStatement(): ResignalStatementContext { let localContext = new ResignalStatementContext(this.context, this.state); - this.enterRule(localContext, 614, MySqlParser.RULE_resignalStatement); + this.enterRule(localContext, 608, MySqlParser.RULE_resignalStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6761; + this.state = 6667; this.match(MySqlParser.KW_RESIGNAL); - this.state = 6769; + this.state = 6675; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6762; + this.state = 6668; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6764; + this.state = 6670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6763; + this.state = 6669; this.match(MySqlParser.KW_VALUE); } } - this.state = 6766; + this.state = 6672; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6767; + this.state = 6673; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6768; + this.state = 6674; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -38249,28 +37877,28 @@ export class MySqlParser extends antlr.Parser { default: break; } - this.state = 6780; + this.state = 6686; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { case 1: { - this.state = 6771; + this.state = 6677; this.match(MySqlParser.KW_SET); - this.state = 6772; + this.state = 6678; this.signalConditionInformation(); - this.state = 6777; + this.state = 6683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6773; + this.state = 6679; this.match(MySqlParser.COMMA); - this.state = 6774; + this.state = 6680; this.signalConditionInformation(); } } - this.state = 6779; + this.state = 6685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38295,12 +37923,12 @@ export class MySqlParser extends antlr.Parser { } public signalConditionInformation(): SignalConditionInformationContext { let localContext = new SignalConditionInformationContext(this.context, this.state); - this.enterRule(localContext, 616, MySqlParser.RULE_signalConditionInformation); + this.enterRule(localContext, 610, MySqlParser.RULE_signalConditionInformation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6782; + this.state = 6688; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -38309,29 +37937,29 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6783; + this.state = 6689; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6788; + this.state = 6694; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.START_NATIONAL_STRING_LITERAL: case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6784; + this.state = 6690; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6785; + this.state = 6691; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6786; + this.state = 6692; this.mysqlVariable(); } break; @@ -38882,7 +38510,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6787; + this.state = 6693; this.simpleId(); } break; @@ -38907,38 +38535,38 @@ export class MySqlParser extends antlr.Parser { } public withStatement(): WithStatementContext { let localContext = new WithStatementContext(this.context, this.state); - this.enterRule(localContext, 618, MySqlParser.RULE_withStatement); + this.enterRule(localContext, 612, MySqlParser.RULE_withStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6790; + this.state = 6696; this.match(MySqlParser.KW_WITH); - this.state = 6792; + this.state = 6698; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { - this.state = 6791; + this.state = 6697; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 6794; + this.state = 6700; this.commonTableExpressions(); - this.state = 6799; + this.state = 6705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6795; + this.state = 6701; this.match(MySqlParser.COMMA); - this.state = 6796; + this.state = 6702; this.commonTableExpressions(); } } - this.state = 6801; + this.state = 6707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38960,30 +38588,30 @@ export class MySqlParser extends antlr.Parser { } public tableStatement(): TableStatementContext { let localContext = new TableStatementContext(this.context, this.state); - this.enterRule(localContext, 620, MySqlParser.RULE_tableStatement); + this.enterRule(localContext, 614, MySqlParser.RULE_tableStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6802; + this.state = 6708; this.match(MySqlParser.KW_TABLE); - this.state = 6803; + this.state = 6709; this.tableName(); - this.state = 6805; + this.state = 6711; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { case 1: { - this.state = 6804; + this.state = 6710; this.orderByClause(); } break; } - this.state = 6808; + this.state = 6714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { case 1: { - this.state = 6807; + this.state = 6713; this.limitClause(); } break; @@ -39006,19 +38634,19 @@ export class MySqlParser extends antlr.Parser { } public diagnosticsStatement(): DiagnosticsStatementContext { let localContext = new DiagnosticsStatementContext(this.context, this.state); - this.enterRule(localContext, 622, MySqlParser.RULE_diagnosticsStatement); + this.enterRule(localContext, 616, MySqlParser.RULE_diagnosticsStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6810; + this.state = 6716; this.match(MySqlParser.KW_GET); - this.state = 6812; + this.state = 6718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 170) { { - this.state = 6811; + this.state = 6717; _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -39030,19 +38658,19 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 6814; + this.state = 6720; this.match(MySqlParser.KW_DIAGNOSTICS); - this.state = 6846; + this.state = 6752; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { { - this.state = 6815; + this.state = 6721; this.variableClause(); - this.state = 6816; + this.state = 6722; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6817; + this.state = 6723; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39051,19 +38679,19 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6825; + this.state = 6731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6818; + this.state = 6724; this.match(MySqlParser.COMMA); - this.state = 6819; + this.state = 6725; this.variableClause(); - this.state = 6820; + this.state = 6726; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6821; + this.state = 6727; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39074,7 +38702,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 6827; + this.state = 6733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39084,9 +38712,9 @@ export class MySqlParser extends antlr.Parser { case 2: { { - this.state = 6828; + this.state = 6734; this.match(MySqlParser.KW_CONDITION); - this.state = 6831; + this.state = 6737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -39096,7 +38724,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6829; + this.state = 6735; this.decimalLiteral(); } break; @@ -39654,36 +39282,36 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6830; + this.state = 6736; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6833; + this.state = 6739; this.variableClause(); - this.state = 6834; + this.state = 6740; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6835; + this.state = 6741; this.diagnosticsConditionInformationName(); - this.state = 6843; + this.state = 6749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6836; + this.state = 6742; this.match(MySqlParser.COMMA); - this.state = 6837; + this.state = 6743; this.variableClause(); - this.state = 6838; + this.state = 6744; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6839; + this.state = 6745; this.diagnosticsConditionInformationName(); } } - this.state = 6845; + this.state = 6751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39709,12 +39337,12 @@ export class MySqlParser extends antlr.Parser { } public diagnosticsConditionInformationName(): DiagnosticsConditionInformationNameContext { let localContext = new DiagnosticsConditionInformationNameContext(this.context, this.state); - this.enterRule(localContext, 624, MySqlParser.RULE_diagnosticsConditionInformationName); + this.enterRule(localContext, 618, MySqlParser.RULE_diagnosticsConditionInformationName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6848; + this.state = 6754; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 578 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -39741,9 +39369,9 @@ export class MySqlParser extends antlr.Parser { } public describeObjectClause(): DescribeObjectClauseContext { let localContext = new DescribeObjectClauseContext(this.context, this.state); - this.enterRule(localContext, 626, MySqlParser.RULE_describeObjectClause); + this.enterRule(localContext, 620, MySqlParser.RULE_describeObjectClause); try { - this.state = 6860; + this.state = 6766; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DELETE: @@ -39755,37 +39383,37 @@ export class MySqlParser extends antlr.Parser { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6855; + this.state = 6761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6850; + this.state = 6756; this.selectStatement(); } break; case MySqlParser.KW_DELETE: { - this.state = 6851; + this.state = 6757; this.deleteStatement(); } break; case MySqlParser.KW_INSERT: { - this.state = 6852; + this.state = 6758; this.insertStatement(); } break; case MySqlParser.KW_REPLACE: { - this.state = 6853; + this.state = 6759; this.replaceStatement(); } break; case MySqlParser.KW_UPDATE: { - this.state = 6854; + this.state = 6760; this.updateStatement(); } break; @@ -39798,11 +39426,11 @@ export class MySqlParser extends antlr.Parser { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6857; + this.state = 6763; this.match(MySqlParser.KW_FOR); - this.state = 6858; + this.state = 6764; this.match(MySqlParser.KW_CONNECTION); - this.state = 6859; + this.state = 6765; (localContext as DescribeConnectionContext)._connection_id = this.uid(); } break; @@ -39826,11 +39454,11 @@ export class MySqlParser extends antlr.Parser { } public databaseNameCreate(): DatabaseNameCreateContext { let localContext = new DatabaseNameCreateContext(this.context, this.state); - this.enterRule(localContext, 628, MySqlParser.RULE_databaseNameCreate); + this.enterRule(localContext, 622, MySqlParser.RULE_databaseNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6862; + this.state = 6768; this.fullId(); } } @@ -39850,11 +39478,11 @@ export class MySqlParser extends antlr.Parser { } public databaseName(): DatabaseNameContext { let localContext = new DatabaseNameContext(this.context, this.state); - this.enterRule(localContext, 630, MySqlParser.RULE_databaseName); + this.enterRule(localContext, 624, MySqlParser.RULE_databaseName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6864; + this.state = 6770; this.fullId(); } } @@ -39874,11 +39502,11 @@ export class MySqlParser extends antlr.Parser { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 632, MySqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 626, MySqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6866; + this.state = 6772; this.fullId(); } } @@ -39898,11 +39526,11 @@ export class MySqlParser extends antlr.Parser { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 634, MySqlParser.RULE_functionName); + this.enterRule(localContext, 628, MySqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6868; + this.state = 6774; this.fullId(); } } @@ -39922,11 +39550,11 @@ export class MySqlParser extends antlr.Parser { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 636, MySqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 630, MySqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6870; + this.state = 6776; this.fullId(); } } @@ -39946,11 +39574,11 @@ export class MySqlParser extends antlr.Parser { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 638, MySqlParser.RULE_viewName); + this.enterRule(localContext, 632, MySqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6872; + this.state = 6778; this.fullId(); } } @@ -39970,11 +39598,11 @@ export class MySqlParser extends antlr.Parser { } public indexNameCreate(): IndexNameCreateContext { let localContext = new IndexNameCreateContext(this.context, this.state); - this.enterRule(localContext, 640, MySqlParser.RULE_indexNameCreate); + this.enterRule(localContext, 634, MySqlParser.RULE_indexNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6874; + this.state = 6780; this.uid(); } } @@ -39994,26 +39622,26 @@ export class MySqlParser extends antlr.Parser { } public indexNames(): IndexNamesContext { let localContext = new IndexNamesContext(this.context, this.state); - this.enterRule(localContext, 642, MySqlParser.RULE_indexNames); + this.enterRule(localContext, 636, MySqlParser.RULE_indexNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6876; + this.state = 6782; this.indexName(); - this.state = 6881; + this.state = 6787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6877; + this.state = 6783; this.match(MySqlParser.COMMA); - this.state = 6878; + this.state = 6784; this.indexName(); } } - this.state = 6883; + this.state = 6789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40035,11 +39663,11 @@ export class MySqlParser extends antlr.Parser { } public indexName(): IndexNameContext { let localContext = new IndexNameContext(this.context, this.state); - this.enterRule(localContext, 644, MySqlParser.RULE_indexName); + this.enterRule(localContext, 638, MySqlParser.RULE_indexName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6884; + this.state = 6790; this.uid(); } } @@ -40059,11 +39687,11 @@ export class MySqlParser extends antlr.Parser { } public groupNameCreate(): GroupNameCreateContext { let localContext = new GroupNameCreateContext(this.context, this.state); - this.enterRule(localContext, 646, MySqlParser.RULE_groupNameCreate); + this.enterRule(localContext, 640, MySqlParser.RULE_groupNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6886; + this.state = 6792; this.uid(); } } @@ -40083,11 +39711,11 @@ export class MySqlParser extends antlr.Parser { } public groupName(): GroupNameContext { let localContext = new GroupNameContext(this.context, this.state); - this.enterRule(localContext, 648, MySqlParser.RULE_groupName); + this.enterRule(localContext, 642, MySqlParser.RULE_groupName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6888; + this.state = 6794; this.uid(); } } @@ -40107,11 +39735,11 @@ export class MySqlParser extends antlr.Parser { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 650, MySqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 644, MySqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6890; + this.state = 6796; this.fullId(); } } @@ -40131,30 +39759,30 @@ export class MySqlParser extends antlr.Parser { } public tableNames(): TableNamesContext { let localContext = new TableNamesContext(this.context, this.state); - this.enterRule(localContext, 652, MySqlParser.RULE_tableNames); + this.enterRule(localContext, 646, MySqlParser.RULE_tableNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6892; + this.state = 6798; this.tableName(); - this.state = 6897; + this.state = 6803; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 977, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6893; + this.state = 6799; this.match(MySqlParser.COMMA); - this.state = 6894; + this.state = 6800; this.tableName(); } } } - this.state = 6899; + this.state = 6805; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 977, this.context); } } } @@ -40174,11 +39802,11 @@ export class MySqlParser extends antlr.Parser { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 654, MySqlParser.RULE_tableName); + this.enterRule(localContext, 648, MySqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6900; + this.state = 6806; this.fullId(); } } @@ -40198,26 +39826,26 @@ export class MySqlParser extends antlr.Parser { } public userOrRoleNames(): UserOrRoleNamesContext { let localContext = new UserOrRoleNamesContext(this.context, this.state); - this.enterRule(localContext, 656, MySqlParser.RULE_userOrRoleNames); + this.enterRule(localContext, 650, MySqlParser.RULE_userOrRoleNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6902; + this.state = 6808; this.userOrRoleName(); - this.state = 6907; + this.state = 6813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6903; + this.state = 6809; this.match(MySqlParser.COMMA); - this.state = 6904; + this.state = 6810; this.userOrRoleName(); } } - this.state = 6909; + this.state = 6815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40239,22 +39867,22 @@ export class MySqlParser extends antlr.Parser { } public userOrRoleName(): UserOrRoleNameContext { let localContext = new UserOrRoleNameContext(this.context, this.state); - this.enterRule(localContext, 658, MySqlParser.RULE_userOrRoleName); + this.enterRule(localContext, 652, MySqlParser.RULE_userOrRoleName); try { - this.state = 6912; + this.state = 6818; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6910; + this.state = 6816; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6911; + this.state = 6817; this.uid(); } break; @@ -40276,30 +39904,30 @@ export class MySqlParser extends antlr.Parser { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 660, MySqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 654, MySqlParser.RULE_columnNameCreate); let _la: number; try { - this.state = 6928; + this.state = 6834; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6914; + this.state = 6820; this.uid(); - this.state = 6919; + this.state = 6825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6915; + this.state = 6821; this.dottedId(); - this.state = 6917; + this.state = 6823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6916; + this.state = 6822; this.dottedId(); } } @@ -40312,24 +39940,24 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6922; + this.state = 6828; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { case 1: { - this.state = 6921; + this.state = 6827; this.matchWildcard(); } break; } - this.state = 6924; + this.state = 6830; this.dottedId(); - this.state = 6926; + this.state = 6832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6925; + this.state = 6831; this.dottedId(); } } @@ -40354,30 +39982,30 @@ export class MySqlParser extends antlr.Parser { } public columnNames(): ColumnNamesContext { let localContext = new ColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 662, MySqlParser.RULE_columnNames); + this.enterRule(localContext, 656, MySqlParser.RULE_columnNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6930; + this.state = 6836; this.columnName(); - this.state = 6935; + this.state = 6841; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 985, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6931; + this.state = 6837; this.match(MySqlParser.COMMA); - this.state = 6932; + this.state = 6838; this.columnName(); } } } - this.state = 6937; + this.state = 6843; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 985, this.context); } } } @@ -40397,29 +40025,29 @@ export class MySqlParser extends antlr.Parser { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 664, MySqlParser.RULE_columnName); + this.enterRule(localContext, 658, MySqlParser.RULE_columnName); try { - this.state = 6952; + this.state = 6858; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6938; + this.state = 6844; this.uid(); - this.state = 6943; + this.state = 6849; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { - this.state = 6939; + this.state = 6845; this.dottedId(); - this.state = 6941; + this.state = 6847; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: { - this.state = 6940; + this.state = 6846; this.dottedId(); } break; @@ -40432,24 +40060,24 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6946; + this.state = 6852; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { case 1: { - this.state = 6945; + this.state = 6851; this.matchWildcard(); } break; } - this.state = 6948; + this.state = 6854; this.dottedId(); - this.state = 6950; + this.state = 6856; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { case 1: { - this.state = 6949; + this.state = 6855; this.dottedId(); } break; @@ -40474,11 +40102,11 @@ export class MySqlParser extends antlr.Parser { } public tablespaceNameCreate(): TablespaceNameCreateContext { let localContext = new TablespaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 666, MySqlParser.RULE_tablespaceNameCreate); + this.enterRule(localContext, 660, MySqlParser.RULE_tablespaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6954; + this.state = 6860; this.uid(); } } @@ -40498,11 +40126,11 @@ export class MySqlParser extends antlr.Parser { } public tablespaceName(): TablespaceNameContext { let localContext = new TablespaceNameContext(this.context, this.state); - this.enterRule(localContext, 668, MySqlParser.RULE_tablespaceName); + this.enterRule(localContext, 662, MySqlParser.RULE_tablespaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6956; + this.state = 6862; this.uid(); } } @@ -40522,11 +40150,11 @@ export class MySqlParser extends antlr.Parser { } public partitionNameCreate(): PartitionNameCreateContext { let localContext = new PartitionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 670, MySqlParser.RULE_partitionNameCreate); + this.enterRule(localContext, 664, MySqlParser.RULE_partitionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6958; + this.state = 6864; this.uid(); } } @@ -40546,30 +40174,30 @@ export class MySqlParser extends antlr.Parser { } public partitionNames(): PartitionNamesContext { let localContext = new PartitionNamesContext(this.context, this.state); - this.enterRule(localContext, 672, MySqlParser.RULE_partitionNames); + this.enterRule(localContext, 666, MySqlParser.RULE_partitionNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6960; + this.state = 6866; this.partitionName(); - this.state = 6965; + this.state = 6871; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 991, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6961; + this.state = 6867; this.match(MySqlParser.COMMA); - this.state = 6962; + this.state = 6868; this.partitionName(); } } } - this.state = 6967; + this.state = 6873; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 991, this.context); } } } @@ -40589,11 +40217,11 @@ export class MySqlParser extends antlr.Parser { } public partitionName(): PartitionNameContext { let localContext = new PartitionNameContext(this.context, this.state); - this.enterRule(localContext, 674, MySqlParser.RULE_partitionName); + this.enterRule(localContext, 668, MySqlParser.RULE_partitionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6968; + this.state = 6874; this.uid(); } } @@ -40613,28 +40241,28 @@ export class MySqlParser extends antlr.Parser { } public indexColumnName(): IndexColumnNameContext { let localContext = new IndexColumnNameContext(this.context, this.state); - this.enterRule(localContext, 676, MySqlParser.RULE_indexColumnName); + this.enterRule(localContext, 670, MySqlParser.RULE_indexColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6978; + this.state = 6884; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: { - this.state = 6970; + this.state = 6876; this.uid(); - this.state = 6975; + this.state = 6881; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { case 1: { - this.state = 6971; + this.state = 6877; this.match(MySqlParser.LR_BRACKET); - this.state = 6972; + this.state = 6878; this.decimalLiteral(); - this.state = 6973; + this.state = 6879; this.match(MySqlParser.RR_BRACKET); } break; @@ -40643,17 +40271,17 @@ export class MySqlParser extends antlr.Parser { break; case 2: { - this.state = 6977; + this.state = 6883; this.expression(0); } break; } - this.state = 6981; + this.state = 6887; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { case 1: { - this.state = 6980; + this.state = 6886; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -40684,15 +40312,15 @@ export class MySqlParser extends antlr.Parser { } public userHostPort(): UserHostPortContext { let localContext = new UserHostPortContext(this.context, this.state); - this.enterRule(localContext, 678, MySqlParser.RULE_userHostPort); + this.enterRule(localContext, 672, MySqlParser.RULE_userHostPort); try { this.enterOuterAlt(localContext, 1); { - this.state = 6983; + this.state = 6889; this.userAtHost(); - this.state = 6984; + this.state = 6890; this.match(MySqlParser.COLON_SYMB); - this.state = 6985; + this.state = 6891; this.decimalLiteral(); } } @@ -40712,13 +40340,13 @@ export class MySqlParser extends antlr.Parser { } public userAtHost(): UserAtHostContext { let localContext = new UserAtHostContext(this.context, this.state); - this.enterRule(localContext, 680, MySqlParser.RULE_userAtHost); + this.enterRule(localContext, 674, MySqlParser.RULE_userAtHost); try { this.enterOuterAlt(localContext, 1); { - this.state = 6987; + this.state = 6893; this.simpleUserName(); - this.state = 6988; + this.state = 6894; this.match(MySqlParser.HOST_IP_ADDRESS); } } @@ -40738,36 +40366,36 @@ export class MySqlParser extends antlr.Parser { } public simpleUserName(): SimpleUserNameContext { let localContext = new SimpleUserNameContext(this.context, this.state); - this.enterRule(localContext, 682, MySqlParser.RULE_simpleUserName); + this.enterRule(localContext, 676, MySqlParser.RULE_simpleUserName); try { - this.state = 6994; + this.state = 6900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6990; + this.state = 6896; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6991; + this.state = 6897; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6992; + this.state = 6898; this.match(MySqlParser.KW_ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6993; + this.state = 6899; this.keywordsCanBeId(); } break; @@ -40789,12 +40417,12 @@ export class MySqlParser extends antlr.Parser { } public hostName(): HostNameContext { let localContext = new HostNameContext(this.context, this.state); - this.enterRule(localContext, 684, MySqlParser.RULE_hostName); + this.enterRule(localContext, 678, MySqlParser.RULE_hostName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6996; + this.state = 6902; _la = this.tokenStream.LA(1); if(!(((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -40821,23 +40449,23 @@ export class MySqlParser extends antlr.Parser { } public userName(): UserNameContext { let localContext = new UserNameContext(this.context, this.state); - this.enterRule(localContext, 686, MySqlParser.RULE_userName); + this.enterRule(localContext, 680, MySqlParser.RULE_userName); let _la: number; try { - this.state = 7003; + this.state = 6909; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6998; + this.state = 6904; this.simpleUserName(); - this.state = 7000; + this.state = 6906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0)) { { - this.state = 6999; + this.state = 6905; this.hostName(); } } @@ -40847,7 +40475,7 @@ export class MySqlParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7002; + this.state = 6908; this.currentUserExpression(); } break; @@ -40869,12 +40497,12 @@ export class MySqlParser extends antlr.Parser { } public mysqlVariable(): MysqlVariableContext { let localContext = new MysqlVariableContext(this.context, this.state); - this.enterRule(localContext, 688, MySqlParser.RULE_mysqlVariable); + this.enterRule(localContext, 682, MySqlParser.RULE_mysqlVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7005; + this.state = 6911; _la = this.tokenStream.LA(1); if(!(_la === 892 || _la === 893)) { this.errorHandler.recoverInline(this); @@ -40901,36 +40529,36 @@ export class MySqlParser extends antlr.Parser { } public charsetName(): CharsetNameContext { let localContext = new CharsetNameContext(this.context, this.state); - this.enterRule(localContext, 690, MySqlParser.RULE_charsetName); + this.enterRule(localContext, 684, MySqlParser.RULE_charsetName); try { - this.state = 7011; + this.state = 6917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7007; + this.state = 6913; this.match(MySqlParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7008; + this.state = 6914; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7009; + this.state = 6915; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7010; + this.state = 6916; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -40952,11 +40580,11 @@ export class MySqlParser extends antlr.Parser { } public collationName(): CollationNameContext { let localContext = new CollationNameContext(this.context, this.state); - this.enterRule(localContext, 692, MySqlParser.RULE_collationName); + this.enterRule(localContext, 686, MySqlParser.RULE_collationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7013; + this.state = 6919; this.uid(); } } @@ -40976,9 +40604,9 @@ export class MySqlParser extends antlr.Parser { } public engineName(): EngineNameContext { let localContext = new EngineNameContext(this.context, this.state); - this.enterRule(localContext, 694, MySqlParser.RULE_engineName); + this.enterRule(localContext, 688, MySqlParser.RULE_engineName); try { - this.state = 7018; + this.state = 6924; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONNECT: @@ -40996,21 +40624,21 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 7015; + this.state = 6921; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 7016; + this.state = 6922; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7017; + this.state = 6923; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41034,12 +40662,12 @@ export class MySqlParser extends antlr.Parser { } public engineNameBase(): EngineNameBaseContext { let localContext = new EngineNameBaseContext(this.context, this.state); - this.enterRule(localContext, 696, MySqlParser.RULE_engineNameBase); + this.enterRule(localContext, 690, MySqlParser.RULE_engineNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7020; + this.state = 6926; _la = this.tokenStream.LA(1); if(!(_la === 348 || ((((_la - 797)) & ~0x1F) === 0 && ((1 << (_la - 797)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -41066,46 +40694,46 @@ export class MySqlParser extends antlr.Parser { } public uuidSet(): UuidSetContext { let localContext = new UuidSetContext(this.context, this.state); - this.enterRule(localContext, 698, MySqlParser.RULE_uuidSet); + this.enterRule(localContext, 692, MySqlParser.RULE_uuidSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7022; + this.state = 6928; this.decimalLiteral(); - this.state = 7023; + this.state = 6929; this.match(MySqlParser.MINUS); - this.state = 7024; + this.state = 6930; this.decimalLiteral(); - this.state = 7025; + this.state = 6931; this.match(MySqlParser.MINUS); - this.state = 7026; + this.state = 6932; this.decimalLiteral(); - this.state = 7027; + this.state = 6933; this.match(MySqlParser.MINUS); - this.state = 7028; + this.state = 6934; this.decimalLiteral(); - this.state = 7029; + this.state = 6935; this.match(MySqlParser.MINUS); - this.state = 7030; + this.state = 6936; this.decimalLiteral(); - this.state = 7036; + this.state = 6942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7031; + this.state = 6937; this.match(MySqlParser.COLON_SYMB); - this.state = 7032; + this.state = 6938; this.decimalLiteral(); - this.state = 7033; + this.state = 6939; this.match(MySqlParser.MINUS); - this.state = 7034; + this.state = 6940; this.decimalLiteral(); } } - this.state = 7038; + this.state = 6944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 878); @@ -41127,30 +40755,30 @@ export class MySqlParser extends antlr.Parser { } public xid(): XidContext { let localContext = new XidContext(this.context, this.state); - this.enterRule(localContext, 700, MySqlParser.RULE_xid); + this.enterRule(localContext, 694, MySqlParser.RULE_xid); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7040; + this.state = 6946; localContext._globalTableUid = this.xuidStringId(); - this.state = 7047; + this.state = 6953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7041; + this.state = 6947; this.match(MySqlParser.COMMA); - this.state = 7042; + this.state = 6948; localContext._qualifier = this.xuidStringId(); - this.state = 7045; + this.state = 6951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7043; + this.state = 6949; this.match(MySqlParser.COMMA); - this.state = 7044; + this.state = 6950; localContext._idFormat = this.decimalLiteral(); } } @@ -41176,40 +40804,40 @@ export class MySqlParser extends antlr.Parser { } public xuidStringId(): XuidStringIdContext { let localContext = new XuidStringIdContext(this.context, this.state); - this.enterRule(localContext, 702, MySqlParser.RULE_xuidStringId); + this.enterRule(localContext, 696, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 7056; + this.state = 6962; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7049; + this.state = 6955; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7050; + this.state = 6956; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7052; + this.state = 6958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7051; + this.state = 6957; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 7054; + this.state = 6960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 884); @@ -41235,18 +40863,18 @@ export class MySqlParser extends antlr.Parser { } public fullId(): FullIdContext { let localContext = new FullIdContext(this.context, this.state); - this.enterRule(localContext, 704, MySqlParser.RULE_fullId); + this.enterRule(localContext, 698, MySqlParser.RULE_fullId); try { this.enterOuterAlt(localContext, 1); { - this.state = 7058; + this.state = 6964; this.uid(); - this.state = 7060; + this.state = 6966; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { case 1: { - this.state = 7059; + this.state = 6965; this.dottedId(); } break; @@ -41269,26 +40897,26 @@ export class MySqlParser extends antlr.Parser { } public uidList(): UidListContext { let localContext = new UidListContext(this.context, this.state); - this.enterRule(localContext, 706, MySqlParser.RULE_uidList); + this.enterRule(localContext, 700, MySqlParser.RULE_uidList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7062; + this.state = 6968; this.uid(); - this.state = 7067; + this.state = 6973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7063; + this.state = 6969; this.match(MySqlParser.COMMA); - this.state = 7064; + this.state = 6970; this.uid(); } } - this.state = 7069; + this.state = 6975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41310,9 +40938,9 @@ export class MySqlParser extends antlr.Parser { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 708, MySqlParser.RULE_uid); + this.enterRule(localContext, 702, MySqlParser.RULE_uid); try { - this.state = 7073; + this.state = 6979; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -41863,21 +41491,21 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 7070; + this.state = 6976; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7071; + this.state = 6977; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7072; + this.state = 6978; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41901,71 +41529,71 @@ export class MySqlParser extends antlr.Parser { } public simpleId(): SimpleIdContext { let localContext = new SimpleIdContext(this.context, this.state); - this.enterRule(localContext, 710, MySqlParser.RULE_simpleId); + this.enterRule(localContext, 704, MySqlParser.RULE_simpleId); try { - this.state = 7084; + this.state = 6990; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7075; + this.state = 6981; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7076; + this.state = 6982; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7077; + this.state = 6983; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7078; + this.state = 6984; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7079; + this.state = 6985; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7080; + this.state = 6986; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7081; + this.state = 6987; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7082; + this.state = 6988; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7083; + this.state = 6989; this.scalarFunctionName(); } break; @@ -41987,26 +41615,26 @@ export class MySqlParser extends antlr.Parser { } public dottedId(): DottedIdContext { let localContext = new DottedIdContext(this.context, this.state); - this.enterRule(localContext, 712, MySqlParser.RULE_dottedId); + this.enterRule(localContext, 706, MySqlParser.RULE_dottedId); try { - this.state = 7090; + this.state = 6996; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1028, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7086; + this.state = 6992; this.match(MySqlParser.DOT); - this.state = 7087; + this.state = 6993; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7088; + this.state = 6994; this.match(MySqlParser.DOT); - this.state = 7089; + this.state = 6995; this.uid(); } break; @@ -42028,12 +41656,12 @@ export class MySqlParser extends antlr.Parser { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 714, MySqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 708, MySqlParser.RULE_decimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7092; + this.state = 6998; _la = this.tokenStream.LA(1); if(!(((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0))) { this.errorHandler.recoverInline(this); @@ -42060,15 +41688,15 @@ export class MySqlParser extends antlr.Parser { } public fileSizeLiteral(): FileSizeLiteralContext { let localContext = new FileSizeLiteralContext(this.context, this.state); - this.enterRule(localContext, 716, MySqlParser.RULE_fileSizeLiteral); + this.enterRule(localContext, 710, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 7096; + this.state = 7002; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7094; + this.state = 7000; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -42080,7 +41708,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 7095; + this.state = 7001; this.decimalLiteral(); } break; @@ -42104,46 +41732,46 @@ export class MySqlParser extends antlr.Parser { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 718, MySqlParser.RULE_stringLiteral); + this.enterRule(localContext, 712, MySqlParser.RULE_stringLiteral); let _la: number; try { let alternative: number; - this.state = 7121; + this.state = 7027; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7103; + this.state = 7009; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7099; + this.state = 7005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7098; + this.state = 7004; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7101; + this.state = 7007; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7102; + this.state = 7008; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7106; + this.state = 7012; this.errorHandler.sync(this); alternative = 1; do { @@ -42151,7 +41779,7 @@ export class MySqlParser extends antlr.Parser { case 1: { { - this.state = 7105; + this.state = 7011; this.match(MySqlParser.STRING_LITERAL); } } @@ -42159,52 +41787,52 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 7108; + this.state = 7014; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7115; + this.state = 7021; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7111; + this.state = 7017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7110; + this.state = 7016; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7113; + this.state = 7019; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7114; + this.state = 7020; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7119; + this.state = 7025; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { case 1: { - this.state = 7117; + this.state = 7023; this.match(MySqlParser.KW_COLLATE); - this.state = 7118; + this.state = 7024; this.collationName(); } break; @@ -42229,12 +41857,12 @@ export class MySqlParser extends antlr.Parser { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 720, MySqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 714, MySqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7123; + this.state = 7029; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179)) { this.errorHandler.recoverInline(this); @@ -42261,22 +41889,22 @@ export class MySqlParser extends antlr.Parser { } public hexadecimalLiteral(): HexadecimalLiteralContext { let localContext = new HexadecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 722, MySqlParser.RULE_hexadecimalLiteral); + this.enterRule(localContext, 716, MySqlParser.RULE_hexadecimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7126; + this.state = 7032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7125; + this.state = 7031; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7128; + this.state = 7034; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -42296,22 +41924,22 @@ export class MySqlParser extends antlr.Parser { } public nullNotnull(): NullNotnullContext { let localContext = new NullNotnullContext(this.context, this.state); - this.enterRule(localContext, 724, MySqlParser.RULE_nullNotnull); + this.enterRule(localContext, 718, MySqlParser.RULE_nullNotnull); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7131; + this.state = 7037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7130; + this.state = 7036; this.match(MySqlParser.KW_NOT); } } - this.state = 7133; + this.state = 7039; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { this.errorHandler.recoverInline(this); @@ -42338,77 +41966,77 @@ export class MySqlParser extends antlr.Parser { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 726, MySqlParser.RULE_constant); + this.enterRule(localContext, 720, MySqlParser.RULE_constant); let _la: number; try { - this.state = 7147; + this.state = 7053; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7135; + this.state = 7041; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7136; + this.state = 7042; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7137; + this.state = 7043; this.match(MySqlParser.MINUS); - this.state = 7138; + this.state = 7044; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7139; + this.state = 7045; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7140; + this.state = 7046; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7141; + this.state = 7047; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7142; + this.state = 7048; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7144; + this.state = 7050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7143; + this.state = 7049; this.match(MySqlParser.KW_NOT); } } - this.state = 7146; + this.state = 7052; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { @@ -42438,17 +42066,17 @@ export class MySqlParser extends antlr.Parser { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 728, MySqlParser.RULE_dataType); + this.enterRule(localContext, 722, MySqlParser.RULE_dataType); let _la: number; try { - this.state = 7275; + this.state = 7181; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7149; + this.state = 7055; (localContext as StringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 31239) !== 0) || _la === 498)) { @@ -42458,62 +42086,62 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7151; + this.state = 7057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 7150; + this.state = 7056; this.match(MySqlParser.KW_VARYING); } } - this.state = 7154; + this.state = 7060; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { case 1: { - this.state = 7153; + this.state = 7059; this.lengthOneDimension(); } break; } - this.state = 7157; + this.state = 7063; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { case 1: { - this.state = 7156; + this.state = 7062; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7162; + this.state = 7068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7159; + this.state = 7065; this.charSet(); - this.state = 7160; + this.state = 7066; this.charsetName(); } } - this.state = 7167; + this.state = 7073; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: { - this.state = 7164; + this.state = 7070; this.match(MySqlParser.KW_COLLATE); - this.state = 7165; + this.state = 7071; this.collationName(); } break; case 2: { - this.state = 7166; + this.state = 7072; this.match(MySqlParser.KW_BINARY); } break; @@ -42524,9 +42152,9 @@ export class MySqlParser extends antlr.Parser { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7169; + this.state = 7075; this.match(MySqlParser.KW_NATIONAL); - this.state = 7170; + this.state = 7076; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224)) { @@ -42536,24 +42164,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7171; + this.state = 7077; this.match(MySqlParser.KW_VARYING); - this.state = 7173; + this.state = 7079; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: { - this.state = 7172; + this.state = 7078; this.lengthOneDimension(); } break; } - this.state = 7176; + this.state = 7082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 7175; + this.state = 7081; this.match(MySqlParser.KW_BINARY); } } @@ -42564,9 +42192,9 @@ export class MySqlParser extends antlr.Parser { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7178; + this.state = 7084; this.match(MySqlParser.KW_NATIONAL); - this.state = 7179; + this.state = 7085; (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224 || _la === 225)) { @@ -42576,22 +42204,22 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7181; + this.state = 7087; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: { - this.state = 7180; + this.state = 7086; this.lengthOneDimension(); } break; } - this.state = 7184; + this.state = 7090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 7183; + this.state = 7089; this.match(MySqlParser.KW_BINARY); } } @@ -42602,26 +42230,26 @@ export class MySqlParser extends antlr.Parser { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7186; + this.state = 7092; this.match(MySqlParser.KW_NCHAR); - this.state = 7187; + this.state = 7093; (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); - this.state = 7189; + this.state = 7095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { case 1: { - this.state = 7188; + this.state = 7094; this.lengthOneDimension(); } break; } - this.state = 7192; + this.state = 7098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 7191; + this.state = 7097; this.match(MySqlParser.KW_BINARY); } } @@ -42632,7 +42260,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7194; + this.state = 7100; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4095) !== 0))) { @@ -42642,23 +42270,23 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7196; + this.state = 7102; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7195; + this.state = 7101; this.lengthOneDimension(); } break; } - this.state = 7201; + this.state = 7107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7198; + this.state = 7104; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42669,7 +42297,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7203; + this.state = 7109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42679,25 +42307,25 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7204; + this.state = 7110; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_REAL); - this.state = 7206; + this.state = 7112; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { case 1: { - this.state = 7205; + this.state = 7111; this.lengthTwoDimension(); } break; } - this.state = 7211; + this.state = 7117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7208; + this.state = 7114; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42708,7 +42336,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7213; + this.state = 7119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42718,35 +42346,35 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7214; + this.state = 7120; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_DOUBLE); - this.state = 7216; + this.state = 7122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 212) { { - this.state = 7215; + this.state = 7121; this.match(MySqlParser.KW_PRECISION); } } - this.state = 7219; + this.state = 7125; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7218; + this.state = 7124; this.lengthTwoDimension(); } break; } - this.state = 7224; + this.state = 7130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7221; + this.state = 7127; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42757,7 +42385,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7226; + this.state = 7132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42767,7 +42395,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7227; + this.state = 7133; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 213)) & ~0x1F) === 0 && ((1 << (_la - 213)) & 63) !== 0) || _la === 403)) { @@ -42777,23 +42405,23 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7229; + this.state = 7135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: { - this.state = 7228; + this.state = 7134; this.lengthTwoOptionalDimension(); } break; } - this.state = 7234; + this.state = 7140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 184 || _la === 197 || _la === 596) { { { - this.state = 7231; + this.state = 7137; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -42804,7 +42432,7 @@ export class MySqlParser extends antlr.Parser { } } } - this.state = 7236; + this.state = 7142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42814,7 +42442,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7237; + this.state = 7143; (localContext as SimpleDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 4237313) !== 0) || _la === 321 || _la === 322)) { @@ -42830,7 +42458,7 @@ export class MySqlParser extends antlr.Parser { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7238; + this.state = 7144; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 2831) !== 0) || _la === 319)) { @@ -42840,12 +42468,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7240; + this.state = 7146; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { case 1: { - this.state = 7239; + this.state = 7145; this.lengthOneDimension(); } break; @@ -42856,7 +42484,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7242; + this.state = 7148; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 239)) { @@ -42866,26 +42494,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7243; + this.state = 7149; this.collectionOptions(); - this.state = 7245; + this.state = 7151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 7244; + this.state = 7150; this.match(MySqlParser.KW_BINARY); } } - this.state = 7250; + this.state = 7156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7247; + this.state = 7153; this.charSet(); - this.state = 7248; + this.state = 7154; this.charsetName(); } } @@ -42896,7 +42524,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7252; + this.state = 7158; (localContext as SpatialDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 442 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 511) !== 0))) { @@ -42906,14 +42534,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7255; + this.state = 7161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 834) { { - this.state = 7253; + this.state = 7159; this.match(MySqlParser.KW_SRID); - this.state = 7254; + this.state = 7160; this.decimalLiteral(); } } @@ -42924,48 +42552,48 @@ export class MySqlParser extends antlr.Parser { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7257; + this.state = 7163; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.KW_LONG); - this.state = 7259; + this.state = 7165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 7258; + this.state = 7164; this.match(MySqlParser.KW_VARCHAR); } } - this.state = 7262; + this.state = 7168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 7261; + this.state = 7167; this.match(MySqlParser.KW_BINARY); } } - this.state = 7267; + this.state = 7173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7264; + this.state = 7170; this.charSet(); - this.state = 7265; + this.state = 7171; this.charsetName(); } } - this.state = 7271; + this.state = 7177; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 7269; + this.state = 7175; this.match(MySqlParser.KW_COLLATE); - this.state = 7270; + this.state = 7176; this.collationName(); } break; @@ -42976,9 +42604,9 @@ export class MySqlParser extends antlr.Parser { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7273; + this.state = 7179; this.match(MySqlParser.KW_LONG); - this.state = 7274; + this.state = 7180; this.match(MySqlParser.KW_VARBINARY); } break; @@ -43000,32 +42628,32 @@ export class MySqlParser extends antlr.Parser { } public collectionOptions(): CollectionOptionsContext { let localContext = new CollectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 730, MySqlParser.RULE_collectionOptions); + this.enterRule(localContext, 724, MySqlParser.RULE_collectionOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7277; + this.state = 7183; this.match(MySqlParser.LR_BRACKET); - this.state = 7278; + this.state = 7184; this.match(MySqlParser.STRING_LITERAL); - this.state = 7283; + this.state = 7189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7279; + this.state = 7185; this.match(MySqlParser.COMMA); - this.state = 7280; + this.state = 7186; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7285; + this.state = 7191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7286; + this.state = 7192; this.match(MySqlParser.RR_BRACKET); } } @@ -43045,18 +42673,18 @@ export class MySqlParser extends antlr.Parser { } public convertedDataType(): ConvertedDataTypeContext { let localContext = new ConvertedDataTypeContext(this.context, this.state); - this.enterRule(localContext, 732, MySqlParser.RULE_convertedDataType); + this.enterRule(localContext, 726, MySqlParser.RULE_convertedDataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7310; + this.state = 7216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: case MySqlParser.KW_NCHAR: { - this.state = 7288; + this.state = 7194; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 498)) { @@ -43066,12 +42694,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7290; + this.state = 7196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7289; + this.state = 7195; this.lengthOneDimension(); } } @@ -43080,26 +42708,26 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_CHAR: { - this.state = 7292; + this.state = 7198; localContext._typeName = this.match(MySqlParser.KW_CHAR); - this.state = 7294; + this.state = 7200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7293; + this.state = 7199; this.lengthOneDimension(); } } - this.state = 7299; + this.state = 7205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7296; + this.state = 7202; this.charSet(); - this.state = 7297; + this.state = 7203; this.charsetName(); } } @@ -43113,7 +42741,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_DATETIME: case MySqlParser.KW_JSON: { - this.state = 7301; + this.state = 7207; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 1441857) !== 0) || _la === 442)) { @@ -43128,7 +42756,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_DECIMAL: case MySqlParser.KW_DEC: { - this.state = 7302; + this.state = 7208; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 217)) { @@ -43138,12 +42766,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7304; + this.state = 7210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7303; + this.state = 7209; this.lengthTwoOptionalDimension(); } } @@ -43153,7 +42781,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_UNSIGNED: case MySqlParser.KW_SIGNED: { - this.state = 7306; + this.state = 7212; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43162,12 +42790,12 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7308; + this.state = 7214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 208) { { - this.state = 7307; + this.state = 7213; _la = this.tokenStream.LA(1); if(!(_la === 202 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -43184,12 +42812,12 @@ export class MySqlParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 7313; + this.state = 7219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 7312; + this.state = 7218; this.match(MySqlParser.KW_ARRAY); } } @@ -43212,15 +42840,15 @@ export class MySqlParser extends antlr.Parser { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 734, MySqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 728, MySqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7315; + this.state = 7221; this.match(MySqlParser.LR_BRACKET); - this.state = 7316; + this.state = 7222; this.decimalLiteral(); - this.state = 7317; + this.state = 7223; this.match(MySqlParser.RR_BRACKET); } } @@ -43240,19 +42868,19 @@ export class MySqlParser extends antlr.Parser { } public lengthTwoDimension(): LengthTwoDimensionContext { let localContext = new LengthTwoDimensionContext(this.context, this.state); - this.enterRule(localContext, 736, MySqlParser.RULE_lengthTwoDimension); + this.enterRule(localContext, 730, MySqlParser.RULE_lengthTwoDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7319; + this.state = 7225; this.match(MySqlParser.LR_BRACKET); - this.state = 7320; + this.state = 7226; this.decimalLiteral(); - this.state = 7321; + this.state = 7227; this.match(MySqlParser.COMMA); - this.state = 7322; + this.state = 7228; this.decimalLiteral(); - this.state = 7323; + this.state = 7229; this.match(MySqlParser.RR_BRACKET); } } @@ -43272,28 +42900,28 @@ export class MySqlParser extends antlr.Parser { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 738, MySqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 732, MySqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7325; + this.state = 7231; this.match(MySqlParser.LR_BRACKET); - this.state = 7326; + this.state = 7232; this.decimalLiteral(); - this.state = 7329; + this.state = 7235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7327; + this.state = 7233; this.match(MySqlParser.COMMA); - this.state = 7328; + this.state = 7234; this.decimalLiteral(); } } - this.state = 7331; + this.state = 7237; this.match(MySqlParser.RR_BRACKET); } } @@ -43313,32 +42941,32 @@ export class MySqlParser extends antlr.Parser { } public indexColumnNames(): IndexColumnNamesContext { let localContext = new IndexColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 740, MySqlParser.RULE_indexColumnNames); + this.enterRule(localContext, 734, MySqlParser.RULE_indexColumnNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7333; + this.state = 7239; this.match(MySqlParser.LR_BRACKET); - this.state = 7334; + this.state = 7240; this.indexColumnName(); - this.state = 7339; + this.state = 7245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7335; + this.state = 7241; this.match(MySqlParser.COMMA); - this.state = 7336; + this.state = 7242; this.indexColumnName(); } } - this.state = 7341; + this.state = 7247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7342; + this.state = 7248; this.match(MySqlParser.RR_BRACKET); } } @@ -43358,26 +42986,26 @@ export class MySqlParser extends antlr.Parser { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 742, MySqlParser.RULE_expressions); + this.enterRule(localContext, 736, MySqlParser.RULE_expressions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7344; + this.state = 7250; this.expression(0); - this.state = 7349; + this.state = 7255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7345; + this.state = 7251; this.match(MySqlParser.COMMA); - this.state = 7346; + this.state = 7252; this.expression(0); } } - this.state = 7351; + this.state = 7257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43399,12 +43027,12 @@ export class MySqlParser extends antlr.Parser { } public valuesOrValueList(): ValuesOrValueListContext { let localContext = new ValuesOrValueListContext(this.context, this.state); - this.enterRule(localContext, 744, MySqlParser.RULE_valuesOrValueList); + this.enterRule(localContext, 738, MySqlParser.RULE_valuesOrValueList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7352; + this.state = 7258; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 682)) { this.errorHandler.recoverInline(this); @@ -43413,21 +43041,21 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7353; + this.state = 7259; this.expressionsWithDefaults(); - this.state = 7358; + this.state = 7264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7354; + this.state = 7260; this.match(MySqlParser.COMMA); - this.state = 7355; + this.state = 7261; this.expressionsWithDefaults(); } } - this.state = 7360; + this.state = 7266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43449,32 +43077,32 @@ export class MySqlParser extends antlr.Parser { } public expressionsWithDefaults(): ExpressionsWithDefaultsContext { let localContext = new ExpressionsWithDefaultsContext(this.context, this.state); - this.enterRule(localContext, 746, MySqlParser.RULE_expressionsWithDefaults); + this.enterRule(localContext, 740, MySqlParser.RULE_expressionsWithDefaults); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7361; + this.state = 7267; this.match(MySqlParser.LR_BRACKET); - this.state = 7362; + this.state = 7268; this.expressionOrDefault(); - this.state = 7367; + this.state = 7273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7363; + this.state = 7269; this.match(MySqlParser.COMMA); - this.state = 7364; + this.state = 7270; this.expressionOrDefault(); } } - this.state = 7369; + this.state = 7275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7370; + this.state = 7276; this.match(MySqlParser.RR_BRACKET); } } @@ -43494,22 +43122,22 @@ export class MySqlParser extends antlr.Parser { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 748, MySqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 742, MySqlParser.RULE_expressionOrDefault); try { - this.state = 7374; + this.state = 7280; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7372; + this.state = 7278; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7373; + this.state = 7279; this.match(MySqlParser.KW_DEFAULT); } break; @@ -43531,26 +43159,26 @@ export class MySqlParser extends antlr.Parser { } public constants(): ConstantsContext { let localContext = new ConstantsContext(this.context, this.state); - this.enterRule(localContext, 750, MySqlParser.RULE_constants); + this.enterRule(localContext, 744, MySqlParser.RULE_constants); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7376; + this.state = 7282; this.constant(); - this.state = 7381; + this.state = 7287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7377; + this.state = 7283; this.match(MySqlParser.COMMA); - this.state = 7378; + this.state = 7284; this.constant(); } } - this.state = 7383; + this.state = 7289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43572,26 +43200,26 @@ export class MySqlParser extends antlr.Parser { } public simpleStrings(): SimpleStringsContext { let localContext = new SimpleStringsContext(this.context, this.state); - this.enterRule(localContext, 752, MySqlParser.RULE_simpleStrings); + this.enterRule(localContext, 746, MySqlParser.RULE_simpleStrings); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7384; + this.state = 7290; this.match(MySqlParser.STRING_LITERAL); - this.state = 7389; + this.state = 7295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7385; + this.state = 7291; this.match(MySqlParser.COMMA); - this.state = 7386; + this.state = 7292; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7391; + this.state = 7297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43613,26 +43241,26 @@ export class MySqlParser extends antlr.Parser { } public userVariables(): UserVariablesContext { let localContext = new UserVariablesContext(this.context, this.state); - this.enterRule(localContext, 754, MySqlParser.RULE_userVariables); + this.enterRule(localContext, 748, MySqlParser.RULE_userVariables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7392; + this.state = 7298; this.match(MySqlParser.LOCAL_ID); - this.state = 7397; + this.state = 7303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7393; + this.state = 7299; this.match(MySqlParser.COMMA); - this.state = 7394; + this.state = 7300; this.match(MySqlParser.LOCAL_ID); } } - this.state = 7399; + this.state = 7305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43654,67 +43282,67 @@ export class MySqlParser extends antlr.Parser { } public defaultValue(): DefaultValueContext { let localContext = new DefaultValueContext(this.context, this.state); - this.enterRule(localContext, 756, MySqlParser.RULE_defaultValue); + this.enterRule(localContext, 750, MySqlParser.RULE_defaultValue); try { - this.state = 7426; + this.state = 7332; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7400; + this.state = 7306; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7401; + this.state = 7307; this.match(MySqlParser.KW_CAST); - this.state = 7402; + this.state = 7308; this.match(MySqlParser.LR_BRACKET); - this.state = 7403; + this.state = 7309; this.expression(0); - this.state = 7404; + this.state = 7310; this.match(MySqlParser.KW_AS); - this.state = 7405; + this.state = 7311; this.convertedDataType(); - this.state = 7406; + this.state = 7312; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7409; + this.state = 7315; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7408; + this.state = 7314; this.unaryOperator(); } break; } - this.state = 7411; + this.state = 7317; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7412; + this.state = 7318; this.currentTimestamp(); - this.state = 7416; + this.state = 7322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: { - this.state = 7413; + this.state = 7319; this.match(MySqlParser.KW_ON); - this.state = 7414; + this.state = 7320; this.match(MySqlParser.KW_UPDATE); - this.state = 7415; + this.state = 7321; this.currentTimestamp(); } break; @@ -43724,22 +43352,22 @@ export class MySqlParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7418; + this.state = 7324; this.match(MySqlParser.LR_BRACKET); - this.state = 7419; + this.state = 7325; this.expression(0); - this.state = 7420; + this.state = 7326; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7422; + this.state = 7328; this.match(MySqlParser.LR_BRACKET); - this.state = 7423; + this.state = 7329; this.fullId(); - this.state = 7424; + this.state = 7330; this.match(MySqlParser.RR_BRACKET); } break; @@ -43761,19 +43389,19 @@ export class MySqlParser extends antlr.Parser { } public currentTimestamp(): CurrentTimestampContext { let localContext = new CurrentTimestampContext(this.context, this.state); - this.enterRule(localContext, 758, MySqlParser.RULE_currentTimestamp); + this.enterRule(localContext, 752, MySqlParser.RULE_currentTimestamp); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7442; + this.state = 7348; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CURRENT_TIMESTAMP: case MySqlParser.KW_LOCALTIME: case MySqlParser.KW_LOCALTIMESTAMP: { - this.state = 7428; + this.state = 7334; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -43782,24 +43410,24 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7434; + this.state = 7340; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context) ) { case 1: { - this.state = 7429; + this.state = 7335; this.match(MySqlParser.LR_BRACKET); - this.state = 7431; + this.state = 7337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7430; + this.state = 7336; this.decimalLiteral(); } } - this.state = 7433; + this.state = 7339; this.match(MySqlParser.RR_BRACKET); } break; @@ -43808,21 +43436,21 @@ export class MySqlParser extends antlr.Parser { break; case MySqlParser.KW_NOW: { - this.state = 7436; + this.state = 7342; this.match(MySqlParser.KW_NOW); - this.state = 7437; + this.state = 7343; this.match(MySqlParser.LR_BRACKET); - this.state = 7439; + this.state = 7345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7438; + this.state = 7344; this.decimalLiteral(); } } - this.state = 7441; + this.state = 7347; this.match(MySqlParser.RR_BRACKET); } break; @@ -43847,13 +43475,13 @@ export class MySqlParser extends antlr.Parser { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 760, MySqlParser.RULE_ifExists); + this.enterRule(localContext, 754, MySqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7444; + this.state = 7350; this.match(MySqlParser.KW_IF); - this.state = 7445; + this.state = 7351; this.match(MySqlParser.KW_EXISTS); } } @@ -43873,15 +43501,15 @@ export class MySqlParser extends antlr.Parser { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 762, MySqlParser.RULE_ifNotExists); + this.enterRule(localContext, 756, MySqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7447; + this.state = 7353; this.match(MySqlParser.KW_IF); - this.state = 7448; + this.state = 7354; this.match(MySqlParser.KW_NOT); - this.state = 7449; + this.state = 7355; this.match(MySqlParser.KW_EXISTS); } } @@ -43901,13 +43529,13 @@ export class MySqlParser extends antlr.Parser { } public orReplace(): OrReplaceContext { let localContext = new OrReplaceContext(this.context, this.state); - this.enterRule(localContext, 764, MySqlParser.RULE_orReplace); + this.enterRule(localContext, 758, MySqlParser.RULE_orReplace); try { this.enterOuterAlt(localContext, 1); { - this.state = 7451; + this.state = 7357; this.match(MySqlParser.KW_OR); - this.state = 7452; + this.state = 7358; this.match(MySqlParser.KW_REPLACE); } } @@ -43927,16 +43555,16 @@ export class MySqlParser extends antlr.Parser { } public functionCall(): FunctionCallContext { let localContext = new FunctionCallContext(this.context, this.state); - this.enterRule(localContext, 766, MySqlParser.RULE_functionCall); + this.enterRule(localContext, 760, MySqlParser.RULE_functionCall); try { - this.state = 7472; + this.state = 7378; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7454; + this.state = 7360; this.specificFunction(); } break; @@ -43944,7 +43572,7 @@ export class MySqlParser extends antlr.Parser { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7455; + this.state = 7361; this.aggregateWindowedFunction(); } break; @@ -43952,7 +43580,7 @@ export class MySqlParser extends antlr.Parser { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7456; + this.state = 7362; this.nonAggregateWindowedFunction(); } break; @@ -43960,21 +43588,21 @@ export class MySqlParser extends antlr.Parser { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7457; + this.state = 7363; this.scalarFunctionName(); - this.state = 7458; + this.state = 7364; this.match(MySqlParser.LR_BRACKET); - this.state = 7460; + this.state = 7366; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1075, this.context) ) { case 1: { - this.state = 7459; + this.state = 7365; this.functionArgs(); } break; } - this.state = 7462; + this.state = 7368; this.match(MySqlParser.RR_BRACKET); } break; @@ -43982,21 +43610,21 @@ export class MySqlParser extends antlr.Parser { localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7464; + this.state = 7370; this.functionName(); - this.state = 7465; + this.state = 7371; this.match(MySqlParser.LR_BRACKET); - this.state = 7467; + this.state = 7373; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context) ) { case 1: { - this.state = 7466; + this.state = 7372; this.functionArgs(); } break; } - this.state = 7469; + this.state = 7375; this.match(MySqlParser.RR_BRACKET); } break; @@ -44004,7 +43632,7 @@ export class MySqlParser extends antlr.Parser { localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7471; + this.state = 7377; this.passwordFunctionClause(); } break; @@ -44026,17 +43654,17 @@ export class MySqlParser extends antlr.Parser { } public specificFunction(): SpecificFunctionContext { let localContext = new SpecificFunctionContext(this.context, this.state); - this.enterRule(localContext, 768, MySqlParser.RULE_specificFunction); + this.enterRule(localContext, 762, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 7653; + this.state = 7559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7474; + this.state = 7380; _la = this.tokenStream.LA(1); if(!(_la === 152 || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -44045,14 +43673,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7477; + this.state = 7383; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { case 1: { - this.state = 7475; + this.state = 7381; this.match(MySqlParser.LR_BRACKET); - this.state = 7476; + this.state = 7382; this.match(MySqlParser.RR_BRACKET); } break; @@ -44063,7 +43691,7 @@ export class MySqlParser extends antlr.Parser { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7479; + this.state = 7385; this.currentUserExpression(); } break; @@ -44071,17 +43699,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7480; + this.state = 7386; this.match(MySqlParser.KW_CONVERT); - this.state = 7481; + this.state = 7387; this.match(MySqlParser.LR_BRACKET); - this.state = 7482; + this.state = 7388; this.expression(0); - this.state = 7483; + this.state = 7389; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 7484; + this.state = 7390; this.convertedDataType(); - this.state = 7485; + this.state = 7391; this.match(MySqlParser.RR_BRACKET); } break; @@ -44089,17 +43717,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7487; + this.state = 7393; this.match(MySqlParser.KW_CONVERT); - this.state = 7488; + this.state = 7394; this.match(MySqlParser.LR_BRACKET); - this.state = 7489; + this.state = 7395; this.expression(0); - this.state = 7490; + this.state = 7396; this.match(MySqlParser.KW_USING); - this.state = 7491; + this.state = 7397; this.charsetName(); - this.state = 7492; + this.state = 7398; this.match(MySqlParser.RR_BRACKET); } break; @@ -44107,17 +43735,17 @@ export class MySqlParser extends antlr.Parser { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7494; + this.state = 7400; this.match(MySqlParser.KW_CAST); - this.state = 7495; + this.state = 7401; this.match(MySqlParser.LR_BRACKET); - this.state = 7496; + this.state = 7402; this.expression(0); - this.state = 7497; + this.state = 7403; this.match(MySqlParser.KW_AS); - this.state = 7498; + this.state = 7404; this.convertedDataType(); - this.state = 7499; + this.state = 7405; this.match(MySqlParser.RR_BRACKET); } break; @@ -44125,13 +43753,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7501; + this.state = 7407; this.match(MySqlParser.KW_VALUES); - this.state = 7502; + this.state = 7408; this.match(MySqlParser.LR_BRACKET); - this.state = 7503; + this.state = 7409; this.columnName(); - this.state = 7504; + this.state = 7410; this.match(MySqlParser.RR_BRACKET); } break; @@ -44139,37 +43767,37 @@ export class MySqlParser extends antlr.Parser { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7506; + this.state = 7412; this.match(MySqlParser.KW_CASE); - this.state = 7507; + this.state = 7413; this.expression(0); - this.state = 7509; + this.state = 7415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7508; + this.state = 7414; this.caseFuncAlternative(); } } - this.state = 7511; + this.state = 7417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7515; + this.state = 7421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7513; + this.state = 7419; this.match(MySqlParser.KW_ELSE); - this.state = 7514; + this.state = 7420; (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7517; + this.state = 7423; this.match(MySqlParser.KW_END); } break; @@ -44177,35 +43805,35 @@ export class MySqlParser extends antlr.Parser { localContext = new CaseFunctionCallContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7519; + this.state = 7425; this.match(MySqlParser.KW_CASE); - this.state = 7521; + this.state = 7427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7520; + this.state = 7426; this.caseFuncAlternative(); } } - this.state = 7523; + this.state = 7429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7527; + this.state = 7433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7525; + this.state = 7431; this.match(MySqlParser.KW_ELSE); - this.state = 7526; + this.state = 7432; (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7529; + this.state = 7435; this.match(MySqlParser.KW_END); } break; @@ -44213,25 +43841,25 @@ export class MySqlParser extends antlr.Parser { localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7531; + this.state = 7437; this.match(MySqlParser.KW_CHAR); - this.state = 7532; + this.state = 7438; this.match(MySqlParser.LR_BRACKET); - this.state = 7533; + this.state = 7439; this.functionArgs(); - this.state = 7536; + this.state = 7442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 7534; + this.state = 7440; this.match(MySqlParser.KW_USING); - this.state = 7535; + this.state = 7441; this.charsetName(); } } - this.state = 7538; + this.state = 7444; this.match(MySqlParser.RR_BRACKET); } break; @@ -44239,45 +43867,45 @@ export class MySqlParser extends antlr.Parser { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7540; + this.state = 7446; this.match(MySqlParser.KW_POSITION); - this.state = 7541; + this.state = 7447; this.match(MySqlParser.LR_BRACKET); - this.state = 7544; + this.state = 7450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: { - this.state = 7542; + this.state = 7448; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 7543; + this.state = 7449; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 7546; + this.state = 7452; this.match(MySqlParser.KW_IN); - this.state = 7549; + this.state = 7455; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { case 1: { - this.state = 7547; + this.state = 7453; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 7548; + this.state = 7454; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 7551; + this.state = 7457; this.match(MySqlParser.RR_BRACKET); } break; @@ -44285,7 +43913,7 @@ export class MySqlParser extends antlr.Parser { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7553; + this.state = 7459; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -44294,61 +43922,61 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7554; + this.state = 7460; this.match(MySqlParser.LR_BRACKET); - this.state = 7557; + this.state = 7463; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: { - this.state = 7555; + this.state = 7461; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7556; + this.state = 7462; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7559; + this.state = 7465; this.match(MySqlParser.KW_FROM); - this.state = 7562; + this.state = 7468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { case 1: { - this.state = 7560; + this.state = 7466; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7561; + this.state = 7467; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7569; + this.state = 7475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 7564; + this.state = 7470; this.match(MySqlParser.KW_FOR); - this.state = 7567; + this.state = 7473; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: { - this.state = 7565; + this.state = 7471; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7566; + this.state = 7472; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -44356,7 +43984,7 @@ export class MySqlParser extends antlr.Parser { } } - this.state = 7571; + this.state = 7477; this.match(MySqlParser.RR_BRACKET); } break; @@ -44364,11 +43992,11 @@ export class MySqlParser extends antlr.Parser { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7573; + this.state = 7479; this.match(MySqlParser.KW_TRIM); - this.state = 7574; + this.state = 7480; this.match(MySqlParser.LR_BRACKET); - this.state = 7575; + this.state = 7481; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 96 || _la === 177)) { @@ -44378,41 +44006,41 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7578; + this.state = 7484; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { case 1: { - this.state = 7576; + this.state = 7482; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7577; + this.state = 7483; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7580; + this.state = 7486; this.match(MySqlParser.KW_FROM); - this.state = 7583; + this.state = 7489; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { case 1: { - this.state = 7581; + this.state = 7487; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7582; + this.state = 7488; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7585; + this.state = 7491; this.match(MySqlParser.RR_BRACKET); } break; @@ -44420,45 +44048,45 @@ export class MySqlParser extends antlr.Parser { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7587; + this.state = 7493; this.match(MySqlParser.KW_TRIM); - this.state = 7588; + this.state = 7494; this.match(MySqlParser.LR_BRACKET); - this.state = 7591; + this.state = 7497; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { case 1: { - this.state = 7589; + this.state = 7495; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7590; + this.state = 7496; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7593; + this.state = 7499; this.match(MySqlParser.KW_FROM); - this.state = 7596; + this.state = 7502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { case 1: { - this.state = 7594; + this.state = 7500; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7595; + this.state = 7501; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7598; + this.state = 7504; this.match(MySqlParser.RR_BRACKET); } break; @@ -44466,34 +44094,34 @@ export class MySqlParser extends antlr.Parser { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7600; + this.state = 7506; this.match(MySqlParser.KW_WEIGHT_STRING); - this.state = 7601; + this.state = 7507; this.match(MySqlParser.LR_BRACKET); - this.state = 7604; + this.state = 7510; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { case 1: { - this.state = 7602; + this.state = 7508; this.stringLiteral(); } break; case 2: { - this.state = 7603; + this.state = 7509; this.expression(0); } break; } - this.state = 7612; + this.state = 7518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 7606; + this.state = 7512; this.match(MySqlParser.KW_AS); - this.state = 7607; + this.state = 7513; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 228)) { @@ -44503,26 +44131,26 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7608; + this.state = 7514; this.match(MySqlParser.LR_BRACKET); - this.state = 7609; + this.state = 7515; this.decimalLiteral(); - this.state = 7610; + this.state = 7516; this.match(MySqlParser.RR_BRACKET); } } - this.state = 7615; + this.state = 7521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 448) { { - this.state = 7614; + this.state = 7520; this.levelsInWeightString(); } } - this.state = 7617; + this.state = 7523; this.match(MySqlParser.RR_BRACKET); } break; @@ -44530,31 +44158,31 @@ export class MySqlParser extends antlr.Parser { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 7619; + this.state = 7525; this.match(MySqlParser.KW_EXTRACT); - this.state = 7620; + this.state = 7526; this.match(MySqlParser.LR_BRACKET); - this.state = 7621; + this.state = 7527; this.intervalType(); - this.state = 7622; + this.state = 7528; this.match(MySqlParser.KW_FROM); - this.state = 7625; + this.state = 7531; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { case 1: { - this.state = 7623; + this.state = 7529; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7624; + this.state = 7530; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7627; + this.state = 7533; this.match(MySqlParser.RR_BRACKET); } break; @@ -44562,11 +44190,11 @@ export class MySqlParser extends antlr.Parser { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 7629; + this.state = 7535; this.match(MySqlParser.KW_GET_FORMAT); - this.state = 7630; + this.state = 7536; this.match(MySqlParser.LR_BRACKET); - this.state = 7631; + this.state = 7537; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 11) !== 0))) { @@ -44576,11 +44204,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7632; + this.state = 7538; this.match(MySqlParser.COMMA); - this.state = 7633; + this.state = 7539; this.stringLiteral(); - this.state = 7634; + this.state = 7540; this.match(MySqlParser.RR_BRACKET); } break; @@ -44588,49 +44216,49 @@ export class MySqlParser extends antlr.Parser { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 7636; + this.state = 7542; this.match(MySqlParser.KW_JSON_VALUE); - this.state = 7637; + this.state = 7543; this.match(MySqlParser.LR_BRACKET); - this.state = 7638; + this.state = 7544; this.expression(0); - this.state = 7639; + this.state = 7545; this.match(MySqlParser.COMMA); - this.state = 7640; + this.state = 7546; this.expression(0); - this.state = 7643; + this.state = 7549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 579) { { - this.state = 7641; + this.state = 7547; this.match(MySqlParser.KW_RETURNING); - this.state = 7642; + this.state = 7548; this.convertedDataType(); } } - this.state = 7646; + this.state = 7552; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { case 1: { - this.state = 7645; + this.state = 7551; this.jsonOnEmpty(); } break; } - this.state = 7649; + this.state = 7555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 7648; + this.state = 7554; this.jsonOnError(); } } - this.state = 7651; + this.state = 7557; this.match(MySqlParser.RR_BRACKET); } break; @@ -44652,17 +44280,17 @@ export class MySqlParser extends antlr.Parser { } public caseFuncAlternative(): CaseFuncAlternativeContext { let localContext = new CaseFuncAlternativeContext(this.context, this.state); - this.enterRule(localContext, 770, MySqlParser.RULE_caseFuncAlternative); + this.enterRule(localContext, 764, MySqlParser.RULE_caseFuncAlternative); try { this.enterOuterAlt(localContext, 1); { - this.state = 7655; + this.state = 7561; this.match(MySqlParser.KW_WHEN); - this.state = 7656; + this.state = 7562; localContext._condition = this.functionArg(); - this.state = 7657; + this.state = 7563; this.match(MySqlParser.KW_THEN); - this.state = 7658; + this.state = 7564; localContext._consequent = this.functionArg(); } } @@ -44682,33 +44310,33 @@ export class MySqlParser extends antlr.Parser { } public levelsInWeightString(): LevelsInWeightStringContext { let localContext = new LevelsInWeightStringContext(this.context, this.state); - this.enterRule(localContext, 772, MySqlParser.RULE_levelsInWeightString); + this.enterRule(localContext, 766, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 7674; + this.state = 7580; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7660; + this.state = 7566; this.match(MySqlParser.KW_LEVEL); - this.state = 7661; + this.state = 7567; this.levelInWeightListElement(); - this.state = 7666; + this.state = 7572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7662; + this.state = 7568; this.match(MySqlParser.COMMA); - this.state = 7663; + this.state = 7569; this.levelInWeightListElement(); } } - this.state = 7668; + this.state = 7574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44718,13 +44346,13 @@ export class MySqlParser extends antlr.Parser { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7669; + this.state = 7575; this.match(MySqlParser.KW_LEVEL); - this.state = 7670; + this.state = 7576; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 7671; + this.state = 7577; this.match(MySqlParser.MINUS); - this.state = 7672; + this.state = 7578; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -44746,19 +44374,19 @@ export class MySqlParser extends antlr.Parser { } public levelInWeightListElement(): LevelInWeightListElementContext { let localContext = new LevelInWeightListElementContext(this.context, this.state); - this.enterRule(localContext, 774, MySqlParser.RULE_levelInWeightListElement); + this.enterRule(localContext, 768, MySqlParser.RULE_levelInWeightListElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7676; + this.state = 7582; this.decimalLiteral(); - this.state = 7678; + this.state = 7584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || _la === 45 || _la === 830) { { - this.state = 7677; + this.state = 7583; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45 || _la === 830)) { @@ -44789,10 +44417,10 @@ export class MySqlParser extends antlr.Parser { } public aggregateWindowedFunction(): AggregateWindowedFunctionContext { let localContext = new AggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 776, MySqlParser.RULE_aggregateWindowedFunction); + this.enterRule(localContext, 770, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7739; + this.state = 7645; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AVG: @@ -44801,7 +44429,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_SUM: this.enterOuterAlt(localContext, 1); { - this.state = 7680; + this.state = 7586; _la = this.tokenStream.LA(1); if(!(((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -44810,14 +44438,14 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7681; + this.state = 7587; this.match(MySqlParser.LR_BRACKET); - this.state = 7683; + this.state = 7589; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { case 1: { - this.state = 7682; + this.state = 7588; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -44830,16 +44458,16 @@ export class MySqlParser extends antlr.Parser { } break; } - this.state = 7685; + this.state = 7591; this.functionArg(); - this.state = 7686; + this.state = 7592; this.match(MySqlParser.RR_BRACKET); - this.state = 7688; + this.state = 7594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 7687; + this.state = 7593; this.overClause(); } break; @@ -44849,52 +44477,52 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7690; + this.state = 7596; this.match(MySqlParser.KW_COUNT); - this.state = 7691; + this.state = 7597; this.match(MySqlParser.LR_BRACKET); - this.state = 7699; + this.state = 7605; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 7692; + this.state = 7598; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7694; + this.state = 7600; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { case 1: { - this.state = 7693; + this.state = 7599; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7696; + this.state = 7602; this.functionArg(); } break; case 3: { - this.state = 7697; + this.state = 7603; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); - this.state = 7698; + this.state = 7604; this.functionArgs(); } break; } - this.state = 7701; + this.state = 7607; this.match(MySqlParser.RR_BRACKET); - this.state = 7703; + this.state = 7609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { case 1: { - this.state = 7702; + this.state = 7608; this.overClause(); } break; @@ -44913,7 +44541,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7705; + this.state = 7611; _la = this.tokenStream.LA(1); if(!(((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -44922,28 +44550,28 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7706; + this.state = 7612; this.match(MySqlParser.LR_BRACKET); - this.state = 7708; + this.state = 7614; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: { - this.state = 7707; + this.state = 7613; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7710; + this.state = 7616; this.functionArg(); - this.state = 7711; + this.state = 7617; this.match(MySqlParser.RR_BRACKET); - this.state = 7713; + this.state = 7619; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { case 1: { - this.state = 7712; + this.state = 7618; this.overClause(); } break; @@ -44953,65 +44581,65 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7715; + this.state = 7621; this.match(MySqlParser.KW_GROUP_CONCAT); - this.state = 7716; + this.state = 7622; this.match(MySqlParser.LR_BRACKET); - this.state = 7718; + this.state = 7624; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: { - this.state = 7717; + this.state = 7623; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); } break; } - this.state = 7720; + this.state = 7626; this.functionArgs(); - this.state = 7731; + this.state = 7637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7721; + this.state = 7627; this.match(MySqlParser.KW_ORDER); - this.state = 7722; + this.state = 7628; this.match(MySqlParser.KW_BY); - this.state = 7723; + this.state = 7629; this.orderByExpression(); - this.state = 7728; + this.state = 7634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7724; + this.state = 7630; this.match(MySqlParser.COMMA); - this.state = 7725; + this.state = 7631; this.orderByExpression(); } } - this.state = 7730; + this.state = 7636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7735; + this.state = 7641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 156) { { - this.state = 7733; + this.state = 7639; this.match(MySqlParser.KW_SEPARATOR); - this.state = 7734; + this.state = 7640; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7737; + this.state = 7643; this.match(MySqlParser.RR_BRACKET); } break; @@ -45035,17 +44663,17 @@ export class MySqlParser extends antlr.Parser { } public nonAggregateWindowedFunction(): NonAggregateWindowedFunctionContext { let localContext = new NonAggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 778, MySqlParser.RULE_nonAggregateWindowedFunction); + this.enterRule(localContext, 772, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7779; + this.state = 7685; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LAG: case MySqlParser.KW_LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7741; + this.state = 7647; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 269)) { this.errorHandler.recoverInline(this); @@ -45054,37 +44682,37 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7742; + this.state = 7648; this.match(MySqlParser.LR_BRACKET); - this.state = 7743; + this.state = 7649; this.expression(0); - this.state = 7746; + this.state = 7652; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { case 1: { - this.state = 7744; + this.state = 7650; this.match(MySqlParser.COMMA); - this.state = 7745; + this.state = 7651; this.decimalLiteral(); } break; } - this.state = 7750; + this.state = 7656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7748; + this.state = 7654; this.match(MySqlParser.COMMA); - this.state = 7749; + this.state = 7655; this.decimalLiteral(); } } - this.state = 7752; + this.state = 7658; this.match(MySqlParser.RR_BRACKET); - this.state = 7753; + this.state = 7659; this.overClause(); } break; @@ -45092,7 +44720,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7755; + this.state = 7661; _la = this.tokenStream.LA(1); if(!(_la === 265 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -45101,13 +44729,13 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7756; + this.state = 7662; this.match(MySqlParser.LR_BRACKET); - this.state = 7757; + this.state = 7663; this.expression(0); - this.state = 7758; + this.state = 7664; this.match(MySqlParser.RR_BRACKET); - this.state = 7759; + this.state = 7665; this.overClause(); } break; @@ -45118,7 +44746,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.KW_ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7761; + this.state = 7667; _la = this.tokenStream.LA(1); if(!(((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -45127,45 +44755,45 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7762; + this.state = 7668; this.match(MySqlParser.LR_BRACKET); - this.state = 7763; + this.state = 7669; this.match(MySqlParser.RR_BRACKET); - this.state = 7764; + this.state = 7670; this.overClause(); } break; case MySqlParser.KW_NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7765; + this.state = 7671; this.match(MySqlParser.KW_NTH_VALUE); - this.state = 7766; + this.state = 7672; this.match(MySqlParser.LR_BRACKET); - this.state = 7767; + this.state = 7673; this.expression(0); - this.state = 7768; + this.state = 7674; this.match(MySqlParser.COMMA); - this.state = 7769; + this.state = 7675; this.decimalLiteral(); - this.state = 7770; + this.state = 7676; this.match(MySqlParser.RR_BRACKET); - this.state = 7771; + this.state = 7677; this.overClause(); } break; case MySqlParser.KW_NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7773; + this.state = 7679; this.match(MySqlParser.KW_NTILE); - this.state = 7774; + this.state = 7680; this.match(MySqlParser.LR_BRACKET); - this.state = 7775; + this.state = 7681; this.decimalLiteral(); - this.state = 7776; + this.state = 7682; this.match(MySqlParser.RR_BRACKET); - this.state = 7777; + this.state = 7683; this.overClause(); } break; @@ -45189,22 +44817,22 @@ export class MySqlParser extends antlr.Parser { } public overClause(): OverClauseContext { let localContext = new OverClauseContext(this.context, this.state); - this.enterRule(localContext, 780, MySqlParser.RULE_overClause); + this.enterRule(localContext, 774, MySqlParser.RULE_overClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7781; + this.state = 7687; this.match(MySqlParser.KW_OVER); - this.state = 7787; + this.state = 7693; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7782; + this.state = 7688; this.match(MySqlParser.LR_BRACKET); - this.state = 7783; + this.state = 7689; this.windowSpec(); - this.state = 7784; + this.state = 7690; this.match(MySqlParser.RR_BRACKET); } break; @@ -45757,7 +45385,7 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7786; + this.state = 7692; this.windowName(); } break; @@ -45782,47 +45410,47 @@ export class MySqlParser extends antlr.Parser { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 782, MySqlParser.RULE_windowSpec); + this.enterRule(localContext, 776, MySqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7790; + this.state = 7696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { case 1: { - this.state = 7789; + this.state = 7695; this.windowName(); } break; } - this.state = 7793; + this.state = 7699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 7792; + this.state = 7698; this.partitionClause(); } } - this.state = 7796; + this.state = 7702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7795; + this.state = 7701; this.orderByClause(); } } - this.state = 7799; + this.state = 7705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 587) { { - this.state = 7798; + this.state = 7704; this.frameClause(); } } @@ -45845,11 +45473,11 @@ export class MySqlParser extends antlr.Parser { } public windowName(): WindowNameContext { let localContext = new WindowNameContext(this.context, this.state); - this.enterRule(localContext, 784, MySqlParser.RULE_windowName); + this.enterRule(localContext, 778, MySqlParser.RULE_windowName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7801; + this.state = 7707; this.uid(); } } @@ -45869,13 +45497,13 @@ export class MySqlParser extends antlr.Parser { } public frameClause(): FrameClauseContext { let localContext = new FrameClauseContext(this.context, this.state); - this.enterRule(localContext, 786, MySqlParser.RULE_frameClause); + this.enterRule(localContext, 780, MySqlParser.RULE_frameClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7803; + this.state = 7709; this.frameUnits(); - this.state = 7804; + this.state = 7710; this.frameExtent(); } } @@ -45895,12 +45523,12 @@ export class MySqlParser extends antlr.Parser { } public frameUnits(): FrameUnitsContext { let localContext = new FrameUnitsContext(this.context, this.state); - this.enterRule(localContext, 788, MySqlParser.RULE_frameUnits); + this.enterRule(localContext, 782, MySqlParser.RULE_frameUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7806; + this.state = 7712; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 587)) { this.errorHandler.recoverInline(this); @@ -45927,22 +45555,22 @@ export class MySqlParser extends antlr.Parser { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 790, MySqlParser.RULE_frameExtent); + this.enterRule(localContext, 784, MySqlParser.RULE_frameExtent); try { - this.state = 7810; + this.state = 7716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7808; + this.state = 7714; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7809; + this.state = 7715; this.frameBetween(); } break; @@ -45964,17 +45592,17 @@ export class MySqlParser extends antlr.Parser { } public frameBetween(): FrameBetweenContext { let localContext = new FrameBetweenContext(this.context, this.state); - this.enterRule(localContext, 792, MySqlParser.RULE_frameBetween); + this.enterRule(localContext, 786, MySqlParser.RULE_frameBetween); try { this.enterOuterAlt(localContext, 1); { - this.state = 7812; + this.state = 7718; this.match(MySqlParser.KW_BETWEEN); - this.state = 7813; + this.state = 7719; this.frameRange(); - this.state = 7814; + this.state = 7720; this.match(MySqlParser.KW_AND); - this.state = 7815; + this.state = 7721; this.frameRange(); } } @@ -45994,27 +45622,27 @@ export class MySqlParser extends antlr.Parser { } public frameRange(): FrameRangeContext { let localContext = new FrameRangeContext(this.context, this.state); - this.enterRule(localContext, 794, MySqlParser.RULE_frameRange); + this.enterRule(localContext, 788, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7824; + this.state = 7730; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7817; + this.state = 7723; this.match(MySqlParser.KW_CURRENT); - this.state = 7818; + this.state = 7724; this.match(MySqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7819; + this.state = 7725; this.match(MySqlParser.KW_UNBOUNDED); - this.state = 7820; + this.state = 7726; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46028,9 +45656,9 @@ export class MySqlParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7821; + this.state = 7727; this.expression(0); - this.state = 7822; + this.state = 7728; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46059,30 +45687,30 @@ export class MySqlParser extends antlr.Parser { } public partitionClause(): PartitionClauseContext { let localContext = new PartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 796, MySqlParser.RULE_partitionClause); + this.enterRule(localContext, 790, MySqlParser.RULE_partitionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7826; + this.state = 7732; this.match(MySqlParser.KW_PARTITION); - this.state = 7827; + this.state = 7733; this.match(MySqlParser.KW_BY); - this.state = 7828; + this.state = 7734; this.expression(0); - this.state = 7833; + this.state = 7739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7829; + this.state = 7735; this.match(MySqlParser.COMMA); - this.state = 7830; + this.state = 7736; this.expression(0); } } - this.state = 7835; + this.state = 7741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46104,9 +45732,9 @@ export class MySqlParser extends antlr.Parser { } public scalarFunctionName(): ScalarFunctionNameContext { let localContext = new ScalarFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 798, MySqlParser.RULE_scalarFunctionName); + this.enterRule(localContext, 792, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7860; + this.state = 7766; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DATABASE: @@ -46163,168 +45791,168 @@ export class MySqlParser extends antlr.Parser { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7836; + this.state = 7742; this.functionNameBase(); } break; case MySqlParser.KW_ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7837; + this.state = 7743; this.match(MySqlParser.KW_ASCII); } break; case MySqlParser.KW_CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7838; + this.state = 7744; this.match(MySqlParser.KW_CURDATE); } break; case MySqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7839; + this.state = 7745; this.match(MySqlParser.KW_CURRENT_DATE); } break; case MySqlParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7840; + this.state = 7746; this.match(MySqlParser.KW_CURRENT_TIME); } break; case MySqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7841; + this.state = 7747; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case MySqlParser.KW_CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7842; + this.state = 7748; this.match(MySqlParser.KW_CURTIME); } break; case MySqlParser.KW_DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7843; + this.state = 7749; this.match(MySqlParser.KW_DATE_ADD); } break; case MySqlParser.KW_DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7844; + this.state = 7750; this.match(MySqlParser.KW_DATE_SUB); } break; case MySqlParser.KW_IF: this.enterOuterAlt(localContext, 10); { - this.state = 7845; + this.state = 7751; this.match(MySqlParser.KW_IF); } break; case MySqlParser.KW_INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7846; + this.state = 7752; this.match(MySqlParser.KW_INSERT); } break; case MySqlParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7847; + this.state = 7753; this.match(MySqlParser.KW_LOCALTIME); } break; case MySqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7848; + this.state = 7754; this.match(MySqlParser.KW_LOCALTIMESTAMP); } break; case MySqlParser.KW_MID: this.enterOuterAlt(localContext, 14); { - this.state = 7849; + this.state = 7755; this.match(MySqlParser.KW_MID); } break; case MySqlParser.KW_NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7850; + this.state = 7756; this.match(MySqlParser.KW_NOW); } break; case MySqlParser.KW_REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7851; + this.state = 7757; this.match(MySqlParser.KW_REPEAT); } break; case MySqlParser.KW_REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7852; + this.state = 7758; this.match(MySqlParser.KW_REPLACE); } break; case MySqlParser.KW_SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7853; + this.state = 7759; this.match(MySqlParser.KW_SUBSTR); } break; case MySqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7854; + this.state = 7760; this.match(MySqlParser.KW_SUBSTRING); } break; case MySqlParser.KW_SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7855; + this.state = 7761; this.match(MySqlParser.KW_SYSDATE); } break; case MySqlParser.KW_TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7856; + this.state = 7762; this.match(MySqlParser.KW_TRIM); } break; case MySqlParser.KW_UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7857; + this.state = 7763; this.match(MySqlParser.KW_UTC_DATE); } break; case MySqlParser.KW_UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7858; + this.state = 7764; this.match(MySqlParser.KW_UTC_TIME); } break; case MySqlParser.KW_UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7859; + this.state = 7765; this.match(MySqlParser.KW_UTC_TIMESTAMP); } break; @@ -46348,12 +45976,12 @@ export class MySqlParser extends antlr.Parser { } public passwordFunctionClause(): PasswordFunctionClauseContext { let localContext = new PasswordFunctionClauseContext(this.context, this.state); - this.enterRule(localContext, 800, MySqlParser.RULE_passwordFunctionClause); + this.enterRule(localContext, 794, MySqlParser.RULE_passwordFunctionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7862; + this.state = 7768; _la = this.tokenStream.LA(1); if(!(_la === 512 || _la === 529)) { this.errorHandler.recoverInline(this); @@ -46362,11 +45990,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7863; + this.state = 7769; this.match(MySqlParser.LR_BRACKET); - this.state = 7864; + this.state = 7770; this.functionArg(); - this.state = 7865; + this.state = 7771; this.match(MySqlParser.RR_BRACKET); } } @@ -46386,26 +46014,26 @@ export class MySqlParser extends antlr.Parser { } public functionArgs(): FunctionArgsContext { let localContext = new FunctionArgsContext(this.context, this.state); - this.enterRule(localContext, 802, MySqlParser.RULE_functionArgs); + this.enterRule(localContext, 796, MySqlParser.RULE_functionArgs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7867; + this.state = 7773; this.functionArg(); - this.state = 7872; + this.state = 7778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7868; + this.state = 7774; this.match(MySqlParser.COMMA); - this.state = 7869; + this.state = 7775; this.functionArg(); } } - this.state = 7874; + this.state = 7780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46427,36 +46055,36 @@ export class MySqlParser extends antlr.Parser { } public functionArg(): FunctionArgContext { let localContext = new FunctionArgContext(this.context, this.state); - this.enterRule(localContext, 804, MySqlParser.RULE_functionArg); + this.enterRule(localContext, 798, MySqlParser.RULE_functionArg); try { - this.state = 7879; + this.state = 7785; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7875; + this.state = 7781; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7876; + this.state = 7782; this.columnName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7877; + this.state = 7783; this.functionCall(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7878; + this.state = 7784; this.expression(0); } break; @@ -46488,23 +46116,23 @@ export class MySqlParser extends antlr.Parser { let parentState = this.state; let localContext = new ExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 806; - this.enterRecursionRule(localContext, 806, MySqlParser.RULE_expression, _p); + let _startState = 800; + this.enterRecursionRule(localContext, 800, MySqlParser.RULE_expression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7892; + this.state = 7798; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { case 1: { localContext = new NotExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7882; + this.state = 7788; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 860)) { @@ -46514,7 +46142,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7883; + this.state = 7789; this.expression(4); } break; @@ -46523,21 +46151,21 @@ export class MySqlParser extends antlr.Parser { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7884; + this.state = 7790; this.predicate(0); - this.state = 7885; + this.state = 7791; this.match(MySqlParser.KW_IS); - this.state = 7887; + this.state = 7793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7886; + this.state = 7792; this.match(MySqlParser.KW_NOT); } } - this.state = 7889; + this.state = 7795; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179 || _la === 674)) { @@ -46554,15 +46182,15 @@ export class MySqlParser extends antlr.Parser { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7891; + this.state = 7797; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7900; + this.state = 7806; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -46573,20 +46201,20 @@ export class MySqlParser extends antlr.Parser { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7894; + this.state = 7800; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7895; + this.state = 7801; this.logicalOperator(); - this.state = 7896; + this.state = 7802; this.expression(4); } } } - this.state = 7902; + this.state = 7808; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context); } } } @@ -46616,8 +46244,8 @@ export class MySqlParser extends antlr.Parser { let parentState = this.state; let localContext = new PredicateContext(this.context, parentState); let previousContext = localContext; - let _startState = 808; - this.enterRecursionRule(localContext, 808, MySqlParser.RULE_predicate, _p); + let _startState = 802; + this.enterRecursionRule(localContext, 802, MySqlParser.RULE_predicate, _p); let _la: number; try { let alternative: number; @@ -46628,13 +46256,13 @@ export class MySqlParser extends antlr.Parser { this.context = localContext; previousContext = localContext; - this.state = 7904; + this.state = 7810; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7970; + this.state = 7876; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -46642,21 +46270,21 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 7968; + this.state = 7874; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { case 1: { localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); (localContext as BinaryComparisonPredicateContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7906; + this.state = 7812; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 7907; + this.state = 7813; this.comparisonOperator(); - this.state = 7908; + this.state = 7814; (localContext as BinaryComparisonPredicateContext)._right = this.predicate(9); } break; @@ -46664,27 +46292,27 @@ export class MySqlParser extends antlr.Parser { { localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7910; + this.state = 7816; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7912; + this.state = 7818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7911; + this.state = 7817; this.match(MySqlParser.KW_NOT); } } - this.state = 7914; + this.state = 7820; this.match(MySqlParser.KW_BETWEEN); - this.state = 7915; + this.state = 7821; this.predicate(0); - this.state = 7916; + this.state = 7822; this.match(MySqlParser.KW_AND); - this.state = 7917; + this.state = 7823; this.predicate(7); } break; @@ -46692,15 +46320,15 @@ export class MySqlParser extends antlr.Parser { { localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7919; + this.state = 7825; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7920; + this.state = 7826; this.match(MySqlParser.KW_SOUNDS); - this.state = 7921; + this.state = 7827; this.match(MySqlParser.KW_LIKE); - this.state = 7922; + this.state = 7828; this.predicate(6); } break; @@ -46708,21 +46336,21 @@ export class MySqlParser extends antlr.Parser { { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7923; + this.state = 7829; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7925; + this.state = 7831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7924; + this.state = 7830; this.match(MySqlParser.KW_NOT); } } - this.state = 7927; + this.state = 7833; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 151)) { @@ -46732,7 +46360,7 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7928; + this.state = 7834; this.predicate(4); } break; @@ -46740,41 +46368,41 @@ export class MySqlParser extends antlr.Parser { { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7929; + this.state = 7835; if (!(this.precpred(this.context, 10))) { throw this.createFailedPredicateException("this.precpred(this.context, 10)"); } - this.state = 7931; + this.state = 7837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7930; + this.state = 7836; this.match(MySqlParser.KW_NOT); } } - this.state = 7933; + this.state = 7839; this.match(MySqlParser.KW_IN); - this.state = 7934; + this.state = 7840; this.match(MySqlParser.LR_BRACKET); - this.state = 7937; + this.state = 7843; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { case 1: { - this.state = 7935; + this.state = 7841; this.selectStatement(); } break; case 2: { - this.state = 7936; + this.state = 7842; this.expressions(); } break; } - this.state = 7939; + this.state = 7845; this.match(MySqlParser.RR_BRACKET); } break; @@ -46782,13 +46410,13 @@ export class MySqlParser extends antlr.Parser { { localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7941; + this.state = 7847; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7942; + this.state = 7848; this.match(MySqlParser.KW_IS); - this.state = 7943; + this.state = 7849; this.nullNotnull(); } break; @@ -46796,13 +46424,13 @@ export class MySqlParser extends antlr.Parser { { localContext = new SubqueryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7944; + this.state = 7850; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7945; + this.state = 7851; this.comparisonOperator(); - this.state = 7946; + this.state = 7852; (localContext as SubqueryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 309 || _la === 602)) { @@ -46812,11 +46440,11 @@ export class MySqlParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7947; + this.state = 7853; this.match(MySqlParser.LR_BRACKET); - this.state = 7948; + this.state = 7854; this.selectStatement(); - this.state = 7949; + this.state = 7855; this.match(MySqlParser.RR_BRACKET); } break; @@ -46824,32 +46452,32 @@ export class MySqlParser extends antlr.Parser { { localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7951; + this.state = 7857; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7953; + this.state = 7859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7952; + this.state = 7858; this.match(MySqlParser.KW_NOT); } } - this.state = 7955; + this.state = 7861; this.match(MySqlParser.KW_LIKE); - this.state = 7956; + this.state = 7862; this.predicate(0); - this.state = 7959; + this.state = 7865; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: { - this.state = 7957; + this.state = 7863; this.match(MySqlParser.KW_ESCAPE); - this.state = 7958; + this.state = 7864; this.match(MySqlParser.STRING_LITERAL); } break; @@ -46860,28 +46488,28 @@ export class MySqlParser extends antlr.Parser { { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7961; + this.state = 7867; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7962; + this.state = 7868; this.match(MySqlParser.KW_MEMBER); - this.state = 7963; + this.state = 7869; this.match(MySqlParser.KW_OF); - this.state = 7964; + this.state = 7870; this.match(MySqlParser.LR_BRACKET); - this.state = 7965; + this.state = 7871; this.predicate(0); - this.state = 7966; + this.state = 7872; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 7972; + this.state = 7878; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context); } } } @@ -46911,23 +46539,23 @@ export class MySqlParser extends antlr.Parser { let parentState = this.state; let localContext = new ExpressionAtomContext(this.context, parentState); let previousContext = localContext; - let _startState = 810; - this.enterRecursionRule(localContext, 810, MySqlParser.RULE_expressionAtom, _p); + let _startState = 804; + this.enterRecursionRule(localContext, 804, MySqlParser.RULE_expressionAtom, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8021; + this.state = 7927; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: { localContext = new ConstantExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7974; + this.state = 7880; this.constant(); } break; @@ -46936,7 +46564,7 @@ export class MySqlParser extends antlr.Parser { localContext = new ColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7975; + this.state = 7881; this.columnName(); } break; @@ -46945,7 +46573,7 @@ export class MySqlParser extends antlr.Parser { localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7976; + this.state = 7882; this.functionCall(); } break; @@ -46954,7 +46582,7 @@ export class MySqlParser extends antlr.Parser { localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7977; + this.state = 7883; this.mysqlVariable(); } break; @@ -46963,9 +46591,9 @@ export class MySqlParser extends antlr.Parser { localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7978; + this.state = 7884; this.unaryOperator(); - this.state = 7979; + this.state = 7885; this.expressionAtom(11); } break; @@ -46974,9 +46602,9 @@ export class MySqlParser extends antlr.Parser { localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7981; + this.state = 7887; this.match(MySqlParser.KW_BINARY); - this.state = 7982; + this.state = 7888; this.expressionAtom(10); } break; @@ -46985,11 +46613,11 @@ export class MySqlParser extends antlr.Parser { localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7983; + this.state = 7889; this.match(MySqlParser.LOCAL_ID); - this.state = 7984; + this.state = 7890; this.match(MySqlParser.VAR_ASSIGN); - this.state = 7985; + this.state = 7891; this.expressionAtom(9); } break; @@ -46998,27 +46626,27 @@ export class MySqlParser extends antlr.Parser { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7986; + this.state = 7892; this.match(MySqlParser.LR_BRACKET); - this.state = 7987; + this.state = 7893; this.expression(0); - this.state = 7992; + this.state = 7898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7988; + this.state = 7894; this.match(MySqlParser.COMMA); - this.state = 7989; + this.state = 7895; this.expression(0); } } - this.state = 7994; + this.state = 7900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7995; + this.state = 7901; this.match(MySqlParser.RR_BRACKET); } break; @@ -47027,29 +46655,29 @@ export class MySqlParser extends antlr.Parser { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7997; + this.state = 7903; this.match(MySqlParser.KW_ROW); - this.state = 7998; + this.state = 7904; this.match(MySqlParser.LR_BRACKET); - this.state = 7999; + this.state = 7905; this.expression(0); - this.state = 8002; + this.state = 7908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8000; + this.state = 7906; this.match(MySqlParser.COMMA); - this.state = 8001; + this.state = 7907; this.expression(0); } } - this.state = 8004; + this.state = 7910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 8006; + this.state = 7912; this.match(MySqlParser.RR_BRACKET); } break; @@ -47058,13 +46686,13 @@ export class MySqlParser extends antlr.Parser { localContext = new ExistsExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8008; + this.state = 7914; this.match(MySqlParser.KW_EXISTS); - this.state = 8009; + this.state = 7915; this.match(MySqlParser.LR_BRACKET); - this.state = 8010; + this.state = 7916; this.selectStatement(); - this.state = 8011; + this.state = 7917; this.match(MySqlParser.RR_BRACKET); } break; @@ -47073,11 +46701,11 @@ export class MySqlParser extends antlr.Parser { localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8013; + this.state = 7919; this.match(MySqlParser.LR_BRACKET); - this.state = 8014; + this.state = 7920; this.selectStatement(); - this.state = 8015; + this.state = 7921; this.match(MySqlParser.RR_BRACKET); } break; @@ -47086,19 +46714,19 @@ export class MySqlParser extends antlr.Parser { localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8017; + this.state = 7923; this.match(MySqlParser.KW_INTERVAL); - this.state = 8018; + this.state = 7924; this.expression(0); - this.state = 8019; + this.state = 7925; this.intervalType(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 8040; + this.state = 7946; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47106,21 +46734,21 @@ export class MySqlParser extends antlr.Parser { } previousContext = localContext; { - this.state = 8038; + this.state = 7944; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: { localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as BitExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8023; + this.state = 7929; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 8024; + this.state = 7930; this.bitOperator(); - this.state = 8025; + this.state = 7931; (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); } break; @@ -47129,13 +46757,13 @@ export class MySqlParser extends antlr.Parser { localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as MathExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8027; + this.state = 7933; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 8028; + this.state = 7934; this.mathOperator(); - this.state = 8029; + this.state = 7935; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; @@ -47144,13 +46772,13 @@ export class MySqlParser extends antlr.Parser { localContext = new JsonExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as JsonExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8031; + this.state = 7937; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 8032; + this.state = 7938; this.jsonOperator(); - this.state = 8033; + this.state = 7939; (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(2); } break; @@ -47158,22 +46786,22 @@ export class MySqlParser extends antlr.Parser { { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8035; + this.state = 7941; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 8036; + this.state = 7942; this.match(MySqlParser.KW_COLLATE); - this.state = 8037; + this.state = 7943; this.collationName(); } break; } } } - this.state = 8042; + this.state = 7948; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context); } } } @@ -47193,12 +46821,12 @@ export class MySqlParser extends antlr.Parser { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 812, MySqlParser.RULE_unaryOperator); + this.enterRule(localContext, 806, MySqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8043; + this.state = 7949; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 853)) & ~0x1F) === 0 && ((1 << (_la - 853)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -47225,44 +46853,44 @@ export class MySqlParser extends antlr.Parser { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 814, MySqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 808, MySqlParser.RULE_comparisonOperator); try { - this.state = 8053; + this.state = 7959; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8045; + this.state = 7951; this.comparisonBase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8046; + this.state = 7952; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8047; + this.state = 7953; this.match(MySqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8048; + this.state = 7954; this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 8049; + this.state = 7955; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8050; + this.state = 7956; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8051; + this.state = 7957; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 8052; + this.state = 7958; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -47284,47 +46912,47 @@ export class MySqlParser extends antlr.Parser { } public comparisonBase(): ComparisonBaseContext { let localContext = new ComparisonBaseContext(this.context, this.state); - this.enterRule(localContext, 816, MySqlParser.RULE_comparisonBase); + this.enterRule(localContext, 810, MySqlParser.RULE_comparisonBase); try { - this.state = 8062; + this.state = 7968; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8055; + this.state = 7961; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8056; + this.state = 7962; this.match(MySqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8057; + this.state = 7963; this.match(MySqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8058; + this.state = 7964; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8059; + this.state = 7965; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8060; + this.state = 7966; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8061; + this.state = 7967; this.match(MySqlParser.EQUAL_SYMBOL); } break; @@ -47346,47 +46974,47 @@ export class MySqlParser extends antlr.Parser { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 818, MySqlParser.RULE_logicalOperator); + this.enterRule(localContext, 812, MySqlParser.RULE_logicalOperator); try { - this.state = 8071; + this.state = 7977; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 8064; + this.state = 7970; this.match(MySqlParser.KW_AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 8065; + this.state = 7971; this.match(MySqlParser.BIT_AND_OP); - this.state = 8066; + this.state = 7972; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.KW_XOR: this.enterOuterAlt(localContext, 3); { - this.state = 8067; + this.state = 7973; this.match(MySqlParser.KW_XOR); } break; case MySqlParser.KW_OR: this.enterOuterAlt(localContext, 4); { - this.state = 8068; + this.state = 7974; this.match(MySqlParser.KW_OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8069; + this.state = 7975; this.match(MySqlParser.BIT_OR_OP); - this.state = 8070; + this.state = 7976; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47410,47 +47038,47 @@ export class MySqlParser extends antlr.Parser { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 820, MySqlParser.RULE_bitOperator); + this.enterRule(localContext, 814, MySqlParser.RULE_bitOperator); try { - this.state = 8080; + this.state = 7986; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 8073; + this.state = 7979; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8074; + this.state = 7980; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 8075; + this.state = 7981; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8076; + this.state = 7982; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 8077; + this.state = 7983; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 8078; + this.state = 7984; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8079; + this.state = 7985; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47474,12 +47102,12 @@ export class MySqlParser extends antlr.Parser { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 822, MySqlParser.RULE_mathOperator); + this.enterRule(localContext, 816, MySqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8082; + this.state = 7988; _la = this.tokenStream.LA(1); if(!(((((_la - 850)) & ~0x1F) === 0 && ((1 << (_la - 850)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -47506,28 +47134,28 @@ export class MySqlParser extends antlr.Parser { } public jsonOperator(): JsonOperatorContext { let localContext = new JsonOperatorContext(this.context, this.state); - this.enterRule(localContext, 824, MySqlParser.RULE_jsonOperator); + this.enterRule(localContext, 818, MySqlParser.RULE_jsonOperator); try { - this.state = 8089; + this.state = 7995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1170, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8084; + this.state = 7990; this.match(MySqlParser.MINUS); - this.state = 8085; + this.state = 7991; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8086; + this.state = 7992; this.match(MySqlParser.MINUS); - this.state = 8087; + this.state = 7993; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8088; + this.state = 7994; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -47549,12 +47177,12 @@ export class MySqlParser extends antlr.Parser { } public charsetNameBase(): CharsetNameBaseContext { let localContext = new CharsetNameBaseContext(this.context, this.state); - this.enterRule(localContext, 826, MySqlParser.RULE_charsetNameBase); + this.enterRule(localContext, 820, MySqlParser.RULE_charsetNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8091; + this.state = 7997; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 756)) & ~0x1F) === 0 && ((1 << (_la - 756)) & 4294967295) !== 0) || ((((_la - 788)) & ~0x1F) === 0 && ((1 << (_la - 788)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -47581,12 +47209,12 @@ export class MySqlParser extends antlr.Parser { } public transactionLevelBase(): TransactionLevelBaseContext { let localContext = new TransactionLevelBaseContext(this.context, this.state); - this.enterRule(localContext, 828, MySqlParser.RULE_transactionLevelBase); + this.enterRule(localContext, 822, MySqlParser.RULE_transactionLevelBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8093; + this.state = 7999; _la = this.tokenStream.LA(1); if(!(((((_la - 809)) & ~0x1F) === 0 && ((1 << (_la - 809)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -47613,12 +47241,12 @@ export class MySqlParser extends antlr.Parser { } public privilegesBase(): PrivilegesBaseContext { let localContext = new PrivilegesBaseContext(this.context, this.state); - this.enterRule(localContext, 830, MySqlParser.RULE_privilegesBase); + this.enterRule(localContext, 824, MySqlParser.RULE_privilegesBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8095; + this.state = 8001; _la = this.tokenStream.LA(1); if(!(((((_la - 717)) & ~0x1F) === 0 && ((1 << (_la - 717)) & 68026371) !== 0) || ((((_la - 749)) & ~0x1F) === 0 && ((1 << (_la - 749)) & 11) !== 0))) { this.errorHandler.recoverInline(this); @@ -47645,12 +47273,12 @@ export class MySqlParser extends antlr.Parser { } public intervalTypeBase(): IntervalTypeBaseContext { let localContext = new IntervalTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 832, MySqlParser.RULE_intervalTypeBase); + this.enterRule(localContext, 826, MySqlParser.RULE_intervalTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8097; + this.state = 8003; _la = this.tokenStream.LA(1); if(!(((((_la - 696)) & ~0x1F) === 0 && ((1 << (_la - 696)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -47677,12 +47305,12 @@ export class MySqlParser extends antlr.Parser { } public dataTypeBase(): DataTypeBaseContext { let localContext = new DataTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 834, MySqlParser.RULE_dataTypeBase); + this.enterRule(localContext, 828, MySqlParser.RULE_dataTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8099; + this.state = 8005; _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -47709,12 +47337,12 @@ export class MySqlParser extends antlr.Parser { } public keywordsCanBeId(): KeywordsCanBeIdContext { let localContext = new KeywordsCanBeIdContext(this.context, this.state); - this.enterRule(localContext, 836, MySqlParser.RULE_keywordsCanBeId); + this.enterRule(localContext, 830, MySqlParser.RULE_keywordsCanBeId); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8101; + this.state = 8007; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014211) !== 0) || _la === 74 || _la === 95 || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 16673) !== 0) || _la === 160 || _la === 170 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1648345089) !== 0) || ((((_la - 277)) & ~0x1F) === 0 && ((1 << (_la - 277)) & 4160749823) !== 0) || ((((_la - 309)) & ~0x1F) === 0 && ((1 << (_la - 309)) & 4292870141) !== 0) || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 4294967287) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 4024434671) !== 0) || ((((_la - 406)) & ~0x1F) === 0 && ((1 << (_la - 406)) & 3747609503) !== 0) || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4227727359) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 3758096239) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 2678062559) !== 0) || ((((_la - 534)) & ~0x1F) === 0 && ((1 << (_la - 534)) & 2682256863) !== 0) || ((((_la - 566)) & ~0x1F) === 0 && ((1 << (_la - 566)) & 4294957695) !== 0) || ((((_la - 598)) & ~0x1F) === 0 && ((1 << (_la - 598)) & 255) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 2128608253) !== 0) || ((((_la - 704)) & ~0x1F) === 0 && ((1 << (_la - 704)) & 1053007341) !== 0) || ((((_la - 737)) & ~0x1F) === 0 && ((1 << (_la - 737)) & 478907) !== 0) || ((((_la - 802)) & ~0x1F) === 0 && ((1 << (_la - 802)) & 3230662657) !== 0) || _la === 838)) { this.errorHandler.recoverInline(this); @@ -47741,12 +47369,12 @@ export class MySqlParser extends antlr.Parser { } public functionNameBase(): FunctionNameBaseContext { let localContext = new FunctionNameBaseContext(this.context, this.state); - this.enterRule(localContext, 838, MySqlParser.RULE_functionNameBase); + this.enterRule(localContext, 832, MySqlParser.RULE_functionNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8103; + this.state = 8009; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 98 || _la === 150 || _la === 152 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 23) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 16375299) !== 0) || _la === 296 || _la === 435 || ((((_la - 686)) & ~0x1F) === 0 && ((1 << (_la - 686)) & 261121) !== 0) || _la === 746 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 145190393) !== 0) || _la === 856)) { this.errorHandler.recoverInline(this); @@ -47778,11 +47406,11 @@ export class MySqlParser extends antlr.Parser { return this.queryExpressionBody_sempred(localContext as QueryExpressionBodyContext, predIndex); case 105: return this.queryItem_sempred(localContext as QueryItemContext, predIndex); - case 403: + case 400: return this.expression_sempred(localContext as ExpressionContext, predIndex); - case 404: + case 401: return this.predicate_sempred(localContext as PredicateContext, predIndex); - case 405: + case 402: return this.expressionAtom_sempred(localContext as ExpressionAtomContext, predIndex); } return true; @@ -47848,7 +47476,7 @@ export class MySqlParser extends antlr.Parser { } public static readonly _serializedATN: number[] = [ - 4,1,895,8106,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,895,8012,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -47920,3674 +47548,3627 @@ export class MySqlParser extends antlr.Parser { 7,395,2,396,7,396,2,397,7,397,2,398,7,398,2,399,7,399,2,400,7,400, 2,401,7,401,2,402,7,402,2,403,7,403,2,404,7,404,2,405,7,405,2,406, 7,406,2,407,7,407,2,408,7,408,2,409,7,409,2,410,7,410,2,411,7,411, - 2,412,7,412,2,413,7,413,2,414,7,414,2,415,7,415,2,416,7,416,2,417, - 7,417,2,418,7,418,2,419,7,419,1,0,5,0,842,8,0,10,0,12,0,845,9,0, - 1,0,1,0,1,1,1,1,3,1,851,8,1,1,1,3,1,854,8,1,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,863,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4, - 1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4, - 1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,906, - 8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,3,5,925,8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,936, - 8,6,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7, - 952,8,7,1,8,1,8,1,8,3,8,957,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9, - 1,9,1,9,3,9,969,8,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, + 2,412,7,412,2,413,7,413,2,414,7,414,2,415,7,415,2,416,7,416,1,0, + 5,0,836,8,0,10,0,12,0,839,9,0,1,0,1,0,1,1,1,1,3,1,845,8,1,1,1,3, + 1,848,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,857,8,2,1,3,1,3,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,3,4,900,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,919,8,5,1,6,1,6,1,6,1, + 6,1,6,1,6,1,6,1,6,1,6,3,6,930,8,6,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1, + 7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,946,8,7,1,8,1,8,1,8,3,8,951,8,8,1, + 9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,963,8,9,1,10,1,10,1,10, 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1004, - 8,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1014,8,11,1,12, - 1,12,1,12,3,12,1019,8,12,1,12,1,12,5,12,1023,8,12,10,12,12,12,1026, - 9,12,1,13,1,13,3,13,1030,8,13,1,13,1,13,3,13,1034,8,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,3,13,1043,8,13,1,13,3,13,1046,8,13,1,13, - 3,13,1049,8,13,1,13,1,13,3,13,1053,8,13,1,13,1,13,1,13,1,14,1,14, - 3,14,1060,8,14,1,14,3,14,1063,8,14,1,14,1,14,1,14,3,14,1068,8,14, - 1,14,1,14,1,14,1,14,5,14,1074,8,14,10,14,12,14,1077,9,14,1,14,1, - 14,3,14,1081,8,14,1,14,1,14,1,14,3,14,1086,8,14,1,14,5,14,1089,8, - 14,10,14,12,14,1092,9,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,3,15,1103,8,15,1,15,3,15,1106,8,15,1,15,1,15,3,15,1110,8,15, - 1,15,3,15,1113,8,15,1,15,1,15,3,15,1117,8,15,1,15,3,15,1120,8,15, - 1,15,1,15,3,15,1124,8,15,1,15,3,15,1127,8,15,1,15,3,15,1130,8,15, - 1,15,1,15,3,15,1134,8,15,1,15,3,15,1137,8,15,1,15,1,15,3,15,1141, - 8,15,1,15,1,15,1,16,1,16,3,16,1147,8,16,1,16,1,16,3,16,1151,8,16, - 1,16,1,16,1,16,3,16,1156,8,16,1,16,1,16,5,16,1160,8,16,10,16,12, - 16,1163,9,16,1,16,1,16,5,16,1167,8,16,10,16,12,16,1170,9,16,1,16, - 1,16,1,17,1,17,1,17,3,17,1177,8,17,1,17,1,17,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,5,18,1193,8,18,10,18,12, - 18,1196,9,18,1,18,1,18,1,19,1,19,3,19,1202,8,19,1,19,1,19,3,19,1206, - 8,19,1,19,1,19,1,19,1,19,3,19,1212,8,19,1,19,5,19,1215,8,19,10,19, - 12,19,1218,9,19,3,19,1220,8,19,1,19,3,19,1223,8,19,1,19,1,19,3,19, - 1227,8,19,1,19,1,19,3,19,1231,8,19,1,19,1,19,3,19,1235,8,19,1,19, - 1,19,3,19,1239,8,19,1,19,5,19,1242,8,19,10,19,12,19,1245,9,19,3, - 19,1247,8,19,1,19,3,19,1250,8,19,1,19,3,19,1253,8,19,1,19,3,19,1256, - 8,19,1,19,1,19,1,19,1,19,3,19,1262,8,19,1,19,1,19,3,19,1266,8,19, - 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,1276,8,19,3,19,1278, - 8,19,1,20,1,20,3,20,1282,8,20,1,20,1,20,1,20,1,20,1,20,3,20,1289, - 8,20,1,20,1,20,3,20,1293,8,20,1,20,3,20,1296,8,20,1,20,1,20,1,20, - 3,20,1301,8,20,1,20,1,20,3,20,1305,8,20,1,20,3,20,1308,8,20,1,20, - 1,20,3,20,1312,8,20,1,20,3,20,1315,8,20,1,21,1,21,3,21,1319,8,21, - 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1332, - 8,21,1,21,3,21,1335,8,21,1,21,1,21,3,21,1339,8,21,1,21,3,21,1342, - 8,21,1,21,1,21,3,21,1346,8,21,1,21,3,21,1349,8,21,1,21,1,21,3,21, - 1353,8,21,1,21,3,21,1356,8,21,1,21,1,21,3,21,1360,8,21,1,21,3,21, - 1363,8,21,1,21,3,21,1366,8,21,1,21,1,21,3,21,1370,8,21,1,21,3,21, - 1373,8,21,1,21,1,21,3,21,1377,8,21,1,21,1,21,1,22,1,22,3,22,1383, - 8,22,1,22,1,22,3,22,1387,8,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22, - 1,22,1,22,1,22,3,22,1399,8,22,1,22,1,22,1,23,1,23,3,23,1405,8,23, - 1,23,1,23,1,24,1,24,1,24,1,24,1,24,5,24,1414,8,24,10,24,12,24,1417, - 9,24,1,24,1,24,3,24,1421,8,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24, - 1429,8,24,1,25,1,25,3,25,1433,8,25,1,25,1,25,1,25,3,25,1438,8,25, - 1,25,3,25,1441,8,25,1,25,1,25,1,25,3,25,1446,8,25,1,25,1,25,1,25, - 1,25,1,25,1,25,3,25,1454,8,25,1,25,1,25,1,25,3,25,1459,8,25,1,25, - 1,25,1,25,1,25,3,25,1465,8,25,1,25,1,25,1,25,3,25,1470,8,25,1,25, - 1,25,3,25,1474,8,25,3,25,1476,8,25,1,26,3,26,1479,8,26,1,26,1,26, - 3,26,1483,8,26,1,26,1,26,3,26,1487,8,26,1,26,3,26,1490,8,26,1,26, - 1,26,3,26,1494,8,26,1,26,1,26,3,26,1498,8,26,1,26,1,26,3,26,1502, - 8,26,1,26,1,26,1,26,1,26,3,26,1508,8,26,1,26,3,26,1511,8,26,1,27, - 1,27,1,27,1,27,1,27,3,27,1518,8,27,1,28,1,28,1,28,3,28,1523,8,28, - 1,29,1,29,1,29,1,29,3,29,1529,8,29,1,30,1,30,1,30,5,30,1534,8,30, - 10,30,12,30,1537,9,30,1,30,1,30,1,30,3,30,1542,8,30,1,30,1,30,1, - 30,1,30,5,30,1548,8,30,10,30,12,30,1551,9,30,3,30,1553,8,30,1,30, - 1,30,1,30,5,30,1558,8,30,10,30,12,30,1561,9,30,3,30,1563,8,30,3, - 30,1565,8,30,1,31,1,31,1,31,1,31,3,31,1571,8,31,1,32,1,32,1,32,1, - 32,3,32,1577,8,32,1,32,1,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1, - 33,1,33,1,33,1,33,1,33,1,33,3,33,1594,8,33,1,34,1,34,1,34,1,34,1, - 34,3,34,1601,8,34,1,35,1,35,1,35,1,36,1,36,3,36,1608,8,36,1,36,1, - 36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1620,8,36,1,36,1, - 36,1,36,3,36,1625,8,36,1,36,3,36,1628,8,36,1,37,3,37,1631,8,37,1, - 37,1,37,1,37,1,38,1,38,1,38,1,38,1,38,3,38,1641,8,38,1,38,1,38,1, - 38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1654,8,38,1,38,1, - 38,1,38,3,38,1659,8,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1, - 39,1,39,1,39,1,39,1,39,1,39,3,39,1675,8,39,1,40,1,40,1,40,1,40,5, - 40,1681,8,40,10,40,12,40,1684,9,40,1,40,1,40,1,41,1,41,1,41,1,41, - 1,41,3,41,1693,8,41,1,41,3,41,1696,8,41,1,41,1,41,5,41,1700,8,41, - 10,41,12,41,1703,9,41,1,41,1,41,3,41,1707,8,41,1,41,3,41,1710,8, - 41,1,41,1,41,5,41,1714,8,41,10,41,12,41,1717,9,41,1,41,3,41,1720, - 8,41,1,41,1,41,1,41,3,41,1725,8,41,1,41,1,41,5,41,1729,8,41,10,41, - 12,41,1732,9,41,1,41,3,41,1735,8,41,1,41,1,41,3,41,1739,8,41,1,41, - 3,41,1742,8,41,1,41,3,41,1745,8,41,1,41,1,41,5,41,1749,8,41,10,41, - 12,41,1752,9,41,1,41,3,41,1755,8,41,1,41,1,41,1,41,3,41,1760,8,41, - 1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,3,41,1771,8,41,1,42, - 3,42,1774,8,42,1,42,1,42,1,42,1,42,1,42,3,42,1781,8,42,1,42,3,42, - 1784,8,42,1,43,1,43,3,43,1788,8,43,1,44,1,44,5,44,1792,8,44,10,44, - 12,44,1795,9,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,3,45, - 1806,8,45,1,45,3,45,1809,8,45,1,45,1,45,1,45,3,45,1814,8,45,1,45, - 1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,3,45,1827,8,45, - 1,45,1,45,1,45,1,45,1,45,3,45,1834,8,45,1,45,1,45,1,45,1,45,3,45, - 1840,8,45,1,46,1,46,1,46,3,46,1845,8,46,1,46,1,46,3,46,1849,8,46, - 1,46,3,46,1852,8,46,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1860,8,47, - 1,47,1,47,1,47,1,47,1,47,1,47,3,47,1868,8,47,3,47,1870,8,47,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1880,8,48,1,49,1,49,3,49, - 1884,8,49,1,49,3,49,1887,8,49,1,49,1,49,3,49,1891,8,49,1,49,1,49, - 1,49,3,49,1896,8,49,1,49,1,49,1,49,3,49,1901,8,49,1,49,1,49,1,49, - 3,49,1906,8,49,1,49,1,49,3,49,1910,8,49,1,49,1,49,3,49,1914,8,49, - 1,49,1,49,3,49,1918,8,49,1,49,1,49,3,49,1922,8,49,1,49,1,49,3,49, - 1926,8,49,1,49,1,49,3,49,1930,8,49,1,49,1,49,1,49,3,49,1935,8,49, - 1,49,1,49,1,49,3,49,1940,8,49,1,49,1,49,1,49,3,49,1945,8,49,1,49, - 1,49,1,49,1,49,3,49,1951,8,49,1,49,1,49,1,49,3,49,1956,8,49,1,49, - 1,49,1,49,3,49,1961,8,49,1,49,1,49,1,49,3,49,1966,8,49,1,49,1,49, - 1,49,3,49,1971,8,49,1,49,1,49,1,49,3,49,1976,8,49,1,49,1,49,1,49, - 1,49,3,49,1982,8,49,1,49,1,49,1,49,3,49,1987,8,49,1,49,1,49,1,49, - 3,49,1992,8,49,1,49,1,49,1,49,3,49,1997,8,49,1,49,1,49,1,49,3,49, - 2002,8,49,1,49,1,49,1,49,3,49,2007,8,49,1,49,1,49,1,49,3,49,2012, - 8,49,1,49,1,49,1,49,3,49,2017,8,49,1,49,1,49,1,49,1,49,1,49,3,49, - 2024,8,49,1,49,1,49,1,49,3,49,2029,8,49,1,49,1,49,1,49,3,49,2034, - 8,49,1,49,1,49,1,49,3,49,2039,8,49,1,49,1,49,3,49,2043,8,49,1,49, - 1,49,1,49,3,49,2048,8,49,1,49,1,49,1,49,1,49,1,49,1,49,3,49,2056, - 8,49,1,49,1,49,1,49,3,49,2061,8,49,1,49,1,49,1,49,1,49,3,49,2067, - 8,49,1,50,1,50,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,3,52,2079, - 8,52,1,52,1,52,1,52,1,52,1,52,3,52,2086,8,52,3,52,2088,8,52,1,52, - 1,52,1,52,1,52,5,52,2094,8,52,10,52,12,52,2097,9,52,1,52,1,52,3, - 52,2101,8,52,1,53,3,53,2104,8,53,1,53,1,53,1,53,1,53,1,53,1,53,3, - 53,2112,8,53,1,53,1,53,1,53,1,53,3,53,2118,8,53,1,53,1,53,3,53,2122, - 8,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53, - 2135,8,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53, - 2147,8,53,3,53,2149,8,53,1,54,3,54,2152,8,54,1,54,1,54,1,54,1,54, - 1,54,1,54,3,54,2160,8,54,1,54,1,54,1,54,1,54,3,54,2166,8,54,1,54, - 1,54,1,54,1,54,3,54,2172,8,54,1,55,1,55,1,55,1,55,1,55,1,55,1,55, - 1,55,1,55,5,55,2183,8,55,10,55,12,55,2186,9,55,1,55,1,55,5,55,2190, - 8,55,10,55,12,55,2193,9,55,1,55,1,55,1,55,1,55,5,55,2199,8,55,10, - 55,12,55,2202,9,55,1,55,1,55,3,55,2206,8,55,1,55,1,55,1,55,1,55, - 1,55,1,55,1,55,5,55,2215,8,55,10,55,12,55,2218,9,55,1,55,1,55,1, - 55,1,55,5,55,2224,8,55,10,55,12,55,2227,9,55,1,55,1,55,3,55,2231, - 8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,2241,8,55,10,55, - 12,55,2244,9,55,1,55,1,55,5,55,2248,8,55,10,55,12,55,2251,9,55,1, - 55,1,55,1,55,1,55,5,55,2257,8,55,10,55,12,55,2260,9,55,1,55,1,55, - 3,55,2264,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,2274, - 8,55,10,55,12,55,2277,9,55,1,55,1,55,5,55,2281,8,55,10,55,12,55, - 2284,9,55,1,55,1,55,1,55,1,55,5,55,2290,8,55,10,55,12,55,2293,9, - 55,1,55,1,55,3,55,2297,8,55,1,55,1,55,1,55,5,55,2302,8,55,10,55, - 12,55,2305,9,55,1,55,1,55,1,55,1,55,5,55,2311,8,55,10,55,12,55,2314, - 9,55,1,55,1,55,3,55,2318,8,55,3,55,2320,8,55,1,56,1,56,1,56,3,56, - 2325,8,56,1,57,1,57,1,57,1,57,4,57,2331,8,57,11,57,12,57,2332,1, - 57,1,57,1,58,1,58,1,58,5,58,2340,8,58,10,58,12,58,2343,9,58,1,59, - 3,59,2346,8,59,1,59,3,59,2349,8,59,1,59,1,59,3,59,2353,8,59,1,59, - 1,59,1,59,3,59,2358,8,59,1,59,1,59,1,59,1,59,3,59,2364,8,59,1,59, - 1,59,1,59,1,59,3,59,2370,8,59,1,59,1,59,1,59,3,59,2375,8,59,1,59, - 1,59,1,59,3,59,2380,8,59,1,59,1,59,1,59,3,59,2385,8,59,1,59,1,59, - 1,59,3,59,2390,8,59,1,59,3,59,2393,8,59,1,60,1,60,1,60,3,60,2398, - 8,60,1,60,4,60,2401,8,60,11,60,12,60,2402,1,60,1,60,1,60,1,60,1, - 60,1,60,1,60,1,60,3,60,2413,8,60,1,61,1,61,3,61,2417,8,61,1,61,1, - 61,1,61,1,61,1,61,3,61,2424,8,61,1,61,1,61,1,61,3,61,2429,8,61,1, - 61,3,61,2432,8,61,1,61,1,61,1,61,3,61,2437,8,61,1,61,3,61,2440,8, - 61,1,61,1,61,3,61,2444,8,61,1,61,1,61,3,61,2448,8,61,1,62,1,62,1, - 62,1,62,5,62,2454,8,62,10,62,12,62,2457,9,62,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,3,64, - 2475,8,64,1,64,3,64,2478,8,64,1,64,3,64,2481,8,64,1,64,1,64,3,64, - 2485,8,64,1,64,1,64,1,65,1,65,1,65,1,65,5,65,2493,8,65,10,65,12, - 65,2496,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,5,66,2506,8, - 66,10,66,12,66,2509,9,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67, - 5,67,2519,8,67,10,67,12,67,2522,9,67,3,67,2524,8,67,1,67,1,67,5, - 67,2528,8,67,10,67,12,67,2531,9,67,3,67,2533,8,67,1,68,1,68,3,68, - 2537,8,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,2546,8,68,1,68, - 3,68,2549,8,68,1,68,3,68,2552,8,68,1,68,1,68,1,68,3,68,2557,8,68, - 1,68,1,68,3,68,2561,8,68,1,68,3,68,2564,8,68,1,68,1,68,3,68,2568, - 8,68,1,68,1,68,3,68,2572,8,68,1,68,3,68,2575,8,68,1,68,1,68,3,68, - 2579,8,68,1,68,3,68,2582,8,68,1,68,1,68,3,68,2586,8,68,1,68,3,68, - 2589,8,68,1,69,1,69,1,69,1,69,3,69,2595,8,69,1,69,3,69,2598,8,69, - 1,69,1,69,1,69,3,69,2603,8,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69, - 2611,8,69,1,69,1,69,1,69,1,69,3,69,2617,8,69,1,69,1,69,3,69,2621, - 8,69,1,70,1,70,3,70,2625,8,70,1,70,5,70,2628,8,70,10,70,12,70,2631, - 9,70,1,70,1,70,3,70,2635,8,70,1,70,1,70,1,70,1,70,1,70,3,70,2642, - 8,70,1,70,1,70,3,70,2646,8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, - 5,70,2655,8,70,10,70,12,70,2658,9,70,1,70,1,70,1,70,1,70,1,70,3, - 70,2665,8,70,1,70,3,70,2668,8,70,1,70,1,70,5,70,2672,8,70,10,70, - 12,70,2675,9,70,1,70,1,70,1,70,3,70,2680,8,70,1,70,3,70,2683,8,70, - 1,70,1,70,5,70,2687,8,70,10,70,12,70,2690,9,70,1,70,1,70,1,70,3, - 70,2695,8,70,3,70,2697,8,70,1,70,1,70,1,70,3,70,2702,8,70,1,70,1, - 70,5,70,2706,8,70,10,70,12,70,2709,9,70,1,70,1,70,1,70,3,70,2714, - 8,70,3,70,2716,8,70,1,70,1,70,3,70,2720,8,70,1,70,3,70,2723,8,70, - 1,70,3,70,2726,8,70,1,70,1,70,5,70,2730,8,70,10,70,12,70,2733,9, - 70,1,70,1,70,1,70,3,70,2738,8,70,3,70,2740,8,70,1,70,1,70,1,70,3, - 70,2745,8,70,1,70,1,70,1,70,1,70,1,70,3,70,2752,8,70,1,70,1,70,1, - 70,1,70,1,70,1,70,1,70,3,70,2761,8,70,1,70,3,70,2764,8,70,1,70,1, - 70,3,70,2768,8,70,1,70,1,70,1,70,3,70,2773,8,70,1,70,1,70,1,70,1, - 70,1,70,1,70,1,70,1,70,3,70,2783,8,70,1,70,1,70,1,70,1,70,1,70,1, - 70,1,70,3,70,2792,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2800,8, - 70,1,70,3,70,2803,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2811,8, - 70,1,70,3,70,2814,8,70,1,70,1,70,1,70,1,70,1,70,3,70,2821,8,70,1, - 70,1,70,1,70,3,70,2826,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2834, - 8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, - 1,70,1,70,3,70,2850,8,70,1,70,1,70,1,70,3,70,2855,8,70,1,70,1,70, - 1,70,1,70,1,70,3,70,2862,8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, - 1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2881,8,70, - 1,70,1,70,1,70,1,70,3,70,2887,8,70,1,71,1,71,1,71,1,71,1,71,1,71, - 5,71,2895,8,71,10,71,12,71,2898,9,71,1,71,1,71,1,71,1,71,1,71,1, - 71,1,71,1,71,1,71,3,71,2909,8,71,1,71,1,71,1,71,1,71,1,71,3,71,2916, - 8,71,1,71,1,71,1,71,1,71,1,71,3,71,2923,8,71,1,71,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2936,8,71,10,71,12,71,2939, - 9,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2951, - 8,71,1,71,1,71,1,71,1,71,3,71,2957,8,71,1,71,1,71,1,71,1,71,3,71, - 2963,8,71,1,71,1,71,1,71,1,71,3,71,2969,8,71,1,71,1,71,1,71,1,71, - 3,71,2975,8,71,1,71,1,71,1,71,1,71,3,71,2981,8,71,1,71,1,71,1,71, - 1,71,3,71,2987,8,71,1,72,1,72,1,72,3,72,2992,8,72,1,72,1,72,1,73, - 1,73,1,73,3,73,2999,8,73,1,73,1,73,1,74,1,74,1,74,3,74,3006,8,74, - 1,74,1,74,1,74,1,74,1,74,3,74,3013,8,74,1,74,1,74,1,74,3,74,3018, - 8,74,1,74,5,74,3021,8,74,10,74,12,74,3024,9,74,1,75,1,75,1,75,1, - 75,1,75,1,75,3,75,3032,8,75,1,75,1,75,1,76,1,76,1,76,3,76,3039,8, - 76,1,76,1,76,1,77,1,77,1,77,3,77,3046,8,77,1,77,1,77,1,78,1,78,1, - 78,3,78,3053,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,79,3,79,3062,8, - 79,1,79,1,79,1,80,1,80,3,80,3068,8,80,1,80,1,80,3,80,3072,8,80,1, - 80,1,80,3,80,3076,8,80,1,81,1,81,3,81,3080,8,81,1,81,1,81,1,81,1, - 81,3,81,3086,8,81,1,81,3,81,3089,8,81,1,82,1,82,1,82,3,82,3094,8, - 82,1,82,1,82,1,83,1,83,1,83,3,83,3101,8,83,1,83,1,83,1,83,5,83,3106, - 8,83,10,83,12,83,3109,9,83,1,83,3,83,3112,8,83,1,84,1,84,1,84,3, - 84,3117,8,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,3,85,3127,8, - 85,1,85,1,85,1,85,1,85,5,85,3133,8,85,10,85,12,85,3136,9,85,1,85, - 1,85,1,85,3,85,3141,8,85,1,86,1,86,1,86,1,86,1,86,5,86,3148,8,86, - 10,86,12,86,3151,9,86,1,87,1,87,1,87,1,87,1,88,1,88,3,88,3159,8, - 88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,3,89,3168,8,89,1,89,3,89,3171, - 8,89,1,90,1,90,3,90,3175,8,90,1,91,1,91,1,91,1,92,1,92,1,92,1,92, - 3,92,3184,8,92,1,93,1,93,3,93,3188,8,93,1,93,3,93,3191,8,93,1,93, - 3,93,3194,8,93,1,93,1,93,1,93,1,93,3,93,3200,8,93,1,93,3,93,3203, - 8,93,1,93,3,93,3206,8,93,1,93,1,93,3,93,3210,8,93,1,93,3,93,3213, - 8,93,1,93,3,93,3216,8,93,1,93,3,93,3219,8,93,1,93,1,93,1,93,1,93, - 1,93,1,93,1,93,5,93,3228,8,93,10,93,12,93,3231,9,93,3,93,3233,8, - 93,1,94,1,94,1,94,3,94,3238,8,94,1,95,1,95,1,95,1,95,3,95,3244,8, - 95,1,96,1,96,1,96,3,96,3249,8,96,1,96,4,96,3252,8,96,11,96,12,96, - 3253,1,97,3,97,3257,8,97,1,97,1,97,3,97,3261,8,97,1,98,1,98,1,98, - 3,98,3266,8,98,1,98,3,98,3269,8,98,1,98,1,98,1,98,3,98,3274,8,98, - 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,3284,8,98,1,98,1,98, - 1,98,3,98,3289,8,98,1,98,1,98,4,98,3293,8,98,11,98,12,98,3294,3, - 98,3297,8,98,1,98,1,98,4,98,3301,8,98,11,98,12,98,3302,3,98,3305, - 8,98,1,98,1,98,1,98,1,98,3,98,3311,8,98,1,98,1,98,1,98,1,98,5,98, - 3317,8,98,10,98,12,98,3320,9,98,1,98,1,98,3,98,3324,8,98,1,98,1, - 98,1,98,1,98,5,98,3330,8,98,10,98,12,98,3333,9,98,3,98,3335,8,98, - 1,99,1,99,1,99,3,99,3340,8,99,1,99,3,99,3343,8,99,1,99,1,99,1,99, - 3,99,3348,8,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,3356,8,99,1,99, - 1,99,1,99,1,99,3,99,3362,8,99,1,99,1,99,3,99,3366,8,99,3,99,3368, - 8,99,1,99,1,99,1,99,1,99,3,99,3374,8,99,1,99,1,99,1,99,1,99,5,99, - 3380,8,99,10,99,12,99,3383,9,99,1,99,1,99,3,99,3387,8,99,1,99,1, - 99,1,99,1,99,5,99,3393,8,99,10,99,12,99,3396,9,99,3,99,3398,8,99, - 1,100,1,100,1,100,3,100,3403,8,100,1,100,3,100,3406,8,100,1,100, - 1,100,3,100,3410,8,100,1,100,3,100,3413,8,100,1,100,3,100,3416,8, - 100,1,101,1,101,3,101,3420,8,101,1,101,3,101,3423,8,101,1,101,1, - 101,1,101,1,101,1,101,1,101,3,101,3431,8,101,1,101,1,101,1,101,1, - 101,3,101,3437,8,101,1,101,1,101,3,101,3441,8,101,1,102,1,102,3, - 102,3445,8,102,1,102,1,102,3,102,3449,8,102,1,102,3,102,3452,8,102, - 1,102,1,102,3,102,3456,8,102,1,102,1,102,4,102,3460,8,102,11,102, - 12,102,3461,1,102,1,102,3,102,3466,8,102,1,102,1,102,3,102,3470, - 8,102,3,102,3472,8,102,1,102,3,102,3475,8,102,1,102,3,102,3478,8, - 102,1,102,3,102,3481,8,102,1,102,1,102,4,102,3485,8,102,11,102,12, - 102,3486,1,102,1,102,3,102,3491,8,102,1,102,3,102,3494,8,102,1,102, - 3,102,3497,8,102,1,102,3,102,3500,8,102,1,102,3,102,3503,8,102,1, - 102,1,102,1,102,4,102,3508,8,102,11,102,12,102,3509,3,102,3512,8, - 102,1,103,3,103,3515,8,103,1,103,1,103,3,103,3519,8,103,1,103,3, - 103,3522,8,103,1,103,3,103,3525,8,103,1,104,1,104,1,104,1,104,1, - 104,1,104,3,104,3533,8,104,1,104,1,104,1,104,1,104,3,104,3539,8, - 104,1,104,5,104,3542,8,104,10,104,12,104,3545,9,104,1,105,1,105, - 1,105,1,105,1,105,1,105,3,105,3553,8,105,1,105,5,105,3556,8,105, - 10,105,12,105,3559,9,105,1,106,1,106,1,106,1,106,3,106,3565,8,106, - 1,106,3,106,3568,8,106,1,106,3,106,3571,8,106,1,106,1,106,3,106, - 3575,8,106,1,107,1,107,3,107,3579,8,107,1,108,1,108,1,108,1,108, - 3,108,3585,8,108,1,108,1,108,3,108,3589,8,108,1,109,1,109,1,109, - 5,109,3594,8,109,10,109,12,109,3597,9,109,1,109,3,109,3600,8,109, - 1,109,3,109,3603,8,109,1,109,3,109,3606,8,109,1,110,1,110,1,110, - 3,110,3611,8,110,1,111,1,111,1,111,1,111,1,111,3,111,3618,8,111, - 1,112,1,112,1,112,1,112,1,112,1,112,5,112,3626,8,112,10,112,12,112, - 3629,9,112,1,113,1,113,1,113,1,113,5,113,3635,8,113,10,113,12,113, - 3638,9,113,1,114,1,114,1,114,1,114,1,115,1,115,3,115,3646,8,115, - 1,116,1,116,1,116,1,116,1,116,1,116,5,116,3654,8,116,10,116,12,116, - 3657,9,116,3,116,3659,8,116,1,116,1,116,3,116,3663,8,116,1,116,1, - 116,1,116,1,116,3,116,3669,8,116,1,117,1,117,3,117,3673,8,117,1, - 117,3,117,3676,8,117,1,117,3,117,3679,8,117,1,117,1,117,1,117,3, - 117,3684,8,117,1,117,3,117,3687,8,117,1,117,1,117,1,117,1,117,1, - 117,3,117,3694,8,117,1,117,1,117,3,117,3698,8,117,1,117,3,117,3701, - 8,117,1,117,1,117,3,117,3705,8,117,1,118,1,118,3,118,3709,8,118, - 1,118,3,118,3712,8,118,1,118,3,118,3715,8,118,1,118,1,118,1,118, - 3,118,3720,8,118,1,118,1,118,1,118,1,118,3,118,3726,8,118,5,118, - 3728,8,118,10,118,12,118,3731,9,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,3,118,3740,8,118,1,118,1,118,1,118,1,118,3,118,3746, - 8,118,5,118,3748,8,118,10,118,12,118,3751,9,118,1,118,1,118,1,118, - 3,118,3756,8,118,1,118,1,118,3,118,3760,8,118,1,119,1,119,1,119, - 1,119,3,119,3766,8,119,1,119,3,119,3769,8,119,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,3781,8,120,1,120, - 1,120,3,120,3785,8,120,1,120,1,120,3,120,3789,8,120,1,121,1,121, - 1,121,1,121,1,121,1,121,3,121,3797,8,121,1,121,1,121,3,121,3801, - 8,121,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123, - 5,123,3813,8,123,10,123,12,123,3816,9,123,1,124,1,124,3,124,3820, - 8,124,1,124,3,124,3823,8,124,1,124,1,124,3,124,3827,8,124,1,124, - 3,124,3830,8,124,1,124,1,124,1,124,1,124,5,124,3836,8,124,10,124, - 12,124,3839,9,124,1,124,1,124,3,124,3843,8,124,1,124,3,124,3846, - 8,124,1,124,3,124,3849,8,124,1,125,1,125,3,125,3853,8,125,1,125, - 3,125,3856,8,125,1,125,1,125,1,125,1,125,1,125,5,125,3863,8,125, - 10,125,12,125,3866,9,125,1,125,1,125,3,125,3870,8,125,1,126,1,126, - 1,126,1,126,1,126,5,126,3877,8,126,10,126,12,126,3880,9,126,1,127, - 1,127,3,127,3884,8,127,1,128,1,128,1,128,5,128,3889,8,128,10,128, - 12,128,3892,9,128,1,129,1,129,5,129,3896,8,129,10,129,12,129,3899, - 9,129,1,129,1,129,1,129,5,129,3904,8,129,10,129,12,129,3907,9,129, - 1,129,1,129,1,129,3,129,3912,8,129,1,130,1,130,1,130,1,130,1,130, - 1,130,3,130,3920,8,130,1,130,3,130,3923,8,130,1,130,3,130,3926,8, - 130,1,130,1,130,1,130,5,130,3931,8,130,10,130,12,130,3934,9,130, - 3,130,3936,8,130,1,130,3,130,3939,8,130,1,130,1,130,1,130,1,130, - 1,130,3,130,3946,8,130,1,130,3,130,3949,8,130,1,130,1,130,3,130, - 3953,8,130,1,130,1,130,1,130,1,130,3,130,3959,8,130,1,131,1,131, - 1,131,1,131,1,132,1,132,1,132,1,132,3,132,3969,8,132,1,132,1,132, - 3,132,3973,8,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133,3,133, - 3982,8,133,1,134,3,134,3985,8,134,1,134,1,134,3,134,3989,8,134,1, - 134,1,134,5,134,3993,8,134,10,134,12,134,3996,9,134,1,134,1,134, - 1,134,5,134,4001,8,134,10,134,12,134,4004,9,134,1,134,1,134,3,134, - 4008,8,134,1,134,1,134,3,134,4012,8,134,1,134,1,134,5,134,4016,8, - 134,10,134,12,134,4019,9,134,1,134,1,134,1,134,3,134,4024,8,134, - 1,134,3,134,4027,8,134,3,134,4029,8,134,1,134,1,134,3,134,4033,8, - 134,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,4042,8,135,1, - 136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136,4052,8,136,1, - 137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,4062,8,137,1, - 138,1,138,5,138,4066,8,138,10,138,12,138,4069,9,138,1,138,1,138, - 3,138,4073,8,138,1,138,1,138,3,138,4077,8,138,1,138,3,138,4080,8, - 138,1,138,3,138,4083,8,138,1,138,3,138,4086,8,138,1,138,3,138,4089, - 8,138,1,138,1,138,5,138,4093,8,138,10,138,12,138,4096,9,138,1,138, - 1,138,1,138,3,138,4101,8,138,1,138,3,138,4104,8,138,1,138,3,138, - 4107,8,138,1,138,3,138,4110,8,138,1,138,3,138,4113,8,138,1,138,3, - 138,4116,8,138,3,138,4118,8,138,1,139,1,139,5,139,4122,8,139,10, - 139,12,139,4125,9,139,1,139,1,139,1,139,3,139,4130,8,139,1,139,3, - 139,4133,8,139,1,139,3,139,4136,8,139,1,139,3,139,4139,8,139,1,139, - 3,139,4142,8,139,1,140,1,140,3,140,4146,8,140,1,140,1,140,1,141, - 1,141,3,141,4152,8,141,1,141,1,141,3,141,4156,8,141,1,142,1,142, - 1,142,1,142,1,142,1,142,3,142,4164,8,142,1,142,1,142,3,142,4168, - 8,142,1,142,3,142,4171,8,142,3,142,4173,8,142,1,143,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,4186,8,143, - 1,143,3,143,4189,8,143,1,144,1,144,1,144,5,144,4194,8,144,10,144, - 12,144,4197,9,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145, - 4206,8,145,1,145,3,145,4209,8,145,1,145,1,145,1,145,3,145,4214,8, - 145,3,145,4216,8,145,1,145,1,145,3,145,4220,8,145,1,145,1,145,1, - 145,1,145,1,145,1,145,3,145,4228,8,145,1,146,1,146,1,146,1,146,3, - 146,4234,8,146,1,146,1,146,1,146,1,147,1,147,1,147,1,147,3,147,4243, - 8,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,3,148,4256,8,148,1,149,1,149,3,149,4260,8,149,1,149,1,149, - 5,149,4264,8,149,10,149,12,149,4267,9,149,1,150,1,150,1,150,1,150, - 1,150,1,150,3,150,4275,8,150,1,150,3,150,4278,8,150,1,150,1,150, - 3,150,4282,8,150,1,150,3,150,4285,8,150,1,150,1,150,3,150,4289,8, - 150,1,150,1,150,3,150,4293,8,150,1,150,3,150,4296,8,150,3,150,4298, - 8,150,1,151,1,151,1,151,1,151,5,151,4304,8,151,10,151,12,151,4307, - 9,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151, - 4318,8,151,1,151,1,151,4,151,4322,8,151,11,151,12,151,4323,3,151, - 4326,8,151,1,151,1,151,4,151,4330,8,151,11,151,12,151,4331,3,151, - 4334,8,151,3,151,4336,8,151,1,152,1,152,1,152,1,152,3,152,4342,8, - 152,1,152,1,152,1,152,1,152,1,152,1,152,3,152,4350,8,152,1,153,1, - 153,1,153,1,153,1,153,1,153,3,153,4358,8,153,1,154,1,154,3,154,4362, - 8,154,1,154,1,154,3,154,4366,8,154,1,155,1,155,1,155,1,155,1,155, - 5,155,4373,8,155,10,155,12,155,4376,9,155,1,155,1,155,3,155,4380, - 8,155,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,5,157,4398,8,157,10,157,12,157, - 4401,9,157,1,158,1,158,3,158,4405,8,158,1,159,1,159,1,159,1,159, - 3,159,4411,8,159,1,159,1,159,1,159,1,159,1,159,3,159,4418,8,159, - 1,160,1,160,1,160,3,160,4423,8,160,1,161,1,161,1,161,1,161,1,161, - 5,161,4430,8,161,10,161,12,161,4433,9,161,3,161,4435,8,161,1,162, - 1,162,3,162,4439,8,162,1,163,1,163,3,163,4443,8,163,1,163,1,163, - 3,163,4447,8,163,1,163,3,163,4450,8,163,1,163,3,163,4453,8,163,1, - 163,3,163,4456,8,163,1,164,1,164,3,164,4460,8,164,1,164,1,164,3, - 164,4464,8,164,1,164,3,164,4467,8,164,1,164,3,164,4470,8,164,1,164, - 3,164,4473,8,164,1,165,1,165,1,165,1,166,1,166,3,166,4480,8,166, - 1,166,1,166,3,166,4484,8,166,1,166,1,166,1,167,1,167,1,167,1,167, - 1,168,1,168,1,168,1,168,1,168,5,168,4497,8,168,10,168,12,168,4500, - 9,168,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,171,1,171, - 3,171,4512,8,171,1,171,1,171,1,171,1,171,5,171,4518,8,171,10,171, - 12,171,4521,9,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172, - 4530,8,172,1,173,1,173,3,173,4534,8,173,1,173,3,173,4537,8,173,1, - 173,1,173,1,174,1,174,3,174,4543,8,174,1,174,3,174,4546,8,174,1, - 174,3,174,4549,8,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3, - 175,4558,8,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,3,176,4567, - 8,176,1,177,1,177,1,177,1,177,1,177,1,177,5,177,4575,8,177,10,177, - 12,177,4578,9,177,1,177,3,177,4581,8,177,1,178,1,178,1,178,1,178, - 1,178,1,178,5,178,4589,8,178,10,178,12,178,4592,9,178,1,178,3,178, - 4595,8,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,5,179,4604, - 8,179,10,179,12,179,4607,9,179,1,179,3,179,4610,8,179,1,180,1,180, - 1,180,1,180,1,180,1,180,1,180,3,180,4619,8,180,1,181,1,181,1,181, - 1,181,1,181,5,181,4626,8,181,10,181,12,181,4629,9,181,3,181,4631, - 8,181,1,181,1,181,3,181,4635,8,181,1,181,5,181,4638,8,181,10,181, - 12,181,4641,9,181,1,181,3,181,4644,8,181,1,182,1,182,1,182,1,182, - 1,182,5,182,4651,8,182,10,182,12,182,4654,9,182,3,182,4656,8,182, - 1,182,3,182,4659,8,182,1,183,1,183,1,183,1,183,1,183,3,183,4666, - 8,183,1,183,1,183,1,183,1,183,3,183,4672,8,183,1,183,1,183,1,183, - 1,183,3,183,4678,8,183,1,184,1,184,1,184,1,185,1,185,1,185,1,185, - 1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, - 1,185,1,185,1,185,1,185,5,185,4702,8,185,10,185,12,185,4705,9,185, - 3,185,4707,8,185,1,185,3,185,4710,8,185,1,186,1,186,1,187,1,187, - 1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, - 1,189,1,189,3,189,4729,8,189,3,189,4731,8,189,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,5,190,4752,8,190,10,190,12,190,4755, - 9,190,3,190,4757,8,190,1,190,3,190,4760,8,190,1,191,1,191,1,192, - 1,192,1,193,1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, - 1,194,1,194,1,194,3,194,4779,8,194,3,194,4781,8,194,1,195,1,195, - 1,195,1,195,1,196,1,196,1,196,1,196,1,196,1,196,5,196,4793,8,196, - 10,196,12,196,4796,9,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,5,196,4806,8,196,10,196,12,196,4809,9,196,1,196,1,196,1,196, + 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, + 1,10,1,10,1,10,1,10,3,10,998,8,10,1,11,1,11,1,11,1,11,1,11,1,11, + 1,11,1,11,3,11,1008,8,11,1,12,1,12,1,12,3,12,1013,8,12,1,12,1,12, + 5,12,1017,8,12,10,12,12,12,1020,9,12,1,13,1,13,3,13,1024,8,13,1, + 13,1,13,3,13,1028,8,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,1037, + 8,13,1,13,3,13,1040,8,13,1,13,3,13,1043,8,13,1,13,1,13,3,13,1047, + 8,13,1,13,1,13,1,13,1,14,1,14,3,14,1054,8,14,1,14,3,14,1057,8,14, + 1,14,1,14,1,14,3,14,1062,8,14,1,14,1,14,1,14,1,14,5,14,1068,8,14, + 10,14,12,14,1071,9,14,1,14,1,14,3,14,1075,8,14,1,14,1,14,1,14,3, + 14,1080,8,14,1,14,5,14,1083,8,14,10,14,12,14,1086,9,14,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,3,15,1097,8,15,1,15,3,15,1100, + 8,15,1,15,1,15,3,15,1104,8,15,1,15,3,15,1107,8,15,1,15,1,15,3,15, + 1111,8,15,1,15,3,15,1114,8,15,1,15,1,15,3,15,1118,8,15,1,15,3,15, + 1121,8,15,1,15,3,15,1124,8,15,1,15,1,15,3,15,1128,8,15,1,15,3,15, + 1131,8,15,1,15,1,15,3,15,1135,8,15,1,15,1,15,1,16,1,16,3,16,1141, + 8,16,1,16,1,16,3,16,1145,8,16,1,16,1,16,1,16,3,16,1150,8,16,1,16, + 1,16,5,16,1154,8,16,10,16,12,16,1157,9,16,1,16,1,16,5,16,1161,8, + 16,10,16,12,16,1164,9,16,1,16,1,16,1,17,1,17,1,17,3,17,1171,8,17, + 1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, + 1,18,5,18,1187,8,18,10,18,12,18,1190,9,18,1,18,1,18,1,19,1,19,3, + 19,1196,8,19,1,19,1,19,3,19,1200,8,19,1,19,1,19,1,19,1,19,3,19,1206, + 8,19,1,19,5,19,1209,8,19,10,19,12,19,1212,9,19,3,19,1214,8,19,1, + 19,3,19,1217,8,19,1,19,1,19,3,19,1221,8,19,1,19,1,19,3,19,1225,8, + 19,1,19,1,19,3,19,1229,8,19,1,19,1,19,3,19,1233,8,19,1,19,5,19,1236, + 8,19,10,19,12,19,1239,9,19,3,19,1241,8,19,1,19,3,19,1244,8,19,1, + 19,3,19,1247,8,19,1,19,3,19,1250,8,19,1,19,1,19,1,19,1,19,3,19,1256, + 8,19,1,19,1,19,3,19,1260,8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19, + 1,19,3,19,1270,8,19,3,19,1272,8,19,1,20,1,20,3,20,1276,8,20,1,20, + 1,20,1,20,1,20,1,20,3,20,1283,8,20,1,20,1,20,3,20,1287,8,20,1,20, + 3,20,1290,8,20,1,20,1,20,1,20,3,20,1295,8,20,1,20,1,20,3,20,1299, + 8,20,1,20,3,20,1302,8,20,1,20,1,20,3,20,1306,8,20,1,20,3,20,1309, + 8,20,1,21,1,21,3,21,1313,8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,1,21,3,21,1326,8,21,1,21,3,21,1329,8,21,1,21,1,21, + 3,21,1333,8,21,1,21,3,21,1336,8,21,1,21,1,21,3,21,1340,8,21,1,21, + 3,21,1343,8,21,1,21,1,21,3,21,1347,8,21,1,21,3,21,1350,8,21,1,21, + 1,21,3,21,1354,8,21,1,21,3,21,1357,8,21,1,21,3,21,1360,8,21,1,21, + 1,21,3,21,1364,8,21,1,21,3,21,1367,8,21,1,21,1,21,3,21,1371,8,21, + 1,21,1,21,1,22,1,22,3,22,1377,8,22,1,22,1,22,3,22,1381,8,22,1,22, + 1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,3,22,1393,8,22,1,22, + 1,22,1,23,1,23,3,23,1399,8,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24, + 5,24,1408,8,24,10,24,12,24,1411,9,24,1,24,1,24,3,24,1415,8,24,1, + 24,1,24,1,24,1,24,1,24,1,24,3,24,1423,8,24,1,25,1,25,3,25,1427,8, + 25,1,25,1,25,1,25,3,25,1432,8,25,1,25,3,25,1435,8,25,1,25,1,25,1, + 25,3,25,1440,8,25,1,25,1,25,1,25,1,25,1,25,1,25,3,25,1448,8,25,1, + 25,1,25,1,25,3,25,1453,8,25,1,25,1,25,1,25,1,25,3,25,1459,8,25,1, + 25,1,25,1,25,3,25,1464,8,25,1,25,1,25,3,25,1468,8,25,3,25,1470,8, + 25,1,26,3,26,1473,8,26,1,26,1,26,3,26,1477,8,26,1,26,1,26,3,26,1481, + 8,26,1,26,3,26,1484,8,26,1,26,1,26,3,26,1488,8,26,1,26,1,26,3,26, + 1492,8,26,1,26,1,26,3,26,1496,8,26,1,26,1,26,1,26,1,26,3,26,1502, + 8,26,1,26,3,26,1505,8,26,1,27,1,27,1,27,1,27,1,27,3,27,1512,8,27, + 1,28,1,28,1,28,3,28,1517,8,28,1,29,1,29,1,29,1,29,3,29,1523,8,29, + 1,30,1,30,1,30,5,30,1528,8,30,10,30,12,30,1531,9,30,1,30,1,30,1, + 30,3,30,1536,8,30,1,30,1,30,1,30,1,30,5,30,1542,8,30,10,30,12,30, + 1545,9,30,3,30,1547,8,30,1,30,1,30,1,30,5,30,1552,8,30,10,30,12, + 30,1555,9,30,3,30,1557,8,30,3,30,1559,8,30,1,31,1,31,1,31,1,31,3, + 31,1565,8,31,1,32,1,32,1,32,1,32,3,32,1571,8,32,1,32,1,32,1,33,1, + 33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1588, + 8,33,1,34,1,34,1,34,1,34,1,34,3,34,1595,8,34,1,35,1,35,1,35,1,36, + 1,36,3,36,1602,8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,3,36,1614,8,36,1,36,1,36,1,36,3,36,1619,8,36,1,36,3,36,1622, + 8,36,1,37,3,37,1625,8,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38, + 3,38,1635,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, + 1,38,3,38,1648,8,38,1,38,1,38,1,38,3,38,1653,8,38,1,39,1,39,1,39, + 1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39,1669, + 8,39,1,40,1,40,1,40,1,40,5,40,1675,8,40,10,40,12,40,1678,9,40,1, + 40,1,40,1,41,1,41,1,41,1,41,1,41,3,41,1687,8,41,1,41,3,41,1690,8, + 41,1,41,1,41,5,41,1694,8,41,10,41,12,41,1697,9,41,1,41,1,41,3,41, + 1701,8,41,1,41,3,41,1704,8,41,1,41,1,41,5,41,1708,8,41,10,41,12, + 41,1711,9,41,1,41,3,41,1714,8,41,1,41,1,41,1,41,3,41,1719,8,41,1, + 41,1,41,5,41,1723,8,41,10,41,12,41,1726,9,41,1,41,3,41,1729,8,41, + 1,41,1,41,3,41,1733,8,41,1,41,3,41,1736,8,41,1,41,3,41,1739,8,41, + 1,41,1,41,5,41,1743,8,41,10,41,12,41,1746,9,41,1,41,3,41,1749,8, + 41,1,41,1,41,1,41,3,41,1754,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1, + 41,1,41,1,41,3,41,1765,8,41,1,42,3,42,1768,8,42,1,42,1,42,1,42,1, + 42,1,42,3,42,1775,8,42,1,42,3,42,1778,8,42,1,43,1,43,3,43,1782,8, + 43,1,44,1,44,5,44,1786,8,44,10,44,12,44,1789,9,44,1,45,1,45,1,45, + 1,45,1,45,1,45,1,45,1,45,1,45,3,45,1800,8,45,1,45,3,45,1803,8,45, + 1,45,1,45,1,45,3,45,1808,8,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45, + 1,45,1,45,1,45,1,45,3,45,1821,8,45,1,45,1,45,1,45,1,45,1,45,3,45, + 1828,8,45,1,45,1,45,1,45,1,45,3,45,1834,8,45,1,46,1,46,1,46,3,46, + 1839,8,46,1,46,1,46,3,46,1843,8,46,1,46,3,46,1846,8,46,1,47,1,47, + 1,47,1,47,1,47,1,47,3,47,1854,8,47,1,47,1,47,1,47,1,47,1,47,1,47, + 3,47,1862,8,47,3,47,1864,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, + 1,48,3,48,1874,8,48,1,49,1,49,3,49,1878,8,49,1,49,3,49,1881,8,49, + 1,49,1,49,3,49,1885,8,49,1,49,1,49,1,49,3,49,1890,8,49,1,49,1,49, + 1,49,3,49,1895,8,49,1,49,1,49,1,49,3,49,1900,8,49,1,49,1,49,3,49, + 1904,8,49,1,49,1,49,3,49,1908,8,49,1,49,1,49,3,49,1912,8,49,1,49, + 1,49,3,49,1916,8,49,1,49,1,49,3,49,1920,8,49,1,49,1,49,3,49,1924, + 8,49,1,49,1,49,1,49,3,49,1929,8,49,1,49,1,49,1,49,3,49,1934,8,49, + 1,49,1,49,1,49,3,49,1939,8,49,1,49,1,49,1,49,1,49,3,49,1945,8,49, + 1,49,1,49,1,49,3,49,1950,8,49,1,49,1,49,1,49,3,49,1955,8,49,1,49, + 1,49,1,49,3,49,1960,8,49,1,49,1,49,1,49,3,49,1965,8,49,1,49,1,49, + 1,49,3,49,1970,8,49,1,49,1,49,1,49,1,49,3,49,1976,8,49,1,49,1,49, + 1,49,3,49,1981,8,49,1,49,1,49,1,49,3,49,1986,8,49,1,49,1,49,1,49, + 3,49,1991,8,49,1,49,1,49,1,49,3,49,1996,8,49,1,49,1,49,1,49,3,49, + 2001,8,49,1,49,1,49,1,49,3,49,2006,8,49,1,49,1,49,1,49,3,49,2011, + 8,49,1,49,1,49,1,49,1,49,1,49,3,49,2018,8,49,1,49,1,49,1,49,3,49, + 2023,8,49,1,49,1,49,1,49,3,49,2028,8,49,1,49,1,49,1,49,3,49,2033, + 8,49,1,49,1,49,3,49,2037,8,49,1,49,1,49,1,49,3,49,2042,8,49,1,49, + 1,49,1,49,1,49,1,49,1,49,3,49,2050,8,49,1,49,1,49,1,49,3,49,2055, + 8,49,1,49,1,49,1,49,1,49,3,49,2061,8,49,1,50,1,50,1,51,1,51,1,51, + 1,52,1,52,1,52,1,52,1,52,3,52,2073,8,52,1,52,1,52,1,52,1,52,1,52, + 3,52,2080,8,52,3,52,2082,8,52,1,52,1,52,1,52,1,52,5,52,2088,8,52, + 10,52,12,52,2091,9,52,1,52,1,52,3,52,2095,8,52,1,53,3,53,2098,8, + 53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2106,8,53,1,53,1,53,1,53,1, + 53,3,53,2112,8,53,1,53,1,53,3,53,2116,8,53,1,53,1,53,1,53,1,53,1, + 53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2129,8,53,1,53,1,53,1,53,1, + 53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,2141,8,53,3,53,2143,8,53,1, + 54,3,54,2146,8,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2154,8,54,1, + 54,1,54,1,54,1,54,3,54,2160,8,54,1,54,1,54,1,54,1,54,3,54,2166,8, + 54,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,2177,8,55,10, + 55,12,55,2180,9,55,1,55,1,55,5,55,2184,8,55,10,55,12,55,2187,9,55, + 1,55,1,55,1,55,1,55,5,55,2193,8,55,10,55,12,55,2196,9,55,1,55,1, + 55,3,55,2200,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,2209,8, + 55,10,55,12,55,2212,9,55,1,55,1,55,1,55,1,55,5,55,2218,8,55,10,55, + 12,55,2221,9,55,1,55,1,55,3,55,2225,8,55,1,55,1,55,1,55,1,55,1,55, + 1,55,1,55,1,55,5,55,2235,8,55,10,55,12,55,2238,9,55,1,55,1,55,5, + 55,2242,8,55,10,55,12,55,2245,9,55,1,55,1,55,1,55,1,55,5,55,2251, + 8,55,10,55,12,55,2254,9,55,1,55,1,55,3,55,2258,8,55,1,55,1,55,1, + 55,1,55,1,55,1,55,1,55,1,55,5,55,2268,8,55,10,55,12,55,2271,9,55, + 1,55,1,55,5,55,2275,8,55,10,55,12,55,2278,9,55,1,55,1,55,1,55,1, + 55,5,55,2284,8,55,10,55,12,55,2287,9,55,1,55,1,55,3,55,2291,8,55, + 1,55,1,55,1,55,5,55,2296,8,55,10,55,12,55,2299,9,55,1,55,1,55,1, + 55,1,55,5,55,2305,8,55,10,55,12,55,2308,9,55,1,55,1,55,3,55,2312, + 8,55,3,55,2314,8,55,1,56,1,56,1,56,3,56,2319,8,56,1,57,1,57,1,57, + 1,57,4,57,2325,8,57,11,57,12,57,2326,1,57,1,57,1,58,1,58,1,58,5, + 58,2334,8,58,10,58,12,58,2337,9,58,1,59,3,59,2340,8,59,1,59,3,59, + 2343,8,59,1,59,1,59,3,59,2347,8,59,1,59,1,59,1,59,3,59,2352,8,59, + 1,59,1,59,1,59,1,59,3,59,2358,8,59,1,59,1,59,1,59,1,59,3,59,2364, + 8,59,1,59,1,59,1,59,3,59,2369,8,59,1,59,1,59,1,59,3,59,2374,8,59, + 1,59,1,59,1,59,3,59,2379,8,59,1,59,1,59,1,59,3,59,2384,8,59,1,59, + 3,59,2387,8,59,1,60,1,60,1,60,3,60,2392,8,60,1,60,4,60,2395,8,60, + 11,60,12,60,2396,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2407, + 8,60,1,61,1,61,3,61,2411,8,61,1,61,1,61,1,61,1,61,1,61,3,61,2418, + 8,61,1,61,1,61,1,61,3,61,2423,8,61,1,61,3,61,2426,8,61,1,61,1,61, + 1,61,3,61,2431,8,61,1,61,3,61,2434,8,61,1,61,1,61,3,61,2438,8,61, + 1,61,1,61,3,61,2442,8,61,1,62,1,62,1,62,1,62,5,62,2448,8,62,10,62, + 12,62,2451,9,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64, + 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2469,8,64,1,64,3,64,2472,8,64, + 1,64,3,64,2475,8,64,1,64,1,64,3,64,2479,8,64,1,64,1,64,1,65,1,65, + 1,65,1,65,5,65,2487,8,65,10,65,12,65,2490,9,65,1,66,1,66,1,66,1, + 66,1,66,1,66,1,66,1,66,5,66,2500,8,66,10,66,12,66,2503,9,66,1,66, + 1,66,1,67,1,67,1,67,1,67,1,67,1,67,5,67,2513,8,67,10,67,12,67,2516, + 9,67,3,67,2518,8,67,1,67,1,67,5,67,2522,8,67,10,67,12,67,2525,9, + 67,3,67,2527,8,67,1,68,1,68,3,68,2531,8,68,1,68,1,68,1,68,1,68,1, + 68,1,68,1,68,3,68,2540,8,68,1,68,3,68,2543,8,68,1,68,3,68,2546,8, + 68,1,68,1,68,1,68,3,68,2551,8,68,1,68,1,68,3,68,2555,8,68,1,68,3, + 68,2558,8,68,1,68,1,68,3,68,2562,8,68,1,68,1,68,3,68,2566,8,68,1, + 68,3,68,2569,8,68,1,68,1,68,3,68,2573,8,68,1,68,3,68,2576,8,68,1, + 68,1,68,3,68,2580,8,68,1,68,3,68,2583,8,68,1,69,1,69,1,69,1,69,3, + 69,2589,8,69,1,69,3,69,2592,8,69,1,69,1,69,1,69,3,69,2597,8,69,1, + 69,1,69,1,69,1,69,1,69,1,69,3,69,2605,8,69,1,69,1,69,1,69,1,69,3, + 69,2611,8,69,1,69,1,69,3,69,2615,8,69,1,70,1,70,3,70,2619,8,70,1, + 70,5,70,2622,8,70,10,70,12,70,2625,9,70,1,70,1,70,3,70,2629,8,70, + 1,70,1,70,1,70,1,70,1,70,3,70,2636,8,70,1,70,1,70,3,70,2640,8,70, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2649,8,70,10,70,12,70,2652, + 9,70,1,70,1,70,1,70,1,70,1,70,3,70,2659,8,70,1,70,3,70,2662,8,70, + 1,70,1,70,5,70,2666,8,70,10,70,12,70,2669,9,70,1,70,1,70,1,70,3, + 70,2674,8,70,1,70,3,70,2677,8,70,1,70,1,70,5,70,2681,8,70,10,70, + 12,70,2684,9,70,1,70,1,70,1,70,3,70,2689,8,70,3,70,2691,8,70,1,70, + 1,70,1,70,3,70,2696,8,70,1,70,1,70,5,70,2700,8,70,10,70,12,70,2703, + 9,70,1,70,1,70,1,70,3,70,2708,8,70,3,70,2710,8,70,1,70,1,70,3,70, + 2714,8,70,1,70,3,70,2717,8,70,1,70,3,70,2720,8,70,1,70,1,70,5,70, + 2724,8,70,10,70,12,70,2727,9,70,1,70,1,70,1,70,3,70,2732,8,70,3, + 70,2734,8,70,1,70,1,70,1,70,3,70,2739,8,70,1,70,1,70,1,70,1,70,1, + 70,3,70,2746,8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2755,8, + 70,1,70,3,70,2758,8,70,1,70,1,70,3,70,2762,8,70,1,70,1,70,1,70,3, + 70,2767,8,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2777,8, + 70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2786,8,70,1,70,1,70,1, + 70,1,70,1,70,1,70,3,70,2794,8,70,1,70,3,70,2797,8,70,1,70,1,70,1, + 70,1,70,1,70,1,70,3,70,2805,8,70,1,70,3,70,2808,8,70,1,70,1,70,1, + 70,1,70,1,70,3,70,2815,8,70,1,70,1,70,1,70,3,70,2820,8,70,1,70,1, + 70,1,70,1,70,1,70,1,70,3,70,2828,8,70,1,70,1,70,1,70,1,70,1,70,1, + 70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,2844,8,70,1,70,1, + 70,1,70,3,70,2849,8,70,1,70,1,70,1,70,1,70,1,70,3,70,2856,8,70,1, + 70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1, + 70,1,70,1,70,1,70,3,70,2875,8,70,1,70,1,70,1,70,1,70,3,70,2881,8, + 70,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2889,8,71,10,71,12,71,2892, + 9,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2903,8,71, + 1,71,1,71,1,71,1,71,1,71,3,71,2910,8,71,1,71,1,71,1,71,1,71,1,71, + 3,71,2917,8,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71, + 1,71,5,71,2930,8,71,10,71,12,71,2933,9,71,1,71,1,71,1,71,1,71,1, + 71,1,71,1,71,1,71,1,71,1,71,3,71,2945,8,71,1,71,1,71,1,71,1,71,3, + 71,2951,8,71,1,71,1,71,1,71,1,71,3,71,2957,8,71,1,71,1,71,1,71,1, + 71,3,71,2963,8,71,1,71,1,71,1,71,1,71,3,71,2969,8,71,1,71,1,71,1, + 71,1,71,3,71,2975,8,71,1,71,1,71,1,71,1,71,3,71,2981,8,71,1,72,1, + 72,1,72,3,72,2986,8,72,1,72,1,72,1,73,1,73,1,73,3,73,2993,8,73,1, + 73,1,73,1,74,1,74,1,74,3,74,3000,8,74,1,74,1,74,1,74,1,74,1,74,3, + 74,3007,8,74,1,74,1,74,1,74,3,74,3012,8,74,1,74,5,74,3015,8,74,10, + 74,12,74,3018,9,74,1,75,1,75,1,75,1,75,1,75,1,75,3,75,3026,8,75, + 1,75,1,75,1,76,1,76,1,76,3,76,3033,8,76,1,76,1,76,1,77,1,77,1,77, + 3,77,3040,8,77,1,77,1,77,1,78,1,78,1,78,3,78,3047,8,78,1,78,1,78, + 1,79,1,79,1,79,1,79,1,79,3,79,3056,8,79,1,79,1,79,1,80,1,80,3,80, + 3062,8,80,1,80,1,80,3,80,3066,8,80,1,80,1,80,3,80,3070,8,80,1,81, + 1,81,3,81,3074,8,81,1,81,1,81,1,81,1,81,3,81,3080,8,81,1,81,3,81, + 3083,8,81,1,82,1,82,1,82,3,82,3088,8,82,1,82,1,82,1,83,1,83,1,83, + 3,83,3095,8,83,1,83,1,83,1,83,5,83,3100,8,83,10,83,12,83,3103,9, + 83,1,83,3,83,3106,8,83,1,84,1,84,1,84,3,84,3111,8,84,1,84,1,84,1, + 85,1,85,1,85,1,85,1,85,1,85,3,85,3121,8,85,1,85,1,85,1,85,1,85,5, + 85,3127,8,85,10,85,12,85,3130,9,85,1,85,1,85,1,85,3,85,3135,8,85, + 1,86,1,86,1,86,1,86,1,86,5,86,3142,8,86,10,86,12,86,3145,9,86,1, + 87,1,87,1,87,1,87,1,88,1,88,3,88,3153,8,88,1,88,1,88,1,89,1,89,1, + 89,1,89,1,89,3,89,3162,8,89,1,89,3,89,3165,8,89,1,90,1,90,3,90,3169, + 8,90,1,91,1,91,1,91,1,92,1,92,1,92,1,92,3,92,3178,8,92,1,93,1,93, + 3,93,3182,8,93,1,93,3,93,3185,8,93,1,93,3,93,3188,8,93,1,93,1,93, + 1,93,1,93,3,93,3194,8,93,1,93,3,93,3197,8,93,1,93,3,93,3200,8,93, + 1,93,1,93,3,93,3204,8,93,1,93,3,93,3207,8,93,1,93,3,93,3210,8,93, + 1,93,3,93,3213,8,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,5,93,3222, + 8,93,10,93,12,93,3225,9,93,3,93,3227,8,93,1,94,1,94,1,94,3,94,3232, + 8,94,1,95,1,95,1,95,1,95,3,95,3238,8,95,1,96,1,96,1,96,3,96,3243, + 8,96,1,96,4,96,3246,8,96,11,96,12,96,3247,1,97,3,97,3251,8,97,1, + 97,1,97,3,97,3255,8,97,1,98,1,98,1,98,3,98,3260,8,98,1,98,3,98,3263, + 8,98,1,98,1,98,1,98,3,98,3268,8,98,1,98,1,98,1,98,1,98,1,98,1,98, + 1,98,1,98,3,98,3278,8,98,1,98,1,98,1,98,3,98,3283,8,98,1,98,1,98, + 4,98,3287,8,98,11,98,12,98,3288,3,98,3291,8,98,1,98,1,98,4,98,3295, + 8,98,11,98,12,98,3296,3,98,3299,8,98,1,98,1,98,1,98,1,98,3,98,3305, + 8,98,1,98,1,98,1,98,1,98,5,98,3311,8,98,10,98,12,98,3314,9,98,1, + 98,1,98,3,98,3318,8,98,1,98,1,98,1,98,1,98,5,98,3324,8,98,10,98, + 12,98,3327,9,98,3,98,3329,8,98,1,99,1,99,1,99,3,99,3334,8,99,1,99, + 3,99,3337,8,99,1,99,1,99,1,99,3,99,3342,8,99,1,99,1,99,1,99,1,99, + 1,99,1,99,3,99,3350,8,99,1,99,1,99,1,99,1,99,3,99,3356,8,99,1,99, + 1,99,3,99,3360,8,99,3,99,3362,8,99,1,99,1,99,1,99,1,99,3,99,3368, + 8,99,1,99,1,99,1,99,1,99,5,99,3374,8,99,10,99,12,99,3377,9,99,1, + 99,1,99,3,99,3381,8,99,1,99,1,99,1,99,1,99,5,99,3387,8,99,10,99, + 12,99,3390,9,99,3,99,3392,8,99,1,100,1,100,1,100,3,100,3397,8,100, + 1,100,3,100,3400,8,100,1,100,1,100,3,100,3404,8,100,1,100,3,100, + 3407,8,100,1,100,3,100,3410,8,100,1,101,1,101,3,101,3414,8,101,1, + 101,3,101,3417,8,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3425, + 8,101,1,101,1,101,1,101,1,101,3,101,3431,8,101,1,101,1,101,3,101, + 3435,8,101,1,102,1,102,5,102,3439,8,102,10,102,12,102,3442,9,102, + 1,102,1,102,3,102,3446,8,102,1,102,1,102,3,102,3450,8,102,3,102, + 3452,8,102,1,102,1,102,5,102,3456,8,102,10,102,12,102,3459,9,102, + 1,102,3,102,3462,8,102,1,102,3,102,3465,8,102,1,102,3,102,3468,8, + 102,1,102,3,102,3471,8,102,1,102,1,102,5,102,3475,8,102,10,102,12, + 102,3478,9,102,1,102,1,102,3,102,3482,8,102,1,102,3,102,3485,8,102, + 1,102,3,102,3488,8,102,1,102,3,102,3491,8,102,1,102,3,102,3494,8, + 102,3,102,3496,8,102,1,103,3,103,3499,8,103,1,103,1,103,3,103,3503, + 8,103,1,103,3,103,3506,8,103,1,103,3,103,3509,8,103,1,104,1,104, + 1,104,1,104,1,104,1,104,3,104,3517,8,104,1,104,1,104,1,104,1,104, + 3,104,3523,8,104,1,104,5,104,3526,8,104,10,104,12,104,3529,9,104, + 1,105,1,105,1,105,1,105,1,105,1,105,3,105,3537,8,105,1,105,5,105, + 3540,8,105,10,105,12,105,3543,9,105,1,106,1,106,1,106,1,106,3,106, + 3549,8,106,1,106,3,106,3552,8,106,1,106,3,106,3555,8,106,1,106,1, + 106,3,106,3559,8,106,1,107,1,107,3,107,3563,8,107,1,108,1,108,1, + 108,1,108,3,108,3569,8,108,1,108,1,108,3,108,3573,8,108,1,109,1, + 109,1,109,5,109,3578,8,109,10,109,12,109,3581,9,109,1,109,3,109, + 3584,8,109,1,109,3,109,3587,8,109,1,109,3,109,3590,8,109,1,110,1, + 110,1,110,3,110,3595,8,110,1,111,1,111,1,111,1,111,1,111,3,111,3602, + 8,111,1,112,1,112,1,112,1,112,1,112,1,112,5,112,3610,8,112,10,112, + 12,112,3613,9,112,1,113,1,113,1,113,1,113,5,113,3619,8,113,10,113, + 12,113,3622,9,113,1,114,1,114,1,114,1,114,1,115,1,115,3,115,3630, + 8,115,1,116,1,116,1,116,1,116,1,116,1,116,5,116,3638,8,116,10,116, + 12,116,3641,9,116,3,116,3643,8,116,1,116,1,116,3,116,3647,8,116, + 1,116,1,116,1,116,1,116,3,116,3653,8,116,1,117,1,117,3,117,3657, + 8,117,1,117,3,117,3660,8,117,1,117,3,117,3663,8,117,1,117,1,117, + 1,117,3,117,3668,8,117,1,117,3,117,3671,8,117,1,117,1,117,1,117, + 1,117,1,117,3,117,3678,8,117,1,117,1,117,3,117,3682,8,117,1,117, + 3,117,3685,8,117,1,117,1,117,3,117,3689,8,117,1,118,1,118,3,118, + 3693,8,118,1,118,3,118,3696,8,118,1,118,3,118,3699,8,118,1,118,1, + 118,1,118,3,118,3704,8,118,1,118,1,118,1,118,1,118,3,118,3710,8, + 118,5,118,3712,8,118,10,118,12,118,3715,9,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,3,118,3724,8,118,1,118,1,118,1,118,1,118, + 3,118,3730,8,118,5,118,3732,8,118,10,118,12,118,3735,9,118,1,118, + 1,118,1,118,3,118,3740,8,118,1,118,1,118,3,118,3744,8,118,1,119, + 1,119,1,119,1,119,3,119,3750,8,119,1,119,3,119,3753,8,119,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,3765, + 8,120,1,120,1,120,3,120,3769,8,120,1,120,1,120,3,120,3773,8,120, + 1,121,1,121,1,121,1,121,1,121,1,121,3,121,3781,8,121,1,121,1,121, + 3,121,3785,8,121,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123, + 1,123,1,123,5,123,3797,8,123,10,123,12,123,3800,9,123,1,124,1,124, + 3,124,3804,8,124,1,124,3,124,3807,8,124,1,124,1,124,3,124,3811,8, + 124,1,124,3,124,3814,8,124,1,124,1,124,1,124,1,124,5,124,3820,8, + 124,10,124,12,124,3823,9,124,1,124,1,124,3,124,3827,8,124,1,124, + 3,124,3830,8,124,1,124,3,124,3833,8,124,1,125,1,125,3,125,3837,8, + 125,1,125,3,125,3840,8,125,1,125,1,125,1,125,1,125,1,125,5,125,3847, + 8,125,10,125,12,125,3850,9,125,1,125,1,125,3,125,3854,8,125,1,126, + 1,126,1,126,1,126,1,126,5,126,3861,8,126,10,126,12,126,3864,9,126, + 1,127,1,127,3,127,3868,8,127,1,128,1,128,1,128,5,128,3873,8,128, + 10,128,12,128,3876,9,128,1,129,1,129,5,129,3880,8,129,10,129,12, + 129,3883,9,129,1,129,1,129,1,129,5,129,3888,8,129,10,129,12,129, + 3891,9,129,1,129,1,129,1,129,3,129,3896,8,129,1,130,1,130,1,130, + 1,130,1,130,1,130,3,130,3904,8,130,1,130,3,130,3907,8,130,1,130, + 3,130,3910,8,130,1,130,1,130,1,130,5,130,3915,8,130,10,130,12,130, + 3918,9,130,3,130,3920,8,130,1,130,3,130,3923,8,130,1,130,1,130,1, + 130,1,130,1,130,3,130,3930,8,130,1,130,3,130,3933,8,130,1,130,1, + 130,3,130,3937,8,130,1,130,1,130,1,130,1,130,3,130,3943,8,130,1, + 131,1,131,1,131,1,131,1,132,1,132,1,132,1,132,3,132,3953,8,132,1, + 132,1,132,3,132,3957,8,132,1,132,1,132,1,133,1,133,1,133,1,133,1, + 133,3,133,3966,8,133,1,134,3,134,3969,8,134,1,134,1,134,3,134,3973, + 8,134,1,134,1,134,5,134,3977,8,134,10,134,12,134,3980,9,134,1,134, + 1,134,1,134,5,134,3985,8,134,10,134,12,134,3988,9,134,1,134,1,134, + 3,134,3992,8,134,1,134,1,134,3,134,3996,8,134,1,134,1,134,5,134, + 4000,8,134,10,134,12,134,4003,9,134,1,134,1,134,1,134,3,134,4008, + 8,134,1,134,3,134,4011,8,134,3,134,4013,8,134,1,134,1,134,3,134, + 4017,8,134,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,4026, + 8,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136,4036, + 8,136,1,137,1,137,5,137,4040,8,137,10,137,12,137,4043,9,137,1,137, + 1,137,3,137,4047,8,137,1,137,1,137,3,137,4051,8,137,1,137,3,137, + 4054,8,137,1,137,3,137,4057,8,137,1,137,3,137,4060,8,137,1,137,3, + 137,4063,8,137,1,137,3,137,4066,8,137,1,138,1,138,3,138,4070,8,138, + 1,138,1,138,3,138,4074,8,138,1,139,1,139,1,139,1,139,1,139,1,139, + 3,139,4082,8,139,1,139,1,139,3,139,4086,8,139,1,139,3,139,4089,8, + 139,3,139,4091,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1, + 140,1,140,1,140,1,140,3,140,4104,8,140,1,140,3,140,4107,8,140,1, + 141,1,141,1,141,5,141,4112,8,141,10,141,12,141,4115,9,141,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,3,142,4124,8,142,1,142,3,142, + 4127,8,142,1,142,1,142,1,142,3,142,4132,8,142,3,142,4134,8,142,1, + 142,1,142,3,142,4138,8,142,1,142,1,142,1,142,1,142,1,142,1,142,3, + 142,4146,8,142,1,143,1,143,1,143,1,143,3,143,4152,8,143,1,143,1, + 143,1,143,1,144,1,144,1,144,1,144,3,144,4161,8,144,1,144,1,144,1, + 144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,4174,8, + 145,1,146,1,146,3,146,4178,8,146,1,146,1,146,5,146,4182,8,146,10, + 146,12,146,4185,9,146,1,147,1,147,3,147,4189,8,147,1,147,1,147,3, + 147,4193,8,147,1,147,3,147,4196,8,147,1,147,1,147,3,147,4200,8,147, + 1,147,3,147,4203,8,147,1,147,1,147,1,147,1,147,1,147,1,147,3,147, + 4211,8,147,1,147,3,147,4214,8,147,3,147,4216,8,147,1,148,1,148,1, + 148,1,148,5,148,4222,8,148,10,148,12,148,4225,9,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,3,148,4236,8,148,1,148, + 1,148,4,148,4240,8,148,11,148,12,148,4241,3,148,4244,8,148,1,148, + 1,148,4,148,4248,8,148,11,148,12,148,4249,3,148,4252,8,148,3,148, + 4254,8,148,1,149,1,149,1,149,1,149,3,149,4260,8,149,1,149,1,149, + 1,149,1,149,1,149,1,149,3,149,4268,8,149,1,150,1,150,1,150,1,150, + 1,150,1,150,3,150,4276,8,150,1,151,1,151,3,151,4280,8,151,1,151, + 1,151,3,151,4284,8,151,1,152,1,152,1,152,1,152,1,152,5,152,4291, + 8,152,10,152,12,152,4294,9,152,1,152,1,152,3,152,4298,8,152,1,153, + 1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154, + 1,154,1,154,1,154,1,154,5,154,4316,8,154,10,154,12,154,4319,9,154, + 1,155,1,155,3,155,4323,8,155,1,156,1,156,1,156,1,156,3,156,4329, + 8,156,1,156,1,156,1,156,1,156,1,156,3,156,4336,8,156,1,157,1,157, + 1,157,3,157,4341,8,157,1,158,1,158,1,158,1,158,1,158,5,158,4348, + 8,158,10,158,12,158,4351,9,158,3,158,4353,8,158,1,159,1,159,3,159, + 4357,8,159,1,160,1,160,3,160,4361,8,160,1,160,1,160,3,160,4365,8, + 160,1,160,3,160,4368,8,160,1,160,3,160,4371,8,160,1,160,3,160,4374, + 8,160,1,161,1,161,3,161,4378,8,161,1,161,1,161,3,161,4382,8,161, + 1,161,3,161,4385,8,161,1,161,3,161,4388,8,161,1,161,3,161,4391,8, + 161,1,162,1,162,1,162,1,163,1,163,3,163,4398,8,163,1,163,1,163,3, + 163,4402,8,163,1,163,1,163,1,164,1,164,1,164,1,164,1,165,1,165,1, + 165,1,165,1,165,5,165,4415,8,165,10,165,12,165,4418,9,165,1,166, + 1,166,1,166,1,167,1,167,1,167,1,167,1,167,1,168,1,168,3,168,4430, + 8,168,1,168,1,168,1,168,1,168,5,168,4436,8,168,10,168,12,168,4439, + 9,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,3,169,4448,8,169, + 1,170,1,170,3,170,4452,8,170,1,170,3,170,4455,8,170,1,170,1,170, + 1,171,1,171,3,171,4461,8,171,1,171,3,171,4464,8,171,1,171,3,171, + 4467,8,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172,4476, + 8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,3,173,4485,8,173, + 1,174,1,174,1,174,1,174,1,174,1,174,5,174,4493,8,174,10,174,12,174, + 4496,9,174,1,174,3,174,4499,8,174,1,175,1,175,1,175,1,175,1,175, + 1,175,5,175,4507,8,175,10,175,12,175,4510,9,175,1,175,3,175,4513, + 8,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,5,176,4522,8,176, + 10,176,12,176,4525,9,176,1,176,3,176,4528,8,176,1,177,1,177,1,177, + 1,177,1,177,1,177,1,177,3,177,4537,8,177,1,178,1,178,1,178,1,178, + 1,178,5,178,4544,8,178,10,178,12,178,4547,9,178,3,178,4549,8,178, + 1,178,1,178,3,178,4553,8,178,1,178,5,178,4556,8,178,10,178,12,178, + 4559,9,178,1,178,3,178,4562,8,178,1,179,1,179,1,179,1,179,1,179, + 5,179,4569,8,179,10,179,12,179,4572,9,179,3,179,4574,8,179,1,179, + 3,179,4577,8,179,1,180,1,180,1,180,1,180,1,180,3,180,4584,8,180, + 1,180,1,180,1,180,1,180,3,180,4590,8,180,1,180,1,180,1,180,1,180, + 3,180,4596,8,180,1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,5,182,4620,8,182,10,182,12,182,4623,9,182,3,182, + 4625,8,182,1,182,3,182,4628,8,182,1,183,1,183,1,184,1,184,1,185, + 1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186, + 1,186,3,186,4647,8,186,3,186,4649,8,186,1,187,1,187,1,187,1,187, + 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187, + 1,187,1,187,1,187,1,187,5,187,4670,8,187,10,187,12,187,4673,9,187, + 3,187,4675,8,187,1,187,3,187,4678,8,187,1,188,1,188,1,189,1,189, + 1,190,1,190,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191, + 1,191,1,191,3,191,4697,8,191,3,191,4699,8,191,1,192,1,192,1,192, + 1,192,1,193,1,193,1,193,1,193,1,193,1,193,5,193,4711,8,193,10,193, + 12,193,4714,9,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, + 5,193,4724,8,193,10,193,12,193,4727,9,193,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,1,193,5,193,4761,8,193,10,193,12,193, + 4764,9,193,1,193,1,193,3,193,4768,8,193,1,194,1,194,1,194,1,194, + 1,194,1,194,1,195,1,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196, 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,5,196,4843,8,196,10,196, - 12,196,4846,9,196,1,196,1,196,3,196,4850,8,196,1,197,1,197,1,197, - 1,197,1,197,1,197,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,3,199,4885,8,199, - 1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200, - 1,200,3,200,4899,8,200,1,201,1,201,1,201,5,201,4904,8,201,10,201, - 12,201,4907,9,201,1,201,3,201,4910,8,201,1,202,1,202,1,202,1,202, - 3,202,4916,8,202,1,203,1,203,1,203,1,203,1,203,1,203,3,203,4924, - 8,203,3,203,4926,8,203,1,204,1,204,1,204,1,204,1,205,1,205,1,205, - 1,205,1,205,3,205,4937,8,205,1,206,1,206,1,206,1,206,1,207,1,207, - 1,207,1,207,3,207,4947,8,207,1,208,1,208,1,208,1,208,1,208,3,208, - 4954,8,208,1,209,1,209,1,209,1,209,3,209,4960,8,209,1,210,1,210, - 1,210,1,210,1,211,1,211,3,211,4968,8,211,1,212,1,212,1,212,3,212, - 4973,8,212,1,212,1,212,1,212,1,212,5,212,4979,8,212,10,212,12,212, - 4982,9,212,1,212,1,212,1,212,5,212,4987,8,212,10,212,12,212,4990, - 9,212,1,212,1,212,1,212,5,212,4995,8,212,10,212,12,212,4998,9,212, - 1,212,1,212,1,212,5,212,5003,8,212,10,212,12,212,5006,9,212,1,212, - 5,212,5009,8,212,10,212,12,212,5012,9,212,1,212,1,212,3,212,5016, - 8,212,1,213,1,213,1,213,3,213,5021,8,213,1,213,4,213,5024,8,213, - 11,213,12,213,5025,1,213,1,213,4,213,5030,8,213,11,213,12,213,5031, - 3,213,5034,8,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,4,214, - 5043,8,214,11,214,12,214,5044,1,214,5,214,5048,8,214,10,214,12,214, - 5051,9,214,1,214,1,214,4,214,5055,8,214,11,214,12,214,5056,3,214, - 5059,8,214,1,214,1,214,1,214,1,215,1,215,1,215,1,216,1,216,1,216, - 1,217,1,217,1,217,3,217,5073,8,217,1,217,1,217,4,217,5077,8,217, - 11,217,12,217,5078,1,217,1,217,1,217,3,217,5084,8,217,1,218,1,218, - 1,218,3,218,5089,8,218,1,218,1,218,4,218,5093,8,218,11,218,12,218, - 5094,1,218,1,218,1,218,1,218,1,218,3,218,5102,8,218,1,219,1,219, - 1,219,1,220,1,220,1,220,3,220,5110,8,220,1,220,1,220,1,220,1,220, - 4,220,5116,8,220,11,220,12,220,5117,1,220,1,220,1,220,3,220,5123, - 8,220,1,221,1,221,1,221,1,221,3,221,5129,8,221,1,221,3,221,5132, - 8,221,1,221,1,221,1,221,1,221,1,221,1,221,3,221,5140,8,221,1,222, - 1,222,1,222,1,222,1,222,3,222,5147,8,222,1,223,1,223,1,223,1,223, - 1,223,1,223,1,223,3,223,5156,8,223,1,223,3,223,5159,8,223,1,224, - 1,224,1,224,1,224,1,224,1,224,1,225,1,225,1,225,1,225,1,225,1,225, - 1,225,5,225,5174,8,225,10,225,12,225,5177,9,225,1,225,1,225,1,226, - 1,226,1,226,3,226,5184,8,226,1,226,1,226,1,226,1,226,1,226,1,226, - 3,226,5192,8,226,1,227,1,227,3,227,5196,8,227,1,227,1,227,1,228, - 1,228,1,228,3,228,5203,8,228,1,228,1,228,4,228,5207,8,228,11,228, - 12,228,5208,1,229,1,229,1,229,1,229,4,229,5215,8,229,11,229,12,229, - 5216,1,230,1,230,1,230,3,230,5222,8,230,1,230,1,230,1,230,5,230, - 5227,8,230,10,230,12,230,5230,9,230,1,230,1,230,1,230,5,230,5235, - 8,230,10,230,12,230,5238,9,230,1,230,1,230,1,230,1,230,3,230,5244, - 8,230,1,230,5,230,5247,8,230,10,230,12,230,5250,9,230,3,230,5252, - 8,230,3,230,5254,8,230,1,230,1,230,4,230,5258,8,230,11,230,12,230, - 5259,3,230,5262,8,230,1,230,1,230,5,230,5266,8,230,10,230,12,230, - 5269,9,230,1,230,1,230,3,230,5273,8,230,1,230,1,230,1,230,1,230, - 1,230,3,230,5280,8,230,1,231,1,231,1,231,3,231,5285,8,231,1,231, - 1,231,3,231,5289,8,231,1,231,1,231,1,231,3,231,5294,8,231,5,231, - 5296,8,231,10,231,12,231,5299,9,231,1,231,1,231,1,231,3,231,5304, - 8,231,1,231,1,231,1,231,1,231,3,231,5310,8,231,1,231,5,231,5313, - 8,231,10,231,12,231,5316,9,231,3,231,5318,8,231,3,231,5320,8,231, - 1,231,1,231,4,231,5324,8,231,11,231,12,231,5325,3,231,5328,8,231, - 1,231,1,231,5,231,5332,8,231,10,231,12,231,5335,9,231,1,231,1,231, - 3,231,5339,8,231,1,232,1,232,1,232,3,232,5344,8,232,1,232,1,232, - 1,232,5,232,5349,8,232,10,232,12,232,5352,9,232,1,233,1,233,1,233, - 1,233,5,233,5358,8,233,10,233,12,233,5361,9,233,1,233,1,233,3,233, - 5365,8,233,1,233,1,233,1,233,1,233,1,233,5,233,5372,8,233,10,233, - 12,233,5375,9,233,1,233,3,233,5378,8,233,1,233,1,233,1,233,1,233, - 3,233,5384,8,233,1,233,5,233,5387,8,233,10,233,12,233,5390,9,233, - 3,233,5392,8,233,3,233,5394,8,233,1,233,1,233,1,233,1,233,5,233, - 5400,8,233,10,233,12,233,5403,9,233,3,233,5405,8,233,1,233,1,233, - 1,233,1,233,1,233,3,233,5412,8,233,3,233,5414,8,233,1,233,1,233, - 1,233,3,233,5419,8,233,1,233,1,233,1,233,5,233,5424,8,233,10,233, - 12,233,5427,9,233,1,233,1,233,1,233,1,233,5,233,5433,8,233,10,233, - 12,233,5436,9,233,1,233,1,233,1,233,3,233,5441,8,233,3,233,5443, - 8,233,1,234,1,234,1,234,1,234,1,234,3,234,5450,8,234,1,234,3,234, - 5453,8,234,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,5,235, - 5463,8,235,10,235,12,235,5466,9,235,1,235,1,235,1,235,3,235,5471, - 8,235,1,236,1,236,1,236,1,236,1,236,1,236,3,236,5479,8,236,1,236, - 3,236,5482,8,236,1,236,1,236,3,236,5486,8,236,1,236,3,236,5489,8, - 236,1,236,1,236,3,236,5493,8,236,3,236,5495,8,236,1,237,1,237,1, - 237,1,237,1,237,1,237,1,237,1,237,1,237,3,237,5506,8,237,1,237,3, - 237,5509,8,237,1,237,1,237,3,237,5513,8,237,1,237,3,237,5516,8,237, - 1,237,3,237,5519,8,237,1,238,1,238,1,238,1,238,1,238,3,238,5526, - 8,238,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,5,239,5536, - 8,239,10,239,12,239,5539,9,239,3,239,5541,8,239,1,240,1,240,1,240, - 1,240,1,240,3,240,5548,8,240,1,240,1,240,5,240,5552,8,240,10,240, - 12,240,5555,9,240,1,241,1,241,1,241,1,241,1,241,5,241,5562,8,241, - 10,241,12,241,5565,9,241,1,242,1,242,3,242,5569,8,242,1,242,1,242, - 1,242,5,242,5574,8,242,10,242,12,242,5577,9,242,1,242,1,242,3,242, - 5581,8,242,1,242,1,242,1,242,1,242,3,242,5587,8,242,1,242,1,242, - 3,242,5591,8,242,1,242,1,242,3,242,5595,8,242,1,242,1,242,1,242, - 1,242,1,242,1,242,3,242,5603,8,242,1,242,1,242,3,242,5607,8,242, - 1,242,1,242,3,242,5611,8,242,1,242,1,242,1,242,1,242,3,242,5617, - 8,242,3,242,5619,8,242,1,243,1,243,1,243,1,243,1,244,1,244,1,245, - 1,245,1,245,1,245,3,245,5631,8,245,1,245,1,245,1,245,3,245,5636, - 8,245,1,245,1,245,1,245,1,245,3,245,5642,8,245,1,245,1,245,1,245, - 1,245,3,245,5648,8,245,1,245,1,245,3,245,5652,8,245,1,245,1,245, - 1,245,3,245,5657,8,245,3,245,5659,8,245,1,246,1,246,1,246,1,247, + 1,196,1,196,1,196,1,196,1,196,1,196,1,196,3,196,4803,8,196,1,197, + 1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197, + 3,197,4817,8,197,1,198,1,198,1,198,5,198,4822,8,198,10,198,12,198, + 4825,9,198,1,198,3,198,4828,8,198,1,199,1,199,1,199,1,199,3,199, + 4834,8,199,1,200,1,200,1,200,1,200,1,200,1,200,3,200,4842,8,200, + 3,200,4844,8,200,1,201,1,201,1,201,1,201,1,202,1,202,1,202,1,202, + 1,202,3,202,4855,8,202,1,203,1,203,1,203,1,203,1,204,1,204,1,204, + 1,204,3,204,4865,8,204,1,205,1,205,1,205,1,205,1,205,3,205,4872, + 8,205,1,206,1,206,1,206,1,206,3,206,4878,8,206,1,207,1,207,1,207, + 1,207,1,208,1,208,3,208,4886,8,208,1,209,1,209,1,209,3,209,4891, + 8,209,1,209,1,209,1,209,1,209,5,209,4897,8,209,10,209,12,209,4900, + 9,209,1,209,1,209,1,209,5,209,4905,8,209,10,209,12,209,4908,9,209, + 1,209,1,209,1,209,5,209,4913,8,209,10,209,12,209,4916,9,209,1,209, + 1,209,1,209,5,209,4921,8,209,10,209,12,209,4924,9,209,1,209,5,209, + 4927,8,209,10,209,12,209,4930,9,209,1,209,1,209,3,209,4934,8,209, + 1,210,1,210,1,210,3,210,4939,8,210,1,210,4,210,4942,8,210,11,210, + 12,210,4943,1,210,1,210,4,210,4948,8,210,11,210,12,210,4949,3,210, + 4952,8,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211,4,211,4961, + 8,211,11,211,12,211,4962,1,211,5,211,4966,8,211,10,211,12,211,4969, + 9,211,1,211,1,211,4,211,4973,8,211,11,211,12,211,4974,3,211,4977, + 8,211,1,211,1,211,1,211,1,212,1,212,1,212,1,213,1,213,1,213,1,214, + 1,214,1,214,3,214,4991,8,214,1,214,1,214,4,214,4995,8,214,11,214, + 12,214,4996,1,214,1,214,1,214,3,214,5002,8,214,1,215,1,215,1,215, + 3,215,5007,8,215,1,215,1,215,4,215,5011,8,215,11,215,12,215,5012, + 1,215,1,215,1,215,1,215,1,215,3,215,5020,8,215,1,216,1,216,1,216, + 1,217,1,217,1,217,3,217,5028,8,217,1,217,1,217,1,217,1,217,4,217, + 5034,8,217,11,217,12,217,5035,1,217,1,217,1,217,3,217,5041,8,217, + 1,218,1,218,1,218,1,218,3,218,5047,8,218,1,218,3,218,5050,8,218, + 1,218,1,218,1,218,1,218,1,218,1,218,3,218,5058,8,218,1,219,1,219, + 1,219,1,219,1,219,3,219,5065,8,219,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,3,220,5074,8,220,1,220,3,220,5077,8,220,1,221,1,221, + 1,221,1,221,1,221,1,221,1,222,1,222,1,222,1,222,1,222,1,222,1,222, + 5,222,5092,8,222,10,222,12,222,5095,9,222,1,222,1,222,1,223,1,223, + 1,223,3,223,5102,8,223,1,223,1,223,1,223,1,223,1,223,1,223,3,223, + 5110,8,223,1,224,1,224,3,224,5114,8,224,1,224,1,224,1,225,1,225, + 1,225,3,225,5121,8,225,1,225,1,225,4,225,5125,8,225,11,225,12,225, + 5126,1,226,1,226,1,226,1,226,4,226,5133,8,226,11,226,12,226,5134, + 1,227,1,227,1,227,3,227,5140,8,227,1,227,1,227,1,227,5,227,5145, + 8,227,10,227,12,227,5148,9,227,1,227,1,227,1,227,5,227,5153,8,227, + 10,227,12,227,5156,9,227,1,227,1,227,1,227,1,227,3,227,5162,8,227, + 1,227,5,227,5165,8,227,10,227,12,227,5168,9,227,3,227,5170,8,227, + 3,227,5172,8,227,1,227,1,227,4,227,5176,8,227,11,227,12,227,5177, + 3,227,5180,8,227,1,227,1,227,5,227,5184,8,227,10,227,12,227,5187, + 9,227,1,227,1,227,3,227,5191,8,227,1,227,1,227,1,227,1,227,1,227, + 3,227,5198,8,227,1,228,1,228,1,228,3,228,5203,8,228,1,228,1,228, + 3,228,5207,8,228,1,228,1,228,1,228,3,228,5212,8,228,5,228,5214,8, + 228,10,228,12,228,5217,9,228,1,228,1,228,1,228,3,228,5222,8,228, + 1,228,1,228,1,228,1,228,3,228,5228,8,228,1,228,5,228,5231,8,228, + 10,228,12,228,5234,9,228,3,228,5236,8,228,3,228,5238,8,228,1,228, + 1,228,4,228,5242,8,228,11,228,12,228,5243,3,228,5246,8,228,1,228, + 1,228,5,228,5250,8,228,10,228,12,228,5253,9,228,1,228,1,228,3,228, + 5257,8,228,1,229,1,229,1,229,3,229,5262,8,229,1,229,1,229,1,229, + 5,229,5267,8,229,10,229,12,229,5270,9,229,1,230,1,230,1,230,1,230, + 5,230,5276,8,230,10,230,12,230,5279,9,230,1,230,1,230,3,230,5283, + 8,230,1,230,1,230,1,230,1,230,1,230,5,230,5290,8,230,10,230,12,230, + 5293,9,230,1,230,3,230,5296,8,230,1,230,1,230,1,230,1,230,3,230, + 5302,8,230,1,230,5,230,5305,8,230,10,230,12,230,5308,9,230,3,230, + 5310,8,230,3,230,5312,8,230,1,230,1,230,1,230,1,230,5,230,5318,8, + 230,10,230,12,230,5321,9,230,3,230,5323,8,230,1,230,1,230,1,230, + 1,230,1,230,3,230,5330,8,230,3,230,5332,8,230,1,230,1,230,1,230, + 3,230,5337,8,230,1,230,1,230,1,230,5,230,5342,8,230,10,230,12,230, + 5345,9,230,1,230,1,230,1,230,1,230,5,230,5351,8,230,10,230,12,230, + 5354,9,230,1,230,1,230,1,230,3,230,5359,8,230,3,230,5361,8,230,1, + 231,1,231,1,231,1,231,1,231,3,231,5368,8,231,1,231,3,231,5371,8, + 231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,5,232,5381,8, + 232,10,232,12,232,5384,9,232,1,232,1,232,1,232,3,232,5389,8,232, + 1,233,1,233,1,233,1,233,1,233,1,233,3,233,5397,8,233,1,233,3,233, + 5400,8,233,1,233,1,233,3,233,5404,8,233,1,233,3,233,5407,8,233,1, + 233,1,233,3,233,5411,8,233,3,233,5413,8,233,1,234,1,234,1,234,1, + 234,1,234,1,234,1,234,1,234,1,234,3,234,5424,8,234,1,234,3,234,5427, + 8,234,1,234,1,234,3,234,5431,8,234,1,234,3,234,5434,8,234,1,234, + 3,234,5437,8,234,1,235,1,235,1,235,1,235,1,235,3,235,5444,8,235, + 1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,5,236,5454,8,236, + 10,236,12,236,5457,9,236,3,236,5459,8,236,1,237,1,237,1,237,1,237, + 1,237,3,237,5466,8,237,1,237,1,237,5,237,5470,8,237,10,237,12,237, + 5473,9,237,1,238,1,238,1,238,1,238,1,238,5,238,5480,8,238,10,238, + 12,238,5483,9,238,1,239,1,239,3,239,5487,8,239,1,239,1,239,1,239, + 5,239,5492,8,239,10,239,12,239,5495,9,239,1,239,1,239,3,239,5499, + 8,239,1,239,1,239,1,239,1,239,3,239,5505,8,239,1,239,1,239,3,239, + 5509,8,239,1,239,1,239,3,239,5513,8,239,1,239,1,239,1,239,1,239, + 1,239,1,239,3,239,5521,8,239,1,239,1,239,3,239,5525,8,239,1,239, + 1,239,3,239,5529,8,239,1,239,1,239,1,239,1,239,3,239,5535,8,239, + 3,239,5537,8,239,1,240,1,240,1,240,1,240,1,241,1,241,1,242,1,242, + 1,242,1,242,3,242,5549,8,242,1,242,1,242,1,242,3,242,5554,8,242, + 1,242,1,242,1,242,1,242,3,242,5560,8,242,1,242,1,242,1,242,1,242, + 3,242,5566,8,242,1,242,1,242,3,242,5570,8,242,1,242,1,242,1,242, + 3,242,5575,8,242,3,242,5577,8,242,1,243,1,243,1,243,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,3,244,5601,8,244,4,244,5603, + 8,244,11,244,12,244,5604,1,244,3,244,5608,8,244,1,245,1,245,1,245, + 1,245,1,245,1,245,1,245,3,245,5617,8,245,1,245,1,245,3,245,5621, + 8,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,3,245,5630,8,245, + 1,245,1,245,3,245,5634,8,245,1,245,1,245,3,245,5638,8,245,1,245, + 1,245,1,245,1,245,3,245,5644,8,245,3,245,5646,8,245,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,3,246,5655,8,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,3,246,5665,8,246,1,247,1,247,1,247, 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,3,247,5691,8,247,4,247,5693,8,247,11,247, - 12,247,5694,1,247,1,247,3,247,5699,8,247,1,247,3,247,5702,8,247, - 1,248,1,248,1,248,1,248,1,248,1,248,1,248,3,248,5711,8,248,1,248, - 1,248,3,248,5715,8,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248, - 3,248,5724,8,248,1,248,1,248,3,248,5728,8,248,1,248,1,248,3,248, - 5732,8,248,1,248,1,248,1,248,1,248,3,248,5738,8,248,3,248,5740,8, - 248,1,249,1,249,1,249,1,249,1,249,1,249,1,249,3,249,5749,8,249,1, - 249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,3,249,5759,8,249,1, - 250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,250,1,250,3,250,5786,8,250,1,251,1,251,3,251,5790,8,251, - 1,251,1,251,1,251,3,251,5795,8,251,1,252,1,252,1,252,1,252,1,252, - 3,252,5802,8,252,1,252,3,252,5805,8,252,1,252,1,252,1,252,1,252, - 3,252,5811,8,252,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253, - 3,253,5821,8,253,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254, - 3,254,5831,8,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 3,255,5841,8,255,1,255,1,255,1,255,1,255,3,255,5847,8,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,3,255,5856,8,255,1,255,1,255, - 1,255,1,255,3,255,5862,8,255,1,255,1,255,1,255,1,255,1,255,3,255, - 5869,8,255,3,255,5871,8,255,1,256,1,256,1,256,1,257,1,257,1,257, - 3,257,5879,8,257,1,257,1,257,1,257,1,257,3,257,5885,8,257,1,257, - 1,257,3,257,5889,8,257,1,258,1,258,1,258,1,258,1,258,1,258,1,258, - 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5906,8,258, - 1,259,1,259,1,259,1,260,1,260,1,260,1,260,1,260,3,260,5916,8,260, - 1,261,1,261,3,261,5920,8,261,1,261,1,261,3,261,5924,8,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,5934,8,261,1,261, - 1,261,1,261,3,261,5939,8,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,6011, - 8,261,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262, - 1,262,1,262,1,262,1,262,1,262,1,262,3,262,6029,8,262,1,263,1,263, - 1,263,1,263,1,264,1,264,3,264,6037,8,264,1,264,1,264,1,264,1,264, - 3,264,6043,8,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264, - 1,264,1,264,3,264,6055,8,264,1,264,1,264,3,264,6059,8,264,1,264, - 1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,3,264,6070,8,264, - 1,264,1,264,3,264,6074,8,264,1,264,1,264,1,264,1,264,1,264,1,264, - 1,264,3,264,6083,8,264,1,265,1,265,1,265,1,265,5,265,6089,8,265, - 10,265,12,265,6092,9,265,1,266,1,266,1,266,1,266,3,266,6098,8,266, - 1,267,1,267,3,267,6102,8,267,1,267,1,267,1,267,1,268,1,268,3,268, - 6109,8,268,1,268,1,268,1,268,3,268,6114,8,268,1,268,3,268,6117,8, - 268,1,268,3,268,6120,8,268,1,269,1,269,1,270,1,270,1,270,1,270,1, - 270,1,270,1,270,3,270,6131,8,270,1,271,1,271,3,271,6135,8,271,1, - 271,1,271,3,271,6139,8,271,1,271,1,271,1,271,1,271,1,271,1,271,1, - 272,1,272,1,272,1,272,1,272,5,272,6152,8,272,10,272,12,272,6155, - 9,272,1,272,1,272,1,272,1,272,5,272,6161,8,272,10,272,12,272,6164, - 9,272,3,272,6166,8,272,1,273,1,273,1,273,1,273,1,273,1,274,1,274, - 1,274,1,274,1,274,5,274,6178,8,274,10,274,12,274,6181,9,274,1,275, - 1,275,1,275,1,275,1,275,1,275,1,276,1,276,1,276,1,276,1,277,1,277, - 1,277,1,277,1,277,3,277,6198,8,277,1,277,1,277,1,277,1,277,1,277, - 1,277,1,277,1,277,1,277,1,277,1,277,3,277,6211,8,277,1,277,3,277, - 6214,8,277,1,277,1,277,3,277,6218,8,277,1,277,3,277,6221,8,277,3, - 277,6223,8,277,1,278,1,278,1,278,1,278,1,278,3,278,6230,8,278,1, - 278,1,278,1,278,1,278,1,278,3,278,6237,8,278,5,278,6239,8,278,10, - 278,12,278,6242,9,278,1,278,1,278,1,278,1,278,3,278,6248,8,278,1, - 278,1,278,1,278,1,278,1,278,3,278,6255,8,278,1,278,3,278,6258,8, - 278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,5,278,6272,8,278,10,278,12,278,6275,9,278,3,278,6277, - 8,278,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,3,279,6287, - 8,279,1,279,1,279,3,279,6291,8,279,1,279,1,279,1,279,1,279,3,279, - 6297,8,279,1,279,3,279,6300,8,279,1,279,3,279,6303,8,279,1,279,1, - 279,1,279,3,279,6308,8,279,1,279,1,279,3,279,6312,8,279,1,279,3, - 279,6315,8,279,1,279,1,279,1,279,1,279,1,279,3,279,6322,8,279,1, - 279,3,279,6325,8,279,1,279,1,279,1,279,1,279,3,279,6331,8,279,1, - 279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279, - 1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279, - 1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279, - 1,279,3,279,6367,8,279,1,279,3,279,6370,8,279,1,279,1,279,1,279, - 1,279,1,279,1,279,1,279,1,279,1,279,1,279,3,279,6382,8,279,1,279, - 3,279,6385,8,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279,1,279, - 1,279,1,279,1,279,1,279,1,279,1,279,3,279,6401,8,279,3,279,6403, - 8,279,1,279,1,279,3,279,6407,8,279,1,279,1,279,1,279,1,279,1,279, - 3,279,6414,8,279,1,279,1,279,3,279,6418,8,279,1,279,1,279,1,279, - 1,279,1,279,3,279,6425,8,279,1,279,3,279,6428,8,279,1,279,1,279, - 1,279,1,279,1,279,5,279,6435,8,279,10,279,12,279,6438,9,279,3,279, - 6440,8,279,1,279,1,279,1,279,3,279,6445,8,279,1,279,1,279,1,279, - 1,279,3,279,6451,8,279,3,279,6453,8,279,1,279,1,279,1,279,1,279, - 3,279,6459,8,279,1,279,1,279,3,279,6463,8,279,1,280,1,280,1,280, - 1,280,3,280,6469,8,280,1,280,3,280,6472,8,280,1,280,3,280,6475,8, - 280,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281, - 1,281,3,281,6488,8,281,1,281,3,281,6491,8,281,1,282,1,282,1,282, - 1,282,3,282,6497,8,282,1,283,3,283,6500,8,283,1,283,1,283,1,283, - 1,283,1,283,1,283,3,283,6508,8,283,1,283,1,283,1,283,1,283,1,283, - 1,283,3,283,6516,8,283,1,284,1,284,1,284,1,284,3,284,6522,8,284, - 1,284,3,284,6525,8,284,1,284,1,284,3,284,6529,8,284,1,285,1,285, - 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285, - 6543,8,285,1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,287,5,287, - 6553,8,287,10,287,12,287,6556,9,287,1,287,1,287,1,287,1,287,1,287, - 3,287,6563,8,287,1,287,1,287,3,287,6567,8,287,1,287,1,287,1,287, - 1,288,1,288,3,288,6574,8,288,1,288,1,288,1,288,5,288,6579,8,288, - 10,288,12,288,6582,9,288,1,289,1,289,3,289,6586,8,289,1,289,1,289, - 1,290,1,290,1,290,1,290,1,290,1,290,1,290,5,290,6597,8,290,10,290, - 12,290,6600,9,290,1,291,1,291,1,291,1,291,5,291,6606,8,291,10,291, - 12,291,6609,9,291,1,292,1,292,1,292,1,292,1,292,3,292,6616,8,292, - 1,293,1,293,1,293,3,293,6621,8,293,1,293,3,293,6624,8,293,1,294, - 1,294,1,294,3,294,6629,8,294,1,294,3,294,6632,8,294,1,295,1,295, - 1,296,1,296,1,297,1,297,1,297,1,297,1,297,1,297,3,297,6644,8,297, - 1,298,1,298,1,298,3,298,6649,8,298,1,298,1,298,1,298,1,298,1,298, - 1,298,1,298,1,298,1,298,1,298,1,298,3,298,6662,8,298,3,298,6664, - 8,298,1,298,1,298,1,298,3,298,6669,8,298,1,298,1,298,3,298,6673, - 8,298,1,298,3,298,6676,8,298,3,298,6678,8,298,1,299,1,299,1,299, - 1,299,1,299,3,299,6685,8,299,1,300,1,300,1,300,1,300,1,300,3,300, - 6692,8,300,1,300,3,300,6695,8,300,1,300,3,300,6698,8,300,1,300,1, - 300,1,300,1,300,3,300,6704,8,300,1,300,1,300,3,300,6708,8,300,1, - 301,1,301,1,301,1,301,3,301,6714,8,301,1,302,1,302,1,302,1,302,1, - 302,1,302,3,302,6722,8,302,1,302,1,302,1,303,1,303,1,303,1,303,1, - 303,3,303,6731,8,303,1,303,1,303,1,304,1,304,1,304,1,305,1,305,1, - 305,1,306,1,306,1,306,3,306,6744,8,306,1,306,1,306,1,306,3,306,6749, - 8,306,1,306,1,306,1,306,1,306,5,306,6755,8,306,10,306,12,306,6758, - 9,306,3,306,6760,8,306,1,307,1,307,1,307,3,307,6765,8,307,1,307, - 1,307,1,307,3,307,6770,8,307,1,307,1,307,1,307,1,307,5,307,6776, - 8,307,10,307,12,307,6779,9,307,3,307,6781,8,307,1,308,1,308,1,308, - 1,308,1,308,1,308,3,308,6789,8,308,1,309,1,309,3,309,6793,8,309, - 1,309,1,309,1,309,5,309,6798,8,309,10,309,12,309,6801,9,309,1,310, - 1,310,1,310,3,310,6806,8,310,1,310,3,310,6809,8,310,1,311,1,311, - 3,311,6813,8,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, - 1,311,5,311,6824,8,311,10,311,12,311,6827,9,311,1,311,1,311,1,311, - 3,311,6832,8,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, - 5,311,6842,8,311,10,311,12,311,6845,9,311,3,311,6847,8,311,1,312, - 1,312,1,313,1,313,1,313,1,313,1,313,3,313,6856,8,313,1,313,1,313, - 1,313,3,313,6861,8,313,1,314,1,314,1,315,1,315,1,316,1,316,1,317, - 1,317,1,318,1,318,1,319,1,319,1,320,1,320,1,321,1,321,1,321,5,321, - 6880,8,321,10,321,12,321,6883,9,321,1,322,1,322,1,323,1,323,1,324, - 1,324,1,325,1,325,1,326,1,326,1,326,5,326,6896,8,326,10,326,12,326, - 6899,9,326,1,327,1,327,1,328,1,328,1,328,5,328,6906,8,328,10,328, - 12,328,6909,9,328,1,329,1,329,3,329,6913,8,329,1,330,1,330,1,330, - 3,330,6918,8,330,3,330,6920,8,330,1,330,3,330,6923,8,330,1,330,1, - 330,3,330,6927,8,330,3,330,6929,8,330,1,331,1,331,1,331,5,331,6934, - 8,331,10,331,12,331,6937,9,331,1,332,1,332,1,332,3,332,6942,8,332, - 3,332,6944,8,332,1,332,3,332,6947,8,332,1,332,1,332,3,332,6951,8, - 332,3,332,6953,8,332,1,333,1,333,1,334,1,334,1,335,1,335,1,336,1, - 336,1,336,5,336,6964,8,336,10,336,12,336,6967,9,336,1,337,1,337, - 1,338,1,338,1,338,1,338,1,338,3,338,6976,8,338,1,338,3,338,6979, - 8,338,1,338,3,338,6982,8,338,1,339,1,339,1,339,1,339,1,340,1,340, - 1,340,1,341,1,341,1,341,1,341,3,341,6995,8,341,1,342,1,342,1,343, - 1,343,3,343,7001,8,343,1,343,3,343,7004,8,343,1,344,1,344,1,345, - 1,345,1,345,1,345,3,345,7012,8,345,1,346,1,346,1,347,1,347,1,347, - 3,347,7019,8,347,1,348,1,348,1,349,1,349,1,349,1,349,1,349,1,349, - 1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,4,349,7037,8,349, - 11,349,12,349,7038,1,350,1,350,1,350,1,350,1,350,3,350,7046,8,350, - 3,350,7048,8,350,1,351,1,351,1,351,4,351,7053,8,351,11,351,12,351, - 7054,3,351,7057,8,351,1,352,1,352,3,352,7061,8,352,1,353,1,353,1, - 353,5,353,7066,8,353,10,353,12,353,7069,9,353,1,354,1,354,1,354, - 3,354,7074,8,354,1,355,1,355,1,355,1,355,1,355,1,355,1,355,1,355, - 1,355,3,355,7085,8,355,1,356,1,356,1,356,1,356,3,356,7091,8,356, - 1,357,1,357,1,358,1,358,3,358,7097,8,358,1,359,3,359,7100,8,359, - 1,359,1,359,3,359,7104,8,359,1,359,4,359,7107,8,359,11,359,12,359, - 7108,1,359,3,359,7112,8,359,1,359,1,359,3,359,7116,8,359,1,359,1, - 359,3,359,7120,8,359,3,359,7122,8,359,1,360,1,360,1,361,3,361,7127, - 8,361,1,361,1,361,1,362,3,362,7132,8,362,1,362,1,362,1,363,1,363, - 1,363,1,363,1,363,1,363,1,363,1,363,1,363,3,363,7145,8,363,1,363, - 3,363,7148,8,363,1,364,1,364,3,364,7152,8,364,1,364,3,364,7155,8, - 364,1,364,3,364,7158,8,364,1,364,1,364,1,364,3,364,7163,8,364,1, - 364,1,364,1,364,3,364,7168,8,364,1,364,1,364,1,364,1,364,3,364,7174, - 8,364,1,364,3,364,7177,8,364,1,364,1,364,1,364,3,364,7182,8,364, - 1,364,3,364,7185,8,364,1,364,1,364,1,364,3,364,7190,8,364,1,364, - 3,364,7193,8,364,1,364,1,364,3,364,7197,8,364,1,364,5,364,7200,8, - 364,10,364,12,364,7203,9,364,1,364,1,364,3,364,7207,8,364,1,364, - 5,364,7210,8,364,10,364,12,364,7213,9,364,1,364,1,364,3,364,7217, - 8,364,1,364,3,364,7220,8,364,1,364,5,364,7223,8,364,10,364,12,364, - 7226,9,364,1,364,1,364,3,364,7230,8,364,1,364,5,364,7233,8,364,10, - 364,12,364,7236,9,364,1,364,1,364,1,364,3,364,7241,8,364,1,364,1, - 364,1,364,3,364,7246,8,364,1,364,1,364,1,364,3,364,7251,8,364,1, - 364,1,364,1,364,3,364,7256,8,364,1,364,1,364,3,364,7260,8,364,1, - 364,3,364,7263,8,364,1,364,1,364,1,364,3,364,7268,8,364,1,364,1, - 364,3,364,7272,8,364,1,364,1,364,3,364,7276,8,364,1,365,1,365,1, - 365,1,365,5,365,7282,8,365,10,365,12,365,7285,9,365,1,365,1,365, - 1,366,1,366,3,366,7291,8,366,1,366,1,366,3,366,7295,8,366,1,366, - 1,366,1,366,3,366,7300,8,366,1,366,1,366,1,366,3,366,7305,8,366, - 1,366,1,366,3,366,7309,8,366,3,366,7311,8,366,1,366,3,366,7314,8, - 366,1,367,1,367,1,367,1,367,1,368,1,368,1,368,1,368,1,368,1,368, - 1,369,1,369,1,369,1,369,3,369,7330,8,369,1,369,1,369,1,370,1,370, - 1,370,1,370,5,370,7338,8,370,10,370,12,370,7341,9,370,1,370,1,370, - 1,371,1,371,1,371,5,371,7348,8,371,10,371,12,371,7351,9,371,1,372, - 1,372,1,372,1,372,5,372,7357,8,372,10,372,12,372,7360,9,372,1,373, - 1,373,1,373,1,373,5,373,7366,8,373,10,373,12,373,7369,9,373,1,373, - 1,373,1,374,1,374,3,374,7375,8,374,1,375,1,375,1,375,5,375,7380, - 8,375,10,375,12,375,7383,9,375,1,376,1,376,1,376,5,376,7388,8,376, - 10,376,12,376,7391,9,376,1,377,1,377,1,377,5,377,7396,8,377,10,377, - 12,377,7399,9,377,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378, - 1,378,3,378,7410,8,378,1,378,1,378,1,378,1,378,1,378,3,378,7417, - 8,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378,3,378,7427, - 8,378,1,379,1,379,1,379,3,379,7432,8,379,1,379,3,379,7435,8,379, - 1,379,1,379,1,379,3,379,7440,8,379,1,379,3,379,7443,8,379,1,380, - 1,380,1,380,1,381,1,381,1,381,1,381,1,382,1,382,1,382,1,383,1,383, - 1,383,1,383,1,383,1,383,3,383,7461,8,383,1,383,1,383,1,383,1,383, - 1,383,3,383,7468,8,383,1,383,1,383,1,383,3,383,7473,8,383,1,384, - 1,384,1,384,3,384,7478,8,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,4,384,7510,8,384,11,384,12,384,7511,1,384,1,384,3,384, - 7516,8,384,1,384,1,384,1,384,1,384,4,384,7522,8,384,11,384,12,384, - 7523,1,384,1,384,3,384,7528,8,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,3,384,7537,8,384,1,384,1,384,1,384,1,384,1,384,1,384, - 3,384,7545,8,384,1,384,1,384,1,384,3,384,7550,8,384,1,384,1,384, - 1,384,1,384,1,384,1,384,3,384,7558,8,384,1,384,1,384,1,384,3,384, - 7563,8,384,1,384,1,384,1,384,3,384,7568,8,384,3,384,7570,8,384,1, - 384,1,384,1,384,1,384,1,384,1,384,1,384,3,384,7579,8,384,1,384,1, - 384,1,384,3,384,7584,8,384,1,384,1,384,1,384,1,384,1,384,1,384,3, - 384,7592,8,384,1,384,1,384,1,384,3,384,7597,8,384,1,384,1,384,1, - 384,1,384,1,384,1,384,3,384,7605,8,384,1,384,1,384,1,384,1,384,1, - 384,1,384,3,384,7613,8,384,1,384,3,384,7616,8,384,1,384,1,384,1, - 384,1,384,1,384,1,384,1,384,1,384,3,384,7626,8,384,1,384,1,384,1, - 384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,1,384,3,384,7644,8,384,1,384,3,384,7647,8,384,1,384, - 3,384,7650,8,384,1,384,1,384,3,384,7654,8,384,1,385,1,385,1,385, - 1,385,1,385,1,386,1,386,1,386,1,386,5,386,7665,8,386,10,386,12,386, - 7668,9,386,1,386,1,386,1,386,1,386,1,386,3,386,7675,8,386,1,387, - 1,387,3,387,7679,8,387,1,388,1,388,1,388,3,388,7684,8,388,1,388, - 1,388,1,388,3,388,7689,8,388,1,388,1,388,1,388,1,388,3,388,7695, - 8,388,1,388,1,388,1,388,3,388,7700,8,388,1,388,1,388,3,388,7704, - 8,388,1,388,1,388,1,388,3,388,7709,8,388,1,388,1,388,1,388,3,388, - 7714,8,388,1,388,1,388,1,388,3,388,7719,8,388,1,388,1,388,1,388, - 1,388,1,388,1,388,5,388,7727,8,388,10,388,12,388,7730,9,388,3,388, - 7732,8,388,1,388,1,388,3,388,7736,8,388,1,388,1,388,3,388,7740,8, - 388,1,389,1,389,1,389,1,389,1,389,3,389,7747,8,389,1,389,1,389,3, - 389,7751,8,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1, - 389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389, - 1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,3,389,7780,8,389, - 1,390,1,390,1,390,1,390,1,390,1,390,3,390,7788,8,390,1,391,3,391, - 7791,8,391,1,391,3,391,7794,8,391,1,391,3,391,7797,8,391,1,391,3, - 391,7800,8,391,1,392,1,392,1,393,1,393,1,393,1,394,1,394,1,395,1, - 395,3,395,7811,8,395,1,396,1,396,1,396,1,396,1,396,1,397,1,397,1, - 397,1,397,1,397,1,397,1,397,3,397,7825,8,397,1,398,1,398,1,398,1, - 398,1,398,5,398,7832,8,398,10,398,12,398,7835,9,398,1,399,1,399, - 1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399, - 1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399, - 3,399,7861,8,399,1,400,1,400,1,400,1,400,1,400,1,401,1,401,1,401, - 5,401,7871,8,401,10,401,12,401,7874,9,401,1,402,1,402,1,402,1,402, - 3,402,7880,8,402,1,403,1,403,1,403,1,403,1,403,1,403,3,403,7888, - 8,403,1,403,1,403,1,403,3,403,7893,8,403,1,403,1,403,1,403,1,403, - 5,403,7899,8,403,10,403,12,403,7902,9,403,1,404,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,3,404,7913,8,404,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,3,404,7926,8,404, - 1,404,1,404,1,404,1,404,3,404,7932,8,404,1,404,1,404,1,404,1,404, - 3,404,7938,8,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,1,404,3,404,7954,8,404,1,404,1,404, - 1,404,1,404,3,404,7960,8,404,1,404,1,404,1,404,1,404,1,404,1,404, - 1,404,5,404,7969,8,404,10,404,12,404,7972,9,404,1,405,1,405,1,405, - 1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405, - 1,405,1,405,1,405,5,405,7991,8,405,10,405,12,405,7994,9,405,1,405, - 1,405,1,405,1,405,1,405,1,405,1,405,4,405,8003,8,405,11,405,12,405, - 8004,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405, - 1,405,1,405,1,405,1,405,1,405,3,405,8022,8,405,1,405,1,405,1,405, - 1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,405, - 1,405,5,405,8039,8,405,10,405,12,405,8042,9,405,1,406,1,406,1,407, - 1,407,1,407,1,407,1,407,1,407,1,407,1,407,3,407,8054,8,407,1,408, - 1,408,1,408,1,408,1,408,1,408,1,408,3,408,8063,8,408,1,409,1,409, - 1,409,1,409,1,409,1,409,1,409,3,409,8072,8,409,1,410,1,410,1,410, - 1,410,1,410,1,410,1,410,3,410,8081,8,410,1,411,1,411,1,412,1,412, - 1,412,1,412,1,412,3,412,8090,8,412,1,413,1,413,1,414,1,414,1,415, - 1,415,1,416,1,416,1,417,1,417,1,418,1,418,1,419,1,419,1,419,0,5, - 208,210,806,808,810,420,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28, - 30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72, - 74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112, - 114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144, - 146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176, - 178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208, - 210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240, - 242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272, - 274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304, - 306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336, - 338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368, - 370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400, - 402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432, - 434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464, - 466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496, - 498,500,502,504,506,508,510,512,514,516,518,520,522,524,526,528, - 530,532,534,536,538,540,542,544,546,548,550,552,554,556,558,560, - 562,564,566,568,570,572,574,576,578,580,582,584,586,588,590,592, - 594,596,598,600,602,604,606,608,610,612,614,616,618,620,622,624, - 626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656, - 658,660,662,664,666,668,670,672,674,676,678,680,682,684,686,688, - 690,692,694,696,698,700,702,704,706,708,710,712,714,716,718,720, - 722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752, - 754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784, - 786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816, - 818,820,822,824,826,828,830,832,834,836,838,0,160,2,0,39,39,152, - 152,2,0,508,508,514,514,3,0,69,69,161,161,182,182,3,0,42,42,357, - 357,430,430,4,0,42,42,389,389,505,505,595,595,2,0,494,494,882,882, - 2,0,79,79,143,143,2,0,16,16,306,306,3,0,44,44,86,86,185,185,2,0, - 406,406,538,538,3,0,486,486,661,661,670,670,2,0,364,364,436,436, - 2,0,325,325,450,450,2,0,42,42,871,872,2,0,37,37,678,678,2,0,323, - 323,418,418,2,0,435,435,686,686,3,0,80,80,85,85,126,126,2,0,82,82, - 92,92,2,0,69,69,161,161,3,0,42,42,374,374,403,403,3,0,42,42,370, - 370,802,802,2,0,648,648,685,685,3,0,408,408,526,526,597,597,2,0, - 329,329,522,522,1,0,871,872,2,0,882,882,889,889,2,0,82,82,360,360, - 2,0,523,523,882,882,2,0,524,524,882,882,3,0,402,402,445,445,502, - 502,7,0,42,42,342,342,345,345,374,374,403,403,554,554,889,889,2, - 0,494,494,506,506,1,0,872,873,2,0,6,6,51,51,2,0,5,5,81,81,2,0,27, - 27,31,31,4,0,42,42,357,357,430,430,434,434,2,0,368,368,375,375,2, - 0,369,369,425,425,2,0,13,13,176,176,2,0,194,194,690,690,2,0,22,22, - 146,146,3,0,43,43,76,76,107,107,2,0,7,7,49,49,2,0,107,107,347,347, - 2,0,337,337,398,398,2,0,102,102,587,587,2,0,43,43,107,107,3,0,59, - 59,181,181,828,828,2,0,185,185,594,594,2,0,159,159,503,503,4,0,402, - 402,445,445,501,501,542,542,2,0,402,402,501,501,2,0,14,14,45,45, - 3,0,66,66,79,79,187,187,2,0,35,35,84,84,2,0,98,98,150,150,2,0,7, - 7,49,50,1,0,637,638,2,0,173,173,752,752,2,0,413,413,593,593,2,0, - 228,228,453,453,2,0,563,563,598,598,8,0,108,108,455,455,459,460, - 462,462,464,464,467,476,499,499,557,557,6,0,456,458,461,461,463, - 463,465,465,477,477,558,558,7,0,109,109,411,411,416,416,454,454, - 466,466,573,573,617,617,2,0,116,116,882,882,2,0,118,119,507,507, - 7,0,499,499,557,557,606,609,611,611,619,619,622,628,630,632,6,0, - 558,558,610,610,612,612,614,616,618,618,620,620,7,0,412,412,416, - 416,573,573,613,613,617,617,621,621,629,629,3,0,70,70,118,119,507, - 507,2,0,438,438,639,639,2,0,633,633,635,635,2,0,317,317,640,640, - 2,0,91,91,577,577,2,0,51,51,362,362,3,0,32,32,61,61,180,180,2,0, - 15,15,340,340,2,0,678,678,835,835,3,0,132,132,173,173,409,409,3, - 0,6,6,51,51,492,492,3,0,13,13,20,20,188,188,2,0,42,42,122,122,2, - 0,104,104,183,183,1,0,873,874,2,0,333,333,598,598,2,0,40,40,684, - 684,2,0,392,392,549,549,2,0,115,115,450,450,4,0,208,208,210,210, - 216,216,649,649,3,0,413,413,531,531,893,894,2,0,841,841,857,857, - 2,0,318,318,559,559,2,0,68,68,80,80,3,0,132,132,178,178,385,385, - 2,0,493,493,645,645,2,0,383,383,688,688,3,0,82,82,93,93,426,426, - 4,0,413,413,450,450,531,532,593,593,2,0,645,645,683,683,2,0,349, - 349,548,548,6,0,228,228,380,380,382,382,410,410,556,556,599,599, - 2,0,45,46,62,62,3,0,442,442,663,663,666,666,10,0,332,332,339,339, - 351,353,359,359,487,487,495,495,650,650,657,657,822,822,832,832, - 2,0,36,36,170,170,2,0,117,117,831,831,11,0,332,332,339,339,351,353, - 359,359,487,487,495,495,578,578,650,650,657,657,822,822,832,832, - 2,0,870,870,891,892,1,0,892,893,2,0,348,348,797,808,3,0,871,874, - 883,883,885,885,2,0,63,63,179,179,2,0,116,116,886,886,5,0,26,26, - 224,226,233,233,235,238,498,498,2,0,26,26,224,224,2,0,26,26,224, - 225,1,0,198,209,3,0,184,184,197,197,596,596,2,0,213,218,403,403, - 6,0,219,219,230,230,232,232,234,234,241,241,321,322,4,0,220,223, - 228,229,231,231,319,319,2,0,155,155,239,239,2,0,442,442,813,821, - 2,0,228,228,498,498,5,0,202,202,208,208,219,220,222,222,442,442, - 1,0,216,217,2,0,184,184,596,596,2,0,202,202,208,208,2,0,189,189, - 682,682,2,0,287,288,294,294,3,0,152,152,285,288,303,303,1,0,297, - 298,3,0,18,18,96,96,177,177,2,0,224,224,228,228,2,0,219,220,222, - 222,3,0,14,14,45,45,830,830,3,0,258,258,270,271,281,281,3,0,259, - 261,277,280,282,284,2,0,267,267,269,269,2,0,265,265,268,268,2,0, - 263,264,274,276,2,0,134,134,587,587,2,0,405,405,539,539,2,0,512, - 512,529,529,2,0,114,114,860,860,3,0,63,63,179,179,674,674,2,0,139, - 139,151,151,3,0,7,7,309,309,602,602,3,0,114,114,853,854,860,861, - 1,0,850,856,2,0,228,228,756,796,1,0,809,812,5,0,717,718,734,736, - 743,743,749,750,752,752,1,0,696,703,3,0,219,223,236,236,239,239, - 76,0,12,12,15,15,19,19,30,30,36,37,42,42,48,48,55,55,57,57,59,59, - 74,74,95,95,117,117,122,122,125,125,131,131,160,160,170,170,241, - 241,255,262,266,266,270,271,277,284,304,309,311,329,331,343,345, - 376,378,393,395,400,402,404,406,410,413,415,417,426,428,428,430, - 434,436,454,456,463,465,473,475,476,478,498,500,506,508,510,512, - 522,525,530,533,538,540,542,544,554,556,562,565,572,575,575,577, - 578,580,605,633,647,649,665,667,674,676,685,687,688,690,695,704, - 704,706,707,709,712,714,716,719,721,726,727,729,733,737,738,740, - 742,744,744,746,748,751,751,753,755,802,802,822,822,825,825,832, - 833,838,838,24,0,39,39,98,98,150,150,152,152,219,221,223,223,253, - 254,262,265,267,269,272,276,296,296,435,435,686,686,696,703,746, - 746,813,813,816,821,823,824,826,827,829,831,834,834,836,836,840, - 840,856,856,9485,0,843,1,0,0,0,2,853,1,0,0,0,4,862,1,0,0,0,6,864, - 1,0,0,0,8,905,1,0,0,0,10,924,1,0,0,0,12,935,1,0,0,0,14,951,1,0,0, - 0,16,956,1,0,0,0,18,968,1,0,0,0,20,1003,1,0,0,0,22,1013,1,0,0,0, - 24,1015,1,0,0,0,26,1027,1,0,0,0,28,1057,1,0,0,0,30,1093,1,0,0,0, - 32,1144,1,0,0,0,34,1173,1,0,0,0,36,1180,1,0,0,0,38,1277,1,0,0,0, - 40,1279,1,0,0,0,42,1316,1,0,0,0,44,1380,1,0,0,0,46,1402,1,0,0,0, - 48,1408,1,0,0,0,50,1430,1,0,0,0,52,1510,1,0,0,0,54,1517,1,0,0,0, - 56,1519,1,0,0,0,58,1524,1,0,0,0,60,1564,1,0,0,0,62,1570,1,0,0,0, - 64,1572,1,0,0,0,66,1593,1,0,0,0,68,1600,1,0,0,0,70,1602,1,0,0,0, - 72,1627,1,0,0,0,74,1630,1,0,0,0,76,1658,1,0,0,0,78,1674,1,0,0,0, - 80,1676,1,0,0,0,82,1770,1,0,0,0,84,1773,1,0,0,0,86,1785,1,0,0,0, - 88,1789,1,0,0,0,90,1839,1,0,0,0,92,1841,1,0,0,0,94,1869,1,0,0,0, - 96,1879,1,0,0,0,98,2066,1,0,0,0,100,2068,1,0,0,0,102,2070,1,0,0, - 0,104,2073,1,0,0,0,106,2148,1,0,0,0,108,2171,1,0,0,0,110,2319,1, - 0,0,0,112,2324,1,0,0,0,114,2326,1,0,0,0,116,2336,1,0,0,0,118,2392, - 1,0,0,0,120,2412,1,0,0,0,122,2414,1,0,0,0,124,2449,1,0,0,0,126,2458, - 1,0,0,0,128,2465,1,0,0,0,130,2488,1,0,0,0,132,2497,1,0,0,0,134,2512, - 1,0,0,0,136,2534,1,0,0,0,138,2590,1,0,0,0,140,2886,1,0,0,0,142,2986, - 1,0,0,0,144,2988,1,0,0,0,146,2995,1,0,0,0,148,3002,1,0,0,0,150,3025, - 1,0,0,0,152,3035,1,0,0,0,154,3042,1,0,0,0,156,3049,1,0,0,0,158,3056, - 1,0,0,0,160,3065,1,0,0,0,162,3077,1,0,0,0,164,3090,1,0,0,0,166,3097, - 1,0,0,0,168,3113,1,0,0,0,170,3140,1,0,0,0,172,3142,1,0,0,0,174,3152, - 1,0,0,0,176,3156,1,0,0,0,178,3162,1,0,0,0,180,3174,1,0,0,0,182,3176, - 1,0,0,0,184,3183,1,0,0,0,186,3185,1,0,0,0,188,3234,1,0,0,0,190,3243, - 1,0,0,0,192,3245,1,0,0,0,194,3256,1,0,0,0,196,3262,1,0,0,0,198,3336, - 1,0,0,0,200,3399,1,0,0,0,202,3417,1,0,0,0,204,3511,1,0,0,0,206,3514, - 1,0,0,0,208,3526,1,0,0,0,210,3546,1,0,0,0,212,3574,1,0,0,0,214,3578, - 1,0,0,0,216,3580,1,0,0,0,218,3590,1,0,0,0,220,3610,1,0,0,0,222,3617, - 1,0,0,0,224,3619,1,0,0,0,226,3630,1,0,0,0,228,3639,1,0,0,0,230,3645, - 1,0,0,0,232,3668,1,0,0,0,234,3670,1,0,0,0,236,3706,1,0,0,0,238,3761, - 1,0,0,0,240,3770,1,0,0,0,242,3790,1,0,0,0,244,3802,1,0,0,0,246,3806, - 1,0,0,0,248,3817,1,0,0,0,250,3850,1,0,0,0,252,3871,1,0,0,0,254,3881, - 1,0,0,0,256,3885,1,0,0,0,258,3911,1,0,0,0,260,3958,1,0,0,0,262,3960, - 1,0,0,0,264,3964,1,0,0,0,266,3981,1,0,0,0,268,4032,1,0,0,0,270,4041, - 1,0,0,0,272,4051,1,0,0,0,274,4061,1,0,0,0,276,4117,1,0,0,0,278,4119, - 1,0,0,0,280,4143,1,0,0,0,282,4149,1,0,0,0,284,4157,1,0,0,0,286,4174, - 1,0,0,0,288,4190,1,0,0,0,290,4227,1,0,0,0,292,4233,1,0,0,0,294,4242, - 1,0,0,0,296,4255,1,0,0,0,298,4259,1,0,0,0,300,4297,1,0,0,0,302,4335, - 1,0,0,0,304,4349,1,0,0,0,306,4357,1,0,0,0,308,4361,1,0,0,0,310,4367, - 1,0,0,0,312,4381,1,0,0,0,314,4384,1,0,0,0,316,4402,1,0,0,0,318,4406, - 1,0,0,0,320,4422,1,0,0,0,322,4424,1,0,0,0,324,4436,1,0,0,0,326,4440, - 1,0,0,0,328,4457,1,0,0,0,330,4474,1,0,0,0,332,4477,1,0,0,0,334,4487, - 1,0,0,0,336,4491,1,0,0,0,338,4501,1,0,0,0,340,4504,1,0,0,0,342,4509, - 1,0,0,0,344,4529,1,0,0,0,346,4531,1,0,0,0,348,4548,1,0,0,0,350,4557, - 1,0,0,0,352,4566,1,0,0,0,354,4568,1,0,0,0,356,4582,1,0,0,0,358,4596, - 1,0,0,0,360,4611,1,0,0,0,362,4620,1,0,0,0,364,4645,1,0,0,0,366,4660, - 1,0,0,0,368,4679,1,0,0,0,370,4709,1,0,0,0,372,4711,1,0,0,0,374,4713, - 1,0,0,0,376,4715,1,0,0,0,378,4730,1,0,0,0,380,4759,1,0,0,0,382,4761, - 1,0,0,0,384,4763,1,0,0,0,386,4765,1,0,0,0,388,4780,1,0,0,0,390,4782, - 1,0,0,0,392,4849,1,0,0,0,394,4851,1,0,0,0,396,4857,1,0,0,0,398,4884, - 1,0,0,0,400,4898,1,0,0,0,402,4909,1,0,0,0,404,4911,1,0,0,0,406,4917, - 1,0,0,0,408,4927,1,0,0,0,410,4931,1,0,0,0,412,4938,1,0,0,0,414,4942, - 1,0,0,0,416,4948,1,0,0,0,418,4955,1,0,0,0,420,4961,1,0,0,0,422,4967, - 1,0,0,0,424,4972,1,0,0,0,426,5017,1,0,0,0,428,5038,1,0,0,0,430,5063, - 1,0,0,0,432,5066,1,0,0,0,434,5072,1,0,0,0,436,5088,1,0,0,0,438,5103, - 1,0,0,0,440,5109,1,0,0,0,442,5139,1,0,0,0,444,5141,1,0,0,0,446,5148, - 1,0,0,0,448,5160,1,0,0,0,450,5166,1,0,0,0,452,5191,1,0,0,0,454,5195, - 1,0,0,0,456,5199,1,0,0,0,458,5210,1,0,0,0,460,5218,1,0,0,0,462,5281, - 1,0,0,0,464,5340,1,0,0,0,466,5442,1,0,0,0,468,5452,1,0,0,0,470,5454, - 1,0,0,0,472,5472,1,0,0,0,474,5496,1,0,0,0,476,5520,1,0,0,0,478,5527, - 1,0,0,0,480,5547,1,0,0,0,482,5556,1,0,0,0,484,5618,1,0,0,0,486,5620, - 1,0,0,0,488,5624,1,0,0,0,490,5658,1,0,0,0,492,5660,1,0,0,0,494,5701, - 1,0,0,0,496,5739,1,0,0,0,498,5758,1,0,0,0,500,5785,1,0,0,0,502,5789, - 1,0,0,0,504,5810,1,0,0,0,506,5820,1,0,0,0,508,5830,1,0,0,0,510,5870, - 1,0,0,0,512,5872,1,0,0,0,514,5875,1,0,0,0,516,5905,1,0,0,0,518,5907, - 1,0,0,0,520,5910,1,0,0,0,522,6010,1,0,0,0,524,6028,1,0,0,0,526,6030, - 1,0,0,0,528,6082,1,0,0,0,530,6084,1,0,0,0,532,6093,1,0,0,0,534,6099, - 1,0,0,0,536,6106,1,0,0,0,538,6121,1,0,0,0,540,6130,1,0,0,0,542,6132, - 1,0,0,0,544,6146,1,0,0,0,546,6167,1,0,0,0,548,6172,1,0,0,0,550,6182, - 1,0,0,0,552,6188,1,0,0,0,554,6222,1,0,0,0,556,6276,1,0,0,0,558,6462, - 1,0,0,0,560,6474,1,0,0,0,562,6490,1,0,0,0,564,6496,1,0,0,0,566,6515, - 1,0,0,0,568,6528,1,0,0,0,570,6542,1,0,0,0,572,6544,1,0,0,0,574,6547, - 1,0,0,0,576,6571,1,0,0,0,578,6583,1,0,0,0,580,6589,1,0,0,0,582,6601, - 1,0,0,0,584,6615,1,0,0,0,586,6617,1,0,0,0,588,6625,1,0,0,0,590,6633, - 1,0,0,0,592,6635,1,0,0,0,594,6637,1,0,0,0,596,6677,1,0,0,0,598,6684, - 1,0,0,0,600,6686,1,0,0,0,602,6709,1,0,0,0,604,6715,1,0,0,0,606,6725, - 1,0,0,0,608,6734,1,0,0,0,610,6737,1,0,0,0,612,6740,1,0,0,0,614,6761, - 1,0,0,0,616,6782,1,0,0,0,618,6790,1,0,0,0,620,6802,1,0,0,0,622,6810, - 1,0,0,0,624,6848,1,0,0,0,626,6860,1,0,0,0,628,6862,1,0,0,0,630,6864, - 1,0,0,0,632,6866,1,0,0,0,634,6868,1,0,0,0,636,6870,1,0,0,0,638,6872, - 1,0,0,0,640,6874,1,0,0,0,642,6876,1,0,0,0,644,6884,1,0,0,0,646,6886, - 1,0,0,0,648,6888,1,0,0,0,650,6890,1,0,0,0,652,6892,1,0,0,0,654,6900, - 1,0,0,0,656,6902,1,0,0,0,658,6912,1,0,0,0,660,6928,1,0,0,0,662,6930, - 1,0,0,0,664,6952,1,0,0,0,666,6954,1,0,0,0,668,6956,1,0,0,0,670,6958, - 1,0,0,0,672,6960,1,0,0,0,674,6968,1,0,0,0,676,6978,1,0,0,0,678,6983, - 1,0,0,0,680,6987,1,0,0,0,682,6994,1,0,0,0,684,6996,1,0,0,0,686,7003, - 1,0,0,0,688,7005,1,0,0,0,690,7011,1,0,0,0,692,7013,1,0,0,0,694,7018, - 1,0,0,0,696,7020,1,0,0,0,698,7022,1,0,0,0,700,7040,1,0,0,0,702,7056, - 1,0,0,0,704,7058,1,0,0,0,706,7062,1,0,0,0,708,7073,1,0,0,0,710,7084, - 1,0,0,0,712,7090,1,0,0,0,714,7092,1,0,0,0,716,7096,1,0,0,0,718,7121, - 1,0,0,0,720,7123,1,0,0,0,722,7126,1,0,0,0,724,7131,1,0,0,0,726,7147, - 1,0,0,0,728,7275,1,0,0,0,730,7277,1,0,0,0,732,7310,1,0,0,0,734,7315, - 1,0,0,0,736,7319,1,0,0,0,738,7325,1,0,0,0,740,7333,1,0,0,0,742,7344, - 1,0,0,0,744,7352,1,0,0,0,746,7361,1,0,0,0,748,7374,1,0,0,0,750,7376, - 1,0,0,0,752,7384,1,0,0,0,754,7392,1,0,0,0,756,7426,1,0,0,0,758,7442, - 1,0,0,0,760,7444,1,0,0,0,762,7447,1,0,0,0,764,7451,1,0,0,0,766,7472, - 1,0,0,0,768,7653,1,0,0,0,770,7655,1,0,0,0,772,7674,1,0,0,0,774,7676, - 1,0,0,0,776,7739,1,0,0,0,778,7779,1,0,0,0,780,7781,1,0,0,0,782,7790, - 1,0,0,0,784,7801,1,0,0,0,786,7803,1,0,0,0,788,7806,1,0,0,0,790,7810, - 1,0,0,0,792,7812,1,0,0,0,794,7824,1,0,0,0,796,7826,1,0,0,0,798,7860, - 1,0,0,0,800,7862,1,0,0,0,802,7867,1,0,0,0,804,7879,1,0,0,0,806,7892, - 1,0,0,0,808,7903,1,0,0,0,810,8021,1,0,0,0,812,8043,1,0,0,0,814,8053, - 1,0,0,0,816,8062,1,0,0,0,818,8071,1,0,0,0,820,8080,1,0,0,0,822,8082, - 1,0,0,0,824,8089,1,0,0,0,826,8091,1,0,0,0,828,8093,1,0,0,0,830,8095, - 1,0,0,0,832,8097,1,0,0,0,834,8099,1,0,0,0,836,8101,1,0,0,0,838,8103, - 1,0,0,0,840,842,3,2,1,0,841,840,1,0,0,0,842,845,1,0,0,0,843,841, - 1,0,0,0,843,844,1,0,0,0,844,846,1,0,0,0,845,843,1,0,0,0,846,847, - 5,0,0,1,847,1,1,0,0,0,848,850,3,4,2,0,849,851,5,869,0,0,850,849, - 1,0,0,0,850,851,1,0,0,0,851,854,1,0,0,0,852,854,3,6,3,0,853,848, - 1,0,0,0,853,852,1,0,0,0,854,3,1,0,0,0,855,863,3,8,4,0,856,863,3, - 10,5,0,857,863,3,12,6,0,858,863,3,14,7,0,859,863,3,16,8,0,860,863, - 3,20,10,0,861,863,3,22,11,0,862,855,1,0,0,0,862,856,1,0,0,0,862, - 857,1,0,0,0,862,858,1,0,0,0,862,859,1,0,0,0,862,860,1,0,0,0,862, - 861,1,0,0,0,863,5,1,0,0,0,864,865,5,869,0,0,865,7,1,0,0,0,866,906, - 3,24,12,0,867,906,3,26,13,0,868,906,3,28,14,0,869,906,3,30,15,0, - 870,906,3,32,16,0,871,906,3,542,271,0,872,906,3,36,18,0,873,906, - 3,38,19,0,874,906,3,40,20,0,875,906,3,42,21,0,876,906,3,44,22,0, - 877,906,3,50,25,0,878,906,3,34,17,0,879,906,3,120,60,0,880,906,3, - 122,61,0,881,906,3,124,62,0,882,906,3,126,63,0,883,906,3,128,64, - 0,884,906,3,130,65,0,885,906,3,132,66,0,886,906,3,134,67,0,887,906, - 3,136,68,0,888,906,3,138,69,0,889,906,3,144,72,0,890,906,3,146,73, - 0,891,906,3,148,74,0,892,906,3,150,75,0,893,906,3,152,76,0,894,906, - 3,154,77,0,895,906,3,156,78,0,896,906,3,158,79,0,897,906,3,160,80, - 0,898,906,3,162,81,0,899,906,3,164,82,0,900,906,3,166,83,0,901,906, - 3,168,84,0,902,906,3,170,85,0,903,906,3,172,86,0,904,906,3,176,88, - 0,905,866,1,0,0,0,905,867,1,0,0,0,905,868,1,0,0,0,905,869,1,0,0, - 0,905,870,1,0,0,0,905,871,1,0,0,0,905,872,1,0,0,0,905,873,1,0,0, - 0,905,874,1,0,0,0,905,875,1,0,0,0,905,876,1,0,0,0,905,877,1,0,0, - 0,905,878,1,0,0,0,905,879,1,0,0,0,905,880,1,0,0,0,905,881,1,0,0, - 0,905,882,1,0,0,0,905,883,1,0,0,0,905,884,1,0,0,0,905,885,1,0,0, - 0,905,886,1,0,0,0,905,887,1,0,0,0,905,888,1,0,0,0,905,889,1,0,0, - 0,905,890,1,0,0,0,905,891,1,0,0,0,905,892,1,0,0,0,905,893,1,0,0, - 0,905,894,1,0,0,0,905,895,1,0,0,0,905,896,1,0,0,0,905,897,1,0,0, - 0,905,898,1,0,0,0,905,899,1,0,0,0,905,900,1,0,0,0,905,901,1,0,0, - 0,905,902,1,0,0,0,905,903,1,0,0,0,905,904,1,0,0,0,906,9,1,0,0,0, - 907,925,3,204,102,0,908,925,3,206,103,0,909,925,3,186,93,0,910,925, - 3,214,107,0,911,925,3,180,90,0,912,925,3,202,101,0,913,925,3,178, - 89,0,914,925,3,192,96,0,915,925,3,196,98,0,916,925,3,198,99,0,917, - 925,3,200,100,0,918,925,3,182,91,0,919,925,3,184,92,0,920,925,3, - 246,123,0,921,925,3,216,108,0,922,925,3,618,309,0,923,925,3,620, - 310,0,924,907,1,0,0,0,924,908,1,0,0,0,924,909,1,0,0,0,924,910,1, - 0,0,0,924,911,1,0,0,0,924,912,1,0,0,0,924,913,1,0,0,0,924,914,1, - 0,0,0,924,915,1,0,0,0,924,916,1,0,0,0,924,917,1,0,0,0,924,918,1, - 0,0,0,924,919,1,0,0,0,924,920,1,0,0,0,924,921,1,0,0,0,924,922,1, - 0,0,0,924,923,1,0,0,0,925,11,1,0,0,0,926,936,3,322,161,0,927,936, - 3,324,162,0,928,936,3,326,163,0,929,936,3,328,164,0,930,936,3,330, - 165,0,931,936,3,332,166,0,932,936,3,334,167,0,933,936,3,336,168, - 0,934,936,3,338,169,0,935,926,1,0,0,0,935,927,1,0,0,0,935,928,1, - 0,0,0,935,929,1,0,0,0,935,930,1,0,0,0,935,931,1,0,0,0,935,932,1, - 0,0,0,935,933,1,0,0,0,935,934,1,0,0,0,936,13,1,0,0,0,937,952,3,354, - 177,0,938,952,3,356,178,0,939,952,3,358,179,0,940,952,3,360,180, - 0,941,952,3,362,181,0,942,952,3,364,182,0,943,952,3,366,183,0,944, - 952,3,368,184,0,945,952,3,404,202,0,946,952,3,406,203,0,947,952, - 3,408,204,0,948,952,3,410,205,0,949,952,3,412,206,0,950,952,3,414, - 207,0,951,937,1,0,0,0,951,938,1,0,0,0,951,939,1,0,0,0,951,940,1, - 0,0,0,951,941,1,0,0,0,951,942,1,0,0,0,951,943,1,0,0,0,951,944,1, - 0,0,0,951,945,1,0,0,0,951,946,1,0,0,0,951,947,1,0,0,0,951,948,1, - 0,0,0,951,949,1,0,0,0,951,950,1,0,0,0,952,15,1,0,0,0,953,957,3,416, - 208,0,954,957,3,418,209,0,955,957,3,420,210,0,956,953,1,0,0,0,956, - 954,1,0,0,0,956,955,1,0,0,0,957,17,1,0,0,0,958,969,3,424,212,0,959, - 969,3,426,213,0,960,969,3,428,214,0,961,969,3,432,216,0,962,969, - 3,434,217,0,963,969,3,436,218,0,964,969,3,440,220,0,965,969,3,430, - 215,0,966,969,3,438,219,0,967,969,3,442,221,0,968,958,1,0,0,0,968, - 959,1,0,0,0,968,960,1,0,0,0,968,961,1,0,0,0,968,962,1,0,0,0,968, - 963,1,0,0,0,968,964,1,0,0,0,968,965,1,0,0,0,968,966,1,0,0,0,968, - 967,1,0,0,0,969,19,1,0,0,0,970,1004,3,460,230,0,971,1004,3,462,231, - 0,972,1004,3,464,232,0,973,1004,3,466,233,0,974,1004,3,470,235,0, - 975,1004,3,482,241,0,976,1004,3,484,242,0,977,1004,3,472,236,0,978, - 1004,3,474,237,0,979,1004,3,476,238,0,980,1004,3,478,239,0,981,1004, - 3,528,264,0,982,1004,3,530,265,0,983,1004,3,532,266,0,984,1004,3, - 534,267,0,985,1004,3,536,268,0,986,1004,3,544,272,0,987,1004,3,548, - 274,0,988,1004,3,550,275,0,989,1004,3,552,276,0,990,1004,3,554,277, - 0,991,1004,3,556,278,0,992,1004,3,558,279,0,993,1004,3,572,286,0, - 994,1004,3,574,287,0,995,1004,3,576,288,0,996,1004,3,578,289,0,997, - 1004,3,580,290,0,998,1004,3,582,291,0,999,1004,3,586,293,0,1000, - 1004,3,588,294,0,1001,1004,3,590,295,0,1002,1004,3,592,296,0,1003, - 970,1,0,0,0,1003,971,1,0,0,0,1003,972,1,0,0,0,1003,973,1,0,0,0,1003, - 974,1,0,0,0,1003,975,1,0,0,0,1003,976,1,0,0,0,1003,977,1,0,0,0,1003, - 978,1,0,0,0,1003,979,1,0,0,0,1003,980,1,0,0,0,1003,981,1,0,0,0,1003, - 982,1,0,0,0,1003,983,1,0,0,0,1003,984,1,0,0,0,1003,985,1,0,0,0,1003, - 986,1,0,0,0,1003,987,1,0,0,0,1003,988,1,0,0,0,1003,989,1,0,0,0,1003, - 990,1,0,0,0,1003,991,1,0,0,0,1003,992,1,0,0,0,1003,993,1,0,0,0,1003, - 994,1,0,0,0,1003,995,1,0,0,0,1003,996,1,0,0,0,1003,997,1,0,0,0,1003, - 998,1,0,0,0,1003,999,1,0,0,0,1003,1000,1,0,0,0,1003,1001,1,0,0,0, - 1003,1002,1,0,0,0,1004,21,1,0,0,0,1005,1014,3,602,301,0,1006,1014, - 3,604,302,0,1007,1014,3,606,303,0,1008,1014,3,608,304,0,1009,1014, - 3,610,305,0,1010,1014,3,612,306,0,1011,1014,3,614,307,0,1012,1014, - 3,622,311,0,1013,1005,1,0,0,0,1013,1006,1,0,0,0,1013,1007,1,0,0, - 0,1013,1008,1,0,0,0,1013,1009,1,0,0,0,1013,1010,1,0,0,0,1013,1011, - 1,0,0,0,1013,1012,1,0,0,0,1014,23,1,0,0,0,1015,1016,5,34,0,0,1016, - 1018,7,0,0,0,1017,1019,3,762,381,0,1018,1017,1,0,0,0,1018,1019,1, - 0,0,0,1019,1020,1,0,0,0,1020,1024,3,628,314,0,1021,1023,3,52,26, - 0,1022,1021,1,0,0,0,1023,1026,1,0,0,0,1024,1022,1,0,0,0,1024,1025, - 1,0,0,0,1025,25,1,0,0,0,1026,1024,1,0,0,0,1027,1029,5,34,0,0,1028, - 1030,3,58,29,0,1029,1028,1,0,0,0,1029,1030,1,0,0,0,1030,1031,1,0, - 0,0,1031,1033,5,385,0,0,1032,1034,3,762,381,0,1033,1032,1,0,0,0, - 1033,1034,1,0,0,0,1034,1035,1,0,0,0,1035,1036,3,704,352,0,1036,1037, - 5,119,0,0,1037,1038,5,590,0,0,1038,1045,3,60,30,0,1039,1040,5,119, - 0,0,1040,1042,5,343,0,0,1041,1043,5,114,0,0,1042,1041,1,0,0,0,1042, - 1043,1,0,0,0,1043,1044,1,0,0,0,1044,1046,5,541,0,0,1045,1039,1,0, - 0,0,1045,1046,1,0,0,0,1046,1048,1,0,0,0,1047,1049,3,68,34,0,1048, - 1047,1,0,0,0,1048,1049,1,0,0,0,1049,1052,1,0,0,0,1050,1051,5,340, - 0,0,1051,1053,5,882,0,0,1052,1050,1,0,0,0,1052,1053,1,0,0,0,1053, - 1054,1,0,0,0,1054,1055,5,371,0,0,1055,1056,3,422,211,0,1056,27,1, - 0,0,0,1057,1059,5,34,0,0,1058,1060,7,1,0,0,1059,1058,1,0,0,0,1059, - 1060,1,0,0,0,1060,1062,1,0,0,0,1061,1063,7,2,0,0,1062,1061,1,0,0, - 0,1062,1063,1,0,0,0,1063,1064,1,0,0,0,1064,1065,5,82,0,0,1065,1067, - 3,640,320,0,1066,1068,3,70,35,0,1067,1066,1,0,0,0,1067,1068,1,0, - 0,0,1068,1069,1,0,0,0,1069,1070,5,119,0,0,1070,1071,3,654,327,0, - 1071,1075,3,740,370,0,1072,1074,3,72,36,0,1073,1072,1,0,0,0,1074, - 1077,1,0,0,0,1075,1073,1,0,0,0,1075,1076,1,0,0,0,1076,1090,1,0,0, - 0,1077,1075,1,0,0,0,1078,1080,5,308,0,0,1079,1081,5,857,0,0,1080, - 1079,1,0,0,0,1080,1081,1,0,0,0,1081,1082,1,0,0,0,1082,1089,7,3,0, - 0,1083,1085,5,104,0,0,1084,1086,5,857,0,0,1085,1084,1,0,0,0,1085, - 1086,1,0,0,0,1086,1087,1,0,0,0,1087,1089,7,4,0,0,1088,1078,1,0,0, - 0,1088,1083,1,0,0,0,1089,1092,1,0,0,0,1090,1088,1,0,0,0,1090,1091, - 1,0,0,0,1091,29,1,0,0,0,1092,1090,1,0,0,0,1093,1094,5,34,0,0,1094, - 1095,5,451,0,0,1095,1096,5,74,0,0,1096,1097,3,708,354,0,1097,1098, - 5,6,0,0,1098,1099,5,671,0,0,1099,1105,5,882,0,0,1100,1102,5,428, - 0,0,1101,1103,5,857,0,0,1102,1101,1,0,0,0,1102,1103,1,0,0,0,1103, - 1104,1,0,0,0,1104,1106,3,716,358,0,1105,1100,1,0,0,0,1105,1106,1, - 0,0,0,1106,1112,1,0,0,0,1107,1109,5,672,0,0,1108,1110,5,857,0,0, - 1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,1111,1,0,0,0,1111,1113, - 3,716,358,0,1112,1107,1,0,0,0,1112,1113,1,0,0,0,1113,1119,1,0,0, - 0,1114,1116,5,553,0,0,1115,1117,5,857,0,0,1116,1115,1,0,0,0,1116, - 1117,1,0,0,0,1117,1118,1,0,0,0,1118,1120,3,716,358,0,1119,1114,1, - 0,0,0,1119,1120,1,0,0,0,1120,1126,1,0,0,0,1121,1123,5,504,0,0,1122, - 1124,5,857,0,0,1123,1122,1,0,0,0,1123,1124,1,0,0,0,1124,1125,1,0, - 0,0,1125,1127,3,708,354,0,1126,1121,1,0,0,0,1126,1127,1,0,0,0,1127, - 1129,1,0,0,0,1128,1130,5,687,0,0,1129,1128,1,0,0,0,1129,1130,1,0, - 0,0,1130,1136,1,0,0,0,1131,1133,5,340,0,0,1132,1134,5,857,0,0,1133, - 1132,1,0,0,0,1133,1134,1,0,0,0,1134,1135,1,0,0,0,1135,1137,5,882, - 0,0,1136,1131,1,0,0,0,1136,1137,1,0,0,0,1137,1138,1,0,0,0,1138,1140, - 5,380,0,0,1139,1141,5,857,0,0,1140,1139,1,0,0,0,1140,1141,1,0,0, - 0,1141,1142,1,0,0,0,1142,1143,3,694,347,0,1143,31,1,0,0,0,1144,1146, - 5,34,0,0,1145,1147,3,58,29,0,1146,1145,1,0,0,0,1146,1147,1,0,0,0, - 1147,1148,1,0,0,0,1148,1150,5,132,0,0,1149,1151,3,762,381,0,1150, - 1149,1,0,0,0,1150,1151,1,0,0,0,1151,1152,1,0,0,0,1152,1153,3,704, - 352,0,1153,1155,5,866,0,0,1154,1156,3,74,37,0,1155,1154,1,0,0,0, - 1155,1156,1,0,0,0,1156,1161,1,0,0,0,1157,1158,5,868,0,0,1158,1160, - 3,74,37,0,1159,1157,1,0,0,0,1160,1163,1,0,0,0,1161,1159,1,0,0,0, - 1161,1162,1,0,0,0,1162,1164,1,0,0,0,1163,1161,1,0,0,0,1164,1168, - 5,867,0,0,1165,1167,3,76,38,0,1166,1165,1,0,0,0,1167,1170,1,0,0, - 0,1168,1166,1,0,0,0,1168,1169,1,0,0,0,1169,1171,1,0,0,0,1170,1168, - 1,0,0,0,1171,1172,3,422,211,0,1172,33,1,0,0,0,1173,1174,5,34,0,0, - 1174,1176,5,582,0,0,1175,1177,3,762,381,0,1176,1175,1,0,0,0,1176, - 1177,1,0,0,0,1177,1178,1,0,0,0,1178,1179,3,656,328,0,1179,35,1,0, - 0,0,1180,1181,5,34,0,0,1181,1182,5,592,0,0,1182,1183,3,708,354,0, - 1183,1184,5,67,0,0,1184,1185,5,360,0,0,1185,1186,5,692,0,0,1186, - 1187,7,5,0,0,1187,1188,5,518,0,0,1188,1189,5,866,0,0,1189,1194,3, - 78,39,0,1190,1191,5,868,0,0,1191,1193,3,78,39,0,1192,1190,1,0,0, - 0,1193,1196,1,0,0,0,1194,1192,1,0,0,0,1194,1195,1,0,0,0,1195,1197, - 1,0,0,0,1196,1194,1,0,0,0,1197,1198,5,867,0,0,1198,37,1,0,0,0,1199, - 1201,5,34,0,0,1200,1202,5,660,0,0,1201,1200,1,0,0,0,1201,1202,1, - 0,0,0,1202,1203,1,0,0,0,1203,1205,5,173,0,0,1204,1206,3,762,381, - 0,1205,1204,1,0,0,0,1205,1206,1,0,0,0,1206,1207,1,0,0,0,1207,1208, - 3,650,325,0,1208,1219,3,80,40,0,1209,1216,3,98,49,0,1210,1212,5, - 868,0,0,1211,1210,1,0,0,0,1211,1212,1,0,0,0,1212,1213,1,0,0,0,1213, - 1215,3,98,49,0,1214,1211,1,0,0,0,1215,1218,1,0,0,0,1216,1214,1,0, - 0,0,1216,1217,1,0,0,0,1217,1220,1,0,0,0,1218,1216,1,0,0,0,1219,1209, - 1,0,0,0,1219,1220,1,0,0,0,1220,1222,1,0,0,0,1221,1223,3,104,52,0, - 1222,1221,1,0,0,0,1222,1223,1,0,0,0,1223,1278,1,0,0,0,1224,1226, - 5,34,0,0,1225,1227,5,660,0,0,1226,1225,1,0,0,0,1226,1227,1,0,0,0, - 1227,1228,1,0,0,0,1228,1230,5,173,0,0,1229,1231,3,762,381,0,1230, - 1229,1,0,0,0,1230,1231,1,0,0,0,1231,1232,1,0,0,0,1232,1234,3,650, - 325,0,1233,1235,3,80,40,0,1234,1233,1,0,0,0,1234,1235,1,0,0,0,1235, - 1246,1,0,0,0,1236,1243,3,98,49,0,1237,1239,5,868,0,0,1238,1237,1, - 0,0,0,1238,1239,1,0,0,0,1239,1240,1,0,0,0,1240,1242,3,98,49,0,1241, - 1238,1,0,0,0,1242,1245,1,0,0,0,1243,1241,1,0,0,0,1243,1244,1,0,0, - 0,1244,1247,1,0,0,0,1245,1243,1,0,0,0,1246,1236,1,0,0,0,1246,1247, - 1,0,0,0,1247,1249,1,0,0,0,1248,1250,3,104,52,0,1249,1248,1,0,0,0, - 1249,1250,1,0,0,0,1250,1252,1,0,0,0,1251,1253,7,6,0,0,1252,1251, - 1,0,0,0,1252,1253,1,0,0,0,1253,1255,1,0,0,0,1254,1256,5,13,0,0,1255, - 1254,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1258,3,204, - 102,0,1258,1278,1,0,0,0,1259,1261,5,34,0,0,1260,1262,5,660,0,0,1261, - 1260,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1265,5,173, - 0,0,1264,1266,3,762,381,0,1265,1264,1,0,0,0,1265,1266,1,0,0,0,1266, - 1267,1,0,0,0,1267,1275,3,650,325,0,1268,1269,5,99,0,0,1269,1276, - 3,654,327,0,1270,1271,5,866,0,0,1271,1272,5,99,0,0,1272,1273,3,654, - 327,0,1273,1274,5,867,0,0,1274,1276,1,0,0,0,1275,1268,1,0,0,0,1275, - 1270,1,0,0,0,1276,1278,1,0,0,0,1277,1199,1,0,0,0,1277,1224,1,0,0, - 0,1277,1259,1,0,0,0,1278,39,1,0,0,0,1279,1281,5,34,0,0,1280,1282, - 5,180,0,0,1281,1280,1,0,0,0,1281,1282,1,0,0,0,1282,1283,1,0,0,0, - 1283,1284,5,658,0,0,1284,1288,3,666,333,0,1285,1286,5,6,0,0,1286, - 1287,5,361,0,0,1287,1289,5,882,0,0,1288,1285,1,0,0,0,1288,1289,1, - 0,0,0,1289,1295,1,0,0,0,1290,1292,5,314,0,0,1291,1293,5,857,0,0, - 1292,1291,1,0,0,0,1292,1293,1,0,0,0,1293,1294,1,0,0,0,1294,1296, - 3,716,358,0,1295,1290,1,0,0,0,1295,1296,1,0,0,0,1296,1300,1,0,0, - 0,1297,1298,5,399,0,0,1298,1299,5,857,0,0,1299,1301,3,716,358,0, - 1300,1297,1,0,0,0,1300,1301,1,0,0,0,1301,1307,1,0,0,0,1302,1304, - 5,380,0,0,1303,1305,5,857,0,0,1304,1303,1,0,0,0,1304,1305,1,0,0, - 0,1305,1306,1,0,0,0,1306,1308,3,694,347,0,1307,1302,1,0,0,0,1307, - 1308,1,0,0,0,1308,1314,1,0,0,0,1309,1311,5,825,0,0,1310,1312,5,857, - 0,0,1311,1310,1,0,0,0,1311,1312,1,0,0,0,1312,1313,1,0,0,0,1313,1315, - 5,882,0,0,1314,1309,1,0,0,0,1314,1315,1,0,0,0,1315,41,1,0,0,0,1316, - 1318,5,34,0,0,1317,1319,5,180,0,0,1318,1317,1,0,0,0,1318,1319,1, - 0,0,0,1319,1320,1,0,0,0,1320,1321,5,658,0,0,1321,1322,3,666,333, - 0,1322,1323,5,6,0,0,1323,1324,5,361,0,0,1324,1325,5,882,0,0,1325, - 1326,5,187,0,0,1326,1327,5,451,0,0,1327,1328,5,74,0,0,1328,1334, - 3,708,354,0,1329,1331,5,393,0,0,1330,1332,5,857,0,0,1331,1330,1, - 0,0,0,1331,1332,1,0,0,0,1332,1333,1,0,0,0,1333,1335,3,716,358,0, - 1334,1329,1,0,0,0,1334,1335,1,0,0,0,1335,1341,1,0,0,0,1336,1338, - 5,428,0,0,1337,1339,5,857,0,0,1338,1337,1,0,0,0,1338,1339,1,0,0, - 0,1339,1340,1,0,0,0,1340,1342,3,716,358,0,1341,1336,1,0,0,0,1341, - 1342,1,0,0,0,1342,1348,1,0,0,0,1343,1345,5,314,0,0,1344,1346,5,857, - 0,0,1345,1344,1,0,0,0,1345,1346,1,0,0,0,1346,1347,1,0,0,0,1347,1349, - 3,716,358,0,1348,1343,1,0,0,0,1348,1349,1,0,0,0,1349,1355,1,0,0, - 0,1350,1352,5,481,0,0,1351,1353,5,857,0,0,1352,1351,1,0,0,0,1352, - 1353,1,0,0,0,1353,1354,1,0,0,0,1354,1356,3,716,358,0,1355,1350,1, - 0,0,0,1355,1356,1,0,0,0,1356,1362,1,0,0,0,1357,1359,5,504,0,0,1358, - 1360,5,857,0,0,1359,1358,1,0,0,0,1359,1360,1,0,0,0,1360,1361,1,0, - 0,0,1361,1363,3,708,354,0,1362,1357,1,0,0,0,1362,1363,1,0,0,0,1363, - 1365,1,0,0,0,1364,1366,5,687,0,0,1365,1364,1,0,0,0,1365,1366,1,0, - 0,0,1366,1372,1,0,0,0,1367,1369,5,340,0,0,1368,1370,5,857,0,0,1369, - 1368,1,0,0,0,1369,1370,1,0,0,0,1370,1371,1,0,0,0,1371,1373,5,882, - 0,0,1372,1367,1,0,0,0,1372,1373,1,0,0,0,1373,1374,1,0,0,0,1374,1376, - 5,380,0,0,1375,1377,5,857,0,0,1376,1375,1,0,0,0,1376,1377,1,0,0, - 0,1377,1378,1,0,0,0,1378,1379,3,694,347,0,1379,43,1,0,0,0,1380,1382, - 5,34,0,0,1381,1383,3,58,29,0,1382,1381,1,0,0,0,1382,1383,1,0,0,0, - 1383,1384,1,0,0,0,1384,1386,5,178,0,0,1385,1387,3,762,381,0,1386, - 1385,1,0,0,0,1386,1387,1,0,0,0,1387,1388,1,0,0,0,1388,1389,3,704, - 352,0,1389,1390,7,7,0,0,1390,1391,7,8,0,0,1391,1392,5,119,0,0,1392, - 1393,3,654,327,0,1393,1394,5,65,0,0,1394,1395,5,52,0,0,1395,1398, - 5,586,0,0,1396,1397,7,9,0,0,1397,1399,3,704,352,0,1398,1396,1,0, - 0,0,1398,1399,1,0,0,0,1399,1400,1,0,0,0,1400,1401,3,422,211,0,1401, - 45,1,0,0,0,1402,1404,5,194,0,0,1403,1405,5,552,0,0,1404,1403,1,0, - 0,0,1404,1405,1,0,0,0,1405,1406,1,0,0,0,1406,1407,3,48,24,0,1407, - 47,1,0,0,0,1408,1420,3,708,354,0,1409,1410,5,866,0,0,1410,1415,3, - 708,354,0,1411,1412,5,868,0,0,1412,1414,3,708,354,0,1413,1411,1, - 0,0,0,1414,1417,1,0,0,0,1415,1413,1,0,0,0,1415,1416,1,0,0,0,1416, - 1418,1,0,0,0,1417,1415,1,0,0,0,1418,1419,5,867,0,0,1419,1421,1,0, - 0,0,1420,1409,1,0,0,0,1420,1421,1,0,0,0,1421,1422,1,0,0,0,1422,1423, - 5,13,0,0,1423,1424,5,866,0,0,1424,1425,3,10,5,0,1425,1428,5,867, - 0,0,1426,1427,5,868,0,0,1427,1429,3,48,24,0,1428,1426,1,0,0,0,1428, - 1429,1,0,0,0,1429,49,1,0,0,0,1430,1432,5,34,0,0,1431,1433,3,764, - 382,0,1432,1431,1,0,0,0,1432,1433,1,0,0,0,1433,1437,1,0,0,0,1434, - 1435,5,308,0,0,1435,1436,5,857,0,0,1436,1438,7,10,0,0,1437,1434, - 1,0,0,0,1437,1438,1,0,0,0,1438,1440,1,0,0,0,1439,1441,3,58,29,0, - 1440,1439,1,0,0,0,1440,1441,1,0,0,0,1441,1445,1,0,0,0,1442,1443, - 5,162,0,0,1443,1444,5,591,0,0,1444,1446,7,11,0,0,1445,1442,1,0,0, - 0,1445,1446,1,0,0,0,1446,1447,1,0,0,0,1447,1448,5,684,0,0,1448,1453, - 3,636,318,0,1449,1450,5,866,0,0,1450,1451,3,662,331,0,1451,1452, - 5,867,0,0,1452,1454,1,0,0,0,1453,1449,1,0,0,0,1453,1454,1,0,0,0, - 1454,1455,1,0,0,0,1455,1475,5,13,0,0,1456,1458,5,866,0,0,1457,1459, - 3,46,23,0,1458,1457,1,0,0,0,1458,1459,1,0,0,0,1459,1460,1,0,0,0, - 1460,1461,3,204,102,0,1461,1462,5,867,0,0,1462,1476,1,0,0,0,1463, - 1465,3,46,23,0,1464,1463,1,0,0,0,1464,1465,1,0,0,0,1465,1466,1,0, - 0,0,1466,1473,3,204,102,0,1467,1469,5,194,0,0,1468,1470,7,12,0,0, - 1469,1468,1,0,0,0,1469,1470,1,0,0,0,1470,1471,1,0,0,0,1471,1472, - 5,27,0,0,1472,1474,5,121,0,0,1473,1467,1,0,0,0,1473,1474,1,0,0,0, - 1474,1476,1,0,0,0,1475,1456,1,0,0,0,1475,1464,1,0,0,0,1476,51,1, - 0,0,0,1477,1479,5,42,0,0,1478,1477,1,0,0,0,1478,1479,1,0,0,0,1479, - 1480,1,0,0,0,1480,1482,3,54,27,0,1481,1483,5,857,0,0,1482,1481,1, - 0,0,0,1482,1483,1,0,0,0,1483,1486,1,0,0,0,1484,1487,3,690,345,0, - 1485,1487,5,42,0,0,1486,1484,1,0,0,0,1486,1485,1,0,0,0,1487,1511, - 1,0,0,0,1488,1490,5,42,0,0,1489,1488,1,0,0,0,1489,1490,1,0,0,0,1490, - 1491,1,0,0,0,1491,1493,5,28,0,0,1492,1494,5,857,0,0,1493,1492,1, - 0,0,0,1493,1494,1,0,0,0,1494,1495,1,0,0,0,1495,1511,3,692,346,0, - 1496,1498,5,42,0,0,1497,1496,1,0,0,0,1497,1498,1,0,0,0,1498,1499, - 1,0,0,0,1499,1501,5,376,0,0,1500,1502,5,857,0,0,1501,1500,1,0,0, - 0,1501,1502,1,0,0,0,1502,1503,1,0,0,0,1503,1511,5,882,0,0,1504,1505, - 5,135,0,0,1505,1507,5,515,0,0,1506,1508,5,857,0,0,1507,1506,1,0, - 0,0,1507,1508,1,0,0,0,1508,1509,1,0,0,0,1509,1511,7,13,0,0,1510, - 1478,1,0,0,0,1510,1489,1,0,0,0,1510,1497,1,0,0,0,1510,1504,1,0,0, - 0,1511,53,1,0,0,0,1512,1513,5,26,0,0,1513,1518,5,155,0,0,1514,1518, - 5,823,0,0,1515,1516,5,224,0,0,1516,1518,5,155,0,0,1517,1512,1,0, - 0,0,1517,1514,1,0,0,0,1517,1515,1,0,0,0,1518,55,1,0,0,0,1519,1522, - 7,14,0,0,1520,1521,5,866,0,0,1521,1523,5,867,0,0,1522,1520,1,0,0, - 0,1522,1523,1,0,0,0,1523,57,1,0,0,0,1524,1525,5,364,0,0,1525,1528, - 5,857,0,0,1526,1529,3,686,343,0,1527,1529,3,56,28,0,1528,1526,1, - 0,0,0,1528,1527,1,0,0,0,1529,59,1,0,0,0,1530,1531,5,311,0,0,1531, - 1535,3,62,31,0,1532,1534,3,64,32,0,1533,1532,1,0,0,0,1534,1537,1, - 0,0,0,1535,1533,1,0,0,0,1535,1536,1,0,0,0,1536,1565,1,0,0,0,1537, - 1535,1,0,0,0,1538,1541,5,387,0,0,1539,1542,3,714,357,0,1540,1542, - 3,806,403,0,1541,1539,1,0,0,0,1541,1540,1,0,0,0,1542,1543,1,0,0, - 0,1543,1552,3,66,33,0,1544,1545,5,641,0,0,1545,1549,3,62,31,0,1546, - 1548,3,64,32,0,1547,1546,1,0,0,0,1548,1551,1,0,0,0,1549,1547,1,0, - 0,0,1549,1550,1,0,0,0,1550,1553,1,0,0,0,1551,1549,1,0,0,0,1552,1544, - 1,0,0,0,1552,1553,1,0,0,0,1553,1562,1,0,0,0,1554,1555,5,379,0,0, - 1555,1559,3,62,31,0,1556,1558,3,64,32,0,1557,1556,1,0,0,0,1558,1561, - 1,0,0,0,1559,1557,1,0,0,0,1559,1560,1,0,0,0,1560,1563,1,0,0,0,1561, - 1559,1,0,0,0,1562,1554,1,0,0,0,1562,1563,1,0,0,0,1563,1565,1,0,0, - 0,1564,1530,1,0,0,0,1564,1538,1,0,0,0,1565,61,1,0,0,0,1566,1571, - 5,287,0,0,1567,1571,3,718,359,0,1568,1571,3,714,357,0,1569,1571, - 3,806,403,0,1570,1566,1,0,0,0,1570,1567,1,0,0,0,1570,1568,1,0,0, - 0,1570,1569,1,0,0,0,1571,63,1,0,0,0,1572,1573,5,853,0,0,1573,1576, - 5,87,0,0,1574,1577,3,714,357,0,1575,1577,3,806,403,0,1576,1574,1, - 0,0,0,1576,1575,1,0,0,0,1577,1578,1,0,0,0,1578,1579,3,66,33,0,1579, - 65,1,0,0,0,1580,1594,3,832,416,0,1581,1594,5,223,0,0,1582,1594,5, - 242,0,0,1583,1594,5,243,0,0,1584,1594,5,244,0,0,1585,1594,5,245, - 0,0,1586,1594,5,246,0,0,1587,1594,5,247,0,0,1588,1594,5,248,0,0, - 1589,1594,5,249,0,0,1590,1594,5,250,0,0,1591,1594,5,251,0,0,1592, - 1594,5,252,0,0,1593,1580,1,0,0,0,1593,1581,1,0,0,0,1593,1582,1,0, - 0,0,1593,1583,1,0,0,0,1593,1584,1,0,0,0,1593,1585,1,0,0,0,1593,1586, - 1,0,0,0,1593,1587,1,0,0,0,1593,1588,1,0,0,0,1593,1589,1,0,0,0,1593, - 1590,1,0,0,0,1593,1591,1,0,0,0,1593,1592,1,0,0,0,1594,67,1,0,0,0, - 1595,1601,5,375,0,0,1596,1601,5,368,0,0,1597,1598,5,368,0,0,1598, - 1599,5,119,0,0,1599,1601,5,598,0,0,1600,1595,1,0,0,0,1600,1596,1, - 0,0,0,1600,1597,1,0,0,0,1601,69,1,0,0,0,1602,1603,5,188,0,0,1603, - 1604,7,15,0,0,1604,71,1,0,0,0,1605,1607,5,443,0,0,1606,1608,5,857, - 0,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,1609,1,0,0,0,1609,1628, - 3,716,358,0,1610,1628,3,70,35,0,1611,1612,5,194,0,0,1612,1613,5, - 525,0,0,1613,1628,3,708,354,0,1614,1615,5,340,0,0,1615,1628,5,882, - 0,0,1616,1628,7,16,0,0,1617,1619,5,825,0,0,1618,1620,5,857,0,0,1619, - 1618,1,0,0,0,1619,1620,1,0,0,0,1620,1621,1,0,0,0,1621,1628,5,882, - 0,0,1622,1624,5,833,0,0,1623,1625,5,857,0,0,1624,1623,1,0,0,0,1624, - 1625,1,0,0,0,1625,1626,1,0,0,0,1626,1628,5,882,0,0,1627,1605,1,0, - 0,0,1627,1610,1,0,0,0,1627,1611,1,0,0,0,1627,1614,1,0,0,0,1627,1616, - 1,0,0,0,1627,1617,1,0,0,0,1627,1622,1,0,0,0,1628,73,1,0,0,0,1629, - 1631,7,17,0,0,1630,1629,1,0,0,0,1630,1631,1,0,0,0,1631,1632,1,0, - 0,0,1632,1633,3,708,354,0,1633,1634,3,728,364,0,1634,75,1,0,0,0, - 1635,1636,5,340,0,0,1636,1659,5,882,0,0,1637,1638,5,444,0,0,1638, - 1659,5,162,0,0,1639,1641,5,114,0,0,1640,1639,1,0,0,0,1640,1641,1, - 0,0,0,1641,1642,1,0,0,0,1642,1659,5,47,0,0,1643,1644,5,354,0,0,1644, - 1654,5,162,0,0,1645,1646,5,502,0,0,1646,1654,5,162,0,0,1647,1648, - 5,136,0,0,1648,1649,5,162,0,0,1649,1654,5,360,0,0,1650,1651,5,112, - 0,0,1651,1652,5,162,0,0,1652,1654,5,360,0,0,1653,1643,1,0,0,0,1653, - 1645,1,0,0,0,1653,1647,1,0,0,0,1653,1650,1,0,0,0,1654,1659,1,0,0, - 0,1655,1656,5,162,0,0,1656,1657,5,591,0,0,1657,1659,7,11,0,0,1658, - 1635,1,0,0,0,1658,1637,1,0,0,0,1658,1640,1,0,0,0,1658,1653,1,0,0, - 0,1658,1655,1,0,0,0,1659,77,1,0,0,0,1660,1661,5,421,0,0,1661,1675, - 5,882,0,0,1662,1663,5,39,0,0,1663,1675,5,882,0,0,1664,1665,5,678, - 0,0,1665,1675,5,882,0,0,1666,1667,5,529,0,0,1667,1675,5,882,0,0, - 1668,1669,5,601,0,0,1669,1675,5,882,0,0,1670,1671,5,519,0,0,1671, - 1675,5,882,0,0,1672,1673,5,537,0,0,1673,1675,3,714,357,0,1674,1660, - 1,0,0,0,1674,1662,1,0,0,0,1674,1664,1,0,0,0,1674,1666,1,0,0,0,1674, - 1668,1,0,0,0,1674,1670,1,0,0,0,1674,1672,1,0,0,0,1675,79,1,0,0,0, - 1676,1677,5,866,0,0,1677,1682,3,82,41,0,1678,1679,5,868,0,0,1679, - 1681,3,82,41,0,1680,1678,1,0,0,0,1681,1684,1,0,0,0,1682,1680,1,0, - 0,0,1682,1683,1,0,0,0,1683,1685,1,0,0,0,1684,1682,1,0,0,0,1685,1686, - 5,867,0,0,1686,81,1,0,0,0,1687,1688,3,664,332,0,1688,1689,3,88,44, - 0,1689,1771,1,0,0,0,1690,1692,7,18,0,0,1691,1693,3,644,322,0,1692, - 1691,1,0,0,0,1692,1693,1,0,0,0,1693,1695,1,0,0,0,1694,1696,3,70, - 35,0,1695,1694,1,0,0,0,1695,1696,1,0,0,0,1696,1697,1,0,0,0,1697, - 1701,3,740,370,0,1698,1700,3,72,36,0,1699,1698,1,0,0,0,1700,1703, - 1,0,0,0,1701,1699,1,0,0,0,1701,1702,1,0,0,0,1702,1771,1,0,0,0,1703, - 1701,1,0,0,0,1704,1706,7,19,0,0,1705,1707,7,18,0,0,1706,1705,1,0, - 0,0,1706,1707,1,0,0,0,1707,1709,1,0,0,0,1708,1710,3,644,322,0,1709, - 1708,1,0,0,0,1709,1710,1,0,0,0,1710,1711,1,0,0,0,1711,1715,3,740, - 370,0,1712,1714,3,72,36,0,1713,1712,1,0,0,0,1714,1717,1,0,0,0,1715, - 1713,1,0,0,0,1715,1716,1,0,0,0,1716,1771,1,0,0,0,1717,1715,1,0,0, - 0,1718,1720,3,86,43,0,1719,1718,1,0,0,0,1719,1720,1,0,0,0,1720,1721, - 1,0,0,0,1721,1722,5,131,0,0,1722,1724,5,92,0,0,1723,1725,3,70,35, - 0,1724,1723,1,0,0,0,1724,1725,1,0,0,0,1725,1726,1,0,0,0,1726,1730, - 3,740,370,0,1727,1729,3,72,36,0,1728,1727,1,0,0,0,1729,1732,1,0, - 0,0,1730,1728,1,0,0,0,1730,1731,1,0,0,0,1731,1771,1,0,0,0,1732,1730, - 1,0,0,0,1733,1735,3,86,43,0,1734,1733,1,0,0,0,1734,1735,1,0,0,0, - 1735,1736,1,0,0,0,1736,1738,5,182,0,0,1737,1739,7,18,0,0,1738,1737, - 1,0,0,0,1738,1739,1,0,0,0,1739,1741,1,0,0,0,1740,1742,3,644,322, - 0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742,1744,1,0,0,0,1743,1745, - 3,70,35,0,1744,1743,1,0,0,0,1744,1745,1,0,0,0,1745,1746,1,0,0,0, - 1746,1750,3,740,370,0,1747,1749,3,72,36,0,1748,1747,1,0,0,0,1749, - 1752,1,0,0,0,1750,1748,1,0,0,0,1750,1751,1,0,0,0,1751,1771,1,0,0, - 0,1752,1750,1,0,0,0,1753,1755,3,86,43,0,1754,1753,1,0,0,0,1754,1755, - 1,0,0,0,1755,1756,1,0,0,0,1756,1757,5,67,0,0,1757,1759,5,92,0,0, - 1758,1760,3,644,322,0,1759,1758,1,0,0,0,1759,1760,1,0,0,0,1760,1761, - 1,0,0,0,1761,1762,3,740,370,0,1762,1763,3,92,46,0,1763,1771,1,0, - 0,0,1764,1765,5,27,0,0,1765,1766,5,866,0,0,1766,1767,3,806,403,0, - 1767,1768,5,867,0,0,1768,1771,1,0,0,0,1769,1771,3,84,42,0,1770,1687, - 1,0,0,0,1770,1690,1,0,0,0,1770,1704,1,0,0,0,1770,1719,1,0,0,0,1770, - 1734,1,0,0,0,1770,1754,1,0,0,0,1770,1764,1,0,0,0,1770,1769,1,0,0, - 0,1771,83,1,0,0,0,1772,1774,3,86,43,0,1773,1772,1,0,0,0,1773,1774, - 1,0,0,0,1774,1775,1,0,0,0,1775,1776,5,27,0,0,1776,1777,5,866,0,0, - 1777,1778,3,806,403,0,1778,1783,5,867,0,0,1779,1781,5,114,0,0,1780, - 1779,1,0,0,0,1780,1781,1,0,0,0,1781,1782,1,0,0,0,1782,1784,5,57, - 0,0,1783,1780,1,0,0,0,1783,1784,1,0,0,0,1784,85,1,0,0,0,1785,1787, - 5,31,0,0,1786,1788,3,708,354,0,1787,1786,1,0,0,0,1787,1788,1,0,0, - 0,1788,87,1,0,0,0,1789,1793,3,728,364,0,1790,1792,3,90,45,0,1791, - 1790,1,0,0,0,1792,1795,1,0,0,0,1793,1791,1,0,0,0,1793,1794,1,0,0, - 0,1794,89,1,0,0,0,1795,1793,1,0,0,0,1796,1840,3,724,362,0,1797,1798, - 5,42,0,0,1798,1840,3,756,378,0,1799,1840,5,686,0,0,1800,1840,5,435, - 0,0,1801,1806,5,315,0,0,1802,1803,5,119,0,0,1803,1804,5,185,0,0, - 1804,1806,3,758,379,0,1805,1801,1,0,0,0,1805,1802,1,0,0,0,1806,1840, - 1,0,0,0,1807,1809,5,131,0,0,1808,1807,1,0,0,0,1808,1809,1,0,0,0, - 1809,1810,1,0,0,0,1810,1840,5,92,0,0,1811,1813,5,182,0,0,1812,1814, - 5,92,0,0,1813,1812,1,0,0,0,1813,1814,1,0,0,0,1814,1840,1,0,0,0,1815, - 1816,5,340,0,0,1816,1840,5,882,0,0,1817,1818,5,338,0,0,1818,1840, - 7,20,0,0,1819,1820,5,647,0,0,1820,1840,7,21,0,0,1821,1840,3,92,46, - 0,1822,1823,5,28,0,0,1823,1840,3,692,346,0,1824,1825,5,71,0,0,1825, - 1827,5,9,0,0,1826,1824,1,0,0,0,1826,1827,1,0,0,0,1827,1828,1,0,0, - 0,1828,1829,5,13,0,0,1829,1830,5,866,0,0,1830,1831,3,806,403,0,1831, - 1833,5,867,0,0,1832,1834,7,22,0,0,1833,1832,1,0,0,0,1833,1834,1, - 0,0,0,1834,1840,1,0,0,0,1835,1836,5,241,0,0,1836,1837,5,42,0,0,1837, - 1840,5,682,0,0,1838,1840,3,84,42,0,1839,1796,1,0,0,0,1839,1797,1, - 0,0,0,1839,1799,1,0,0,0,1839,1800,1,0,0,0,1839,1805,1,0,0,0,1839, - 1808,1,0,0,0,1839,1811,1,0,0,0,1839,1815,1,0,0,0,1839,1817,1,0,0, - 0,1839,1819,1,0,0,0,1839,1821,1,0,0,0,1839,1822,1,0,0,0,1839,1826, - 1,0,0,0,1839,1835,1,0,0,0,1839,1838,1,0,0,0,1840,91,1,0,0,0,1841, - 1842,5,138,0,0,1842,1844,3,654,327,0,1843,1845,3,740,370,0,1844, - 1843,1,0,0,0,1844,1845,1,0,0,0,1845,1848,1,0,0,0,1846,1847,5,110, - 0,0,1847,1849,7,23,0,0,1848,1846,1,0,0,0,1848,1849,1,0,0,0,1849, - 1851,1,0,0,0,1850,1852,3,94,47,0,1851,1850,1,0,0,0,1851,1852,1,0, - 0,0,1852,93,1,0,0,0,1853,1854,5,119,0,0,1854,1855,5,44,0,0,1855, - 1859,3,96,48,0,1856,1857,5,119,0,0,1857,1858,5,185,0,0,1858,1860, - 3,96,48,0,1859,1856,1,0,0,0,1859,1860,1,0,0,0,1860,1870,1,0,0,0, - 1861,1862,5,119,0,0,1862,1863,5,185,0,0,1863,1867,3,96,48,0,1864, - 1865,5,119,0,0,1865,1866,5,44,0,0,1866,1868,3,96,48,0,1867,1864, - 1,0,0,0,1867,1868,1,0,0,0,1868,1870,1,0,0,0,1869,1853,1,0,0,0,1869, - 1861,1,0,0,0,1870,95,1,0,0,0,1871,1880,5,146,0,0,1872,1880,5,22, - 0,0,1873,1874,5,155,0,0,1874,1880,5,116,0,0,1875,1876,5,502,0,0, - 1876,1880,5,305,0,0,1877,1878,5,155,0,0,1878,1880,5,42,0,0,1879, - 1871,1,0,0,0,1879,1872,1,0,0,0,1879,1873,1,0,0,0,1879,1875,1,0,0, - 0,1879,1877,1,0,0,0,1880,97,1,0,0,0,1881,1883,5,380,0,0,1882,1884, - 5,857,0,0,1883,1882,1,0,0,0,1883,1884,1,0,0,0,1884,1886,1,0,0,0, - 1885,1887,3,694,347,0,1886,1885,1,0,0,0,1886,1887,1,0,0,0,1887,2067, - 1,0,0,0,1888,1890,5,825,0,0,1889,1891,5,857,0,0,1890,1889,1,0,0, - 0,1890,1891,1,0,0,0,1891,1892,1,0,0,0,1892,2067,5,882,0,0,1893,1895, - 5,314,0,0,1894,1896,5,857,0,0,1895,1894,1,0,0,0,1895,1896,1,0,0, - 0,1896,1897,1,0,0,0,1897,2067,3,714,357,0,1898,1900,5,315,0,0,1899, - 1901,5,857,0,0,1900,1899,1,0,0,0,1900,1901,1,0,0,0,1901,1902,1,0, - 0,0,1902,2067,3,714,357,0,1903,1905,5,316,0,0,1904,1906,5,857,0, - 0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906,1907,1,0,0,0,1907,2067, - 3,714,357,0,1908,1910,5,42,0,0,1909,1908,1,0,0,0,1909,1910,1,0,0, - 0,1910,1911,1,0,0,0,1911,1913,3,54,27,0,1912,1914,5,857,0,0,1913, - 1912,1,0,0,0,1913,1914,1,0,0,0,1914,1917,1,0,0,0,1915,1918,3,690, - 345,0,1916,1918,5,42,0,0,1917,1915,1,0,0,0,1917,1916,1,0,0,0,1918, - 2067,1,0,0,0,1919,1921,7,24,0,0,1920,1922,5,857,0,0,1921,1920,1, - 0,0,0,1921,1922,1,0,0,0,1922,1923,1,0,0,0,1923,2067,7,25,0,0,1924, - 1926,5,42,0,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0,1926,1927,1,0, - 0,0,1927,1929,5,28,0,0,1928,1930,5,857,0,0,1929,1928,1,0,0,0,1929, - 1930,1,0,0,0,1930,1931,1,0,0,0,1931,2067,3,692,346,0,1932,1934,5, - 340,0,0,1933,1935,5,857,0,0,1934,1933,1,0,0,0,1934,1935,1,0,0,0, - 1935,1936,1,0,0,0,1936,2067,5,882,0,0,1937,1939,5,346,0,0,1938,1940, - 5,857,0,0,1939,1938,1,0,0,0,1939,1940,1,0,0,0,1940,1941,1,0,0,0, - 1941,2067,7,26,0,0,1942,1944,5,349,0,0,1943,1945,5,857,0,0,1944, - 1943,1,0,0,0,1944,1945,1,0,0,0,1945,1946,1,0,0,0,1946,2067,5,882, - 0,0,1947,1948,7,27,0,0,1948,1950,5,367,0,0,1949,1951,5,857,0,0,1950, - 1949,1,0,0,0,1950,1951,1,0,0,0,1951,1952,1,0,0,0,1952,2067,5,882, - 0,0,1953,1955,5,365,0,0,1954,1956,5,857,0,0,1955,1954,1,0,0,0,1955, - 1956,1,0,0,0,1956,1957,1,0,0,0,1957,2067,7,25,0,0,1958,1960,5,376, - 0,0,1959,1961,5,857,0,0,1960,1959,1,0,0,0,1960,1961,1,0,0,0,1961, - 1962,1,0,0,0,1962,2067,5,882,0,0,1963,1965,7,28,0,0,1964,1966,5, - 857,0,0,1965,1964,1,0,0,0,1965,1966,1,0,0,0,1966,1967,1,0,0,0,1967, - 2067,7,25,0,0,1968,1970,7,29,0,0,1969,1971,5,857,0,0,1970,1969,1, - 0,0,0,1970,1971,1,0,0,0,1971,1972,1,0,0,0,1972,2067,3,714,357,0, - 1973,1975,5,377,0,0,1974,1976,5,857,0,0,1975,1974,1,0,0,0,1975,1976, - 1,0,0,0,1976,1977,1,0,0,0,1977,2067,3,714,357,0,1978,1979,5,82,0, - 0,1979,1981,5,367,0,0,1980,1982,5,857,0,0,1981,1980,1,0,0,0,1981, - 1982,1,0,0,0,1982,1983,1,0,0,0,1983,2067,5,882,0,0,1984,1986,5,431, - 0,0,1985,1987,5,857,0,0,1986,1985,1,0,0,0,1986,1987,1,0,0,0,1987, - 1988,1,0,0,0,1988,2067,7,30,0,0,1989,1991,5,443,0,0,1990,1992,5, - 857,0,0,1991,1990,1,0,0,0,1991,1992,1,0,0,0,1992,1993,1,0,0,0,1993, - 2067,3,716,358,0,1994,1996,5,480,0,0,1995,1997,5,857,0,0,1996,1995, - 1,0,0,0,1996,1997,1,0,0,0,1997,1998,1,0,0,0,1998,2067,3,714,357, - 0,1999,2001,5,490,0,0,2000,2002,5,857,0,0,2001,2000,1,0,0,0,2001, - 2002,1,0,0,0,2002,2003,1,0,0,0,2003,2067,3,714,357,0,2004,2006,5, - 520,0,0,2005,2007,5,857,0,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0, - 2007,2008,1,0,0,0,2008,2067,7,13,0,0,2009,2011,5,529,0,0,2010,2012, - 5,857,0,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2013,1,0,0,0, - 2013,2067,5,882,0,0,2014,2016,5,588,0,0,2015,2017,5,857,0,0,2016, - 2015,1,0,0,0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2067,7,31, - 0,0,2019,2020,5,640,0,0,2020,2067,5,664,0,0,2021,2023,5,833,0,0, - 2022,2024,5,857,0,0,2023,2022,1,0,0,0,2023,2024,1,0,0,0,2024,2025, - 1,0,0,0,2025,2067,5,882,0,0,2026,2028,5,642,0,0,2027,2029,5,857, - 0,0,2028,2027,1,0,0,0,2028,2029,1,0,0,0,2029,2030,1,0,0,0,2030,2067, - 7,13,0,0,2031,2033,5,643,0,0,2032,2034,5,857,0,0,2033,2032,1,0,0, - 0,2033,2034,1,0,0,0,2034,2035,1,0,0,0,2035,2067,7,13,0,0,2036,2038, - 5,644,0,0,2037,2039,5,857,0,0,2038,2037,1,0,0,0,2038,2039,1,0,0, - 0,2039,2042,1,0,0,0,2040,2043,5,42,0,0,2041,2043,3,714,357,0,2042, - 2040,1,0,0,0,2042,2041,1,0,0,0,2043,2067,1,0,0,0,2044,2045,5,658, - 0,0,2045,2047,3,668,334,0,2046,2048,3,102,51,0,2047,2046,1,0,0,0, - 2047,2048,1,0,0,0,2048,2067,1,0,0,0,2049,2050,5,659,0,0,2050,2051, - 5,857,0,0,2051,2067,3,100,50,0,2052,2067,3,102,51,0,2053,2055,5, - 665,0,0,2054,2056,5,857,0,0,2055,2054,1,0,0,0,2055,2056,1,0,0,0, - 2056,2057,1,0,0,0,2057,2067,7,25,0,0,2058,2060,5,181,0,0,2059,2061, - 5,857,0,0,2060,2059,1,0,0,0,2060,2061,1,0,0,0,2061,2062,1,0,0,0, - 2062,2063,5,866,0,0,2063,2064,3,652,326,0,2064,2065,5,867,0,0,2065, - 2067,1,0,0,0,2066,1881,1,0,0,0,2066,1888,1,0,0,0,2066,1893,1,0,0, - 0,2066,1898,1,0,0,0,2066,1903,1,0,0,0,2066,1909,1,0,0,0,2066,1919, - 1,0,0,0,2066,1925,1,0,0,0,2066,1932,1,0,0,0,2066,1937,1,0,0,0,2066, - 1942,1,0,0,0,2066,1947,1,0,0,0,2066,1953,1,0,0,0,2066,1958,1,0,0, - 0,2066,1963,1,0,0,0,2066,1968,1,0,0,0,2066,1973,1,0,0,0,2066,1978, - 1,0,0,0,2066,1984,1,0,0,0,2066,1989,1,0,0,0,2066,1994,1,0,0,0,2066, - 1999,1,0,0,0,2066,2004,1,0,0,0,2066,2009,1,0,0,0,2066,2014,1,0,0, - 0,2066,2019,1,0,0,0,2066,2021,1,0,0,0,2066,2026,1,0,0,0,2066,2031, - 1,0,0,0,2066,2036,1,0,0,0,2066,2044,1,0,0,0,2066,2049,1,0,0,0,2066, - 2052,1,0,0,0,2066,2053,1,0,0,0,2066,2058,1,0,0,0,2067,99,1,0,0,0, - 2068,2069,7,32,0,0,2069,101,1,0,0,0,2070,2071,5,647,0,0,2071,2072, - 7,21,0,0,2072,103,1,0,0,0,2073,2074,5,130,0,0,2074,2075,5,20,0,0, - 2075,2078,3,106,53,0,2076,2077,5,528,0,0,2077,2079,3,714,357,0,2078, - 2076,1,0,0,0,2078,2079,1,0,0,0,2079,2087,1,0,0,0,2080,2081,5,652, - 0,0,2081,2082,5,20,0,0,2082,2085,3,108,54,0,2083,2084,5,653,0,0, - 2084,2086,3,714,357,0,2085,2083,1,0,0,0,2085,2086,1,0,0,0,2086,2088, - 1,0,0,0,2087,2080,1,0,0,0,2087,2088,1,0,0,0,2088,2100,1,0,0,0,2089, - 2090,5,866,0,0,2090,2095,3,110,55,0,2091,2092,5,868,0,0,2092,2094, - 3,110,55,0,2093,2091,1,0,0,0,2094,2097,1,0,0,0,2095,2093,1,0,0,0, - 2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097,2095,1,0,0,0,2098,2099, - 5,867,0,0,2099,2101,1,0,0,0,2100,2089,1,0,0,0,2100,2101,1,0,0,0, - 2101,105,1,0,0,0,2102,2104,5,101,0,0,2103,2102,1,0,0,0,2103,2104, - 1,0,0,0,2104,2105,1,0,0,0,2105,2106,5,418,0,0,2106,2107,5,866,0, - 0,2107,2108,3,806,403,0,2108,2109,5,867,0,0,2109,2149,1,0,0,0,2110, - 2112,5,101,0,0,2111,2110,1,0,0,0,2111,2112,1,0,0,0,2112,2113,1,0, - 0,0,2113,2117,5,92,0,0,2114,2115,5,308,0,0,2115,2116,5,857,0,0,2116, - 2118,7,33,0,0,2117,2114,1,0,0,0,2117,2118,1,0,0,0,2118,2119,1,0, - 0,0,2119,2121,5,866,0,0,2120,2122,3,662,331,0,2121,2120,1,0,0,0, - 2121,2122,1,0,0,0,2122,2123,1,0,0,0,2123,2149,5,867,0,0,2124,2134, - 5,134,0,0,2125,2126,5,866,0,0,2126,2127,3,806,403,0,2127,2128,5, - 867,0,0,2128,2135,1,0,0,0,2129,2130,5,337,0,0,2130,2131,5,866,0, - 0,2131,2132,3,662,331,0,2132,2133,5,867,0,0,2133,2135,1,0,0,0,2134, - 2125,1,0,0,0,2134,2129,1,0,0,0,2135,2149,1,0,0,0,2136,2146,5,449, - 0,0,2137,2138,5,866,0,0,2138,2139,3,806,403,0,2139,2140,5,867,0, - 0,2140,2147,1,0,0,0,2141,2142,5,337,0,0,2142,2143,5,866,0,0,2143, - 2144,3,662,331,0,2144,2145,5,867,0,0,2145,2147,1,0,0,0,2146,2137, - 1,0,0,0,2146,2141,1,0,0,0,2147,2149,1,0,0,0,2148,2103,1,0,0,0,2148, - 2111,1,0,0,0,2148,2124,1,0,0,0,2148,2136,1,0,0,0,2149,107,1,0,0, - 0,2150,2152,5,101,0,0,2151,2150,1,0,0,0,2151,2152,1,0,0,0,2152,2153, - 1,0,0,0,2153,2154,5,418,0,0,2154,2155,5,866,0,0,2155,2156,3,806, - 403,0,2156,2157,5,867,0,0,2157,2172,1,0,0,0,2158,2160,5,101,0,0, - 2159,2158,1,0,0,0,2159,2160,1,0,0,0,2160,2161,1,0,0,0,2161,2165, - 5,92,0,0,2162,2163,5,308,0,0,2163,2164,5,857,0,0,2164,2166,7,33, - 0,0,2165,2162,1,0,0,0,2165,2166,1,0,0,0,2166,2167,1,0,0,0,2167,2168, - 5,866,0,0,2168,2169,3,662,331,0,2169,2170,5,867,0,0,2170,2172,1, - 0,0,0,2171,2151,1,0,0,0,2171,2159,1,0,0,0,2172,109,1,0,0,0,2173, - 2174,5,130,0,0,2174,2175,3,674,337,0,2175,2176,5,189,0,0,2176,2177, - 5,447,0,0,2177,2178,5,662,0,0,2178,2179,5,866,0,0,2179,2184,3,112, - 56,0,2180,2181,5,868,0,0,2181,2183,3,112,56,0,2182,2180,1,0,0,0, - 2183,2186,1,0,0,0,2184,2182,1,0,0,0,2184,2185,1,0,0,0,2185,2187, - 1,0,0,0,2186,2184,1,0,0,0,2187,2191,5,867,0,0,2188,2190,3,118,59, - 0,2189,2188,1,0,0,0,2190,2193,1,0,0,0,2191,2189,1,0,0,0,2191,2192, - 1,0,0,0,2192,2205,1,0,0,0,2193,2191,1,0,0,0,2194,2195,5,866,0,0, - 2195,2200,3,116,58,0,2196,2197,5,868,0,0,2197,2199,3,116,58,0,2198, - 2196,1,0,0,0,2199,2202,1,0,0,0,2200,2198,1,0,0,0,2200,2201,1,0,0, - 0,2201,2203,1,0,0,0,2202,2200,1,0,0,0,2203,2204,5,867,0,0,2204,2206, - 1,0,0,0,2205,2194,1,0,0,0,2205,2206,1,0,0,0,2206,2320,1,0,0,0,2207, - 2208,5,130,0,0,2208,2209,3,674,337,0,2209,2210,5,189,0,0,2210,2211, - 5,447,0,0,2211,2212,5,662,0,0,2212,2216,3,112,56,0,2213,2215,3,118, - 59,0,2214,2213,1,0,0,0,2215,2218,1,0,0,0,2216,2214,1,0,0,0,2216, - 2217,1,0,0,0,2217,2230,1,0,0,0,2218,2216,1,0,0,0,2219,2220,5,866, - 0,0,2220,2225,3,116,58,0,2221,2222,5,868,0,0,2222,2224,3,116,58, - 0,2223,2221,1,0,0,0,2224,2227,1,0,0,0,2225,2223,1,0,0,0,2225,2226, - 1,0,0,0,2226,2228,1,0,0,0,2227,2225,1,0,0,0,2228,2229,5,867,0,0, - 2229,2231,1,0,0,0,2230,2219,1,0,0,0,2230,2231,1,0,0,0,2231,2320, - 1,0,0,0,2232,2233,5,130,0,0,2233,2234,3,674,337,0,2234,2235,5,189, - 0,0,2235,2236,5,80,0,0,2236,2237,5,866,0,0,2237,2242,3,112,56,0, - 2238,2239,5,868,0,0,2239,2241,3,112,56,0,2240,2238,1,0,0,0,2241, - 2244,1,0,0,0,2242,2240,1,0,0,0,2242,2243,1,0,0,0,2243,2245,1,0,0, - 0,2244,2242,1,0,0,0,2245,2249,5,867,0,0,2246,2248,3,118,59,0,2247, - 2246,1,0,0,0,2248,2251,1,0,0,0,2249,2247,1,0,0,0,2249,2250,1,0,0, - 0,2250,2263,1,0,0,0,2251,2249,1,0,0,0,2252,2253,5,866,0,0,2253,2258, - 3,116,58,0,2254,2255,5,868,0,0,2255,2257,3,116,58,0,2256,2254,1, - 0,0,0,2257,2260,1,0,0,0,2258,2256,1,0,0,0,2258,2259,1,0,0,0,2259, - 2261,1,0,0,0,2260,2258,1,0,0,0,2261,2262,5,867,0,0,2262,2264,1,0, - 0,0,2263,2252,1,0,0,0,2263,2264,1,0,0,0,2264,2320,1,0,0,0,2265,2266, - 5,130,0,0,2266,2267,3,674,337,0,2267,2268,5,189,0,0,2268,2269,5, - 80,0,0,2269,2270,5,866,0,0,2270,2275,3,114,57,0,2271,2272,5,868, - 0,0,2272,2274,3,114,57,0,2273,2271,1,0,0,0,2274,2277,1,0,0,0,2275, - 2273,1,0,0,0,2275,2276,1,0,0,0,2276,2278,1,0,0,0,2277,2275,1,0,0, - 0,2278,2282,5,867,0,0,2279,2281,3,118,59,0,2280,2279,1,0,0,0,2281, - 2284,1,0,0,0,2282,2280,1,0,0,0,2282,2283,1,0,0,0,2283,2296,1,0,0, - 0,2284,2282,1,0,0,0,2285,2286,5,866,0,0,2286,2291,3,116,58,0,2287, - 2288,5,868,0,0,2288,2290,3,116,58,0,2289,2287,1,0,0,0,2290,2293, - 1,0,0,0,2291,2289,1,0,0,0,2291,2292,1,0,0,0,2292,2294,1,0,0,0,2293, - 2291,1,0,0,0,2294,2295,5,867,0,0,2295,2297,1,0,0,0,2296,2285,1,0, - 0,0,2296,2297,1,0,0,0,2297,2320,1,0,0,0,2298,2299,5,130,0,0,2299, - 2303,3,674,337,0,2300,2302,3,118,59,0,2301,2300,1,0,0,0,2302,2305, - 1,0,0,0,2303,2301,1,0,0,0,2303,2304,1,0,0,0,2304,2317,1,0,0,0,2305, - 2303,1,0,0,0,2306,2307,5,866,0,0,2307,2312,3,116,58,0,2308,2309, - 5,868,0,0,2309,2311,3,116,58,0,2310,2308,1,0,0,0,2311,2314,1,0,0, - 0,2312,2310,1,0,0,0,2312,2313,1,0,0,0,2313,2315,1,0,0,0,2314,2312, - 1,0,0,0,2315,2316,5,867,0,0,2316,2318,1,0,0,0,2317,2306,1,0,0,0, - 2317,2318,1,0,0,0,2318,2320,1,0,0,0,2319,2173,1,0,0,0,2319,2207, - 1,0,0,0,2319,2232,1,0,0,0,2319,2265,1,0,0,0,2319,2298,1,0,0,0,2320, - 111,1,0,0,0,2321,2325,3,726,363,0,2322,2325,3,806,403,0,2323,2325, - 5,111,0,0,2324,2321,1,0,0,0,2324,2322,1,0,0,0,2324,2323,1,0,0,0, - 2325,113,1,0,0,0,2326,2327,5,866,0,0,2327,2330,3,112,56,0,2328,2329, - 5,868,0,0,2329,2331,3,112,56,0,2330,2328,1,0,0,0,2331,2332,1,0,0, - 0,2332,2330,1,0,0,0,2332,2333,1,0,0,0,2333,2334,1,0,0,0,2334,2335, - 5,867,0,0,2335,115,1,0,0,0,2336,2337,5,652,0,0,2337,2341,3,708,354, - 0,2338,2340,3,118,59,0,2339,2338,1,0,0,0,2340,2343,1,0,0,0,2341, - 2339,1,0,0,0,2341,2342,1,0,0,0,2342,117,1,0,0,0,2343,2341,1,0,0, - 0,2344,2346,5,42,0,0,2345,2344,1,0,0,0,2345,2346,1,0,0,0,2346,2348, - 1,0,0,0,2347,2349,5,647,0,0,2348,2347,1,0,0,0,2348,2349,1,0,0,0, - 2349,2350,1,0,0,0,2350,2352,5,380,0,0,2351,2353,5,857,0,0,2352,2351, - 1,0,0,0,2352,2353,1,0,0,0,2353,2354,1,0,0,0,2354,2393,3,694,347, - 0,2355,2357,5,340,0,0,2356,2358,5,857,0,0,2357,2356,1,0,0,0,2357, - 2358,1,0,0,0,2358,2359,1,0,0,0,2359,2393,5,882,0,0,2360,2361,5,360, + 3,247,5692,8,247,1,248,1,248,3,248,5696,8,248,1,248,1,248,1,248, + 3,248,5701,8,248,1,249,1,249,1,249,1,249,1,249,3,249,5708,8,249, + 1,249,3,249,5711,8,249,1,249,1,249,1,249,1,249,3,249,5717,8,249, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,3,250,5727,8,250, + 1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,3,251,5737,8,251, + 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,3,252,5747,8,252, + 1,252,1,252,1,252,1,252,3,252,5753,8,252,1,252,1,252,1,252,1,252, + 1,252,1,252,1,252,3,252,5762,8,252,1,252,1,252,1,252,1,252,3,252, + 5768,8,252,1,252,1,252,1,252,1,252,1,252,3,252,5775,8,252,3,252, + 5777,8,252,1,253,1,253,1,253,1,254,1,254,1,254,3,254,5785,8,254, + 1,254,1,254,1,254,1,254,3,254,5791,8,254,1,254,1,254,3,254,5795, + 8,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, + 1,255,1,255,1,255,1,255,1,255,3,255,5812,8,255,1,256,1,256,1,256, + 1,257,1,257,1,257,1,257,1,257,3,257,5822,8,257,1,258,1,258,3,258, + 5826,8,258,1,258,1,258,3,258,5830,8,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,3,258,5840,8,258,1,258,1,258,1,258,3,258, + 5845,8,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,3,258,5917,8,258,1,259,1,259, + 1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259, + 1,259,1,259,1,259,3,259,5935,8,259,1,260,1,260,1,260,1,260,1,261, + 1,261,3,261,5943,8,261,1,261,1,261,1,261,1,261,3,261,5949,8,261, + 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261, + 5961,8,261,1,261,1,261,3,261,5965,8,261,1,261,1,261,1,261,1,261, + 1,261,1,261,1,261,1,261,1,261,3,261,5976,8,261,1,261,1,261,3,261, + 5980,8,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,5989, + 8,261,1,262,1,262,1,262,1,262,5,262,5995,8,262,10,262,12,262,5998, + 9,262,1,263,1,263,1,263,1,263,3,263,6004,8,263,1,264,1,264,3,264, + 6008,8,264,1,264,1,264,1,264,1,265,1,265,3,265,6015,8,265,1,265, + 1,265,1,265,3,265,6020,8,265,1,265,3,265,6023,8,265,1,265,3,265, + 6026,8,265,1,266,1,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 3,267,6037,8,267,1,268,1,268,3,268,6041,8,268,1,268,1,268,3,268, + 6045,8,268,1,268,1,268,1,268,1,268,1,268,1,268,1,269,1,269,1,269, + 1,269,1,269,5,269,6058,8,269,10,269,12,269,6061,9,269,1,269,1,269, + 1,269,1,269,5,269,6067,8,269,10,269,12,269,6070,9,269,3,269,6072, + 8,269,1,270,1,270,1,270,1,270,1,270,1,271,1,271,1,271,1,271,1,271, + 5,271,6084,8,271,10,271,12,271,6087,9,271,1,272,1,272,1,272,1,272, + 1,272,1,272,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274,1,274, + 3,274,6104,8,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274, + 1,274,1,274,1,274,3,274,6117,8,274,1,274,3,274,6120,8,274,1,274, + 1,274,3,274,6124,8,274,1,274,3,274,6127,8,274,3,274,6129,8,274,1, + 275,1,275,1,275,1,275,1,275,3,275,6136,8,275,1,275,1,275,1,275,1, + 275,1,275,3,275,6143,8,275,5,275,6145,8,275,10,275,12,275,6148,9, + 275,1,275,1,275,1,275,1,275,3,275,6154,8,275,1,275,1,275,1,275,1, + 275,1,275,3,275,6161,8,275,1,275,3,275,6164,8,275,1,275,1,275,1, + 275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,5,275, + 6178,8,275,10,275,12,275,6181,9,275,3,275,6183,8,275,1,276,1,276, + 1,276,1,276,1,276,1,276,1,276,1,276,3,276,6193,8,276,1,276,1,276, + 3,276,6197,8,276,1,276,1,276,1,276,1,276,3,276,6203,8,276,1,276, + 3,276,6206,8,276,1,276,3,276,6209,8,276,1,276,1,276,1,276,3,276, + 6214,8,276,1,276,1,276,3,276,6218,8,276,1,276,3,276,6221,8,276,1, + 276,1,276,1,276,1,276,1,276,3,276,6228,8,276,1,276,3,276,6231,8, + 276,1,276,1,276,1,276,1,276,3,276,6237,8,276,1,276,1,276,1,276,1, + 276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, + 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, + 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,3,276,6273, + 8,276,1,276,3,276,6276,8,276,1,276,1,276,1,276,1,276,1,276,1,276, + 1,276,1,276,1,276,1,276,3,276,6288,8,276,1,276,3,276,6291,8,276, + 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, + 1,276,1,276,1,276,3,276,6307,8,276,3,276,6309,8,276,1,276,1,276, + 3,276,6313,8,276,1,276,1,276,1,276,1,276,1,276,3,276,6320,8,276, + 1,276,1,276,3,276,6324,8,276,1,276,1,276,1,276,1,276,1,276,3,276, + 6331,8,276,1,276,3,276,6334,8,276,1,276,1,276,1,276,1,276,1,276, + 5,276,6341,8,276,10,276,12,276,6344,9,276,3,276,6346,8,276,1,276, + 1,276,1,276,3,276,6351,8,276,1,276,1,276,1,276,1,276,3,276,6357, + 8,276,3,276,6359,8,276,1,276,1,276,1,276,1,276,3,276,6365,8,276, + 1,276,1,276,3,276,6369,8,276,1,277,1,277,1,277,1,277,3,277,6375, + 8,277,1,277,3,277,6378,8,277,1,277,3,277,6381,8,277,1,278,1,278, + 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,3,278,6394, + 8,278,1,278,3,278,6397,8,278,1,279,1,279,1,279,1,279,3,279,6403, + 8,279,1,280,3,280,6406,8,280,1,280,1,280,1,280,1,280,1,280,1,280, + 3,280,6414,8,280,1,280,1,280,1,280,1,280,1,280,1,280,3,280,6422, + 8,280,1,281,1,281,1,281,1,281,3,281,6428,8,281,1,281,3,281,6431, + 8,281,1,281,1,281,3,281,6435,8,281,1,282,1,282,1,282,1,282,1,282, + 1,282,1,282,1,282,1,282,1,282,1,282,1,282,3,282,6449,8,282,1,283, + 1,283,1,283,1,284,1,284,1,284,1,284,1,284,5,284,6459,8,284,10,284, + 12,284,6462,9,284,1,284,1,284,1,284,1,284,1,284,3,284,6469,8,284, + 1,284,1,284,3,284,6473,8,284,1,284,1,284,1,284,1,285,1,285,3,285, + 6480,8,285,1,285,1,285,1,285,5,285,6485,8,285,10,285,12,285,6488, + 9,285,1,286,1,286,3,286,6492,8,286,1,286,1,286,1,287,1,287,1,287, + 1,287,1,287,1,287,1,287,5,287,6503,8,287,10,287,12,287,6506,9,287, + 1,288,1,288,1,288,1,288,5,288,6512,8,288,10,288,12,288,6515,9,288, + 1,289,1,289,1,289,1,289,1,289,3,289,6522,8,289,1,290,1,290,1,290, + 3,290,6527,8,290,1,290,3,290,6530,8,290,1,291,1,291,1,291,3,291, + 6535,8,291,1,291,3,291,6538,8,291,1,292,1,292,1,293,1,293,1,294, + 1,294,1,294,1,294,1,294,1,294,3,294,6550,8,294,1,295,1,295,1,295, + 3,295,6555,8,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295, + 1,295,1,295,1,295,3,295,6568,8,295,3,295,6570,8,295,1,295,1,295, + 1,295,3,295,6575,8,295,1,295,1,295,3,295,6579,8,295,1,295,3,295, + 6582,8,295,3,295,6584,8,295,1,296,1,296,1,296,1,296,1,296,3,296, + 6591,8,296,1,297,1,297,1,297,1,297,1,297,3,297,6598,8,297,1,297, + 3,297,6601,8,297,1,297,3,297,6604,8,297,1,297,1,297,1,297,1,297, + 3,297,6610,8,297,1,297,1,297,3,297,6614,8,297,1,298,1,298,1,298, + 1,298,3,298,6620,8,298,1,299,1,299,1,299,1,299,1,299,1,299,3,299, + 6628,8,299,1,299,1,299,1,300,1,300,1,300,1,300,1,300,3,300,6637, + 8,300,1,300,1,300,1,301,1,301,1,301,1,302,1,302,1,302,1,303,1,303, + 1,303,3,303,6650,8,303,1,303,1,303,1,303,3,303,6655,8,303,1,303, + 1,303,1,303,1,303,5,303,6661,8,303,10,303,12,303,6664,9,303,3,303, + 6666,8,303,1,304,1,304,1,304,3,304,6671,8,304,1,304,1,304,1,304, + 3,304,6676,8,304,1,304,1,304,1,304,1,304,5,304,6682,8,304,10,304, + 12,304,6685,9,304,3,304,6687,8,304,1,305,1,305,1,305,1,305,1,305, + 1,305,3,305,6695,8,305,1,306,1,306,3,306,6699,8,306,1,306,1,306, + 1,306,5,306,6704,8,306,10,306,12,306,6707,9,306,1,307,1,307,1,307, + 3,307,6712,8,307,1,307,3,307,6715,8,307,1,308,1,308,3,308,6719,8, + 308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,5,308, + 6730,8,308,10,308,12,308,6733,9,308,1,308,1,308,1,308,3,308,6738, + 8,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,5,308,6748, + 8,308,10,308,12,308,6751,9,308,3,308,6753,8,308,1,309,1,309,1,310, + 1,310,1,310,1,310,1,310,3,310,6762,8,310,1,310,1,310,1,310,3,310, + 6767,8,310,1,311,1,311,1,312,1,312,1,313,1,313,1,314,1,314,1,315, + 1,315,1,316,1,316,1,317,1,317,1,318,1,318,1,318,5,318,6786,8,318, + 10,318,12,318,6789,9,318,1,319,1,319,1,320,1,320,1,321,1,321,1,322, + 1,322,1,323,1,323,1,323,5,323,6802,8,323,10,323,12,323,6805,9,323, + 1,324,1,324,1,325,1,325,1,325,5,325,6812,8,325,10,325,12,325,6815, + 9,325,1,326,1,326,3,326,6819,8,326,1,327,1,327,1,327,3,327,6824, + 8,327,3,327,6826,8,327,1,327,3,327,6829,8,327,1,327,1,327,3,327, + 6833,8,327,3,327,6835,8,327,1,328,1,328,1,328,5,328,6840,8,328,10, + 328,12,328,6843,9,328,1,329,1,329,1,329,3,329,6848,8,329,3,329,6850, + 8,329,1,329,3,329,6853,8,329,1,329,1,329,3,329,6857,8,329,3,329, + 6859,8,329,1,330,1,330,1,331,1,331,1,332,1,332,1,333,1,333,1,333, + 5,333,6870,8,333,10,333,12,333,6873,9,333,1,334,1,334,1,335,1,335, + 1,335,1,335,1,335,3,335,6882,8,335,1,335,3,335,6885,8,335,1,335, + 3,335,6888,8,335,1,336,1,336,1,336,1,336,1,337,1,337,1,337,1,338, + 1,338,1,338,1,338,3,338,6901,8,338,1,339,1,339,1,340,1,340,3,340, + 6907,8,340,1,340,3,340,6910,8,340,1,341,1,341,1,342,1,342,1,342, + 1,342,3,342,6918,8,342,1,343,1,343,1,344,1,344,1,344,3,344,6925, + 8,344,1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,1,346,4,346,6943,8,346,11,346,12,346, + 6944,1,347,1,347,1,347,1,347,1,347,3,347,6952,8,347,3,347,6954,8, + 347,1,348,1,348,1,348,4,348,6959,8,348,11,348,12,348,6960,3,348, + 6963,8,348,1,349,1,349,3,349,6967,8,349,1,350,1,350,1,350,5,350, + 6972,8,350,10,350,12,350,6975,9,350,1,351,1,351,1,351,3,351,6980, + 8,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,3,352, + 6991,8,352,1,353,1,353,1,353,1,353,3,353,6997,8,353,1,354,1,354, + 1,355,1,355,3,355,7003,8,355,1,356,3,356,7006,8,356,1,356,1,356, + 3,356,7010,8,356,1,356,4,356,7013,8,356,11,356,12,356,7014,1,356, + 3,356,7018,8,356,1,356,1,356,3,356,7022,8,356,1,356,1,356,3,356, + 7026,8,356,3,356,7028,8,356,1,357,1,357,1,358,3,358,7033,8,358,1, + 358,1,358,1,359,3,359,7038,8,359,1,359,1,359,1,360,1,360,1,360,1, + 360,1,360,1,360,1,360,1,360,1,360,3,360,7051,8,360,1,360,3,360,7054, + 8,360,1,361,1,361,3,361,7058,8,361,1,361,3,361,7061,8,361,1,361, + 3,361,7064,8,361,1,361,1,361,1,361,3,361,7069,8,361,1,361,1,361, + 1,361,3,361,7074,8,361,1,361,1,361,1,361,1,361,3,361,7080,8,361, + 1,361,3,361,7083,8,361,1,361,1,361,1,361,3,361,7088,8,361,1,361, + 3,361,7091,8,361,1,361,1,361,1,361,3,361,7096,8,361,1,361,3,361, + 7099,8,361,1,361,1,361,3,361,7103,8,361,1,361,5,361,7106,8,361,10, + 361,12,361,7109,9,361,1,361,1,361,3,361,7113,8,361,1,361,5,361,7116, + 8,361,10,361,12,361,7119,9,361,1,361,1,361,3,361,7123,8,361,1,361, + 3,361,7126,8,361,1,361,5,361,7129,8,361,10,361,12,361,7132,9,361, + 1,361,1,361,3,361,7136,8,361,1,361,5,361,7139,8,361,10,361,12,361, + 7142,9,361,1,361,1,361,1,361,3,361,7147,8,361,1,361,1,361,1,361, + 3,361,7152,8,361,1,361,1,361,1,361,3,361,7157,8,361,1,361,1,361, + 1,361,3,361,7162,8,361,1,361,1,361,3,361,7166,8,361,1,361,3,361, + 7169,8,361,1,361,1,361,1,361,3,361,7174,8,361,1,361,1,361,3,361, + 7178,8,361,1,361,1,361,3,361,7182,8,361,1,362,1,362,1,362,1,362, + 5,362,7188,8,362,10,362,12,362,7191,9,362,1,362,1,362,1,363,1,363, + 3,363,7197,8,363,1,363,1,363,3,363,7201,8,363,1,363,1,363,1,363, + 3,363,7206,8,363,1,363,1,363,1,363,3,363,7211,8,363,1,363,1,363, + 3,363,7215,8,363,3,363,7217,8,363,1,363,3,363,7220,8,363,1,364,1, + 364,1,364,1,364,1,365,1,365,1,365,1,365,1,365,1,365,1,366,1,366, + 1,366,1,366,3,366,7236,8,366,1,366,1,366,1,367,1,367,1,367,1,367, + 5,367,7244,8,367,10,367,12,367,7247,9,367,1,367,1,367,1,368,1,368, + 1,368,5,368,7254,8,368,10,368,12,368,7257,9,368,1,369,1,369,1,369, + 1,369,5,369,7263,8,369,10,369,12,369,7266,9,369,1,370,1,370,1,370, + 1,370,5,370,7272,8,370,10,370,12,370,7275,9,370,1,370,1,370,1,371, + 1,371,3,371,7281,8,371,1,372,1,372,1,372,5,372,7286,8,372,10,372, + 12,372,7289,9,372,1,373,1,373,1,373,5,373,7294,8,373,10,373,12,373, + 7297,9,373,1,374,1,374,1,374,5,374,7302,8,374,10,374,12,374,7305, + 9,374,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,3,375, + 7316,8,375,1,375,1,375,1,375,1,375,1,375,3,375,7323,8,375,1,375, + 1,375,1,375,1,375,1,375,1,375,1,375,1,375,3,375,7333,8,375,1,376, + 1,376,1,376,3,376,7338,8,376,1,376,3,376,7341,8,376,1,376,1,376, + 1,376,3,376,7346,8,376,1,376,3,376,7349,8,376,1,377,1,377,1,377, + 1,378,1,378,1,378,1,378,1,379,1,379,1,379,1,380,1,380,1,380,1,380, + 1,380,1,380,3,380,7367,8,380,1,380,1,380,1,380,1,380,1,380,3,380, + 7374,8,380,1,380,1,380,1,380,3,380,7379,8,380,1,381,1,381,1,381, + 3,381,7384,8,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 4,381,7416,8,381,11,381,12,381,7417,1,381,1,381,3,381,7422,8,381, + 1,381,1,381,1,381,1,381,4,381,7428,8,381,11,381,12,381,7429,1,381, + 1,381,3,381,7434,8,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 3,381,7443,8,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7451, + 8,381,1,381,1,381,1,381,3,381,7456,8,381,1,381,1,381,1,381,1,381, + 1,381,1,381,3,381,7464,8,381,1,381,1,381,1,381,3,381,7469,8,381, + 1,381,1,381,1,381,3,381,7474,8,381,3,381,7476,8,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,3,381,7485,8,381,1,381,1,381,1,381, + 3,381,7490,8,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,7498, + 8,381,1,381,1,381,1,381,3,381,7503,8,381,1,381,1,381,1,381,1,381, + 1,381,1,381,3,381,7511,8,381,1,381,1,381,1,381,1,381,1,381,1,381, + 3,381,7519,8,381,1,381,3,381,7522,8,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,3,381,7532,8,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,3,381,7550,8,381,1,381,3,381,7553,8,381,1,381,3,381,7556,8, + 381,1,381,1,381,3,381,7560,8,381,1,382,1,382,1,382,1,382,1,382,1, + 383,1,383,1,383,1,383,5,383,7571,8,383,10,383,12,383,7574,9,383, + 1,383,1,383,1,383,1,383,1,383,3,383,7581,8,383,1,384,1,384,3,384, + 7585,8,384,1,385,1,385,1,385,3,385,7590,8,385,1,385,1,385,1,385, + 3,385,7595,8,385,1,385,1,385,1,385,1,385,3,385,7601,8,385,1,385, + 1,385,1,385,3,385,7606,8,385,1,385,1,385,3,385,7610,8,385,1,385, + 1,385,1,385,3,385,7615,8,385,1,385,1,385,1,385,3,385,7620,8,385, + 1,385,1,385,1,385,3,385,7625,8,385,1,385,1,385,1,385,1,385,1,385, + 1,385,5,385,7633,8,385,10,385,12,385,7636,9,385,3,385,7638,8,385, + 1,385,1,385,3,385,7642,8,385,1,385,1,385,3,385,7646,8,385,1,386, + 1,386,1,386,1,386,1,386,3,386,7653,8,386,1,386,1,386,3,386,7657, + 8,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,3,386,7686,8,386,1,387,1,387, + 1,387,1,387,1,387,1,387,3,387,7694,8,387,1,388,3,388,7697,8,388, + 1,388,3,388,7700,8,388,1,388,3,388,7703,8,388,1,388,3,388,7706,8, + 388,1,389,1,389,1,390,1,390,1,390,1,391,1,391,1,392,1,392,3,392, + 7717,8,392,1,393,1,393,1,393,1,393,1,393,1,394,1,394,1,394,1,394, + 1,394,1,394,1,394,3,394,7731,8,394,1,395,1,395,1,395,1,395,1,395, + 5,395,7738,8,395,10,395,12,395,7741,9,395,1,396,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,3,396,7767, + 8,396,1,397,1,397,1,397,1,397,1,397,1,398,1,398,1,398,5,398,7777, + 8,398,10,398,12,398,7780,9,398,1,399,1,399,1,399,1,399,3,399,7786, + 8,399,1,400,1,400,1,400,1,400,1,400,1,400,3,400,7794,8,400,1,400, + 1,400,1,400,3,400,7799,8,400,1,400,1,400,1,400,1,400,5,400,7805, + 8,400,10,400,12,400,7808,9,400,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,401,3,401,7819,8,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,1,401,1,401,3,401,7832,8,401,1,401,1,401, + 1,401,1,401,3,401,7838,8,401,1,401,1,401,1,401,1,401,3,401,7844, + 8,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,3,401,7860,8,401,1,401,1,401,1,401,1,401, + 3,401,7866,8,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,5,401, + 7875,8,401,10,401,12,401,7878,9,401,1,402,1,402,1,402,1,402,1,402, + 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, + 1,402,5,402,7897,8,402,10,402,12,402,7900,9,402,1,402,1,402,1,402, + 1,402,1,402,1,402,1,402,4,402,7909,8,402,11,402,12,402,7910,1,402, + 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, + 1,402,1,402,1,402,3,402,7928,8,402,1,402,1,402,1,402,1,402,1,402, + 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,5,402, + 7945,8,402,10,402,12,402,7948,9,402,1,403,1,403,1,404,1,404,1,404, + 1,404,1,404,1,404,1,404,1,404,3,404,7960,8,404,1,405,1,405,1,405, + 1,405,1,405,1,405,1,405,3,405,7969,8,405,1,406,1,406,1,406,1,406, + 1,406,1,406,1,406,3,406,7978,8,406,1,407,1,407,1,407,1,407,1,407, + 1,407,1,407,3,407,7987,8,407,1,408,1,408,1,409,1,409,1,409,1,409, + 1,409,3,409,7996,8,409,1,410,1,410,1,411,1,411,1,412,1,412,1,413, + 1,413,1,414,1,414,1,415,1,415,1,416,1,416,1,416,0,5,208,210,800, + 802,804,417,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36, + 38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80, + 82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118, + 120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150, + 152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182, + 184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214, + 216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246, + 248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278, + 280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310, + 312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342, + 344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374, + 376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406, + 408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438, + 440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470, + 472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502, + 504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534, + 536,538,540,542,544,546,548,550,552,554,556,558,560,562,564,566, + 568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,598, + 600,602,604,606,608,610,612,614,616,618,620,622,624,626,628,630, + 632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662, + 664,666,668,670,672,674,676,678,680,682,684,686,688,690,692,694, + 696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726, + 728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758, + 760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790, + 792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822, + 824,826,828,830,832,0,160,2,0,39,39,152,152,2,0,508,508,514,514, + 3,0,69,69,161,161,182,182,3,0,42,42,357,357,430,430,4,0,42,42,389, + 389,505,505,595,595,2,0,494,494,882,882,2,0,79,79,143,143,2,0,16, + 16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538,538,3,0,486,486, + 661,661,670,670,2,0,364,364,436,436,2,0,325,325,450,450,2,0,42,42, + 871,872,2,0,37,37,678,678,2,0,323,323,418,418,2,0,435,435,686,686, + 3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0,69,69,161,161,3,0,42, + 42,374,374,403,403,3,0,42,42,370,370,802,802,2,0,648,648,685,685, + 3,0,408,408,526,526,597,597,2,0,329,329,522,522,1,0,871,872,2,0, + 882,882,889,889,2,0,82,82,360,360,2,0,523,523,882,882,2,0,524,524, + 882,882,3,0,402,402,445,445,502,502,7,0,42,42,342,342,345,345,374, + 374,403,403,554,554,889,889,2,0,494,494,506,506,1,0,872,873,2,0, + 6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0,42,42,357,357,430,430, + 434,434,2,0,368,368,375,375,2,0,369,369,425,425,2,0,13,13,176,176, + 2,0,194,194,690,690,2,0,22,22,146,146,3,0,43,43,76,76,107,107,2, + 0,7,7,49,49,2,0,107,107,347,347,2,0,337,337,398,398,2,0,102,102, + 587,587,2,0,43,43,107,107,3,0,59,59,181,181,828,828,2,0,185,185, + 594,594,2,0,159,159,503,503,4,0,402,402,445,445,501,501,542,542, + 2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66,79,79,187,187,2,0, + 35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1,0,637,638,2,0,173, + 173,752,752,2,0,413,413,593,593,2,0,228,228,453,453,2,0,563,563, + 598,598,8,0,108,108,455,455,459,460,462,462,464,464,467,476,499, + 499,557,557,6,0,456,458,461,461,463,463,465,465,477,477,558,558, + 7,0,109,109,411,411,416,416,454,454,466,466,573,573,617,617,2,0, + 116,116,882,882,2,0,118,119,507,507,7,0,499,499,557,557,606,609, + 611,611,619,619,622,628,630,632,6,0,558,558,610,610,612,612,614, + 616,618,618,620,620,7,0,412,412,416,416,573,573,613,613,617,617, + 621,621,629,629,3,0,70,70,118,119,507,507,2,0,438,438,639,639,2, + 0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577,577,2,0,51,51, + 362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340,2,0,678,678,835, + 835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492,492,3,0,13,13, + 20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183,1,0,873,874, + 2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549,549,2,0,115, + 115,450,450,4,0,208,208,210,210,216,216,649,649,3,0,413,413,531, + 531,893,894,2,0,841,841,857,857,2,0,318,318,559,559,2,0,68,68,80, + 80,3,0,132,132,178,178,385,385,2,0,493,493,645,645,2,0,383,383,688, + 688,3,0,82,82,93,93,426,426,4,0,413,413,450,450,531,532,593,593, + 2,0,645,645,683,683,2,0,349,349,548,548,6,0,228,228,380,380,382, + 382,410,410,556,556,599,599,2,0,45,46,62,62,3,0,442,442,663,663, + 666,666,10,0,332,332,339,339,351,353,359,359,487,487,495,495,650, + 650,657,657,822,822,832,832,2,0,36,36,170,170,2,0,117,117,831,831, + 11,0,332,332,339,339,351,353,359,359,487,487,495,495,578,578,650, + 650,657,657,822,822,832,832,2,0,870,870,891,892,1,0,892,893,2,0, + 348,348,797,808,3,0,871,874,883,883,885,885,2,0,63,63,179,179,2, + 0,116,116,886,886,5,0,26,26,224,226,233,233,235,238,498,498,2,0, + 26,26,224,224,2,0,26,26,224,225,1,0,198,209,3,0,184,184,197,197, + 596,596,2,0,213,218,403,403,6,0,219,219,230,230,232,232,234,234, + 241,241,321,322,4,0,220,223,228,229,231,231,319,319,2,0,155,155, + 239,239,2,0,442,442,813,821,2,0,228,228,498,498,5,0,202,202,208, + 208,219,220,222,222,442,442,1,0,216,217,2,0,184,184,596,596,2,0, + 202,202,208,208,2,0,189,189,682,682,2,0,287,288,294,294,3,0,152, + 152,285,288,303,303,1,0,297,298,3,0,18,18,96,96,177,177,2,0,224, + 224,228,228,2,0,219,220,222,222,3,0,14,14,45,45,830,830,3,0,258, + 258,270,271,281,281,3,0,259,261,277,280,282,284,2,0,267,267,269, + 269,2,0,265,265,268,268,2,0,263,264,274,276,2,0,134,134,587,587, + 2,0,405,405,539,539,2,0,512,512,529,529,2,0,114,114,860,860,3,0, + 63,63,179,179,674,674,2,0,139,139,151,151,3,0,7,7,309,309,602,602, + 3,0,114,114,853,854,860,861,1,0,850,856,2,0,228,228,756,796,1,0, + 809,812,5,0,717,718,734,736,743,743,749,750,752,752,1,0,696,703, + 3,0,219,223,236,236,239,239,76,0,12,12,15,15,19,19,30,30,36,37,42, + 42,48,48,55,55,57,57,59,59,74,74,95,95,117,117,122,122,125,125,131, + 131,160,160,170,170,241,241,255,262,266,266,270,271,277,284,304, + 309,311,329,331,343,345,376,378,393,395,400,402,404,406,410,413, + 415,417,426,428,428,430,434,436,454,456,463,465,473,475,476,478, + 498,500,506,508,510,512,522,525,530,533,538,540,542,544,554,556, + 562,565,572,575,575,577,578,580,605,633,647,649,665,667,674,676, + 685,687,688,690,695,704,704,706,707,709,712,714,716,719,721,726, + 727,729,733,737,738,740,742,744,744,746,748,751,751,753,755,802, + 802,822,822,825,825,832,833,838,838,24,0,39,39,98,98,150,150,152, + 152,219,221,223,223,253,254,262,265,267,269,272,276,296,296,435, + 435,686,686,696,703,746,746,813,813,816,821,823,824,826,827,829, + 831,834,834,836,836,840,840,856,856,9371,0,837,1,0,0,0,2,847,1,0, + 0,0,4,856,1,0,0,0,6,858,1,0,0,0,8,899,1,0,0,0,10,918,1,0,0,0,12, + 929,1,0,0,0,14,945,1,0,0,0,16,950,1,0,0,0,18,962,1,0,0,0,20,997, + 1,0,0,0,22,1007,1,0,0,0,24,1009,1,0,0,0,26,1021,1,0,0,0,28,1051, + 1,0,0,0,30,1087,1,0,0,0,32,1138,1,0,0,0,34,1167,1,0,0,0,36,1174, + 1,0,0,0,38,1271,1,0,0,0,40,1273,1,0,0,0,42,1310,1,0,0,0,44,1374, + 1,0,0,0,46,1396,1,0,0,0,48,1402,1,0,0,0,50,1424,1,0,0,0,52,1504, + 1,0,0,0,54,1511,1,0,0,0,56,1513,1,0,0,0,58,1518,1,0,0,0,60,1558, + 1,0,0,0,62,1564,1,0,0,0,64,1566,1,0,0,0,66,1587,1,0,0,0,68,1594, + 1,0,0,0,70,1596,1,0,0,0,72,1621,1,0,0,0,74,1624,1,0,0,0,76,1652, + 1,0,0,0,78,1668,1,0,0,0,80,1670,1,0,0,0,82,1764,1,0,0,0,84,1767, + 1,0,0,0,86,1779,1,0,0,0,88,1783,1,0,0,0,90,1833,1,0,0,0,92,1835, + 1,0,0,0,94,1863,1,0,0,0,96,1873,1,0,0,0,98,2060,1,0,0,0,100,2062, + 1,0,0,0,102,2064,1,0,0,0,104,2067,1,0,0,0,106,2142,1,0,0,0,108,2165, + 1,0,0,0,110,2313,1,0,0,0,112,2318,1,0,0,0,114,2320,1,0,0,0,116,2330, + 1,0,0,0,118,2386,1,0,0,0,120,2406,1,0,0,0,122,2408,1,0,0,0,124,2443, + 1,0,0,0,126,2452,1,0,0,0,128,2459,1,0,0,0,130,2482,1,0,0,0,132,2491, + 1,0,0,0,134,2506,1,0,0,0,136,2528,1,0,0,0,138,2584,1,0,0,0,140,2880, + 1,0,0,0,142,2980,1,0,0,0,144,2982,1,0,0,0,146,2989,1,0,0,0,148,2996, + 1,0,0,0,150,3019,1,0,0,0,152,3029,1,0,0,0,154,3036,1,0,0,0,156,3043, + 1,0,0,0,158,3050,1,0,0,0,160,3059,1,0,0,0,162,3071,1,0,0,0,164,3084, + 1,0,0,0,166,3091,1,0,0,0,168,3107,1,0,0,0,170,3134,1,0,0,0,172,3136, + 1,0,0,0,174,3146,1,0,0,0,176,3150,1,0,0,0,178,3156,1,0,0,0,180,3168, + 1,0,0,0,182,3170,1,0,0,0,184,3177,1,0,0,0,186,3179,1,0,0,0,188,3228, + 1,0,0,0,190,3237,1,0,0,0,192,3239,1,0,0,0,194,3250,1,0,0,0,196,3256, + 1,0,0,0,198,3330,1,0,0,0,200,3393,1,0,0,0,202,3411,1,0,0,0,204,3495, + 1,0,0,0,206,3498,1,0,0,0,208,3510,1,0,0,0,210,3530,1,0,0,0,212,3558, + 1,0,0,0,214,3562,1,0,0,0,216,3564,1,0,0,0,218,3574,1,0,0,0,220,3594, + 1,0,0,0,222,3601,1,0,0,0,224,3603,1,0,0,0,226,3614,1,0,0,0,228,3623, + 1,0,0,0,230,3629,1,0,0,0,232,3652,1,0,0,0,234,3654,1,0,0,0,236,3690, + 1,0,0,0,238,3745,1,0,0,0,240,3754,1,0,0,0,242,3774,1,0,0,0,244,3786, + 1,0,0,0,246,3790,1,0,0,0,248,3801,1,0,0,0,250,3834,1,0,0,0,252,3855, + 1,0,0,0,254,3865,1,0,0,0,256,3869,1,0,0,0,258,3895,1,0,0,0,260,3942, + 1,0,0,0,262,3944,1,0,0,0,264,3948,1,0,0,0,266,3965,1,0,0,0,268,4016, + 1,0,0,0,270,4025,1,0,0,0,272,4035,1,0,0,0,274,4037,1,0,0,0,276,4067, + 1,0,0,0,278,4075,1,0,0,0,280,4092,1,0,0,0,282,4108,1,0,0,0,284,4145, + 1,0,0,0,286,4151,1,0,0,0,288,4160,1,0,0,0,290,4173,1,0,0,0,292,4177, + 1,0,0,0,294,4215,1,0,0,0,296,4253,1,0,0,0,298,4267,1,0,0,0,300,4275, + 1,0,0,0,302,4279,1,0,0,0,304,4285,1,0,0,0,306,4299,1,0,0,0,308,4302, + 1,0,0,0,310,4320,1,0,0,0,312,4324,1,0,0,0,314,4340,1,0,0,0,316,4342, + 1,0,0,0,318,4354,1,0,0,0,320,4358,1,0,0,0,322,4375,1,0,0,0,324,4392, + 1,0,0,0,326,4395,1,0,0,0,328,4405,1,0,0,0,330,4409,1,0,0,0,332,4419, + 1,0,0,0,334,4422,1,0,0,0,336,4427,1,0,0,0,338,4447,1,0,0,0,340,4449, + 1,0,0,0,342,4466,1,0,0,0,344,4475,1,0,0,0,346,4484,1,0,0,0,348,4486, + 1,0,0,0,350,4500,1,0,0,0,352,4514,1,0,0,0,354,4529,1,0,0,0,356,4538, + 1,0,0,0,358,4563,1,0,0,0,360,4578,1,0,0,0,362,4597,1,0,0,0,364,4627, + 1,0,0,0,366,4629,1,0,0,0,368,4631,1,0,0,0,370,4633,1,0,0,0,372,4648, + 1,0,0,0,374,4677,1,0,0,0,376,4679,1,0,0,0,378,4681,1,0,0,0,380,4683, + 1,0,0,0,382,4698,1,0,0,0,384,4700,1,0,0,0,386,4767,1,0,0,0,388,4769, + 1,0,0,0,390,4775,1,0,0,0,392,4802,1,0,0,0,394,4816,1,0,0,0,396,4827, + 1,0,0,0,398,4829,1,0,0,0,400,4835,1,0,0,0,402,4845,1,0,0,0,404,4849, + 1,0,0,0,406,4856,1,0,0,0,408,4860,1,0,0,0,410,4866,1,0,0,0,412,4873, + 1,0,0,0,414,4879,1,0,0,0,416,4885,1,0,0,0,418,4890,1,0,0,0,420,4935, + 1,0,0,0,422,4956,1,0,0,0,424,4981,1,0,0,0,426,4984,1,0,0,0,428,4990, + 1,0,0,0,430,5006,1,0,0,0,432,5021,1,0,0,0,434,5027,1,0,0,0,436,5057, + 1,0,0,0,438,5059,1,0,0,0,440,5066,1,0,0,0,442,5078,1,0,0,0,444,5084, + 1,0,0,0,446,5109,1,0,0,0,448,5113,1,0,0,0,450,5117,1,0,0,0,452,5128, + 1,0,0,0,454,5136,1,0,0,0,456,5199,1,0,0,0,458,5258,1,0,0,0,460,5360, + 1,0,0,0,462,5370,1,0,0,0,464,5372,1,0,0,0,466,5390,1,0,0,0,468,5414, + 1,0,0,0,470,5438,1,0,0,0,472,5445,1,0,0,0,474,5465,1,0,0,0,476,5474, + 1,0,0,0,478,5536,1,0,0,0,480,5538,1,0,0,0,482,5542,1,0,0,0,484,5576, + 1,0,0,0,486,5578,1,0,0,0,488,5581,1,0,0,0,490,5645,1,0,0,0,492,5664, + 1,0,0,0,494,5691,1,0,0,0,496,5695,1,0,0,0,498,5716,1,0,0,0,500,5726, + 1,0,0,0,502,5736,1,0,0,0,504,5776,1,0,0,0,506,5778,1,0,0,0,508,5781, + 1,0,0,0,510,5811,1,0,0,0,512,5813,1,0,0,0,514,5816,1,0,0,0,516,5916, + 1,0,0,0,518,5934,1,0,0,0,520,5936,1,0,0,0,522,5988,1,0,0,0,524,5990, + 1,0,0,0,526,5999,1,0,0,0,528,6005,1,0,0,0,530,6012,1,0,0,0,532,6027, + 1,0,0,0,534,6036,1,0,0,0,536,6038,1,0,0,0,538,6052,1,0,0,0,540,6073, + 1,0,0,0,542,6078,1,0,0,0,544,6088,1,0,0,0,546,6094,1,0,0,0,548,6128, + 1,0,0,0,550,6182,1,0,0,0,552,6368,1,0,0,0,554,6380,1,0,0,0,556,6396, + 1,0,0,0,558,6402,1,0,0,0,560,6421,1,0,0,0,562,6434,1,0,0,0,564,6448, + 1,0,0,0,566,6450,1,0,0,0,568,6453,1,0,0,0,570,6477,1,0,0,0,572,6489, + 1,0,0,0,574,6495,1,0,0,0,576,6507,1,0,0,0,578,6521,1,0,0,0,580,6523, + 1,0,0,0,582,6531,1,0,0,0,584,6539,1,0,0,0,586,6541,1,0,0,0,588,6543, + 1,0,0,0,590,6583,1,0,0,0,592,6590,1,0,0,0,594,6592,1,0,0,0,596,6615, + 1,0,0,0,598,6621,1,0,0,0,600,6631,1,0,0,0,602,6640,1,0,0,0,604,6643, + 1,0,0,0,606,6646,1,0,0,0,608,6667,1,0,0,0,610,6688,1,0,0,0,612,6696, + 1,0,0,0,614,6708,1,0,0,0,616,6716,1,0,0,0,618,6754,1,0,0,0,620,6766, + 1,0,0,0,622,6768,1,0,0,0,624,6770,1,0,0,0,626,6772,1,0,0,0,628,6774, + 1,0,0,0,630,6776,1,0,0,0,632,6778,1,0,0,0,634,6780,1,0,0,0,636,6782, + 1,0,0,0,638,6790,1,0,0,0,640,6792,1,0,0,0,642,6794,1,0,0,0,644,6796, + 1,0,0,0,646,6798,1,0,0,0,648,6806,1,0,0,0,650,6808,1,0,0,0,652,6818, + 1,0,0,0,654,6834,1,0,0,0,656,6836,1,0,0,0,658,6858,1,0,0,0,660,6860, + 1,0,0,0,662,6862,1,0,0,0,664,6864,1,0,0,0,666,6866,1,0,0,0,668,6874, + 1,0,0,0,670,6884,1,0,0,0,672,6889,1,0,0,0,674,6893,1,0,0,0,676,6900, + 1,0,0,0,678,6902,1,0,0,0,680,6909,1,0,0,0,682,6911,1,0,0,0,684,6917, + 1,0,0,0,686,6919,1,0,0,0,688,6924,1,0,0,0,690,6926,1,0,0,0,692,6928, + 1,0,0,0,694,6946,1,0,0,0,696,6962,1,0,0,0,698,6964,1,0,0,0,700,6968, + 1,0,0,0,702,6979,1,0,0,0,704,6990,1,0,0,0,706,6996,1,0,0,0,708,6998, + 1,0,0,0,710,7002,1,0,0,0,712,7027,1,0,0,0,714,7029,1,0,0,0,716,7032, + 1,0,0,0,718,7037,1,0,0,0,720,7053,1,0,0,0,722,7181,1,0,0,0,724,7183, + 1,0,0,0,726,7216,1,0,0,0,728,7221,1,0,0,0,730,7225,1,0,0,0,732,7231, + 1,0,0,0,734,7239,1,0,0,0,736,7250,1,0,0,0,738,7258,1,0,0,0,740,7267, + 1,0,0,0,742,7280,1,0,0,0,744,7282,1,0,0,0,746,7290,1,0,0,0,748,7298, + 1,0,0,0,750,7332,1,0,0,0,752,7348,1,0,0,0,754,7350,1,0,0,0,756,7353, + 1,0,0,0,758,7357,1,0,0,0,760,7378,1,0,0,0,762,7559,1,0,0,0,764,7561, + 1,0,0,0,766,7580,1,0,0,0,768,7582,1,0,0,0,770,7645,1,0,0,0,772,7685, + 1,0,0,0,774,7687,1,0,0,0,776,7696,1,0,0,0,778,7707,1,0,0,0,780,7709, + 1,0,0,0,782,7712,1,0,0,0,784,7716,1,0,0,0,786,7718,1,0,0,0,788,7730, + 1,0,0,0,790,7732,1,0,0,0,792,7766,1,0,0,0,794,7768,1,0,0,0,796,7773, + 1,0,0,0,798,7785,1,0,0,0,800,7798,1,0,0,0,802,7809,1,0,0,0,804,7927, + 1,0,0,0,806,7949,1,0,0,0,808,7959,1,0,0,0,810,7968,1,0,0,0,812,7977, + 1,0,0,0,814,7986,1,0,0,0,816,7988,1,0,0,0,818,7995,1,0,0,0,820,7997, + 1,0,0,0,822,7999,1,0,0,0,824,8001,1,0,0,0,826,8003,1,0,0,0,828,8005, + 1,0,0,0,830,8007,1,0,0,0,832,8009,1,0,0,0,834,836,3,2,1,0,835,834, + 1,0,0,0,836,839,1,0,0,0,837,835,1,0,0,0,837,838,1,0,0,0,838,840, + 1,0,0,0,839,837,1,0,0,0,840,841,5,0,0,1,841,1,1,0,0,0,842,844,3, + 4,2,0,843,845,5,869,0,0,844,843,1,0,0,0,844,845,1,0,0,0,845,848, + 1,0,0,0,846,848,3,6,3,0,847,842,1,0,0,0,847,846,1,0,0,0,848,3,1, + 0,0,0,849,857,3,8,4,0,850,857,3,10,5,0,851,857,3,12,6,0,852,857, + 3,14,7,0,853,857,3,16,8,0,854,857,3,20,10,0,855,857,3,22,11,0,856, + 849,1,0,0,0,856,850,1,0,0,0,856,851,1,0,0,0,856,852,1,0,0,0,856, + 853,1,0,0,0,856,854,1,0,0,0,856,855,1,0,0,0,857,5,1,0,0,0,858,859, + 5,869,0,0,859,7,1,0,0,0,860,900,3,24,12,0,861,900,3,26,13,0,862, + 900,3,28,14,0,863,900,3,30,15,0,864,900,3,32,16,0,865,900,3,536, + 268,0,866,900,3,36,18,0,867,900,3,38,19,0,868,900,3,40,20,0,869, + 900,3,42,21,0,870,900,3,44,22,0,871,900,3,50,25,0,872,900,3,34,17, + 0,873,900,3,120,60,0,874,900,3,122,61,0,875,900,3,124,62,0,876,900, + 3,126,63,0,877,900,3,128,64,0,878,900,3,130,65,0,879,900,3,132,66, + 0,880,900,3,134,67,0,881,900,3,136,68,0,882,900,3,138,69,0,883,900, + 3,144,72,0,884,900,3,146,73,0,885,900,3,148,74,0,886,900,3,150,75, + 0,887,900,3,152,76,0,888,900,3,154,77,0,889,900,3,156,78,0,890,900, + 3,158,79,0,891,900,3,160,80,0,892,900,3,162,81,0,893,900,3,164,82, + 0,894,900,3,166,83,0,895,900,3,168,84,0,896,900,3,170,85,0,897,900, + 3,172,86,0,898,900,3,176,88,0,899,860,1,0,0,0,899,861,1,0,0,0,899, + 862,1,0,0,0,899,863,1,0,0,0,899,864,1,0,0,0,899,865,1,0,0,0,899, + 866,1,0,0,0,899,867,1,0,0,0,899,868,1,0,0,0,899,869,1,0,0,0,899, + 870,1,0,0,0,899,871,1,0,0,0,899,872,1,0,0,0,899,873,1,0,0,0,899, + 874,1,0,0,0,899,875,1,0,0,0,899,876,1,0,0,0,899,877,1,0,0,0,899, + 878,1,0,0,0,899,879,1,0,0,0,899,880,1,0,0,0,899,881,1,0,0,0,899, + 882,1,0,0,0,899,883,1,0,0,0,899,884,1,0,0,0,899,885,1,0,0,0,899, + 886,1,0,0,0,899,887,1,0,0,0,899,888,1,0,0,0,899,889,1,0,0,0,899, + 890,1,0,0,0,899,891,1,0,0,0,899,892,1,0,0,0,899,893,1,0,0,0,899, + 894,1,0,0,0,899,895,1,0,0,0,899,896,1,0,0,0,899,897,1,0,0,0,899, + 898,1,0,0,0,900,9,1,0,0,0,901,919,3,204,102,0,902,919,3,206,103, + 0,903,919,3,186,93,0,904,919,3,214,107,0,905,919,3,180,90,0,906, + 919,3,202,101,0,907,919,3,178,89,0,908,919,3,192,96,0,909,919,3, + 196,98,0,910,919,3,198,99,0,911,919,3,200,100,0,912,919,3,182,91, + 0,913,919,3,184,92,0,914,919,3,246,123,0,915,919,3,216,108,0,916, + 919,3,612,306,0,917,919,3,614,307,0,918,901,1,0,0,0,918,902,1,0, + 0,0,918,903,1,0,0,0,918,904,1,0,0,0,918,905,1,0,0,0,918,906,1,0, + 0,0,918,907,1,0,0,0,918,908,1,0,0,0,918,909,1,0,0,0,918,910,1,0, + 0,0,918,911,1,0,0,0,918,912,1,0,0,0,918,913,1,0,0,0,918,914,1,0, + 0,0,918,915,1,0,0,0,918,916,1,0,0,0,918,917,1,0,0,0,919,11,1,0,0, + 0,920,930,3,316,158,0,921,930,3,318,159,0,922,930,3,320,160,0,923, + 930,3,322,161,0,924,930,3,324,162,0,925,930,3,326,163,0,926,930, + 3,328,164,0,927,930,3,330,165,0,928,930,3,332,166,0,929,920,1,0, + 0,0,929,921,1,0,0,0,929,922,1,0,0,0,929,923,1,0,0,0,929,924,1,0, + 0,0,929,925,1,0,0,0,929,926,1,0,0,0,929,927,1,0,0,0,929,928,1,0, + 0,0,930,13,1,0,0,0,931,946,3,348,174,0,932,946,3,350,175,0,933,946, + 3,352,176,0,934,946,3,354,177,0,935,946,3,356,178,0,936,946,3,358, + 179,0,937,946,3,360,180,0,938,946,3,362,181,0,939,946,3,398,199, + 0,940,946,3,400,200,0,941,946,3,402,201,0,942,946,3,404,202,0,943, + 946,3,406,203,0,944,946,3,408,204,0,945,931,1,0,0,0,945,932,1,0, + 0,0,945,933,1,0,0,0,945,934,1,0,0,0,945,935,1,0,0,0,945,936,1,0, + 0,0,945,937,1,0,0,0,945,938,1,0,0,0,945,939,1,0,0,0,945,940,1,0, + 0,0,945,941,1,0,0,0,945,942,1,0,0,0,945,943,1,0,0,0,945,944,1,0, + 0,0,946,15,1,0,0,0,947,951,3,410,205,0,948,951,3,412,206,0,949,951, + 3,414,207,0,950,947,1,0,0,0,950,948,1,0,0,0,950,949,1,0,0,0,951, + 17,1,0,0,0,952,963,3,418,209,0,953,963,3,420,210,0,954,963,3,422, + 211,0,955,963,3,426,213,0,956,963,3,428,214,0,957,963,3,430,215, + 0,958,963,3,434,217,0,959,963,3,424,212,0,960,963,3,432,216,0,961, + 963,3,436,218,0,962,952,1,0,0,0,962,953,1,0,0,0,962,954,1,0,0,0, + 962,955,1,0,0,0,962,956,1,0,0,0,962,957,1,0,0,0,962,958,1,0,0,0, + 962,959,1,0,0,0,962,960,1,0,0,0,962,961,1,0,0,0,963,19,1,0,0,0,964, + 998,3,454,227,0,965,998,3,456,228,0,966,998,3,458,229,0,967,998, + 3,460,230,0,968,998,3,464,232,0,969,998,3,476,238,0,970,998,3,478, + 239,0,971,998,3,466,233,0,972,998,3,468,234,0,973,998,3,470,235, + 0,974,998,3,472,236,0,975,998,3,522,261,0,976,998,3,524,262,0,977, + 998,3,526,263,0,978,998,3,528,264,0,979,998,3,530,265,0,980,998, + 3,538,269,0,981,998,3,542,271,0,982,998,3,544,272,0,983,998,3,546, + 273,0,984,998,3,548,274,0,985,998,3,550,275,0,986,998,3,552,276, + 0,987,998,3,566,283,0,988,998,3,568,284,0,989,998,3,570,285,0,990, + 998,3,572,286,0,991,998,3,574,287,0,992,998,3,576,288,0,993,998, + 3,580,290,0,994,998,3,582,291,0,995,998,3,584,292,0,996,998,3,586, + 293,0,997,964,1,0,0,0,997,965,1,0,0,0,997,966,1,0,0,0,997,967,1, + 0,0,0,997,968,1,0,0,0,997,969,1,0,0,0,997,970,1,0,0,0,997,971,1, + 0,0,0,997,972,1,0,0,0,997,973,1,0,0,0,997,974,1,0,0,0,997,975,1, + 0,0,0,997,976,1,0,0,0,997,977,1,0,0,0,997,978,1,0,0,0,997,979,1, + 0,0,0,997,980,1,0,0,0,997,981,1,0,0,0,997,982,1,0,0,0,997,983,1, + 0,0,0,997,984,1,0,0,0,997,985,1,0,0,0,997,986,1,0,0,0,997,987,1, + 0,0,0,997,988,1,0,0,0,997,989,1,0,0,0,997,990,1,0,0,0,997,991,1, + 0,0,0,997,992,1,0,0,0,997,993,1,0,0,0,997,994,1,0,0,0,997,995,1, + 0,0,0,997,996,1,0,0,0,998,21,1,0,0,0,999,1008,3,596,298,0,1000,1008, + 3,598,299,0,1001,1008,3,600,300,0,1002,1008,3,602,301,0,1003,1008, + 3,604,302,0,1004,1008,3,606,303,0,1005,1008,3,608,304,0,1006,1008, + 3,616,308,0,1007,999,1,0,0,0,1007,1000,1,0,0,0,1007,1001,1,0,0,0, + 1007,1002,1,0,0,0,1007,1003,1,0,0,0,1007,1004,1,0,0,0,1007,1005, + 1,0,0,0,1007,1006,1,0,0,0,1008,23,1,0,0,0,1009,1010,5,34,0,0,1010, + 1012,7,0,0,0,1011,1013,3,756,378,0,1012,1011,1,0,0,0,1012,1013,1, + 0,0,0,1013,1014,1,0,0,0,1014,1018,3,622,311,0,1015,1017,3,52,26, + 0,1016,1015,1,0,0,0,1017,1020,1,0,0,0,1018,1016,1,0,0,0,1018,1019, + 1,0,0,0,1019,25,1,0,0,0,1020,1018,1,0,0,0,1021,1023,5,34,0,0,1022, + 1024,3,58,29,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025,1,0, + 0,0,1025,1027,5,385,0,0,1026,1028,3,756,378,0,1027,1026,1,0,0,0, + 1027,1028,1,0,0,0,1028,1029,1,0,0,0,1029,1030,3,698,349,0,1030,1031, + 5,119,0,0,1031,1032,5,590,0,0,1032,1039,3,60,30,0,1033,1034,5,119, + 0,0,1034,1036,5,343,0,0,1035,1037,5,114,0,0,1036,1035,1,0,0,0,1036, + 1037,1,0,0,0,1037,1038,1,0,0,0,1038,1040,5,541,0,0,1039,1033,1,0, + 0,0,1039,1040,1,0,0,0,1040,1042,1,0,0,0,1041,1043,3,68,34,0,1042, + 1041,1,0,0,0,1042,1043,1,0,0,0,1043,1046,1,0,0,0,1044,1045,5,340, + 0,0,1045,1047,5,882,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047, + 1048,1,0,0,0,1048,1049,5,371,0,0,1049,1050,3,416,208,0,1050,27,1, + 0,0,0,1051,1053,5,34,0,0,1052,1054,7,1,0,0,1053,1052,1,0,0,0,1053, + 1054,1,0,0,0,1054,1056,1,0,0,0,1055,1057,7,2,0,0,1056,1055,1,0,0, + 0,1056,1057,1,0,0,0,1057,1058,1,0,0,0,1058,1059,5,82,0,0,1059,1061, + 3,634,317,0,1060,1062,3,70,35,0,1061,1060,1,0,0,0,1061,1062,1,0, + 0,0,1062,1063,1,0,0,0,1063,1064,5,119,0,0,1064,1065,3,648,324,0, + 1065,1069,3,734,367,0,1066,1068,3,72,36,0,1067,1066,1,0,0,0,1068, + 1071,1,0,0,0,1069,1067,1,0,0,0,1069,1070,1,0,0,0,1070,1084,1,0,0, + 0,1071,1069,1,0,0,0,1072,1074,5,308,0,0,1073,1075,5,857,0,0,1074, + 1073,1,0,0,0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1083,7,3,0, + 0,1077,1079,5,104,0,0,1078,1080,5,857,0,0,1079,1078,1,0,0,0,1079, + 1080,1,0,0,0,1080,1081,1,0,0,0,1081,1083,7,4,0,0,1082,1072,1,0,0, + 0,1082,1077,1,0,0,0,1083,1086,1,0,0,0,1084,1082,1,0,0,0,1084,1085, + 1,0,0,0,1085,29,1,0,0,0,1086,1084,1,0,0,0,1087,1088,5,34,0,0,1088, + 1089,5,451,0,0,1089,1090,5,74,0,0,1090,1091,3,702,351,0,1091,1092, + 5,6,0,0,1092,1093,5,671,0,0,1093,1099,5,882,0,0,1094,1096,5,428, + 0,0,1095,1097,5,857,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097, + 1098,1,0,0,0,1098,1100,3,710,355,0,1099,1094,1,0,0,0,1099,1100,1, + 0,0,0,1100,1106,1,0,0,0,1101,1103,5,672,0,0,1102,1104,5,857,0,0, + 1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,1105,1,0,0,0,1105,1107, + 3,710,355,0,1106,1101,1,0,0,0,1106,1107,1,0,0,0,1107,1113,1,0,0, + 0,1108,1110,5,553,0,0,1109,1111,5,857,0,0,1110,1109,1,0,0,0,1110, + 1111,1,0,0,0,1111,1112,1,0,0,0,1112,1114,3,710,355,0,1113,1108,1, + 0,0,0,1113,1114,1,0,0,0,1114,1120,1,0,0,0,1115,1117,5,504,0,0,1116, + 1118,5,857,0,0,1117,1116,1,0,0,0,1117,1118,1,0,0,0,1118,1119,1,0, + 0,0,1119,1121,3,702,351,0,1120,1115,1,0,0,0,1120,1121,1,0,0,0,1121, + 1123,1,0,0,0,1122,1124,5,687,0,0,1123,1122,1,0,0,0,1123,1124,1,0, + 0,0,1124,1130,1,0,0,0,1125,1127,5,340,0,0,1126,1128,5,857,0,0,1127, + 1126,1,0,0,0,1127,1128,1,0,0,0,1128,1129,1,0,0,0,1129,1131,5,882, + 0,0,1130,1125,1,0,0,0,1130,1131,1,0,0,0,1131,1132,1,0,0,0,1132,1134, + 5,380,0,0,1133,1135,5,857,0,0,1134,1133,1,0,0,0,1134,1135,1,0,0, + 0,1135,1136,1,0,0,0,1136,1137,3,688,344,0,1137,31,1,0,0,0,1138,1140, + 5,34,0,0,1139,1141,3,58,29,0,1140,1139,1,0,0,0,1140,1141,1,0,0,0, + 1141,1142,1,0,0,0,1142,1144,5,132,0,0,1143,1145,3,756,378,0,1144, + 1143,1,0,0,0,1144,1145,1,0,0,0,1145,1146,1,0,0,0,1146,1147,3,698, + 349,0,1147,1149,5,866,0,0,1148,1150,3,74,37,0,1149,1148,1,0,0,0, + 1149,1150,1,0,0,0,1150,1155,1,0,0,0,1151,1152,5,868,0,0,1152,1154, + 3,74,37,0,1153,1151,1,0,0,0,1154,1157,1,0,0,0,1155,1153,1,0,0,0, + 1155,1156,1,0,0,0,1156,1158,1,0,0,0,1157,1155,1,0,0,0,1158,1162, + 5,867,0,0,1159,1161,3,76,38,0,1160,1159,1,0,0,0,1161,1164,1,0,0, + 0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163,1165,1,0,0,0,1164,1162, + 1,0,0,0,1165,1166,3,416,208,0,1166,33,1,0,0,0,1167,1168,5,34,0,0, + 1168,1170,5,582,0,0,1169,1171,3,756,378,0,1170,1169,1,0,0,0,1170, + 1171,1,0,0,0,1171,1172,1,0,0,0,1172,1173,3,650,325,0,1173,35,1,0, + 0,0,1174,1175,5,34,0,0,1175,1176,5,592,0,0,1176,1177,3,702,351,0, + 1177,1178,5,67,0,0,1178,1179,5,360,0,0,1179,1180,5,692,0,0,1180, + 1181,7,5,0,0,1181,1182,5,518,0,0,1182,1183,5,866,0,0,1183,1188,3, + 78,39,0,1184,1185,5,868,0,0,1185,1187,3,78,39,0,1186,1184,1,0,0, + 0,1187,1190,1,0,0,0,1188,1186,1,0,0,0,1188,1189,1,0,0,0,1189,1191, + 1,0,0,0,1190,1188,1,0,0,0,1191,1192,5,867,0,0,1192,37,1,0,0,0,1193, + 1195,5,34,0,0,1194,1196,5,660,0,0,1195,1194,1,0,0,0,1195,1196,1, + 0,0,0,1196,1197,1,0,0,0,1197,1199,5,173,0,0,1198,1200,3,756,378, + 0,1199,1198,1,0,0,0,1199,1200,1,0,0,0,1200,1201,1,0,0,0,1201,1202, + 3,644,322,0,1202,1213,3,80,40,0,1203,1210,3,98,49,0,1204,1206,5, + 868,0,0,1205,1204,1,0,0,0,1205,1206,1,0,0,0,1206,1207,1,0,0,0,1207, + 1209,3,98,49,0,1208,1205,1,0,0,0,1209,1212,1,0,0,0,1210,1208,1,0, + 0,0,1210,1211,1,0,0,0,1211,1214,1,0,0,0,1212,1210,1,0,0,0,1213,1203, + 1,0,0,0,1213,1214,1,0,0,0,1214,1216,1,0,0,0,1215,1217,3,104,52,0, + 1216,1215,1,0,0,0,1216,1217,1,0,0,0,1217,1272,1,0,0,0,1218,1220, + 5,34,0,0,1219,1221,5,660,0,0,1220,1219,1,0,0,0,1220,1221,1,0,0,0, + 1221,1222,1,0,0,0,1222,1224,5,173,0,0,1223,1225,3,756,378,0,1224, + 1223,1,0,0,0,1224,1225,1,0,0,0,1225,1226,1,0,0,0,1226,1228,3,644, + 322,0,1227,1229,3,80,40,0,1228,1227,1,0,0,0,1228,1229,1,0,0,0,1229, + 1240,1,0,0,0,1230,1237,3,98,49,0,1231,1233,5,868,0,0,1232,1231,1, + 0,0,0,1232,1233,1,0,0,0,1233,1234,1,0,0,0,1234,1236,3,98,49,0,1235, + 1232,1,0,0,0,1236,1239,1,0,0,0,1237,1235,1,0,0,0,1237,1238,1,0,0, + 0,1238,1241,1,0,0,0,1239,1237,1,0,0,0,1240,1230,1,0,0,0,1240,1241, + 1,0,0,0,1241,1243,1,0,0,0,1242,1244,3,104,52,0,1243,1242,1,0,0,0, + 1243,1244,1,0,0,0,1244,1246,1,0,0,0,1245,1247,7,6,0,0,1246,1245, + 1,0,0,0,1246,1247,1,0,0,0,1247,1249,1,0,0,0,1248,1250,5,13,0,0,1249, + 1248,1,0,0,0,1249,1250,1,0,0,0,1250,1251,1,0,0,0,1251,1252,3,204, + 102,0,1252,1272,1,0,0,0,1253,1255,5,34,0,0,1254,1256,5,660,0,0,1255, + 1254,1,0,0,0,1255,1256,1,0,0,0,1256,1257,1,0,0,0,1257,1259,5,173, + 0,0,1258,1260,3,756,378,0,1259,1258,1,0,0,0,1259,1260,1,0,0,0,1260, + 1261,1,0,0,0,1261,1269,3,644,322,0,1262,1263,5,99,0,0,1263,1270, + 3,648,324,0,1264,1265,5,866,0,0,1265,1266,5,99,0,0,1266,1267,3,648, + 324,0,1267,1268,5,867,0,0,1268,1270,1,0,0,0,1269,1262,1,0,0,0,1269, + 1264,1,0,0,0,1270,1272,1,0,0,0,1271,1193,1,0,0,0,1271,1218,1,0,0, + 0,1271,1253,1,0,0,0,1272,39,1,0,0,0,1273,1275,5,34,0,0,1274,1276, + 5,180,0,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276,1277,1,0,0,0, + 1277,1278,5,658,0,0,1278,1282,3,660,330,0,1279,1280,5,6,0,0,1280, + 1281,5,361,0,0,1281,1283,5,882,0,0,1282,1279,1,0,0,0,1282,1283,1, + 0,0,0,1283,1289,1,0,0,0,1284,1286,5,314,0,0,1285,1287,5,857,0,0, + 1286,1285,1,0,0,0,1286,1287,1,0,0,0,1287,1288,1,0,0,0,1288,1290, + 3,710,355,0,1289,1284,1,0,0,0,1289,1290,1,0,0,0,1290,1294,1,0,0, + 0,1291,1292,5,399,0,0,1292,1293,5,857,0,0,1293,1295,3,710,355,0, + 1294,1291,1,0,0,0,1294,1295,1,0,0,0,1295,1301,1,0,0,0,1296,1298, + 5,380,0,0,1297,1299,5,857,0,0,1298,1297,1,0,0,0,1298,1299,1,0,0, + 0,1299,1300,1,0,0,0,1300,1302,3,688,344,0,1301,1296,1,0,0,0,1301, + 1302,1,0,0,0,1302,1308,1,0,0,0,1303,1305,5,825,0,0,1304,1306,5,857, + 0,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306,1307,1,0,0,0,1307,1309, + 5,882,0,0,1308,1303,1,0,0,0,1308,1309,1,0,0,0,1309,41,1,0,0,0,1310, + 1312,5,34,0,0,1311,1313,5,180,0,0,1312,1311,1,0,0,0,1312,1313,1, + 0,0,0,1313,1314,1,0,0,0,1314,1315,5,658,0,0,1315,1316,3,660,330, + 0,1316,1317,5,6,0,0,1317,1318,5,361,0,0,1318,1319,5,882,0,0,1319, + 1320,5,187,0,0,1320,1321,5,451,0,0,1321,1322,5,74,0,0,1322,1328, + 3,702,351,0,1323,1325,5,393,0,0,1324,1326,5,857,0,0,1325,1324,1, + 0,0,0,1325,1326,1,0,0,0,1326,1327,1,0,0,0,1327,1329,3,710,355,0, + 1328,1323,1,0,0,0,1328,1329,1,0,0,0,1329,1335,1,0,0,0,1330,1332, + 5,428,0,0,1331,1333,5,857,0,0,1332,1331,1,0,0,0,1332,1333,1,0,0, + 0,1333,1334,1,0,0,0,1334,1336,3,710,355,0,1335,1330,1,0,0,0,1335, + 1336,1,0,0,0,1336,1342,1,0,0,0,1337,1339,5,314,0,0,1338,1340,5,857, + 0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341,1,0,0,0,1341,1343, + 3,710,355,0,1342,1337,1,0,0,0,1342,1343,1,0,0,0,1343,1349,1,0,0, + 0,1344,1346,5,481,0,0,1345,1347,5,857,0,0,1346,1345,1,0,0,0,1346, + 1347,1,0,0,0,1347,1348,1,0,0,0,1348,1350,3,710,355,0,1349,1344,1, + 0,0,0,1349,1350,1,0,0,0,1350,1356,1,0,0,0,1351,1353,5,504,0,0,1352, + 1354,5,857,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0, + 0,0,1355,1357,3,702,351,0,1356,1351,1,0,0,0,1356,1357,1,0,0,0,1357, + 1359,1,0,0,0,1358,1360,5,687,0,0,1359,1358,1,0,0,0,1359,1360,1,0, + 0,0,1360,1366,1,0,0,0,1361,1363,5,340,0,0,1362,1364,5,857,0,0,1363, + 1362,1,0,0,0,1363,1364,1,0,0,0,1364,1365,1,0,0,0,1365,1367,5,882, + 0,0,1366,1361,1,0,0,0,1366,1367,1,0,0,0,1367,1368,1,0,0,0,1368,1370, + 5,380,0,0,1369,1371,5,857,0,0,1370,1369,1,0,0,0,1370,1371,1,0,0, + 0,1371,1372,1,0,0,0,1372,1373,3,688,344,0,1373,43,1,0,0,0,1374,1376, + 5,34,0,0,1375,1377,3,58,29,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0, + 1377,1378,1,0,0,0,1378,1380,5,178,0,0,1379,1381,3,756,378,0,1380, + 1379,1,0,0,0,1380,1381,1,0,0,0,1381,1382,1,0,0,0,1382,1383,3,698, + 349,0,1383,1384,7,7,0,0,1384,1385,7,8,0,0,1385,1386,5,119,0,0,1386, + 1387,3,648,324,0,1387,1388,5,65,0,0,1388,1389,5,52,0,0,1389,1392, + 5,586,0,0,1390,1391,7,9,0,0,1391,1393,3,698,349,0,1392,1390,1,0, + 0,0,1392,1393,1,0,0,0,1393,1394,1,0,0,0,1394,1395,3,416,208,0,1395, + 45,1,0,0,0,1396,1398,5,194,0,0,1397,1399,5,552,0,0,1398,1397,1,0, + 0,0,1398,1399,1,0,0,0,1399,1400,1,0,0,0,1400,1401,3,48,24,0,1401, + 47,1,0,0,0,1402,1414,3,702,351,0,1403,1404,5,866,0,0,1404,1409,3, + 702,351,0,1405,1406,5,868,0,0,1406,1408,3,702,351,0,1407,1405,1, + 0,0,0,1408,1411,1,0,0,0,1409,1407,1,0,0,0,1409,1410,1,0,0,0,1410, + 1412,1,0,0,0,1411,1409,1,0,0,0,1412,1413,5,867,0,0,1413,1415,1,0, + 0,0,1414,1403,1,0,0,0,1414,1415,1,0,0,0,1415,1416,1,0,0,0,1416,1417, + 5,13,0,0,1417,1418,5,866,0,0,1418,1419,3,10,5,0,1419,1422,5,867, + 0,0,1420,1421,5,868,0,0,1421,1423,3,48,24,0,1422,1420,1,0,0,0,1422, + 1423,1,0,0,0,1423,49,1,0,0,0,1424,1426,5,34,0,0,1425,1427,3,758, + 379,0,1426,1425,1,0,0,0,1426,1427,1,0,0,0,1427,1431,1,0,0,0,1428, + 1429,5,308,0,0,1429,1430,5,857,0,0,1430,1432,7,10,0,0,1431,1428, + 1,0,0,0,1431,1432,1,0,0,0,1432,1434,1,0,0,0,1433,1435,3,58,29,0, + 1434,1433,1,0,0,0,1434,1435,1,0,0,0,1435,1439,1,0,0,0,1436,1437, + 5,162,0,0,1437,1438,5,591,0,0,1438,1440,7,11,0,0,1439,1436,1,0,0, + 0,1439,1440,1,0,0,0,1440,1441,1,0,0,0,1441,1442,5,684,0,0,1442,1447, + 3,630,315,0,1443,1444,5,866,0,0,1444,1445,3,656,328,0,1445,1446, + 5,867,0,0,1446,1448,1,0,0,0,1447,1443,1,0,0,0,1447,1448,1,0,0,0, + 1448,1449,1,0,0,0,1449,1469,5,13,0,0,1450,1452,5,866,0,0,1451,1453, + 3,46,23,0,1452,1451,1,0,0,0,1452,1453,1,0,0,0,1453,1454,1,0,0,0, + 1454,1455,3,204,102,0,1455,1456,5,867,0,0,1456,1470,1,0,0,0,1457, + 1459,3,46,23,0,1458,1457,1,0,0,0,1458,1459,1,0,0,0,1459,1460,1,0, + 0,0,1460,1467,3,204,102,0,1461,1463,5,194,0,0,1462,1464,7,12,0,0, + 1463,1462,1,0,0,0,1463,1464,1,0,0,0,1464,1465,1,0,0,0,1465,1466, + 5,27,0,0,1466,1468,5,121,0,0,1467,1461,1,0,0,0,1467,1468,1,0,0,0, + 1468,1470,1,0,0,0,1469,1450,1,0,0,0,1469,1458,1,0,0,0,1470,51,1, + 0,0,0,1471,1473,5,42,0,0,1472,1471,1,0,0,0,1472,1473,1,0,0,0,1473, + 1474,1,0,0,0,1474,1476,3,54,27,0,1475,1477,5,857,0,0,1476,1475,1, + 0,0,0,1476,1477,1,0,0,0,1477,1480,1,0,0,0,1478,1481,3,684,342,0, + 1479,1481,5,42,0,0,1480,1478,1,0,0,0,1480,1479,1,0,0,0,1481,1505, + 1,0,0,0,1482,1484,5,42,0,0,1483,1482,1,0,0,0,1483,1484,1,0,0,0,1484, + 1485,1,0,0,0,1485,1487,5,28,0,0,1486,1488,5,857,0,0,1487,1486,1, + 0,0,0,1487,1488,1,0,0,0,1488,1489,1,0,0,0,1489,1505,3,686,343,0, + 1490,1492,5,42,0,0,1491,1490,1,0,0,0,1491,1492,1,0,0,0,1492,1493, + 1,0,0,0,1493,1495,5,376,0,0,1494,1496,5,857,0,0,1495,1494,1,0,0, + 0,1495,1496,1,0,0,0,1496,1497,1,0,0,0,1497,1505,5,882,0,0,1498,1499, + 5,135,0,0,1499,1501,5,515,0,0,1500,1502,5,857,0,0,1501,1500,1,0, + 0,0,1501,1502,1,0,0,0,1502,1503,1,0,0,0,1503,1505,7,13,0,0,1504, + 1472,1,0,0,0,1504,1483,1,0,0,0,1504,1491,1,0,0,0,1504,1498,1,0,0, + 0,1505,53,1,0,0,0,1506,1507,5,26,0,0,1507,1512,5,155,0,0,1508,1512, + 5,823,0,0,1509,1510,5,224,0,0,1510,1512,5,155,0,0,1511,1506,1,0, + 0,0,1511,1508,1,0,0,0,1511,1509,1,0,0,0,1512,55,1,0,0,0,1513,1516, + 7,14,0,0,1514,1515,5,866,0,0,1515,1517,5,867,0,0,1516,1514,1,0,0, + 0,1516,1517,1,0,0,0,1517,57,1,0,0,0,1518,1519,5,364,0,0,1519,1522, + 5,857,0,0,1520,1523,3,680,340,0,1521,1523,3,56,28,0,1522,1520,1, + 0,0,0,1522,1521,1,0,0,0,1523,59,1,0,0,0,1524,1525,5,311,0,0,1525, + 1529,3,62,31,0,1526,1528,3,64,32,0,1527,1526,1,0,0,0,1528,1531,1, + 0,0,0,1529,1527,1,0,0,0,1529,1530,1,0,0,0,1530,1559,1,0,0,0,1531, + 1529,1,0,0,0,1532,1535,5,387,0,0,1533,1536,3,708,354,0,1534,1536, + 3,800,400,0,1535,1533,1,0,0,0,1535,1534,1,0,0,0,1536,1537,1,0,0, + 0,1537,1546,3,66,33,0,1538,1539,5,641,0,0,1539,1543,3,62,31,0,1540, + 1542,3,64,32,0,1541,1540,1,0,0,0,1542,1545,1,0,0,0,1543,1541,1,0, + 0,0,1543,1544,1,0,0,0,1544,1547,1,0,0,0,1545,1543,1,0,0,0,1546,1538, + 1,0,0,0,1546,1547,1,0,0,0,1547,1556,1,0,0,0,1548,1549,5,379,0,0, + 1549,1553,3,62,31,0,1550,1552,3,64,32,0,1551,1550,1,0,0,0,1552,1555, + 1,0,0,0,1553,1551,1,0,0,0,1553,1554,1,0,0,0,1554,1557,1,0,0,0,1555, + 1553,1,0,0,0,1556,1548,1,0,0,0,1556,1557,1,0,0,0,1557,1559,1,0,0, + 0,1558,1524,1,0,0,0,1558,1532,1,0,0,0,1559,61,1,0,0,0,1560,1565, + 5,287,0,0,1561,1565,3,712,356,0,1562,1565,3,708,354,0,1563,1565, + 3,800,400,0,1564,1560,1,0,0,0,1564,1561,1,0,0,0,1564,1562,1,0,0, + 0,1564,1563,1,0,0,0,1565,63,1,0,0,0,1566,1567,5,853,0,0,1567,1570, + 5,87,0,0,1568,1571,3,708,354,0,1569,1571,3,800,400,0,1570,1568,1, + 0,0,0,1570,1569,1,0,0,0,1571,1572,1,0,0,0,1572,1573,3,66,33,0,1573, + 65,1,0,0,0,1574,1588,3,826,413,0,1575,1588,5,223,0,0,1576,1588,5, + 242,0,0,1577,1588,5,243,0,0,1578,1588,5,244,0,0,1579,1588,5,245, + 0,0,1580,1588,5,246,0,0,1581,1588,5,247,0,0,1582,1588,5,248,0,0, + 1583,1588,5,249,0,0,1584,1588,5,250,0,0,1585,1588,5,251,0,0,1586, + 1588,5,252,0,0,1587,1574,1,0,0,0,1587,1575,1,0,0,0,1587,1576,1,0, + 0,0,1587,1577,1,0,0,0,1587,1578,1,0,0,0,1587,1579,1,0,0,0,1587,1580, + 1,0,0,0,1587,1581,1,0,0,0,1587,1582,1,0,0,0,1587,1583,1,0,0,0,1587, + 1584,1,0,0,0,1587,1585,1,0,0,0,1587,1586,1,0,0,0,1588,67,1,0,0,0, + 1589,1595,5,375,0,0,1590,1595,5,368,0,0,1591,1592,5,368,0,0,1592, + 1593,5,119,0,0,1593,1595,5,598,0,0,1594,1589,1,0,0,0,1594,1590,1, + 0,0,0,1594,1591,1,0,0,0,1595,69,1,0,0,0,1596,1597,5,188,0,0,1597, + 1598,7,15,0,0,1598,71,1,0,0,0,1599,1601,5,443,0,0,1600,1602,5,857, + 0,0,1601,1600,1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0,0,1603,1622, + 3,710,355,0,1604,1622,3,70,35,0,1605,1606,5,194,0,0,1606,1607,5, + 525,0,0,1607,1622,3,702,351,0,1608,1609,5,340,0,0,1609,1622,5,882, + 0,0,1610,1622,7,16,0,0,1611,1613,5,825,0,0,1612,1614,5,857,0,0,1613, + 1612,1,0,0,0,1613,1614,1,0,0,0,1614,1615,1,0,0,0,1615,1622,5,882, + 0,0,1616,1618,5,833,0,0,1617,1619,5,857,0,0,1618,1617,1,0,0,0,1618, + 1619,1,0,0,0,1619,1620,1,0,0,0,1620,1622,5,882,0,0,1621,1599,1,0, + 0,0,1621,1604,1,0,0,0,1621,1605,1,0,0,0,1621,1608,1,0,0,0,1621,1610, + 1,0,0,0,1621,1611,1,0,0,0,1621,1616,1,0,0,0,1622,73,1,0,0,0,1623, + 1625,7,17,0,0,1624,1623,1,0,0,0,1624,1625,1,0,0,0,1625,1626,1,0, + 0,0,1626,1627,3,702,351,0,1627,1628,3,722,361,0,1628,75,1,0,0,0, + 1629,1630,5,340,0,0,1630,1653,5,882,0,0,1631,1632,5,444,0,0,1632, + 1653,5,162,0,0,1633,1635,5,114,0,0,1634,1633,1,0,0,0,1634,1635,1, + 0,0,0,1635,1636,1,0,0,0,1636,1653,5,47,0,0,1637,1638,5,354,0,0,1638, + 1648,5,162,0,0,1639,1640,5,502,0,0,1640,1648,5,162,0,0,1641,1642, + 5,136,0,0,1642,1643,5,162,0,0,1643,1648,5,360,0,0,1644,1645,5,112, + 0,0,1645,1646,5,162,0,0,1646,1648,5,360,0,0,1647,1637,1,0,0,0,1647, + 1639,1,0,0,0,1647,1641,1,0,0,0,1647,1644,1,0,0,0,1648,1653,1,0,0, + 0,1649,1650,5,162,0,0,1650,1651,5,591,0,0,1651,1653,7,11,0,0,1652, + 1629,1,0,0,0,1652,1631,1,0,0,0,1652,1634,1,0,0,0,1652,1647,1,0,0, + 0,1652,1649,1,0,0,0,1653,77,1,0,0,0,1654,1655,5,421,0,0,1655,1669, + 5,882,0,0,1656,1657,5,39,0,0,1657,1669,5,882,0,0,1658,1659,5,678, + 0,0,1659,1669,5,882,0,0,1660,1661,5,529,0,0,1661,1669,5,882,0,0, + 1662,1663,5,601,0,0,1663,1669,5,882,0,0,1664,1665,5,519,0,0,1665, + 1669,5,882,0,0,1666,1667,5,537,0,0,1667,1669,3,708,354,0,1668,1654, + 1,0,0,0,1668,1656,1,0,0,0,1668,1658,1,0,0,0,1668,1660,1,0,0,0,1668, + 1662,1,0,0,0,1668,1664,1,0,0,0,1668,1666,1,0,0,0,1669,79,1,0,0,0, + 1670,1671,5,866,0,0,1671,1676,3,82,41,0,1672,1673,5,868,0,0,1673, + 1675,3,82,41,0,1674,1672,1,0,0,0,1675,1678,1,0,0,0,1676,1674,1,0, + 0,0,1676,1677,1,0,0,0,1677,1679,1,0,0,0,1678,1676,1,0,0,0,1679,1680, + 5,867,0,0,1680,81,1,0,0,0,1681,1682,3,658,329,0,1682,1683,3,88,44, + 0,1683,1765,1,0,0,0,1684,1686,7,18,0,0,1685,1687,3,638,319,0,1686, + 1685,1,0,0,0,1686,1687,1,0,0,0,1687,1689,1,0,0,0,1688,1690,3,70, + 35,0,1689,1688,1,0,0,0,1689,1690,1,0,0,0,1690,1691,1,0,0,0,1691, + 1695,3,734,367,0,1692,1694,3,72,36,0,1693,1692,1,0,0,0,1694,1697, + 1,0,0,0,1695,1693,1,0,0,0,1695,1696,1,0,0,0,1696,1765,1,0,0,0,1697, + 1695,1,0,0,0,1698,1700,7,19,0,0,1699,1701,7,18,0,0,1700,1699,1,0, + 0,0,1700,1701,1,0,0,0,1701,1703,1,0,0,0,1702,1704,3,638,319,0,1703, + 1702,1,0,0,0,1703,1704,1,0,0,0,1704,1705,1,0,0,0,1705,1709,3,734, + 367,0,1706,1708,3,72,36,0,1707,1706,1,0,0,0,1708,1711,1,0,0,0,1709, + 1707,1,0,0,0,1709,1710,1,0,0,0,1710,1765,1,0,0,0,1711,1709,1,0,0, + 0,1712,1714,3,86,43,0,1713,1712,1,0,0,0,1713,1714,1,0,0,0,1714,1715, + 1,0,0,0,1715,1716,5,131,0,0,1716,1718,5,92,0,0,1717,1719,3,70,35, + 0,1718,1717,1,0,0,0,1718,1719,1,0,0,0,1719,1720,1,0,0,0,1720,1724, + 3,734,367,0,1721,1723,3,72,36,0,1722,1721,1,0,0,0,1723,1726,1,0, + 0,0,1724,1722,1,0,0,0,1724,1725,1,0,0,0,1725,1765,1,0,0,0,1726,1724, + 1,0,0,0,1727,1729,3,86,43,0,1728,1727,1,0,0,0,1728,1729,1,0,0,0, + 1729,1730,1,0,0,0,1730,1732,5,182,0,0,1731,1733,7,18,0,0,1732,1731, + 1,0,0,0,1732,1733,1,0,0,0,1733,1735,1,0,0,0,1734,1736,3,638,319, + 0,1735,1734,1,0,0,0,1735,1736,1,0,0,0,1736,1738,1,0,0,0,1737,1739, + 3,70,35,0,1738,1737,1,0,0,0,1738,1739,1,0,0,0,1739,1740,1,0,0,0, + 1740,1744,3,734,367,0,1741,1743,3,72,36,0,1742,1741,1,0,0,0,1743, + 1746,1,0,0,0,1744,1742,1,0,0,0,1744,1745,1,0,0,0,1745,1765,1,0,0, + 0,1746,1744,1,0,0,0,1747,1749,3,86,43,0,1748,1747,1,0,0,0,1748,1749, + 1,0,0,0,1749,1750,1,0,0,0,1750,1751,5,67,0,0,1751,1753,5,92,0,0, + 1752,1754,3,638,319,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754,1755, + 1,0,0,0,1755,1756,3,734,367,0,1756,1757,3,92,46,0,1757,1765,1,0, + 0,0,1758,1759,5,27,0,0,1759,1760,5,866,0,0,1760,1761,3,800,400,0, + 1761,1762,5,867,0,0,1762,1765,1,0,0,0,1763,1765,3,84,42,0,1764,1681, + 1,0,0,0,1764,1684,1,0,0,0,1764,1698,1,0,0,0,1764,1713,1,0,0,0,1764, + 1728,1,0,0,0,1764,1748,1,0,0,0,1764,1758,1,0,0,0,1764,1763,1,0,0, + 0,1765,83,1,0,0,0,1766,1768,3,86,43,0,1767,1766,1,0,0,0,1767,1768, + 1,0,0,0,1768,1769,1,0,0,0,1769,1770,5,27,0,0,1770,1771,5,866,0,0, + 1771,1772,3,800,400,0,1772,1777,5,867,0,0,1773,1775,5,114,0,0,1774, + 1773,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0,0,0,1776,1778,5,57, + 0,0,1777,1774,1,0,0,0,1777,1778,1,0,0,0,1778,85,1,0,0,0,1779,1781, + 5,31,0,0,1780,1782,3,702,351,0,1781,1780,1,0,0,0,1781,1782,1,0,0, + 0,1782,87,1,0,0,0,1783,1787,3,722,361,0,1784,1786,3,90,45,0,1785, + 1784,1,0,0,0,1786,1789,1,0,0,0,1787,1785,1,0,0,0,1787,1788,1,0,0, + 0,1788,89,1,0,0,0,1789,1787,1,0,0,0,1790,1834,3,718,359,0,1791,1792, + 5,42,0,0,1792,1834,3,750,375,0,1793,1834,5,686,0,0,1794,1834,5,435, + 0,0,1795,1800,5,315,0,0,1796,1797,5,119,0,0,1797,1798,5,185,0,0, + 1798,1800,3,752,376,0,1799,1795,1,0,0,0,1799,1796,1,0,0,0,1800,1834, + 1,0,0,0,1801,1803,5,131,0,0,1802,1801,1,0,0,0,1802,1803,1,0,0,0, + 1803,1804,1,0,0,0,1804,1834,5,92,0,0,1805,1807,5,182,0,0,1806,1808, + 5,92,0,0,1807,1806,1,0,0,0,1807,1808,1,0,0,0,1808,1834,1,0,0,0,1809, + 1810,5,340,0,0,1810,1834,5,882,0,0,1811,1812,5,338,0,0,1812,1834, + 7,20,0,0,1813,1814,5,647,0,0,1814,1834,7,21,0,0,1815,1834,3,92,46, + 0,1816,1817,5,28,0,0,1817,1834,3,686,343,0,1818,1819,5,71,0,0,1819, + 1821,5,9,0,0,1820,1818,1,0,0,0,1820,1821,1,0,0,0,1821,1822,1,0,0, + 0,1822,1823,5,13,0,0,1823,1824,5,866,0,0,1824,1825,3,800,400,0,1825, + 1827,5,867,0,0,1826,1828,7,22,0,0,1827,1826,1,0,0,0,1827,1828,1, + 0,0,0,1828,1834,1,0,0,0,1829,1830,5,241,0,0,1830,1831,5,42,0,0,1831, + 1834,5,682,0,0,1832,1834,3,84,42,0,1833,1790,1,0,0,0,1833,1791,1, + 0,0,0,1833,1793,1,0,0,0,1833,1794,1,0,0,0,1833,1799,1,0,0,0,1833, + 1802,1,0,0,0,1833,1805,1,0,0,0,1833,1809,1,0,0,0,1833,1811,1,0,0, + 0,1833,1813,1,0,0,0,1833,1815,1,0,0,0,1833,1816,1,0,0,0,1833,1820, + 1,0,0,0,1833,1829,1,0,0,0,1833,1832,1,0,0,0,1834,91,1,0,0,0,1835, + 1836,5,138,0,0,1836,1838,3,648,324,0,1837,1839,3,734,367,0,1838, + 1837,1,0,0,0,1838,1839,1,0,0,0,1839,1842,1,0,0,0,1840,1841,5,110, + 0,0,1841,1843,7,23,0,0,1842,1840,1,0,0,0,1842,1843,1,0,0,0,1843, + 1845,1,0,0,0,1844,1846,3,94,47,0,1845,1844,1,0,0,0,1845,1846,1,0, + 0,0,1846,93,1,0,0,0,1847,1848,5,119,0,0,1848,1849,5,44,0,0,1849, + 1853,3,96,48,0,1850,1851,5,119,0,0,1851,1852,5,185,0,0,1852,1854, + 3,96,48,0,1853,1850,1,0,0,0,1853,1854,1,0,0,0,1854,1864,1,0,0,0, + 1855,1856,5,119,0,0,1856,1857,5,185,0,0,1857,1861,3,96,48,0,1858, + 1859,5,119,0,0,1859,1860,5,44,0,0,1860,1862,3,96,48,0,1861,1858, + 1,0,0,0,1861,1862,1,0,0,0,1862,1864,1,0,0,0,1863,1847,1,0,0,0,1863, + 1855,1,0,0,0,1864,95,1,0,0,0,1865,1874,5,146,0,0,1866,1874,5,22, + 0,0,1867,1868,5,155,0,0,1868,1874,5,116,0,0,1869,1870,5,502,0,0, + 1870,1874,5,305,0,0,1871,1872,5,155,0,0,1872,1874,5,42,0,0,1873, + 1865,1,0,0,0,1873,1866,1,0,0,0,1873,1867,1,0,0,0,1873,1869,1,0,0, + 0,1873,1871,1,0,0,0,1874,97,1,0,0,0,1875,1877,5,380,0,0,1876,1878, + 5,857,0,0,1877,1876,1,0,0,0,1877,1878,1,0,0,0,1878,1880,1,0,0,0, + 1879,1881,3,688,344,0,1880,1879,1,0,0,0,1880,1881,1,0,0,0,1881,2061, + 1,0,0,0,1882,1884,5,825,0,0,1883,1885,5,857,0,0,1884,1883,1,0,0, + 0,1884,1885,1,0,0,0,1885,1886,1,0,0,0,1886,2061,5,882,0,0,1887,1889, + 5,314,0,0,1888,1890,5,857,0,0,1889,1888,1,0,0,0,1889,1890,1,0,0, + 0,1890,1891,1,0,0,0,1891,2061,3,708,354,0,1892,1894,5,315,0,0,1893, + 1895,5,857,0,0,1894,1893,1,0,0,0,1894,1895,1,0,0,0,1895,1896,1,0, + 0,0,1896,2061,3,708,354,0,1897,1899,5,316,0,0,1898,1900,5,857,0, + 0,1899,1898,1,0,0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0,1901,2061, + 3,708,354,0,1902,1904,5,42,0,0,1903,1902,1,0,0,0,1903,1904,1,0,0, + 0,1904,1905,1,0,0,0,1905,1907,3,54,27,0,1906,1908,5,857,0,0,1907, + 1906,1,0,0,0,1907,1908,1,0,0,0,1908,1911,1,0,0,0,1909,1912,3,684, + 342,0,1910,1912,5,42,0,0,1911,1909,1,0,0,0,1911,1910,1,0,0,0,1912, + 2061,1,0,0,0,1913,1915,7,24,0,0,1914,1916,5,857,0,0,1915,1914,1, + 0,0,0,1915,1916,1,0,0,0,1916,1917,1,0,0,0,1917,2061,7,25,0,0,1918, + 1920,5,42,0,0,1919,1918,1,0,0,0,1919,1920,1,0,0,0,1920,1921,1,0, + 0,0,1921,1923,5,28,0,0,1922,1924,5,857,0,0,1923,1922,1,0,0,0,1923, + 1924,1,0,0,0,1924,1925,1,0,0,0,1925,2061,3,686,343,0,1926,1928,5, + 340,0,0,1927,1929,5,857,0,0,1928,1927,1,0,0,0,1928,1929,1,0,0,0, + 1929,1930,1,0,0,0,1930,2061,5,882,0,0,1931,1933,5,346,0,0,1932,1934, + 5,857,0,0,1933,1932,1,0,0,0,1933,1934,1,0,0,0,1934,1935,1,0,0,0, + 1935,2061,7,26,0,0,1936,1938,5,349,0,0,1937,1939,5,857,0,0,1938, + 1937,1,0,0,0,1938,1939,1,0,0,0,1939,1940,1,0,0,0,1940,2061,5,882, + 0,0,1941,1942,7,27,0,0,1942,1944,5,367,0,0,1943,1945,5,857,0,0,1944, + 1943,1,0,0,0,1944,1945,1,0,0,0,1945,1946,1,0,0,0,1946,2061,5,882, + 0,0,1947,1949,5,365,0,0,1948,1950,5,857,0,0,1949,1948,1,0,0,0,1949, + 1950,1,0,0,0,1950,1951,1,0,0,0,1951,2061,7,25,0,0,1952,1954,5,376, + 0,0,1953,1955,5,857,0,0,1954,1953,1,0,0,0,1954,1955,1,0,0,0,1955, + 1956,1,0,0,0,1956,2061,5,882,0,0,1957,1959,7,28,0,0,1958,1960,5, + 857,0,0,1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960,1961,1,0,0,0,1961, + 2061,7,25,0,0,1962,1964,7,29,0,0,1963,1965,5,857,0,0,1964,1963,1, + 0,0,0,1964,1965,1,0,0,0,1965,1966,1,0,0,0,1966,2061,3,708,354,0, + 1967,1969,5,377,0,0,1968,1970,5,857,0,0,1969,1968,1,0,0,0,1969,1970, + 1,0,0,0,1970,1971,1,0,0,0,1971,2061,3,708,354,0,1972,1973,5,82,0, + 0,1973,1975,5,367,0,0,1974,1976,5,857,0,0,1975,1974,1,0,0,0,1975, + 1976,1,0,0,0,1976,1977,1,0,0,0,1977,2061,5,882,0,0,1978,1980,5,431, + 0,0,1979,1981,5,857,0,0,1980,1979,1,0,0,0,1980,1981,1,0,0,0,1981, + 1982,1,0,0,0,1982,2061,7,30,0,0,1983,1985,5,443,0,0,1984,1986,5, + 857,0,0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986,1987,1,0,0,0,1987, + 2061,3,710,355,0,1988,1990,5,480,0,0,1989,1991,5,857,0,0,1990,1989, + 1,0,0,0,1990,1991,1,0,0,0,1991,1992,1,0,0,0,1992,2061,3,708,354, + 0,1993,1995,5,490,0,0,1994,1996,5,857,0,0,1995,1994,1,0,0,0,1995, + 1996,1,0,0,0,1996,1997,1,0,0,0,1997,2061,3,708,354,0,1998,2000,5, + 520,0,0,1999,2001,5,857,0,0,2000,1999,1,0,0,0,2000,2001,1,0,0,0, + 2001,2002,1,0,0,0,2002,2061,7,13,0,0,2003,2005,5,529,0,0,2004,2006, + 5,857,0,0,2005,2004,1,0,0,0,2005,2006,1,0,0,0,2006,2007,1,0,0,0, + 2007,2061,5,882,0,0,2008,2010,5,588,0,0,2009,2011,5,857,0,0,2010, + 2009,1,0,0,0,2010,2011,1,0,0,0,2011,2012,1,0,0,0,2012,2061,7,31, + 0,0,2013,2014,5,640,0,0,2014,2061,5,664,0,0,2015,2017,5,833,0,0, + 2016,2018,5,857,0,0,2017,2016,1,0,0,0,2017,2018,1,0,0,0,2018,2019, + 1,0,0,0,2019,2061,5,882,0,0,2020,2022,5,642,0,0,2021,2023,5,857, + 0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2061, + 7,13,0,0,2025,2027,5,643,0,0,2026,2028,5,857,0,0,2027,2026,1,0,0, + 0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029,2061,7,13,0,0,2030,2032, + 5,644,0,0,2031,2033,5,857,0,0,2032,2031,1,0,0,0,2032,2033,1,0,0, + 0,2033,2036,1,0,0,0,2034,2037,5,42,0,0,2035,2037,3,708,354,0,2036, + 2034,1,0,0,0,2036,2035,1,0,0,0,2037,2061,1,0,0,0,2038,2039,5,658, + 0,0,2039,2041,3,662,331,0,2040,2042,3,102,51,0,2041,2040,1,0,0,0, + 2041,2042,1,0,0,0,2042,2061,1,0,0,0,2043,2044,5,659,0,0,2044,2045, + 5,857,0,0,2045,2061,3,100,50,0,2046,2061,3,102,51,0,2047,2049,5, + 665,0,0,2048,2050,5,857,0,0,2049,2048,1,0,0,0,2049,2050,1,0,0,0, + 2050,2051,1,0,0,0,2051,2061,7,25,0,0,2052,2054,5,181,0,0,2053,2055, + 5,857,0,0,2054,2053,1,0,0,0,2054,2055,1,0,0,0,2055,2056,1,0,0,0, + 2056,2057,5,866,0,0,2057,2058,3,646,323,0,2058,2059,5,867,0,0,2059, + 2061,1,0,0,0,2060,1875,1,0,0,0,2060,1882,1,0,0,0,2060,1887,1,0,0, + 0,2060,1892,1,0,0,0,2060,1897,1,0,0,0,2060,1903,1,0,0,0,2060,1913, + 1,0,0,0,2060,1919,1,0,0,0,2060,1926,1,0,0,0,2060,1931,1,0,0,0,2060, + 1936,1,0,0,0,2060,1941,1,0,0,0,2060,1947,1,0,0,0,2060,1952,1,0,0, + 0,2060,1957,1,0,0,0,2060,1962,1,0,0,0,2060,1967,1,0,0,0,2060,1972, + 1,0,0,0,2060,1978,1,0,0,0,2060,1983,1,0,0,0,2060,1988,1,0,0,0,2060, + 1993,1,0,0,0,2060,1998,1,0,0,0,2060,2003,1,0,0,0,2060,2008,1,0,0, + 0,2060,2013,1,0,0,0,2060,2015,1,0,0,0,2060,2020,1,0,0,0,2060,2025, + 1,0,0,0,2060,2030,1,0,0,0,2060,2038,1,0,0,0,2060,2043,1,0,0,0,2060, + 2046,1,0,0,0,2060,2047,1,0,0,0,2060,2052,1,0,0,0,2061,99,1,0,0,0, + 2062,2063,7,32,0,0,2063,101,1,0,0,0,2064,2065,5,647,0,0,2065,2066, + 7,21,0,0,2066,103,1,0,0,0,2067,2068,5,130,0,0,2068,2069,5,20,0,0, + 2069,2072,3,106,53,0,2070,2071,5,528,0,0,2071,2073,3,708,354,0,2072, + 2070,1,0,0,0,2072,2073,1,0,0,0,2073,2081,1,0,0,0,2074,2075,5,652, + 0,0,2075,2076,5,20,0,0,2076,2079,3,108,54,0,2077,2078,5,653,0,0, + 2078,2080,3,708,354,0,2079,2077,1,0,0,0,2079,2080,1,0,0,0,2080,2082, + 1,0,0,0,2081,2074,1,0,0,0,2081,2082,1,0,0,0,2082,2094,1,0,0,0,2083, + 2084,5,866,0,0,2084,2089,3,110,55,0,2085,2086,5,868,0,0,2086,2088, + 3,110,55,0,2087,2085,1,0,0,0,2088,2091,1,0,0,0,2089,2087,1,0,0,0, + 2089,2090,1,0,0,0,2090,2092,1,0,0,0,2091,2089,1,0,0,0,2092,2093, + 5,867,0,0,2093,2095,1,0,0,0,2094,2083,1,0,0,0,2094,2095,1,0,0,0, + 2095,105,1,0,0,0,2096,2098,5,101,0,0,2097,2096,1,0,0,0,2097,2098, + 1,0,0,0,2098,2099,1,0,0,0,2099,2100,5,418,0,0,2100,2101,5,866,0, + 0,2101,2102,3,800,400,0,2102,2103,5,867,0,0,2103,2143,1,0,0,0,2104, + 2106,5,101,0,0,2105,2104,1,0,0,0,2105,2106,1,0,0,0,2106,2107,1,0, + 0,0,2107,2111,5,92,0,0,2108,2109,5,308,0,0,2109,2110,5,857,0,0,2110, + 2112,7,33,0,0,2111,2108,1,0,0,0,2111,2112,1,0,0,0,2112,2113,1,0, + 0,0,2113,2115,5,866,0,0,2114,2116,3,656,328,0,2115,2114,1,0,0,0, + 2115,2116,1,0,0,0,2116,2117,1,0,0,0,2117,2143,5,867,0,0,2118,2128, + 5,134,0,0,2119,2120,5,866,0,0,2120,2121,3,800,400,0,2121,2122,5, + 867,0,0,2122,2129,1,0,0,0,2123,2124,5,337,0,0,2124,2125,5,866,0, + 0,2125,2126,3,656,328,0,2126,2127,5,867,0,0,2127,2129,1,0,0,0,2128, + 2119,1,0,0,0,2128,2123,1,0,0,0,2129,2143,1,0,0,0,2130,2140,5,449, + 0,0,2131,2132,5,866,0,0,2132,2133,3,800,400,0,2133,2134,5,867,0, + 0,2134,2141,1,0,0,0,2135,2136,5,337,0,0,2136,2137,5,866,0,0,2137, + 2138,3,656,328,0,2138,2139,5,867,0,0,2139,2141,1,0,0,0,2140,2131, + 1,0,0,0,2140,2135,1,0,0,0,2141,2143,1,0,0,0,2142,2097,1,0,0,0,2142, + 2105,1,0,0,0,2142,2118,1,0,0,0,2142,2130,1,0,0,0,2143,107,1,0,0, + 0,2144,2146,5,101,0,0,2145,2144,1,0,0,0,2145,2146,1,0,0,0,2146,2147, + 1,0,0,0,2147,2148,5,418,0,0,2148,2149,5,866,0,0,2149,2150,3,800, + 400,0,2150,2151,5,867,0,0,2151,2166,1,0,0,0,2152,2154,5,101,0,0, + 2153,2152,1,0,0,0,2153,2154,1,0,0,0,2154,2155,1,0,0,0,2155,2159, + 5,92,0,0,2156,2157,5,308,0,0,2157,2158,5,857,0,0,2158,2160,7,33, + 0,0,2159,2156,1,0,0,0,2159,2160,1,0,0,0,2160,2161,1,0,0,0,2161,2162, + 5,866,0,0,2162,2163,3,656,328,0,2163,2164,5,867,0,0,2164,2166,1, + 0,0,0,2165,2145,1,0,0,0,2165,2153,1,0,0,0,2166,109,1,0,0,0,2167, + 2168,5,130,0,0,2168,2169,3,668,334,0,2169,2170,5,189,0,0,2170,2171, + 5,447,0,0,2171,2172,5,662,0,0,2172,2173,5,866,0,0,2173,2178,3,112, + 56,0,2174,2175,5,868,0,0,2175,2177,3,112,56,0,2176,2174,1,0,0,0, + 2177,2180,1,0,0,0,2178,2176,1,0,0,0,2178,2179,1,0,0,0,2179,2181, + 1,0,0,0,2180,2178,1,0,0,0,2181,2185,5,867,0,0,2182,2184,3,118,59, + 0,2183,2182,1,0,0,0,2184,2187,1,0,0,0,2185,2183,1,0,0,0,2185,2186, + 1,0,0,0,2186,2199,1,0,0,0,2187,2185,1,0,0,0,2188,2189,5,866,0,0, + 2189,2194,3,116,58,0,2190,2191,5,868,0,0,2191,2193,3,116,58,0,2192, + 2190,1,0,0,0,2193,2196,1,0,0,0,2194,2192,1,0,0,0,2194,2195,1,0,0, + 0,2195,2197,1,0,0,0,2196,2194,1,0,0,0,2197,2198,5,867,0,0,2198,2200, + 1,0,0,0,2199,2188,1,0,0,0,2199,2200,1,0,0,0,2200,2314,1,0,0,0,2201, + 2202,5,130,0,0,2202,2203,3,668,334,0,2203,2204,5,189,0,0,2204,2205, + 5,447,0,0,2205,2206,5,662,0,0,2206,2210,3,112,56,0,2207,2209,3,118, + 59,0,2208,2207,1,0,0,0,2209,2212,1,0,0,0,2210,2208,1,0,0,0,2210, + 2211,1,0,0,0,2211,2224,1,0,0,0,2212,2210,1,0,0,0,2213,2214,5,866, + 0,0,2214,2219,3,116,58,0,2215,2216,5,868,0,0,2216,2218,3,116,58, + 0,2217,2215,1,0,0,0,2218,2221,1,0,0,0,2219,2217,1,0,0,0,2219,2220, + 1,0,0,0,2220,2222,1,0,0,0,2221,2219,1,0,0,0,2222,2223,5,867,0,0, + 2223,2225,1,0,0,0,2224,2213,1,0,0,0,2224,2225,1,0,0,0,2225,2314, + 1,0,0,0,2226,2227,5,130,0,0,2227,2228,3,668,334,0,2228,2229,5,189, + 0,0,2229,2230,5,80,0,0,2230,2231,5,866,0,0,2231,2236,3,112,56,0, + 2232,2233,5,868,0,0,2233,2235,3,112,56,0,2234,2232,1,0,0,0,2235, + 2238,1,0,0,0,2236,2234,1,0,0,0,2236,2237,1,0,0,0,2237,2239,1,0,0, + 0,2238,2236,1,0,0,0,2239,2243,5,867,0,0,2240,2242,3,118,59,0,2241, + 2240,1,0,0,0,2242,2245,1,0,0,0,2243,2241,1,0,0,0,2243,2244,1,0,0, + 0,2244,2257,1,0,0,0,2245,2243,1,0,0,0,2246,2247,5,866,0,0,2247,2252, + 3,116,58,0,2248,2249,5,868,0,0,2249,2251,3,116,58,0,2250,2248,1, + 0,0,0,2251,2254,1,0,0,0,2252,2250,1,0,0,0,2252,2253,1,0,0,0,2253, + 2255,1,0,0,0,2254,2252,1,0,0,0,2255,2256,5,867,0,0,2256,2258,1,0, + 0,0,2257,2246,1,0,0,0,2257,2258,1,0,0,0,2258,2314,1,0,0,0,2259,2260, + 5,130,0,0,2260,2261,3,668,334,0,2261,2262,5,189,0,0,2262,2263,5, + 80,0,0,2263,2264,5,866,0,0,2264,2269,3,114,57,0,2265,2266,5,868, + 0,0,2266,2268,3,114,57,0,2267,2265,1,0,0,0,2268,2271,1,0,0,0,2269, + 2267,1,0,0,0,2269,2270,1,0,0,0,2270,2272,1,0,0,0,2271,2269,1,0,0, + 0,2272,2276,5,867,0,0,2273,2275,3,118,59,0,2274,2273,1,0,0,0,2275, + 2278,1,0,0,0,2276,2274,1,0,0,0,2276,2277,1,0,0,0,2277,2290,1,0,0, + 0,2278,2276,1,0,0,0,2279,2280,5,866,0,0,2280,2285,3,116,58,0,2281, + 2282,5,868,0,0,2282,2284,3,116,58,0,2283,2281,1,0,0,0,2284,2287, + 1,0,0,0,2285,2283,1,0,0,0,2285,2286,1,0,0,0,2286,2288,1,0,0,0,2287, + 2285,1,0,0,0,2288,2289,5,867,0,0,2289,2291,1,0,0,0,2290,2279,1,0, + 0,0,2290,2291,1,0,0,0,2291,2314,1,0,0,0,2292,2293,5,130,0,0,2293, + 2297,3,668,334,0,2294,2296,3,118,59,0,2295,2294,1,0,0,0,2296,2299, + 1,0,0,0,2297,2295,1,0,0,0,2297,2298,1,0,0,0,2298,2311,1,0,0,0,2299, + 2297,1,0,0,0,2300,2301,5,866,0,0,2301,2306,3,116,58,0,2302,2303, + 5,868,0,0,2303,2305,3,116,58,0,2304,2302,1,0,0,0,2305,2308,1,0,0, + 0,2306,2304,1,0,0,0,2306,2307,1,0,0,0,2307,2309,1,0,0,0,2308,2306, + 1,0,0,0,2309,2310,5,867,0,0,2310,2312,1,0,0,0,2311,2300,1,0,0,0, + 2311,2312,1,0,0,0,2312,2314,1,0,0,0,2313,2167,1,0,0,0,2313,2201, + 1,0,0,0,2313,2226,1,0,0,0,2313,2259,1,0,0,0,2313,2292,1,0,0,0,2314, + 111,1,0,0,0,2315,2319,3,720,360,0,2316,2319,3,800,400,0,2317,2319, + 5,111,0,0,2318,2315,1,0,0,0,2318,2316,1,0,0,0,2318,2317,1,0,0,0, + 2319,113,1,0,0,0,2320,2321,5,866,0,0,2321,2324,3,112,56,0,2322,2323, + 5,868,0,0,2323,2325,3,112,56,0,2324,2322,1,0,0,0,2325,2326,1,0,0, + 0,2326,2324,1,0,0,0,2326,2327,1,0,0,0,2327,2328,1,0,0,0,2328,2329, + 5,867,0,0,2329,115,1,0,0,0,2330,2331,5,652,0,0,2331,2335,3,702,351, + 0,2332,2334,3,118,59,0,2333,2332,1,0,0,0,2334,2337,1,0,0,0,2335, + 2333,1,0,0,0,2335,2336,1,0,0,0,2336,117,1,0,0,0,2337,2335,1,0,0, + 0,2338,2340,5,42,0,0,2339,2338,1,0,0,0,2339,2340,1,0,0,0,2340,2342, + 1,0,0,0,2341,2343,5,647,0,0,2342,2341,1,0,0,0,2342,2343,1,0,0,0, + 2343,2344,1,0,0,0,2344,2346,5,380,0,0,2345,2347,5,857,0,0,2346,2345, + 1,0,0,0,2346,2347,1,0,0,0,2347,2348,1,0,0,0,2348,2387,3,688,344, + 0,2349,2351,5,340,0,0,2350,2352,5,857,0,0,2351,2350,1,0,0,0,2351, + 2352,1,0,0,0,2352,2353,1,0,0,0,2353,2387,5,882,0,0,2354,2355,5,360, + 0,0,2355,2357,5,367,0,0,2356,2358,5,857,0,0,2357,2356,1,0,0,0,2357, + 2358,1,0,0,0,2358,2359,1,0,0,0,2359,2387,5,882,0,0,2360,2361,5,82, 0,0,2361,2363,5,367,0,0,2362,2364,5,857,0,0,2363,2362,1,0,0,0,2363, - 2364,1,0,0,0,2364,2365,1,0,0,0,2365,2393,5,882,0,0,2366,2367,5,82, - 0,0,2367,2369,5,367,0,0,2368,2370,5,857,0,0,2369,2368,1,0,0,0,2369, - 2370,1,0,0,0,2370,2371,1,0,0,0,2371,2393,5,882,0,0,2372,2374,5,480, - 0,0,2373,2375,5,857,0,0,2374,2373,1,0,0,0,2374,2375,1,0,0,0,2375, - 2376,1,0,0,0,2376,2393,3,714,357,0,2377,2379,5,490,0,0,2378,2380, - 5,857,0,0,2379,2378,1,0,0,0,2379,2380,1,0,0,0,2380,2381,1,0,0,0, - 2381,2393,3,714,357,0,2382,2384,5,658,0,0,2383,2385,5,857,0,0,2384, - 2383,1,0,0,0,2384,2385,1,0,0,0,2385,2386,1,0,0,0,2386,2393,3,668, - 334,0,2387,2389,5,504,0,0,2388,2390,5,857,0,0,2389,2388,1,0,0,0, - 2389,2390,1,0,0,0,2390,2391,1,0,0,0,2391,2393,3,708,354,0,2392,2345, - 1,0,0,0,2392,2355,1,0,0,0,2392,2360,1,0,0,0,2392,2366,1,0,0,0,2392, - 2372,1,0,0,0,2392,2377,1,0,0,0,2392,2382,1,0,0,0,2392,2387,1,0,0, - 0,2393,119,1,0,0,0,2394,2395,5,8,0,0,2395,2397,7,0,0,0,2396,2398, - 3,630,315,0,2397,2396,1,0,0,0,2397,2398,1,0,0,0,2398,2400,1,0,0, - 0,2399,2401,3,52,26,0,2400,2399,1,0,0,0,2401,2402,1,0,0,0,2402,2400, - 1,0,0,0,2402,2403,1,0,0,0,2403,2413,1,0,0,0,2404,2405,5,8,0,0,2405, - 2406,7,0,0,0,2406,2407,3,630,315,0,2407,2408,5,677,0,0,2408,2409, - 5,360,0,0,2409,2410,5,367,0,0,2410,2411,5,496,0,0,2411,2413,1,0, - 0,0,2412,2394,1,0,0,0,2412,2404,1,0,0,0,2413,121,1,0,0,0,2414,2416, - 5,8,0,0,2415,2417,3,58,29,0,2416,2415,1,0,0,0,2416,2417,1,0,0,0, - 2417,2418,1,0,0,0,2418,2419,5,385,0,0,2419,2423,3,704,352,0,2420, - 2421,5,119,0,0,2421,2422,5,590,0,0,2422,2424,3,60,30,0,2423,2420, - 1,0,0,0,2423,2424,1,0,0,0,2424,2431,1,0,0,0,2425,2426,5,119,0,0, - 2426,2428,5,343,0,0,2427,2429,5,114,0,0,2428,2427,1,0,0,0,2428,2429, - 1,0,0,0,2429,2430,1,0,0,0,2430,2432,5,541,0,0,2431,2425,1,0,0,0, - 2431,2432,1,0,0,0,2432,2436,1,0,0,0,2433,2434,5,141,0,0,2434,2435, - 5,176,0,0,2435,2437,3,704,352,0,2436,2433,1,0,0,0,2436,2437,1,0, - 0,0,2437,2439,1,0,0,0,2438,2440,3,68,34,0,2439,2438,1,0,0,0,2439, - 2440,1,0,0,0,2440,2443,1,0,0,0,2441,2442,5,340,0,0,2442,2444,5,882, - 0,0,2443,2441,1,0,0,0,2443,2444,1,0,0,0,2444,2447,1,0,0,0,2445,2446, - 5,371,0,0,2446,2448,3,422,211,0,2447,2445,1,0,0,0,2447,2448,1,0, - 0,0,2448,123,1,0,0,0,2449,2450,5,8,0,0,2450,2451,5,409,0,0,2451, - 2455,3,634,317,0,2452,2454,3,76,38,0,2453,2452,1,0,0,0,2454,2457, - 1,0,0,0,2455,2453,1,0,0,0,2455,2456,1,0,0,0,2456,125,1,0,0,0,2457, - 2455,1,0,0,0,2458,2459,5,8,0,0,2459,2460,5,433,0,0,2460,2461,5,585, - 0,0,2461,2462,5,801,0,0,2462,2463,5,453,0,0,2463,2464,5,92,0,0,2464, - 127,1,0,0,0,2465,2466,5,8,0,0,2466,2467,5,451,0,0,2467,2468,5,74, - 0,0,2468,2469,3,708,354,0,2469,2470,5,6,0,0,2470,2471,5,671,0,0, - 2471,2477,5,882,0,0,2472,2474,5,428,0,0,2473,2475,5,857,0,0,2474, - 2473,1,0,0,0,2474,2475,1,0,0,0,2475,2476,1,0,0,0,2476,2478,3,716, - 358,0,2477,2472,1,0,0,0,2477,2478,1,0,0,0,2478,2480,1,0,0,0,2479, - 2481,5,687,0,0,2480,2479,1,0,0,0,2480,2481,1,0,0,0,2481,2482,1,0, - 0,0,2482,2484,5,380,0,0,2483,2485,5,857,0,0,2484,2483,1,0,0,0,2484, - 2485,1,0,0,0,2485,2486,1,0,0,0,2486,2487,3,694,347,0,2487,129,1, - 0,0,0,2488,2489,5,8,0,0,2489,2490,5,132,0,0,2490,2494,3,704,352, - 0,2491,2493,3,76,38,0,2492,2491,1,0,0,0,2493,2496,1,0,0,0,2494,2492, - 1,0,0,0,2494,2495,1,0,0,0,2495,131,1,0,0,0,2496,2494,1,0,0,0,2497, - 2498,5,8,0,0,2498,2499,5,592,0,0,2499,2500,3,708,354,0,2500,2501, - 5,518,0,0,2501,2502,5,866,0,0,2502,2507,3,78,39,0,2503,2504,5,868, - 0,0,2504,2506,3,78,39,0,2505,2503,1,0,0,0,2506,2509,1,0,0,0,2507, - 2505,1,0,0,0,2507,2508,1,0,0,0,2508,2510,1,0,0,0,2509,2507,1,0,0, - 0,2510,2511,5,867,0,0,2511,133,1,0,0,0,2512,2513,5,8,0,0,2513,2514, - 5,173,0,0,2514,2523,3,654,327,0,2515,2520,3,140,70,0,2516,2517,5, - 868,0,0,2517,2519,3,140,70,0,2518,2516,1,0,0,0,2519,2522,1,0,0,0, - 2520,2518,1,0,0,0,2520,2521,1,0,0,0,2521,2524,1,0,0,0,2522,2520, - 1,0,0,0,2523,2515,1,0,0,0,2523,2524,1,0,0,0,2524,2532,1,0,0,0,2525, - 2529,3,142,71,0,2526,2528,3,142,71,0,2527,2526,1,0,0,0,2528,2531, - 1,0,0,0,2529,2527,1,0,0,0,2529,2530,1,0,0,0,2530,2533,1,0,0,0,2531, - 2529,1,0,0,0,2532,2525,1,0,0,0,2532,2533,1,0,0,0,2533,135,1,0,0, - 0,2534,2536,5,8,0,0,2535,2537,5,180,0,0,2536,2535,1,0,0,0,2536,2537, - 1,0,0,0,2537,2538,1,0,0,0,2538,2539,5,658,0,0,2539,2540,3,668,334, - 0,2540,2541,7,34,0,0,2541,2542,5,361,0,0,2542,2548,5,882,0,0,2543, - 2545,5,428,0,0,2544,2546,5,857,0,0,2545,2544,1,0,0,0,2545,2546,1, - 0,0,0,2546,2547,1,0,0,0,2547,2549,3,716,358,0,2548,2543,1,0,0,0, - 2548,2549,1,0,0,0,2549,2551,1,0,0,0,2550,2552,5,687,0,0,2551,2550, - 1,0,0,0,2551,2552,1,0,0,0,2552,2556,1,0,0,0,2553,2554,5,141,0,0, - 2554,2555,5,176,0,0,2555,2557,3,666,333,0,2556,2553,1,0,0,0,2556, - 2557,1,0,0,0,2557,2563,1,0,0,0,2558,2560,5,314,0,0,2559,2561,5,857, - 0,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2562,1,0,0,0,2562,2564, - 3,716,358,0,2563,2558,1,0,0,0,2563,2564,1,0,0,0,2564,2567,1,0,0, - 0,2565,2566,5,155,0,0,2566,2568,7,35,0,0,2567,2565,1,0,0,0,2567, - 2568,1,0,0,0,2568,2574,1,0,0,0,2569,2571,5,376,0,0,2570,2572,5,857, - 0,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2573,1,0,0,0,2573,2575, - 5,882,0,0,2574,2569,1,0,0,0,2574,2575,1,0,0,0,2575,2581,1,0,0,0, - 2576,2578,5,380,0,0,2577,2579,5,857,0,0,2578,2577,1,0,0,0,2578,2579, - 1,0,0,0,2579,2580,1,0,0,0,2580,2582,3,694,347,0,2581,2576,1,0,0, - 0,2581,2582,1,0,0,0,2582,2588,1,0,0,0,2583,2585,5,825,0,0,2584,2586, - 5,857,0,0,2585,2584,1,0,0,0,2585,2586,1,0,0,0,2586,2587,1,0,0,0, - 2587,2589,5,882,0,0,2588,2583,1,0,0,0,2588,2589,1,0,0,0,2589,137, - 1,0,0,0,2590,2594,5,8,0,0,2591,2592,5,308,0,0,2592,2593,5,857,0, - 0,2593,2595,7,10,0,0,2594,2591,1,0,0,0,2594,2595,1,0,0,0,2595,2597, - 1,0,0,0,2596,2598,3,58,29,0,2597,2596,1,0,0,0,2597,2598,1,0,0,0, - 2598,2602,1,0,0,0,2599,2600,5,162,0,0,2600,2601,5,591,0,0,2601,2603, - 7,11,0,0,2602,2599,1,0,0,0,2602,2603,1,0,0,0,2603,2604,1,0,0,0,2604, - 2605,5,684,0,0,2605,2610,3,638,319,0,2606,2607,5,866,0,0,2607,2608, - 3,662,331,0,2608,2609,5,867,0,0,2609,2611,1,0,0,0,2610,2606,1,0, - 0,0,2610,2611,1,0,0,0,2611,2612,1,0,0,0,2612,2613,5,13,0,0,2613, - 2620,3,204,102,0,2614,2616,5,194,0,0,2615,2617,7,12,0,0,2616,2615, - 1,0,0,0,2616,2617,1,0,0,0,2617,2618,1,0,0,0,2618,2619,5,27,0,0,2619, - 2621,5,121,0,0,2620,2614,1,0,0,0,2620,2621,1,0,0,0,2621,139,1,0, - 0,0,2622,2629,3,98,49,0,2623,2625,5,868,0,0,2624,2623,1,0,0,0,2624, - 2625,1,0,0,0,2625,2626,1,0,0,0,2626,2628,3,98,49,0,2627,2624,1,0, - 0,0,2628,2631,1,0,0,0,2629,2627,1,0,0,0,2629,2630,1,0,0,0,2630,2887, - 1,0,0,0,2631,2629,1,0,0,0,2632,2634,5,6,0,0,2633,2635,5,29,0,0,2634, - 2633,1,0,0,0,2634,2635,1,0,0,0,2635,2636,1,0,0,0,2636,2637,3,664, - 332,0,2637,2641,3,88,44,0,2638,2642,5,402,0,0,2639,2640,5,306,0, - 0,2640,2642,3,664,332,0,2641,2638,1,0,0,0,2641,2639,1,0,0,0,2641, - 2642,1,0,0,0,2642,2887,1,0,0,0,2643,2645,5,6,0,0,2644,2646,5,29, - 0,0,2645,2644,1,0,0,0,2645,2646,1,0,0,0,2646,2647,1,0,0,0,2647,2648, - 5,866,0,0,2648,2649,3,664,332,0,2649,2656,3,88,44,0,2650,2651,5, - 868,0,0,2651,2652,3,664,332,0,2652,2653,3,88,44,0,2653,2655,1,0, - 0,0,2654,2650,1,0,0,0,2655,2658,1,0,0,0,2656,2654,1,0,0,0,2656,2657, - 1,0,0,0,2657,2659,1,0,0,0,2658,2656,1,0,0,0,2659,2660,5,867,0,0, - 2660,2887,1,0,0,0,2661,2662,5,6,0,0,2662,2664,7,18,0,0,2663,2665, - 3,644,322,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665,2667,1,0,0, - 0,2666,2668,3,70,35,0,2667,2666,1,0,0,0,2667,2668,1,0,0,0,2668,2669, - 1,0,0,0,2669,2673,3,740,370,0,2670,2672,3,72,36,0,2671,2670,1,0, - 0,0,2672,2675,1,0,0,0,2673,2671,1,0,0,0,2673,2674,1,0,0,0,2674,2887, - 1,0,0,0,2675,2673,1,0,0,0,2676,2677,5,6,0,0,2677,2679,7,19,0,0,2678, - 2680,7,18,0,0,2679,2678,1,0,0,0,2679,2680,1,0,0,0,2680,2682,1,0, - 0,0,2681,2683,3,644,322,0,2682,2681,1,0,0,0,2682,2683,1,0,0,0,2683, - 2684,1,0,0,0,2684,2688,3,740,370,0,2685,2687,3,72,36,0,2686,2685, - 1,0,0,0,2687,2690,1,0,0,0,2688,2686,1,0,0,0,2688,2689,1,0,0,0,2689, - 2887,1,0,0,0,2690,2688,1,0,0,0,2691,2696,5,6,0,0,2692,2694,5,31, - 0,0,2693,2695,3,708,354,0,2694,2693,1,0,0,0,2694,2695,1,0,0,0,2695, - 2697,1,0,0,0,2696,2692,1,0,0,0,2696,2697,1,0,0,0,2697,2698,1,0,0, - 0,2698,2699,5,131,0,0,2699,2701,5,92,0,0,2700,2702,3,70,35,0,2701, - 2700,1,0,0,0,2701,2702,1,0,0,0,2702,2703,1,0,0,0,2703,2707,3,740, - 370,0,2704,2706,3,72,36,0,2705,2704,1,0,0,0,2706,2709,1,0,0,0,2707, - 2705,1,0,0,0,2707,2708,1,0,0,0,2708,2887,1,0,0,0,2709,2707,1,0,0, - 0,2710,2715,5,6,0,0,2711,2713,5,31,0,0,2712,2714,3,708,354,0,2713, - 2712,1,0,0,0,2713,2714,1,0,0,0,2714,2716,1,0,0,0,2715,2711,1,0,0, - 0,2715,2716,1,0,0,0,2716,2717,1,0,0,0,2717,2719,5,182,0,0,2718,2720, - 7,18,0,0,2719,2718,1,0,0,0,2719,2720,1,0,0,0,2720,2722,1,0,0,0,2721, - 2723,3,644,322,0,2722,2721,1,0,0,0,2722,2723,1,0,0,0,2723,2725,1, - 0,0,0,2724,2726,3,70,35,0,2725,2724,1,0,0,0,2725,2726,1,0,0,0,2726, - 2727,1,0,0,0,2727,2731,3,740,370,0,2728,2730,3,72,36,0,2729,2728, - 1,0,0,0,2730,2733,1,0,0,0,2731,2729,1,0,0,0,2731,2732,1,0,0,0,2732, - 2887,1,0,0,0,2733,2731,1,0,0,0,2734,2739,5,6,0,0,2735,2737,5,31, - 0,0,2736,2738,3,708,354,0,2737,2736,1,0,0,0,2737,2738,1,0,0,0,2738, - 2740,1,0,0,0,2739,2735,1,0,0,0,2739,2740,1,0,0,0,2740,2741,1,0,0, - 0,2741,2742,5,67,0,0,2742,2744,5,92,0,0,2743,2745,3,644,322,0,2744, - 2743,1,0,0,0,2744,2745,1,0,0,0,2745,2746,1,0,0,0,2746,2747,3,740, - 370,0,2747,2748,3,92,46,0,2748,2887,1,0,0,0,2749,2751,5,6,0,0,2750, - 2752,3,84,42,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752,2887,1,0, - 0,0,2753,2754,5,51,0,0,2754,2755,7,36,0,0,2755,2887,3,708,354,0, - 2756,2757,5,8,0,0,2757,2758,7,36,0,0,2758,2760,3,708,354,0,2759, - 2761,5,114,0,0,2760,2759,1,0,0,0,2760,2761,1,0,0,0,2761,2763,1,0, - 0,0,2762,2764,5,57,0,0,2763,2762,1,0,0,0,2763,2764,1,0,0,0,2764, - 2887,1,0,0,0,2765,2767,5,308,0,0,2766,2768,5,857,0,0,2767,2766,1, - 0,0,0,2767,2768,1,0,0,0,2768,2769,1,0,0,0,2769,2887,7,37,0,0,2770, - 2772,5,8,0,0,2771,2773,5,29,0,0,2772,2771,1,0,0,0,2772,2773,1,0, - 0,0,2773,2774,1,0,0,0,2774,2782,3,664,332,0,2775,2776,5,155,0,0, - 2776,2777,5,42,0,0,2777,2783,3,756,378,0,2778,2779,5,155,0,0,2779, - 2783,7,16,0,0,2780,2781,5,51,0,0,2781,2783,5,42,0,0,2782,2775,1, - 0,0,0,2782,2778,1,0,0,0,2782,2780,1,0,0,0,2783,2887,1,0,0,0,2784, - 2785,5,8,0,0,2785,2786,5,82,0,0,2786,2787,3,644,322,0,2787,2788, - 7,16,0,0,2788,2887,1,0,0,0,2789,2791,5,25,0,0,2790,2792,5,29,0,0, - 2791,2790,1,0,0,0,2791,2792,1,0,0,0,2792,2793,1,0,0,0,2793,2794, - 3,664,332,0,2794,2795,3,660,330,0,2795,2799,3,88,44,0,2796,2800, - 5,402,0,0,2797,2798,5,306,0,0,2798,2800,3,664,332,0,2799,2796,1, - 0,0,0,2799,2797,1,0,0,0,2799,2800,1,0,0,0,2800,2887,1,0,0,0,2801, - 2803,5,42,0,0,2802,2801,1,0,0,0,2802,2803,1,0,0,0,2803,2804,1,0, - 0,0,2804,2805,5,26,0,0,2805,2806,5,155,0,0,2806,2807,5,857,0,0,2807, - 2813,3,690,345,0,2808,2810,5,28,0,0,2809,2811,5,857,0,0,2810,2809, - 1,0,0,0,2810,2811,1,0,0,0,2811,2812,1,0,0,0,2812,2814,3,692,346, - 0,2813,2808,1,0,0,0,2813,2814,1,0,0,0,2814,2887,1,0,0,0,2815,2816, - 5,33,0,0,2816,2820,5,176,0,0,2817,2821,5,823,0,0,2818,2819,5,26, - 0,0,2819,2821,5,155,0,0,2820,2817,1,0,0,0,2820,2818,1,0,0,0,2821, - 2822,1,0,0,0,2822,2825,3,690,345,0,2823,2824,5,28,0,0,2824,2826, - 3,692,346,0,2825,2823,1,0,0,0,2825,2826,1,0,0,0,2826,2887,1,0,0, - 0,2827,2828,7,38,0,0,2828,2887,5,93,0,0,2829,2830,7,39,0,0,2830, - 2887,5,658,0,0,2831,2833,5,51,0,0,2832,2834,5,29,0,0,2833,2832,1, - 0,0,0,2833,2834,1,0,0,0,2834,2835,1,0,0,0,2835,2887,3,664,332,0, - 2836,2837,5,51,0,0,2837,2838,7,18,0,0,2838,2887,3,644,322,0,2839, - 2840,5,51,0,0,2840,2841,5,131,0,0,2841,2887,5,92,0,0,2842,2843,5, - 51,0,0,2843,2844,5,67,0,0,2844,2845,5,92,0,0,2845,2887,3,708,354, - 0,2846,2887,5,66,0,0,2847,2849,5,104,0,0,2848,2850,5,857,0,0,2849, - 2848,1,0,0,0,2849,2850,1,0,0,0,2850,2851,1,0,0,0,2851,2887,7,4,0, - 0,2852,2854,5,492,0,0,2853,2855,5,29,0,0,2854,2853,1,0,0,0,2854, - 2855,1,0,0,0,2855,2856,1,0,0,0,2856,2857,3,664,332,0,2857,2861,3, - 88,44,0,2858,2862,5,402,0,0,2859,2860,5,306,0,0,2860,2862,3,664, - 332,0,2861,2858,1,0,0,0,2861,2859,1,0,0,0,2861,2862,1,0,0,0,2862, - 2887,1,0,0,0,2863,2864,5,125,0,0,2864,2865,5,20,0,0,2865,2887,3, - 662,331,0,2866,2867,5,141,0,0,2867,2868,5,29,0,0,2868,2869,3,664, - 332,0,2869,2870,5,176,0,0,2870,2871,3,660,330,0,2871,2887,1,0,0, - 0,2872,2873,5,141,0,0,2873,2874,7,18,0,0,2874,2875,3,644,322,0,2875, - 2876,5,176,0,0,2876,2877,3,640,320,0,2877,2887,1,0,0,0,2878,2880, - 5,141,0,0,2879,2881,7,40,0,0,2880,2879,1,0,0,0,2880,2881,1,0,0,0, - 2881,2882,1,0,0,0,2882,2887,3,650,325,0,2883,2884,7,41,0,0,2884, - 2887,5,681,0,0,2885,2887,3,142,71,0,2886,2622,1,0,0,0,2886,2632, - 1,0,0,0,2886,2643,1,0,0,0,2886,2661,1,0,0,0,2886,2676,1,0,0,0,2886, - 2691,1,0,0,0,2886,2710,1,0,0,0,2886,2734,1,0,0,0,2886,2749,1,0,0, - 0,2886,2753,1,0,0,0,2886,2756,1,0,0,0,2886,2765,1,0,0,0,2886,2770, - 1,0,0,0,2886,2784,1,0,0,0,2886,2789,1,0,0,0,2886,2802,1,0,0,0,2886, - 2815,1,0,0,0,2886,2827,1,0,0,0,2886,2829,1,0,0,0,2886,2831,1,0,0, - 0,2886,2836,1,0,0,0,2886,2839,1,0,0,0,2886,2842,1,0,0,0,2886,2846, - 1,0,0,0,2886,2847,1,0,0,0,2886,2852,1,0,0,0,2886,2863,1,0,0,0,2886, - 2866,1,0,0,0,2886,2872,1,0,0,0,2886,2878,1,0,0,0,2886,2883,1,0,0, - 0,2886,2885,1,0,0,0,2887,141,1,0,0,0,2888,2889,5,6,0,0,2889,2890, - 5,130,0,0,2890,2891,5,866,0,0,2891,2896,3,110,55,0,2892,2893,5,868, - 0,0,2893,2895,3,110,55,0,2894,2892,1,0,0,0,2895,2898,1,0,0,0,2896, - 2894,1,0,0,0,2896,2897,1,0,0,0,2897,2899,1,0,0,0,2898,2896,1,0,0, - 0,2899,2900,5,867,0,0,2900,2987,1,0,0,0,2901,2902,5,51,0,0,2902, - 2903,5,130,0,0,2903,2987,3,672,336,0,2904,2905,5,369,0,0,2905,2908, - 5,130,0,0,2906,2909,3,672,336,0,2907,2909,5,7,0,0,2908,2906,1,0, - 0,0,2908,2907,1,0,0,0,2909,2910,1,0,0,0,2910,2987,5,658,0,0,2911, - 2912,5,425,0,0,2912,2915,5,130,0,0,2913,2916,3,672,336,0,2914,2916, - 5,7,0,0,2915,2913,1,0,0,0,2915,2914,1,0,0,0,2916,2917,1,0,0,0,2917, - 2987,5,658,0,0,2918,2919,5,668,0,0,2919,2922,5,130,0,0,2920,2923, - 3,672,336,0,2921,2923,5,7,0,0,2922,2920,1,0,0,0,2922,2921,1,0,0, - 0,2923,2987,1,0,0,0,2924,2925,5,335,0,0,2925,2926,5,130,0,0,2926, - 2987,3,714,357,0,2927,2928,5,561,0,0,2928,2929,5,130,0,0,2929,2930, - 3,672,336,0,2930,2931,5,88,0,0,2931,2932,5,866,0,0,2932,2937,3,110, - 55,0,2933,2934,5,868,0,0,2934,2936,3,110,55,0,2935,2933,1,0,0,0, - 2936,2939,1,0,0,0,2937,2935,1,0,0,0,2937,2938,1,0,0,0,2938,2940, - 1,0,0,0,2939,2937,1,0,0,0,2940,2941,5,867,0,0,2941,2987,1,0,0,0, - 2942,2943,5,388,0,0,2943,2944,5,130,0,0,2944,2945,3,674,337,0,2945, - 2946,5,194,0,0,2946,2947,5,173,0,0,2947,2950,3,654,327,0,2948,2949, - 7,41,0,0,2949,2951,5,681,0,0,2950,2948,1,0,0,0,2950,2951,1,0,0,0, - 2951,2987,1,0,0,0,2952,2953,5,10,0,0,2953,2956,5,130,0,0,2954,2957, - 3,672,336,0,2955,2957,5,7,0,0,2956,2954,1,0,0,0,2956,2955,1,0,0, - 0,2957,2987,1,0,0,0,2958,2959,5,27,0,0,2959,2962,5,130,0,0,2960, - 2963,3,672,336,0,2961,2963,5,7,0,0,2962,2960,1,0,0,0,2962,2961,1, - 0,0,0,2963,2987,1,0,0,0,2964,2965,5,120,0,0,2965,2968,5,130,0,0, - 2966,2969,3,672,336,0,2967,2969,5,7,0,0,2968,2966,1,0,0,0,2968,2967, - 1,0,0,0,2969,2987,1,0,0,0,2970,2971,5,550,0,0,2971,2974,5,130,0, - 0,2972,2975,3,672,336,0,2973,2975,5,7,0,0,2974,2972,1,0,0,0,2974, - 2973,1,0,0,0,2975,2987,1,0,0,0,2976,2977,5,562,0,0,2977,2980,5,130, - 0,0,2978,2981,3,672,336,0,2979,2981,5,7,0,0,2980,2978,1,0,0,0,2980, - 2979,1,0,0,0,2981,2987,1,0,0,0,2982,2983,5,560,0,0,2983,2987,5,527, - 0,0,2984,2985,5,677,0,0,2985,2987,5,527,0,0,2986,2888,1,0,0,0,2986, - 2901,1,0,0,0,2986,2904,1,0,0,0,2986,2911,1,0,0,0,2986,2918,1,0,0, - 0,2986,2924,1,0,0,0,2986,2927,1,0,0,0,2986,2942,1,0,0,0,2986,2952, - 1,0,0,0,2986,2958,1,0,0,0,2986,2964,1,0,0,0,2986,2970,1,0,0,0,2986, - 2976,1,0,0,0,2986,2982,1,0,0,0,2986,2984,1,0,0,0,2987,143,1,0,0, - 0,2988,2989,5,51,0,0,2989,2991,7,0,0,0,2990,2992,3,760,380,0,2991, - 2990,1,0,0,0,2991,2992,1,0,0,0,2992,2993,1,0,0,0,2993,2994,3,630, - 315,0,2994,145,1,0,0,0,2995,2996,5,51,0,0,2996,2998,5,385,0,0,2997, - 2999,3,760,380,0,2998,2997,1,0,0,0,2998,2999,1,0,0,0,2999,3000,1, - 0,0,0,3000,3001,3,704,352,0,3001,147,1,0,0,0,3002,3003,5,51,0,0, - 3003,3005,5,82,0,0,3004,3006,7,1,0,0,3005,3004,1,0,0,0,3005,3006, - 1,0,0,0,3006,3007,1,0,0,0,3007,3008,3,644,322,0,3008,3009,5,119, - 0,0,3009,3022,3,654,327,0,3010,3012,5,308,0,0,3011,3013,5,857,0, - 0,3012,3011,1,0,0,0,3012,3013,1,0,0,0,3013,3014,1,0,0,0,3014,3021, - 7,3,0,0,3015,3017,5,104,0,0,3016,3018,5,857,0,0,3017,3016,1,0,0, - 0,3017,3018,1,0,0,0,3018,3019,1,0,0,0,3019,3021,7,4,0,0,3020,3010, - 1,0,0,0,3020,3015,1,0,0,0,3021,3024,1,0,0,0,3022,3020,1,0,0,0,3022, - 3023,1,0,0,0,3023,149,1,0,0,0,3024,3022,1,0,0,0,3025,3026,5,51,0, - 0,3026,3027,5,451,0,0,3027,3028,5,74,0,0,3028,3029,3,708,354,0,3029, - 3031,5,380,0,0,3030,3032,5,857,0,0,3031,3030,1,0,0,0,3031,3032,1, - 0,0,0,3032,3033,1,0,0,0,3033,3034,3,694,347,0,3034,151,1,0,0,0,3035, - 3036,5,51,0,0,3036,3038,5,132,0,0,3037,3039,3,760,380,0,3038,3037, - 1,0,0,0,3038,3039,1,0,0,0,3039,3040,1,0,0,0,3040,3041,3,704,352, - 0,3041,153,1,0,0,0,3042,3043,5,51,0,0,3043,3045,5,409,0,0,3044,3046, - 3,760,380,0,3045,3044,1,0,0,0,3045,3046,1,0,0,0,3046,3047,1,0,0, - 0,3047,3048,3,634,317,0,3048,155,1,0,0,0,3049,3050,5,51,0,0,3050, - 3052,5,592,0,0,3051,3053,3,760,380,0,3052,3051,1,0,0,0,3052,3053, - 1,0,0,0,3053,3054,1,0,0,0,3054,3055,3,708,354,0,3055,157,1,0,0,0, - 3056,3057,5,51,0,0,3057,3058,5,161,0,0,3058,3059,5,137,0,0,3059, - 3061,5,835,0,0,3060,3062,3,760,380,0,3061,3060,1,0,0,0,3061,3062, - 1,0,0,0,3062,3063,1,0,0,0,3063,3064,5,883,0,0,3064,159,1,0,0,0,3065, - 3067,5,51,0,0,3066,3068,5,660,0,0,3067,3066,1,0,0,0,3067,3068,1, - 0,0,0,3068,3069,1,0,0,0,3069,3071,5,173,0,0,3070,3072,3,760,380, - 0,3071,3070,1,0,0,0,3071,3072,1,0,0,0,3072,3073,1,0,0,0,3073,3075, - 3,652,326,0,3074,3076,7,42,0,0,3075,3074,1,0,0,0,3075,3076,1,0,0, - 0,3076,161,1,0,0,0,3077,3079,5,51,0,0,3078,3080,5,180,0,0,3079,3078, - 1,0,0,0,3079,3080,1,0,0,0,3080,3081,1,0,0,0,3081,3082,5,658,0,0, - 3082,3088,3,668,334,0,3083,3085,5,380,0,0,3084,3086,5,857,0,0,3085, - 3084,1,0,0,0,3085,3086,1,0,0,0,3086,3087,1,0,0,0,3087,3089,3,694, - 347,0,3088,3083,1,0,0,0,3088,3089,1,0,0,0,3089,163,1,0,0,0,3090, - 3091,5,51,0,0,3091,3093,5,178,0,0,3092,3094,3,760,380,0,3093,3092, - 1,0,0,0,3093,3094,1,0,0,0,3094,3095,1,0,0,0,3095,3096,3,704,352, - 0,3096,165,1,0,0,0,3097,3098,5,51,0,0,3098,3100,5,684,0,0,3099,3101, - 3,760,380,0,3100,3099,1,0,0,0,3100,3101,1,0,0,0,3101,3102,1,0,0, - 0,3102,3107,3,638,319,0,3103,3104,5,868,0,0,3104,3106,3,638,319, - 0,3105,3103,1,0,0,0,3106,3109,1,0,0,0,3107,3105,1,0,0,0,3107,3108, - 1,0,0,0,3108,3111,1,0,0,0,3109,3107,1,0,0,0,3110,3112,7,42,0,0,3111, - 3110,1,0,0,0,3111,3112,1,0,0,0,3112,167,1,0,0,0,3113,3114,5,51,0, - 0,3114,3116,5,582,0,0,3115,3117,3,760,380,0,3116,3115,1,0,0,0,3116, - 3117,1,0,0,0,3117,3118,1,0,0,0,3118,3119,3,656,328,0,3119,169,1, - 0,0,0,3120,3121,5,155,0,0,3121,3122,5,42,0,0,3122,3126,5,582,0,0, - 3123,3127,5,505,0,0,3124,3127,5,7,0,0,3125,3127,3,656,328,0,3126, - 3123,1,0,0,0,3126,3124,1,0,0,0,3126,3125,1,0,0,0,3127,3128,1,0,0, - 0,3128,3129,5,176,0,0,3129,3134,3,658,329,0,3130,3131,5,868,0,0, - 3131,3133,3,658,329,0,3132,3130,1,0,0,0,3133,3136,1,0,0,0,3134,3132, - 1,0,0,0,3134,3135,1,0,0,0,3135,3141,1,0,0,0,3136,3134,1,0,0,0,3137, - 3138,5,155,0,0,3138,3139,5,582,0,0,3139,3141,3,468,234,0,3140,3120, - 1,0,0,0,3140,3137,1,0,0,0,3141,171,1,0,0,0,3142,3143,5,141,0,0,3143, - 3144,5,173,0,0,3144,3149,3,174,87,0,3145,3146,5,868,0,0,3146,3148, - 3,174,87,0,3147,3145,1,0,0,0,3148,3151,1,0,0,0,3149,3147,1,0,0,0, - 3149,3150,1,0,0,0,3150,173,1,0,0,0,3151,3149,1,0,0,0,3152,3153,3, - 654,327,0,3153,3154,5,176,0,0,3154,3155,3,650,325,0,3155,175,1,0, - 0,0,3156,3158,5,668,0,0,3157,3159,5,173,0,0,3158,3157,1,0,0,0,3158, - 3159,1,0,0,0,3159,3160,1,0,0,0,3160,3161,3,654,327,0,3161,177,1, - 0,0,0,3162,3163,5,21,0,0,3163,3170,3,704,352,0,3164,3167,5,866,0, - 0,3165,3168,3,750,375,0,3166,3168,3,742,371,0,3167,3165,1,0,0,0, - 3167,3166,1,0,0,0,3167,3168,1,0,0,0,3168,3169,1,0,0,0,3169,3171, - 5,867,0,0,3170,3164,1,0,0,0,3170,3171,1,0,0,0,3171,179,1,0,0,0,3172, - 3175,3,234,117,0,3173,3175,3,236,118,0,3174,3172,1,0,0,0,3174,3173, - 1,0,0,0,3175,181,1,0,0,0,3176,3177,5,371,0,0,3177,3178,3,742,371, - 0,3178,183,1,0,0,0,3179,3184,3,238,119,0,3180,3184,3,240,120,0,3181, - 3184,3,242,121,0,3182,3184,3,244,122,0,3183,3179,1,0,0,0,3183,3180, - 1,0,0,0,3183,3181,1,0,0,0,3183,3182,1,0,0,0,3184,185,1,0,0,0,3185, - 3187,5,86,0,0,3186,3188,7,43,0,0,3187,3186,1,0,0,0,3187,3188,1,0, - 0,0,3188,3190,1,0,0,0,3189,3191,5,79,0,0,3190,3189,1,0,0,0,3190, - 3191,1,0,0,0,3191,3193,1,0,0,0,3192,3194,5,88,0,0,3193,3192,1,0, - 0,0,3193,3194,1,0,0,0,3194,3195,1,0,0,0,3195,3202,3,654,327,0,3196, - 3197,5,130,0,0,3197,3199,5,866,0,0,3198,3200,3,672,336,0,3199,3198, - 1,0,0,0,3199,3200,1,0,0,0,3200,3201,1,0,0,0,3201,3203,5,867,0,0, - 3202,3196,1,0,0,0,3202,3203,1,0,0,0,3203,3215,1,0,0,0,3204,3206, - 3,262,131,0,3205,3204,1,0,0,0,3205,3206,1,0,0,0,3206,3209,1,0,0, - 0,3207,3210,3,744,372,0,3208,3210,3,190,95,0,3209,3207,1,0,0,0,3209, - 3208,1,0,0,0,3209,3210,1,0,0,0,3210,3212,1,0,0,0,3211,3213,3,188, - 94,0,3212,3211,1,0,0,0,3212,3213,1,0,0,0,3213,3216,1,0,0,0,3214, - 3216,3,226,113,0,3215,3205,1,0,0,0,3215,3214,1,0,0,0,3216,3218,1, - 0,0,0,3217,3219,3,188,94,0,3218,3217,1,0,0,0,3218,3219,1,0,0,0,3219, - 3232,1,0,0,0,3220,3221,5,119,0,0,3221,3222,5,373,0,0,3222,3223,5, - 92,0,0,3223,3224,5,185,0,0,3224,3229,3,228,114,0,3225,3226,5,868, - 0,0,3226,3228,3,228,114,0,3227,3225,1,0,0,0,3228,3231,1,0,0,0,3229, - 3227,1,0,0,0,3229,3230,1,0,0,0,3230,3233,1,0,0,0,3231,3229,1,0,0, - 0,3232,3220,1,0,0,0,3232,3233,1,0,0,0,3233,187,1,0,0,0,3234,3235, - 5,13,0,0,3235,3237,3,708,354,0,3236,3238,3,262,131,0,3237,3236,1, - 0,0,0,3237,3238,1,0,0,0,3238,189,1,0,0,0,3239,3244,3,204,102,0,3240, - 3241,5,173,0,0,3241,3244,3,654,327,0,3242,3244,3,224,112,0,3243, - 3239,1,0,0,0,3243,3240,1,0,0,0,3243,3242,1,0,0,0,3244,191,1,0,0, - 0,3245,3251,3,194,97,0,3246,3248,5,828,0,0,3247,3249,7,44,0,0,3248, - 3247,1,0,0,0,3248,3249,1,0,0,0,3249,3250,1,0,0,0,3250,3252,3,194, - 97,0,3251,3246,1,0,0,0,3252,3253,1,0,0,0,3253,3251,1,0,0,0,3253, - 3254,1,0,0,0,3254,193,1,0,0,0,3255,3257,5,866,0,0,3256,3255,1,0, - 0,0,3256,3257,1,0,0,0,3257,3258,1,0,0,0,3258,3260,3,276,138,0,3259, - 3261,5,867,0,0,3260,3259,1,0,0,0,3260,3261,1,0,0,0,3261,195,1,0, - 0,0,3262,3263,5,103,0,0,3263,3265,5,360,0,0,3264,3266,7,45,0,0,3265, - 3264,1,0,0,0,3265,3266,1,0,0,0,3266,3268,1,0,0,0,3267,3269,5,450, - 0,0,3268,3267,1,0,0,0,3268,3269,1,0,0,0,3269,3270,1,0,0,0,3270,3271, - 5,83,0,0,3271,3273,5,882,0,0,3272,3274,7,6,0,0,3273,3272,1,0,0,0, - 3273,3274,1,0,0,0,3274,3275,1,0,0,0,3275,3276,5,88,0,0,3276,3277, - 5,173,0,0,3277,3283,3,654,327,0,3278,3279,5,130,0,0,3279,3280,5, - 866,0,0,3280,3281,3,672,336,0,3281,3282,5,867,0,0,3282,3284,1,0, - 0,0,3283,3278,1,0,0,0,3283,3284,1,0,0,0,3284,3288,1,0,0,0,3285,3286, - 5,26,0,0,3286,3287,5,155,0,0,3287,3289,3,690,345,0,3288,3285,1,0, - 0,0,3288,3289,1,0,0,0,3289,3296,1,0,0,0,3290,3292,7,46,0,0,3291, - 3293,3,304,152,0,3292,3291,1,0,0,0,3293,3294,1,0,0,0,3294,3292,1, - 0,0,0,3294,3295,1,0,0,0,3295,3297,1,0,0,0,3296,3290,1,0,0,0,3296, - 3297,1,0,0,0,3297,3304,1,0,0,0,3298,3300,5,102,0,0,3299,3301,3,306, - 153,0,3300,3299,1,0,0,0,3301,3302,1,0,0,0,3302,3300,1,0,0,0,3302, - 3303,1,0,0,0,3303,3305,1,0,0,0,3304,3298,1,0,0,0,3304,3305,1,0,0, - 0,3305,3310,1,0,0,0,3306,3307,5,79,0,0,3307,3308,3,714,357,0,3308, - 3309,7,47,0,0,3309,3311,1,0,0,0,3310,3306,1,0,0,0,3310,3311,1,0, - 0,0,3311,3323,1,0,0,0,3312,3313,5,866,0,0,3313,3318,3,230,115,0, - 3314,3315,5,868,0,0,3315,3317,3,230,115,0,3316,3314,1,0,0,0,3317, - 3320,1,0,0,0,3318,3316,1,0,0,0,3318,3319,1,0,0,0,3319,3321,1,0,0, - 0,3320,3318,1,0,0,0,3321,3322,5,867,0,0,3322,3324,1,0,0,0,3323,3312, - 1,0,0,0,3323,3324,1,0,0,0,3324,3334,1,0,0,0,3325,3326,5,155,0,0, - 3326,3331,3,228,114,0,3327,3328,5,868,0,0,3328,3330,3,228,114,0, - 3329,3327,1,0,0,0,3330,3333,1,0,0,0,3331,3329,1,0,0,0,3331,3332, - 1,0,0,0,3332,3335,1,0,0,0,3333,3331,1,0,0,0,3334,3325,1,0,0,0,3334, - 3335,1,0,0,0,3335,197,1,0,0,0,3336,3337,5,103,0,0,3337,3339,5,695, - 0,0,3338,3340,7,45,0,0,3339,3338,1,0,0,0,3339,3340,1,0,0,0,3340, - 3342,1,0,0,0,3341,3343,5,450,0,0,3342,3341,1,0,0,0,3342,3343,1,0, - 0,0,3343,3344,1,0,0,0,3344,3345,5,83,0,0,3345,3347,5,882,0,0,3346, - 3348,7,6,0,0,3347,3346,1,0,0,0,3347,3348,1,0,0,0,3348,3349,1,0,0, - 0,3349,3350,5,88,0,0,3350,3351,5,173,0,0,3351,3355,3,654,327,0,3352, - 3353,5,26,0,0,3353,3354,5,155,0,0,3354,3356,3,690,345,0,3355,3352, - 1,0,0,0,3355,3356,1,0,0,0,3356,3367,1,0,0,0,3357,3358,5,587,0,0, - 3358,3359,5,423,0,0,3359,3361,5,20,0,0,3360,3362,5,859,0,0,3361, - 3360,1,0,0,0,3361,3362,1,0,0,0,3362,3363,1,0,0,0,3363,3365,5,882, - 0,0,3364,3366,5,858,0,0,3365,3364,1,0,0,0,3365,3366,1,0,0,0,3366, - 3368,1,0,0,0,3367,3357,1,0,0,0,3367,3368,1,0,0,0,3368,3373,1,0,0, - 0,3369,3370,5,79,0,0,3370,3371,3,714,357,0,3371,3372,7,47,0,0,3372, - 3374,1,0,0,0,3373,3369,1,0,0,0,3373,3374,1,0,0,0,3374,3386,1,0,0, - 0,3375,3376,5,866,0,0,3376,3381,3,230,115,0,3377,3378,5,868,0,0, - 3378,3380,3,230,115,0,3379,3377,1,0,0,0,3380,3383,1,0,0,0,3381,3379, - 1,0,0,0,3381,3382,1,0,0,0,3382,3384,1,0,0,0,3383,3381,1,0,0,0,3384, - 3385,5,867,0,0,3385,3387,1,0,0,0,3386,3375,1,0,0,0,3386,3387,1,0, - 0,0,3387,3397,1,0,0,0,3388,3389,5,155,0,0,3389,3394,3,228,114,0, - 3390,3391,5,868,0,0,3391,3393,3,228,114,0,3392,3390,1,0,0,0,3393, - 3396,1,0,0,0,3394,3392,1,0,0,0,3394,3395,1,0,0,0,3395,3398,1,0,0, - 0,3396,3394,1,0,0,0,3397,3388,1,0,0,0,3397,3398,1,0,0,0,3398,199, - 1,0,0,0,3399,3400,5,866,0,0,3400,3402,3,218,109,0,3401,3403,3,252, - 126,0,3402,3401,1,0,0,0,3402,3403,1,0,0,0,3403,3405,1,0,0,0,3404, - 3406,3,318,159,0,3405,3404,1,0,0,0,3405,3406,1,0,0,0,3406,3407,1, - 0,0,0,3407,3409,5,867,0,0,3408,3410,3,252,126,0,3409,3408,1,0,0, - 0,3409,3410,1,0,0,0,3410,3412,1,0,0,0,3411,3413,3,318,159,0,3412, - 3411,1,0,0,0,3412,3413,1,0,0,0,3413,3415,1,0,0,0,3414,3416,3,302, - 151,0,3415,3414,1,0,0,0,3415,3416,1,0,0,0,3416,201,1,0,0,0,3417, - 3419,5,143,0,0,3418,3420,7,48,0,0,3419,3418,1,0,0,0,3419,3420,1, - 0,0,0,3420,3422,1,0,0,0,3421,3423,5,88,0,0,3422,3421,1,0,0,0,3422, - 3423,1,0,0,0,3423,3424,1,0,0,0,3424,3430,3,654,327,0,3425,3426,5, - 130,0,0,3426,3427,5,866,0,0,3427,3428,3,672,336,0,3428,3429,5,867, - 0,0,3429,3431,1,0,0,0,3430,3425,1,0,0,0,3430,3431,1,0,0,0,3431,3440, - 1,0,0,0,3432,3433,5,866,0,0,3433,3434,3,662,331,0,3434,3435,5,867, - 0,0,3435,3437,1,0,0,0,3436,3432,1,0,0,0,3436,3437,1,0,0,0,3437,3438, - 1,0,0,0,3438,3441,3,222,111,0,3439,3441,3,226,113,0,3440,3436,1, - 0,0,0,3440,3439,1,0,0,0,3441,203,1,0,0,0,3442,3444,3,276,138,0,3443, - 3445,3,232,116,0,3444,3443,1,0,0,0,3444,3445,1,0,0,0,3445,3512,1, - 0,0,0,3446,3448,3,278,139,0,3447,3449,3,232,116,0,3448,3447,1,0, - 0,0,3448,3449,1,0,0,0,3449,3451,1,0,0,0,3450,3452,3,302,151,0,3451, - 3450,1,0,0,0,3451,3452,1,0,0,0,3452,3512,1,0,0,0,3453,3455,3,272, - 136,0,3454,3456,3,232,116,0,3455,3454,1,0,0,0,3455,3456,1,0,0,0, - 3456,3512,1,0,0,0,3457,3459,3,278,139,0,3458,3460,3,282,141,0,3459, - 3458,1,0,0,0,3460,3461,1,0,0,0,3461,3459,1,0,0,0,3461,3462,1,0,0, - 0,3462,3471,1,0,0,0,3463,3465,5,181,0,0,3464,3466,7,44,0,0,3465, - 3464,1,0,0,0,3465,3466,1,0,0,0,3466,3469,1,0,0,0,3467,3470,3,276, - 138,0,3468,3470,3,272,136,0,3469,3467,1,0,0,0,3469,3468,1,0,0,0, - 3470,3472,1,0,0,0,3471,3463,1,0,0,0,3471,3472,1,0,0,0,3472,3474, - 1,0,0,0,3473,3475,3,252,126,0,3474,3473,1,0,0,0,3474,3475,1,0,0, - 0,3475,3477,1,0,0,0,3476,3478,3,318,159,0,3477,3476,1,0,0,0,3477, - 3478,1,0,0,0,3478,3480,1,0,0,0,3479,3481,3,232,116,0,3480,3479,1, - 0,0,0,3480,3481,1,0,0,0,3481,3512,1,0,0,0,3482,3484,3,274,137,0, - 3483,3485,3,280,140,0,3484,3483,1,0,0,0,3485,3486,1,0,0,0,3486,3484, - 1,0,0,0,3486,3487,1,0,0,0,3487,3493,1,0,0,0,3488,3490,5,181,0,0, - 3489,3491,7,44,0,0,3490,3489,1,0,0,0,3490,3491,1,0,0,0,3491,3492, - 1,0,0,0,3492,3494,3,272,136,0,3493,3488,1,0,0,0,3493,3494,1,0,0, - 0,3494,3496,1,0,0,0,3495,3497,3,252,126,0,3496,3495,1,0,0,0,3496, - 3497,1,0,0,0,3497,3499,1,0,0,0,3498,3500,3,318,159,0,3499,3498,1, - 0,0,0,3499,3500,1,0,0,0,3500,3502,1,0,0,0,3501,3503,3,232,116,0, - 3502,3501,1,0,0,0,3502,3503,1,0,0,0,3503,3512,1,0,0,0,3504,3507, - 3,278,139,0,3505,3506,5,868,0,0,3506,3508,3,284,142,0,3507,3505, - 1,0,0,0,3508,3509,1,0,0,0,3509,3507,1,0,0,0,3509,3510,1,0,0,0,3510, - 3512,1,0,0,0,3511,3442,1,0,0,0,3511,3446,1,0,0,0,3511,3453,1,0,0, - 0,3511,3457,1,0,0,0,3511,3482,1,0,0,0,3511,3504,1,0,0,0,3512,205, - 1,0,0,0,3513,3515,3,46,23,0,3514,3513,1,0,0,0,3514,3515,1,0,0,0, - 3515,3516,1,0,0,0,3516,3518,3,208,104,0,3517,3519,3,252,126,0,3518, - 3517,1,0,0,0,3518,3519,1,0,0,0,3519,3521,1,0,0,0,3520,3522,3,318, - 159,0,3521,3520,1,0,0,0,3521,3522,1,0,0,0,3522,3524,1,0,0,0,3523, - 3525,3,302,151,0,3524,3523,1,0,0,0,3524,3525,1,0,0,0,3525,207,1, - 0,0,0,3526,3527,6,104,-1,0,3527,3528,3,210,105,0,3528,3543,1,0,0, - 0,3529,3530,10,2,0,0,3530,3532,5,181,0,0,3531,3533,7,44,0,0,3532, - 3531,1,0,0,0,3532,3533,1,0,0,0,3533,3534,1,0,0,0,3534,3542,3,210, - 105,0,3535,3536,10,1,0,0,3536,3538,5,59,0,0,3537,3539,7,44,0,0,3538, - 3537,1,0,0,0,3538,3539,1,0,0,0,3539,3540,1,0,0,0,3540,3542,3,210, - 105,0,3541,3529,1,0,0,0,3541,3535,1,0,0,0,3542,3545,1,0,0,0,3543, - 3541,1,0,0,0,3543,3544,1,0,0,0,3544,209,1,0,0,0,3545,3543,1,0,0, - 0,3546,3547,6,105,-1,0,3547,3548,3,212,106,0,3548,3557,1,0,0,0,3549, - 3550,10,1,0,0,3550,3552,5,828,0,0,3551,3553,7,44,0,0,3552,3551,1, - 0,0,0,3552,3553,1,0,0,0,3553,3554,1,0,0,0,3554,3556,3,212,106,0, - 3555,3549,1,0,0,0,3556,3559,1,0,0,0,3557,3555,1,0,0,0,3557,3558, - 1,0,0,0,3558,211,1,0,0,0,3559,3557,1,0,0,0,3560,3575,3,220,110,0, - 3561,3562,5,866,0,0,3562,3564,3,208,104,0,3563,3565,3,252,126,0, - 3564,3563,1,0,0,0,3564,3565,1,0,0,0,3565,3567,1,0,0,0,3566,3568, - 3,318,159,0,3567,3566,1,0,0,0,3567,3568,1,0,0,0,3568,3570,1,0,0, - 0,3569,3571,3,302,151,0,3570,3569,1,0,0,0,3570,3571,1,0,0,0,3571, - 3572,1,0,0,0,3572,3573,5,867,0,0,3573,3575,1,0,0,0,3574,3560,1,0, - 0,0,3574,3561,1,0,0,0,3575,213,1,0,0,0,3576,3579,3,248,124,0,3577, - 3579,3,250,125,0,3578,3576,1,0,0,0,3578,3577,1,0,0,0,3579,215,1, - 0,0,0,3580,3584,3,224,112,0,3581,3582,5,125,0,0,3582,3583,5,20,0, - 0,3583,3585,3,676,338,0,3584,3581,1,0,0,0,3584,3585,1,0,0,0,3585, - 3588,1,0,0,0,3586,3587,5,100,0,0,3587,3589,3,320,160,0,3588,3586, - 1,0,0,0,3588,3589,1,0,0,0,3589,217,1,0,0,0,3590,3595,3,220,110,0, - 3591,3592,7,49,0,0,3592,3594,3,220,110,0,3593,3591,1,0,0,0,3594, - 3597,1,0,0,0,3595,3593,1,0,0,0,3595,3596,1,0,0,0,3596,3599,1,0,0, - 0,3597,3595,1,0,0,0,3598,3600,3,252,126,0,3599,3598,1,0,0,0,3599, - 3600,1,0,0,0,3600,3602,1,0,0,0,3601,3603,3,318,159,0,3602,3601,1, - 0,0,0,3602,3603,1,0,0,0,3603,3605,1,0,0,0,3604,3606,3,302,151,0, - 3605,3604,1,0,0,0,3605,3606,1,0,0,0,3606,219,1,0,0,0,3607,3611,3, - 204,102,0,3608,3611,3,620,310,0,3609,3611,3,216,108,0,3610,3607, - 1,0,0,0,3610,3608,1,0,0,0,3610,3609,1,0,0,0,3611,221,1,0,0,0,3612, - 3618,3,204,102,0,3613,3614,5,173,0,0,3614,3618,3,654,327,0,3615, - 3618,3,744,372,0,3616,3618,3,224,112,0,3617,3612,1,0,0,0,3617,3613, - 1,0,0,0,3617,3615,1,0,0,0,3617,3616,1,0,0,0,3618,223,1,0,0,0,3619, - 3620,5,189,0,0,3620,3621,5,586,0,0,3621,3627,3,746,373,0,3622,3623, - 5,868,0,0,3623,3624,5,586,0,0,3624,3626,3,746,373,0,3625,3622,1, - 0,0,0,3626,3629,1,0,0,0,3627,3625,1,0,0,0,3627,3628,1,0,0,0,3628, - 225,1,0,0,0,3629,3627,1,0,0,0,3630,3631,5,155,0,0,3631,3636,3,228, - 114,0,3632,3633,5,868,0,0,3633,3635,3,228,114,0,3634,3632,1,0,0, - 0,3635,3638,1,0,0,0,3636,3634,1,0,0,0,3636,3637,1,0,0,0,3637,227, - 1,0,0,0,3638,3636,1,0,0,0,3639,3640,3,664,332,0,3640,3641,5,857, - 0,0,3641,3642,3,748,374,0,3642,229,1,0,0,0,3643,3646,3,708,354,0, - 3644,3646,5,892,0,0,3645,3643,1,0,0,0,3645,3644,1,0,0,0,3646,231, - 1,0,0,0,3647,3648,5,65,0,0,3648,3658,7,50,0,0,3649,3650,5,510,0, - 0,3650,3655,3,654,327,0,3651,3652,5,868,0,0,3652,3654,3,654,327, - 0,3653,3651,1,0,0,0,3654,3657,1,0,0,0,3655,3653,1,0,0,0,3655,3656, - 1,0,0,0,3656,3659,1,0,0,0,3657,3655,1,0,0,0,3658,3649,1,0,0,0,3658, - 3659,1,0,0,0,3659,3662,1,0,0,0,3660,3661,7,51,0,0,3661,3663,5,105, - 0,0,3662,3660,1,0,0,0,3662,3663,1,0,0,0,3663,3669,1,0,0,0,3664,3665, - 5,104,0,0,3665,3666,5,80,0,0,3666,3667,5,594,0,0,3667,3669,5,491, - 0,0,3668,3647,1,0,0,0,3668,3664,1,0,0,0,3669,233,1,0,0,0,3670,3672, - 5,44,0,0,3671,3673,5,107,0,0,3672,3671,1,0,0,0,3672,3673,1,0,0,0, - 3673,3675,1,0,0,0,3674,3676,5,549,0,0,3675,3674,1,0,0,0,3675,3676, - 1,0,0,0,3676,3678,1,0,0,0,3677,3679,5,79,0,0,3678,3677,1,0,0,0,3678, - 3679,1,0,0,0,3679,3680,1,0,0,0,3680,3681,5,68,0,0,3681,3686,3,654, - 327,0,3682,3684,5,13,0,0,3683,3682,1,0,0,0,3683,3684,1,0,0,0,3684, - 3685,1,0,0,0,3685,3687,3,708,354,0,3686,3683,1,0,0,0,3686,3687,1, - 0,0,0,3687,3693,1,0,0,0,3688,3689,5,130,0,0,3689,3690,5,866,0,0, - 3690,3691,3,672,336,0,3691,3692,5,867,0,0,3692,3694,1,0,0,0,3693, - 3688,1,0,0,0,3693,3694,1,0,0,0,3694,3697,1,0,0,0,3695,3696,5,192, - 0,0,3696,3698,3,806,403,0,3697,3695,1,0,0,0,3697,3698,1,0,0,0,3698, - 3700,1,0,0,0,3699,3701,3,252,126,0,3700,3699,1,0,0,0,3700,3701,1, - 0,0,0,3701,3704,1,0,0,0,3702,3703,5,100,0,0,3703,3705,3,320,160, - 0,3704,3702,1,0,0,0,3704,3705,1,0,0,0,3705,235,1,0,0,0,3706,3708, - 5,44,0,0,3707,3709,5,107,0,0,3708,3707,1,0,0,0,3708,3709,1,0,0,0, - 3709,3711,1,0,0,0,3710,3712,5,549,0,0,3711,3710,1,0,0,0,3711,3712, - 1,0,0,0,3712,3714,1,0,0,0,3713,3715,5,79,0,0,3714,3713,1,0,0,0,3714, - 3715,1,0,0,0,3715,3755,1,0,0,0,3716,3719,3,654,327,0,3717,3718,5, - 865,0,0,3718,3720,5,850,0,0,3719,3717,1,0,0,0,3719,3720,1,0,0,0, - 3720,3729,1,0,0,0,3721,3722,5,868,0,0,3722,3725,3,654,327,0,3723, - 3724,5,865,0,0,3724,3726,5,850,0,0,3725,3723,1,0,0,0,3725,3726,1, - 0,0,0,3726,3728,1,0,0,0,3727,3721,1,0,0,0,3728,3731,1,0,0,0,3729, - 3727,1,0,0,0,3729,3730,1,0,0,0,3730,3732,1,0,0,0,3731,3729,1,0,0, - 0,3732,3733,5,68,0,0,3733,3734,3,256,128,0,3734,3756,1,0,0,0,3735, - 3736,5,68,0,0,3736,3739,3,654,327,0,3737,3738,5,865,0,0,3738,3740, - 5,850,0,0,3739,3737,1,0,0,0,3739,3740,1,0,0,0,3740,3749,1,0,0,0, - 3741,3742,5,868,0,0,3742,3745,3,654,327,0,3743,3744,5,865,0,0,3744, - 3746,5,850,0,0,3745,3743,1,0,0,0,3745,3746,1,0,0,0,3746,3748,1,0, - 0,0,3747,3741,1,0,0,0,3748,3751,1,0,0,0,3749,3747,1,0,0,0,3749,3750, - 1,0,0,0,3750,3752,1,0,0,0,3751,3749,1,0,0,0,3752,3753,5,188,0,0, - 3753,3754,3,256,128,0,3754,3756,1,0,0,0,3755,3716,1,0,0,0,3755,3735, - 1,0,0,0,3756,3759,1,0,0,0,3757,3758,5,192,0,0,3758,3760,3,806,403, - 0,3759,3757,1,0,0,0,3759,3760,1,0,0,0,3760,237,1,0,0,0,3761,3762, - 5,417,0,0,3762,3763,3,654,327,0,3763,3768,5,516,0,0,3764,3766,5, - 13,0,0,3765,3764,1,0,0,0,3765,3766,1,0,0,0,3766,3767,1,0,0,0,3767, - 3769,3,708,354,0,3768,3765,1,0,0,0,3768,3769,1,0,0,0,3769,239,1, - 0,0,0,3770,3771,5,417,0,0,3771,3772,3,654,327,0,3772,3773,5,135, - 0,0,3773,3780,3,644,322,0,3774,3775,3,816,408,0,3775,3776,5,866, - 0,0,3776,3777,3,750,375,0,3777,3778,5,867,0,0,3778,3781,1,0,0,0, - 3779,3781,7,52,0,0,3780,3774,1,0,0,0,3780,3779,1,0,0,0,3781,3784, - 1,0,0,0,3782,3783,5,192,0,0,3783,3785,3,806,403,0,3784,3782,1,0, - 0,0,3784,3785,1,0,0,0,3785,3788,1,0,0,0,3786,3787,5,100,0,0,3787, - 3789,3,320,160,0,3788,3786,1,0,0,0,3788,3789,1,0,0,0,3789,241,1, - 0,0,0,3790,3791,5,417,0,0,3791,3792,3,654,327,0,3792,3793,5,135, - 0,0,3793,3796,7,53,0,0,3794,3795,5,192,0,0,3795,3797,3,806,403,0, - 3796,3794,1,0,0,0,3796,3797,1,0,0,0,3797,3800,1,0,0,0,3798,3799, - 5,100,0,0,3799,3801,3,320,160,0,3800,3798,1,0,0,0,3800,3801,1,0, - 0,0,3801,243,1,0,0,0,3802,3803,5,417,0,0,3803,3804,3,654,327,0,3804, - 3805,5,334,0,0,3805,245,1,0,0,0,3806,3807,5,425,0,0,3807,3808,5, - 173,0,0,3808,3809,5,68,0,0,3809,3814,3,718,359,0,3810,3811,5,868, - 0,0,3811,3813,3,718,359,0,3812,3810,1,0,0,0,3813,3816,1,0,0,0,3814, - 3812,1,0,0,0,3814,3815,1,0,0,0,3815,247,1,0,0,0,3816,3814,1,0,0, - 0,3817,3819,5,185,0,0,3818,3820,5,107,0,0,3819,3818,1,0,0,0,3819, - 3820,1,0,0,0,3820,3822,1,0,0,0,3821,3823,5,79,0,0,3822,3821,1,0, - 0,0,3822,3823,1,0,0,0,3823,3824,1,0,0,0,3824,3829,3,654,327,0,3825, - 3827,5,13,0,0,3826,3825,1,0,0,0,3826,3827,1,0,0,0,3827,3828,1,0, - 0,0,3828,3830,3,708,354,0,3829,3826,1,0,0,0,3829,3830,1,0,0,0,3830, - 3831,1,0,0,0,3831,3832,5,155,0,0,3832,3837,3,228,114,0,3833,3834, - 5,868,0,0,3834,3836,3,228,114,0,3835,3833,1,0,0,0,3836,3839,1,0, - 0,0,3837,3835,1,0,0,0,3837,3838,1,0,0,0,3838,3842,1,0,0,0,3839,3837, - 1,0,0,0,3840,3841,5,192,0,0,3841,3843,3,806,403,0,3842,3840,1,0, - 0,0,3842,3843,1,0,0,0,3843,3845,1,0,0,0,3844,3846,3,252,126,0,3845, - 3844,1,0,0,0,3845,3846,1,0,0,0,3846,3848,1,0,0,0,3847,3849,3,318, - 159,0,3848,3847,1,0,0,0,3848,3849,1,0,0,0,3849,249,1,0,0,0,3850, - 3852,5,185,0,0,3851,3853,5,107,0,0,3852,3851,1,0,0,0,3852,3853,1, - 0,0,0,3853,3855,1,0,0,0,3854,3856,5,79,0,0,3855,3854,1,0,0,0,3855, - 3856,1,0,0,0,3856,3857,1,0,0,0,3857,3858,3,256,128,0,3858,3859,5, - 155,0,0,3859,3864,3,228,114,0,3860,3861,5,868,0,0,3861,3863,3,228, - 114,0,3862,3860,1,0,0,0,3863,3866,1,0,0,0,3864,3862,1,0,0,0,3864, - 3865,1,0,0,0,3865,3869,1,0,0,0,3866,3864,1,0,0,0,3867,3868,5,192, - 0,0,3868,3870,3,806,403,0,3869,3867,1,0,0,0,3869,3870,1,0,0,0,3870, - 251,1,0,0,0,3871,3872,5,125,0,0,3872,3873,5,20,0,0,3873,3878,3,254, - 127,0,3874,3875,5,868,0,0,3875,3877,3,254,127,0,3876,3874,1,0,0, - 0,3877,3880,1,0,0,0,3878,3876,1,0,0,0,3878,3879,1,0,0,0,3879,253, - 1,0,0,0,3880,3878,1,0,0,0,3881,3883,3,806,403,0,3882,3884,7,54,0, - 0,3883,3882,1,0,0,0,3883,3884,1,0,0,0,3884,255,1,0,0,0,3885,3890, - 3,258,129,0,3886,3887,5,868,0,0,3887,3889,3,258,129,0,3888,3886, - 1,0,0,0,3889,3892,1,0,0,0,3890,3888,1,0,0,0,3890,3891,1,0,0,0,3891, - 257,1,0,0,0,3892,3890,1,0,0,0,3893,3897,3,260,130,0,3894,3896,3, - 268,134,0,3895,3894,1,0,0,0,3896,3899,1,0,0,0,3897,3895,1,0,0,0, - 3897,3898,1,0,0,0,3898,3912,1,0,0,0,3899,3897,1,0,0,0,3900,3901, - 5,866,0,0,3901,3905,3,260,130,0,3902,3904,3,268,134,0,3903,3902, - 1,0,0,0,3904,3907,1,0,0,0,3905,3903,1,0,0,0,3905,3906,1,0,0,0,3906, - 3908,1,0,0,0,3907,3905,1,0,0,0,3908,3909,5,867,0,0,3909,3912,1,0, - 0,0,3910,3912,3,286,143,0,3911,3893,1,0,0,0,3911,3900,1,0,0,0,3911, - 3910,1,0,0,0,3912,259,1,0,0,0,3913,3919,3,654,327,0,3914,3915,5, - 130,0,0,3915,3916,5,866,0,0,3916,3917,3,672,336,0,3917,3918,5,867, - 0,0,3918,3920,1,0,0,0,3919,3914,1,0,0,0,3919,3920,1,0,0,0,3920,3925, - 1,0,0,0,3921,3923,5,13,0,0,3922,3921,1,0,0,0,3922,3923,1,0,0,0,3923, - 3924,1,0,0,0,3924,3926,3,708,354,0,3925,3922,1,0,0,0,3925,3926,1, - 0,0,0,3926,3935,1,0,0,0,3927,3932,3,264,132,0,3928,3929,5,868,0, - 0,3929,3931,3,264,132,0,3930,3928,1,0,0,0,3931,3934,1,0,0,0,3932, - 3930,1,0,0,0,3932,3933,1,0,0,0,3933,3936,1,0,0,0,3934,3932,1,0,0, - 0,3935,3927,1,0,0,0,3935,3936,1,0,0,0,3936,3959,1,0,0,0,3937,3939, - 5,95,0,0,3938,3937,1,0,0,0,3938,3939,1,0,0,0,3939,3945,1,0,0,0,3940, - 3946,3,204,102,0,3941,3942,5,866,0,0,3942,3943,3,204,102,0,3943, - 3944,5,867,0,0,3944,3946,1,0,0,0,3945,3940,1,0,0,0,3945,3941,1,0, - 0,0,3946,3948,1,0,0,0,3947,3949,5,13,0,0,3948,3947,1,0,0,0,3948, - 3949,1,0,0,0,3949,3950,1,0,0,0,3950,3952,3,708,354,0,3951,3953,3, - 262,131,0,3952,3951,1,0,0,0,3952,3953,1,0,0,0,3953,3959,1,0,0,0, - 3954,3955,5,866,0,0,3955,3956,3,256,128,0,3956,3957,5,867,0,0,3957, - 3959,1,0,0,0,3958,3913,1,0,0,0,3958,3938,1,0,0,0,3958,3954,1,0,0, - 0,3959,261,1,0,0,0,3960,3961,5,866,0,0,3961,3962,3,662,331,0,3962, - 3963,5,867,0,0,3963,263,1,0,0,0,3964,3965,7,55,0,0,3965,3968,7,18, - 0,0,3966,3967,5,65,0,0,3967,3969,3,266,133,0,3968,3966,1,0,0,0,3968, - 3969,1,0,0,0,3969,3970,1,0,0,0,3970,3972,5,866,0,0,3971,3973,3,642, - 321,0,3972,3971,1,0,0,0,3972,3973,1,0,0,0,3973,3974,1,0,0,0,3974, - 3975,5,867,0,0,3975,265,1,0,0,0,3976,3982,5,91,0,0,3977,3978,5,125, - 0,0,3978,3982,5,20,0,0,3979,3980,5,74,0,0,3980,3982,5,20,0,0,3981, - 3976,1,0,0,0,3981,3977,1,0,0,0,3981,3979,1,0,0,0,3982,267,1,0,0, - 0,3983,3985,7,56,0,0,3984,3983,1,0,0,0,3984,3985,1,0,0,0,3985,3986, - 1,0,0,0,3986,3988,5,91,0,0,3987,3989,5,95,0,0,3988,3987,1,0,0,0, - 3988,3989,1,0,0,0,3989,3990,1,0,0,0,3990,3994,3,260,130,0,3991,3993, - 3,270,135,0,3992,3991,1,0,0,0,3993,3996,1,0,0,0,3994,3992,1,0,0, - 0,3994,3995,1,0,0,0,3995,4033,1,0,0,0,3996,3994,1,0,0,0,3997,3998, - 5,172,0,0,3998,4002,3,260,130,0,3999,4001,3,270,135,0,4000,3999, - 1,0,0,0,4001,4004,1,0,0,0,4002,4000,1,0,0,0,4002,4003,1,0,0,0,4003, - 4033,1,0,0,0,4004,4002,1,0,0,0,4005,4007,7,57,0,0,4006,4008,5,127, - 0,0,4007,4006,1,0,0,0,4007,4008,1,0,0,0,4008,4009,1,0,0,0,4009,4011, - 5,91,0,0,4010,4012,5,95,0,0,4011,4010,1,0,0,0,4011,4012,1,0,0,0, - 4012,4013,1,0,0,0,4013,4017,3,260,130,0,4014,4016,3,270,135,0,4015, - 4014,1,0,0,0,4016,4019,1,0,0,0,4017,4015,1,0,0,0,4017,4018,1,0,0, - 0,4018,4033,1,0,0,0,4019,4017,1,0,0,0,4020,4028,5,113,0,0,4021,4024, - 5,84,0,0,4022,4024,7,57,0,0,4023,4021,1,0,0,0,4023,4022,1,0,0,0, - 4024,4026,1,0,0,0,4025,4027,5,127,0,0,4026,4025,1,0,0,0,4026,4027, - 1,0,0,0,4027,4029,1,0,0,0,4028,4023,1,0,0,0,4028,4029,1,0,0,0,4029, - 4030,1,0,0,0,4030,4031,5,91,0,0,4031,4033,3,260,130,0,4032,3984, - 1,0,0,0,4032,3997,1,0,0,0,4032,4005,1,0,0,0,4032,4020,1,0,0,0,4033, - 269,1,0,0,0,4034,4035,5,119,0,0,4035,4042,3,806,403,0,4036,4037, - 5,188,0,0,4037,4038,5,866,0,0,4038,4039,3,662,331,0,4039,4040,5, - 867,0,0,4040,4042,1,0,0,0,4041,4034,1,0,0,0,4041,4036,1,0,0,0,4042, - 271,1,0,0,0,4043,4044,5,866,0,0,4044,4045,3,276,138,0,4045,4046, - 5,867,0,0,4046,4052,1,0,0,0,4047,4048,5,866,0,0,4048,4049,3,272, - 136,0,4049,4050,5,867,0,0,4050,4052,1,0,0,0,4051,4043,1,0,0,0,4051, - 4047,1,0,0,0,4052,273,1,0,0,0,4053,4054,5,866,0,0,4054,4055,3,278, - 139,0,4055,4056,5,867,0,0,4056,4062,1,0,0,0,4057,4058,5,866,0,0, - 4058,4059,3,274,137,0,4059,4060,5,867,0,0,4060,4062,1,0,0,0,4061, - 4053,1,0,0,0,4061,4057,1,0,0,0,4062,275,1,0,0,0,4063,4067,5,154, - 0,0,4064,4066,3,296,148,0,4065,4064,1,0,0,0,4066,4069,1,0,0,0,4067, - 4065,1,0,0,0,4067,4068,1,0,0,0,4068,4070,1,0,0,0,4069,4067,1,0,0, - 0,4070,4072,3,298,149,0,4071,4073,3,302,151,0,4072,4071,1,0,0,0, - 4072,4073,1,0,0,0,4073,4074,1,0,0,0,4074,4076,3,308,154,0,4075,4077, - 3,310,155,0,4076,4075,1,0,0,0,4076,4077,1,0,0,0,4077,4079,1,0,0, - 0,4078,4080,3,312,156,0,4079,4078,1,0,0,0,4079,4080,1,0,0,0,4080, - 4082,1,0,0,0,4081,4083,3,314,157,0,4082,4081,1,0,0,0,4082,4083,1, - 0,0,0,4083,4085,1,0,0,0,4084,4086,3,252,126,0,4085,4084,1,0,0,0, - 4085,4086,1,0,0,0,4086,4088,1,0,0,0,4087,4089,3,318,159,0,4088,4087, - 1,0,0,0,4088,4089,1,0,0,0,4089,4118,1,0,0,0,4090,4094,5,154,0,0, - 4091,4093,3,296,148,0,4092,4091,1,0,0,0,4093,4096,1,0,0,0,4094,4092, - 1,0,0,0,4094,4095,1,0,0,0,4095,4097,1,0,0,0,4096,4094,1,0,0,0,4097, - 4098,3,298,149,0,4098,4100,3,308,154,0,4099,4101,3,310,155,0,4100, - 4099,1,0,0,0,4100,4101,1,0,0,0,4101,4103,1,0,0,0,4102,4104,3,312, - 156,0,4103,4102,1,0,0,0,4103,4104,1,0,0,0,4104,4106,1,0,0,0,4105, - 4107,3,314,157,0,4106,4105,1,0,0,0,4106,4107,1,0,0,0,4107,4109,1, - 0,0,0,4108,4110,3,252,126,0,4109,4108,1,0,0,0,4109,4110,1,0,0,0, - 4110,4112,1,0,0,0,4111,4113,3,318,159,0,4112,4111,1,0,0,0,4112,4113, - 1,0,0,0,4113,4115,1,0,0,0,4114,4116,3,302,151,0,4115,4114,1,0,0, - 0,4115,4116,1,0,0,0,4116,4118,1,0,0,0,4117,4063,1,0,0,0,4117,4090, - 1,0,0,0,4118,277,1,0,0,0,4119,4123,5,154,0,0,4120,4122,3,296,148, - 0,4121,4120,1,0,0,0,4122,4125,1,0,0,0,4123,4121,1,0,0,0,4123,4124, - 1,0,0,0,4124,4126,1,0,0,0,4125,4123,1,0,0,0,4126,4127,3,298,149, - 0,4127,4129,3,308,154,0,4128,4130,3,310,155,0,4129,4128,1,0,0,0, - 4129,4130,1,0,0,0,4130,4132,1,0,0,0,4131,4133,3,312,156,0,4132,4131, - 1,0,0,0,4132,4133,1,0,0,0,4133,4135,1,0,0,0,4134,4136,3,314,157, - 0,4135,4134,1,0,0,0,4135,4136,1,0,0,0,4136,4138,1,0,0,0,4137,4139, - 3,252,126,0,4138,4137,1,0,0,0,4138,4139,1,0,0,0,4139,4141,1,0,0, - 0,4140,4142,3,318,159,0,4141,4140,1,0,0,0,4141,4142,1,0,0,0,4142, - 279,1,0,0,0,4143,4145,5,181,0,0,4144,4146,7,44,0,0,4145,4144,1,0, - 0,0,4145,4146,1,0,0,0,4146,4147,1,0,0,0,4147,4148,3,274,137,0,4148, - 281,1,0,0,0,4149,4151,5,181,0,0,4150,4152,7,44,0,0,4151,4150,1,0, - 0,0,4151,4152,1,0,0,0,4152,4155,1,0,0,0,4153,4156,3,278,139,0,4154, - 4156,3,274,137,0,4155,4153,1,0,0,0,4155,4154,1,0,0,0,4156,283,1, - 0,0,0,4157,4172,5,95,0,0,4158,4173,3,278,139,0,4159,4173,3,274,137, - 0,4160,4163,5,866,0,0,4161,4164,3,278,139,0,4162,4164,3,274,137, - 0,4163,4161,1,0,0,0,4163,4162,1,0,0,0,4164,4165,1,0,0,0,4165,4170, - 5,867,0,0,4166,4168,5,13,0,0,4167,4166,1,0,0,0,4167,4168,1,0,0,0, - 4168,4169,1,0,0,0,4169,4171,3,708,354,0,4170,4167,1,0,0,0,4170,4171, - 1,0,0,0,4171,4173,1,0,0,0,4172,4158,1,0,0,0,4172,4159,1,0,0,0,4172, - 4160,1,0,0,0,4173,285,1,0,0,0,4174,4175,5,253,0,0,4175,4176,5,866, - 0,0,4176,4177,5,882,0,0,4177,4178,5,868,0,0,4178,4179,5,882,0,0, - 4179,4180,5,337,0,0,4180,4181,5,866,0,0,4181,4182,3,288,144,0,4182, - 4183,5,867,0,0,4183,4188,5,867,0,0,4184,4186,5,13,0,0,4185,4184, - 1,0,0,0,4185,4186,1,0,0,0,4186,4187,1,0,0,0,4187,4189,3,708,354, - 0,4188,4185,1,0,0,0,4188,4189,1,0,0,0,4189,287,1,0,0,0,4190,4195, - 3,290,145,0,4191,4192,5,868,0,0,4192,4194,3,290,145,0,4193,4191, - 1,0,0,0,4194,4197,1,0,0,0,4195,4193,1,0,0,0,4195,4196,1,0,0,0,4196, - 289,1,0,0,0,4197,4195,1,0,0,0,4198,4215,3,664,332,0,4199,4200,5, - 65,0,0,4200,4216,5,256,0,0,4201,4213,3,728,364,0,4202,4203,5,257, - 0,0,4203,4205,5,882,0,0,4204,4206,3,292,146,0,4205,4204,1,0,0,0, - 4205,4206,1,0,0,0,4206,4208,1,0,0,0,4207,4209,3,294,147,0,4208,4207, - 1,0,0,0,4208,4209,1,0,0,0,4209,4214,1,0,0,0,4210,4211,5,60,0,0,4211, - 4212,5,257,0,0,4212,4214,5,882,0,0,4213,4202,1,0,0,0,4213,4210,1, - 0,0,0,4214,4216,1,0,0,0,4215,4199,1,0,0,0,4215,4201,1,0,0,0,4216, - 4228,1,0,0,0,4217,4219,5,255,0,0,4218,4220,5,257,0,0,4219,4218,1, - 0,0,0,4219,4220,1,0,0,0,4220,4221,1,0,0,0,4221,4222,5,882,0,0,4222, - 4223,5,337,0,0,4223,4224,5,866,0,0,4224,4225,3,288,144,0,4225,4226, - 5,867,0,0,4226,4228,1,0,0,0,4227,4198,1,0,0,0,4227,4217,1,0,0,0, - 4228,291,1,0,0,0,4229,4234,5,116,0,0,4230,4234,5,382,0,0,4231,4232, - 5,42,0,0,4232,4234,3,756,378,0,4233,4229,1,0,0,0,4233,4230,1,0,0, - 0,4233,4231,1,0,0,0,4234,4235,1,0,0,0,4235,4236,5,119,0,0,4236,4237, - 5,55,0,0,4237,293,1,0,0,0,4238,4243,5,116,0,0,4239,4243,5,382,0, - 0,4240,4241,5,42,0,0,4241,4243,3,756,378,0,4242,4238,1,0,0,0,4242, - 4239,1,0,0,0,4242,4240,1,0,0,0,4243,4244,1,0,0,0,4244,4245,5,119, - 0,0,4245,4246,5,382,0,0,4246,295,1,0,0,0,4247,4256,7,58,0,0,4248, - 4256,5,76,0,0,4249,4256,5,172,0,0,4250,4256,5,168,0,0,4251,4256, - 5,166,0,0,4252,4256,5,636,0,0,4253,4256,7,59,0,0,4254,4256,5,167, - 0,0,4255,4247,1,0,0,0,4255,4248,1,0,0,0,4255,4249,1,0,0,0,4255,4250, - 1,0,0,0,4255,4251,1,0,0,0,4255,4252,1,0,0,0,4255,4253,1,0,0,0,4255, - 4254,1,0,0,0,4256,297,1,0,0,0,4257,4260,5,850,0,0,4258,4260,3,300, - 150,0,4259,4257,1,0,0,0,4259,4258,1,0,0,0,4260,4265,1,0,0,0,4261, - 4262,5,868,0,0,4262,4264,3,300,150,0,4263,4261,1,0,0,0,4264,4267, - 1,0,0,0,4265,4263,1,0,0,0,4265,4266,1,0,0,0,4266,299,1,0,0,0,4267, - 4265,1,0,0,0,4268,4269,3,704,352,0,4269,4270,5,865,0,0,4270,4271, - 5,850,0,0,4271,4298,1,0,0,0,4272,4277,3,664,332,0,4273,4275,5,13, - 0,0,4274,4273,1,0,0,0,4274,4275,1,0,0,0,4275,4276,1,0,0,0,4276,4278, - 3,708,354,0,4277,4274,1,0,0,0,4277,4278,1,0,0,0,4278,4298,1,0,0, - 0,4279,4284,3,766,383,0,4280,4282,5,13,0,0,4281,4280,1,0,0,0,4281, - 4282,1,0,0,0,4282,4283,1,0,0,0,4283,4285,3,708,354,0,4284,4281,1, - 0,0,0,4284,4285,1,0,0,0,4285,4298,1,0,0,0,4286,4287,5,892,0,0,4287, - 4289,5,841,0,0,4288,4286,1,0,0,0,4288,4289,1,0,0,0,4289,4290,1,0, - 0,0,4290,4295,3,806,403,0,4291,4293,5,13,0,0,4292,4291,1,0,0,0,4292, - 4293,1,0,0,0,4293,4294,1,0,0,0,4294,4296,3,708,354,0,4295,4292,1, - 0,0,0,4295,4296,1,0,0,0,4296,4298,1,0,0,0,4297,4268,1,0,0,0,4297, - 4272,1,0,0,0,4297,4279,1,0,0,0,4297,4288,1,0,0,0,4298,301,1,0,0, - 0,4299,4300,5,88,0,0,4300,4305,3,230,115,0,4301,4302,5,868,0,0,4302, - 4304,3,230,115,0,4303,4301,1,0,0,0,4304,4307,1,0,0,0,4305,4303,1, - 0,0,0,4305,4306,1,0,0,0,4306,4336,1,0,0,0,4307,4305,1,0,0,0,4308, - 4309,5,88,0,0,4309,4310,5,372,0,0,4310,4336,5,882,0,0,4311,4312, - 5,88,0,0,4312,4313,5,128,0,0,4313,4317,5,882,0,0,4314,4315,5,26, - 0,0,4315,4316,5,155,0,0,4316,4318,3,690,345,0,4317,4314,1,0,0,0, - 4317,4318,1,0,0,0,4318,4325,1,0,0,0,4319,4321,7,46,0,0,4320,4322, - 3,304,152,0,4321,4320,1,0,0,0,4322,4323,1,0,0,0,4323,4321,1,0,0, - 0,4323,4324,1,0,0,0,4324,4326,1,0,0,0,4325,4319,1,0,0,0,4325,4326, - 1,0,0,0,4326,4333,1,0,0,0,4327,4329,5,102,0,0,4328,4330,3,306,153, - 0,4329,4328,1,0,0,0,4330,4331,1,0,0,0,4331,4329,1,0,0,0,4331,4332, - 1,0,0,0,4332,4334,1,0,0,0,4333,4327,1,0,0,0,4333,4334,1,0,0,0,4334, - 4336,1,0,0,0,4335,4299,1,0,0,0,4335,4308,1,0,0,0,4335,4311,1,0,0, - 0,4336,303,1,0,0,0,4337,4338,5,174,0,0,4338,4339,5,20,0,0,4339,4350, - 5,882,0,0,4340,4342,5,123,0,0,4341,4340,1,0,0,0,4341,4342,1,0,0, - 0,4342,4343,1,0,0,0,4343,4344,5,56,0,0,4344,4345,5,20,0,0,4345,4350, - 5,882,0,0,4346,4347,5,58,0,0,4347,4348,5,20,0,0,4348,4350,5,882, - 0,0,4349,4337,1,0,0,0,4349,4341,1,0,0,0,4349,4346,1,0,0,0,4350,305, - 1,0,0,0,4351,4352,5,171,0,0,4352,4353,5,20,0,0,4353,4358,5,882,0, - 0,4354,4355,5,174,0,0,4355,4356,5,20,0,0,4356,4358,5,882,0,0,4357, - 4351,1,0,0,0,4357,4354,1,0,0,0,4358,307,1,0,0,0,4359,4360,5,68,0, - 0,4360,4362,3,256,128,0,4361,4359,1,0,0,0,4361,4362,1,0,0,0,4362, - 4365,1,0,0,0,4363,4364,5,192,0,0,4364,4366,3,806,403,0,4365,4363, - 1,0,0,0,4365,4366,1,0,0,0,4366,309,1,0,0,0,4367,4368,5,74,0,0,4368, - 4369,5,20,0,0,4369,4374,3,316,158,0,4370,4371,5,868,0,0,4371,4373, - 3,316,158,0,4372,4370,1,0,0,0,4373,4376,1,0,0,0,4374,4372,1,0,0, - 0,4374,4375,1,0,0,0,4375,4379,1,0,0,0,4376,4374,1,0,0,0,4377,4378, - 5,194,0,0,4378,4380,5,584,0,0,4379,4377,1,0,0,0,4379,4380,1,0,0, - 0,4380,311,1,0,0,0,4381,4382,5,75,0,0,4382,4383,3,806,403,0,4383, - 313,1,0,0,0,4384,4385,5,689,0,0,4385,4386,3,784,392,0,4386,4387, - 5,13,0,0,4387,4388,5,866,0,0,4388,4389,3,782,391,0,4389,4399,5,867, - 0,0,4390,4391,5,868,0,0,4391,4392,3,784,392,0,4392,4393,5,13,0,0, - 4393,4394,5,866,0,0,4394,4395,3,782,391,0,4395,4396,5,867,0,0,4396, - 4398,1,0,0,0,4397,4390,1,0,0,0,4398,4401,1,0,0,0,4399,4397,1,0,0, - 0,4399,4400,1,0,0,0,4400,315,1,0,0,0,4401,4399,1,0,0,0,4402,4404, - 3,806,403,0,4403,4405,7,54,0,0,4404,4403,1,0,0,0,4404,4405,1,0,0, - 0,4405,317,1,0,0,0,4406,4417,5,100,0,0,4407,4408,3,320,160,0,4408, - 4409,5,868,0,0,4409,4411,1,0,0,0,4410,4407,1,0,0,0,4410,4411,1,0, - 0,0,4411,4412,1,0,0,0,4412,4418,3,320,160,0,4413,4414,3,320,160, - 0,4414,4415,5,509,0,0,4415,4416,3,320,160,0,4416,4418,1,0,0,0,4417, - 4410,1,0,0,0,4417,4413,1,0,0,0,4418,319,1,0,0,0,4419,4423,3,714, - 357,0,4420,4423,3,688,344,0,4421,4423,3,710,355,0,4422,4419,1,0, - 0,0,4422,4420,1,0,0,0,4422,4421,1,0,0,0,4423,321,1,0,0,0,4424,4425, - 5,640,0,0,4425,4434,5,664,0,0,4426,4431,3,344,172,0,4427,4428,5, - 868,0,0,4428,4430,3,344,172,0,4429,4427,1,0,0,0,4430,4433,1,0,0, - 0,4431,4429,1,0,0,0,4431,4432,1,0,0,0,4432,4435,1,0,0,0,4433,4431, - 1,0,0,0,4434,4426,1,0,0,0,4434,4435,1,0,0,0,4435,323,1,0,0,0,4436, - 4438,5,317,0,0,4437,4439,5,691,0,0,4438,4437,1,0,0,0,4438,4439,1, - 0,0,0,4439,325,1,0,0,0,4440,4442,5,341,0,0,4441,4443,5,691,0,0,4442, - 4441,1,0,0,0,4442,4443,1,0,0,0,4443,4449,1,0,0,0,4444,4446,5,11, - 0,0,4445,4447,5,502,0,0,4446,4445,1,0,0,0,4446,4447,1,0,0,0,4447, - 4448,1,0,0,0,4448,4450,5,326,0,0,4449,4444,1,0,0,0,4449,4450,1,0, - 0,0,4450,4455,1,0,0,0,4451,4453,5,502,0,0,4452,4451,1,0,0,0,4452, - 4453,1,0,0,0,4453,4454,1,0,0,0,4454,4456,5,140,0,0,4455,4452,1,0, - 0,0,4455,4456,1,0,0,0,4456,327,1,0,0,0,4457,4459,5,583,0,0,4458, - 4460,5,691,0,0,4459,4458,1,0,0,0,4459,4460,1,0,0,0,4460,4466,1,0, - 0,0,4461,4463,5,11,0,0,4462,4464,5,502,0,0,4463,4462,1,0,0,0,4463, - 4464,1,0,0,0,4464,4465,1,0,0,0,4465,4467,5,326,0,0,4466,4461,1,0, - 0,0,4466,4467,1,0,0,0,4467,4472,1,0,0,0,4468,4470,5,502,0,0,4469, - 4468,1,0,0,0,4469,4470,1,0,0,0,4470,4471,1,0,0,0,4471,4473,5,140, - 0,0,4472,4469,1,0,0,0,4472,4473,1,0,0,0,4473,329,1,0,0,0,4474,4475, - 5,589,0,0,4475,4476,3,708,354,0,4476,331,1,0,0,0,4477,4479,5,583, - 0,0,4478,4480,5,691,0,0,4479,4478,1,0,0,0,4479,4480,1,0,0,0,4480, - 4481,1,0,0,0,4481,4483,5,176,0,0,4482,4484,5,589,0,0,4483,4482,1, - 0,0,0,4483,4484,1,0,0,0,4484,4485,1,0,0,0,4485,4486,3,708,354,0, - 4486,333,1,0,0,0,4487,4488,5,140,0,0,4488,4489,5,589,0,0,4489,4490, - 3,708,354,0,4490,335,1,0,0,0,4491,4492,5,104,0,0,4492,4493,7,60, - 0,0,4493,4498,3,346,173,0,4494,4495,5,868,0,0,4495,4497,3,346,173, - 0,4496,4494,1,0,0,0,4497,4500,1,0,0,0,4498,4496,1,0,0,0,4498,4499, - 1,0,0,0,4499,337,1,0,0,0,4500,4498,1,0,0,0,4501,4502,5,183,0,0,4502, - 4503,5,752,0,0,4503,339,1,0,0,0,4504,4505,5,155,0,0,4505,4506,5, - 313,0,0,4506,4507,5,857,0,0,4507,4508,7,25,0,0,4508,341,1,0,0,0, - 4509,4511,5,155,0,0,4510,4512,7,61,0,0,4511,4510,1,0,0,0,4511,4512, - 1,0,0,0,4512,4513,1,0,0,0,4513,4514,5,664,0,0,4514,4519,3,350,175, - 0,4515,4516,5,868,0,0,4516,4518,3,350,175,0,4517,4515,1,0,0,0,4518, - 4521,1,0,0,0,4519,4517,1,0,0,0,4519,4520,1,0,0,0,4520,343,1,0,0, - 0,4521,4519,1,0,0,0,4522,4523,5,194,0,0,4523,4524,5,350,0,0,4524, - 4530,5,600,0,0,4525,4526,5,135,0,0,4526,4530,5,195,0,0,4527,4528, - 5,135,0,0,4528,4530,5,515,0,0,4529,4522,1,0,0,0,4529,4525,1,0,0, - 0,4529,4527,1,0,0,0,4530,345,1,0,0,0,4531,4536,3,654,327,0,4532, - 4534,5,13,0,0,4533,4532,1,0,0,0,4533,4534,1,0,0,0,4534,4535,1,0, - 0,0,4535,4537,3,708,354,0,4536,4533,1,0,0,0,4536,4537,1,0,0,0,4537, - 4538,1,0,0,0,4538,4539,3,348,174,0,4539,347,1,0,0,0,4540,4542,5, - 135,0,0,4541,4543,5,450,0,0,4542,4541,1,0,0,0,4542,4543,1,0,0,0, - 4543,4549,1,0,0,0,4544,4546,5,107,0,0,4545,4544,1,0,0,0,4545,4546, - 1,0,0,0,4546,4547,1,0,0,0,4547,4549,5,195,0,0,4548,4540,1,0,0,0, - 4548,4545,1,0,0,0,4549,349,1,0,0,0,4550,4551,5,440,0,0,4551,4552, - 5,448,0,0,4552,4558,3,352,176,0,4553,4554,5,135,0,0,4554,4558,5, - 195,0,0,4555,4556,5,135,0,0,4556,4558,5,515,0,0,4557,4550,1,0,0, - 0,4557,4553,1,0,0,0,4557,4555,1,0,0,0,4558,351,1,0,0,0,4559,4560, - 5,809,0,0,4560,4567,5,135,0,0,4561,4562,5,135,0,0,4562,4567,5,810, - 0,0,4563,4564,5,135,0,0,4564,4567,5,811,0,0,4565,4567,5,812,0,0, - 4566,4559,1,0,0,0,4566,4561,1,0,0,0,4566,4563,1,0,0,0,4566,4565, - 1,0,0,0,4567,353,1,0,0,0,4568,4569,5,25,0,0,4569,4570,5,453,0,0, - 4570,4571,5,176,0,0,4571,4576,3,370,185,0,4572,4573,5,868,0,0,4573, - 4575,3,370,185,0,4574,4572,1,0,0,0,4575,4578,1,0,0,0,4576,4574,1, - 0,0,0,4576,4577,1,0,0,0,4577,4580,1,0,0,0,4578,4576,1,0,0,0,4579, - 4581,3,390,195,0,4580,4579,1,0,0,0,4580,4581,1,0,0,0,4581,355,1, - 0,0,0,4582,4583,5,25,0,0,4583,4584,5,572,0,0,4584,4585,5,400,0,0, - 4585,4590,3,392,196,0,4586,4587,5,868,0,0,4587,4589,3,392,196,0, - 4588,4586,1,0,0,0,4589,4592,1,0,0,0,4590,4588,1,0,0,0,4590,4591, - 1,0,0,0,4591,4594,1,0,0,0,4592,4590,1,0,0,0,4593,4595,3,390,195, - 0,4594,4593,1,0,0,0,4594,4595,1,0,0,0,4595,357,1,0,0,0,4596,4597, - 5,25,0,0,4597,4598,5,572,0,0,4598,4599,5,605,0,0,4599,4600,5,176, - 0,0,4600,4605,3,380,190,0,4601,4602,5,868,0,0,4602,4604,3,380,190, - 0,4603,4601,1,0,0,0,4604,4607,1,0,0,0,4605,4603,1,0,0,0,4605,4606, - 1,0,0,0,4606,4609,1,0,0,0,4607,4605,1,0,0,0,4608,4610,3,390,195, - 0,4609,4608,1,0,0,0,4609,4610,1,0,0,0,4610,359,1,0,0,0,4611,4612, - 5,133,0,0,4612,4613,7,62,0,0,4613,4618,5,452,0,0,4614,4615,5,176, - 0,0,4615,4619,5,882,0,0,4616,4617,5,16,0,0,4617,4619,5,882,0,0,4618, - 4614,1,0,0,0,4618,4616,1,0,0,0,4619,361,1,0,0,0,4620,4621,5,640, - 0,0,4621,4630,7,63,0,0,4622,4627,3,396,198,0,4623,4624,5,868,0,0, - 4624,4626,3,396,198,0,4625,4623,1,0,0,0,4626,4629,1,0,0,0,4627,4625, - 1,0,0,0,4627,4628,1,0,0,0,4628,4631,1,0,0,0,4629,4627,1,0,0,0,4630, - 4622,1,0,0,0,4630,4631,1,0,0,0,4631,4634,1,0,0,0,4632,4633,5,676, - 0,0,4633,4635,3,398,199,0,4634,4632,1,0,0,0,4634,4635,1,0,0,0,4635, - 4639,1,0,0,0,4636,4638,3,400,200,0,4637,4636,1,0,0,0,4638,4641,1, - 0,0,0,4639,4637,1,0,0,0,4639,4640,1,0,0,0,4640,4643,1,0,0,0,4641, - 4639,1,0,0,0,4642,4644,3,390,195,0,4643,4642,1,0,0,0,4643,4644,1, - 0,0,0,4644,363,1,0,0,0,4645,4646,5,646,0,0,4646,4655,7,63,0,0,4647, - 4652,3,396,198,0,4648,4649,5,868,0,0,4649,4651,3,396,198,0,4650, - 4648,1,0,0,0,4651,4654,1,0,0,0,4652,4650,1,0,0,0,4652,4653,1,0,0, - 0,4653,4656,1,0,0,0,4654,4652,1,0,0,0,4655,4647,1,0,0,0,4655,4656, - 1,0,0,0,4656,4658,1,0,0,0,4657,4659,3,390,195,0,4658,4657,1,0,0, - 0,4658,4659,1,0,0,0,4659,365,1,0,0,0,4660,4661,5,640,0,0,4661,4665, - 5,415,0,0,4662,4663,5,678,0,0,4663,4664,5,857,0,0,4664,4666,5,882, - 0,0,4665,4662,1,0,0,0,4665,4666,1,0,0,0,4666,4671,1,0,0,0,4667,4668, - 5,868,0,0,4668,4669,5,529,0,0,4669,4670,5,857,0,0,4670,4672,5,882, - 0,0,4671,4667,1,0,0,0,4671,4672,1,0,0,0,4672,4677,1,0,0,0,4673,4674, - 5,868,0,0,4674,4675,5,363,0,0,4675,4676,5,857,0,0,4676,4678,5,882, - 0,0,4677,4673,1,0,0,0,4677,4678,1,0,0,0,4678,367,1,0,0,0,4679,4680, - 5,646,0,0,4680,4681,5,415,0,0,4681,369,1,0,0,0,4682,4683,3,372,186, - 0,4683,4684,5,857,0,0,4684,4685,5,882,0,0,4685,4710,1,0,0,0,4686, - 4687,3,374,187,0,4687,4688,5,857,0,0,4688,4689,3,714,357,0,4689, - 4710,1,0,0,0,4690,4691,3,376,188,0,4691,4692,5,857,0,0,4692,4693, - 7,25,0,0,4693,4710,1,0,0,0,4694,4710,3,378,189,0,4695,4696,5,424, - 0,0,4696,4697,5,857,0,0,4697,4706,5,866,0,0,4698,4703,3,708,354, - 0,4699,4700,5,868,0,0,4700,4702,3,708,354,0,4701,4699,1,0,0,0,4702, - 4705,1,0,0,0,4703,4701,1,0,0,0,4703,4704,1,0,0,0,4704,4707,1,0,0, - 0,4705,4703,1,0,0,0,4706,4698,1,0,0,0,4706,4707,1,0,0,0,4707,4708, - 1,0,0,0,4708,4710,5,867,0,0,4709,4682,1,0,0,0,4709,4686,1,0,0,0, - 4709,4690,1,0,0,0,4709,4694,1,0,0,0,4709,4695,1,0,0,0,4710,371,1, - 0,0,0,4711,4712,7,64,0,0,4712,373,1,0,0,0,4713,4714,7,65,0,0,4714, - 375,1,0,0,0,4715,4716,7,66,0,0,4716,377,1,0,0,0,4717,4718,5,543, - 0,0,4718,4719,5,857,0,0,4719,4731,7,67,0,0,4720,4721,5,574,0,0,4721, - 4722,5,857,0,0,4722,4731,7,68,0,0,4723,4724,5,310,0,0,4724,4728, - 5,857,0,0,4725,4729,5,507,0,0,4726,4729,5,450,0,0,4727,4729,3,402, - 201,0,4728,4725,1,0,0,0,4728,4726,1,0,0,0,4728,4727,1,0,0,0,4729, - 4731,1,0,0,0,4730,4717,1,0,0,0,4730,4720,1,0,0,0,4730,4723,1,0,0, - 0,4731,379,1,0,0,0,4732,4733,3,382,191,0,4733,4734,5,857,0,0,4734, - 4735,5,882,0,0,4735,4760,1,0,0,0,4736,4737,3,384,192,0,4737,4738, - 5,857,0,0,4738,4739,3,714,357,0,4739,4760,1,0,0,0,4740,4741,3,386, - 193,0,4741,4742,5,857,0,0,4742,4743,7,25,0,0,4743,4760,1,0,0,0,4744, - 4760,3,388,194,0,4745,4746,5,424,0,0,4746,4747,5,857,0,0,4747,4756, - 5,866,0,0,4748,4753,3,708,354,0,4749,4750,5,868,0,0,4750,4752,3, - 708,354,0,4751,4749,1,0,0,0,4752,4755,1,0,0,0,4753,4751,1,0,0,0, - 4753,4754,1,0,0,0,4754,4757,1,0,0,0,4755,4753,1,0,0,0,4756,4748, - 1,0,0,0,4756,4757,1,0,0,0,4757,4758,1,0,0,0,4758,4760,5,867,0,0, - 4759,4732,1,0,0,0,4759,4736,1,0,0,0,4759,4740,1,0,0,0,4759,4744, - 1,0,0,0,4759,4745,1,0,0,0,4760,381,1,0,0,0,4761,4762,7,69,0,0,4762, - 383,1,0,0,0,4763,4764,7,70,0,0,4764,385,1,0,0,0,4765,4766,7,71,0, - 0,4766,387,1,0,0,0,4767,4768,5,543,0,0,4768,4769,5,857,0,0,4769, - 4781,7,67,0,0,4770,4771,5,574,0,0,4771,4772,5,857,0,0,4772,4781, - 7,72,0,0,4773,4774,5,310,0,0,4774,4778,5,857,0,0,4775,4779,5,507, - 0,0,4776,4779,5,450,0,0,4777,4779,3,402,201,0,4778,4775,1,0,0,0, - 4778,4776,1,0,0,0,4778,4777,1,0,0,0,4779,4781,1,0,0,0,4780,4767, - 1,0,0,0,4780,4770,1,0,0,0,4780,4773,1,0,0,0,4781,389,1,0,0,0,4782, - 4783,5,65,0,0,4783,4784,5,328,0,0,4784,4785,5,882,0,0,4785,391,1, - 0,0,0,4786,4787,5,565,0,0,4787,4788,5,857,0,0,4788,4789,5,866,0, - 0,4789,4794,3,630,315,0,4790,4791,5,868,0,0,4791,4793,3,630,315, - 0,4792,4790,1,0,0,0,4793,4796,1,0,0,0,4794,4792,1,0,0,0,4794,4795, - 1,0,0,0,4795,4797,1,0,0,0,4796,4794,1,0,0,0,4797,4798,5,867,0,0, - 4798,4850,1,0,0,0,4799,4800,5,567,0,0,4800,4801,5,857,0,0,4801,4802, - 5,866,0,0,4802,4807,3,630,315,0,4803,4804,5,868,0,0,4804,4806,3, - 630,315,0,4805,4803,1,0,0,0,4806,4809,1,0,0,0,4807,4805,1,0,0,0, - 4807,4808,1,0,0,0,4808,4810,1,0,0,0,4809,4807,1,0,0,0,4810,4811, - 5,867,0,0,4811,4850,1,0,0,0,4812,4813,5,566,0,0,4813,4814,5,857, - 0,0,4814,4815,5,866,0,0,4815,4816,3,652,326,0,4816,4817,5,867,0, - 0,4817,4850,1,0,0,0,4818,4819,5,568,0,0,4819,4820,5,857,0,0,4820, - 4821,5,866,0,0,4821,4822,3,652,326,0,4822,4823,5,867,0,0,4823,4850, - 1,0,0,0,4824,4825,5,570,0,0,4825,4826,5,857,0,0,4826,4827,5,866, - 0,0,4827,4828,3,752,376,0,4828,4829,5,867,0,0,4829,4850,1,0,0,0, - 4830,4831,5,571,0,0,4831,4832,5,857,0,0,4832,4833,5,866,0,0,4833, - 4834,3,752,376,0,4834,4835,5,867,0,0,4835,4850,1,0,0,0,4836,4837, - 5,569,0,0,4837,4838,5,857,0,0,4838,4839,5,866,0,0,4839,4844,3,394, - 197,0,4840,4841,5,868,0,0,4841,4843,3,394,197,0,4842,4840,1,0,0, - 0,4843,4846,1,0,0,0,4844,4842,1,0,0,0,4844,4845,1,0,0,0,4845,4847, - 1,0,0,0,4846,4844,1,0,0,0,4847,4848,5,867,0,0,4848,4850,1,0,0,0, - 4849,4786,1,0,0,0,4849,4799,1,0,0,0,4849,4812,1,0,0,0,4849,4818, - 1,0,0,0,4849,4824,1,0,0,0,4849,4830,1,0,0,0,4849,4836,1,0,0,0,4850, - 393,1,0,0,0,4851,4852,5,866,0,0,4852,4853,3,654,327,0,4853,4854, - 5,868,0,0,4854,4855,3,654,327,0,4855,4856,5,867,0,0,4856,395,1,0, - 0,0,4857,4858,7,73,0,0,4858,397,1,0,0,0,4859,4860,7,74,0,0,4860, - 4861,5,857,0,0,4861,4885,3,402,201,0,4862,4863,5,460,0,0,4863,4864, - 5,857,0,0,4864,4865,5,882,0,0,4865,4866,5,868,0,0,4866,4867,5,461, - 0,0,4867,4868,5,857,0,0,4868,4885,3,714,357,0,4869,4870,5,611,0, - 0,4870,4871,5,857,0,0,4871,4872,5,882,0,0,4872,4873,5,868,0,0,4873, - 4874,5,612,0,0,4874,4875,5,857,0,0,4875,4885,3,714,357,0,4876,4877, - 5,557,0,0,4877,4878,5,857,0,0,4878,4879,5,882,0,0,4879,4880,5,868, - 0,0,4880,4881,5,558,0,0,4881,4882,5,857,0,0,4882,4885,3,714,357, - 0,4883,4885,5,634,0,0,4884,4859,1,0,0,0,4884,4862,1,0,0,0,4884,4869, - 1,0,0,0,4884,4876,1,0,0,0,4884,4883,1,0,0,0,4885,399,1,0,0,0,4886, - 4887,5,678,0,0,4887,4888,5,857,0,0,4888,4899,5,882,0,0,4889,4890, - 5,529,0,0,4890,4891,5,857,0,0,4891,4899,5,882,0,0,4892,4893,5,363, - 0,0,4893,4894,5,857,0,0,4894,4899,5,882,0,0,4895,4896,5,535,0,0, - 4896,4897,5,857,0,0,4897,4899,5,882,0,0,4898,4886,1,0,0,0,4898,4889, - 1,0,0,0,4898,4892,1,0,0,0,4898,4895,1,0,0,0,4899,401,1,0,0,0,4900, - 4905,3,698,349,0,4901,4902,5,868,0,0,4902,4904,3,698,349,0,4903, - 4901,1,0,0,0,4904,4907,1,0,0,0,4905,4903,1,0,0,0,4905,4906,1,0,0, - 0,4906,4910,1,0,0,0,4907,4905,1,0,0,0,4908,4910,5,882,0,0,4909,4900, - 1,0,0,0,4909,4908,1,0,0,0,4910,403,1,0,0,0,4911,4912,5,694,0,0,4912, - 4913,7,75,0,0,4913,4915,3,700,350,0,4914,4916,7,76,0,0,4915,4914, - 1,0,0,0,4915,4916,1,0,0,0,4916,405,1,0,0,0,4917,4918,5,694,0,0,4918, - 4919,5,378,0,0,4919,4925,3,700,350,0,4920,4923,5,654,0,0,4921,4922, - 5,65,0,0,4922,4924,5,489,0,0,4923,4921,1,0,0,0,4923,4924,1,0,0,0, - 4924,4926,1,0,0,0,4925,4920,1,0,0,0,4925,4926,1,0,0,0,4926,407,1, - 0,0,0,4927,4928,5,694,0,0,4928,4929,5,540,0,0,4929,4930,3,700,350, - 0,4930,409,1,0,0,0,4931,4932,5,694,0,0,4932,4933,5,341,0,0,4933, - 4936,3,700,350,0,4934,4935,5,513,0,0,4935,4937,5,533,0,0,4936,4934, - 1,0,0,0,4936,4937,1,0,0,0,4937,411,1,0,0,0,4938,4939,5,694,0,0,4939, - 4940,5,583,0,0,4940,4941,3,700,350,0,4941,413,1,0,0,0,4942,4943, - 5,694,0,0,4943,4946,5,551,0,0,4944,4945,5,33,0,0,4945,4947,3,700, - 350,0,4946,4944,1,0,0,0,4946,4947,1,0,0,0,4947,415,1,0,0,0,4948, - 4949,5,540,0,0,4949,4950,3,708,354,0,4950,4953,5,68,0,0,4951,4954, - 5,882,0,0,4952,4954,5,892,0,0,4953,4951,1,0,0,0,4953,4952,1,0,0, - 0,4954,417,1,0,0,0,4955,4956,5,717,0,0,4956,4959,3,708,354,0,4957, - 4958,5,188,0,0,4958,4960,3,754,377,0,4959,4957,1,0,0,0,4959,4960, - 1,0,0,0,4960,419,1,0,0,0,4961,4962,7,77,0,0,4962,4963,5,540,0,0, - 4963,4964,3,708,354,0,4964,421,1,0,0,0,4965,4968,3,424,212,0,4966, - 4968,3,4,2,0,4967,4965,1,0,0,0,4967,4966,1,0,0,0,4968,423,1,0,0, - 0,4969,4970,3,708,354,0,4970,4971,5,878,0,0,4971,4973,1,0,0,0,4972, - 4969,1,0,0,0,4972,4973,1,0,0,0,4973,4974,1,0,0,0,4974,4980,5,317, - 0,0,4975,4976,3,444,222,0,4976,4977,5,869,0,0,4977,4979,1,0,0,0, - 4978,4975,1,0,0,0,4979,4982,1,0,0,0,4980,4978,1,0,0,0,4980,4981, - 1,0,0,0,4981,4988,1,0,0,0,4982,4980,1,0,0,0,4983,4984,3,446,223, - 0,4984,4985,5,869,0,0,4985,4987,1,0,0,0,4986,4983,1,0,0,0,4987,4990, - 1,0,0,0,4988,4986,1,0,0,0,4988,4989,1,0,0,0,4989,4996,1,0,0,0,4990, - 4988,1,0,0,0,4991,4992,3,448,224,0,4992,4993,5,869,0,0,4993,4995, - 1,0,0,0,4994,4991,1,0,0,0,4995,4998,1,0,0,0,4996,4994,1,0,0,0,4996, - 4997,1,0,0,0,4997,5004,1,0,0,0,4998,4996,1,0,0,0,4999,5000,3,450, - 225,0,5000,5001,5,869,0,0,5001,5003,1,0,0,0,5002,4999,1,0,0,0,5003, - 5006,1,0,0,0,5004,5002,1,0,0,0,5004,5005,1,0,0,0,5005,5010,1,0,0, - 0,5006,5004,1,0,0,0,5007,5009,3,454,227,0,5008,5007,1,0,0,0,5009, - 5012,1,0,0,0,5010,5008,1,0,0,0,5010,5011,1,0,0,0,5011,5013,1,0,0, - 0,5012,5010,1,0,0,0,5013,5015,5,378,0,0,5014,5016,3,708,354,0,5015, - 5014,1,0,0,0,5015,5016,1,0,0,0,5016,425,1,0,0,0,5017,5020,5,23,0, - 0,5018,5021,3,708,354,0,5019,5021,3,806,403,0,5020,5018,1,0,0,0, - 5020,5019,1,0,0,0,5020,5021,1,0,0,0,5021,5023,1,0,0,0,5022,5024, - 3,456,228,0,5023,5022,1,0,0,0,5024,5025,1,0,0,0,5025,5023,1,0,0, - 0,5025,5026,1,0,0,0,5026,5033,1,0,0,0,5027,5029,5,53,0,0,5028,5030, - 3,454,227,0,5029,5028,1,0,0,0,5030,5031,1,0,0,0,5031,5029,1,0,0, - 0,5031,5032,1,0,0,0,5032,5034,1,0,0,0,5033,5027,1,0,0,0,5033,5034, - 1,0,0,0,5034,5035,1,0,0,0,5035,5036,5,378,0,0,5036,5037,5,23,0,0, - 5037,427,1,0,0,0,5038,5039,5,78,0,0,5039,5040,3,806,403,0,5040,5042, - 5,175,0,0,5041,5043,3,454,227,0,5042,5041,1,0,0,0,5043,5044,1,0, - 0,0,5044,5042,1,0,0,0,5044,5045,1,0,0,0,5045,5049,1,0,0,0,5046,5048, - 3,458,229,0,5047,5046,1,0,0,0,5048,5051,1,0,0,0,5049,5047,1,0,0, - 0,5049,5050,1,0,0,0,5050,5058,1,0,0,0,5051,5049,1,0,0,0,5052,5054, - 5,53,0,0,5053,5055,3,454,227,0,5054,5053,1,0,0,0,5055,5056,1,0,0, - 0,5056,5054,1,0,0,0,5056,5057,1,0,0,0,5057,5059,1,0,0,0,5058,5052, - 1,0,0,0,5058,5059,1,0,0,0,5059,5060,1,0,0,0,5060,5061,5,378,0,0, - 5061,5062,5,78,0,0,5062,429,1,0,0,0,5063,5064,5,90,0,0,5064,5065, - 3,708,354,0,5065,431,1,0,0,0,5066,5067,5,97,0,0,5067,5068,3,708, - 354,0,5068,433,1,0,0,0,5069,5070,3,708,354,0,5070,5071,5,878,0,0, - 5071,5073,1,0,0,0,5072,5069,1,0,0,0,5072,5073,1,0,0,0,5073,5074, - 1,0,0,0,5074,5076,5,106,0,0,5075,5077,3,454,227,0,5076,5075,1,0, - 0,0,5077,5078,1,0,0,0,5078,5076,1,0,0,0,5078,5079,1,0,0,0,5079,5080, - 1,0,0,0,5080,5081,5,378,0,0,5081,5083,5,106,0,0,5082,5084,3,708, - 354,0,5083,5082,1,0,0,0,5083,5084,1,0,0,0,5084,435,1,0,0,0,5085, - 5086,3,708,354,0,5086,5087,5,878,0,0,5087,5089,1,0,0,0,5088,5085, - 1,0,0,0,5088,5089,1,0,0,0,5089,5090,1,0,0,0,5090,5092,5,142,0,0, - 5091,5093,3,454,227,0,5092,5091,1,0,0,0,5093,5094,1,0,0,0,5094,5092, - 1,0,0,0,5094,5095,1,0,0,0,5095,5096,1,0,0,0,5096,5097,5,676,0,0, - 5097,5098,3,806,403,0,5098,5099,5,378,0,0,5099,5101,5,142,0,0,5100, - 5102,3,708,354,0,5101,5100,1,0,0,0,5101,5102,1,0,0,0,5102,437,1, - 0,0,0,5103,5104,5,148,0,0,5104,5105,3,806,403,0,5105,439,1,0,0,0, - 5106,5107,3,708,354,0,5107,5108,5,878,0,0,5108,5110,1,0,0,0,5109, - 5106,1,0,0,0,5109,5110,1,0,0,0,5110,5111,1,0,0,0,5111,5112,5,193, - 0,0,5112,5113,3,806,403,0,5113,5115,5,371,0,0,5114,5116,3,454,227, - 0,5115,5114,1,0,0,0,5116,5117,1,0,0,0,5117,5115,1,0,0,0,5117,5118, - 1,0,0,0,5118,5119,1,0,0,0,5119,5120,5,378,0,0,5120,5122,5,193,0, - 0,5121,5123,3,708,354,0,5122,5121,1,0,0,0,5122,5123,1,0,0,0,5123, - 441,1,0,0,0,5124,5125,5,334,0,0,5125,5140,3,708,354,0,5126,5131, - 5,64,0,0,5127,5129,5,501,0,0,5128,5127,1,0,0,0,5128,5129,1,0,0,0, - 5129,5130,1,0,0,0,5130,5132,5,68,0,0,5131,5128,1,0,0,0,5131,5132, - 1,0,0,0,5132,5133,1,0,0,0,5133,5134,3,708,354,0,5134,5135,5,88,0, - 0,5135,5136,3,706,353,0,5136,5140,1,0,0,0,5137,5138,5,516,0,0,5138, - 5140,3,708,354,0,5139,5124,1,0,0,0,5139,5126,1,0,0,0,5139,5137,1, - 0,0,0,5140,443,1,0,0,0,5141,5142,5,41,0,0,5142,5143,3,706,353,0, - 5143,5146,3,728,364,0,5144,5145,5,42,0,0,5145,5147,3,806,403,0,5146, - 5144,1,0,0,0,5146,5147,1,0,0,0,5147,445,1,0,0,0,5148,5149,5,41,0, - 0,5149,5150,3,708,354,0,5150,5151,5,30,0,0,5151,5158,5,65,0,0,5152, - 5159,3,714,357,0,5153,5155,5,164,0,0,5154,5156,5,682,0,0,5155,5154, - 1,0,0,0,5155,5156,1,0,0,0,5156,5157,1,0,0,0,5157,5159,5,882,0,0, - 5158,5152,1,0,0,0,5158,5153,1,0,0,0,5159,447,1,0,0,0,5160,5161,5, - 41,0,0,5161,5162,3,708,354,0,5162,5163,5,38,0,0,5163,5164,5,65,0, - 0,5164,5165,3,204,102,0,5165,449,1,0,0,0,5166,5167,5,41,0,0,5167, - 5168,7,78,0,0,5168,5169,5,417,0,0,5169,5170,5,65,0,0,5170,5175,3, - 452,226,0,5171,5172,5,868,0,0,5172,5174,3,452,226,0,5173,5171,1, - 0,0,0,5174,5177,1,0,0,0,5175,5173,1,0,0,0,5175,5176,1,0,0,0,5176, - 5178,1,0,0,0,5177,5175,1,0,0,0,5178,5179,3,422,211,0,5179,451,1, - 0,0,0,5180,5192,3,714,357,0,5181,5183,5,164,0,0,5182,5184,5,682, - 0,0,5183,5182,1,0,0,0,5183,5184,1,0,0,0,5184,5185,1,0,0,0,5185,5192, - 5,882,0,0,5186,5192,3,708,354,0,5187,5192,5,165,0,0,5188,5189,5, - 114,0,0,5189,5192,5,407,0,0,5190,5192,5,163,0,0,5191,5180,1,0,0, - 0,5191,5181,1,0,0,0,5191,5186,1,0,0,0,5191,5187,1,0,0,0,5191,5188, - 1,0,0,0,5191,5190,1,0,0,0,5192,453,1,0,0,0,5193,5196,3,18,9,0,5194, - 5196,3,4,2,0,5195,5193,1,0,0,0,5195,5194,1,0,0,0,5196,5197,1,0,0, - 0,5197,5198,5,869,0,0,5198,455,1,0,0,0,5199,5202,5,191,0,0,5200, - 5203,3,726,363,0,5201,5203,3,806,403,0,5202,5200,1,0,0,0,5202,5201, - 1,0,0,0,5203,5204,1,0,0,0,5204,5206,5,175,0,0,5205,5207,3,454,227, - 0,5206,5205,1,0,0,0,5207,5208,1,0,0,0,5208,5206,1,0,0,0,5208,5209, - 1,0,0,0,5209,457,1,0,0,0,5210,5211,5,54,0,0,5211,5212,3,806,403, - 0,5212,5214,5,175,0,0,5213,5215,3,454,227,0,5214,5213,1,0,0,0,5215, - 5216,1,0,0,0,5216,5214,1,0,0,0,5216,5217,1,0,0,0,5217,459,1,0,0, - 0,5218,5219,5,8,0,0,5219,5221,5,678,0,0,5220,5222,3,760,380,0,5221, - 5220,1,0,0,0,5221,5222,1,0,0,0,5222,5279,1,0,0,0,5223,5228,3,492, - 246,0,5224,5225,5,868,0,0,5225,5227,3,492,246,0,5226,5224,1,0,0, - 0,5227,5230,1,0,0,0,5228,5226,1,0,0,0,5228,5229,1,0,0,0,5229,5280, - 1,0,0,0,5230,5228,1,0,0,0,5231,5236,3,494,247,0,5232,5233,5,868, - 0,0,5233,5235,3,494,247,0,5234,5232,1,0,0,0,5235,5238,1,0,0,0,5236, - 5234,1,0,0,0,5236,5237,1,0,0,0,5237,5253,1,0,0,0,5238,5236,1,0,0, - 0,5239,5251,5,144,0,0,5240,5252,5,505,0,0,5241,5248,3,506,253,0, - 5242,5244,5,11,0,0,5243,5242,1,0,0,0,5243,5244,1,0,0,0,5244,5245, - 1,0,0,0,5245,5247,3,506,253,0,5246,5243,1,0,0,0,5247,5250,1,0,0, - 0,5248,5246,1,0,0,0,5248,5249,1,0,0,0,5249,5252,1,0,0,0,5250,5248, - 1,0,0,0,5251,5240,1,0,0,0,5251,5241,1,0,0,0,5252,5254,1,0,0,0,5253, - 5239,1,0,0,0,5253,5254,1,0,0,0,5254,5261,1,0,0,0,5255,5257,5,194, - 0,0,5256,5258,3,508,254,0,5257,5256,1,0,0,0,5258,5259,1,0,0,0,5259, - 5257,1,0,0,0,5259,5260,1,0,0,0,5260,5262,1,0,0,0,5261,5255,1,0,0, - 0,5261,5262,1,0,0,0,5262,5267,1,0,0,0,5263,5266,3,510,255,0,5264, - 5266,3,512,256,0,5265,5263,1,0,0,0,5265,5264,1,0,0,0,5266,5269,1, - 0,0,0,5267,5265,1,0,0,0,5267,5268,1,0,0,0,5268,5272,1,0,0,0,5269, - 5267,1,0,0,0,5270,5271,7,79,0,0,5271,5273,5,882,0,0,5272,5270,1, - 0,0,0,5272,5273,1,0,0,0,5273,5280,1,0,0,0,5274,5275,3,658,329,0, - 5275,5276,5,42,0,0,5276,5277,5,582,0,0,5277,5278,3,468,234,0,5278, - 5280,1,0,0,0,5279,5223,1,0,0,0,5279,5231,1,0,0,0,5279,5274,1,0,0, - 0,5280,461,1,0,0,0,5281,5282,5,34,0,0,5282,5284,5,678,0,0,5283,5285, - 3,762,381,0,5284,5283,1,0,0,0,5284,5285,1,0,0,0,5285,5286,1,0,0, - 0,5286,5288,3,686,343,0,5287,5289,3,496,248,0,5288,5287,1,0,0,0, - 5288,5289,1,0,0,0,5289,5297,1,0,0,0,5290,5291,5,868,0,0,5291,5293, - 3,686,343,0,5292,5294,3,496,248,0,5293,5292,1,0,0,0,5293,5294,1, - 0,0,0,5294,5296,1,0,0,0,5295,5290,1,0,0,0,5296,5299,1,0,0,0,5297, - 5295,1,0,0,0,5297,5298,1,0,0,0,5298,5303,1,0,0,0,5299,5297,1,0,0, - 0,5300,5301,5,42,0,0,5301,5302,5,582,0,0,5302,5304,3,468,234,0,5303, - 5300,1,0,0,0,5303,5304,1,0,0,0,5304,5319,1,0,0,0,5305,5317,5,144, - 0,0,5306,5318,5,505,0,0,5307,5314,3,506,253,0,5308,5310,5,11,0,0, - 5309,5308,1,0,0,0,5309,5310,1,0,0,0,5310,5311,1,0,0,0,5311,5313, - 3,506,253,0,5312,5309,1,0,0,0,5313,5316,1,0,0,0,5314,5312,1,0,0, - 0,5314,5315,1,0,0,0,5315,5318,1,0,0,0,5316,5314,1,0,0,0,5317,5306, - 1,0,0,0,5317,5307,1,0,0,0,5318,5320,1,0,0,0,5319,5305,1,0,0,0,5319, - 5320,1,0,0,0,5320,5327,1,0,0,0,5321,5323,5,194,0,0,5322,5324,3,508, - 254,0,5323,5322,1,0,0,0,5324,5325,1,0,0,0,5325,5323,1,0,0,0,5325, - 5326,1,0,0,0,5326,5328,1,0,0,0,5327,5321,1,0,0,0,5327,5328,1,0,0, - 0,5328,5333,1,0,0,0,5329,5332,3,510,255,0,5330,5332,3,512,256,0, - 5331,5329,1,0,0,0,5331,5330,1,0,0,0,5332,5335,1,0,0,0,5333,5331, - 1,0,0,0,5333,5334,1,0,0,0,5334,5338,1,0,0,0,5335,5333,1,0,0,0,5336, - 5337,7,79,0,0,5337,5339,5,882,0,0,5338,5336,1,0,0,0,5338,5339,1, - 0,0,0,5339,463,1,0,0,0,5340,5341,5,51,0,0,5341,5343,5,678,0,0,5342, - 5344,3,760,380,0,5343,5342,1,0,0,0,5343,5344,1,0,0,0,5344,5345,1, - 0,0,0,5345,5350,3,686,343,0,5346,5347,5,868,0,0,5347,5349,3,686, - 343,0,5348,5346,1,0,0,0,5349,5352,1,0,0,0,5350,5348,1,0,0,0,5350, - 5351,1,0,0,0,5351,465,1,0,0,0,5352,5350,1,0,0,0,5353,5354,5,73,0, - 0,5354,5359,3,520,260,0,5355,5356,5,868,0,0,5356,5358,3,520,260, - 0,5357,5355,1,0,0,0,5358,5361,1,0,0,0,5359,5357,1,0,0,0,5359,5360, - 1,0,0,0,5360,5362,1,0,0,0,5361,5359,1,0,0,0,5362,5364,5,119,0,0, - 5363,5365,3,488,244,0,5364,5363,1,0,0,0,5364,5365,1,0,0,0,5365,5366, - 1,0,0,0,5366,5367,3,524,262,0,5367,5377,5,176,0,0,5368,5373,3,500, - 250,0,5369,5370,5,868,0,0,5370,5372,3,500,250,0,5371,5369,1,0,0, - 0,5372,5375,1,0,0,0,5373,5371,1,0,0,0,5373,5374,1,0,0,0,5374,5378, - 1,0,0,0,5375,5373,1,0,0,0,5376,5378,3,656,328,0,5377,5368,1,0,0, - 0,5377,5376,1,0,0,0,5378,5393,1,0,0,0,5379,5391,5,144,0,0,5380,5392, - 5,505,0,0,5381,5388,3,506,253,0,5382,5384,5,11,0,0,5383,5382,1,0, - 0,0,5383,5384,1,0,0,0,5384,5385,1,0,0,0,5385,5387,3,506,253,0,5386, - 5383,1,0,0,0,5387,5390,1,0,0,0,5388,5386,1,0,0,0,5388,5389,1,0,0, - 0,5389,5392,1,0,0,0,5390,5388,1,0,0,0,5391,5380,1,0,0,0,5391,5381, - 1,0,0,0,5392,5394,1,0,0,0,5393,5379,1,0,0,0,5393,5394,1,0,0,0,5394, - 5404,1,0,0,0,5395,5401,5,194,0,0,5396,5397,5,73,0,0,5397,5400,5, - 121,0,0,5398,5400,3,508,254,0,5399,5396,1,0,0,0,5399,5398,1,0,0, - 0,5400,5403,1,0,0,0,5401,5399,1,0,0,0,5401,5402,1,0,0,0,5402,5405, - 1,0,0,0,5403,5401,1,0,0,0,5404,5395,1,0,0,0,5404,5405,1,0,0,0,5405, - 5413,1,0,0,0,5406,5407,5,13,0,0,5407,5411,3,686,343,0,5408,5409, - 5,194,0,0,5409,5410,5,582,0,0,5410,5412,3,468,234,0,5411,5408,1, - 0,0,0,5411,5412,1,0,0,0,5412,5414,1,0,0,0,5413,5406,1,0,0,0,5413, - 5414,1,0,0,0,5414,5443,1,0,0,0,5415,5418,5,73,0,0,5416,5417,5,547, - 0,0,5417,5419,5,119,0,0,5418,5416,1,0,0,0,5418,5419,1,0,0,0,5419, - 5420,1,0,0,0,5420,5425,3,658,329,0,5421,5422,5,868,0,0,5422,5424, - 3,658,329,0,5423,5421,1,0,0,0,5424,5427,1,0,0,0,5425,5423,1,0,0, - 0,5425,5426,1,0,0,0,5426,5428,1,0,0,0,5427,5425,1,0,0,0,5428,5429, - 5,176,0,0,5429,5434,3,658,329,0,5430,5431,5,868,0,0,5431,5433,3, - 658,329,0,5432,5430,1,0,0,0,5433,5436,1,0,0,0,5434,5432,1,0,0,0, - 5434,5435,1,0,0,0,5435,5440,1,0,0,0,5436,5434,1,0,0,0,5437,5438, - 5,194,0,0,5438,5439,5,704,0,0,5439,5441,5,121,0,0,5440,5437,1,0, - 0,0,5440,5441,1,0,0,0,5441,5443,1,0,0,0,5442,5353,1,0,0,0,5442,5415, - 1,0,0,0,5443,467,1,0,0,0,5444,5453,5,42,0,0,5445,5453,5,505,0,0, - 5446,5449,5,7,0,0,5447,5448,5,59,0,0,5448,5450,3,656,328,0,5449, - 5447,1,0,0,0,5449,5450,1,0,0,0,5450,5453,1,0,0,0,5451,5453,3,656, - 328,0,5452,5444,1,0,0,0,5452,5445,1,0,0,0,5452,5446,1,0,0,0,5452, - 5451,1,0,0,0,5453,469,1,0,0,0,5454,5455,5,73,0,0,5455,5456,5,547, - 0,0,5456,5457,5,119,0,0,5457,5458,3,686,343,0,5458,5459,5,176,0, - 0,5459,5464,3,686,343,0,5460,5461,5,868,0,0,5461,5463,3,686,343, - 0,5462,5460,1,0,0,0,5463,5466,1,0,0,0,5464,5462,1,0,0,0,5464,5465, - 1,0,0,0,5465,5470,1,0,0,0,5466,5464,1,0,0,0,5467,5468,5,194,0,0, - 5468,5469,5,73,0,0,5469,5471,5,121,0,0,5470,5467,1,0,0,0,5470,5471, - 1,0,0,0,5471,471,1,0,0,0,5472,5473,5,8,0,0,5473,5474,5,739,0,0,5474, - 5475,5,74,0,0,5475,5481,3,648,324,0,5476,5478,5,190,0,0,5477,5479, - 5,857,0,0,5478,5477,1,0,0,0,5478,5479,1,0,0,0,5479,5480,1,0,0,0, - 5480,5482,3,480,240,0,5481,5476,1,0,0,0,5481,5482,1,0,0,0,5482,5488, - 1,0,0,0,5483,5485,5,837,0,0,5484,5486,5,857,0,0,5485,5484,1,0,0, - 0,5485,5486,1,0,0,0,5486,5487,1,0,0,0,5487,5489,3,714,357,0,5488, - 5483,1,0,0,0,5488,5489,1,0,0,0,5489,5494,1,0,0,0,5490,5492,7,38, - 0,0,5491,5493,5,66,0,0,5492,5491,1,0,0,0,5492,5493,1,0,0,0,5493, - 5495,1,0,0,0,5494,5490,1,0,0,0,5494,5495,1,0,0,0,5495,473,1,0,0, - 0,5496,5497,5,34,0,0,5497,5498,5,739,0,0,5498,5499,5,74,0,0,5499, - 5500,3,646,323,0,5500,5501,5,839,0,0,5501,5502,5,857,0,0,5502,5508, - 7,80,0,0,5503,5505,5,190,0,0,5504,5506,5,857,0,0,5505,5504,1,0,0, - 0,5505,5506,1,0,0,0,5506,5507,1,0,0,0,5507,5509,3,480,240,0,5508, - 5503,1,0,0,0,5508,5509,1,0,0,0,5509,5515,1,0,0,0,5510,5512,5,837, - 0,0,5511,5513,5,857,0,0,5512,5511,1,0,0,0,5512,5513,1,0,0,0,5513, - 5514,1,0,0,0,5514,5516,3,714,357,0,5515,5510,1,0,0,0,5515,5516,1, - 0,0,0,5516,5518,1,0,0,0,5517,5519,7,38,0,0,5518,5517,1,0,0,0,5518, - 5519,1,0,0,0,5519,475,1,0,0,0,5520,5521,5,51,0,0,5521,5522,5,739, - 0,0,5522,5523,5,74,0,0,5523,5525,3,648,324,0,5524,5526,5,66,0,0, - 5525,5524,1,0,0,0,5525,5526,1,0,0,0,5526,477,1,0,0,0,5527,5528,5, - 155,0,0,5528,5529,5,739,0,0,5529,5530,5,74,0,0,5530,5540,3,648,324, - 0,5531,5532,5,65,0,0,5532,5537,3,714,357,0,5533,5534,5,868,0,0,5534, - 5536,3,714,357,0,5535,5533,1,0,0,0,5536,5539,1,0,0,0,5537,5535,1, - 0,0,0,5537,5538,1,0,0,0,5538,5541,1,0,0,0,5539,5537,1,0,0,0,5540, - 5531,1,0,0,0,5540,5541,1,0,0,0,5541,479,1,0,0,0,5542,5548,3,714, - 357,0,5543,5544,3,714,357,0,5544,5545,5,854,0,0,5545,5546,3,714, - 357,0,5546,5548,1,0,0,0,5547,5542,1,0,0,0,5547,5543,1,0,0,0,5548, - 5553,1,0,0,0,5549,5550,5,868,0,0,5550,5552,3,480,240,0,5551,5549, - 1,0,0,0,5552,5555,1,0,0,0,5553,5551,1,0,0,0,5553,5554,1,0,0,0,5554, - 481,1,0,0,0,5555,5553,1,0,0,0,5556,5557,5,141,0,0,5557,5558,5,678, - 0,0,5558,5563,3,526,263,0,5559,5560,5,868,0,0,5560,5562,3,526,263, - 0,5561,5559,1,0,0,0,5562,5565,1,0,0,0,5563,5561,1,0,0,0,5563,5564, - 1,0,0,0,5564,483,1,0,0,0,5565,5563,1,0,0,0,5566,5568,5,149,0,0,5567, - 5569,3,760,380,0,5568,5567,1,0,0,0,5568,5569,1,0,0,0,5569,5570,1, - 0,0,0,5570,5575,3,520,260,0,5571,5572,5,868,0,0,5572,5574,3,520, - 260,0,5573,5571,1,0,0,0,5574,5577,1,0,0,0,5575,5573,1,0,0,0,5575, - 5576,1,0,0,0,5576,5578,1,0,0,0,5577,5575,1,0,0,0,5578,5580,5,119, - 0,0,5579,5581,3,488,244,0,5580,5579,1,0,0,0,5580,5581,1,0,0,0,5581, - 5582,1,0,0,0,5582,5583,3,524,262,0,5583,5584,5,68,0,0,5584,5586, - 3,656,328,0,5585,5587,3,486,243,0,5586,5585,1,0,0,0,5586,5587,1, - 0,0,0,5587,5619,1,0,0,0,5588,5590,5,149,0,0,5589,5591,3,760,380, - 0,5590,5589,1,0,0,0,5590,5591,1,0,0,0,5591,5592,1,0,0,0,5592,5594, - 5,7,0,0,5593,5595,5,734,0,0,5594,5593,1,0,0,0,5594,5595,1,0,0,0, - 5595,5596,1,0,0,0,5596,5597,5,868,0,0,5597,5598,5,73,0,0,5598,5599, - 5,121,0,0,5599,5600,5,68,0,0,5600,5602,3,656,328,0,5601,5603,3,486, - 243,0,5602,5601,1,0,0,0,5602,5603,1,0,0,0,5603,5619,1,0,0,0,5604, - 5606,5,149,0,0,5605,5607,3,760,380,0,5606,5605,1,0,0,0,5606,5607, - 1,0,0,0,5607,5610,1,0,0,0,5608,5609,5,547,0,0,5609,5611,5,119,0, - 0,5610,5608,1,0,0,0,5610,5611,1,0,0,0,5611,5612,1,0,0,0,5612,5613, - 3,656,328,0,5613,5614,5,68,0,0,5614,5616,3,656,328,0,5615,5617,3, - 486,243,0,5616,5615,1,0,0,0,5616,5617,1,0,0,0,5617,5619,1,0,0,0, - 5618,5566,1,0,0,0,5618,5588,1,0,0,0,5618,5604,1,0,0,0,5619,485,1, - 0,0,0,5620,5621,5,79,0,0,5621,5622,5,674,0,0,5622,5623,5,678,0,0, - 5623,487,1,0,0,0,5624,5625,7,81,0,0,5625,489,1,0,0,0,5626,5627,5, - 155,0,0,5627,5630,5,529,0,0,5628,5629,5,65,0,0,5629,5631,3,686,343, - 0,5630,5628,1,0,0,0,5630,5631,1,0,0,0,5631,5632,1,0,0,0,5632,5635, - 5,857,0,0,5633,5636,3,800,400,0,5634,5636,5,882,0,0,5635,5633,1, - 0,0,0,5635,5634,1,0,0,0,5636,5659,1,0,0,0,5637,5638,5,155,0,0,5638, - 5641,5,529,0,0,5639,5640,5,65,0,0,5640,5642,3,686,343,0,5641,5639, - 1,0,0,0,5641,5642,1,0,0,0,5642,5647,1,0,0,0,5643,5644,5,176,0,0, - 5644,5648,5,829,0,0,5645,5646,5,857,0,0,5646,5648,5,882,0,0,5647, - 5643,1,0,0,0,5647,5645,1,0,0,0,5648,5651,1,0,0,0,5649,5650,5,143, - 0,0,5650,5652,5,882,0,0,5651,5649,1,0,0,0,5651,5652,1,0,0,0,5652, - 5656,1,0,0,0,5653,5654,5,147,0,0,5654,5655,5,36,0,0,5655,5657,5, - 529,0,0,5656,5653,1,0,0,0,5656,5657,1,0,0,0,5657,5659,1,0,0,0,5658, - 5626,1,0,0,0,5658,5637,1,0,0,0,5659,491,1,0,0,0,5660,5661,3,686, - 343,0,5661,5662,3,510,255,0,5662,493,1,0,0,0,5663,5664,3,686,343, - 0,5664,5665,5,423,0,0,5665,5666,5,20,0,0,5666,5667,5,882,0,0,5667, - 5668,3,502,251,0,5668,5702,1,0,0,0,5669,5670,3,686,343,0,5670,5671, - 5,423,0,0,5671,5672,5,20,0,0,5672,5673,5,829,0,0,5673,5674,5,529, - 0,0,5674,5675,3,502,251,0,5675,5702,1,0,0,0,5676,5677,3,686,343, - 0,5677,5678,5,423,0,0,5678,5679,5,194,0,0,5679,5680,3,504,252,0, - 5680,5702,1,0,0,0,5681,5682,3,686,343,0,5682,5683,5,369,0,0,5683, - 5684,5,511,0,0,5684,5685,5,529,0,0,5685,5702,1,0,0,0,5686,5692,3, - 686,343,0,5687,5688,7,82,0,0,5688,5690,3,518,259,0,5689,5691,3,514, - 257,0,5690,5689,1,0,0,0,5690,5691,1,0,0,0,5691,5693,1,0,0,0,5692, - 5687,1,0,0,0,5693,5694,1,0,0,0,5694,5692,1,0,0,0,5694,5695,1,0,0, - 0,5695,5702,1,0,0,0,5696,5698,3,686,343,0,5697,5699,3,516,258,0, - 5698,5697,1,0,0,0,5698,5699,1,0,0,0,5699,5702,1,0,0,0,5700,5702, - 3,686,343,0,5701,5663,1,0,0,0,5701,5669,1,0,0,0,5701,5676,1,0,0, - 0,5701,5681,1,0,0,0,5701,5686,1,0,0,0,5701,5696,1,0,0,0,5701,5700, - 1,0,0,0,5702,495,1,0,0,0,5703,5704,5,423,0,0,5704,5710,5,20,0,0, - 5705,5711,5,882,0,0,5706,5707,5,829,0,0,5707,5711,5,529,0,0,5708, - 5709,5,529,0,0,5709,5711,5,882,0,0,5710,5705,1,0,0,0,5710,5706,1, - 0,0,0,5710,5708,1,0,0,0,5711,5714,1,0,0,0,5712,5713,5,11,0,0,5713, - 5715,3,496,248,0,5714,5712,1,0,0,0,5714,5715,1,0,0,0,5715,5740,1, - 0,0,0,5716,5717,5,423,0,0,5717,5718,5,194,0,0,5718,5727,3,708,354, - 0,5719,5723,5,20,0,0,5720,5724,5,882,0,0,5721,5722,5,829,0,0,5722, - 5724,5,529,0,0,5723,5720,1,0,0,0,5723,5721,1,0,0,0,5724,5728,1,0, - 0,0,5725,5726,5,13,0,0,5726,5728,5,882,0,0,5727,5719,1,0,0,0,5727, - 5725,1,0,0,0,5727,5728,1,0,0,0,5728,5731,1,0,0,0,5729,5730,5,11, - 0,0,5730,5732,3,496,248,0,5731,5729,1,0,0,0,5731,5732,1,0,0,0,5732, - 5740,1,0,0,0,5733,5734,5,423,0,0,5734,5735,5,194,0,0,5735,5737,3, - 708,354,0,5736,5738,3,498,249,0,5737,5736,1,0,0,0,5737,5738,1,0, - 0,0,5738,5740,1,0,0,0,5739,5703,1,0,0,0,5739,5716,1,0,0,0,5739,5733, - 1,0,0,0,5740,497,1,0,0,0,5741,5742,5,427,0,0,5742,5743,5,708,0,0, - 5743,5744,5,423,0,0,5744,5748,5,20,0,0,5745,5746,5,829,0,0,5746, - 5749,5,529,0,0,5747,5749,5,882,0,0,5748,5745,1,0,0,0,5748,5747,1, - 0,0,0,5749,5759,1,0,0,0,5750,5751,5,427,0,0,5751,5752,5,708,0,0, - 5752,5753,5,423,0,0,5753,5754,5,194,0,0,5754,5755,3,708,354,0,5755, - 5756,5,13,0,0,5756,5757,5,882,0,0,5757,5759,1,0,0,0,5758,5741,1, - 0,0,0,5758,5750,1,0,0,0,5759,499,1,0,0,0,5760,5761,3,686,343,0,5761, - 5762,5,423,0,0,5762,5763,5,20,0,0,5763,5764,5,529,0,0,5764,5765, - 5,882,0,0,5765,5786,1,0,0,0,5766,5767,3,686,343,0,5767,5768,5,423, - 0,0,5768,5769,5,20,0,0,5769,5770,5,829,0,0,5770,5771,5,529,0,0,5771, - 5772,3,502,251,0,5772,5786,1,0,0,0,5773,5774,3,686,343,0,5774,5775, - 5,423,0,0,5775,5776,5,20,0,0,5776,5777,5,882,0,0,5777,5778,3,502, - 251,0,5778,5786,1,0,0,0,5779,5780,3,686,343,0,5780,5781,5,423,0, - 0,5781,5782,5,194,0,0,5782,5783,3,504,252,0,5783,5786,1,0,0,0,5784, - 5786,3,686,343,0,5785,5760,1,0,0,0,5785,5766,1,0,0,0,5785,5773,1, - 0,0,0,5785,5779,1,0,0,0,5785,5784,1,0,0,0,5786,501,1,0,0,0,5787, - 5788,5,143,0,0,5788,5790,5,882,0,0,5789,5787,1,0,0,0,5789,5790,1, - 0,0,0,5790,5794,1,0,0,0,5791,5792,5,147,0,0,5792,5793,5,36,0,0,5793, - 5795,5,529,0,0,5794,5791,1,0,0,0,5794,5795,1,0,0,0,5795,503,1,0, - 0,0,5796,5804,3,708,354,0,5797,5801,7,83,0,0,5798,5802,5,882,0,0, - 5799,5800,5,829,0,0,5800,5802,5,529,0,0,5801,5798,1,0,0,0,5801,5799, - 1,0,0,0,5802,5803,1,0,0,0,5803,5805,3,502,251,0,5804,5797,1,0,0, - 0,5804,5805,1,0,0,0,5805,5811,1,0,0,0,5806,5807,3,708,354,0,5807, - 5808,5,188,0,0,5808,5809,3,800,400,0,5809,5811,1,0,0,0,5810,5796, - 1,0,0,0,5810,5806,1,0,0,0,5811,505,1,0,0,0,5812,5821,5,169,0,0,5813, - 5821,5,693,0,0,5814,5815,5,331,0,0,5815,5821,5,882,0,0,5816,5817, - 5,441,0,0,5817,5821,5,882,0,0,5818,5819,5,651,0,0,5819,5821,5,882, - 0,0,5820,5812,1,0,0,0,5820,5813,1,0,0,0,5820,5814,1,0,0,0,5820,5816, - 1,0,0,0,5820,5818,1,0,0,0,5821,507,1,0,0,0,5822,5823,5,479,0,0,5823, - 5831,3,714,357,0,5824,5825,5,482,0,0,5825,5831,3,714,357,0,5826, - 5827,5,478,0,0,5827,5831,3,714,357,0,5828,5829,5,483,0,0,5829,5831, - 3,714,357,0,5830,5822,1,0,0,0,5830,5824,1,0,0,0,5830,5826,1,0,0, - 0,5830,5828,1,0,0,0,5831,509,1,0,0,0,5832,5833,5,529,0,0,5833,5840, - 5,390,0,0,5834,5841,5,42,0,0,5835,5841,5,500,0,0,5836,5837,5,87, - 0,0,5837,5838,3,714,357,0,5838,5839,5,698,0,0,5839,5841,1,0,0,0, - 5840,5834,1,0,0,0,5840,5835,1,0,0,0,5840,5836,1,0,0,0,5840,5841, - 1,0,0,0,5841,5871,1,0,0,0,5842,5843,5,529,0,0,5843,5846,5,420,0, - 0,5844,5847,5,42,0,0,5845,5847,3,714,357,0,5846,5844,1,0,0,0,5846, - 5845,1,0,0,0,5847,5871,1,0,0,0,5848,5849,5,529,0,0,5849,5850,5,581, - 0,0,5850,5855,5,87,0,0,5851,5856,5,42,0,0,5852,5853,3,714,357,0, - 5853,5854,5,698,0,0,5854,5856,1,0,0,0,5855,5851,1,0,0,0,5855,5852, - 1,0,0,0,5856,5871,1,0,0,0,5857,5858,5,529,0,0,5858,5859,5,144,0, - 0,5859,5861,5,36,0,0,5860,5862,7,84,0,0,5861,5860,1,0,0,0,5861,5862, - 1,0,0,0,5862,5871,1,0,0,0,5863,5864,5,395,0,0,5864,5871,3,714,357, - 0,5865,5868,5,530,0,0,5866,5869,3,714,357,0,5867,5869,5,669,0,0, - 5868,5866,1,0,0,0,5868,5867,1,0,0,0,5869,5871,1,0,0,0,5870,5832, - 1,0,0,0,5870,5842,1,0,0,0,5870,5848,1,0,0,0,5870,5857,1,0,0,0,5870, - 5863,1,0,0,0,5870,5865,1,0,0,0,5871,511,1,0,0,0,5872,5873,5,304, - 0,0,5873,5874,7,85,0,0,5874,513,1,0,0,0,5875,5878,5,423,0,0,5876, - 5877,5,194,0,0,5877,5879,3,708,354,0,5878,5876,1,0,0,0,5878,5879, - 1,0,0,0,5879,5888,1,0,0,0,5880,5884,5,20,0,0,5881,5885,5,882,0,0, - 5882,5883,5,829,0,0,5883,5885,5,529,0,0,5884,5881,1,0,0,0,5884,5882, - 1,0,0,0,5885,5889,1,0,0,0,5886,5887,5,13,0,0,5887,5889,5,882,0,0, - 5888,5880,1,0,0,0,5888,5886,1,0,0,0,5889,515,1,0,0,0,5890,5891,3, - 518,259,0,5891,5892,5,429,0,0,5892,5893,5,555,0,0,5893,5906,1,0, - 0,0,5894,5895,3,518,259,0,5895,5896,5,401,0,0,5896,5897,5,555,0, - 0,5897,5898,5,155,0,0,5898,5899,5,330,0,0,5899,5900,5,13,0,0,5900, - 5901,5,882,0,0,5901,5906,1,0,0,0,5902,5903,3,518,259,0,5903,5904, - 5,675,0,0,5904,5906,1,0,0,0,5905,5890,1,0,0,0,5905,5894,1,0,0,0, - 5905,5902,1,0,0,0,5906,517,1,0,0,0,5907,5908,7,86,0,0,5908,5909, - 5,394,0,0,5909,519,1,0,0,0,5910,5915,3,522,261,0,5911,5912,5,866, - 0,0,5912,5913,3,662,331,0,5913,5914,5,867,0,0,5914,5916,1,0,0,0, - 5915,5911,1,0,0,0,5915,5916,1,0,0,0,5916,521,1,0,0,0,5917,5919,5, - 7,0,0,5918,5920,5,734,0,0,5919,5918,1,0,0,0,5919,5920,1,0,0,0,5920, - 6011,1,0,0,0,5921,5923,5,8,0,0,5922,5924,5,743,0,0,5923,5922,1,0, - 0,0,5923,5924,1,0,0,0,5924,6011,1,0,0,0,5925,5933,5,34,0,0,5926, - 5927,5,660,0,0,5927,5934,5,752,0,0,5928,5934,5,743,0,0,5929,5934, - 5,684,0,0,5930,5934,5,678,0,0,5931,5934,5,658,0,0,5932,5934,5,582, - 0,0,5933,5926,1,0,0,0,5933,5928,1,0,0,0,5933,5929,1,0,0,0,5933,5930, - 1,0,0,0,5933,5931,1,0,0,0,5933,5932,1,0,0,0,5933,5934,1,0,0,0,5934, - 6011,1,0,0,0,5935,6011,5,44,0,0,5936,5938,5,51,0,0,5937,5939,5,582, - 0,0,5938,5937,1,0,0,0,5938,5939,1,0,0,0,5939,6011,1,0,0,0,5940,6011, - 5,385,0,0,5941,6011,5,717,0,0,5942,6011,5,718,0,0,5943,5944,5,73, - 0,0,5944,6011,5,121,0,0,5945,6011,5,82,0,0,5946,6011,5,86,0,0,5947, - 5948,5,104,0,0,5948,6011,5,752,0,0,5949,6011,5,735,0,0,5950,6011, - 5,547,0,0,5951,6011,5,138,0,0,5952,6011,5,736,0,0,5953,5954,5,572, - 0,0,5954,6011,7,87,0,0,5955,6011,5,154,0,0,5956,5957,5,157,0,0,5957, - 6011,7,88,0,0,5958,6011,5,749,0,0,5959,6011,5,750,0,0,5960,6011, - 5,178,0,0,5961,6011,5,185,0,0,5962,6011,5,186,0,0,5963,6011,5,705, - 0,0,5964,6011,5,706,0,0,5965,6011,5,707,0,0,5966,6011,5,709,0,0, - 5967,6011,5,710,0,0,5968,6011,5,711,0,0,5969,6011,5,712,0,0,5970, - 6011,5,714,0,0,5971,6011,5,715,0,0,5972,6011,5,716,0,0,5973,6011, - 5,719,0,0,5974,6011,5,720,0,0,5975,6011,5,721,0,0,5976,6011,5,722, - 0,0,5977,6011,5,723,0,0,5978,6011,5,724,0,0,5979,6011,5,725,0,0, - 5980,6011,5,726,0,0,5981,6011,5,727,0,0,5982,6011,5,728,0,0,5983, - 6011,5,731,0,0,5984,6011,5,732,0,0,5985,6011,5,733,0,0,5986,6011, - 5,737,0,0,5987,6011,5,738,0,0,5988,6011,5,740,0,0,5989,6011,5,741, - 0,0,5990,6011,5,742,0,0,5991,6011,5,745,0,0,5992,6011,5,746,0,0, - 5993,6011,5,747,0,0,5994,6011,5,160,0,0,5995,6011,5,748,0,0,5996, - 6011,5,836,0,0,5997,6011,5,751,0,0,5998,6011,5,753,0,0,5999,6011, - 5,838,0,0,6000,6011,5,754,0,0,6001,6011,5,755,0,0,6002,6003,5,103, - 0,0,6003,6004,5,68,0,0,6004,6011,5,744,0,0,6005,6006,5,154,0,0,6006, - 6007,5,88,0,0,6007,6011,5,744,0,0,6008,6009,5,729,0,0,6009,6011, - 5,730,0,0,6010,5917,1,0,0,0,6010,5921,1,0,0,0,6010,5925,1,0,0,0, - 6010,5935,1,0,0,0,6010,5936,1,0,0,0,6010,5940,1,0,0,0,6010,5941, - 1,0,0,0,6010,5942,1,0,0,0,6010,5943,1,0,0,0,6010,5945,1,0,0,0,6010, - 5946,1,0,0,0,6010,5947,1,0,0,0,6010,5949,1,0,0,0,6010,5950,1,0,0, - 0,6010,5951,1,0,0,0,6010,5952,1,0,0,0,6010,5953,1,0,0,0,6010,5955, - 1,0,0,0,6010,5956,1,0,0,0,6010,5958,1,0,0,0,6010,5959,1,0,0,0,6010, - 5960,1,0,0,0,6010,5961,1,0,0,0,6010,5962,1,0,0,0,6010,5963,1,0,0, - 0,6010,5964,1,0,0,0,6010,5965,1,0,0,0,6010,5966,1,0,0,0,6010,5967, - 1,0,0,0,6010,5968,1,0,0,0,6010,5969,1,0,0,0,6010,5970,1,0,0,0,6010, - 5971,1,0,0,0,6010,5972,1,0,0,0,6010,5973,1,0,0,0,6010,5974,1,0,0, - 0,6010,5975,1,0,0,0,6010,5976,1,0,0,0,6010,5977,1,0,0,0,6010,5978, - 1,0,0,0,6010,5979,1,0,0,0,6010,5980,1,0,0,0,6010,5981,1,0,0,0,6010, - 5982,1,0,0,0,6010,5983,1,0,0,0,6010,5984,1,0,0,0,6010,5985,1,0,0, - 0,6010,5986,1,0,0,0,6010,5987,1,0,0,0,6010,5988,1,0,0,0,6010,5989, - 1,0,0,0,6010,5990,1,0,0,0,6010,5991,1,0,0,0,6010,5992,1,0,0,0,6010, - 5993,1,0,0,0,6010,5994,1,0,0,0,6010,5995,1,0,0,0,6010,5996,1,0,0, - 0,6010,5997,1,0,0,0,6010,5998,1,0,0,0,6010,5999,1,0,0,0,6010,6000, - 1,0,0,0,6010,6001,1,0,0,0,6010,6002,1,0,0,0,6010,6005,1,0,0,0,6010, - 6008,1,0,0,0,6011,523,1,0,0,0,6012,6029,5,850,0,0,6013,6014,5,850, - 0,0,6014,6015,5,865,0,0,6015,6029,5,850,0,0,6016,6017,3,708,354, - 0,6017,6018,5,865,0,0,6018,6019,5,850,0,0,6019,6029,1,0,0,0,6020, - 6021,3,708,354,0,6021,6022,5,865,0,0,6022,6023,3,708,354,0,6023, - 6029,1,0,0,0,6024,6025,3,708,354,0,6025,6026,3,712,356,0,6026,6029, - 1,0,0,0,6027,6029,3,708,354,0,6028,6012,1,0,0,0,6028,6013,1,0,0, - 0,6028,6016,1,0,0,0,6028,6020,1,0,0,0,6028,6024,1,0,0,0,6028,6027, - 1,0,0,0,6029,525,1,0,0,0,6030,6031,3,686,343,0,6031,6032,5,176,0, - 0,6032,6033,3,686,343,0,6033,527,1,0,0,0,6034,6036,5,10,0,0,6035, - 6037,3,538,269,0,6036,6035,1,0,0,0,6036,6037,1,0,0,0,6037,6038,1, - 0,0,0,6038,6039,5,173,0,0,6039,6083,3,652,326,0,6040,6042,5,10,0, - 0,6041,6043,3,538,269,0,6042,6041,1,0,0,0,6042,6043,1,0,0,0,6043, - 6044,1,0,0,0,6044,6045,5,173,0,0,6045,6046,3,654,327,0,6046,6047, - 5,185,0,0,6047,6048,5,77,0,0,6048,6049,5,119,0,0,6049,6054,3,662, - 331,0,6050,6051,5,194,0,0,6051,6052,3,714,357,0,6052,6053,5,19,0, - 0,6053,6055,1,0,0,0,6054,6050,1,0,0,0,6054,6055,1,0,0,0,6055,6083, - 1,0,0,0,6056,6058,5,10,0,0,6057,6059,3,538,269,0,6058,6057,1,0,0, - 0,6058,6059,1,0,0,0,6059,6060,1,0,0,0,6060,6061,5,173,0,0,6061,6062, - 3,654,327,0,6062,6063,5,185,0,0,6063,6064,5,77,0,0,6064,6065,5,119, - 0,0,6065,6069,3,664,332,0,6066,6067,5,188,0,0,6067,6068,5,360,0, - 0,6068,6070,5,882,0,0,6069,6066,1,0,0,0,6069,6070,1,0,0,0,6070,6083, - 1,0,0,0,6071,6073,5,10,0,0,6072,6074,3,538,269,0,6073,6072,1,0,0, - 0,6073,6074,1,0,0,0,6074,6075,1,0,0,0,6075,6076,5,173,0,0,6076,6077, - 3,654,327,0,6077,6078,5,51,0,0,6078,6079,5,77,0,0,6079,6080,5,119, - 0,0,6080,6081,3,662,331,0,6081,6083,1,0,0,0,6082,6034,1,0,0,0,6082, - 6040,1,0,0,0,6082,6056,1,0,0,0,6082,6071,1,0,0,0,6083,529,1,0,0, - 0,6084,6085,5,27,0,0,6085,6086,5,173,0,0,6086,6090,3,652,326,0,6087, - 6089,3,540,270,0,6088,6087,1,0,0,0,6089,6092,1,0,0,0,6090,6088,1, - 0,0,0,6090,6091,1,0,0,0,6091,531,1,0,0,0,6092,6090,1,0,0,0,6093, - 6094,5,329,0,0,6094,6095,5,173,0,0,6095,6097,3,652,326,0,6096,6098, - 7,89,0,0,6097,6096,1,0,0,0,6097,6098,1,0,0,0,6098,533,1,0,0,0,6099, - 6101,5,120,0,0,6100,6102,3,538,269,0,6101,6100,1,0,0,0,6101,6102, - 1,0,0,0,6102,6103,1,0,0,0,6103,6104,7,60,0,0,6104,6105,3,652,326, - 0,6105,535,1,0,0,0,6106,6108,5,562,0,0,6107,6109,3,538,269,0,6108, - 6107,1,0,0,0,6108,6109,1,0,0,0,6109,6110,1,0,0,0,6110,6111,5,173, - 0,0,6111,6113,3,652,326,0,6112,6114,5,549,0,0,6113,6112,1,0,0,0, - 6113,6114,1,0,0,0,6114,6116,1,0,0,0,6115,6117,5,392,0,0,6116,6115, - 1,0,0,0,6116,6117,1,0,0,0,6117,6119,1,0,0,0,6118,6120,5,679,0,0, - 6119,6118,1,0,0,0,6119,6120,1,0,0,0,6120,537,1,0,0,0,6121,6122,7, - 90,0,0,6122,539,1,0,0,0,6123,6124,5,65,0,0,6124,6131,5,677,0,0,6125, - 6131,5,549,0,0,6126,6131,5,396,0,0,6127,6131,5,484,0,0,6128,6131, - 5,392,0,0,6129,6131,5,327,0,0,6130,6123,1,0,0,0,6130,6125,1,0,0, - 0,6130,6126,1,0,0,0,6130,6127,1,0,0,0,6130,6128,1,0,0,0,6130,6129, - 1,0,0,0,6131,541,1,0,0,0,6132,6134,5,34,0,0,6133,6135,5,307,0,0, - 6134,6133,1,0,0,0,6134,6135,1,0,0,0,6135,6136,1,0,0,0,6136,6138, - 5,409,0,0,6137,6139,3,762,381,0,6138,6137,1,0,0,0,6138,6139,1,0, - 0,0,6139,6140,1,0,0,0,6140,6141,3,632,316,0,6141,6142,5,580,0,0, - 6142,6143,7,91,0,0,6143,6144,5,603,0,0,6144,6145,5,882,0,0,6145, - 543,1,0,0,0,6146,6147,5,432,0,0,6147,6148,5,344,0,0,6148,6153,3, - 708,354,0,6149,6150,5,868,0,0,6150,6152,3,708,354,0,6151,6149,1, - 0,0,0,6152,6155,1,0,0,0,6153,6151,1,0,0,0,6153,6154,1,0,0,0,6154, - 6165,1,0,0,0,6155,6153,1,0,0,0,6156,6157,5,155,0,0,6157,6162,3,546, - 273,0,6158,6159,5,868,0,0,6159,6161,3,546,273,0,6160,6158,1,0,0, - 0,6161,6164,1,0,0,0,6162,6160,1,0,0,0,6162,6163,1,0,0,0,6163,6166, - 1,0,0,0,6164,6162,1,0,0,0,6165,6156,1,0,0,0,6165,6166,1,0,0,0,6166, - 545,1,0,0,0,6167,6168,7,92,0,0,6168,6169,3,704,352,0,6169,6170,5, - 857,0,0,6170,6171,3,806,403,0,6171,547,1,0,0,0,6172,6173,5,673,0, - 0,6173,6174,5,344,0,0,6174,6179,3,708,354,0,6175,6176,5,868,0,0, - 6176,6178,3,708,354,0,6177,6175,1,0,0,0,6178,6181,1,0,0,0,6179,6177, - 1,0,0,0,6179,6180,1,0,0,0,6180,549,1,0,0,0,6181,6179,1,0,0,0,6182, - 6183,5,432,0,0,6183,6184,5,534,0,0,6184,6185,3,708,354,0,6185,6186, - 5,603,0,0,6186,6187,5,882,0,0,6187,551,1,0,0,0,6188,6189,5,673,0, - 0,6189,6190,5,534,0,0,6190,6191,3,708,354,0,6191,553,1,0,0,0,6192, - 6193,5,713,0,0,6193,6194,5,450,0,0,6194,6195,5,360,0,0,6195,6197, - 5,367,0,0,6196,6198,5,857,0,0,6197,6196,1,0,0,0,6197,6198,1,0,0, - 0,6198,6199,1,0,0,0,6199,6223,5,882,0,0,6200,6201,5,713,0,0,6201, - 6202,5,433,0,0,6202,6203,5,68,0,0,6203,6204,3,678,339,0,6204,6205, - 5,423,0,0,6205,6206,5,20,0,0,6206,6213,5,882,0,0,6207,6208,5,360, - 0,0,6208,6210,5,367,0,0,6209,6211,5,857,0,0,6210,6209,1,0,0,0,6210, - 6211,1,0,0,0,6211,6212,1,0,0,0,6212,6214,5,882,0,0,6213,6207,1,0, - 0,0,6213,6214,1,0,0,0,6214,6220,1,0,0,0,6215,6217,5,144,0,0,6216, - 6218,5,502,0,0,6217,6216,1,0,0,0,6217,6218,1,0,0,0,6218,6219,1,0, - 0,0,6219,6221,5,169,0,0,6220,6215,1,0,0,0,6220,6221,1,0,0,0,6221, - 6223,1,0,0,0,6222,6192,1,0,0,0,6222,6200,1,0,0,0,6223,555,1,0,0, - 0,6224,6225,5,155,0,0,6225,6226,3,560,280,0,6226,6229,7,93,0,0,6227, - 6230,3,806,403,0,6228,6230,5,119,0,0,6229,6227,1,0,0,0,6229,6228, - 1,0,0,0,6230,6240,1,0,0,0,6231,6232,5,868,0,0,6232,6233,3,560,280, - 0,6233,6236,7,93,0,0,6234,6237,3,806,403,0,6235,6237,5,119,0,0,6236, - 6234,1,0,0,0,6236,6235,1,0,0,0,6237,6239,1,0,0,0,6238,6231,1,0,0, - 0,6239,6242,1,0,0,0,6240,6238,1,0,0,0,6240,6241,1,0,0,0,6241,6277, - 1,0,0,0,6242,6240,1,0,0,0,6243,6244,5,155,0,0,6244,6247,3,54,27, - 0,6245,6248,3,690,345,0,6246,6248,5,42,0,0,6247,6245,1,0,0,0,6247, - 6246,1,0,0,0,6248,6277,1,0,0,0,6249,6250,5,155,0,0,6250,6257,5,497, - 0,0,6251,6254,3,690,345,0,6252,6253,5,28,0,0,6253,6255,3,692,346, - 0,6254,6252,1,0,0,0,6254,6255,1,0,0,0,6255,6258,1,0,0,0,6256,6258, - 5,42,0,0,6257,6251,1,0,0,0,6257,6256,1,0,0,0,6258,6277,1,0,0,0,6259, - 6277,3,490,245,0,6260,6277,3,342,171,0,6261,6277,3,340,170,0,6262, - 6263,5,155,0,0,6263,6264,3,704,352,0,6264,6265,7,93,0,0,6265,6273, - 3,806,403,0,6266,6267,5,868,0,0,6267,6268,3,704,352,0,6268,6269, - 7,93,0,0,6269,6270,3,806,403,0,6270,6272,1,0,0,0,6271,6266,1,0,0, - 0,6272,6275,1,0,0,0,6273,6271,1,0,0,0,6273,6274,1,0,0,0,6274,6277, - 1,0,0,0,6275,6273,1,0,0,0,6276,6224,1,0,0,0,6276,6243,1,0,0,0,6276, - 6249,1,0,0,0,6276,6259,1,0,0,0,6276,6260,1,0,0,0,6276,6261,1,0,0, - 0,6276,6262,1,0,0,0,6277,557,1,0,0,0,6278,6279,5,157,0,0,6279,6280, - 7,62,0,0,6280,6463,5,452,0,0,6281,6282,5,157,0,0,6282,6283,7,94, - 0,0,6283,6286,5,386,0,0,6284,6285,5,80,0,0,6285,6287,5,882,0,0,6286, - 6284,1,0,0,0,6286,6287,1,0,0,0,6287,6290,1,0,0,0,6288,6289,5,68, - 0,0,6289,6291,3,714,357,0,6290,6288,1,0,0,0,6290,6291,1,0,0,0,6291, - 6299,1,0,0,0,6292,6296,5,100,0,0,6293,6294,3,714,357,0,6294,6295, - 5,868,0,0,6295,6297,1,0,0,0,6296,6293,1,0,0,0,6296,6297,1,0,0,0, - 6297,6298,1,0,0,0,6298,6300,3,714,357,0,6299,6292,1,0,0,0,6299,6300, - 1,0,0,0,6300,6302,1,0,0,0,6301,6303,3,390,195,0,6302,6301,1,0,0, - 0,6302,6303,1,0,0,0,6303,6463,1,0,0,0,6304,6305,5,157,0,0,6305,6307, - 3,562,281,0,6306,6308,3,564,282,0,6307,6306,1,0,0,0,6307,6308,1, - 0,0,0,6308,6463,1,0,0,0,6309,6311,5,157,0,0,6310,6312,5,392,0,0, - 6311,6310,1,0,0,0,6311,6312,1,0,0,0,6312,6314,1,0,0,0,6313,6315, - 5,408,0,0,6314,6313,1,0,0,0,6314,6315,1,0,0,0,6315,6316,1,0,0,0, - 6316,6317,7,46,0,0,6317,6318,7,95,0,0,6318,6321,3,654,327,0,6319, - 6320,7,95,0,0,6320,6322,3,630,315,0,6321,6319,1,0,0,0,6321,6322, - 1,0,0,0,6322,6324,1,0,0,0,6323,6325,3,564,282,0,6324,6323,1,0,0, - 0,6324,6325,1,0,0,0,6325,6463,1,0,0,0,6326,6327,5,157,0,0,6327,6328, - 5,34,0,0,6328,6330,7,0,0,0,6329,6331,3,762,381,0,6330,6329,1,0,0, - 0,6330,6331,1,0,0,0,6331,6332,1,0,0,0,6332,6463,3,628,314,0,6333, - 6334,5,157,0,0,6334,6335,5,34,0,0,6335,6336,7,96,0,0,6336,6463,3, - 704,352,0,6337,6338,5,157,0,0,6338,6339,5,34,0,0,6339,6340,5,409, - 0,0,6340,6463,3,632,316,0,6341,6342,5,157,0,0,6342,6343,5,34,0,0, - 6343,6344,5,684,0,0,6344,6463,3,636,318,0,6345,6346,5,157,0,0,6346, - 6347,5,34,0,0,6347,6348,5,173,0,0,6348,6463,3,650,325,0,6349,6350, - 5,157,0,0,6350,6351,5,34,0,0,6351,6352,5,678,0,0,6352,6463,3,686, - 343,0,6353,6354,5,157,0,0,6354,6355,5,380,0,0,6355,6356,3,694,347, - 0,6356,6357,7,97,0,0,6357,6463,1,0,0,0,6358,6359,5,157,0,0,6359, - 6463,3,566,283,0,6360,6361,5,157,0,0,6361,6369,7,98,0,0,6362,6366, - 5,100,0,0,6363,6364,3,714,357,0,6364,6365,5,868,0,0,6365,6367,1, - 0,0,0,6366,6363,1,0,0,0,6366,6367,1,0,0,0,6367,6368,1,0,0,0,6368, - 6370,3,714,357,0,6369,6362,1,0,0,0,6369,6370,1,0,0,0,6370,6463,1, - 0,0,0,6371,6372,5,157,0,0,6372,6373,5,262,0,0,6373,6374,5,866,0, - 0,6374,6375,5,850,0,0,6375,6376,5,867,0,0,6376,6463,7,98,0,0,6377, - 6378,5,157,0,0,6378,6381,3,568,284,0,6379,6380,7,95,0,0,6380,6382, - 3,630,315,0,6381,6379,1,0,0,0,6381,6382,1,0,0,0,6382,6384,1,0,0, - 0,6383,6385,3,564,282,0,6384,6383,1,0,0,0,6384,6385,1,0,0,0,6385, - 6463,1,0,0,0,6386,6387,5,157,0,0,6387,6388,5,132,0,0,6388,6389,5, - 336,0,0,6389,6463,3,704,352,0,6390,6391,5,157,0,0,6391,6392,5,409, - 0,0,6392,6393,5,336,0,0,6393,6463,3,634,317,0,6394,6395,5,157,0, - 0,6395,6402,5,414,0,0,6396,6397,5,65,0,0,6397,6400,3,658,329,0,6398, - 6399,5,188,0,0,6399,6401,3,656,328,0,6400,6398,1,0,0,0,6400,6401, - 1,0,0,0,6401,6403,1,0,0,0,6402,6396,1,0,0,0,6402,6403,1,0,0,0,6403, - 6463,1,0,0,0,6404,6406,5,157,0,0,6405,6407,5,392,0,0,6406,6405,1, - 0,0,0,6406,6407,1,0,0,0,6407,6408,1,0,0,0,6408,6409,7,99,0,0,6409, - 6410,7,95,0,0,6410,6413,3,654,327,0,6411,6412,7,95,0,0,6412,6414, - 3,630,315,0,6413,6411,1,0,0,0,6413,6414,1,0,0,0,6414,6417,1,0,0, - 0,6415,6416,5,192,0,0,6416,6418,3,806,403,0,6417,6415,1,0,0,0,6417, - 6418,1,0,0,0,6418,6463,1,0,0,0,6419,6420,5,157,0,0,6420,6421,5,516, - 0,0,6421,6424,5,752,0,0,6422,6423,7,95,0,0,6423,6425,3,630,315,0, - 6424,6422,1,0,0,0,6424,6425,1,0,0,0,6425,6427,1,0,0,0,6426,6428, - 3,564,282,0,6427,6426,1,0,0,0,6427,6428,1,0,0,0,6428,6463,1,0,0, - 0,6429,6430,5,157,0,0,6430,6439,5,545,0,0,6431,6436,3,570,285,0, - 6432,6433,5,868,0,0,6433,6435,3,570,285,0,6434,6432,1,0,0,0,6435, - 6438,1,0,0,0,6436,6434,1,0,0,0,6436,6437,1,0,0,0,6437,6440,1,0,0, - 0,6438,6436,1,0,0,0,6439,6431,1,0,0,0,6439,6440,1,0,0,0,6440,6444, - 1,0,0,0,6441,6442,5,65,0,0,6442,6443,5,548,0,0,6443,6445,3,714,357, - 0,6444,6441,1,0,0,0,6444,6445,1,0,0,0,6445,6452,1,0,0,0,6446,6447, - 5,100,0,0,6447,6450,3,714,357,0,6448,6449,5,509,0,0,6449,6451,3, - 714,357,0,6450,6448,1,0,0,0,6450,6451,1,0,0,0,6451,6453,1,0,0,0, - 6452,6446,1,0,0,0,6452,6453,1,0,0,0,6453,6463,1,0,0,0,6454,6455, - 5,157,0,0,6455,6456,7,63,0,0,6456,6458,5,645,0,0,6457,6459,3,390, - 195,0,6458,6457,1,0,0,0,6458,6459,1,0,0,0,6459,6463,1,0,0,0,6460, - 6461,5,157,0,0,6461,6463,5,564,0,0,6462,6278,1,0,0,0,6462,6281,1, - 0,0,0,6462,6304,1,0,0,0,6462,6309,1,0,0,0,6462,6326,1,0,0,0,6462, - 6333,1,0,0,0,6462,6337,1,0,0,0,6462,6341,1,0,0,0,6462,6345,1,0,0, - 0,6462,6349,1,0,0,0,6462,6353,1,0,0,0,6462,6358,1,0,0,0,6462,6360, - 1,0,0,0,6462,6371,1,0,0,0,6462,6377,1,0,0,0,6462,6386,1,0,0,0,6462, - 6390,1,0,0,0,6462,6394,1,0,0,0,6462,6404,1,0,0,0,6462,6419,1,0,0, - 0,6462,6429,1,0,0,0,6462,6454,1,0,0,0,6462,6460,1,0,0,0,6463,559, - 1,0,0,0,6464,6475,5,892,0,0,6465,6475,5,893,0,0,6466,6467,5,870, - 0,0,6467,6469,5,870,0,0,6468,6466,1,0,0,0,6468,6469,1,0,0,0,6469, - 6470,1,0,0,0,6470,6472,7,100,0,0,6471,6468,1,0,0,0,6471,6472,1,0, - 0,0,6472,6473,1,0,0,0,6473,6475,3,708,354,0,6474,6464,1,0,0,0,6474, - 6465,1,0,0,0,6474,6471,1,0,0,0,6475,561,1,0,0,0,6476,6477,5,26,0, - 0,6477,6491,5,155,0,0,6478,6491,5,823,0,0,6479,6491,5,824,0,0,6480, - 6491,5,40,0,0,6481,6491,5,153,0,0,6482,6483,5,409,0,0,6483,6491, - 5,645,0,0,6484,6485,5,132,0,0,6485,6491,5,645,0,0,6486,6488,7,61, - 0,0,6487,6486,1,0,0,0,6487,6488,1,0,0,0,6488,6489,1,0,0,0,6489,6491, - 7,101,0,0,6490,6476,1,0,0,0,6490,6478,1,0,0,0,6490,6479,1,0,0,0, - 6490,6480,1,0,0,0,6490,6481,1,0,0,0,6490,6482,1,0,0,0,6490,6484, - 1,0,0,0,6490,6487,1,0,0,0,6491,563,1,0,0,0,6492,6493,5,99,0,0,6493, - 6497,5,882,0,0,6494,6495,5,192,0,0,6495,6497,3,806,403,0,6496,6492, - 1,0,0,0,6496,6494,1,0,0,0,6497,565,1,0,0,0,6498,6500,5,647,0,0,6499, - 6498,1,0,0,0,6499,6500,1,0,0,0,6500,6501,1,0,0,0,6501,6516,5,381, - 0,0,6502,6503,5,453,0,0,6503,6516,5,645,0,0,6504,6516,5,536,0,0, - 6505,6516,5,734,0,0,6506,6508,5,408,0,0,6507,6506,1,0,0,0,6507,6508, - 1,0,0,0,6508,6509,1,0,0,0,6509,6516,5,544,0,0,6510,6516,5,546,0, - 0,6511,6512,5,598,0,0,6512,6516,5,422,0,0,6513,6516,5,312,0,0,6514, - 6516,5,356,0,0,6515,6499,1,0,0,0,6515,6502,1,0,0,0,6515,6504,1,0, - 0,0,6515,6505,1,0,0,0,6515,6507,1,0,0,0,6515,6510,1,0,0,0,6515,6511, - 1,0,0,0,6515,6513,1,0,0,0,6515,6514,1,0,0,0,6516,567,1,0,0,0,6517, - 6529,5,386,0,0,6518,6519,5,173,0,0,6519,6529,5,645,0,0,6520,6522, - 5,392,0,0,6521,6520,1,0,0,0,6521,6522,1,0,0,0,6522,6524,1,0,0,0, - 6523,6525,5,408,0,0,6524,6523,1,0,0,0,6524,6525,1,0,0,0,6525,6526, - 1,0,0,0,6526,6529,5,752,0,0,6527,6529,5,667,0,0,6528,6517,1,0,0, - 0,6528,6518,1,0,0,0,6528,6521,1,0,0,0,6528,6527,1,0,0,0,6529,569, - 1,0,0,0,6530,6543,5,7,0,0,6531,6532,5,320,0,0,6532,6543,5,437,0, - 0,6533,6534,5,355,0,0,6534,6543,5,656,0,0,6535,6543,5,358,0,0,6536, - 6543,5,439,0,0,6537,6543,5,802,0,0,6538,6539,5,521,0,0,6539,6543, - 5,397,0,0,6540,6543,5,605,0,0,6541,6543,5,655,0,0,6542,6530,1,0, - 0,0,6542,6531,1,0,0,0,6542,6533,1,0,0,0,6542,6535,1,0,0,0,6542,6536, - 1,0,0,0,6542,6537,1,0,0,0,6542,6538,1,0,0,0,6542,6540,1,0,0,0,6542, - 6541,1,0,0,0,6543,571,1,0,0,0,6544,6545,5,318,0,0,6545,6546,5,882, - 0,0,6546,573,1,0,0,0,6547,6548,5,324,0,0,6548,6566,5,82,0,0,6549, - 6554,3,594,297,0,6550,6551,5,868,0,0,6551,6553,3,594,297,0,6552, - 6550,1,0,0,0,6553,6556,1,0,0,0,6554,6552,1,0,0,0,6554,6555,1,0,0, - 0,6555,6567,1,0,0,0,6556,6554,1,0,0,0,6557,6558,3,654,327,0,6558, - 6559,5,130,0,0,6559,6562,5,866,0,0,6560,6563,3,672,336,0,6561,6563, - 5,7,0,0,6562,6560,1,0,0,0,6562,6561,1,0,0,0,6563,6564,1,0,0,0,6564, - 6565,5,867,0,0,6565,6567,1,0,0,0,6566,6549,1,0,0,0,6566,6557,1,0, - 0,0,6567,6568,1,0,0,0,6568,6569,5,80,0,0,6569,6570,3,630,315,0,6570, - 575,1,0,0,0,6571,6573,5,404,0,0,6572,6574,3,538,269,0,6573,6572, - 1,0,0,0,6573,6574,1,0,0,0,6574,6575,1,0,0,0,6575,6580,3,596,298, - 0,6576,6577,5,868,0,0,6577,6579,3,596,298,0,6578,6576,1,0,0,0,6579, - 6582,1,0,0,0,6580,6578,1,0,0,0,6580,6581,1,0,0,0,6581,577,1,0,0, - 0,6582,6580,1,0,0,0,6583,6585,5,94,0,0,6584,6586,7,102,0,0,6585, - 6584,1,0,0,0,6585,6586,1,0,0,0,6586,6587,1,0,0,0,6587,6588,3,806, - 403,0,6588,579,1,0,0,0,6589,6590,5,103,0,0,6590,6591,5,82,0,0,6591, - 6592,5,88,0,0,6592,6593,5,324,0,0,6593,6598,3,600,300,0,6594,6595, - 5,868,0,0,6595,6597,3,600,300,0,6596,6594,1,0,0,0,6597,6600,1,0, - 0,0,6598,6596,1,0,0,0,6598,6599,1,0,0,0,6599,581,1,0,0,0,6600,6598, - 1,0,0,0,6601,6602,5,575,0,0,6602,6607,3,584,292,0,6603,6604,5,868, - 0,0,6604,6606,3,584,292,0,6605,6603,1,0,0,0,6606,6609,1,0,0,0,6607, - 6605,1,0,0,0,6607,6608,1,0,0,0,6608,583,1,0,0,0,6609,6607,1,0,0, - 0,6610,6616,5,453,0,0,6611,6616,5,563,0,0,6612,6613,5,548,0,0,6613, - 6616,5,324,0,0,6614,6616,5,598,0,0,6615,6610,1,0,0,0,6615,6611,1, - 0,0,0,6615,6612,1,0,0,0,6615,6614,1,0,0,0,6616,585,1,0,0,0,6617, - 6618,5,575,0,0,6618,6623,5,531,0,0,6619,6621,3,760,380,0,6620,6619, - 1,0,0,0,6620,6621,1,0,0,0,6621,6622,1,0,0,0,6622,6624,3,708,354, - 0,6623,6620,1,0,0,0,6623,6624,1,0,0,0,6624,587,1,0,0,0,6625,6626, - 5,575,0,0,6626,6628,7,63,0,0,6627,6629,5,7,0,0,6628,6627,1,0,0,0, - 6628,6629,1,0,0,0,6629,6631,1,0,0,0,6630,6632,3,390,195,0,6631,6630, - 1,0,0,0,6631,6632,1,0,0,0,6632,589,1,0,0,0,6633,6634,5,576,0,0,6634, - 591,1,0,0,0,6635,6636,5,749,0,0,6636,593,1,0,0,0,6637,6643,3,654, - 327,0,6638,6639,7,18,0,0,6639,6640,5,866,0,0,6640,6641,3,642,321, - 0,6641,6642,5,867,0,0,6642,6644,1,0,0,0,6643,6638,1,0,0,0,6643,6644, - 1,0,0,0,6644,595,1,0,0,0,6645,6664,5,366,0,0,6646,6664,5,422,0,0, - 6647,6649,7,103,0,0,6648,6647,1,0,0,0,6648,6649,1,0,0,0,6649,6650, - 1,0,0,0,6650,6664,5,452,0,0,6651,6664,5,517,0,0,6652,6664,5,734, - 0,0,6653,6654,5,548,0,0,6654,6664,5,324,0,0,6655,6664,5,645,0,0, - 6656,6664,5,680,0,0,6657,6661,5,752,0,0,6658,6659,5,194,0,0,6659, - 6660,5,135,0,0,6660,6662,5,104,0,0,6661,6658,1,0,0,0,6661,6662,1, - 0,0,0,6662,6664,1,0,0,0,6663,6645,1,0,0,0,6663,6646,1,0,0,0,6663, - 6648,1,0,0,0,6663,6651,1,0,0,0,6663,6652,1,0,0,0,6663,6653,1,0,0, - 0,6663,6655,1,0,0,0,6663,6656,1,0,0,0,6663,6657,1,0,0,0,6664,6678, - 1,0,0,0,6665,6666,5,556,0,0,6666,6668,5,452,0,0,6667,6669,3,390, - 195,0,6668,6667,1,0,0,0,6668,6669,1,0,0,0,6669,6678,1,0,0,0,6670, - 6672,7,60,0,0,6671,6673,3,652,326,0,6672,6671,1,0,0,0,6672,6673, - 1,0,0,0,6673,6675,1,0,0,0,6674,6676,3,598,299,0,6675,6674,1,0,0, - 0,6675,6676,1,0,0,0,6676,6678,1,0,0,0,6677,6663,1,0,0,0,6677,6665, - 1,0,0,0,6677,6670,1,0,0,0,6678,597,1,0,0,0,6679,6680,5,194,0,0,6680, - 6681,5,135,0,0,6681,6685,5,104,0,0,6682,6683,5,65,0,0,6683,6685, - 5,391,0,0,6684,6679,1,0,0,0,6684,6682,1,0,0,0,6685,599,1,0,0,0,6686, - 6694,3,654,327,0,6687,6688,5,130,0,0,6688,6691,5,866,0,0,6689,6692, - 3,672,336,0,6690,6692,5,7,0,0,6691,6689,1,0,0,0,6691,6690,1,0,0, - 0,6692,6693,1,0,0,0,6693,6695,5,867,0,0,6694,6687,1,0,0,0,6694,6695, - 1,0,0,0,6695,6703,1,0,0,0,6696,6698,7,18,0,0,6697,6696,1,0,0,0,6697, - 6698,1,0,0,0,6698,6699,1,0,0,0,6699,6700,5,866,0,0,6700,6701,3,642, - 321,0,6701,6702,5,867,0,0,6702,6704,1,0,0,0,6703,6697,1,0,0,0,6703, - 6704,1,0,0,0,6704,6707,1,0,0,0,6705,6706,5,79,0,0,6706,6708,5,446, - 0,0,6707,6705,1,0,0,0,6707,6708,1,0,0,0,6708,601,1,0,0,0,6709,6710, - 7,104,0,0,6710,6713,3,654,327,0,6711,6714,3,664,332,0,6712,6714, - 5,882,0,0,6713,6711,1,0,0,0,6713,6712,1,0,0,0,6713,6714,1,0,0,0, - 6714,603,1,0,0,0,6715,6721,7,104,0,0,6716,6722,5,392,0,0,6717,6722, - 5,528,0,0,6718,6719,5,826,0,0,6719,6720,5,857,0,0,6720,6722,7,105, - 0,0,6721,6716,1,0,0,0,6721,6717,1,0,0,0,6721,6718,1,0,0,0,6721,6722, - 1,0,0,0,6722,6723,1,0,0,0,6723,6724,3,626,313,0,6724,605,1,0,0,0, - 6725,6726,7,104,0,0,6726,6730,5,10,0,0,6727,6728,5,826,0,0,6728, - 6729,5,857,0,0,6729,6731,5,666,0,0,6730,6727,1,0,0,0,6730,6731,1, - 0,0,0,6731,6732,1,0,0,0,6732,6733,3,204,102,0,6733,607,1,0,0,0,6734, - 6735,5,419,0,0,6735,6736,5,882,0,0,6736,609,1,0,0,0,6737,6738,5, - 187,0,0,6738,6739,3,630,315,0,6739,611,1,0,0,0,6740,6748,5,158,0, - 0,6741,6743,5,164,0,0,6742,6744,5,682,0,0,6743,6742,1,0,0,0,6743, - 6744,1,0,0,0,6744,6745,1,0,0,0,6745,6749,3,718,359,0,6746,6749,5, - 889,0,0,6747,6749,5,890,0,0,6748,6741,1,0,0,0,6748,6746,1,0,0,0, - 6748,6747,1,0,0,0,6749,6759,1,0,0,0,6750,6751,5,155,0,0,6751,6756, - 3,616,308,0,6752,6753,5,868,0,0,6753,6755,3,616,308,0,6754,6752, - 1,0,0,0,6755,6758,1,0,0,0,6756,6754,1,0,0,0,6756,6757,1,0,0,0,6757, - 6760,1,0,0,0,6758,6756,1,0,0,0,6759,6750,1,0,0,0,6759,6760,1,0,0, - 0,6760,613,1,0,0,0,6761,6769,5,145,0,0,6762,6764,5,164,0,0,6763, - 6765,5,682,0,0,6764,6763,1,0,0,0,6764,6765,1,0,0,0,6765,6766,1,0, - 0,0,6766,6770,3,718,359,0,6767,6770,5,889,0,0,6768,6770,5,890,0, - 0,6769,6762,1,0,0,0,6769,6767,1,0,0,0,6769,6768,1,0,0,0,6769,6770, - 1,0,0,0,6770,6780,1,0,0,0,6771,6772,5,155,0,0,6772,6777,3,616,308, - 0,6773,6774,5,868,0,0,6774,6776,3,616,308,0,6775,6773,1,0,0,0,6776, - 6779,1,0,0,0,6777,6775,1,0,0,0,6777,6778,1,0,0,0,6778,6781,1,0,0, - 0,6779,6777,1,0,0,0,6780,6771,1,0,0,0,6780,6781,1,0,0,0,6781,615, - 1,0,0,0,6782,6783,7,106,0,0,6783,6788,5,857,0,0,6784,6789,3,718, - 359,0,6785,6789,5,883,0,0,6786,6789,3,688,344,0,6787,6789,3,710, - 355,0,6788,6784,1,0,0,0,6788,6785,1,0,0,0,6788,6786,1,0,0,0,6788, - 6787,1,0,0,0,6789,617,1,0,0,0,6790,6792,5,194,0,0,6791,6793,5,552, - 0,0,6792,6791,1,0,0,0,6792,6793,1,0,0,0,6793,6794,1,0,0,0,6794,6799, - 3,48,24,0,6795,6796,5,868,0,0,6796,6798,3,48,24,0,6797,6795,1,0, - 0,0,6798,6801,1,0,0,0,6799,6797,1,0,0,0,6799,6800,1,0,0,0,6800,619, - 1,0,0,0,6801,6799,1,0,0,0,6802,6803,5,173,0,0,6803,6805,3,654,327, - 0,6804,6806,3,252,126,0,6805,6804,1,0,0,0,6805,6806,1,0,0,0,6806, - 6808,1,0,0,0,6807,6809,3,318,159,0,6808,6807,1,0,0,0,6808,6809,1, - 0,0,0,6809,621,1,0,0,0,6810,6812,5,72,0,0,6811,6813,7,107,0,0,6812, - 6811,1,0,0,0,6812,6813,1,0,0,0,6813,6814,1,0,0,0,6814,6846,5,48, - 0,0,6815,6816,3,560,280,0,6816,6817,5,857,0,0,6817,6825,7,108,0, - 0,6818,6819,5,868,0,0,6819,6820,3,560,280,0,6820,6821,5,857,0,0, - 6821,6822,7,108,0,0,6822,6824,1,0,0,0,6823,6818,1,0,0,0,6824,6827, - 1,0,0,0,6825,6823,1,0,0,0,6825,6826,1,0,0,0,6826,6847,1,0,0,0,6827, - 6825,1,0,0,0,6828,6831,5,30,0,0,6829,6832,3,714,357,0,6830,6832, - 3,560,280,0,6831,6829,1,0,0,0,6831,6830,1,0,0,0,6832,6833,1,0,0, - 0,6833,6834,3,560,280,0,6834,6835,5,857,0,0,6835,6843,3,624,312, - 0,6836,6837,5,868,0,0,6837,6838,3,560,280,0,6838,6839,5,857,0,0, - 6839,6840,3,624,312,0,6840,6842,1,0,0,0,6841,6836,1,0,0,0,6842,6845, - 1,0,0,0,6843,6841,1,0,0,0,6843,6844,1,0,0,0,6844,6847,1,0,0,0,6845, - 6843,1,0,0,0,6846,6815,1,0,0,0,6846,6828,1,0,0,0,6847,623,1,0,0, - 0,6848,6849,7,109,0,0,6849,625,1,0,0,0,6850,6856,3,204,102,0,6851, - 6856,3,180,90,0,6852,6856,3,186,93,0,6853,6856,3,202,101,0,6854, - 6856,3,214,107,0,6855,6850,1,0,0,0,6855,6851,1,0,0,0,6855,6852,1, - 0,0,0,6855,6853,1,0,0,0,6855,6854,1,0,0,0,6856,6861,1,0,0,0,6857, - 6858,5,65,0,0,6858,6859,5,349,0,0,6859,6861,3,708,354,0,6860,6855, - 1,0,0,0,6860,6857,1,0,0,0,6861,627,1,0,0,0,6862,6863,3,704,352,0, - 6863,629,1,0,0,0,6864,6865,3,704,352,0,6865,631,1,0,0,0,6866,6867, - 3,704,352,0,6867,633,1,0,0,0,6868,6869,3,704,352,0,6869,635,1,0, - 0,0,6870,6871,3,704,352,0,6871,637,1,0,0,0,6872,6873,3,704,352,0, - 6873,639,1,0,0,0,6874,6875,3,708,354,0,6875,641,1,0,0,0,6876,6881, - 3,644,322,0,6877,6878,5,868,0,0,6878,6880,3,644,322,0,6879,6877, - 1,0,0,0,6880,6883,1,0,0,0,6881,6879,1,0,0,0,6881,6882,1,0,0,0,6882, - 643,1,0,0,0,6883,6881,1,0,0,0,6884,6885,3,708,354,0,6885,645,1,0, - 0,0,6886,6887,3,708,354,0,6887,647,1,0,0,0,6888,6889,3,708,354,0, - 6889,649,1,0,0,0,6890,6891,3,704,352,0,6891,651,1,0,0,0,6892,6897, - 3,654,327,0,6893,6894,5,868,0,0,6894,6896,3,654,327,0,6895,6893, - 1,0,0,0,6896,6899,1,0,0,0,6897,6895,1,0,0,0,6897,6898,1,0,0,0,6898, - 653,1,0,0,0,6899,6897,1,0,0,0,6900,6901,3,704,352,0,6901,655,1,0, - 0,0,6902,6907,3,658,329,0,6903,6904,5,868,0,0,6904,6906,3,658,329, - 0,6905,6903,1,0,0,0,6906,6909,1,0,0,0,6907,6905,1,0,0,0,6907,6908, - 1,0,0,0,6908,657,1,0,0,0,6909,6907,1,0,0,0,6910,6913,3,686,343,0, - 6911,6913,3,708,354,0,6912,6910,1,0,0,0,6912,6911,1,0,0,0,6913,659, - 1,0,0,0,6914,6919,3,708,354,0,6915,6917,3,712,356,0,6916,6918,3, - 712,356,0,6917,6916,1,0,0,0,6917,6918,1,0,0,0,6918,6920,1,0,0,0, - 6919,6915,1,0,0,0,6919,6920,1,0,0,0,6920,6929,1,0,0,0,6921,6923, - 9,0,0,0,6922,6921,1,0,0,0,6922,6923,1,0,0,0,6923,6924,1,0,0,0,6924, - 6926,3,712,356,0,6925,6927,3,712,356,0,6926,6925,1,0,0,0,6926,6927, - 1,0,0,0,6927,6929,1,0,0,0,6928,6914,1,0,0,0,6928,6922,1,0,0,0,6929, - 661,1,0,0,0,6930,6935,3,664,332,0,6931,6932,5,868,0,0,6932,6934, - 3,664,332,0,6933,6931,1,0,0,0,6934,6937,1,0,0,0,6935,6933,1,0,0, - 0,6935,6936,1,0,0,0,6936,663,1,0,0,0,6937,6935,1,0,0,0,6938,6943, - 3,708,354,0,6939,6941,3,712,356,0,6940,6942,3,712,356,0,6941,6940, - 1,0,0,0,6941,6942,1,0,0,0,6942,6944,1,0,0,0,6943,6939,1,0,0,0,6943, - 6944,1,0,0,0,6944,6953,1,0,0,0,6945,6947,9,0,0,0,6946,6945,1,0,0, - 0,6946,6947,1,0,0,0,6947,6948,1,0,0,0,6948,6950,3,712,356,0,6949, - 6951,3,712,356,0,6950,6949,1,0,0,0,6950,6951,1,0,0,0,6951,6953,1, - 0,0,0,6952,6938,1,0,0,0,6952,6946,1,0,0,0,6953,665,1,0,0,0,6954, - 6955,3,708,354,0,6955,667,1,0,0,0,6956,6957,3,708,354,0,6957,669, - 1,0,0,0,6958,6959,3,708,354,0,6959,671,1,0,0,0,6960,6965,3,674,337, - 0,6961,6962,5,868,0,0,6962,6964,3,674,337,0,6963,6961,1,0,0,0,6964, - 6967,1,0,0,0,6965,6963,1,0,0,0,6965,6966,1,0,0,0,6966,673,1,0,0, - 0,6967,6965,1,0,0,0,6968,6969,3,708,354,0,6969,675,1,0,0,0,6970, - 6975,3,708,354,0,6971,6972,5,866,0,0,6972,6973,3,714,357,0,6973, - 6974,5,867,0,0,6974,6976,1,0,0,0,6975,6971,1,0,0,0,6975,6976,1,0, - 0,0,6976,6979,1,0,0,0,6977,6979,3,806,403,0,6978,6970,1,0,0,0,6978, - 6977,1,0,0,0,6979,6981,1,0,0,0,6980,6982,7,54,0,0,6981,6980,1,0, - 0,0,6981,6982,1,0,0,0,6982,677,1,0,0,0,6983,6984,3,680,340,0,6984, - 6985,5,878,0,0,6985,6986,3,714,357,0,6986,679,1,0,0,0,6987,6988, - 3,682,341,0,6988,6989,5,891,0,0,6989,681,1,0,0,0,6990,6995,5,882, - 0,0,6991,6995,5,889,0,0,6992,6995,5,704,0,0,6993,6995,3,836,418, - 0,6994,6990,1,0,0,0,6994,6991,1,0,0,0,6994,6992,1,0,0,0,6994,6993, - 1,0,0,0,6995,683,1,0,0,0,6996,6997,7,110,0,0,6997,685,1,0,0,0,6998, - 7000,3,682,341,0,6999,7001,3,684,342,0,7000,6999,1,0,0,0,7000,7001, - 1,0,0,0,7001,7004,1,0,0,0,7002,7004,3,56,28,0,7003,6998,1,0,0,0, - 7003,7002,1,0,0,0,7004,687,1,0,0,0,7005,7006,7,111,0,0,7006,689, - 1,0,0,0,7007,7012,5,228,0,0,7008,7012,3,826,413,0,7009,7012,5,882, - 0,0,7010,7012,5,879,0,0,7011,7007,1,0,0,0,7011,7008,1,0,0,0,7011, - 7009,1,0,0,0,7011,7010,1,0,0,0,7012,691,1,0,0,0,7013,7014,3,708, - 354,0,7014,693,1,0,0,0,7015,7019,3,696,348,0,7016,7019,5,889,0,0, - 7017,7019,5,882,0,0,7018,7015,1,0,0,0,7018,7016,1,0,0,0,7018,7017, - 1,0,0,0,7019,695,1,0,0,0,7020,7021,7,112,0,0,7021,697,1,0,0,0,7022, - 7023,3,714,357,0,7023,7024,5,854,0,0,7024,7025,3,714,357,0,7025, - 7026,5,854,0,0,7026,7027,3,714,357,0,7027,7028,5,854,0,0,7028,7029, - 3,714,357,0,7029,7030,5,854,0,0,7030,7036,3,714,357,0,7031,7032, - 5,878,0,0,7032,7033,3,714,357,0,7033,7034,5,854,0,0,7034,7035,3, - 714,357,0,7035,7037,1,0,0,0,7036,7031,1,0,0,0,7037,7038,1,0,0,0, - 7038,7036,1,0,0,0,7038,7039,1,0,0,0,7039,699,1,0,0,0,7040,7047,3, - 702,351,0,7041,7042,5,868,0,0,7042,7045,3,702,351,0,7043,7044,5, - 868,0,0,7044,7046,3,714,357,0,7045,7043,1,0,0,0,7045,7046,1,0,0, - 0,7046,7048,1,0,0,0,7047,7041,1,0,0,0,7047,7048,1,0,0,0,7048,701, - 1,0,0,0,7049,7057,5,882,0,0,7050,7057,5,887,0,0,7051,7053,5,884, - 0,0,7052,7051,1,0,0,0,7053,7054,1,0,0,0,7054,7052,1,0,0,0,7054,7055, - 1,0,0,0,7055,7057,1,0,0,0,7056,7049,1,0,0,0,7056,7050,1,0,0,0,7056, - 7052,1,0,0,0,7057,703,1,0,0,0,7058,7060,3,708,354,0,7059,7061,3, - 712,356,0,7060,7059,1,0,0,0,7060,7061,1,0,0,0,7061,705,1,0,0,0,7062, - 7067,3,708,354,0,7063,7064,5,868,0,0,7064,7066,3,708,354,0,7065, - 7063,1,0,0,0,7066,7069,1,0,0,0,7067,7065,1,0,0,0,7067,7068,1,0,0, - 0,7068,707,1,0,0,0,7069,7067,1,0,0,0,7070,7074,3,710,355,0,7071, - 7074,5,879,0,0,7072,7074,5,882,0,0,7073,7070,1,0,0,0,7073,7071,1, - 0,0,0,7073,7072,1,0,0,0,7074,709,1,0,0,0,7075,7085,5,889,0,0,7076, - 7085,3,826,413,0,7077,7085,3,828,414,0,7078,7085,3,696,348,0,7079, - 7085,3,830,415,0,7080,7085,3,832,416,0,7081,7085,3,834,417,0,7082, - 7085,3,836,418,0,7083,7085,3,798,399,0,7084,7075,1,0,0,0,7084,7076, - 1,0,0,0,7084,7077,1,0,0,0,7084,7078,1,0,0,0,7084,7079,1,0,0,0,7084, - 7080,1,0,0,0,7084,7081,1,0,0,0,7084,7082,1,0,0,0,7084,7083,1,0,0, - 0,7085,711,1,0,0,0,7086,7087,5,865,0,0,7087,7091,5,889,0,0,7088, - 7089,5,865,0,0,7089,7091,3,708,354,0,7090,7086,1,0,0,0,7090,7088, - 1,0,0,0,7091,713,1,0,0,0,7092,7093,7,113,0,0,7093,715,1,0,0,0,7094, - 7097,5,880,0,0,7095,7097,3,714,357,0,7096,7094,1,0,0,0,7096,7095, - 1,0,0,0,7097,717,1,0,0,0,7098,7100,5,888,0,0,7099,7098,1,0,0,0,7099, - 7100,1,0,0,0,7100,7101,1,0,0,0,7101,7104,5,882,0,0,7102,7104,5,881, - 0,0,7103,7099,1,0,0,0,7103,7102,1,0,0,0,7104,7106,1,0,0,0,7105,7107, - 5,882,0,0,7106,7105,1,0,0,0,7107,7108,1,0,0,0,7108,7106,1,0,0,0, - 7108,7109,1,0,0,0,7109,7122,1,0,0,0,7110,7112,5,888,0,0,7111,7110, - 1,0,0,0,7111,7112,1,0,0,0,7112,7113,1,0,0,0,7113,7116,5,882,0,0, - 7114,7116,5,881,0,0,7115,7111,1,0,0,0,7115,7114,1,0,0,0,7116,7119, - 1,0,0,0,7117,7118,5,28,0,0,7118,7120,3,692,346,0,7119,7117,1,0,0, - 0,7119,7120,1,0,0,0,7120,7122,1,0,0,0,7121,7103,1,0,0,0,7121,7115, - 1,0,0,0,7122,719,1,0,0,0,7123,7124,7,114,0,0,7124,721,1,0,0,0,7125, - 7127,5,888,0,0,7126,7125,1,0,0,0,7126,7127,1,0,0,0,7127,7128,1,0, - 0,0,7128,7129,5,884,0,0,7129,723,1,0,0,0,7130,7132,5,114,0,0,7131, - 7130,1,0,0,0,7131,7132,1,0,0,0,7132,7133,1,0,0,0,7133,7134,7,115, - 0,0,7134,725,1,0,0,0,7135,7148,3,718,359,0,7136,7148,3,714,357,0, - 7137,7138,5,854,0,0,7138,7148,3,714,357,0,7139,7148,3,722,361,0, - 7140,7148,3,720,360,0,7141,7148,5,885,0,0,7142,7148,5,887,0,0,7143, - 7145,5,114,0,0,7144,7143,1,0,0,0,7144,7145,1,0,0,0,7145,7146,1,0, - 0,0,7146,7148,7,115,0,0,7147,7135,1,0,0,0,7147,7136,1,0,0,0,7147, - 7137,1,0,0,0,7147,7139,1,0,0,0,7147,7140,1,0,0,0,7147,7141,1,0,0, - 0,7147,7142,1,0,0,0,7147,7144,1,0,0,0,7148,727,1,0,0,0,7149,7151, - 7,116,0,0,7150,7152,5,240,0,0,7151,7150,1,0,0,0,7151,7152,1,0,0, - 0,7152,7154,1,0,0,0,7153,7155,3,734,367,0,7154,7153,1,0,0,0,7154, - 7155,1,0,0,0,7155,7157,1,0,0,0,7156,7158,5,228,0,0,7157,7156,1,0, - 0,0,7157,7158,1,0,0,0,7158,7162,1,0,0,0,7159,7160,3,54,27,0,7160, - 7161,3,690,345,0,7161,7163,1,0,0,0,7162,7159,1,0,0,0,7162,7163,1, - 0,0,0,7163,7167,1,0,0,0,7164,7165,5,28,0,0,7165,7168,3,692,346,0, - 7166,7168,5,228,0,0,7167,7164,1,0,0,0,7167,7166,1,0,0,0,7167,7168, - 1,0,0,0,7168,7276,1,0,0,0,7169,7170,5,227,0,0,7170,7171,7,117,0, - 0,7171,7173,5,240,0,0,7172,7174,3,734,367,0,7173,7172,1,0,0,0,7173, - 7174,1,0,0,0,7174,7176,1,0,0,0,7175,7177,5,228,0,0,7176,7175,1,0, - 0,0,7176,7177,1,0,0,0,7177,7276,1,0,0,0,7178,7179,5,227,0,0,7179, - 7181,7,118,0,0,7180,7182,3,734,367,0,7181,7180,1,0,0,0,7181,7182, - 1,0,0,0,7182,7184,1,0,0,0,7183,7185,5,228,0,0,7184,7183,1,0,0,0, - 7184,7185,1,0,0,0,7185,7276,1,0,0,0,7186,7187,5,498,0,0,7187,7189, - 5,225,0,0,7188,7190,3,734,367,0,7189,7188,1,0,0,0,7189,7190,1,0, - 0,0,7190,7192,1,0,0,0,7191,7193,5,228,0,0,7192,7191,1,0,0,0,7192, - 7193,1,0,0,0,7193,7276,1,0,0,0,7194,7196,7,119,0,0,7195,7197,3,734, - 367,0,7196,7195,1,0,0,0,7196,7197,1,0,0,0,7197,7201,1,0,0,0,7198, - 7200,7,120,0,0,7199,7198,1,0,0,0,7200,7203,1,0,0,0,7201,7199,1,0, - 0,0,7201,7202,1,0,0,0,7202,7276,1,0,0,0,7203,7201,1,0,0,0,7204,7206, - 5,210,0,0,7205,7207,3,736,368,0,7206,7205,1,0,0,0,7206,7207,1,0, - 0,0,7207,7211,1,0,0,0,7208,7210,7,120,0,0,7209,7208,1,0,0,0,7210, - 7213,1,0,0,0,7211,7209,1,0,0,0,7211,7212,1,0,0,0,7212,7276,1,0,0, - 0,7213,7211,1,0,0,0,7214,7216,5,211,0,0,7215,7217,5,212,0,0,7216, - 7215,1,0,0,0,7216,7217,1,0,0,0,7217,7219,1,0,0,0,7218,7220,3,736, - 368,0,7219,7218,1,0,0,0,7219,7220,1,0,0,0,7220,7224,1,0,0,0,7221, - 7223,7,120,0,0,7222,7221,1,0,0,0,7223,7226,1,0,0,0,7224,7222,1,0, - 0,0,7224,7225,1,0,0,0,7225,7276,1,0,0,0,7226,7224,1,0,0,0,7227,7229, - 7,121,0,0,7228,7230,3,738,369,0,7229,7228,1,0,0,0,7229,7230,1,0, - 0,0,7230,7234,1,0,0,0,7231,7233,7,120,0,0,7232,7231,1,0,0,0,7233, - 7236,1,0,0,0,7234,7232,1,0,0,0,7234,7235,1,0,0,0,7235,7276,1,0,0, - 0,7236,7234,1,0,0,0,7237,7276,7,122,0,0,7238,7240,7,123,0,0,7239, - 7241,3,734,367,0,7240,7239,1,0,0,0,7240,7241,1,0,0,0,7241,7276,1, - 0,0,0,7242,7243,7,124,0,0,7243,7245,3,730,365,0,7244,7246,5,228, - 0,0,7245,7244,1,0,0,0,7245,7246,1,0,0,0,7246,7250,1,0,0,0,7247,7248, - 3,54,27,0,7248,7249,3,690,345,0,7249,7251,1,0,0,0,7250,7247,1,0, - 0,0,7250,7251,1,0,0,0,7251,7276,1,0,0,0,7252,7255,7,125,0,0,7253, - 7254,5,834,0,0,7254,7256,3,714,357,0,7255,7253,1,0,0,0,7255,7256, - 1,0,0,0,7256,7276,1,0,0,0,7257,7259,5,233,0,0,7258,7260,5,225,0, - 0,7259,7258,1,0,0,0,7259,7260,1,0,0,0,7260,7262,1,0,0,0,7261,7263, - 5,228,0,0,7262,7261,1,0,0,0,7262,7263,1,0,0,0,7263,7267,1,0,0,0, - 7264,7265,3,54,27,0,7265,7266,3,690,345,0,7266,7268,1,0,0,0,7267, - 7264,1,0,0,0,7267,7268,1,0,0,0,7268,7271,1,0,0,0,7269,7270,5,28, - 0,0,7270,7272,3,692,346,0,7271,7269,1,0,0,0,7271,7272,1,0,0,0,7272, - 7276,1,0,0,0,7273,7274,5,233,0,0,7274,7276,5,229,0,0,7275,7149,1, - 0,0,0,7275,7169,1,0,0,0,7275,7178,1,0,0,0,7275,7186,1,0,0,0,7275, - 7194,1,0,0,0,7275,7204,1,0,0,0,7275,7214,1,0,0,0,7275,7227,1,0,0, - 0,7275,7237,1,0,0,0,7275,7238,1,0,0,0,7275,7242,1,0,0,0,7275,7252, - 1,0,0,0,7275,7257,1,0,0,0,7275,7273,1,0,0,0,7276,729,1,0,0,0,7277, - 7278,5,866,0,0,7278,7283,5,882,0,0,7279,7280,5,868,0,0,7280,7282, - 5,882,0,0,7281,7279,1,0,0,0,7282,7285,1,0,0,0,7283,7281,1,0,0,0, - 7283,7284,1,0,0,0,7284,7286,1,0,0,0,7285,7283,1,0,0,0,7286,7287, - 5,867,0,0,7287,731,1,0,0,0,7288,7290,7,126,0,0,7289,7291,3,734,367, - 0,7290,7289,1,0,0,0,7290,7291,1,0,0,0,7291,7311,1,0,0,0,7292,7294, - 5,224,0,0,7293,7295,3,734,367,0,7294,7293,1,0,0,0,7294,7295,1,0, - 0,0,7295,7299,1,0,0,0,7296,7297,3,54,27,0,7297,7298,3,690,345,0, - 7298,7300,1,0,0,0,7299,7296,1,0,0,0,7299,7300,1,0,0,0,7300,7311, - 1,0,0,0,7301,7311,7,127,0,0,7302,7304,7,128,0,0,7303,7305,3,738, - 369,0,7304,7303,1,0,0,0,7304,7305,1,0,0,0,7305,7311,1,0,0,0,7306, - 7308,7,129,0,0,7307,7309,7,130,0,0,7308,7307,1,0,0,0,7308,7309,1, - 0,0,0,7309,7311,1,0,0,0,7310,7288,1,0,0,0,7310,7292,1,0,0,0,7310, - 7301,1,0,0,0,7310,7302,1,0,0,0,7310,7306,1,0,0,0,7311,7313,1,0,0, - 0,7312,7314,5,12,0,0,7313,7312,1,0,0,0,7313,7314,1,0,0,0,7314,733, - 1,0,0,0,7315,7316,5,866,0,0,7316,7317,3,714,357,0,7317,7318,5,867, - 0,0,7318,735,1,0,0,0,7319,7320,5,866,0,0,7320,7321,3,714,357,0,7321, - 7322,5,868,0,0,7322,7323,3,714,357,0,7323,7324,5,867,0,0,7324,737, - 1,0,0,0,7325,7326,5,866,0,0,7326,7329,3,714,357,0,7327,7328,5,868, - 0,0,7328,7330,3,714,357,0,7329,7327,1,0,0,0,7329,7330,1,0,0,0,7330, - 7331,1,0,0,0,7331,7332,5,867,0,0,7332,739,1,0,0,0,7333,7334,5,866, - 0,0,7334,7339,3,676,338,0,7335,7336,5,868,0,0,7336,7338,3,676,338, - 0,7337,7335,1,0,0,0,7338,7341,1,0,0,0,7339,7337,1,0,0,0,7339,7340, - 1,0,0,0,7340,7342,1,0,0,0,7341,7339,1,0,0,0,7342,7343,5,867,0,0, - 7343,741,1,0,0,0,7344,7349,3,806,403,0,7345,7346,5,868,0,0,7346, - 7348,3,806,403,0,7347,7345,1,0,0,0,7348,7351,1,0,0,0,7349,7347,1, - 0,0,0,7349,7350,1,0,0,0,7350,743,1,0,0,0,7351,7349,1,0,0,0,7352, - 7353,7,131,0,0,7353,7358,3,746,373,0,7354,7355,5,868,0,0,7355,7357, - 3,746,373,0,7356,7354,1,0,0,0,7357,7360,1,0,0,0,7358,7356,1,0,0, - 0,7358,7359,1,0,0,0,7359,745,1,0,0,0,7360,7358,1,0,0,0,7361,7362, - 5,866,0,0,7362,7367,3,748,374,0,7363,7364,5,868,0,0,7364,7366,3, - 748,374,0,7365,7363,1,0,0,0,7366,7369,1,0,0,0,7367,7365,1,0,0,0, - 7367,7368,1,0,0,0,7368,7370,1,0,0,0,7369,7367,1,0,0,0,7370,7371, - 5,867,0,0,7371,747,1,0,0,0,7372,7375,3,806,403,0,7373,7375,5,42, - 0,0,7374,7372,1,0,0,0,7374,7373,1,0,0,0,7375,749,1,0,0,0,7376,7381, - 3,726,363,0,7377,7378,5,868,0,0,7378,7380,3,726,363,0,7379,7377, - 1,0,0,0,7380,7383,1,0,0,0,7381,7379,1,0,0,0,7381,7382,1,0,0,0,7382, - 751,1,0,0,0,7383,7381,1,0,0,0,7384,7389,5,882,0,0,7385,7386,5,868, - 0,0,7386,7388,5,882,0,0,7387,7385,1,0,0,0,7388,7391,1,0,0,0,7389, - 7387,1,0,0,0,7389,7390,1,0,0,0,7390,753,1,0,0,0,7391,7389,1,0,0, - 0,7392,7397,5,892,0,0,7393,7394,5,868,0,0,7394,7396,5,892,0,0,7395, - 7393,1,0,0,0,7396,7399,1,0,0,0,7397,7395,1,0,0,0,7397,7398,1,0,0, - 0,7398,755,1,0,0,0,7399,7397,1,0,0,0,7400,7427,5,116,0,0,7401,7402, - 5,24,0,0,7402,7403,5,866,0,0,7403,7404,3,806,403,0,7404,7405,5,13, - 0,0,7405,7406,3,732,366,0,7406,7407,5,867,0,0,7407,7427,1,0,0,0, - 7408,7410,3,812,406,0,7409,7408,1,0,0,0,7409,7410,1,0,0,0,7410,7411, - 1,0,0,0,7411,7427,3,726,363,0,7412,7416,3,758,379,0,7413,7414,5, - 119,0,0,7414,7415,5,185,0,0,7415,7417,3,758,379,0,7416,7413,1,0, - 0,0,7416,7417,1,0,0,0,7417,7427,1,0,0,0,7418,7419,5,866,0,0,7419, - 7420,3,806,403,0,7420,7421,5,867,0,0,7421,7427,1,0,0,0,7422,7423, - 5,866,0,0,7423,7424,3,704,352,0,7424,7425,5,867,0,0,7425,7427,1, - 0,0,0,7426,7400,1,0,0,0,7426,7401,1,0,0,0,7426,7409,1,0,0,0,7426, - 7412,1,0,0,0,7426,7418,1,0,0,0,7426,7422,1,0,0,0,7427,757,1,0,0, - 0,7428,7434,7,132,0,0,7429,7431,5,866,0,0,7430,7432,3,714,357,0, - 7431,7430,1,0,0,0,7431,7432,1,0,0,0,7432,7433,1,0,0,0,7433,7435, - 5,867,0,0,7434,7429,1,0,0,0,7434,7435,1,0,0,0,7435,7443,1,0,0,0, - 7436,7437,5,295,0,0,7437,7439,5,866,0,0,7438,7440,3,714,357,0,7439, - 7438,1,0,0,0,7439,7440,1,0,0,0,7440,7441,1,0,0,0,7441,7443,5,867, - 0,0,7442,7428,1,0,0,0,7442,7436,1,0,0,0,7443,759,1,0,0,0,7444,7445, - 5,78,0,0,7445,7446,5,60,0,0,7446,761,1,0,0,0,7447,7448,5,78,0,0, - 7448,7449,5,114,0,0,7449,7450,5,60,0,0,7450,763,1,0,0,0,7451,7452, - 5,124,0,0,7452,7453,5,143,0,0,7453,765,1,0,0,0,7454,7473,3,768,384, - 0,7455,7473,3,776,388,0,7456,7473,3,778,389,0,7457,7458,3,798,399, - 0,7458,7460,5,866,0,0,7459,7461,3,802,401,0,7460,7459,1,0,0,0,7460, - 7461,1,0,0,0,7461,7462,1,0,0,0,7462,7463,5,867,0,0,7463,7473,1,0, - 0,0,7464,7465,3,634,317,0,7465,7467,5,866,0,0,7466,7468,3,802,401, - 0,7467,7466,1,0,0,0,7467,7468,1,0,0,0,7468,7469,1,0,0,0,7469,7470, - 5,867,0,0,7470,7473,1,0,0,0,7471,7473,3,800,400,0,7472,7454,1,0, - 0,0,7472,7455,1,0,0,0,7472,7456,1,0,0,0,7472,7457,1,0,0,0,7472,7464, - 1,0,0,0,7472,7471,1,0,0,0,7473,767,1,0,0,0,7474,7477,7,133,0,0,7475, - 7476,5,866,0,0,7476,7478,5,867,0,0,7477,7475,1,0,0,0,7477,7478,1, - 0,0,0,7478,7654,1,0,0,0,7479,7654,3,56,28,0,7480,7481,5,33,0,0,7481, - 7482,5,866,0,0,7482,7483,3,806,403,0,7483,7484,5,868,0,0,7484,7485, - 3,732,366,0,7485,7486,5,867,0,0,7486,7654,1,0,0,0,7487,7488,5,33, - 0,0,7488,7489,5,866,0,0,7489,7490,3,806,403,0,7490,7491,5,188,0, - 0,7491,7492,3,690,345,0,7492,7493,5,867,0,0,7493,7654,1,0,0,0,7494, - 7495,5,24,0,0,7495,7496,5,866,0,0,7496,7497,3,806,403,0,7497,7498, - 5,13,0,0,7498,7499,3,732,366,0,7499,7500,5,867,0,0,7500,7654,1,0, - 0,0,7501,7502,5,189,0,0,7502,7503,5,866,0,0,7503,7504,3,664,332, - 0,7504,7505,5,867,0,0,7505,7654,1,0,0,0,7506,7507,5,23,0,0,7507, - 7509,3,806,403,0,7508,7510,3,770,385,0,7509,7508,1,0,0,0,7510,7511, - 1,0,0,0,7511,7509,1,0,0,0,7511,7512,1,0,0,0,7512,7515,1,0,0,0,7513, - 7514,5,53,0,0,7514,7516,3,804,402,0,7515,7513,1,0,0,0,7515,7516, - 1,0,0,0,7516,7517,1,0,0,0,7517,7518,5,378,0,0,7518,7654,1,0,0,0, - 7519,7521,5,23,0,0,7520,7522,3,770,385,0,7521,7520,1,0,0,0,7522, - 7523,1,0,0,0,7523,7521,1,0,0,0,7523,7524,1,0,0,0,7524,7527,1,0,0, - 0,7525,7526,5,53,0,0,7526,7528,3,804,402,0,7527,7525,1,0,0,0,7527, - 7528,1,0,0,0,7528,7529,1,0,0,0,7529,7530,5,378,0,0,7530,7654,1,0, - 0,0,7531,7532,5,224,0,0,7532,7533,5,866,0,0,7533,7536,3,802,401, - 0,7534,7535,5,188,0,0,7535,7537,3,690,345,0,7536,7534,1,0,0,0,7536, - 7537,1,0,0,0,7537,7538,1,0,0,0,7538,7539,5,867,0,0,7539,7654,1,0, - 0,0,7540,7541,5,296,0,0,7541,7544,5,866,0,0,7542,7545,3,718,359, - 0,7543,7545,3,806,403,0,7544,7542,1,0,0,0,7544,7543,1,0,0,0,7545, - 7546,1,0,0,0,7546,7549,5,80,0,0,7547,7550,3,718,359,0,7548,7550, - 3,806,403,0,7549,7547,1,0,0,0,7549,7548,1,0,0,0,7550,7551,1,0,0, - 0,7551,7552,5,867,0,0,7552,7654,1,0,0,0,7553,7554,7,134,0,0,7554, - 7557,5,866,0,0,7555,7558,3,718,359,0,7556,7558,3,806,403,0,7557, - 7555,1,0,0,0,7557,7556,1,0,0,0,7558,7559,1,0,0,0,7559,7562,5,68, - 0,0,7560,7563,3,714,357,0,7561,7563,3,806,403,0,7562,7560,1,0,0, - 0,7562,7561,1,0,0,0,7563,7569,1,0,0,0,7564,7567,5,65,0,0,7565,7568, - 3,714,357,0,7566,7568,3,806,403,0,7567,7565,1,0,0,0,7567,7566,1, - 0,0,0,7568,7570,1,0,0,0,7569,7564,1,0,0,0,7569,7570,1,0,0,0,7570, - 7571,1,0,0,0,7571,7572,5,867,0,0,7572,7654,1,0,0,0,7573,7574,5,300, - 0,0,7574,7575,5,866,0,0,7575,7578,7,135,0,0,7576,7579,3,718,359, - 0,7577,7579,3,806,403,0,7578,7576,1,0,0,0,7578,7577,1,0,0,0,7578, - 7579,1,0,0,0,7579,7580,1,0,0,0,7580,7583,5,68,0,0,7581,7584,3,718, - 359,0,7582,7584,3,806,403,0,7583,7581,1,0,0,0,7583,7582,1,0,0,0, - 7584,7585,1,0,0,0,7585,7586,5,867,0,0,7586,7654,1,0,0,0,7587,7588, - 5,300,0,0,7588,7591,5,866,0,0,7589,7592,3,718,359,0,7590,7592,3, - 806,403,0,7591,7589,1,0,0,0,7591,7590,1,0,0,0,7592,7593,1,0,0,0, - 7593,7596,5,68,0,0,7594,7597,3,718,359,0,7595,7597,3,806,403,0,7596, - 7594,1,0,0,0,7596,7595,1,0,0,0,7597,7598,1,0,0,0,7598,7599,5,867, - 0,0,7599,7654,1,0,0,0,7600,7601,5,840,0,0,7601,7604,5,866,0,0,7602, - 7605,3,718,359,0,7603,7605,3,806,403,0,7604,7602,1,0,0,0,7604,7603, - 1,0,0,0,7605,7612,1,0,0,0,7606,7607,5,13,0,0,7607,7608,7,136,0,0, - 7608,7609,5,866,0,0,7609,7610,3,714,357,0,7610,7611,5,867,0,0,7611, - 7613,1,0,0,0,7612,7606,1,0,0,0,7612,7613,1,0,0,0,7613,7615,1,0,0, - 0,7614,7616,3,772,386,0,7615,7614,1,0,0,0,7615,7616,1,0,0,0,7616, - 7617,1,0,0,0,7617,7618,5,867,0,0,7618,7654,1,0,0,0,7619,7620,5,293, - 0,0,7620,7621,5,866,0,0,7621,7622,3,66,33,0,7622,7625,5,68,0,0,7623, - 7626,3,718,359,0,7624,7626,3,806,403,0,7625,7623,1,0,0,0,7625,7624, - 1,0,0,0,7626,7627,1,0,0,0,7627,7628,5,867,0,0,7628,7654,1,0,0,0, - 7629,7630,5,827,0,0,7630,7631,5,866,0,0,7631,7632,7,137,0,0,7632, - 7633,5,868,0,0,7633,7634,3,718,359,0,7634,7635,5,867,0,0,7635,7654, - 1,0,0,0,7636,7637,5,254,0,0,7637,7638,5,866,0,0,7638,7639,3,806, - 403,0,7639,7640,5,868,0,0,7640,7643,3,806,403,0,7641,7642,5,579, - 0,0,7642,7644,3,732,366,0,7643,7641,1,0,0,0,7643,7644,1,0,0,0,7644, - 7646,1,0,0,0,7645,7647,3,292,146,0,7646,7645,1,0,0,0,7646,7647,1, - 0,0,0,7647,7649,1,0,0,0,7648,7650,3,294,147,0,7649,7648,1,0,0,0, - 7649,7650,1,0,0,0,7650,7651,1,0,0,0,7651,7652,5,867,0,0,7652,7654, - 1,0,0,0,7653,7474,1,0,0,0,7653,7479,1,0,0,0,7653,7480,1,0,0,0,7653, - 7487,1,0,0,0,7653,7494,1,0,0,0,7653,7501,1,0,0,0,7653,7506,1,0,0, - 0,7653,7519,1,0,0,0,7653,7531,1,0,0,0,7653,7540,1,0,0,0,7653,7553, - 1,0,0,0,7653,7573,1,0,0,0,7653,7587,1,0,0,0,7653,7600,1,0,0,0,7653, - 7619,1,0,0,0,7653,7629,1,0,0,0,7653,7636,1,0,0,0,7654,769,1,0,0, - 0,7655,7656,5,191,0,0,7656,7657,3,804,402,0,7657,7658,5,175,0,0, - 7658,7659,3,804,402,0,7659,771,1,0,0,0,7660,7661,5,448,0,0,7661, - 7666,3,774,387,0,7662,7663,5,868,0,0,7663,7665,3,774,387,0,7664, - 7662,1,0,0,0,7665,7668,1,0,0,0,7666,7664,1,0,0,0,7666,7667,1,0,0, - 0,7667,7675,1,0,0,0,7668,7666,1,0,0,0,7669,7670,5,448,0,0,7670,7671, - 3,714,357,0,7671,7672,5,854,0,0,7672,7673,3,714,357,0,7673,7675, - 1,0,0,0,7674,7660,1,0,0,0,7674,7669,1,0,0,0,7675,773,1,0,0,0,7676, - 7678,3,714,357,0,7677,7679,7,138,0,0,7678,7677,1,0,0,0,7678,7679, - 1,0,0,0,7679,775,1,0,0,0,7680,7681,7,139,0,0,7681,7683,5,866,0,0, - 7682,7684,7,44,0,0,7683,7682,1,0,0,0,7683,7684,1,0,0,0,7684,7685, - 1,0,0,0,7685,7686,3,804,402,0,7686,7688,5,867,0,0,7687,7689,3,780, - 390,0,7688,7687,1,0,0,0,7688,7689,1,0,0,0,7689,7740,1,0,0,0,7690, - 7691,5,262,0,0,7691,7699,5,866,0,0,7692,7700,5,850,0,0,7693,7695, - 5,7,0,0,7694,7693,1,0,0,0,7694,7695,1,0,0,0,7695,7696,1,0,0,0,7696, - 7700,3,804,402,0,7697,7698,5,49,0,0,7698,7700,3,802,401,0,7699,7692, - 1,0,0,0,7699,7694,1,0,0,0,7699,7697,1,0,0,0,7700,7701,1,0,0,0,7701, - 7703,5,867,0,0,7702,7704,3,780,390,0,7703,7702,1,0,0,0,7703,7704, - 1,0,0,0,7704,7740,1,0,0,0,7705,7706,7,140,0,0,7706,7708,5,866,0, - 0,7707,7709,5,7,0,0,7708,7707,1,0,0,0,7708,7709,1,0,0,0,7709,7710, - 1,0,0,0,7710,7711,3,804,402,0,7711,7713,5,867,0,0,7712,7714,3,780, - 390,0,7713,7712,1,0,0,0,7713,7714,1,0,0,0,7714,7740,1,0,0,0,7715, - 7716,5,266,0,0,7716,7718,5,866,0,0,7717,7719,5,49,0,0,7718,7717, - 1,0,0,0,7718,7719,1,0,0,0,7719,7720,1,0,0,0,7720,7731,3,802,401, - 0,7721,7722,5,125,0,0,7722,7723,5,20,0,0,7723,7728,3,254,127,0,7724, - 7725,5,868,0,0,7725,7727,3,254,127,0,7726,7724,1,0,0,0,7727,7730, - 1,0,0,0,7728,7726,1,0,0,0,7728,7729,1,0,0,0,7729,7732,1,0,0,0,7730, - 7728,1,0,0,0,7731,7721,1,0,0,0,7731,7732,1,0,0,0,7732,7735,1,0,0, - 0,7733,7734,5,156,0,0,7734,7736,5,882,0,0,7735,7733,1,0,0,0,7735, - 7736,1,0,0,0,7736,7737,1,0,0,0,7737,7738,5,867,0,0,7738,7740,1,0, - 0,0,7739,7680,1,0,0,0,7739,7690,1,0,0,0,7739,7705,1,0,0,0,7739,7715, - 1,0,0,0,7740,777,1,0,0,0,7741,7742,7,141,0,0,7742,7743,5,866,0,0, - 7743,7746,3,806,403,0,7744,7745,5,868,0,0,7745,7747,3,714,357,0, - 7746,7744,1,0,0,0,7746,7747,1,0,0,0,7747,7750,1,0,0,0,7748,7749, - 5,868,0,0,7749,7751,3,714,357,0,7750,7748,1,0,0,0,7750,7751,1,0, - 0,0,7751,7752,1,0,0,0,7752,7753,5,867,0,0,7753,7754,3,780,390,0, - 7754,7780,1,0,0,0,7755,7756,7,142,0,0,7756,7757,5,866,0,0,7757,7758, - 3,806,403,0,7758,7759,5,867,0,0,7759,7760,3,780,390,0,7760,7780, - 1,0,0,0,7761,7762,7,143,0,0,7762,7763,5,866,0,0,7763,7764,5,867, - 0,0,7764,7780,3,780,390,0,7765,7766,5,273,0,0,7766,7767,5,866,0, - 0,7767,7768,3,806,403,0,7768,7769,5,868,0,0,7769,7770,3,714,357, - 0,7770,7771,5,867,0,0,7771,7772,3,780,390,0,7772,7780,1,0,0,0,7773, - 7774,5,272,0,0,7774,7775,5,866,0,0,7775,7776,3,714,357,0,7776,7777, - 5,867,0,0,7777,7778,3,780,390,0,7778,7780,1,0,0,0,7779,7741,1,0, - 0,0,7779,7755,1,0,0,0,7779,7761,1,0,0,0,7779,7765,1,0,0,0,7779,7773, - 1,0,0,0,7780,779,1,0,0,0,7781,7787,5,129,0,0,7782,7783,5,866,0,0, - 7783,7784,3,782,391,0,7784,7785,5,867,0,0,7785,7788,1,0,0,0,7786, - 7788,3,784,392,0,7787,7782,1,0,0,0,7787,7786,1,0,0,0,7788,781,1, - 0,0,0,7789,7791,3,784,392,0,7790,7789,1,0,0,0,7790,7791,1,0,0,0, - 7791,7793,1,0,0,0,7792,7794,3,796,398,0,7793,7792,1,0,0,0,7793,7794, - 1,0,0,0,7794,7796,1,0,0,0,7795,7797,3,252,126,0,7796,7795,1,0,0, - 0,7796,7797,1,0,0,0,7797,7799,1,0,0,0,7798,7800,3,786,393,0,7799, - 7798,1,0,0,0,7799,7800,1,0,0,0,7800,783,1,0,0,0,7801,7802,3,708, - 354,0,7802,785,1,0,0,0,7803,7804,3,788,394,0,7804,7805,3,790,395, - 0,7805,787,1,0,0,0,7806,7807,7,144,0,0,7807,789,1,0,0,0,7808,7811, - 3,794,397,0,7809,7811,3,792,396,0,7810,7808,1,0,0,0,7810,7809,1, - 0,0,0,7811,791,1,0,0,0,7812,7813,5,17,0,0,7813,7814,3,794,397,0, - 7814,7815,5,11,0,0,7815,7816,3,794,397,0,7816,793,1,0,0,0,7817,7818, - 5,36,0,0,7818,7825,5,586,0,0,7819,7820,5,669,0,0,7820,7825,7,145, - 0,0,7821,7822,3,806,403,0,7822,7823,7,145,0,0,7823,7825,1,0,0,0, - 7824,7817,1,0,0,0,7824,7819,1,0,0,0,7824,7821,1,0,0,0,7825,795,1, - 0,0,0,7826,7827,5,130,0,0,7827,7828,5,20,0,0,7828,7833,3,806,403, - 0,7829,7830,5,868,0,0,7830,7832,3,806,403,0,7831,7829,1,0,0,0,7832, - 7835,1,0,0,0,7833,7831,1,0,0,0,7833,7834,1,0,0,0,7834,797,1,0,0, - 0,7835,7833,1,0,0,0,7836,7861,3,838,419,0,7837,7861,5,757,0,0,7838, - 7861,5,289,0,0,7839,7861,5,285,0,0,7840,7861,5,286,0,0,7841,7861, - 5,287,0,0,7842,7861,5,290,0,0,7843,7861,5,291,0,0,7844,7861,5,292, - 0,0,7845,7861,5,78,0,0,7846,7861,5,86,0,0,7847,7861,5,288,0,0,7848, - 7861,5,294,0,0,7849,7861,5,488,0,0,7850,7861,5,295,0,0,7851,7861, - 5,142,0,0,7852,7861,5,143,0,0,7853,7861,5,297,0,0,7854,7861,5,298, - 0,0,7855,7861,5,299,0,0,7856,7861,5,300,0,0,7857,7861,5,301,0,0, - 7858,7861,5,302,0,0,7859,7861,5,303,0,0,7860,7836,1,0,0,0,7860,7837, - 1,0,0,0,7860,7838,1,0,0,0,7860,7839,1,0,0,0,7860,7840,1,0,0,0,7860, - 7841,1,0,0,0,7860,7842,1,0,0,0,7860,7843,1,0,0,0,7860,7844,1,0,0, - 0,7860,7845,1,0,0,0,7860,7846,1,0,0,0,7860,7847,1,0,0,0,7860,7848, - 1,0,0,0,7860,7849,1,0,0,0,7860,7850,1,0,0,0,7860,7851,1,0,0,0,7860, - 7852,1,0,0,0,7860,7853,1,0,0,0,7860,7854,1,0,0,0,7860,7855,1,0,0, - 0,7860,7856,1,0,0,0,7860,7857,1,0,0,0,7860,7858,1,0,0,0,7860,7859, - 1,0,0,0,7861,799,1,0,0,0,7862,7863,7,146,0,0,7863,7864,5,866,0,0, - 7864,7865,3,804,402,0,7865,7866,5,867,0,0,7866,801,1,0,0,0,7867, - 7872,3,804,402,0,7868,7869,5,868,0,0,7869,7871,3,804,402,0,7870, - 7868,1,0,0,0,7871,7874,1,0,0,0,7872,7870,1,0,0,0,7872,7873,1,0,0, - 0,7873,803,1,0,0,0,7874,7872,1,0,0,0,7875,7880,3,726,363,0,7876, - 7880,3,664,332,0,7877,7880,3,766,383,0,7878,7880,3,806,403,0,7879, - 7875,1,0,0,0,7879,7876,1,0,0,0,7879,7877,1,0,0,0,7879,7878,1,0,0, - 0,7880,805,1,0,0,0,7881,7882,6,403,-1,0,7882,7883,7,147,0,0,7883, - 7893,3,806,403,4,7884,7885,3,808,404,0,7885,7887,5,89,0,0,7886,7888, - 5,114,0,0,7887,7886,1,0,0,0,7887,7888,1,0,0,0,7888,7889,1,0,0,0, - 7889,7890,7,148,0,0,7890,7893,1,0,0,0,7891,7893,3,808,404,0,7892, - 7881,1,0,0,0,7892,7884,1,0,0,0,7892,7891,1,0,0,0,7893,7900,1,0,0, - 0,7894,7895,10,3,0,0,7895,7896,3,818,409,0,7896,7897,3,806,403,4, - 7897,7899,1,0,0,0,7898,7894,1,0,0,0,7899,7902,1,0,0,0,7900,7898, - 1,0,0,0,7900,7901,1,0,0,0,7901,807,1,0,0,0,7902,7900,1,0,0,0,7903, - 7904,6,404,-1,0,7904,7905,3,810,405,0,7905,7970,1,0,0,0,7906,7907, - 10,8,0,0,7907,7908,3,814,407,0,7908,7909,3,808,404,9,7909,7969,1, - 0,0,0,7910,7912,10,6,0,0,7911,7913,5,114,0,0,7912,7911,1,0,0,0,7912, - 7913,1,0,0,0,7913,7914,1,0,0,0,7914,7915,5,17,0,0,7915,7916,3,808, - 404,0,7916,7917,5,11,0,0,7917,7918,3,808,404,7,7918,7969,1,0,0,0, - 7919,7920,10,5,0,0,7920,7921,5,604,0,0,7921,7922,5,99,0,0,7922,7969, - 3,808,404,6,7923,7925,10,3,0,0,7924,7926,5,114,0,0,7925,7924,1,0, - 0,0,7925,7926,1,0,0,0,7926,7927,1,0,0,0,7927,7928,7,149,0,0,7928, - 7969,3,808,404,4,7929,7931,10,10,0,0,7930,7932,5,114,0,0,7931,7930, - 1,0,0,0,7931,7932,1,0,0,0,7932,7933,1,0,0,0,7933,7934,5,80,0,0,7934, - 7937,5,866,0,0,7935,7938,3,204,102,0,7936,7938,3,742,371,0,7937, - 7935,1,0,0,0,7937,7936,1,0,0,0,7938,7939,1,0,0,0,7939,7940,5,867, - 0,0,7940,7969,1,0,0,0,7941,7942,10,9,0,0,7942,7943,5,89,0,0,7943, - 7969,3,724,362,0,7944,7945,10,7,0,0,7945,7946,3,814,407,0,7946,7947, - 7,150,0,0,7947,7948,5,866,0,0,7948,7949,3,204,102,0,7949,7950,5, - 867,0,0,7950,7969,1,0,0,0,7951,7953,10,4,0,0,7952,7954,5,114,0,0, - 7953,7952,1,0,0,0,7953,7954,1,0,0,0,7954,7955,1,0,0,0,7955,7956, - 5,99,0,0,7956,7959,3,808,404,0,7957,7958,5,384,0,0,7958,7960,5,882, - 0,0,7959,7957,1,0,0,0,7959,7960,1,0,0,0,7960,7969,1,0,0,0,7961,7962, - 10,2,0,0,7962,7963,5,485,0,0,7963,7964,5,510,0,0,7964,7965,5,866, - 0,0,7965,7966,3,808,404,0,7966,7967,5,867,0,0,7967,7969,1,0,0,0, - 7968,7906,1,0,0,0,7968,7910,1,0,0,0,7968,7919,1,0,0,0,7968,7923, - 1,0,0,0,7968,7929,1,0,0,0,7968,7941,1,0,0,0,7968,7944,1,0,0,0,7968, - 7951,1,0,0,0,7968,7961,1,0,0,0,7969,7972,1,0,0,0,7970,7968,1,0,0, - 0,7970,7971,1,0,0,0,7971,809,1,0,0,0,7972,7970,1,0,0,0,7973,7974, - 6,405,-1,0,7974,8022,3,726,363,0,7975,8022,3,664,332,0,7976,8022, - 3,766,383,0,7977,8022,3,688,344,0,7978,7979,3,812,406,0,7979,7980, - 3,810,405,11,7980,8022,1,0,0,0,7981,7982,5,228,0,0,7982,8022,3,810, - 405,10,7983,7984,5,892,0,0,7984,7985,5,841,0,0,7985,8022,3,810,405, - 9,7986,7987,5,866,0,0,7987,7992,3,806,403,0,7988,7989,5,868,0,0, - 7989,7991,3,806,403,0,7990,7988,1,0,0,0,7991,7994,1,0,0,0,7992,7990, - 1,0,0,0,7992,7993,1,0,0,0,7993,7995,1,0,0,0,7994,7992,1,0,0,0,7995, - 7996,5,867,0,0,7996,8022,1,0,0,0,7997,7998,5,586,0,0,7998,7999,5, - 866,0,0,7999,8002,3,806,403,0,8000,8001,5,868,0,0,8001,8003,3,806, - 403,0,8002,8000,1,0,0,0,8003,8004,1,0,0,0,8004,8002,1,0,0,0,8004, - 8005,1,0,0,0,8005,8006,1,0,0,0,8006,8007,5,867,0,0,8007,8022,1,0, - 0,0,8008,8009,5,60,0,0,8009,8010,5,866,0,0,8010,8011,3,204,102,0, - 8011,8012,5,867,0,0,8012,8022,1,0,0,0,8013,8014,5,866,0,0,8014,8015, - 3,204,102,0,8015,8016,5,867,0,0,8016,8022,1,0,0,0,8017,8018,5,87, - 0,0,8018,8019,3,806,403,0,8019,8020,3,66,33,0,8020,8022,1,0,0,0, - 8021,7973,1,0,0,0,8021,7975,1,0,0,0,8021,7976,1,0,0,0,8021,7977, - 1,0,0,0,8021,7978,1,0,0,0,8021,7981,1,0,0,0,8021,7983,1,0,0,0,8021, - 7986,1,0,0,0,8021,7997,1,0,0,0,8021,8008,1,0,0,0,8021,8013,1,0,0, - 0,8021,8017,1,0,0,0,8022,8040,1,0,0,0,8023,8024,10,3,0,0,8024,8025, - 3,820,410,0,8025,8026,3,810,405,4,8026,8039,1,0,0,0,8027,8028,10, - 2,0,0,8028,8029,3,822,411,0,8029,8030,3,810,405,3,8030,8039,1,0, - 0,0,8031,8032,10,1,0,0,8032,8033,3,824,412,0,8033,8034,3,810,405, - 2,8034,8039,1,0,0,0,8035,8036,10,13,0,0,8036,8037,5,28,0,0,8037, - 8039,3,692,346,0,8038,8023,1,0,0,0,8038,8027,1,0,0,0,8038,8031,1, - 0,0,0,8038,8035,1,0,0,0,8039,8042,1,0,0,0,8040,8038,1,0,0,0,8040, - 8041,1,0,0,0,8041,811,1,0,0,0,8042,8040,1,0,0,0,8043,8044,7,151, - 0,0,8044,813,1,0,0,0,8045,8054,3,816,408,0,8046,8047,5,859,0,0,8047, - 8054,5,858,0,0,8048,8049,5,860,0,0,8049,8054,5,857,0,0,8050,8051, - 5,859,0,0,8051,8052,5,857,0,0,8052,8054,5,858,0,0,8053,8045,1,0, - 0,0,8053,8046,1,0,0,0,8053,8048,1,0,0,0,8053,8050,1,0,0,0,8054,815, - 1,0,0,0,8055,8063,5,857,0,0,8056,8063,5,858,0,0,8057,8063,5,859, - 0,0,8058,8059,5,859,0,0,8059,8063,5,857,0,0,8060,8061,5,858,0,0, - 8061,8063,5,857,0,0,8062,8055,1,0,0,0,8062,8056,1,0,0,0,8062,8057, - 1,0,0,0,8062,8058,1,0,0,0,8062,8060,1,0,0,0,8063,817,1,0,0,0,8064, - 8072,5,11,0,0,8065,8066,5,863,0,0,8066,8072,5,863,0,0,8067,8072, - 5,196,0,0,8068,8072,5,124,0,0,8069,8070,5,862,0,0,8070,8072,5,862, - 0,0,8071,8064,1,0,0,0,8071,8065,1,0,0,0,8071,8067,1,0,0,0,8071,8068, - 1,0,0,0,8071,8069,1,0,0,0,8072,819,1,0,0,0,8073,8074,5,859,0,0,8074, - 8081,5,859,0,0,8075,8076,5,858,0,0,8076,8081,5,858,0,0,8077,8081, - 5,863,0,0,8078,8081,5,864,0,0,8079,8081,5,862,0,0,8080,8073,1,0, - 0,0,8080,8075,1,0,0,0,8080,8077,1,0,0,0,8080,8078,1,0,0,0,8080,8079, - 1,0,0,0,8081,821,1,0,0,0,8082,8083,7,152,0,0,8083,823,1,0,0,0,8084, - 8085,5,854,0,0,8085,8090,5,858,0,0,8086,8087,5,854,0,0,8087,8088, - 5,858,0,0,8088,8090,5,858,0,0,8089,8084,1,0,0,0,8089,8086,1,0,0, - 0,8090,825,1,0,0,0,8091,8092,7,153,0,0,8092,827,1,0,0,0,8093,8094, - 7,154,0,0,8094,829,1,0,0,0,8095,8096,7,155,0,0,8096,831,1,0,0,0, - 8097,8098,7,156,0,0,8098,833,1,0,0,0,8099,8100,7,157,0,0,8100,835, - 1,0,0,0,8101,8102,7,158,0,0,8102,837,1,0,0,0,8103,8104,7,159,0,0, - 8104,839,1,0,0,0,1171,843,850,853,862,905,924,935,951,956,968,1003, - 1013,1018,1024,1029,1033,1042,1045,1048,1052,1059,1062,1067,1075, - 1080,1085,1088,1090,1102,1105,1109,1112,1116,1119,1123,1126,1129, - 1133,1136,1140,1146,1150,1155,1161,1168,1176,1194,1201,1205,1211, - 1216,1219,1222,1226,1230,1234,1238,1243,1246,1249,1252,1255,1261, - 1265,1275,1277,1281,1288,1292,1295,1300,1304,1307,1311,1314,1318, - 1331,1334,1338,1341,1345,1348,1352,1355,1359,1362,1365,1369,1372, - 1376,1382,1386,1398,1404,1415,1420,1428,1432,1437,1440,1445,1453, - 1458,1464,1469,1473,1475,1478,1482,1486,1489,1493,1497,1501,1507, - 1510,1517,1522,1528,1535,1541,1549,1552,1559,1562,1564,1570,1576, - 1593,1600,1607,1619,1624,1627,1630,1640,1653,1658,1674,1682,1692, - 1695,1701,1706,1709,1715,1719,1724,1730,1734,1738,1741,1744,1750, - 1754,1759,1770,1773,1780,1783,1787,1793,1805,1808,1813,1826,1833, - 1839,1844,1848,1851,1859,1867,1869,1879,1883,1886,1890,1895,1900, - 1905,1909,1913,1917,1921,1925,1929,1934,1939,1944,1950,1955,1960, - 1965,1970,1975,1981,1986,1991,1996,2001,2006,2011,2016,2023,2028, - 2033,2038,2042,2047,2055,2060,2066,2078,2085,2087,2095,2100,2103, - 2111,2117,2121,2134,2146,2148,2151,2159,2165,2171,2184,2191,2200, - 2205,2216,2225,2230,2242,2249,2258,2263,2275,2282,2291,2296,2303, - 2312,2317,2319,2324,2332,2341,2345,2348,2352,2357,2363,2369,2374, - 2379,2384,2389,2392,2397,2402,2412,2416,2423,2428,2431,2436,2439, - 2443,2447,2455,2474,2477,2480,2484,2494,2507,2520,2523,2529,2532, - 2536,2545,2548,2551,2556,2560,2563,2567,2571,2574,2578,2581,2585, - 2588,2594,2597,2602,2610,2616,2620,2624,2629,2634,2641,2645,2656, - 2664,2667,2673,2679,2682,2688,2694,2696,2701,2707,2713,2715,2719, - 2722,2725,2731,2737,2739,2744,2751,2760,2763,2767,2772,2782,2791, - 2799,2802,2810,2813,2820,2825,2833,2849,2854,2861,2880,2886,2896, - 2908,2915,2922,2937,2950,2956,2962,2968,2974,2980,2986,2991,2998, - 3005,3012,3017,3020,3022,3031,3038,3045,3052,3061,3067,3071,3075, - 3079,3085,3088,3093,3100,3107,3111,3116,3126,3134,3140,3149,3158, - 3167,3170,3174,3183,3187,3190,3193,3199,3202,3205,3209,3212,3215, - 3218,3229,3232,3237,3243,3248,3253,3256,3260,3265,3268,3273,3283, - 3288,3294,3296,3302,3304,3310,3318,3323,3331,3334,3339,3342,3347, - 3355,3361,3365,3367,3373,3381,3386,3394,3397,3402,3405,3409,3412, - 3415,3419,3422,3430,3436,3440,3444,3448,3451,3455,3461,3465,3469, - 3471,3474,3477,3480,3486,3490,3493,3496,3499,3502,3509,3511,3514, - 3518,3521,3524,3532,3538,3541,3543,3552,3557,3564,3567,3570,3574, - 3578,3584,3588,3595,3599,3602,3605,3610,3617,3627,3636,3645,3655, - 3658,3662,3668,3672,3675,3678,3683,3686,3693,3697,3700,3704,3708, - 3711,3714,3719,3725,3729,3739,3745,3749,3755,3759,3765,3768,3780, - 3784,3788,3796,3800,3814,3819,3822,3826,3829,3837,3842,3845,3848, - 3852,3855,3864,3869,3878,3883,3890,3897,3905,3911,3919,3922,3925, - 3932,3935,3938,3945,3948,3952,3958,3968,3972,3981,3984,3988,3994, - 4002,4007,4011,4017,4023,4026,4028,4032,4041,4051,4061,4067,4072, - 4076,4079,4082,4085,4088,4094,4100,4103,4106,4109,4112,4115,4117, - 4123,4129,4132,4135,4138,4141,4145,4151,4155,4163,4167,4170,4172, - 4185,4188,4195,4205,4208,4213,4215,4219,4227,4233,4242,4255,4259, - 4265,4274,4277,4281,4284,4288,4292,4295,4297,4305,4317,4323,4325, - 4331,4333,4335,4341,4349,4357,4361,4365,4374,4379,4399,4404,4410, - 4417,4422,4431,4434,4438,4442,4446,4449,4452,4455,4459,4463,4466, - 4469,4472,4479,4483,4498,4511,4519,4529,4533,4536,4542,4545,4548, - 4557,4566,4576,4580,4590,4594,4605,4609,4618,4627,4630,4634,4639, - 4643,4652,4655,4658,4665,4671,4677,4703,4706,4709,4728,4730,4753, - 4756,4759,4778,4780,4794,4807,4844,4849,4884,4898,4905,4909,4915, - 4923,4925,4936,4946,4953,4959,4967,4972,4980,4988,4996,5004,5010, - 5015,5020,5025,5031,5033,5044,5049,5056,5058,5072,5078,5083,5088, - 5094,5101,5109,5117,5122,5128,5131,5139,5146,5155,5158,5175,5183, - 5191,5195,5202,5208,5216,5221,5228,5236,5243,5248,5251,5253,5259, - 5261,5265,5267,5272,5279,5284,5288,5293,5297,5303,5309,5314,5317, - 5319,5325,5327,5331,5333,5338,5343,5350,5359,5364,5373,5377,5383, - 5388,5391,5393,5399,5401,5404,5411,5413,5418,5425,5434,5440,5442, - 5449,5452,5464,5470,5478,5481,5485,5488,5492,5494,5505,5508,5512, - 5515,5518,5525,5537,5540,5547,5553,5563,5568,5575,5580,5586,5590, - 5594,5602,5606,5610,5616,5618,5630,5635,5641,5647,5651,5656,5658, - 5690,5694,5698,5701,5710,5714,5723,5727,5731,5737,5739,5748,5758, - 5785,5789,5794,5801,5804,5810,5820,5830,5840,5846,5855,5861,5868, - 5870,5878,5884,5888,5905,5915,5919,5923,5933,5938,6010,6028,6036, - 6042,6054,6058,6069,6073,6082,6090,6097,6101,6108,6113,6116,6119, - 6130,6134,6138,6153,6162,6165,6179,6197,6210,6213,6217,6220,6222, - 6229,6236,6240,6247,6254,6257,6273,6276,6286,6290,6296,6299,6302, - 6307,6311,6314,6321,6324,6330,6366,6369,6381,6384,6400,6402,6406, - 6413,6417,6424,6427,6436,6439,6444,6450,6452,6458,6462,6468,6471, - 6474,6487,6490,6496,6499,6507,6515,6521,6524,6528,6542,6554,6562, - 6566,6573,6580,6585,6598,6607,6615,6620,6623,6628,6631,6643,6648, - 6661,6663,6668,6672,6675,6677,6684,6691,6694,6697,6703,6707,6713, - 6721,6730,6743,6748,6756,6759,6764,6769,6777,6780,6788,6792,6799, - 6805,6808,6812,6825,6831,6843,6846,6855,6860,6881,6897,6907,6912, - 6917,6919,6922,6926,6928,6935,6941,6943,6946,6950,6952,6965,6975, - 6978,6981,6994,7000,7003,7011,7018,7038,7045,7047,7054,7056,7060, - 7067,7073,7084,7090,7096,7099,7103,7108,7111,7115,7119,7121,7126, - 7131,7144,7147,7151,7154,7157,7162,7167,7173,7176,7181,7184,7189, - 7192,7196,7201,7206,7211,7216,7219,7224,7229,7234,7240,7245,7250, - 7255,7259,7262,7267,7271,7275,7283,7290,7294,7299,7304,7308,7310, - 7313,7329,7339,7349,7358,7367,7374,7381,7389,7397,7409,7416,7426, - 7431,7434,7439,7442,7460,7467,7472,7477,7511,7515,7523,7527,7536, - 7544,7549,7557,7562,7567,7569,7578,7583,7591,7596,7604,7612,7615, - 7625,7643,7646,7649,7653,7666,7674,7678,7683,7688,7694,7699,7703, - 7708,7713,7718,7728,7731,7735,7739,7746,7750,7779,7787,7790,7793, - 7796,7799,7810,7824,7833,7860,7872,7879,7887,7892,7900,7912,7925, - 7931,7937,7953,7959,7968,7970,7992,8004,8021,8038,8040,8053,8062, - 8071,8080,8089 + 2364,1,0,0,0,2364,2365,1,0,0,0,2365,2387,5,882,0,0,2366,2368,5,480, + 0,0,2367,2369,5,857,0,0,2368,2367,1,0,0,0,2368,2369,1,0,0,0,2369, + 2370,1,0,0,0,2370,2387,3,708,354,0,2371,2373,5,490,0,0,2372,2374, + 5,857,0,0,2373,2372,1,0,0,0,2373,2374,1,0,0,0,2374,2375,1,0,0,0, + 2375,2387,3,708,354,0,2376,2378,5,658,0,0,2377,2379,5,857,0,0,2378, + 2377,1,0,0,0,2378,2379,1,0,0,0,2379,2380,1,0,0,0,2380,2387,3,662, + 331,0,2381,2383,5,504,0,0,2382,2384,5,857,0,0,2383,2382,1,0,0,0, + 2383,2384,1,0,0,0,2384,2385,1,0,0,0,2385,2387,3,702,351,0,2386,2339, + 1,0,0,0,2386,2349,1,0,0,0,2386,2354,1,0,0,0,2386,2360,1,0,0,0,2386, + 2366,1,0,0,0,2386,2371,1,0,0,0,2386,2376,1,0,0,0,2386,2381,1,0,0, + 0,2387,119,1,0,0,0,2388,2389,5,8,0,0,2389,2391,7,0,0,0,2390,2392, + 3,624,312,0,2391,2390,1,0,0,0,2391,2392,1,0,0,0,2392,2394,1,0,0, + 0,2393,2395,3,52,26,0,2394,2393,1,0,0,0,2395,2396,1,0,0,0,2396,2394, + 1,0,0,0,2396,2397,1,0,0,0,2397,2407,1,0,0,0,2398,2399,5,8,0,0,2399, + 2400,7,0,0,0,2400,2401,3,624,312,0,2401,2402,5,677,0,0,2402,2403, + 5,360,0,0,2403,2404,5,367,0,0,2404,2405,5,496,0,0,2405,2407,1,0, + 0,0,2406,2388,1,0,0,0,2406,2398,1,0,0,0,2407,121,1,0,0,0,2408,2410, + 5,8,0,0,2409,2411,3,58,29,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0, + 2411,2412,1,0,0,0,2412,2413,5,385,0,0,2413,2417,3,698,349,0,2414, + 2415,5,119,0,0,2415,2416,5,590,0,0,2416,2418,3,60,30,0,2417,2414, + 1,0,0,0,2417,2418,1,0,0,0,2418,2425,1,0,0,0,2419,2420,5,119,0,0, + 2420,2422,5,343,0,0,2421,2423,5,114,0,0,2422,2421,1,0,0,0,2422,2423, + 1,0,0,0,2423,2424,1,0,0,0,2424,2426,5,541,0,0,2425,2419,1,0,0,0, + 2425,2426,1,0,0,0,2426,2430,1,0,0,0,2427,2428,5,141,0,0,2428,2429, + 5,176,0,0,2429,2431,3,698,349,0,2430,2427,1,0,0,0,2430,2431,1,0, + 0,0,2431,2433,1,0,0,0,2432,2434,3,68,34,0,2433,2432,1,0,0,0,2433, + 2434,1,0,0,0,2434,2437,1,0,0,0,2435,2436,5,340,0,0,2436,2438,5,882, + 0,0,2437,2435,1,0,0,0,2437,2438,1,0,0,0,2438,2441,1,0,0,0,2439,2440, + 5,371,0,0,2440,2442,3,416,208,0,2441,2439,1,0,0,0,2441,2442,1,0, + 0,0,2442,123,1,0,0,0,2443,2444,5,8,0,0,2444,2445,5,409,0,0,2445, + 2449,3,628,314,0,2446,2448,3,76,38,0,2447,2446,1,0,0,0,2448,2451, + 1,0,0,0,2449,2447,1,0,0,0,2449,2450,1,0,0,0,2450,125,1,0,0,0,2451, + 2449,1,0,0,0,2452,2453,5,8,0,0,2453,2454,5,433,0,0,2454,2455,5,585, + 0,0,2455,2456,5,801,0,0,2456,2457,5,453,0,0,2457,2458,5,92,0,0,2458, + 127,1,0,0,0,2459,2460,5,8,0,0,2460,2461,5,451,0,0,2461,2462,5,74, + 0,0,2462,2463,3,702,351,0,2463,2464,5,6,0,0,2464,2465,5,671,0,0, + 2465,2471,5,882,0,0,2466,2468,5,428,0,0,2467,2469,5,857,0,0,2468, + 2467,1,0,0,0,2468,2469,1,0,0,0,2469,2470,1,0,0,0,2470,2472,3,710, + 355,0,2471,2466,1,0,0,0,2471,2472,1,0,0,0,2472,2474,1,0,0,0,2473, + 2475,5,687,0,0,2474,2473,1,0,0,0,2474,2475,1,0,0,0,2475,2476,1,0, + 0,0,2476,2478,5,380,0,0,2477,2479,5,857,0,0,2478,2477,1,0,0,0,2478, + 2479,1,0,0,0,2479,2480,1,0,0,0,2480,2481,3,688,344,0,2481,129,1, + 0,0,0,2482,2483,5,8,0,0,2483,2484,5,132,0,0,2484,2488,3,698,349, + 0,2485,2487,3,76,38,0,2486,2485,1,0,0,0,2487,2490,1,0,0,0,2488,2486, + 1,0,0,0,2488,2489,1,0,0,0,2489,131,1,0,0,0,2490,2488,1,0,0,0,2491, + 2492,5,8,0,0,2492,2493,5,592,0,0,2493,2494,3,702,351,0,2494,2495, + 5,518,0,0,2495,2496,5,866,0,0,2496,2501,3,78,39,0,2497,2498,5,868, + 0,0,2498,2500,3,78,39,0,2499,2497,1,0,0,0,2500,2503,1,0,0,0,2501, + 2499,1,0,0,0,2501,2502,1,0,0,0,2502,2504,1,0,0,0,2503,2501,1,0,0, + 0,2504,2505,5,867,0,0,2505,133,1,0,0,0,2506,2507,5,8,0,0,2507,2508, + 5,173,0,0,2508,2517,3,648,324,0,2509,2514,3,140,70,0,2510,2511,5, + 868,0,0,2511,2513,3,140,70,0,2512,2510,1,0,0,0,2513,2516,1,0,0,0, + 2514,2512,1,0,0,0,2514,2515,1,0,0,0,2515,2518,1,0,0,0,2516,2514, + 1,0,0,0,2517,2509,1,0,0,0,2517,2518,1,0,0,0,2518,2526,1,0,0,0,2519, + 2523,3,142,71,0,2520,2522,3,142,71,0,2521,2520,1,0,0,0,2522,2525, + 1,0,0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,2527,1,0,0,0,2525, + 2523,1,0,0,0,2526,2519,1,0,0,0,2526,2527,1,0,0,0,2527,135,1,0,0, + 0,2528,2530,5,8,0,0,2529,2531,5,180,0,0,2530,2529,1,0,0,0,2530,2531, + 1,0,0,0,2531,2532,1,0,0,0,2532,2533,5,658,0,0,2533,2534,3,662,331, + 0,2534,2535,7,34,0,0,2535,2536,5,361,0,0,2536,2542,5,882,0,0,2537, + 2539,5,428,0,0,2538,2540,5,857,0,0,2539,2538,1,0,0,0,2539,2540,1, + 0,0,0,2540,2541,1,0,0,0,2541,2543,3,710,355,0,2542,2537,1,0,0,0, + 2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546,5,687,0,0,2545,2544, + 1,0,0,0,2545,2546,1,0,0,0,2546,2550,1,0,0,0,2547,2548,5,141,0,0, + 2548,2549,5,176,0,0,2549,2551,3,660,330,0,2550,2547,1,0,0,0,2550, + 2551,1,0,0,0,2551,2557,1,0,0,0,2552,2554,5,314,0,0,2553,2555,5,857, + 0,0,2554,2553,1,0,0,0,2554,2555,1,0,0,0,2555,2556,1,0,0,0,2556,2558, + 3,710,355,0,2557,2552,1,0,0,0,2557,2558,1,0,0,0,2558,2561,1,0,0, + 0,2559,2560,5,155,0,0,2560,2562,7,35,0,0,2561,2559,1,0,0,0,2561, + 2562,1,0,0,0,2562,2568,1,0,0,0,2563,2565,5,376,0,0,2564,2566,5,857, + 0,0,2565,2564,1,0,0,0,2565,2566,1,0,0,0,2566,2567,1,0,0,0,2567,2569, + 5,882,0,0,2568,2563,1,0,0,0,2568,2569,1,0,0,0,2569,2575,1,0,0,0, + 2570,2572,5,380,0,0,2571,2573,5,857,0,0,2572,2571,1,0,0,0,2572,2573, + 1,0,0,0,2573,2574,1,0,0,0,2574,2576,3,688,344,0,2575,2570,1,0,0, + 0,2575,2576,1,0,0,0,2576,2582,1,0,0,0,2577,2579,5,825,0,0,2578,2580, + 5,857,0,0,2579,2578,1,0,0,0,2579,2580,1,0,0,0,2580,2581,1,0,0,0, + 2581,2583,5,882,0,0,2582,2577,1,0,0,0,2582,2583,1,0,0,0,2583,137, + 1,0,0,0,2584,2588,5,8,0,0,2585,2586,5,308,0,0,2586,2587,5,857,0, + 0,2587,2589,7,10,0,0,2588,2585,1,0,0,0,2588,2589,1,0,0,0,2589,2591, + 1,0,0,0,2590,2592,3,58,29,0,2591,2590,1,0,0,0,2591,2592,1,0,0,0, + 2592,2596,1,0,0,0,2593,2594,5,162,0,0,2594,2595,5,591,0,0,2595,2597, + 7,11,0,0,2596,2593,1,0,0,0,2596,2597,1,0,0,0,2597,2598,1,0,0,0,2598, + 2599,5,684,0,0,2599,2604,3,632,316,0,2600,2601,5,866,0,0,2601,2602, + 3,656,328,0,2602,2603,5,867,0,0,2603,2605,1,0,0,0,2604,2600,1,0, + 0,0,2604,2605,1,0,0,0,2605,2606,1,0,0,0,2606,2607,5,13,0,0,2607, + 2614,3,204,102,0,2608,2610,5,194,0,0,2609,2611,7,12,0,0,2610,2609, + 1,0,0,0,2610,2611,1,0,0,0,2611,2612,1,0,0,0,2612,2613,5,27,0,0,2613, + 2615,5,121,0,0,2614,2608,1,0,0,0,2614,2615,1,0,0,0,2615,139,1,0, + 0,0,2616,2623,3,98,49,0,2617,2619,5,868,0,0,2618,2617,1,0,0,0,2618, + 2619,1,0,0,0,2619,2620,1,0,0,0,2620,2622,3,98,49,0,2621,2618,1,0, + 0,0,2622,2625,1,0,0,0,2623,2621,1,0,0,0,2623,2624,1,0,0,0,2624,2881, + 1,0,0,0,2625,2623,1,0,0,0,2626,2628,5,6,0,0,2627,2629,5,29,0,0,2628, + 2627,1,0,0,0,2628,2629,1,0,0,0,2629,2630,1,0,0,0,2630,2631,3,658, + 329,0,2631,2635,3,88,44,0,2632,2636,5,402,0,0,2633,2634,5,306,0, + 0,2634,2636,3,658,329,0,2635,2632,1,0,0,0,2635,2633,1,0,0,0,2635, + 2636,1,0,0,0,2636,2881,1,0,0,0,2637,2639,5,6,0,0,2638,2640,5,29, + 0,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640,2641,1,0,0,0,2641,2642, + 5,866,0,0,2642,2643,3,658,329,0,2643,2650,3,88,44,0,2644,2645,5, + 868,0,0,2645,2646,3,658,329,0,2646,2647,3,88,44,0,2647,2649,1,0, + 0,0,2648,2644,1,0,0,0,2649,2652,1,0,0,0,2650,2648,1,0,0,0,2650,2651, + 1,0,0,0,2651,2653,1,0,0,0,2652,2650,1,0,0,0,2653,2654,5,867,0,0, + 2654,2881,1,0,0,0,2655,2656,5,6,0,0,2656,2658,7,18,0,0,2657,2659, + 3,638,319,0,2658,2657,1,0,0,0,2658,2659,1,0,0,0,2659,2661,1,0,0, + 0,2660,2662,3,70,35,0,2661,2660,1,0,0,0,2661,2662,1,0,0,0,2662,2663, + 1,0,0,0,2663,2667,3,734,367,0,2664,2666,3,72,36,0,2665,2664,1,0, + 0,0,2666,2669,1,0,0,0,2667,2665,1,0,0,0,2667,2668,1,0,0,0,2668,2881, + 1,0,0,0,2669,2667,1,0,0,0,2670,2671,5,6,0,0,2671,2673,7,19,0,0,2672, + 2674,7,18,0,0,2673,2672,1,0,0,0,2673,2674,1,0,0,0,2674,2676,1,0, + 0,0,2675,2677,3,638,319,0,2676,2675,1,0,0,0,2676,2677,1,0,0,0,2677, + 2678,1,0,0,0,2678,2682,3,734,367,0,2679,2681,3,72,36,0,2680,2679, + 1,0,0,0,2681,2684,1,0,0,0,2682,2680,1,0,0,0,2682,2683,1,0,0,0,2683, + 2881,1,0,0,0,2684,2682,1,0,0,0,2685,2690,5,6,0,0,2686,2688,5,31, + 0,0,2687,2689,3,702,351,0,2688,2687,1,0,0,0,2688,2689,1,0,0,0,2689, + 2691,1,0,0,0,2690,2686,1,0,0,0,2690,2691,1,0,0,0,2691,2692,1,0,0, + 0,2692,2693,5,131,0,0,2693,2695,5,92,0,0,2694,2696,3,70,35,0,2695, + 2694,1,0,0,0,2695,2696,1,0,0,0,2696,2697,1,0,0,0,2697,2701,3,734, + 367,0,2698,2700,3,72,36,0,2699,2698,1,0,0,0,2700,2703,1,0,0,0,2701, + 2699,1,0,0,0,2701,2702,1,0,0,0,2702,2881,1,0,0,0,2703,2701,1,0,0, + 0,2704,2709,5,6,0,0,2705,2707,5,31,0,0,2706,2708,3,702,351,0,2707, + 2706,1,0,0,0,2707,2708,1,0,0,0,2708,2710,1,0,0,0,2709,2705,1,0,0, + 0,2709,2710,1,0,0,0,2710,2711,1,0,0,0,2711,2713,5,182,0,0,2712,2714, + 7,18,0,0,2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2716,1,0,0,0,2715, + 2717,3,638,319,0,2716,2715,1,0,0,0,2716,2717,1,0,0,0,2717,2719,1, + 0,0,0,2718,2720,3,70,35,0,2719,2718,1,0,0,0,2719,2720,1,0,0,0,2720, + 2721,1,0,0,0,2721,2725,3,734,367,0,2722,2724,3,72,36,0,2723,2722, + 1,0,0,0,2724,2727,1,0,0,0,2725,2723,1,0,0,0,2725,2726,1,0,0,0,2726, + 2881,1,0,0,0,2727,2725,1,0,0,0,2728,2733,5,6,0,0,2729,2731,5,31, + 0,0,2730,2732,3,702,351,0,2731,2730,1,0,0,0,2731,2732,1,0,0,0,2732, + 2734,1,0,0,0,2733,2729,1,0,0,0,2733,2734,1,0,0,0,2734,2735,1,0,0, + 0,2735,2736,5,67,0,0,2736,2738,5,92,0,0,2737,2739,3,638,319,0,2738, + 2737,1,0,0,0,2738,2739,1,0,0,0,2739,2740,1,0,0,0,2740,2741,3,734, + 367,0,2741,2742,3,92,46,0,2742,2881,1,0,0,0,2743,2745,5,6,0,0,2744, + 2746,3,84,42,0,2745,2744,1,0,0,0,2745,2746,1,0,0,0,2746,2881,1,0, + 0,0,2747,2748,5,51,0,0,2748,2749,7,36,0,0,2749,2881,3,702,351,0, + 2750,2751,5,8,0,0,2751,2752,7,36,0,0,2752,2754,3,702,351,0,2753, + 2755,5,114,0,0,2754,2753,1,0,0,0,2754,2755,1,0,0,0,2755,2757,1,0, + 0,0,2756,2758,5,57,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758, + 2881,1,0,0,0,2759,2761,5,308,0,0,2760,2762,5,857,0,0,2761,2760,1, + 0,0,0,2761,2762,1,0,0,0,2762,2763,1,0,0,0,2763,2881,7,37,0,0,2764, + 2766,5,8,0,0,2765,2767,5,29,0,0,2766,2765,1,0,0,0,2766,2767,1,0, + 0,0,2767,2768,1,0,0,0,2768,2776,3,658,329,0,2769,2770,5,155,0,0, + 2770,2771,5,42,0,0,2771,2777,3,750,375,0,2772,2773,5,155,0,0,2773, + 2777,7,16,0,0,2774,2775,5,51,0,0,2775,2777,5,42,0,0,2776,2769,1, + 0,0,0,2776,2772,1,0,0,0,2776,2774,1,0,0,0,2777,2881,1,0,0,0,2778, + 2779,5,8,0,0,2779,2780,5,82,0,0,2780,2781,3,638,319,0,2781,2782, + 7,16,0,0,2782,2881,1,0,0,0,2783,2785,5,25,0,0,2784,2786,5,29,0,0, + 2785,2784,1,0,0,0,2785,2786,1,0,0,0,2786,2787,1,0,0,0,2787,2788, + 3,658,329,0,2788,2789,3,654,327,0,2789,2793,3,88,44,0,2790,2794, + 5,402,0,0,2791,2792,5,306,0,0,2792,2794,3,658,329,0,2793,2790,1, + 0,0,0,2793,2791,1,0,0,0,2793,2794,1,0,0,0,2794,2881,1,0,0,0,2795, + 2797,5,42,0,0,2796,2795,1,0,0,0,2796,2797,1,0,0,0,2797,2798,1,0, + 0,0,2798,2799,5,26,0,0,2799,2800,5,155,0,0,2800,2801,5,857,0,0,2801, + 2807,3,684,342,0,2802,2804,5,28,0,0,2803,2805,5,857,0,0,2804,2803, + 1,0,0,0,2804,2805,1,0,0,0,2805,2806,1,0,0,0,2806,2808,3,686,343, + 0,2807,2802,1,0,0,0,2807,2808,1,0,0,0,2808,2881,1,0,0,0,2809,2810, + 5,33,0,0,2810,2814,5,176,0,0,2811,2815,5,823,0,0,2812,2813,5,26, + 0,0,2813,2815,5,155,0,0,2814,2811,1,0,0,0,2814,2812,1,0,0,0,2815, + 2816,1,0,0,0,2816,2819,3,684,342,0,2817,2818,5,28,0,0,2818,2820, + 3,686,343,0,2819,2817,1,0,0,0,2819,2820,1,0,0,0,2820,2881,1,0,0, + 0,2821,2822,7,38,0,0,2822,2881,5,93,0,0,2823,2824,7,39,0,0,2824, + 2881,5,658,0,0,2825,2827,5,51,0,0,2826,2828,5,29,0,0,2827,2826,1, + 0,0,0,2827,2828,1,0,0,0,2828,2829,1,0,0,0,2829,2881,3,658,329,0, + 2830,2831,5,51,0,0,2831,2832,7,18,0,0,2832,2881,3,638,319,0,2833, + 2834,5,51,0,0,2834,2835,5,131,0,0,2835,2881,5,92,0,0,2836,2837,5, + 51,0,0,2837,2838,5,67,0,0,2838,2839,5,92,0,0,2839,2881,3,702,351, + 0,2840,2881,5,66,0,0,2841,2843,5,104,0,0,2842,2844,5,857,0,0,2843, + 2842,1,0,0,0,2843,2844,1,0,0,0,2844,2845,1,0,0,0,2845,2881,7,4,0, + 0,2846,2848,5,492,0,0,2847,2849,5,29,0,0,2848,2847,1,0,0,0,2848, + 2849,1,0,0,0,2849,2850,1,0,0,0,2850,2851,3,658,329,0,2851,2855,3, + 88,44,0,2852,2856,5,402,0,0,2853,2854,5,306,0,0,2854,2856,3,658, + 329,0,2855,2852,1,0,0,0,2855,2853,1,0,0,0,2855,2856,1,0,0,0,2856, + 2881,1,0,0,0,2857,2858,5,125,0,0,2858,2859,5,20,0,0,2859,2881,3, + 656,328,0,2860,2861,5,141,0,0,2861,2862,5,29,0,0,2862,2863,3,658, + 329,0,2863,2864,5,176,0,0,2864,2865,3,654,327,0,2865,2881,1,0,0, + 0,2866,2867,5,141,0,0,2867,2868,7,18,0,0,2868,2869,3,638,319,0,2869, + 2870,5,176,0,0,2870,2871,3,634,317,0,2871,2881,1,0,0,0,2872,2874, + 5,141,0,0,2873,2875,7,40,0,0,2874,2873,1,0,0,0,2874,2875,1,0,0,0, + 2875,2876,1,0,0,0,2876,2881,3,644,322,0,2877,2878,7,41,0,0,2878, + 2881,5,681,0,0,2879,2881,3,142,71,0,2880,2616,1,0,0,0,2880,2626, + 1,0,0,0,2880,2637,1,0,0,0,2880,2655,1,0,0,0,2880,2670,1,0,0,0,2880, + 2685,1,0,0,0,2880,2704,1,0,0,0,2880,2728,1,0,0,0,2880,2743,1,0,0, + 0,2880,2747,1,0,0,0,2880,2750,1,0,0,0,2880,2759,1,0,0,0,2880,2764, + 1,0,0,0,2880,2778,1,0,0,0,2880,2783,1,0,0,0,2880,2796,1,0,0,0,2880, + 2809,1,0,0,0,2880,2821,1,0,0,0,2880,2823,1,0,0,0,2880,2825,1,0,0, + 0,2880,2830,1,0,0,0,2880,2833,1,0,0,0,2880,2836,1,0,0,0,2880,2840, + 1,0,0,0,2880,2841,1,0,0,0,2880,2846,1,0,0,0,2880,2857,1,0,0,0,2880, + 2860,1,0,0,0,2880,2866,1,0,0,0,2880,2872,1,0,0,0,2880,2877,1,0,0, + 0,2880,2879,1,0,0,0,2881,141,1,0,0,0,2882,2883,5,6,0,0,2883,2884, + 5,130,0,0,2884,2885,5,866,0,0,2885,2890,3,110,55,0,2886,2887,5,868, + 0,0,2887,2889,3,110,55,0,2888,2886,1,0,0,0,2889,2892,1,0,0,0,2890, + 2888,1,0,0,0,2890,2891,1,0,0,0,2891,2893,1,0,0,0,2892,2890,1,0,0, + 0,2893,2894,5,867,0,0,2894,2981,1,0,0,0,2895,2896,5,51,0,0,2896, + 2897,5,130,0,0,2897,2981,3,666,333,0,2898,2899,5,369,0,0,2899,2902, + 5,130,0,0,2900,2903,3,666,333,0,2901,2903,5,7,0,0,2902,2900,1,0, + 0,0,2902,2901,1,0,0,0,2903,2904,1,0,0,0,2904,2981,5,658,0,0,2905, + 2906,5,425,0,0,2906,2909,5,130,0,0,2907,2910,3,666,333,0,2908,2910, + 5,7,0,0,2909,2907,1,0,0,0,2909,2908,1,0,0,0,2910,2911,1,0,0,0,2911, + 2981,5,658,0,0,2912,2913,5,668,0,0,2913,2916,5,130,0,0,2914,2917, + 3,666,333,0,2915,2917,5,7,0,0,2916,2914,1,0,0,0,2916,2915,1,0,0, + 0,2917,2981,1,0,0,0,2918,2919,5,335,0,0,2919,2920,5,130,0,0,2920, + 2981,3,708,354,0,2921,2922,5,561,0,0,2922,2923,5,130,0,0,2923,2924, + 3,666,333,0,2924,2925,5,88,0,0,2925,2926,5,866,0,0,2926,2931,3,110, + 55,0,2927,2928,5,868,0,0,2928,2930,3,110,55,0,2929,2927,1,0,0,0, + 2930,2933,1,0,0,0,2931,2929,1,0,0,0,2931,2932,1,0,0,0,2932,2934, + 1,0,0,0,2933,2931,1,0,0,0,2934,2935,5,867,0,0,2935,2981,1,0,0,0, + 2936,2937,5,388,0,0,2937,2938,5,130,0,0,2938,2939,3,668,334,0,2939, + 2940,5,194,0,0,2940,2941,5,173,0,0,2941,2944,3,648,324,0,2942,2943, + 7,41,0,0,2943,2945,5,681,0,0,2944,2942,1,0,0,0,2944,2945,1,0,0,0, + 2945,2981,1,0,0,0,2946,2947,5,10,0,0,2947,2950,5,130,0,0,2948,2951, + 3,666,333,0,2949,2951,5,7,0,0,2950,2948,1,0,0,0,2950,2949,1,0,0, + 0,2951,2981,1,0,0,0,2952,2953,5,27,0,0,2953,2956,5,130,0,0,2954, + 2957,3,666,333,0,2955,2957,5,7,0,0,2956,2954,1,0,0,0,2956,2955,1, + 0,0,0,2957,2981,1,0,0,0,2958,2959,5,120,0,0,2959,2962,5,130,0,0, + 2960,2963,3,666,333,0,2961,2963,5,7,0,0,2962,2960,1,0,0,0,2962,2961, + 1,0,0,0,2963,2981,1,0,0,0,2964,2965,5,550,0,0,2965,2968,5,130,0, + 0,2966,2969,3,666,333,0,2967,2969,5,7,0,0,2968,2966,1,0,0,0,2968, + 2967,1,0,0,0,2969,2981,1,0,0,0,2970,2971,5,562,0,0,2971,2974,5,130, + 0,0,2972,2975,3,666,333,0,2973,2975,5,7,0,0,2974,2972,1,0,0,0,2974, + 2973,1,0,0,0,2975,2981,1,0,0,0,2976,2977,5,560,0,0,2977,2981,5,527, + 0,0,2978,2979,5,677,0,0,2979,2981,5,527,0,0,2980,2882,1,0,0,0,2980, + 2895,1,0,0,0,2980,2898,1,0,0,0,2980,2905,1,0,0,0,2980,2912,1,0,0, + 0,2980,2918,1,0,0,0,2980,2921,1,0,0,0,2980,2936,1,0,0,0,2980,2946, + 1,0,0,0,2980,2952,1,0,0,0,2980,2958,1,0,0,0,2980,2964,1,0,0,0,2980, + 2970,1,0,0,0,2980,2976,1,0,0,0,2980,2978,1,0,0,0,2981,143,1,0,0, + 0,2982,2983,5,51,0,0,2983,2985,7,0,0,0,2984,2986,3,754,377,0,2985, + 2984,1,0,0,0,2985,2986,1,0,0,0,2986,2987,1,0,0,0,2987,2988,3,624, + 312,0,2988,145,1,0,0,0,2989,2990,5,51,0,0,2990,2992,5,385,0,0,2991, + 2993,3,754,377,0,2992,2991,1,0,0,0,2992,2993,1,0,0,0,2993,2994,1, + 0,0,0,2994,2995,3,698,349,0,2995,147,1,0,0,0,2996,2997,5,51,0,0, + 2997,2999,5,82,0,0,2998,3000,7,1,0,0,2999,2998,1,0,0,0,2999,3000, + 1,0,0,0,3000,3001,1,0,0,0,3001,3002,3,638,319,0,3002,3003,5,119, + 0,0,3003,3016,3,648,324,0,3004,3006,5,308,0,0,3005,3007,5,857,0, + 0,3006,3005,1,0,0,0,3006,3007,1,0,0,0,3007,3008,1,0,0,0,3008,3015, + 7,3,0,0,3009,3011,5,104,0,0,3010,3012,5,857,0,0,3011,3010,1,0,0, + 0,3011,3012,1,0,0,0,3012,3013,1,0,0,0,3013,3015,7,4,0,0,3014,3004, + 1,0,0,0,3014,3009,1,0,0,0,3015,3018,1,0,0,0,3016,3014,1,0,0,0,3016, + 3017,1,0,0,0,3017,149,1,0,0,0,3018,3016,1,0,0,0,3019,3020,5,51,0, + 0,3020,3021,5,451,0,0,3021,3022,5,74,0,0,3022,3023,3,702,351,0,3023, + 3025,5,380,0,0,3024,3026,5,857,0,0,3025,3024,1,0,0,0,3025,3026,1, + 0,0,0,3026,3027,1,0,0,0,3027,3028,3,688,344,0,3028,151,1,0,0,0,3029, + 3030,5,51,0,0,3030,3032,5,132,0,0,3031,3033,3,754,377,0,3032,3031, + 1,0,0,0,3032,3033,1,0,0,0,3033,3034,1,0,0,0,3034,3035,3,698,349, + 0,3035,153,1,0,0,0,3036,3037,5,51,0,0,3037,3039,5,409,0,0,3038,3040, + 3,754,377,0,3039,3038,1,0,0,0,3039,3040,1,0,0,0,3040,3041,1,0,0, + 0,3041,3042,3,628,314,0,3042,155,1,0,0,0,3043,3044,5,51,0,0,3044, + 3046,5,592,0,0,3045,3047,3,754,377,0,3046,3045,1,0,0,0,3046,3047, + 1,0,0,0,3047,3048,1,0,0,0,3048,3049,3,702,351,0,3049,157,1,0,0,0, + 3050,3051,5,51,0,0,3051,3052,5,161,0,0,3052,3053,5,137,0,0,3053, + 3055,5,835,0,0,3054,3056,3,754,377,0,3055,3054,1,0,0,0,3055,3056, + 1,0,0,0,3056,3057,1,0,0,0,3057,3058,5,883,0,0,3058,159,1,0,0,0,3059, + 3061,5,51,0,0,3060,3062,5,660,0,0,3061,3060,1,0,0,0,3061,3062,1, + 0,0,0,3062,3063,1,0,0,0,3063,3065,5,173,0,0,3064,3066,3,754,377, + 0,3065,3064,1,0,0,0,3065,3066,1,0,0,0,3066,3067,1,0,0,0,3067,3069, + 3,646,323,0,3068,3070,7,42,0,0,3069,3068,1,0,0,0,3069,3070,1,0,0, + 0,3070,161,1,0,0,0,3071,3073,5,51,0,0,3072,3074,5,180,0,0,3073,3072, + 1,0,0,0,3073,3074,1,0,0,0,3074,3075,1,0,0,0,3075,3076,5,658,0,0, + 3076,3082,3,662,331,0,3077,3079,5,380,0,0,3078,3080,5,857,0,0,3079, + 3078,1,0,0,0,3079,3080,1,0,0,0,3080,3081,1,0,0,0,3081,3083,3,688, + 344,0,3082,3077,1,0,0,0,3082,3083,1,0,0,0,3083,163,1,0,0,0,3084, + 3085,5,51,0,0,3085,3087,5,178,0,0,3086,3088,3,754,377,0,3087,3086, + 1,0,0,0,3087,3088,1,0,0,0,3088,3089,1,0,0,0,3089,3090,3,698,349, + 0,3090,165,1,0,0,0,3091,3092,5,51,0,0,3092,3094,5,684,0,0,3093,3095, + 3,754,377,0,3094,3093,1,0,0,0,3094,3095,1,0,0,0,3095,3096,1,0,0, + 0,3096,3101,3,632,316,0,3097,3098,5,868,0,0,3098,3100,3,632,316, + 0,3099,3097,1,0,0,0,3100,3103,1,0,0,0,3101,3099,1,0,0,0,3101,3102, + 1,0,0,0,3102,3105,1,0,0,0,3103,3101,1,0,0,0,3104,3106,7,42,0,0,3105, + 3104,1,0,0,0,3105,3106,1,0,0,0,3106,167,1,0,0,0,3107,3108,5,51,0, + 0,3108,3110,5,582,0,0,3109,3111,3,754,377,0,3110,3109,1,0,0,0,3110, + 3111,1,0,0,0,3111,3112,1,0,0,0,3112,3113,3,650,325,0,3113,169,1, + 0,0,0,3114,3115,5,155,0,0,3115,3116,5,42,0,0,3116,3120,5,582,0,0, + 3117,3121,5,505,0,0,3118,3121,5,7,0,0,3119,3121,3,650,325,0,3120, + 3117,1,0,0,0,3120,3118,1,0,0,0,3120,3119,1,0,0,0,3121,3122,1,0,0, + 0,3122,3123,5,176,0,0,3123,3128,3,652,326,0,3124,3125,5,868,0,0, + 3125,3127,3,652,326,0,3126,3124,1,0,0,0,3127,3130,1,0,0,0,3128,3126, + 1,0,0,0,3128,3129,1,0,0,0,3129,3135,1,0,0,0,3130,3128,1,0,0,0,3131, + 3132,5,155,0,0,3132,3133,5,582,0,0,3133,3135,3,462,231,0,3134,3114, + 1,0,0,0,3134,3131,1,0,0,0,3135,171,1,0,0,0,3136,3137,5,141,0,0,3137, + 3138,5,173,0,0,3138,3143,3,174,87,0,3139,3140,5,868,0,0,3140,3142, + 3,174,87,0,3141,3139,1,0,0,0,3142,3145,1,0,0,0,3143,3141,1,0,0,0, + 3143,3144,1,0,0,0,3144,173,1,0,0,0,3145,3143,1,0,0,0,3146,3147,3, + 648,324,0,3147,3148,5,176,0,0,3148,3149,3,644,322,0,3149,175,1,0, + 0,0,3150,3152,5,668,0,0,3151,3153,5,173,0,0,3152,3151,1,0,0,0,3152, + 3153,1,0,0,0,3153,3154,1,0,0,0,3154,3155,3,648,324,0,3155,177,1, + 0,0,0,3156,3157,5,21,0,0,3157,3164,3,698,349,0,3158,3161,5,866,0, + 0,3159,3162,3,744,372,0,3160,3162,3,736,368,0,3161,3159,1,0,0,0, + 3161,3160,1,0,0,0,3161,3162,1,0,0,0,3162,3163,1,0,0,0,3163,3165, + 5,867,0,0,3164,3158,1,0,0,0,3164,3165,1,0,0,0,3165,179,1,0,0,0,3166, + 3169,3,234,117,0,3167,3169,3,236,118,0,3168,3166,1,0,0,0,3168,3167, + 1,0,0,0,3169,181,1,0,0,0,3170,3171,5,371,0,0,3171,3172,3,736,368, + 0,3172,183,1,0,0,0,3173,3178,3,238,119,0,3174,3178,3,240,120,0,3175, + 3178,3,242,121,0,3176,3178,3,244,122,0,3177,3173,1,0,0,0,3177,3174, + 1,0,0,0,3177,3175,1,0,0,0,3177,3176,1,0,0,0,3178,185,1,0,0,0,3179, + 3181,5,86,0,0,3180,3182,7,43,0,0,3181,3180,1,0,0,0,3181,3182,1,0, + 0,0,3182,3184,1,0,0,0,3183,3185,5,79,0,0,3184,3183,1,0,0,0,3184, + 3185,1,0,0,0,3185,3187,1,0,0,0,3186,3188,5,88,0,0,3187,3186,1,0, + 0,0,3187,3188,1,0,0,0,3188,3189,1,0,0,0,3189,3196,3,648,324,0,3190, + 3191,5,130,0,0,3191,3193,5,866,0,0,3192,3194,3,666,333,0,3193,3192, + 1,0,0,0,3193,3194,1,0,0,0,3194,3195,1,0,0,0,3195,3197,5,867,0,0, + 3196,3190,1,0,0,0,3196,3197,1,0,0,0,3197,3209,1,0,0,0,3198,3200, + 3,262,131,0,3199,3198,1,0,0,0,3199,3200,1,0,0,0,3200,3203,1,0,0, + 0,3201,3204,3,738,369,0,3202,3204,3,190,95,0,3203,3201,1,0,0,0,3203, + 3202,1,0,0,0,3203,3204,1,0,0,0,3204,3206,1,0,0,0,3205,3207,3,188, + 94,0,3206,3205,1,0,0,0,3206,3207,1,0,0,0,3207,3210,1,0,0,0,3208, + 3210,3,226,113,0,3209,3199,1,0,0,0,3209,3208,1,0,0,0,3210,3212,1, + 0,0,0,3211,3213,3,188,94,0,3212,3211,1,0,0,0,3212,3213,1,0,0,0,3213, + 3226,1,0,0,0,3214,3215,5,119,0,0,3215,3216,5,373,0,0,3216,3217,5, + 92,0,0,3217,3218,5,185,0,0,3218,3223,3,228,114,0,3219,3220,5,868, + 0,0,3220,3222,3,228,114,0,3221,3219,1,0,0,0,3222,3225,1,0,0,0,3223, + 3221,1,0,0,0,3223,3224,1,0,0,0,3224,3227,1,0,0,0,3225,3223,1,0,0, + 0,3226,3214,1,0,0,0,3226,3227,1,0,0,0,3227,187,1,0,0,0,3228,3229, + 5,13,0,0,3229,3231,3,702,351,0,3230,3232,3,262,131,0,3231,3230,1, + 0,0,0,3231,3232,1,0,0,0,3232,189,1,0,0,0,3233,3238,3,204,102,0,3234, + 3235,5,173,0,0,3235,3238,3,648,324,0,3236,3238,3,224,112,0,3237, + 3233,1,0,0,0,3237,3234,1,0,0,0,3237,3236,1,0,0,0,3238,191,1,0,0, + 0,3239,3245,3,194,97,0,3240,3242,5,828,0,0,3241,3243,7,44,0,0,3242, + 3241,1,0,0,0,3242,3243,1,0,0,0,3243,3244,1,0,0,0,3244,3246,3,194, + 97,0,3245,3240,1,0,0,0,3246,3247,1,0,0,0,3247,3245,1,0,0,0,3247, + 3248,1,0,0,0,3248,193,1,0,0,0,3249,3251,5,866,0,0,3250,3249,1,0, + 0,0,3250,3251,1,0,0,0,3251,3252,1,0,0,0,3252,3254,3,274,137,0,3253, + 3255,5,867,0,0,3254,3253,1,0,0,0,3254,3255,1,0,0,0,3255,195,1,0, + 0,0,3256,3257,5,103,0,0,3257,3259,5,360,0,0,3258,3260,7,45,0,0,3259, + 3258,1,0,0,0,3259,3260,1,0,0,0,3260,3262,1,0,0,0,3261,3263,5,450, + 0,0,3262,3261,1,0,0,0,3262,3263,1,0,0,0,3263,3264,1,0,0,0,3264,3265, + 5,83,0,0,3265,3267,5,882,0,0,3266,3268,7,6,0,0,3267,3266,1,0,0,0, + 3267,3268,1,0,0,0,3268,3269,1,0,0,0,3269,3270,5,88,0,0,3270,3271, + 5,173,0,0,3271,3277,3,648,324,0,3272,3273,5,130,0,0,3273,3274,5, + 866,0,0,3274,3275,3,666,333,0,3275,3276,5,867,0,0,3276,3278,1,0, + 0,0,3277,3272,1,0,0,0,3277,3278,1,0,0,0,3278,3282,1,0,0,0,3279,3280, + 5,26,0,0,3280,3281,5,155,0,0,3281,3283,3,684,342,0,3282,3279,1,0, + 0,0,3282,3283,1,0,0,0,3283,3290,1,0,0,0,3284,3286,7,46,0,0,3285, + 3287,3,298,149,0,3286,3285,1,0,0,0,3287,3288,1,0,0,0,3288,3286,1, + 0,0,0,3288,3289,1,0,0,0,3289,3291,1,0,0,0,3290,3284,1,0,0,0,3290, + 3291,1,0,0,0,3291,3298,1,0,0,0,3292,3294,5,102,0,0,3293,3295,3,300, + 150,0,3294,3293,1,0,0,0,3295,3296,1,0,0,0,3296,3294,1,0,0,0,3296, + 3297,1,0,0,0,3297,3299,1,0,0,0,3298,3292,1,0,0,0,3298,3299,1,0,0, + 0,3299,3304,1,0,0,0,3300,3301,5,79,0,0,3301,3302,3,708,354,0,3302, + 3303,7,47,0,0,3303,3305,1,0,0,0,3304,3300,1,0,0,0,3304,3305,1,0, + 0,0,3305,3317,1,0,0,0,3306,3307,5,866,0,0,3307,3312,3,230,115,0, + 3308,3309,5,868,0,0,3309,3311,3,230,115,0,3310,3308,1,0,0,0,3311, + 3314,1,0,0,0,3312,3310,1,0,0,0,3312,3313,1,0,0,0,3313,3315,1,0,0, + 0,3314,3312,1,0,0,0,3315,3316,5,867,0,0,3316,3318,1,0,0,0,3317,3306, + 1,0,0,0,3317,3318,1,0,0,0,3318,3328,1,0,0,0,3319,3320,5,155,0,0, + 3320,3325,3,228,114,0,3321,3322,5,868,0,0,3322,3324,3,228,114,0, + 3323,3321,1,0,0,0,3324,3327,1,0,0,0,3325,3323,1,0,0,0,3325,3326, + 1,0,0,0,3326,3329,1,0,0,0,3327,3325,1,0,0,0,3328,3319,1,0,0,0,3328, + 3329,1,0,0,0,3329,197,1,0,0,0,3330,3331,5,103,0,0,3331,3333,5,695, + 0,0,3332,3334,7,45,0,0,3333,3332,1,0,0,0,3333,3334,1,0,0,0,3334, + 3336,1,0,0,0,3335,3337,5,450,0,0,3336,3335,1,0,0,0,3336,3337,1,0, + 0,0,3337,3338,1,0,0,0,3338,3339,5,83,0,0,3339,3341,5,882,0,0,3340, + 3342,7,6,0,0,3341,3340,1,0,0,0,3341,3342,1,0,0,0,3342,3343,1,0,0, + 0,3343,3344,5,88,0,0,3344,3345,5,173,0,0,3345,3349,3,648,324,0,3346, + 3347,5,26,0,0,3347,3348,5,155,0,0,3348,3350,3,684,342,0,3349,3346, + 1,0,0,0,3349,3350,1,0,0,0,3350,3361,1,0,0,0,3351,3352,5,587,0,0, + 3352,3353,5,423,0,0,3353,3355,5,20,0,0,3354,3356,5,859,0,0,3355, + 3354,1,0,0,0,3355,3356,1,0,0,0,3356,3357,1,0,0,0,3357,3359,5,882, + 0,0,3358,3360,5,858,0,0,3359,3358,1,0,0,0,3359,3360,1,0,0,0,3360, + 3362,1,0,0,0,3361,3351,1,0,0,0,3361,3362,1,0,0,0,3362,3367,1,0,0, + 0,3363,3364,5,79,0,0,3364,3365,3,708,354,0,3365,3366,7,47,0,0,3366, + 3368,1,0,0,0,3367,3363,1,0,0,0,3367,3368,1,0,0,0,3368,3380,1,0,0, + 0,3369,3370,5,866,0,0,3370,3375,3,230,115,0,3371,3372,5,868,0,0, + 3372,3374,3,230,115,0,3373,3371,1,0,0,0,3374,3377,1,0,0,0,3375,3373, + 1,0,0,0,3375,3376,1,0,0,0,3376,3378,1,0,0,0,3377,3375,1,0,0,0,3378, + 3379,5,867,0,0,3379,3381,1,0,0,0,3380,3369,1,0,0,0,3380,3381,1,0, + 0,0,3381,3391,1,0,0,0,3382,3383,5,155,0,0,3383,3388,3,228,114,0, + 3384,3385,5,868,0,0,3385,3387,3,228,114,0,3386,3384,1,0,0,0,3387, + 3390,1,0,0,0,3388,3386,1,0,0,0,3388,3389,1,0,0,0,3389,3392,1,0,0, + 0,3390,3388,1,0,0,0,3391,3382,1,0,0,0,3391,3392,1,0,0,0,3392,199, + 1,0,0,0,3393,3394,5,866,0,0,3394,3396,3,218,109,0,3395,3397,3,252, + 126,0,3396,3395,1,0,0,0,3396,3397,1,0,0,0,3397,3399,1,0,0,0,3398, + 3400,3,312,156,0,3399,3398,1,0,0,0,3399,3400,1,0,0,0,3400,3401,1, + 0,0,0,3401,3403,5,867,0,0,3402,3404,3,252,126,0,3403,3402,1,0,0, + 0,3403,3404,1,0,0,0,3404,3406,1,0,0,0,3405,3407,3,312,156,0,3406, + 3405,1,0,0,0,3406,3407,1,0,0,0,3407,3409,1,0,0,0,3408,3410,3,296, + 148,0,3409,3408,1,0,0,0,3409,3410,1,0,0,0,3410,201,1,0,0,0,3411, + 3413,5,143,0,0,3412,3414,7,48,0,0,3413,3412,1,0,0,0,3413,3414,1, + 0,0,0,3414,3416,1,0,0,0,3415,3417,5,88,0,0,3416,3415,1,0,0,0,3416, + 3417,1,0,0,0,3417,3418,1,0,0,0,3418,3424,3,648,324,0,3419,3420,5, + 130,0,0,3420,3421,5,866,0,0,3421,3422,3,666,333,0,3422,3423,5,867, + 0,0,3423,3425,1,0,0,0,3424,3419,1,0,0,0,3424,3425,1,0,0,0,3425,3434, + 1,0,0,0,3426,3427,5,866,0,0,3427,3428,3,656,328,0,3428,3429,5,867, + 0,0,3429,3431,1,0,0,0,3430,3426,1,0,0,0,3430,3431,1,0,0,0,3431,3432, + 1,0,0,0,3432,3435,3,222,111,0,3433,3435,3,226,113,0,3434,3430,1, + 0,0,0,3434,3433,1,0,0,0,3435,203,1,0,0,0,3436,3440,3,274,137,0,3437, + 3439,3,276,138,0,3438,3437,1,0,0,0,3439,3442,1,0,0,0,3440,3438,1, + 0,0,0,3440,3441,1,0,0,0,3441,3451,1,0,0,0,3442,3440,1,0,0,0,3443, + 3445,5,181,0,0,3444,3446,7,44,0,0,3445,3444,1,0,0,0,3445,3446,1, + 0,0,0,3446,3449,1,0,0,0,3447,3450,3,274,137,0,3448,3450,3,272,136, + 0,3449,3447,1,0,0,0,3449,3448,1,0,0,0,3450,3452,1,0,0,0,3451,3443, + 1,0,0,0,3451,3452,1,0,0,0,3452,3457,1,0,0,0,3453,3454,5,868,0,0, + 3454,3456,3,278,139,0,3455,3453,1,0,0,0,3456,3459,1,0,0,0,3457,3455, + 1,0,0,0,3457,3458,1,0,0,0,3458,3461,1,0,0,0,3459,3457,1,0,0,0,3460, + 3462,3,252,126,0,3461,3460,1,0,0,0,3461,3462,1,0,0,0,3462,3464,1, + 0,0,0,3463,3465,3,312,156,0,3464,3463,1,0,0,0,3464,3465,1,0,0,0, + 3465,3467,1,0,0,0,3466,3468,3,232,116,0,3467,3466,1,0,0,0,3467,3468, + 1,0,0,0,3468,3470,1,0,0,0,3469,3471,3,296,148,0,3470,3469,1,0,0, + 0,3470,3471,1,0,0,0,3471,3496,1,0,0,0,3472,3476,3,272,136,0,3473, + 3475,3,276,138,0,3474,3473,1,0,0,0,3475,3478,1,0,0,0,3476,3474,1, + 0,0,0,3476,3477,1,0,0,0,3477,3484,1,0,0,0,3478,3476,1,0,0,0,3479, + 3481,5,181,0,0,3480,3482,7,44,0,0,3481,3480,1,0,0,0,3481,3482,1, + 0,0,0,3482,3483,1,0,0,0,3483,3485,3,272,136,0,3484,3479,1,0,0,0, + 3484,3485,1,0,0,0,3485,3487,1,0,0,0,3486,3488,3,252,126,0,3487,3486, + 1,0,0,0,3487,3488,1,0,0,0,3488,3490,1,0,0,0,3489,3491,3,312,156, + 0,3490,3489,1,0,0,0,3490,3491,1,0,0,0,3491,3493,1,0,0,0,3492,3494, + 3,232,116,0,3493,3492,1,0,0,0,3493,3494,1,0,0,0,3494,3496,1,0,0, + 0,3495,3436,1,0,0,0,3495,3472,1,0,0,0,3496,205,1,0,0,0,3497,3499, + 3,46,23,0,3498,3497,1,0,0,0,3498,3499,1,0,0,0,3499,3500,1,0,0,0, + 3500,3502,3,208,104,0,3501,3503,3,252,126,0,3502,3501,1,0,0,0,3502, + 3503,1,0,0,0,3503,3505,1,0,0,0,3504,3506,3,312,156,0,3505,3504,1, + 0,0,0,3505,3506,1,0,0,0,3506,3508,1,0,0,0,3507,3509,3,296,148,0, + 3508,3507,1,0,0,0,3508,3509,1,0,0,0,3509,207,1,0,0,0,3510,3511,6, + 104,-1,0,3511,3512,3,210,105,0,3512,3527,1,0,0,0,3513,3514,10,2, + 0,0,3514,3516,5,181,0,0,3515,3517,7,44,0,0,3516,3515,1,0,0,0,3516, + 3517,1,0,0,0,3517,3518,1,0,0,0,3518,3526,3,210,105,0,3519,3520,10, + 1,0,0,3520,3522,5,59,0,0,3521,3523,7,44,0,0,3522,3521,1,0,0,0,3522, + 3523,1,0,0,0,3523,3524,1,0,0,0,3524,3526,3,210,105,0,3525,3513,1, + 0,0,0,3525,3519,1,0,0,0,3526,3529,1,0,0,0,3527,3525,1,0,0,0,3527, + 3528,1,0,0,0,3528,209,1,0,0,0,3529,3527,1,0,0,0,3530,3531,6,105, + -1,0,3531,3532,3,212,106,0,3532,3541,1,0,0,0,3533,3534,10,1,0,0, + 3534,3536,5,828,0,0,3535,3537,7,44,0,0,3536,3535,1,0,0,0,3536,3537, + 1,0,0,0,3537,3538,1,0,0,0,3538,3540,3,212,106,0,3539,3533,1,0,0, + 0,3540,3543,1,0,0,0,3541,3539,1,0,0,0,3541,3542,1,0,0,0,3542,211, + 1,0,0,0,3543,3541,1,0,0,0,3544,3559,3,220,110,0,3545,3546,5,866, + 0,0,3546,3548,3,208,104,0,3547,3549,3,252,126,0,3548,3547,1,0,0, + 0,3548,3549,1,0,0,0,3549,3551,1,0,0,0,3550,3552,3,312,156,0,3551, + 3550,1,0,0,0,3551,3552,1,0,0,0,3552,3554,1,0,0,0,3553,3555,3,296, + 148,0,3554,3553,1,0,0,0,3554,3555,1,0,0,0,3555,3556,1,0,0,0,3556, + 3557,5,867,0,0,3557,3559,1,0,0,0,3558,3544,1,0,0,0,3558,3545,1,0, + 0,0,3559,213,1,0,0,0,3560,3563,3,248,124,0,3561,3563,3,250,125,0, + 3562,3560,1,0,0,0,3562,3561,1,0,0,0,3563,215,1,0,0,0,3564,3568,3, + 224,112,0,3565,3566,5,125,0,0,3566,3567,5,20,0,0,3567,3569,3,670, + 335,0,3568,3565,1,0,0,0,3568,3569,1,0,0,0,3569,3572,1,0,0,0,3570, + 3571,5,100,0,0,3571,3573,3,314,157,0,3572,3570,1,0,0,0,3572,3573, + 1,0,0,0,3573,217,1,0,0,0,3574,3579,3,220,110,0,3575,3576,7,49,0, + 0,3576,3578,3,220,110,0,3577,3575,1,0,0,0,3578,3581,1,0,0,0,3579, + 3577,1,0,0,0,3579,3580,1,0,0,0,3580,3583,1,0,0,0,3581,3579,1,0,0, + 0,3582,3584,3,252,126,0,3583,3582,1,0,0,0,3583,3584,1,0,0,0,3584, + 3586,1,0,0,0,3585,3587,3,312,156,0,3586,3585,1,0,0,0,3586,3587,1, + 0,0,0,3587,3589,1,0,0,0,3588,3590,3,296,148,0,3589,3588,1,0,0,0, + 3589,3590,1,0,0,0,3590,219,1,0,0,0,3591,3595,3,204,102,0,3592,3595, + 3,614,307,0,3593,3595,3,216,108,0,3594,3591,1,0,0,0,3594,3592,1, + 0,0,0,3594,3593,1,0,0,0,3595,221,1,0,0,0,3596,3602,3,204,102,0,3597, + 3598,5,173,0,0,3598,3602,3,648,324,0,3599,3602,3,738,369,0,3600, + 3602,3,224,112,0,3601,3596,1,0,0,0,3601,3597,1,0,0,0,3601,3599,1, + 0,0,0,3601,3600,1,0,0,0,3602,223,1,0,0,0,3603,3604,5,189,0,0,3604, + 3605,5,586,0,0,3605,3611,3,740,370,0,3606,3607,5,868,0,0,3607,3608, + 5,586,0,0,3608,3610,3,740,370,0,3609,3606,1,0,0,0,3610,3613,1,0, + 0,0,3611,3609,1,0,0,0,3611,3612,1,0,0,0,3612,225,1,0,0,0,3613,3611, + 1,0,0,0,3614,3615,5,155,0,0,3615,3620,3,228,114,0,3616,3617,5,868, + 0,0,3617,3619,3,228,114,0,3618,3616,1,0,0,0,3619,3622,1,0,0,0,3620, + 3618,1,0,0,0,3620,3621,1,0,0,0,3621,227,1,0,0,0,3622,3620,1,0,0, + 0,3623,3624,3,658,329,0,3624,3625,5,857,0,0,3625,3626,3,742,371, + 0,3626,229,1,0,0,0,3627,3630,3,702,351,0,3628,3630,5,892,0,0,3629, + 3627,1,0,0,0,3629,3628,1,0,0,0,3630,231,1,0,0,0,3631,3632,5,65,0, + 0,3632,3642,7,50,0,0,3633,3634,5,510,0,0,3634,3639,3,648,324,0,3635, + 3636,5,868,0,0,3636,3638,3,648,324,0,3637,3635,1,0,0,0,3638,3641, + 1,0,0,0,3639,3637,1,0,0,0,3639,3640,1,0,0,0,3640,3643,1,0,0,0,3641, + 3639,1,0,0,0,3642,3633,1,0,0,0,3642,3643,1,0,0,0,3643,3646,1,0,0, + 0,3644,3645,7,51,0,0,3645,3647,5,105,0,0,3646,3644,1,0,0,0,3646, + 3647,1,0,0,0,3647,3653,1,0,0,0,3648,3649,5,104,0,0,3649,3650,5,80, + 0,0,3650,3651,5,594,0,0,3651,3653,5,491,0,0,3652,3631,1,0,0,0,3652, + 3648,1,0,0,0,3653,233,1,0,0,0,3654,3656,5,44,0,0,3655,3657,5,107, + 0,0,3656,3655,1,0,0,0,3656,3657,1,0,0,0,3657,3659,1,0,0,0,3658,3660, + 5,549,0,0,3659,3658,1,0,0,0,3659,3660,1,0,0,0,3660,3662,1,0,0,0, + 3661,3663,5,79,0,0,3662,3661,1,0,0,0,3662,3663,1,0,0,0,3663,3664, + 1,0,0,0,3664,3665,5,68,0,0,3665,3670,3,648,324,0,3666,3668,5,13, + 0,0,3667,3666,1,0,0,0,3667,3668,1,0,0,0,3668,3669,1,0,0,0,3669,3671, + 3,702,351,0,3670,3667,1,0,0,0,3670,3671,1,0,0,0,3671,3677,1,0,0, + 0,3672,3673,5,130,0,0,3673,3674,5,866,0,0,3674,3675,3,666,333,0, + 3675,3676,5,867,0,0,3676,3678,1,0,0,0,3677,3672,1,0,0,0,3677,3678, + 1,0,0,0,3678,3681,1,0,0,0,3679,3680,5,192,0,0,3680,3682,3,800,400, + 0,3681,3679,1,0,0,0,3681,3682,1,0,0,0,3682,3684,1,0,0,0,3683,3685, + 3,252,126,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685,3688,1,0,0, + 0,3686,3687,5,100,0,0,3687,3689,3,314,157,0,3688,3686,1,0,0,0,3688, + 3689,1,0,0,0,3689,235,1,0,0,0,3690,3692,5,44,0,0,3691,3693,5,107, + 0,0,3692,3691,1,0,0,0,3692,3693,1,0,0,0,3693,3695,1,0,0,0,3694,3696, + 5,549,0,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696,3698,1,0,0,0, + 3697,3699,5,79,0,0,3698,3697,1,0,0,0,3698,3699,1,0,0,0,3699,3739, + 1,0,0,0,3700,3703,3,648,324,0,3701,3702,5,865,0,0,3702,3704,5,850, + 0,0,3703,3701,1,0,0,0,3703,3704,1,0,0,0,3704,3713,1,0,0,0,3705,3706, + 5,868,0,0,3706,3709,3,648,324,0,3707,3708,5,865,0,0,3708,3710,5, + 850,0,0,3709,3707,1,0,0,0,3709,3710,1,0,0,0,3710,3712,1,0,0,0,3711, + 3705,1,0,0,0,3712,3715,1,0,0,0,3713,3711,1,0,0,0,3713,3714,1,0,0, + 0,3714,3716,1,0,0,0,3715,3713,1,0,0,0,3716,3717,5,68,0,0,3717,3718, + 3,256,128,0,3718,3740,1,0,0,0,3719,3720,5,68,0,0,3720,3723,3,648, + 324,0,3721,3722,5,865,0,0,3722,3724,5,850,0,0,3723,3721,1,0,0,0, + 3723,3724,1,0,0,0,3724,3733,1,0,0,0,3725,3726,5,868,0,0,3726,3729, + 3,648,324,0,3727,3728,5,865,0,0,3728,3730,5,850,0,0,3729,3727,1, + 0,0,0,3729,3730,1,0,0,0,3730,3732,1,0,0,0,3731,3725,1,0,0,0,3732, + 3735,1,0,0,0,3733,3731,1,0,0,0,3733,3734,1,0,0,0,3734,3736,1,0,0, + 0,3735,3733,1,0,0,0,3736,3737,5,188,0,0,3737,3738,3,256,128,0,3738, + 3740,1,0,0,0,3739,3700,1,0,0,0,3739,3719,1,0,0,0,3740,3743,1,0,0, + 0,3741,3742,5,192,0,0,3742,3744,3,800,400,0,3743,3741,1,0,0,0,3743, + 3744,1,0,0,0,3744,237,1,0,0,0,3745,3746,5,417,0,0,3746,3747,3,648, + 324,0,3747,3752,5,516,0,0,3748,3750,5,13,0,0,3749,3748,1,0,0,0,3749, + 3750,1,0,0,0,3750,3751,1,0,0,0,3751,3753,3,702,351,0,3752,3749,1, + 0,0,0,3752,3753,1,0,0,0,3753,239,1,0,0,0,3754,3755,5,417,0,0,3755, + 3756,3,648,324,0,3756,3757,5,135,0,0,3757,3764,3,638,319,0,3758, + 3759,3,810,405,0,3759,3760,5,866,0,0,3760,3761,3,744,372,0,3761, + 3762,5,867,0,0,3762,3765,1,0,0,0,3763,3765,7,52,0,0,3764,3758,1, + 0,0,0,3764,3763,1,0,0,0,3765,3768,1,0,0,0,3766,3767,5,192,0,0,3767, + 3769,3,800,400,0,3768,3766,1,0,0,0,3768,3769,1,0,0,0,3769,3772,1, + 0,0,0,3770,3771,5,100,0,0,3771,3773,3,314,157,0,3772,3770,1,0,0, + 0,3772,3773,1,0,0,0,3773,241,1,0,0,0,3774,3775,5,417,0,0,3775,3776, + 3,648,324,0,3776,3777,5,135,0,0,3777,3780,7,53,0,0,3778,3779,5,192, + 0,0,3779,3781,3,800,400,0,3780,3778,1,0,0,0,3780,3781,1,0,0,0,3781, + 3784,1,0,0,0,3782,3783,5,100,0,0,3783,3785,3,314,157,0,3784,3782, + 1,0,0,0,3784,3785,1,0,0,0,3785,243,1,0,0,0,3786,3787,5,417,0,0,3787, + 3788,3,648,324,0,3788,3789,5,334,0,0,3789,245,1,0,0,0,3790,3791, + 5,425,0,0,3791,3792,5,173,0,0,3792,3793,5,68,0,0,3793,3798,3,712, + 356,0,3794,3795,5,868,0,0,3795,3797,3,712,356,0,3796,3794,1,0,0, + 0,3797,3800,1,0,0,0,3798,3796,1,0,0,0,3798,3799,1,0,0,0,3799,247, + 1,0,0,0,3800,3798,1,0,0,0,3801,3803,5,185,0,0,3802,3804,5,107,0, + 0,3803,3802,1,0,0,0,3803,3804,1,0,0,0,3804,3806,1,0,0,0,3805,3807, + 5,79,0,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807,3808,1,0,0,0,3808, + 3813,3,648,324,0,3809,3811,5,13,0,0,3810,3809,1,0,0,0,3810,3811, + 1,0,0,0,3811,3812,1,0,0,0,3812,3814,3,702,351,0,3813,3810,1,0,0, + 0,3813,3814,1,0,0,0,3814,3815,1,0,0,0,3815,3816,5,155,0,0,3816,3821, + 3,228,114,0,3817,3818,5,868,0,0,3818,3820,3,228,114,0,3819,3817, + 1,0,0,0,3820,3823,1,0,0,0,3821,3819,1,0,0,0,3821,3822,1,0,0,0,3822, + 3826,1,0,0,0,3823,3821,1,0,0,0,3824,3825,5,192,0,0,3825,3827,3,800, + 400,0,3826,3824,1,0,0,0,3826,3827,1,0,0,0,3827,3829,1,0,0,0,3828, + 3830,3,252,126,0,3829,3828,1,0,0,0,3829,3830,1,0,0,0,3830,3832,1, + 0,0,0,3831,3833,3,312,156,0,3832,3831,1,0,0,0,3832,3833,1,0,0,0, + 3833,249,1,0,0,0,3834,3836,5,185,0,0,3835,3837,5,107,0,0,3836,3835, + 1,0,0,0,3836,3837,1,0,0,0,3837,3839,1,0,0,0,3838,3840,5,79,0,0,3839, + 3838,1,0,0,0,3839,3840,1,0,0,0,3840,3841,1,0,0,0,3841,3842,3,256, + 128,0,3842,3843,5,155,0,0,3843,3848,3,228,114,0,3844,3845,5,868, + 0,0,3845,3847,3,228,114,0,3846,3844,1,0,0,0,3847,3850,1,0,0,0,3848, + 3846,1,0,0,0,3848,3849,1,0,0,0,3849,3853,1,0,0,0,3850,3848,1,0,0, + 0,3851,3852,5,192,0,0,3852,3854,3,800,400,0,3853,3851,1,0,0,0,3853, + 3854,1,0,0,0,3854,251,1,0,0,0,3855,3856,5,125,0,0,3856,3857,5,20, + 0,0,3857,3862,3,254,127,0,3858,3859,5,868,0,0,3859,3861,3,254,127, + 0,3860,3858,1,0,0,0,3861,3864,1,0,0,0,3862,3860,1,0,0,0,3862,3863, + 1,0,0,0,3863,253,1,0,0,0,3864,3862,1,0,0,0,3865,3867,3,800,400,0, + 3866,3868,7,54,0,0,3867,3866,1,0,0,0,3867,3868,1,0,0,0,3868,255, + 1,0,0,0,3869,3874,3,258,129,0,3870,3871,5,868,0,0,3871,3873,3,258, + 129,0,3872,3870,1,0,0,0,3873,3876,1,0,0,0,3874,3872,1,0,0,0,3874, + 3875,1,0,0,0,3875,257,1,0,0,0,3876,3874,1,0,0,0,3877,3881,3,260, + 130,0,3878,3880,3,268,134,0,3879,3878,1,0,0,0,3880,3883,1,0,0,0, + 3881,3879,1,0,0,0,3881,3882,1,0,0,0,3882,3896,1,0,0,0,3883,3881, + 1,0,0,0,3884,3885,5,866,0,0,3885,3889,3,260,130,0,3886,3888,3,268, + 134,0,3887,3886,1,0,0,0,3888,3891,1,0,0,0,3889,3887,1,0,0,0,3889, + 3890,1,0,0,0,3890,3892,1,0,0,0,3891,3889,1,0,0,0,3892,3893,5,867, + 0,0,3893,3896,1,0,0,0,3894,3896,3,280,140,0,3895,3877,1,0,0,0,3895, + 3884,1,0,0,0,3895,3894,1,0,0,0,3896,259,1,0,0,0,3897,3903,3,648, + 324,0,3898,3899,5,130,0,0,3899,3900,5,866,0,0,3900,3901,3,666,333, + 0,3901,3902,5,867,0,0,3902,3904,1,0,0,0,3903,3898,1,0,0,0,3903,3904, + 1,0,0,0,3904,3909,1,0,0,0,3905,3907,5,13,0,0,3906,3905,1,0,0,0,3906, + 3907,1,0,0,0,3907,3908,1,0,0,0,3908,3910,3,702,351,0,3909,3906,1, + 0,0,0,3909,3910,1,0,0,0,3910,3919,1,0,0,0,3911,3916,3,264,132,0, + 3912,3913,5,868,0,0,3913,3915,3,264,132,0,3914,3912,1,0,0,0,3915, + 3918,1,0,0,0,3916,3914,1,0,0,0,3916,3917,1,0,0,0,3917,3920,1,0,0, + 0,3918,3916,1,0,0,0,3919,3911,1,0,0,0,3919,3920,1,0,0,0,3920,3943, + 1,0,0,0,3921,3923,5,95,0,0,3922,3921,1,0,0,0,3922,3923,1,0,0,0,3923, + 3929,1,0,0,0,3924,3930,3,204,102,0,3925,3926,5,866,0,0,3926,3927, + 3,204,102,0,3927,3928,5,867,0,0,3928,3930,1,0,0,0,3929,3924,1,0, + 0,0,3929,3925,1,0,0,0,3930,3932,1,0,0,0,3931,3933,5,13,0,0,3932, + 3931,1,0,0,0,3932,3933,1,0,0,0,3933,3934,1,0,0,0,3934,3936,3,702, + 351,0,3935,3937,3,262,131,0,3936,3935,1,0,0,0,3936,3937,1,0,0,0, + 3937,3943,1,0,0,0,3938,3939,5,866,0,0,3939,3940,3,256,128,0,3940, + 3941,5,867,0,0,3941,3943,1,0,0,0,3942,3897,1,0,0,0,3942,3922,1,0, + 0,0,3942,3938,1,0,0,0,3943,261,1,0,0,0,3944,3945,5,866,0,0,3945, + 3946,3,656,328,0,3946,3947,5,867,0,0,3947,263,1,0,0,0,3948,3949, + 7,55,0,0,3949,3952,7,18,0,0,3950,3951,5,65,0,0,3951,3953,3,266,133, + 0,3952,3950,1,0,0,0,3952,3953,1,0,0,0,3953,3954,1,0,0,0,3954,3956, + 5,866,0,0,3955,3957,3,636,318,0,3956,3955,1,0,0,0,3956,3957,1,0, + 0,0,3957,3958,1,0,0,0,3958,3959,5,867,0,0,3959,265,1,0,0,0,3960, + 3966,5,91,0,0,3961,3962,5,125,0,0,3962,3966,5,20,0,0,3963,3964,5, + 74,0,0,3964,3966,5,20,0,0,3965,3960,1,0,0,0,3965,3961,1,0,0,0,3965, + 3963,1,0,0,0,3966,267,1,0,0,0,3967,3969,7,56,0,0,3968,3967,1,0,0, + 0,3968,3969,1,0,0,0,3969,3970,1,0,0,0,3970,3972,5,91,0,0,3971,3973, + 5,95,0,0,3972,3971,1,0,0,0,3972,3973,1,0,0,0,3973,3974,1,0,0,0,3974, + 3978,3,260,130,0,3975,3977,3,270,135,0,3976,3975,1,0,0,0,3977,3980, + 1,0,0,0,3978,3976,1,0,0,0,3978,3979,1,0,0,0,3979,4017,1,0,0,0,3980, + 3978,1,0,0,0,3981,3982,5,172,0,0,3982,3986,3,260,130,0,3983,3985, + 3,270,135,0,3984,3983,1,0,0,0,3985,3988,1,0,0,0,3986,3984,1,0,0, + 0,3986,3987,1,0,0,0,3987,4017,1,0,0,0,3988,3986,1,0,0,0,3989,3991, + 7,57,0,0,3990,3992,5,127,0,0,3991,3990,1,0,0,0,3991,3992,1,0,0,0, + 3992,3993,1,0,0,0,3993,3995,5,91,0,0,3994,3996,5,95,0,0,3995,3994, + 1,0,0,0,3995,3996,1,0,0,0,3996,3997,1,0,0,0,3997,4001,3,260,130, + 0,3998,4000,3,270,135,0,3999,3998,1,0,0,0,4000,4003,1,0,0,0,4001, + 3999,1,0,0,0,4001,4002,1,0,0,0,4002,4017,1,0,0,0,4003,4001,1,0,0, + 0,4004,4012,5,113,0,0,4005,4008,5,84,0,0,4006,4008,7,57,0,0,4007, + 4005,1,0,0,0,4007,4006,1,0,0,0,4008,4010,1,0,0,0,4009,4011,5,127, + 0,0,4010,4009,1,0,0,0,4010,4011,1,0,0,0,4011,4013,1,0,0,0,4012,4007, + 1,0,0,0,4012,4013,1,0,0,0,4013,4014,1,0,0,0,4014,4015,5,91,0,0,4015, + 4017,3,260,130,0,4016,3968,1,0,0,0,4016,3981,1,0,0,0,4016,3989,1, + 0,0,0,4016,4004,1,0,0,0,4017,269,1,0,0,0,4018,4019,5,119,0,0,4019, + 4026,3,800,400,0,4020,4021,5,188,0,0,4021,4022,5,866,0,0,4022,4023, + 3,656,328,0,4023,4024,5,867,0,0,4024,4026,1,0,0,0,4025,4018,1,0, + 0,0,4025,4020,1,0,0,0,4026,271,1,0,0,0,4027,4028,5,866,0,0,4028, + 4029,3,274,137,0,4029,4030,5,867,0,0,4030,4036,1,0,0,0,4031,4032, + 5,866,0,0,4032,4033,3,272,136,0,4033,4034,5,867,0,0,4034,4036,1, + 0,0,0,4035,4027,1,0,0,0,4035,4031,1,0,0,0,4036,273,1,0,0,0,4037, + 4041,5,154,0,0,4038,4040,3,290,145,0,4039,4038,1,0,0,0,4040,4043, + 1,0,0,0,4041,4039,1,0,0,0,4041,4042,1,0,0,0,4042,4044,1,0,0,0,4043, + 4041,1,0,0,0,4044,4046,3,292,146,0,4045,4047,3,296,148,0,4046,4045, + 1,0,0,0,4046,4047,1,0,0,0,4047,4048,1,0,0,0,4048,4050,3,302,151, + 0,4049,4051,3,304,152,0,4050,4049,1,0,0,0,4050,4051,1,0,0,0,4051, + 4053,1,0,0,0,4052,4054,3,306,153,0,4053,4052,1,0,0,0,4053,4054,1, + 0,0,0,4054,4056,1,0,0,0,4055,4057,3,308,154,0,4056,4055,1,0,0,0, + 4056,4057,1,0,0,0,4057,4059,1,0,0,0,4058,4060,3,252,126,0,4059,4058, + 1,0,0,0,4059,4060,1,0,0,0,4060,4062,1,0,0,0,4061,4063,3,312,156, + 0,4062,4061,1,0,0,0,4062,4063,1,0,0,0,4063,4065,1,0,0,0,4064,4066, + 3,296,148,0,4065,4064,1,0,0,0,4065,4066,1,0,0,0,4066,275,1,0,0,0, + 4067,4069,5,181,0,0,4068,4070,7,44,0,0,4069,4068,1,0,0,0,4069,4070, + 1,0,0,0,4070,4073,1,0,0,0,4071,4074,3,274,137,0,4072,4074,3,272, + 136,0,4073,4071,1,0,0,0,4073,4072,1,0,0,0,4074,277,1,0,0,0,4075, + 4090,5,95,0,0,4076,4091,3,274,137,0,4077,4091,3,272,136,0,4078,4081, + 5,866,0,0,4079,4082,3,274,137,0,4080,4082,3,272,136,0,4081,4079, + 1,0,0,0,4081,4080,1,0,0,0,4082,4083,1,0,0,0,4083,4088,5,867,0,0, + 4084,4086,5,13,0,0,4085,4084,1,0,0,0,4085,4086,1,0,0,0,4086,4087, + 1,0,0,0,4087,4089,3,702,351,0,4088,4085,1,0,0,0,4088,4089,1,0,0, + 0,4089,4091,1,0,0,0,4090,4076,1,0,0,0,4090,4077,1,0,0,0,4090,4078, + 1,0,0,0,4091,279,1,0,0,0,4092,4093,5,253,0,0,4093,4094,5,866,0,0, + 4094,4095,5,882,0,0,4095,4096,5,868,0,0,4096,4097,5,882,0,0,4097, + 4098,5,337,0,0,4098,4099,5,866,0,0,4099,4100,3,282,141,0,4100,4101, + 5,867,0,0,4101,4106,5,867,0,0,4102,4104,5,13,0,0,4103,4102,1,0,0, + 0,4103,4104,1,0,0,0,4104,4105,1,0,0,0,4105,4107,3,702,351,0,4106, + 4103,1,0,0,0,4106,4107,1,0,0,0,4107,281,1,0,0,0,4108,4113,3,284, + 142,0,4109,4110,5,868,0,0,4110,4112,3,284,142,0,4111,4109,1,0,0, + 0,4112,4115,1,0,0,0,4113,4111,1,0,0,0,4113,4114,1,0,0,0,4114,283, + 1,0,0,0,4115,4113,1,0,0,0,4116,4133,3,658,329,0,4117,4118,5,65,0, + 0,4118,4134,5,256,0,0,4119,4131,3,722,361,0,4120,4121,5,257,0,0, + 4121,4123,5,882,0,0,4122,4124,3,286,143,0,4123,4122,1,0,0,0,4123, + 4124,1,0,0,0,4124,4126,1,0,0,0,4125,4127,3,288,144,0,4126,4125,1, + 0,0,0,4126,4127,1,0,0,0,4127,4132,1,0,0,0,4128,4129,5,60,0,0,4129, + 4130,5,257,0,0,4130,4132,5,882,0,0,4131,4120,1,0,0,0,4131,4128,1, + 0,0,0,4132,4134,1,0,0,0,4133,4117,1,0,0,0,4133,4119,1,0,0,0,4134, + 4146,1,0,0,0,4135,4137,5,255,0,0,4136,4138,5,257,0,0,4137,4136,1, + 0,0,0,4137,4138,1,0,0,0,4138,4139,1,0,0,0,4139,4140,5,882,0,0,4140, + 4141,5,337,0,0,4141,4142,5,866,0,0,4142,4143,3,282,141,0,4143,4144, + 5,867,0,0,4144,4146,1,0,0,0,4145,4116,1,0,0,0,4145,4135,1,0,0,0, + 4146,285,1,0,0,0,4147,4152,5,116,0,0,4148,4152,5,382,0,0,4149,4150, + 5,42,0,0,4150,4152,3,750,375,0,4151,4147,1,0,0,0,4151,4148,1,0,0, + 0,4151,4149,1,0,0,0,4152,4153,1,0,0,0,4153,4154,5,119,0,0,4154,4155, + 5,55,0,0,4155,287,1,0,0,0,4156,4161,5,116,0,0,4157,4161,5,382,0, + 0,4158,4159,5,42,0,0,4159,4161,3,750,375,0,4160,4156,1,0,0,0,4160, + 4157,1,0,0,0,4160,4158,1,0,0,0,4161,4162,1,0,0,0,4162,4163,5,119, + 0,0,4163,4164,5,382,0,0,4164,289,1,0,0,0,4165,4174,7,58,0,0,4166, + 4174,5,76,0,0,4167,4174,5,172,0,0,4168,4174,5,168,0,0,4169,4174, + 5,166,0,0,4170,4174,5,636,0,0,4171,4174,7,59,0,0,4172,4174,5,167, + 0,0,4173,4165,1,0,0,0,4173,4166,1,0,0,0,4173,4167,1,0,0,0,4173,4168, + 1,0,0,0,4173,4169,1,0,0,0,4173,4170,1,0,0,0,4173,4171,1,0,0,0,4173, + 4172,1,0,0,0,4174,291,1,0,0,0,4175,4178,5,850,0,0,4176,4178,3,294, + 147,0,4177,4175,1,0,0,0,4177,4176,1,0,0,0,4178,4183,1,0,0,0,4179, + 4180,5,868,0,0,4180,4182,3,294,147,0,4181,4179,1,0,0,0,4182,4185, + 1,0,0,0,4183,4181,1,0,0,0,4183,4184,1,0,0,0,4184,293,1,0,0,0,4185, + 4183,1,0,0,0,4186,4187,5,892,0,0,4187,4189,5,841,0,0,4188,4186,1, + 0,0,0,4188,4189,1,0,0,0,4189,4190,1,0,0,0,4190,4195,3,800,400,0, + 4191,4193,5,13,0,0,4192,4191,1,0,0,0,4192,4193,1,0,0,0,4193,4194, + 1,0,0,0,4194,4196,3,702,351,0,4195,4192,1,0,0,0,4195,4196,1,0,0, + 0,4196,4216,1,0,0,0,4197,4202,3,760,380,0,4198,4200,5,13,0,0,4199, + 4198,1,0,0,0,4199,4200,1,0,0,0,4200,4201,1,0,0,0,4201,4203,3,702, + 351,0,4202,4199,1,0,0,0,4202,4203,1,0,0,0,4203,4216,1,0,0,0,4204, + 4205,3,698,349,0,4205,4206,5,865,0,0,4206,4207,5,850,0,0,4207,4216, + 1,0,0,0,4208,4213,3,658,329,0,4209,4211,5,13,0,0,4210,4209,1,0,0, + 0,4210,4211,1,0,0,0,4211,4212,1,0,0,0,4212,4214,3,702,351,0,4213, + 4210,1,0,0,0,4213,4214,1,0,0,0,4214,4216,1,0,0,0,4215,4188,1,0,0, + 0,4215,4197,1,0,0,0,4215,4204,1,0,0,0,4215,4208,1,0,0,0,4216,295, + 1,0,0,0,4217,4218,5,88,0,0,4218,4223,3,230,115,0,4219,4220,5,868, + 0,0,4220,4222,3,230,115,0,4221,4219,1,0,0,0,4222,4225,1,0,0,0,4223, + 4221,1,0,0,0,4223,4224,1,0,0,0,4224,4254,1,0,0,0,4225,4223,1,0,0, + 0,4226,4227,5,88,0,0,4227,4228,5,372,0,0,4228,4254,5,882,0,0,4229, + 4230,5,88,0,0,4230,4231,5,128,0,0,4231,4235,5,882,0,0,4232,4233, + 5,26,0,0,4233,4234,5,155,0,0,4234,4236,3,684,342,0,4235,4232,1,0, + 0,0,4235,4236,1,0,0,0,4236,4243,1,0,0,0,4237,4239,7,46,0,0,4238, + 4240,3,298,149,0,4239,4238,1,0,0,0,4240,4241,1,0,0,0,4241,4239,1, + 0,0,0,4241,4242,1,0,0,0,4242,4244,1,0,0,0,4243,4237,1,0,0,0,4243, + 4244,1,0,0,0,4244,4251,1,0,0,0,4245,4247,5,102,0,0,4246,4248,3,300, + 150,0,4247,4246,1,0,0,0,4248,4249,1,0,0,0,4249,4247,1,0,0,0,4249, + 4250,1,0,0,0,4250,4252,1,0,0,0,4251,4245,1,0,0,0,4251,4252,1,0,0, + 0,4252,4254,1,0,0,0,4253,4217,1,0,0,0,4253,4226,1,0,0,0,4253,4229, + 1,0,0,0,4254,297,1,0,0,0,4255,4256,5,174,0,0,4256,4257,5,20,0,0, + 4257,4268,5,882,0,0,4258,4260,5,123,0,0,4259,4258,1,0,0,0,4259,4260, + 1,0,0,0,4260,4261,1,0,0,0,4261,4262,5,56,0,0,4262,4263,5,20,0,0, + 4263,4268,5,882,0,0,4264,4265,5,58,0,0,4265,4266,5,20,0,0,4266,4268, + 5,882,0,0,4267,4255,1,0,0,0,4267,4259,1,0,0,0,4267,4264,1,0,0,0, + 4268,299,1,0,0,0,4269,4270,5,171,0,0,4270,4271,5,20,0,0,4271,4276, + 5,882,0,0,4272,4273,5,174,0,0,4273,4274,5,20,0,0,4274,4276,5,882, + 0,0,4275,4269,1,0,0,0,4275,4272,1,0,0,0,4276,301,1,0,0,0,4277,4278, + 5,68,0,0,4278,4280,3,256,128,0,4279,4277,1,0,0,0,4279,4280,1,0,0, + 0,4280,4283,1,0,0,0,4281,4282,5,192,0,0,4282,4284,3,800,400,0,4283, + 4281,1,0,0,0,4283,4284,1,0,0,0,4284,303,1,0,0,0,4285,4286,5,74,0, + 0,4286,4287,5,20,0,0,4287,4292,3,310,155,0,4288,4289,5,868,0,0,4289, + 4291,3,310,155,0,4290,4288,1,0,0,0,4291,4294,1,0,0,0,4292,4290,1, + 0,0,0,4292,4293,1,0,0,0,4293,4297,1,0,0,0,4294,4292,1,0,0,0,4295, + 4296,5,194,0,0,4296,4298,5,584,0,0,4297,4295,1,0,0,0,4297,4298,1, + 0,0,0,4298,305,1,0,0,0,4299,4300,5,75,0,0,4300,4301,3,800,400,0, + 4301,307,1,0,0,0,4302,4303,5,689,0,0,4303,4304,3,778,389,0,4304, + 4305,5,13,0,0,4305,4306,5,866,0,0,4306,4307,3,776,388,0,4307,4317, + 5,867,0,0,4308,4309,5,868,0,0,4309,4310,3,778,389,0,4310,4311,5, + 13,0,0,4311,4312,5,866,0,0,4312,4313,3,776,388,0,4313,4314,5,867, + 0,0,4314,4316,1,0,0,0,4315,4308,1,0,0,0,4316,4319,1,0,0,0,4317,4315, + 1,0,0,0,4317,4318,1,0,0,0,4318,309,1,0,0,0,4319,4317,1,0,0,0,4320, + 4322,3,800,400,0,4321,4323,7,54,0,0,4322,4321,1,0,0,0,4322,4323, + 1,0,0,0,4323,311,1,0,0,0,4324,4335,5,100,0,0,4325,4326,3,314,157, + 0,4326,4327,5,868,0,0,4327,4329,1,0,0,0,4328,4325,1,0,0,0,4328,4329, + 1,0,0,0,4329,4330,1,0,0,0,4330,4336,3,314,157,0,4331,4332,3,314, + 157,0,4332,4333,5,509,0,0,4333,4334,3,314,157,0,4334,4336,1,0,0, + 0,4335,4328,1,0,0,0,4335,4331,1,0,0,0,4336,313,1,0,0,0,4337,4341, + 3,708,354,0,4338,4341,3,682,341,0,4339,4341,3,704,352,0,4340,4337, + 1,0,0,0,4340,4338,1,0,0,0,4340,4339,1,0,0,0,4341,315,1,0,0,0,4342, + 4343,5,640,0,0,4343,4352,5,664,0,0,4344,4349,3,338,169,0,4345,4346, + 5,868,0,0,4346,4348,3,338,169,0,4347,4345,1,0,0,0,4348,4351,1,0, + 0,0,4349,4347,1,0,0,0,4349,4350,1,0,0,0,4350,4353,1,0,0,0,4351,4349, + 1,0,0,0,4352,4344,1,0,0,0,4352,4353,1,0,0,0,4353,317,1,0,0,0,4354, + 4356,5,317,0,0,4355,4357,5,691,0,0,4356,4355,1,0,0,0,4356,4357,1, + 0,0,0,4357,319,1,0,0,0,4358,4360,5,341,0,0,4359,4361,5,691,0,0,4360, + 4359,1,0,0,0,4360,4361,1,0,0,0,4361,4367,1,0,0,0,4362,4364,5,11, + 0,0,4363,4365,5,502,0,0,4364,4363,1,0,0,0,4364,4365,1,0,0,0,4365, + 4366,1,0,0,0,4366,4368,5,326,0,0,4367,4362,1,0,0,0,4367,4368,1,0, + 0,0,4368,4373,1,0,0,0,4369,4371,5,502,0,0,4370,4369,1,0,0,0,4370, + 4371,1,0,0,0,4371,4372,1,0,0,0,4372,4374,5,140,0,0,4373,4370,1,0, + 0,0,4373,4374,1,0,0,0,4374,321,1,0,0,0,4375,4377,5,583,0,0,4376, + 4378,5,691,0,0,4377,4376,1,0,0,0,4377,4378,1,0,0,0,4378,4384,1,0, + 0,0,4379,4381,5,11,0,0,4380,4382,5,502,0,0,4381,4380,1,0,0,0,4381, + 4382,1,0,0,0,4382,4383,1,0,0,0,4383,4385,5,326,0,0,4384,4379,1,0, + 0,0,4384,4385,1,0,0,0,4385,4390,1,0,0,0,4386,4388,5,502,0,0,4387, + 4386,1,0,0,0,4387,4388,1,0,0,0,4388,4389,1,0,0,0,4389,4391,5,140, + 0,0,4390,4387,1,0,0,0,4390,4391,1,0,0,0,4391,323,1,0,0,0,4392,4393, + 5,589,0,0,4393,4394,3,702,351,0,4394,325,1,0,0,0,4395,4397,5,583, + 0,0,4396,4398,5,691,0,0,4397,4396,1,0,0,0,4397,4398,1,0,0,0,4398, + 4399,1,0,0,0,4399,4401,5,176,0,0,4400,4402,5,589,0,0,4401,4400,1, + 0,0,0,4401,4402,1,0,0,0,4402,4403,1,0,0,0,4403,4404,3,702,351,0, + 4404,327,1,0,0,0,4405,4406,5,140,0,0,4406,4407,5,589,0,0,4407,4408, + 3,702,351,0,4408,329,1,0,0,0,4409,4410,5,104,0,0,4410,4411,7,60, + 0,0,4411,4416,3,340,170,0,4412,4413,5,868,0,0,4413,4415,3,340,170, + 0,4414,4412,1,0,0,0,4415,4418,1,0,0,0,4416,4414,1,0,0,0,4416,4417, + 1,0,0,0,4417,331,1,0,0,0,4418,4416,1,0,0,0,4419,4420,5,183,0,0,4420, + 4421,5,752,0,0,4421,333,1,0,0,0,4422,4423,5,155,0,0,4423,4424,5, + 313,0,0,4424,4425,5,857,0,0,4425,4426,7,25,0,0,4426,335,1,0,0,0, + 4427,4429,5,155,0,0,4428,4430,7,61,0,0,4429,4428,1,0,0,0,4429,4430, + 1,0,0,0,4430,4431,1,0,0,0,4431,4432,5,664,0,0,4432,4437,3,344,172, + 0,4433,4434,5,868,0,0,4434,4436,3,344,172,0,4435,4433,1,0,0,0,4436, + 4439,1,0,0,0,4437,4435,1,0,0,0,4437,4438,1,0,0,0,4438,337,1,0,0, + 0,4439,4437,1,0,0,0,4440,4441,5,194,0,0,4441,4442,5,350,0,0,4442, + 4448,5,600,0,0,4443,4444,5,135,0,0,4444,4448,5,195,0,0,4445,4446, + 5,135,0,0,4446,4448,5,515,0,0,4447,4440,1,0,0,0,4447,4443,1,0,0, + 0,4447,4445,1,0,0,0,4448,339,1,0,0,0,4449,4454,3,648,324,0,4450, + 4452,5,13,0,0,4451,4450,1,0,0,0,4451,4452,1,0,0,0,4452,4453,1,0, + 0,0,4453,4455,3,702,351,0,4454,4451,1,0,0,0,4454,4455,1,0,0,0,4455, + 4456,1,0,0,0,4456,4457,3,342,171,0,4457,341,1,0,0,0,4458,4460,5, + 135,0,0,4459,4461,5,450,0,0,4460,4459,1,0,0,0,4460,4461,1,0,0,0, + 4461,4467,1,0,0,0,4462,4464,5,107,0,0,4463,4462,1,0,0,0,4463,4464, + 1,0,0,0,4464,4465,1,0,0,0,4465,4467,5,195,0,0,4466,4458,1,0,0,0, + 4466,4463,1,0,0,0,4467,343,1,0,0,0,4468,4469,5,440,0,0,4469,4470, + 5,448,0,0,4470,4476,3,346,173,0,4471,4472,5,135,0,0,4472,4476,5, + 195,0,0,4473,4474,5,135,0,0,4474,4476,5,515,0,0,4475,4468,1,0,0, + 0,4475,4471,1,0,0,0,4475,4473,1,0,0,0,4476,345,1,0,0,0,4477,4478, + 5,809,0,0,4478,4485,5,135,0,0,4479,4480,5,135,0,0,4480,4485,5,810, + 0,0,4481,4482,5,135,0,0,4482,4485,5,811,0,0,4483,4485,5,812,0,0, + 4484,4477,1,0,0,0,4484,4479,1,0,0,0,4484,4481,1,0,0,0,4484,4483, + 1,0,0,0,4485,347,1,0,0,0,4486,4487,5,25,0,0,4487,4488,5,453,0,0, + 4488,4489,5,176,0,0,4489,4494,3,364,182,0,4490,4491,5,868,0,0,4491, + 4493,3,364,182,0,4492,4490,1,0,0,0,4493,4496,1,0,0,0,4494,4492,1, + 0,0,0,4494,4495,1,0,0,0,4495,4498,1,0,0,0,4496,4494,1,0,0,0,4497, + 4499,3,384,192,0,4498,4497,1,0,0,0,4498,4499,1,0,0,0,4499,349,1, + 0,0,0,4500,4501,5,25,0,0,4501,4502,5,572,0,0,4502,4503,5,400,0,0, + 4503,4508,3,386,193,0,4504,4505,5,868,0,0,4505,4507,3,386,193,0, + 4506,4504,1,0,0,0,4507,4510,1,0,0,0,4508,4506,1,0,0,0,4508,4509, + 1,0,0,0,4509,4512,1,0,0,0,4510,4508,1,0,0,0,4511,4513,3,384,192, + 0,4512,4511,1,0,0,0,4512,4513,1,0,0,0,4513,351,1,0,0,0,4514,4515, + 5,25,0,0,4515,4516,5,572,0,0,4516,4517,5,605,0,0,4517,4518,5,176, + 0,0,4518,4523,3,374,187,0,4519,4520,5,868,0,0,4520,4522,3,374,187, + 0,4521,4519,1,0,0,0,4522,4525,1,0,0,0,4523,4521,1,0,0,0,4523,4524, + 1,0,0,0,4524,4527,1,0,0,0,4525,4523,1,0,0,0,4526,4528,3,384,192, + 0,4527,4526,1,0,0,0,4527,4528,1,0,0,0,4528,353,1,0,0,0,4529,4530, + 5,133,0,0,4530,4531,7,62,0,0,4531,4536,5,452,0,0,4532,4533,5,176, + 0,0,4533,4537,5,882,0,0,4534,4535,5,16,0,0,4535,4537,5,882,0,0,4536, + 4532,1,0,0,0,4536,4534,1,0,0,0,4537,355,1,0,0,0,4538,4539,5,640, + 0,0,4539,4548,7,63,0,0,4540,4545,3,390,195,0,4541,4542,5,868,0,0, + 4542,4544,3,390,195,0,4543,4541,1,0,0,0,4544,4547,1,0,0,0,4545,4543, + 1,0,0,0,4545,4546,1,0,0,0,4546,4549,1,0,0,0,4547,4545,1,0,0,0,4548, + 4540,1,0,0,0,4548,4549,1,0,0,0,4549,4552,1,0,0,0,4550,4551,5,676, + 0,0,4551,4553,3,392,196,0,4552,4550,1,0,0,0,4552,4553,1,0,0,0,4553, + 4557,1,0,0,0,4554,4556,3,394,197,0,4555,4554,1,0,0,0,4556,4559,1, + 0,0,0,4557,4555,1,0,0,0,4557,4558,1,0,0,0,4558,4561,1,0,0,0,4559, + 4557,1,0,0,0,4560,4562,3,384,192,0,4561,4560,1,0,0,0,4561,4562,1, + 0,0,0,4562,357,1,0,0,0,4563,4564,5,646,0,0,4564,4573,7,63,0,0,4565, + 4570,3,390,195,0,4566,4567,5,868,0,0,4567,4569,3,390,195,0,4568, + 4566,1,0,0,0,4569,4572,1,0,0,0,4570,4568,1,0,0,0,4570,4571,1,0,0, + 0,4571,4574,1,0,0,0,4572,4570,1,0,0,0,4573,4565,1,0,0,0,4573,4574, + 1,0,0,0,4574,4576,1,0,0,0,4575,4577,3,384,192,0,4576,4575,1,0,0, + 0,4576,4577,1,0,0,0,4577,359,1,0,0,0,4578,4579,5,640,0,0,4579,4583, + 5,415,0,0,4580,4581,5,678,0,0,4581,4582,5,857,0,0,4582,4584,5,882, + 0,0,4583,4580,1,0,0,0,4583,4584,1,0,0,0,4584,4589,1,0,0,0,4585,4586, + 5,868,0,0,4586,4587,5,529,0,0,4587,4588,5,857,0,0,4588,4590,5,882, + 0,0,4589,4585,1,0,0,0,4589,4590,1,0,0,0,4590,4595,1,0,0,0,4591,4592, + 5,868,0,0,4592,4593,5,363,0,0,4593,4594,5,857,0,0,4594,4596,5,882, + 0,0,4595,4591,1,0,0,0,4595,4596,1,0,0,0,4596,361,1,0,0,0,4597,4598, + 5,646,0,0,4598,4599,5,415,0,0,4599,363,1,0,0,0,4600,4601,3,366,183, + 0,4601,4602,5,857,0,0,4602,4603,5,882,0,0,4603,4628,1,0,0,0,4604, + 4605,3,368,184,0,4605,4606,5,857,0,0,4606,4607,3,708,354,0,4607, + 4628,1,0,0,0,4608,4609,3,370,185,0,4609,4610,5,857,0,0,4610,4611, + 7,25,0,0,4611,4628,1,0,0,0,4612,4628,3,372,186,0,4613,4614,5,424, + 0,0,4614,4615,5,857,0,0,4615,4624,5,866,0,0,4616,4621,3,702,351, + 0,4617,4618,5,868,0,0,4618,4620,3,702,351,0,4619,4617,1,0,0,0,4620, + 4623,1,0,0,0,4621,4619,1,0,0,0,4621,4622,1,0,0,0,4622,4625,1,0,0, + 0,4623,4621,1,0,0,0,4624,4616,1,0,0,0,4624,4625,1,0,0,0,4625,4626, + 1,0,0,0,4626,4628,5,867,0,0,4627,4600,1,0,0,0,4627,4604,1,0,0,0, + 4627,4608,1,0,0,0,4627,4612,1,0,0,0,4627,4613,1,0,0,0,4628,365,1, + 0,0,0,4629,4630,7,64,0,0,4630,367,1,0,0,0,4631,4632,7,65,0,0,4632, + 369,1,0,0,0,4633,4634,7,66,0,0,4634,371,1,0,0,0,4635,4636,5,543, + 0,0,4636,4637,5,857,0,0,4637,4649,7,67,0,0,4638,4639,5,574,0,0,4639, + 4640,5,857,0,0,4640,4649,7,68,0,0,4641,4642,5,310,0,0,4642,4646, + 5,857,0,0,4643,4647,5,507,0,0,4644,4647,5,450,0,0,4645,4647,3,396, + 198,0,4646,4643,1,0,0,0,4646,4644,1,0,0,0,4646,4645,1,0,0,0,4647, + 4649,1,0,0,0,4648,4635,1,0,0,0,4648,4638,1,0,0,0,4648,4641,1,0,0, + 0,4649,373,1,0,0,0,4650,4651,3,376,188,0,4651,4652,5,857,0,0,4652, + 4653,5,882,0,0,4653,4678,1,0,0,0,4654,4655,3,378,189,0,4655,4656, + 5,857,0,0,4656,4657,3,708,354,0,4657,4678,1,0,0,0,4658,4659,3,380, + 190,0,4659,4660,5,857,0,0,4660,4661,7,25,0,0,4661,4678,1,0,0,0,4662, + 4678,3,382,191,0,4663,4664,5,424,0,0,4664,4665,5,857,0,0,4665,4674, + 5,866,0,0,4666,4671,3,702,351,0,4667,4668,5,868,0,0,4668,4670,3, + 702,351,0,4669,4667,1,0,0,0,4670,4673,1,0,0,0,4671,4669,1,0,0,0, + 4671,4672,1,0,0,0,4672,4675,1,0,0,0,4673,4671,1,0,0,0,4674,4666, + 1,0,0,0,4674,4675,1,0,0,0,4675,4676,1,0,0,0,4676,4678,5,867,0,0, + 4677,4650,1,0,0,0,4677,4654,1,0,0,0,4677,4658,1,0,0,0,4677,4662, + 1,0,0,0,4677,4663,1,0,0,0,4678,375,1,0,0,0,4679,4680,7,69,0,0,4680, + 377,1,0,0,0,4681,4682,7,70,0,0,4682,379,1,0,0,0,4683,4684,7,71,0, + 0,4684,381,1,0,0,0,4685,4686,5,543,0,0,4686,4687,5,857,0,0,4687, + 4699,7,67,0,0,4688,4689,5,574,0,0,4689,4690,5,857,0,0,4690,4699, + 7,72,0,0,4691,4692,5,310,0,0,4692,4696,5,857,0,0,4693,4697,5,507, + 0,0,4694,4697,5,450,0,0,4695,4697,3,396,198,0,4696,4693,1,0,0,0, + 4696,4694,1,0,0,0,4696,4695,1,0,0,0,4697,4699,1,0,0,0,4698,4685, + 1,0,0,0,4698,4688,1,0,0,0,4698,4691,1,0,0,0,4699,383,1,0,0,0,4700, + 4701,5,65,0,0,4701,4702,5,328,0,0,4702,4703,5,882,0,0,4703,385,1, + 0,0,0,4704,4705,5,565,0,0,4705,4706,5,857,0,0,4706,4707,5,866,0, + 0,4707,4712,3,624,312,0,4708,4709,5,868,0,0,4709,4711,3,624,312, + 0,4710,4708,1,0,0,0,4711,4714,1,0,0,0,4712,4710,1,0,0,0,4712,4713, + 1,0,0,0,4713,4715,1,0,0,0,4714,4712,1,0,0,0,4715,4716,5,867,0,0, + 4716,4768,1,0,0,0,4717,4718,5,567,0,0,4718,4719,5,857,0,0,4719,4720, + 5,866,0,0,4720,4725,3,624,312,0,4721,4722,5,868,0,0,4722,4724,3, + 624,312,0,4723,4721,1,0,0,0,4724,4727,1,0,0,0,4725,4723,1,0,0,0, + 4725,4726,1,0,0,0,4726,4728,1,0,0,0,4727,4725,1,0,0,0,4728,4729, + 5,867,0,0,4729,4768,1,0,0,0,4730,4731,5,566,0,0,4731,4732,5,857, + 0,0,4732,4733,5,866,0,0,4733,4734,3,646,323,0,4734,4735,5,867,0, + 0,4735,4768,1,0,0,0,4736,4737,5,568,0,0,4737,4738,5,857,0,0,4738, + 4739,5,866,0,0,4739,4740,3,646,323,0,4740,4741,5,867,0,0,4741,4768, + 1,0,0,0,4742,4743,5,570,0,0,4743,4744,5,857,0,0,4744,4745,5,866, + 0,0,4745,4746,3,746,373,0,4746,4747,5,867,0,0,4747,4768,1,0,0,0, + 4748,4749,5,571,0,0,4749,4750,5,857,0,0,4750,4751,5,866,0,0,4751, + 4752,3,746,373,0,4752,4753,5,867,0,0,4753,4768,1,0,0,0,4754,4755, + 5,569,0,0,4755,4756,5,857,0,0,4756,4757,5,866,0,0,4757,4762,3,388, + 194,0,4758,4759,5,868,0,0,4759,4761,3,388,194,0,4760,4758,1,0,0, + 0,4761,4764,1,0,0,0,4762,4760,1,0,0,0,4762,4763,1,0,0,0,4763,4765, + 1,0,0,0,4764,4762,1,0,0,0,4765,4766,5,867,0,0,4766,4768,1,0,0,0, + 4767,4704,1,0,0,0,4767,4717,1,0,0,0,4767,4730,1,0,0,0,4767,4736, + 1,0,0,0,4767,4742,1,0,0,0,4767,4748,1,0,0,0,4767,4754,1,0,0,0,4768, + 387,1,0,0,0,4769,4770,5,866,0,0,4770,4771,3,648,324,0,4771,4772, + 5,868,0,0,4772,4773,3,648,324,0,4773,4774,5,867,0,0,4774,389,1,0, + 0,0,4775,4776,7,73,0,0,4776,391,1,0,0,0,4777,4778,7,74,0,0,4778, + 4779,5,857,0,0,4779,4803,3,396,198,0,4780,4781,5,460,0,0,4781,4782, + 5,857,0,0,4782,4783,5,882,0,0,4783,4784,5,868,0,0,4784,4785,5,461, + 0,0,4785,4786,5,857,0,0,4786,4803,3,708,354,0,4787,4788,5,611,0, + 0,4788,4789,5,857,0,0,4789,4790,5,882,0,0,4790,4791,5,868,0,0,4791, + 4792,5,612,0,0,4792,4793,5,857,0,0,4793,4803,3,708,354,0,4794,4795, + 5,557,0,0,4795,4796,5,857,0,0,4796,4797,5,882,0,0,4797,4798,5,868, + 0,0,4798,4799,5,558,0,0,4799,4800,5,857,0,0,4800,4803,3,708,354, + 0,4801,4803,5,634,0,0,4802,4777,1,0,0,0,4802,4780,1,0,0,0,4802,4787, + 1,0,0,0,4802,4794,1,0,0,0,4802,4801,1,0,0,0,4803,393,1,0,0,0,4804, + 4805,5,678,0,0,4805,4806,5,857,0,0,4806,4817,5,882,0,0,4807,4808, + 5,529,0,0,4808,4809,5,857,0,0,4809,4817,5,882,0,0,4810,4811,5,363, + 0,0,4811,4812,5,857,0,0,4812,4817,5,882,0,0,4813,4814,5,535,0,0, + 4814,4815,5,857,0,0,4815,4817,5,882,0,0,4816,4804,1,0,0,0,4816,4807, + 1,0,0,0,4816,4810,1,0,0,0,4816,4813,1,0,0,0,4817,395,1,0,0,0,4818, + 4823,3,692,346,0,4819,4820,5,868,0,0,4820,4822,3,692,346,0,4821, + 4819,1,0,0,0,4822,4825,1,0,0,0,4823,4821,1,0,0,0,4823,4824,1,0,0, + 0,4824,4828,1,0,0,0,4825,4823,1,0,0,0,4826,4828,5,882,0,0,4827,4818, + 1,0,0,0,4827,4826,1,0,0,0,4828,397,1,0,0,0,4829,4830,5,694,0,0,4830, + 4831,7,75,0,0,4831,4833,3,694,347,0,4832,4834,7,76,0,0,4833,4832, + 1,0,0,0,4833,4834,1,0,0,0,4834,399,1,0,0,0,4835,4836,5,694,0,0,4836, + 4837,5,378,0,0,4837,4843,3,694,347,0,4838,4841,5,654,0,0,4839,4840, + 5,65,0,0,4840,4842,5,489,0,0,4841,4839,1,0,0,0,4841,4842,1,0,0,0, + 4842,4844,1,0,0,0,4843,4838,1,0,0,0,4843,4844,1,0,0,0,4844,401,1, + 0,0,0,4845,4846,5,694,0,0,4846,4847,5,540,0,0,4847,4848,3,694,347, + 0,4848,403,1,0,0,0,4849,4850,5,694,0,0,4850,4851,5,341,0,0,4851, + 4854,3,694,347,0,4852,4853,5,513,0,0,4853,4855,5,533,0,0,4854,4852, + 1,0,0,0,4854,4855,1,0,0,0,4855,405,1,0,0,0,4856,4857,5,694,0,0,4857, + 4858,5,583,0,0,4858,4859,3,694,347,0,4859,407,1,0,0,0,4860,4861, + 5,694,0,0,4861,4864,5,551,0,0,4862,4863,5,33,0,0,4863,4865,3,694, + 347,0,4864,4862,1,0,0,0,4864,4865,1,0,0,0,4865,409,1,0,0,0,4866, + 4867,5,540,0,0,4867,4868,3,702,351,0,4868,4871,5,68,0,0,4869,4872, + 5,882,0,0,4870,4872,5,892,0,0,4871,4869,1,0,0,0,4871,4870,1,0,0, + 0,4872,411,1,0,0,0,4873,4874,5,717,0,0,4874,4877,3,702,351,0,4875, + 4876,5,188,0,0,4876,4878,3,748,374,0,4877,4875,1,0,0,0,4877,4878, + 1,0,0,0,4878,413,1,0,0,0,4879,4880,7,77,0,0,4880,4881,5,540,0,0, + 4881,4882,3,702,351,0,4882,415,1,0,0,0,4883,4886,3,418,209,0,4884, + 4886,3,4,2,0,4885,4883,1,0,0,0,4885,4884,1,0,0,0,4886,417,1,0,0, + 0,4887,4888,3,702,351,0,4888,4889,5,878,0,0,4889,4891,1,0,0,0,4890, + 4887,1,0,0,0,4890,4891,1,0,0,0,4891,4892,1,0,0,0,4892,4898,5,317, + 0,0,4893,4894,3,438,219,0,4894,4895,5,869,0,0,4895,4897,1,0,0,0, + 4896,4893,1,0,0,0,4897,4900,1,0,0,0,4898,4896,1,0,0,0,4898,4899, + 1,0,0,0,4899,4906,1,0,0,0,4900,4898,1,0,0,0,4901,4902,3,440,220, + 0,4902,4903,5,869,0,0,4903,4905,1,0,0,0,4904,4901,1,0,0,0,4905,4908, + 1,0,0,0,4906,4904,1,0,0,0,4906,4907,1,0,0,0,4907,4914,1,0,0,0,4908, + 4906,1,0,0,0,4909,4910,3,442,221,0,4910,4911,5,869,0,0,4911,4913, + 1,0,0,0,4912,4909,1,0,0,0,4913,4916,1,0,0,0,4914,4912,1,0,0,0,4914, + 4915,1,0,0,0,4915,4922,1,0,0,0,4916,4914,1,0,0,0,4917,4918,3,444, + 222,0,4918,4919,5,869,0,0,4919,4921,1,0,0,0,4920,4917,1,0,0,0,4921, + 4924,1,0,0,0,4922,4920,1,0,0,0,4922,4923,1,0,0,0,4923,4928,1,0,0, + 0,4924,4922,1,0,0,0,4925,4927,3,448,224,0,4926,4925,1,0,0,0,4927, + 4930,1,0,0,0,4928,4926,1,0,0,0,4928,4929,1,0,0,0,4929,4931,1,0,0, + 0,4930,4928,1,0,0,0,4931,4933,5,378,0,0,4932,4934,3,702,351,0,4933, + 4932,1,0,0,0,4933,4934,1,0,0,0,4934,419,1,0,0,0,4935,4938,5,23,0, + 0,4936,4939,3,702,351,0,4937,4939,3,800,400,0,4938,4936,1,0,0,0, + 4938,4937,1,0,0,0,4938,4939,1,0,0,0,4939,4941,1,0,0,0,4940,4942, + 3,450,225,0,4941,4940,1,0,0,0,4942,4943,1,0,0,0,4943,4941,1,0,0, + 0,4943,4944,1,0,0,0,4944,4951,1,0,0,0,4945,4947,5,53,0,0,4946,4948, + 3,448,224,0,4947,4946,1,0,0,0,4948,4949,1,0,0,0,4949,4947,1,0,0, + 0,4949,4950,1,0,0,0,4950,4952,1,0,0,0,4951,4945,1,0,0,0,4951,4952, + 1,0,0,0,4952,4953,1,0,0,0,4953,4954,5,378,0,0,4954,4955,5,23,0,0, + 4955,421,1,0,0,0,4956,4957,5,78,0,0,4957,4958,3,800,400,0,4958,4960, + 5,175,0,0,4959,4961,3,448,224,0,4960,4959,1,0,0,0,4961,4962,1,0, + 0,0,4962,4960,1,0,0,0,4962,4963,1,0,0,0,4963,4967,1,0,0,0,4964,4966, + 3,452,226,0,4965,4964,1,0,0,0,4966,4969,1,0,0,0,4967,4965,1,0,0, + 0,4967,4968,1,0,0,0,4968,4976,1,0,0,0,4969,4967,1,0,0,0,4970,4972, + 5,53,0,0,4971,4973,3,448,224,0,4972,4971,1,0,0,0,4973,4974,1,0,0, + 0,4974,4972,1,0,0,0,4974,4975,1,0,0,0,4975,4977,1,0,0,0,4976,4970, + 1,0,0,0,4976,4977,1,0,0,0,4977,4978,1,0,0,0,4978,4979,5,378,0,0, + 4979,4980,5,78,0,0,4980,423,1,0,0,0,4981,4982,5,90,0,0,4982,4983, + 3,702,351,0,4983,425,1,0,0,0,4984,4985,5,97,0,0,4985,4986,3,702, + 351,0,4986,427,1,0,0,0,4987,4988,3,702,351,0,4988,4989,5,878,0,0, + 4989,4991,1,0,0,0,4990,4987,1,0,0,0,4990,4991,1,0,0,0,4991,4992, + 1,0,0,0,4992,4994,5,106,0,0,4993,4995,3,448,224,0,4994,4993,1,0, + 0,0,4995,4996,1,0,0,0,4996,4994,1,0,0,0,4996,4997,1,0,0,0,4997,4998, + 1,0,0,0,4998,4999,5,378,0,0,4999,5001,5,106,0,0,5000,5002,3,702, + 351,0,5001,5000,1,0,0,0,5001,5002,1,0,0,0,5002,429,1,0,0,0,5003, + 5004,3,702,351,0,5004,5005,5,878,0,0,5005,5007,1,0,0,0,5006,5003, + 1,0,0,0,5006,5007,1,0,0,0,5007,5008,1,0,0,0,5008,5010,5,142,0,0, + 5009,5011,3,448,224,0,5010,5009,1,0,0,0,5011,5012,1,0,0,0,5012,5010, + 1,0,0,0,5012,5013,1,0,0,0,5013,5014,1,0,0,0,5014,5015,5,676,0,0, + 5015,5016,3,800,400,0,5016,5017,5,378,0,0,5017,5019,5,142,0,0,5018, + 5020,3,702,351,0,5019,5018,1,0,0,0,5019,5020,1,0,0,0,5020,431,1, + 0,0,0,5021,5022,5,148,0,0,5022,5023,3,800,400,0,5023,433,1,0,0,0, + 5024,5025,3,702,351,0,5025,5026,5,878,0,0,5026,5028,1,0,0,0,5027, + 5024,1,0,0,0,5027,5028,1,0,0,0,5028,5029,1,0,0,0,5029,5030,5,193, + 0,0,5030,5031,3,800,400,0,5031,5033,5,371,0,0,5032,5034,3,448,224, + 0,5033,5032,1,0,0,0,5034,5035,1,0,0,0,5035,5033,1,0,0,0,5035,5036, + 1,0,0,0,5036,5037,1,0,0,0,5037,5038,5,378,0,0,5038,5040,5,193,0, + 0,5039,5041,3,702,351,0,5040,5039,1,0,0,0,5040,5041,1,0,0,0,5041, + 435,1,0,0,0,5042,5043,5,334,0,0,5043,5058,3,702,351,0,5044,5049, + 5,64,0,0,5045,5047,5,501,0,0,5046,5045,1,0,0,0,5046,5047,1,0,0,0, + 5047,5048,1,0,0,0,5048,5050,5,68,0,0,5049,5046,1,0,0,0,5049,5050, + 1,0,0,0,5050,5051,1,0,0,0,5051,5052,3,702,351,0,5052,5053,5,88,0, + 0,5053,5054,3,700,350,0,5054,5058,1,0,0,0,5055,5056,5,516,0,0,5056, + 5058,3,702,351,0,5057,5042,1,0,0,0,5057,5044,1,0,0,0,5057,5055,1, + 0,0,0,5058,437,1,0,0,0,5059,5060,5,41,0,0,5060,5061,3,700,350,0, + 5061,5064,3,722,361,0,5062,5063,5,42,0,0,5063,5065,3,800,400,0,5064, + 5062,1,0,0,0,5064,5065,1,0,0,0,5065,439,1,0,0,0,5066,5067,5,41,0, + 0,5067,5068,3,702,351,0,5068,5069,5,30,0,0,5069,5076,5,65,0,0,5070, + 5077,3,708,354,0,5071,5073,5,164,0,0,5072,5074,5,682,0,0,5073,5072, + 1,0,0,0,5073,5074,1,0,0,0,5074,5075,1,0,0,0,5075,5077,5,882,0,0, + 5076,5070,1,0,0,0,5076,5071,1,0,0,0,5077,441,1,0,0,0,5078,5079,5, + 41,0,0,5079,5080,3,702,351,0,5080,5081,5,38,0,0,5081,5082,5,65,0, + 0,5082,5083,3,204,102,0,5083,443,1,0,0,0,5084,5085,5,41,0,0,5085, + 5086,7,78,0,0,5086,5087,5,417,0,0,5087,5088,5,65,0,0,5088,5093,3, + 446,223,0,5089,5090,5,868,0,0,5090,5092,3,446,223,0,5091,5089,1, + 0,0,0,5092,5095,1,0,0,0,5093,5091,1,0,0,0,5093,5094,1,0,0,0,5094, + 5096,1,0,0,0,5095,5093,1,0,0,0,5096,5097,3,416,208,0,5097,445,1, + 0,0,0,5098,5110,3,708,354,0,5099,5101,5,164,0,0,5100,5102,5,682, + 0,0,5101,5100,1,0,0,0,5101,5102,1,0,0,0,5102,5103,1,0,0,0,5103,5110, + 5,882,0,0,5104,5110,3,702,351,0,5105,5110,5,165,0,0,5106,5107,5, + 114,0,0,5107,5110,5,407,0,0,5108,5110,5,163,0,0,5109,5098,1,0,0, + 0,5109,5099,1,0,0,0,5109,5104,1,0,0,0,5109,5105,1,0,0,0,5109,5106, + 1,0,0,0,5109,5108,1,0,0,0,5110,447,1,0,0,0,5111,5114,3,18,9,0,5112, + 5114,3,4,2,0,5113,5111,1,0,0,0,5113,5112,1,0,0,0,5114,5115,1,0,0, + 0,5115,5116,5,869,0,0,5116,449,1,0,0,0,5117,5120,5,191,0,0,5118, + 5121,3,720,360,0,5119,5121,3,800,400,0,5120,5118,1,0,0,0,5120,5119, + 1,0,0,0,5121,5122,1,0,0,0,5122,5124,5,175,0,0,5123,5125,3,448,224, + 0,5124,5123,1,0,0,0,5125,5126,1,0,0,0,5126,5124,1,0,0,0,5126,5127, + 1,0,0,0,5127,451,1,0,0,0,5128,5129,5,54,0,0,5129,5130,3,800,400, + 0,5130,5132,5,175,0,0,5131,5133,3,448,224,0,5132,5131,1,0,0,0,5133, + 5134,1,0,0,0,5134,5132,1,0,0,0,5134,5135,1,0,0,0,5135,453,1,0,0, + 0,5136,5137,5,8,0,0,5137,5139,5,678,0,0,5138,5140,3,754,377,0,5139, + 5138,1,0,0,0,5139,5140,1,0,0,0,5140,5197,1,0,0,0,5141,5146,3,486, + 243,0,5142,5143,5,868,0,0,5143,5145,3,486,243,0,5144,5142,1,0,0, + 0,5145,5148,1,0,0,0,5146,5144,1,0,0,0,5146,5147,1,0,0,0,5147,5198, + 1,0,0,0,5148,5146,1,0,0,0,5149,5154,3,488,244,0,5150,5151,5,868, + 0,0,5151,5153,3,488,244,0,5152,5150,1,0,0,0,5153,5156,1,0,0,0,5154, + 5152,1,0,0,0,5154,5155,1,0,0,0,5155,5171,1,0,0,0,5156,5154,1,0,0, + 0,5157,5169,5,144,0,0,5158,5170,5,505,0,0,5159,5166,3,500,250,0, + 5160,5162,5,11,0,0,5161,5160,1,0,0,0,5161,5162,1,0,0,0,5162,5163, + 1,0,0,0,5163,5165,3,500,250,0,5164,5161,1,0,0,0,5165,5168,1,0,0, + 0,5166,5164,1,0,0,0,5166,5167,1,0,0,0,5167,5170,1,0,0,0,5168,5166, + 1,0,0,0,5169,5158,1,0,0,0,5169,5159,1,0,0,0,5170,5172,1,0,0,0,5171, + 5157,1,0,0,0,5171,5172,1,0,0,0,5172,5179,1,0,0,0,5173,5175,5,194, + 0,0,5174,5176,3,502,251,0,5175,5174,1,0,0,0,5176,5177,1,0,0,0,5177, + 5175,1,0,0,0,5177,5178,1,0,0,0,5178,5180,1,0,0,0,5179,5173,1,0,0, + 0,5179,5180,1,0,0,0,5180,5185,1,0,0,0,5181,5184,3,504,252,0,5182, + 5184,3,506,253,0,5183,5181,1,0,0,0,5183,5182,1,0,0,0,5184,5187,1, + 0,0,0,5185,5183,1,0,0,0,5185,5186,1,0,0,0,5186,5190,1,0,0,0,5187, + 5185,1,0,0,0,5188,5189,7,79,0,0,5189,5191,5,882,0,0,5190,5188,1, + 0,0,0,5190,5191,1,0,0,0,5191,5198,1,0,0,0,5192,5193,3,652,326,0, + 5193,5194,5,42,0,0,5194,5195,5,582,0,0,5195,5196,3,462,231,0,5196, + 5198,1,0,0,0,5197,5141,1,0,0,0,5197,5149,1,0,0,0,5197,5192,1,0,0, + 0,5198,455,1,0,0,0,5199,5200,5,34,0,0,5200,5202,5,678,0,0,5201,5203, + 3,756,378,0,5202,5201,1,0,0,0,5202,5203,1,0,0,0,5203,5204,1,0,0, + 0,5204,5206,3,680,340,0,5205,5207,3,490,245,0,5206,5205,1,0,0,0, + 5206,5207,1,0,0,0,5207,5215,1,0,0,0,5208,5209,5,868,0,0,5209,5211, + 3,680,340,0,5210,5212,3,490,245,0,5211,5210,1,0,0,0,5211,5212,1, + 0,0,0,5212,5214,1,0,0,0,5213,5208,1,0,0,0,5214,5217,1,0,0,0,5215, + 5213,1,0,0,0,5215,5216,1,0,0,0,5216,5221,1,0,0,0,5217,5215,1,0,0, + 0,5218,5219,5,42,0,0,5219,5220,5,582,0,0,5220,5222,3,462,231,0,5221, + 5218,1,0,0,0,5221,5222,1,0,0,0,5222,5237,1,0,0,0,5223,5235,5,144, + 0,0,5224,5236,5,505,0,0,5225,5232,3,500,250,0,5226,5228,5,11,0,0, + 5227,5226,1,0,0,0,5227,5228,1,0,0,0,5228,5229,1,0,0,0,5229,5231, + 3,500,250,0,5230,5227,1,0,0,0,5231,5234,1,0,0,0,5232,5230,1,0,0, + 0,5232,5233,1,0,0,0,5233,5236,1,0,0,0,5234,5232,1,0,0,0,5235,5224, + 1,0,0,0,5235,5225,1,0,0,0,5236,5238,1,0,0,0,5237,5223,1,0,0,0,5237, + 5238,1,0,0,0,5238,5245,1,0,0,0,5239,5241,5,194,0,0,5240,5242,3,502, + 251,0,5241,5240,1,0,0,0,5242,5243,1,0,0,0,5243,5241,1,0,0,0,5243, + 5244,1,0,0,0,5244,5246,1,0,0,0,5245,5239,1,0,0,0,5245,5246,1,0,0, + 0,5246,5251,1,0,0,0,5247,5250,3,504,252,0,5248,5250,3,506,253,0, + 5249,5247,1,0,0,0,5249,5248,1,0,0,0,5250,5253,1,0,0,0,5251,5249, + 1,0,0,0,5251,5252,1,0,0,0,5252,5256,1,0,0,0,5253,5251,1,0,0,0,5254, + 5255,7,79,0,0,5255,5257,5,882,0,0,5256,5254,1,0,0,0,5256,5257,1, + 0,0,0,5257,457,1,0,0,0,5258,5259,5,51,0,0,5259,5261,5,678,0,0,5260, + 5262,3,754,377,0,5261,5260,1,0,0,0,5261,5262,1,0,0,0,5262,5263,1, + 0,0,0,5263,5268,3,680,340,0,5264,5265,5,868,0,0,5265,5267,3,680, + 340,0,5266,5264,1,0,0,0,5267,5270,1,0,0,0,5268,5266,1,0,0,0,5268, + 5269,1,0,0,0,5269,459,1,0,0,0,5270,5268,1,0,0,0,5271,5272,5,73,0, + 0,5272,5277,3,514,257,0,5273,5274,5,868,0,0,5274,5276,3,514,257, + 0,5275,5273,1,0,0,0,5276,5279,1,0,0,0,5277,5275,1,0,0,0,5277,5278, + 1,0,0,0,5278,5280,1,0,0,0,5279,5277,1,0,0,0,5280,5282,5,119,0,0, + 5281,5283,3,482,241,0,5282,5281,1,0,0,0,5282,5283,1,0,0,0,5283,5284, + 1,0,0,0,5284,5285,3,518,259,0,5285,5295,5,176,0,0,5286,5291,3,494, + 247,0,5287,5288,5,868,0,0,5288,5290,3,494,247,0,5289,5287,1,0,0, + 0,5290,5293,1,0,0,0,5291,5289,1,0,0,0,5291,5292,1,0,0,0,5292,5296, + 1,0,0,0,5293,5291,1,0,0,0,5294,5296,3,650,325,0,5295,5286,1,0,0, + 0,5295,5294,1,0,0,0,5296,5311,1,0,0,0,5297,5309,5,144,0,0,5298,5310, + 5,505,0,0,5299,5306,3,500,250,0,5300,5302,5,11,0,0,5301,5300,1,0, + 0,0,5301,5302,1,0,0,0,5302,5303,1,0,0,0,5303,5305,3,500,250,0,5304, + 5301,1,0,0,0,5305,5308,1,0,0,0,5306,5304,1,0,0,0,5306,5307,1,0,0, + 0,5307,5310,1,0,0,0,5308,5306,1,0,0,0,5309,5298,1,0,0,0,5309,5299, + 1,0,0,0,5310,5312,1,0,0,0,5311,5297,1,0,0,0,5311,5312,1,0,0,0,5312, + 5322,1,0,0,0,5313,5319,5,194,0,0,5314,5315,5,73,0,0,5315,5318,5, + 121,0,0,5316,5318,3,502,251,0,5317,5314,1,0,0,0,5317,5316,1,0,0, + 0,5318,5321,1,0,0,0,5319,5317,1,0,0,0,5319,5320,1,0,0,0,5320,5323, + 1,0,0,0,5321,5319,1,0,0,0,5322,5313,1,0,0,0,5322,5323,1,0,0,0,5323, + 5331,1,0,0,0,5324,5325,5,13,0,0,5325,5329,3,680,340,0,5326,5327, + 5,194,0,0,5327,5328,5,582,0,0,5328,5330,3,462,231,0,5329,5326,1, + 0,0,0,5329,5330,1,0,0,0,5330,5332,1,0,0,0,5331,5324,1,0,0,0,5331, + 5332,1,0,0,0,5332,5361,1,0,0,0,5333,5336,5,73,0,0,5334,5335,5,547, + 0,0,5335,5337,5,119,0,0,5336,5334,1,0,0,0,5336,5337,1,0,0,0,5337, + 5338,1,0,0,0,5338,5343,3,652,326,0,5339,5340,5,868,0,0,5340,5342, + 3,652,326,0,5341,5339,1,0,0,0,5342,5345,1,0,0,0,5343,5341,1,0,0, + 0,5343,5344,1,0,0,0,5344,5346,1,0,0,0,5345,5343,1,0,0,0,5346,5347, + 5,176,0,0,5347,5352,3,652,326,0,5348,5349,5,868,0,0,5349,5351,3, + 652,326,0,5350,5348,1,0,0,0,5351,5354,1,0,0,0,5352,5350,1,0,0,0, + 5352,5353,1,0,0,0,5353,5358,1,0,0,0,5354,5352,1,0,0,0,5355,5356, + 5,194,0,0,5356,5357,5,704,0,0,5357,5359,5,121,0,0,5358,5355,1,0, + 0,0,5358,5359,1,0,0,0,5359,5361,1,0,0,0,5360,5271,1,0,0,0,5360,5333, + 1,0,0,0,5361,461,1,0,0,0,5362,5371,5,42,0,0,5363,5371,5,505,0,0, + 5364,5367,5,7,0,0,5365,5366,5,59,0,0,5366,5368,3,650,325,0,5367, + 5365,1,0,0,0,5367,5368,1,0,0,0,5368,5371,1,0,0,0,5369,5371,3,650, + 325,0,5370,5362,1,0,0,0,5370,5363,1,0,0,0,5370,5364,1,0,0,0,5370, + 5369,1,0,0,0,5371,463,1,0,0,0,5372,5373,5,73,0,0,5373,5374,5,547, + 0,0,5374,5375,5,119,0,0,5375,5376,3,680,340,0,5376,5377,5,176,0, + 0,5377,5382,3,680,340,0,5378,5379,5,868,0,0,5379,5381,3,680,340, + 0,5380,5378,1,0,0,0,5381,5384,1,0,0,0,5382,5380,1,0,0,0,5382,5383, + 1,0,0,0,5383,5388,1,0,0,0,5384,5382,1,0,0,0,5385,5386,5,194,0,0, + 5386,5387,5,73,0,0,5387,5389,5,121,0,0,5388,5385,1,0,0,0,5388,5389, + 1,0,0,0,5389,465,1,0,0,0,5390,5391,5,8,0,0,5391,5392,5,739,0,0,5392, + 5393,5,74,0,0,5393,5399,3,642,321,0,5394,5396,5,190,0,0,5395,5397, + 5,857,0,0,5396,5395,1,0,0,0,5396,5397,1,0,0,0,5397,5398,1,0,0,0, + 5398,5400,3,474,237,0,5399,5394,1,0,0,0,5399,5400,1,0,0,0,5400,5406, + 1,0,0,0,5401,5403,5,837,0,0,5402,5404,5,857,0,0,5403,5402,1,0,0, + 0,5403,5404,1,0,0,0,5404,5405,1,0,0,0,5405,5407,3,708,354,0,5406, + 5401,1,0,0,0,5406,5407,1,0,0,0,5407,5412,1,0,0,0,5408,5410,7,38, + 0,0,5409,5411,5,66,0,0,5410,5409,1,0,0,0,5410,5411,1,0,0,0,5411, + 5413,1,0,0,0,5412,5408,1,0,0,0,5412,5413,1,0,0,0,5413,467,1,0,0, + 0,5414,5415,5,34,0,0,5415,5416,5,739,0,0,5416,5417,5,74,0,0,5417, + 5418,3,640,320,0,5418,5419,5,839,0,0,5419,5420,5,857,0,0,5420,5426, + 7,80,0,0,5421,5423,5,190,0,0,5422,5424,5,857,0,0,5423,5422,1,0,0, + 0,5423,5424,1,0,0,0,5424,5425,1,0,0,0,5425,5427,3,474,237,0,5426, + 5421,1,0,0,0,5426,5427,1,0,0,0,5427,5433,1,0,0,0,5428,5430,5,837, + 0,0,5429,5431,5,857,0,0,5430,5429,1,0,0,0,5430,5431,1,0,0,0,5431, + 5432,1,0,0,0,5432,5434,3,708,354,0,5433,5428,1,0,0,0,5433,5434,1, + 0,0,0,5434,5436,1,0,0,0,5435,5437,7,38,0,0,5436,5435,1,0,0,0,5436, + 5437,1,0,0,0,5437,469,1,0,0,0,5438,5439,5,51,0,0,5439,5440,5,739, + 0,0,5440,5441,5,74,0,0,5441,5443,3,642,321,0,5442,5444,5,66,0,0, + 5443,5442,1,0,0,0,5443,5444,1,0,0,0,5444,471,1,0,0,0,5445,5446,5, + 155,0,0,5446,5447,5,739,0,0,5447,5448,5,74,0,0,5448,5458,3,642,321, + 0,5449,5450,5,65,0,0,5450,5455,3,708,354,0,5451,5452,5,868,0,0,5452, + 5454,3,708,354,0,5453,5451,1,0,0,0,5454,5457,1,0,0,0,5455,5453,1, + 0,0,0,5455,5456,1,0,0,0,5456,5459,1,0,0,0,5457,5455,1,0,0,0,5458, + 5449,1,0,0,0,5458,5459,1,0,0,0,5459,473,1,0,0,0,5460,5466,3,708, + 354,0,5461,5462,3,708,354,0,5462,5463,5,854,0,0,5463,5464,3,708, + 354,0,5464,5466,1,0,0,0,5465,5460,1,0,0,0,5465,5461,1,0,0,0,5466, + 5471,1,0,0,0,5467,5468,5,868,0,0,5468,5470,3,474,237,0,5469,5467, + 1,0,0,0,5470,5473,1,0,0,0,5471,5469,1,0,0,0,5471,5472,1,0,0,0,5472, + 475,1,0,0,0,5473,5471,1,0,0,0,5474,5475,5,141,0,0,5475,5476,5,678, + 0,0,5476,5481,3,520,260,0,5477,5478,5,868,0,0,5478,5480,3,520,260, + 0,5479,5477,1,0,0,0,5480,5483,1,0,0,0,5481,5479,1,0,0,0,5481,5482, + 1,0,0,0,5482,477,1,0,0,0,5483,5481,1,0,0,0,5484,5486,5,149,0,0,5485, + 5487,3,754,377,0,5486,5485,1,0,0,0,5486,5487,1,0,0,0,5487,5488,1, + 0,0,0,5488,5493,3,514,257,0,5489,5490,5,868,0,0,5490,5492,3,514, + 257,0,5491,5489,1,0,0,0,5492,5495,1,0,0,0,5493,5491,1,0,0,0,5493, + 5494,1,0,0,0,5494,5496,1,0,0,0,5495,5493,1,0,0,0,5496,5498,5,119, + 0,0,5497,5499,3,482,241,0,5498,5497,1,0,0,0,5498,5499,1,0,0,0,5499, + 5500,1,0,0,0,5500,5501,3,518,259,0,5501,5502,5,68,0,0,5502,5504, + 3,650,325,0,5503,5505,3,480,240,0,5504,5503,1,0,0,0,5504,5505,1, + 0,0,0,5505,5537,1,0,0,0,5506,5508,5,149,0,0,5507,5509,3,754,377, + 0,5508,5507,1,0,0,0,5508,5509,1,0,0,0,5509,5510,1,0,0,0,5510,5512, + 5,7,0,0,5511,5513,5,734,0,0,5512,5511,1,0,0,0,5512,5513,1,0,0,0, + 5513,5514,1,0,0,0,5514,5515,5,868,0,0,5515,5516,5,73,0,0,5516,5517, + 5,121,0,0,5517,5518,5,68,0,0,5518,5520,3,650,325,0,5519,5521,3,480, + 240,0,5520,5519,1,0,0,0,5520,5521,1,0,0,0,5521,5537,1,0,0,0,5522, + 5524,5,149,0,0,5523,5525,3,754,377,0,5524,5523,1,0,0,0,5524,5525, + 1,0,0,0,5525,5528,1,0,0,0,5526,5527,5,547,0,0,5527,5529,5,119,0, + 0,5528,5526,1,0,0,0,5528,5529,1,0,0,0,5529,5530,1,0,0,0,5530,5531, + 3,650,325,0,5531,5532,5,68,0,0,5532,5534,3,650,325,0,5533,5535,3, + 480,240,0,5534,5533,1,0,0,0,5534,5535,1,0,0,0,5535,5537,1,0,0,0, + 5536,5484,1,0,0,0,5536,5506,1,0,0,0,5536,5522,1,0,0,0,5537,479,1, + 0,0,0,5538,5539,5,79,0,0,5539,5540,5,674,0,0,5540,5541,5,678,0,0, + 5541,481,1,0,0,0,5542,5543,7,81,0,0,5543,483,1,0,0,0,5544,5545,5, + 155,0,0,5545,5548,5,529,0,0,5546,5547,5,65,0,0,5547,5549,3,680,340, + 0,5548,5546,1,0,0,0,5548,5549,1,0,0,0,5549,5550,1,0,0,0,5550,5553, + 5,857,0,0,5551,5554,3,794,397,0,5552,5554,5,882,0,0,5553,5551,1, + 0,0,0,5553,5552,1,0,0,0,5554,5577,1,0,0,0,5555,5556,5,155,0,0,5556, + 5559,5,529,0,0,5557,5558,5,65,0,0,5558,5560,3,680,340,0,5559,5557, + 1,0,0,0,5559,5560,1,0,0,0,5560,5565,1,0,0,0,5561,5562,5,176,0,0, + 5562,5566,5,829,0,0,5563,5564,5,857,0,0,5564,5566,5,882,0,0,5565, + 5561,1,0,0,0,5565,5563,1,0,0,0,5566,5569,1,0,0,0,5567,5568,5,143, + 0,0,5568,5570,5,882,0,0,5569,5567,1,0,0,0,5569,5570,1,0,0,0,5570, + 5574,1,0,0,0,5571,5572,5,147,0,0,5572,5573,5,36,0,0,5573,5575,5, + 529,0,0,5574,5571,1,0,0,0,5574,5575,1,0,0,0,5575,5577,1,0,0,0,5576, + 5544,1,0,0,0,5576,5555,1,0,0,0,5577,485,1,0,0,0,5578,5579,3,680, + 340,0,5579,5580,3,504,252,0,5580,487,1,0,0,0,5581,5607,3,680,340, + 0,5582,5583,5,423,0,0,5583,5584,5,20,0,0,5584,5585,5,882,0,0,5585, + 5608,3,496,248,0,5586,5587,5,423,0,0,5587,5588,5,20,0,0,5588,5589, + 5,829,0,0,5589,5590,5,529,0,0,5590,5608,3,496,248,0,5591,5592,5, + 423,0,0,5592,5593,5,194,0,0,5593,5608,3,498,249,0,5594,5595,5,369, + 0,0,5595,5596,5,511,0,0,5596,5608,5,529,0,0,5597,5598,7,82,0,0,5598, + 5600,3,512,256,0,5599,5601,3,508,254,0,5600,5599,1,0,0,0,5600,5601, + 1,0,0,0,5601,5603,1,0,0,0,5602,5597,1,0,0,0,5603,5604,1,0,0,0,5604, + 5602,1,0,0,0,5604,5605,1,0,0,0,5605,5608,1,0,0,0,5606,5608,3,510, + 255,0,5607,5582,1,0,0,0,5607,5586,1,0,0,0,5607,5591,1,0,0,0,5607, + 5594,1,0,0,0,5607,5602,1,0,0,0,5607,5606,1,0,0,0,5607,5608,1,0,0, + 0,5608,489,1,0,0,0,5609,5610,5,423,0,0,5610,5616,5,20,0,0,5611,5617, + 5,882,0,0,5612,5613,5,829,0,0,5613,5617,5,529,0,0,5614,5615,5,529, + 0,0,5615,5617,5,882,0,0,5616,5611,1,0,0,0,5616,5612,1,0,0,0,5616, + 5614,1,0,0,0,5617,5620,1,0,0,0,5618,5619,5,11,0,0,5619,5621,3,490, + 245,0,5620,5618,1,0,0,0,5620,5621,1,0,0,0,5621,5646,1,0,0,0,5622, + 5623,5,423,0,0,5623,5624,5,194,0,0,5624,5633,3,702,351,0,5625,5629, + 5,20,0,0,5626,5630,5,882,0,0,5627,5628,5,829,0,0,5628,5630,5,529, + 0,0,5629,5626,1,0,0,0,5629,5627,1,0,0,0,5630,5634,1,0,0,0,5631,5632, + 5,13,0,0,5632,5634,5,882,0,0,5633,5625,1,0,0,0,5633,5631,1,0,0,0, + 5633,5634,1,0,0,0,5634,5637,1,0,0,0,5635,5636,5,11,0,0,5636,5638, + 3,490,245,0,5637,5635,1,0,0,0,5637,5638,1,0,0,0,5638,5646,1,0,0, + 0,5639,5640,5,423,0,0,5640,5641,5,194,0,0,5641,5643,3,702,351,0, + 5642,5644,3,492,246,0,5643,5642,1,0,0,0,5643,5644,1,0,0,0,5644,5646, + 1,0,0,0,5645,5609,1,0,0,0,5645,5622,1,0,0,0,5645,5639,1,0,0,0,5646, + 491,1,0,0,0,5647,5648,5,427,0,0,5648,5649,5,708,0,0,5649,5650,5, + 423,0,0,5650,5654,5,20,0,0,5651,5652,5,829,0,0,5652,5655,5,529,0, + 0,5653,5655,5,882,0,0,5654,5651,1,0,0,0,5654,5653,1,0,0,0,5655,5665, + 1,0,0,0,5656,5657,5,427,0,0,5657,5658,5,708,0,0,5658,5659,5,423, + 0,0,5659,5660,5,194,0,0,5660,5661,3,702,351,0,5661,5662,5,13,0,0, + 5662,5663,5,882,0,0,5663,5665,1,0,0,0,5664,5647,1,0,0,0,5664,5656, + 1,0,0,0,5665,493,1,0,0,0,5666,5667,3,680,340,0,5667,5668,5,423,0, + 0,5668,5669,5,20,0,0,5669,5670,5,529,0,0,5670,5671,5,882,0,0,5671, + 5692,1,0,0,0,5672,5673,3,680,340,0,5673,5674,5,423,0,0,5674,5675, + 5,20,0,0,5675,5676,5,829,0,0,5676,5677,5,529,0,0,5677,5678,3,496, + 248,0,5678,5692,1,0,0,0,5679,5680,3,680,340,0,5680,5681,5,423,0, + 0,5681,5682,5,20,0,0,5682,5683,5,882,0,0,5683,5684,3,496,248,0,5684, + 5692,1,0,0,0,5685,5686,3,680,340,0,5686,5687,5,423,0,0,5687,5688, + 5,194,0,0,5688,5689,3,498,249,0,5689,5692,1,0,0,0,5690,5692,3,680, + 340,0,5691,5666,1,0,0,0,5691,5672,1,0,0,0,5691,5679,1,0,0,0,5691, + 5685,1,0,0,0,5691,5690,1,0,0,0,5692,495,1,0,0,0,5693,5694,5,143, + 0,0,5694,5696,5,882,0,0,5695,5693,1,0,0,0,5695,5696,1,0,0,0,5696, + 5700,1,0,0,0,5697,5698,5,147,0,0,5698,5699,5,36,0,0,5699,5701,5, + 529,0,0,5700,5697,1,0,0,0,5700,5701,1,0,0,0,5701,497,1,0,0,0,5702, + 5710,3,702,351,0,5703,5707,7,83,0,0,5704,5708,5,882,0,0,5705,5706, + 5,829,0,0,5706,5708,5,529,0,0,5707,5704,1,0,0,0,5707,5705,1,0,0, + 0,5708,5709,1,0,0,0,5709,5711,3,496,248,0,5710,5703,1,0,0,0,5710, + 5711,1,0,0,0,5711,5717,1,0,0,0,5712,5713,3,702,351,0,5713,5714,5, + 188,0,0,5714,5715,3,794,397,0,5715,5717,1,0,0,0,5716,5702,1,0,0, + 0,5716,5712,1,0,0,0,5717,499,1,0,0,0,5718,5727,5,169,0,0,5719,5727, + 5,693,0,0,5720,5721,5,331,0,0,5721,5727,5,882,0,0,5722,5723,5,441, + 0,0,5723,5727,5,882,0,0,5724,5725,5,651,0,0,5725,5727,5,882,0,0, + 5726,5718,1,0,0,0,5726,5719,1,0,0,0,5726,5720,1,0,0,0,5726,5722, + 1,0,0,0,5726,5724,1,0,0,0,5727,501,1,0,0,0,5728,5729,5,479,0,0,5729, + 5737,3,708,354,0,5730,5731,5,482,0,0,5731,5737,3,708,354,0,5732, + 5733,5,478,0,0,5733,5737,3,708,354,0,5734,5735,5,483,0,0,5735,5737, + 3,708,354,0,5736,5728,1,0,0,0,5736,5730,1,0,0,0,5736,5732,1,0,0, + 0,5736,5734,1,0,0,0,5737,503,1,0,0,0,5738,5739,5,529,0,0,5739,5746, + 5,390,0,0,5740,5747,5,42,0,0,5741,5747,5,500,0,0,5742,5743,5,87, + 0,0,5743,5744,3,708,354,0,5744,5745,5,698,0,0,5745,5747,1,0,0,0, + 5746,5740,1,0,0,0,5746,5741,1,0,0,0,5746,5742,1,0,0,0,5746,5747, + 1,0,0,0,5747,5777,1,0,0,0,5748,5749,5,529,0,0,5749,5752,5,420,0, + 0,5750,5753,5,42,0,0,5751,5753,3,708,354,0,5752,5750,1,0,0,0,5752, + 5751,1,0,0,0,5753,5777,1,0,0,0,5754,5755,5,529,0,0,5755,5756,5,581, + 0,0,5756,5761,5,87,0,0,5757,5762,5,42,0,0,5758,5759,3,708,354,0, + 5759,5760,5,698,0,0,5760,5762,1,0,0,0,5761,5757,1,0,0,0,5761,5758, + 1,0,0,0,5762,5777,1,0,0,0,5763,5764,5,529,0,0,5764,5765,5,144,0, + 0,5765,5767,5,36,0,0,5766,5768,7,84,0,0,5767,5766,1,0,0,0,5767,5768, + 1,0,0,0,5768,5777,1,0,0,0,5769,5770,5,395,0,0,5770,5777,3,708,354, + 0,5771,5774,5,530,0,0,5772,5775,3,708,354,0,5773,5775,5,669,0,0, + 5774,5772,1,0,0,0,5774,5773,1,0,0,0,5775,5777,1,0,0,0,5776,5738, + 1,0,0,0,5776,5748,1,0,0,0,5776,5754,1,0,0,0,5776,5763,1,0,0,0,5776, + 5769,1,0,0,0,5776,5771,1,0,0,0,5777,505,1,0,0,0,5778,5779,5,304, + 0,0,5779,5780,7,85,0,0,5780,507,1,0,0,0,5781,5784,5,423,0,0,5782, + 5783,5,194,0,0,5783,5785,3,702,351,0,5784,5782,1,0,0,0,5784,5785, + 1,0,0,0,5785,5794,1,0,0,0,5786,5790,5,20,0,0,5787,5791,5,882,0,0, + 5788,5789,5,829,0,0,5789,5791,5,529,0,0,5790,5787,1,0,0,0,5790,5788, + 1,0,0,0,5791,5795,1,0,0,0,5792,5793,5,13,0,0,5793,5795,5,882,0,0, + 5794,5786,1,0,0,0,5794,5792,1,0,0,0,5795,509,1,0,0,0,5796,5797,3, + 512,256,0,5797,5798,5,429,0,0,5798,5799,5,555,0,0,5799,5812,1,0, + 0,0,5800,5801,3,512,256,0,5801,5802,5,401,0,0,5802,5803,5,555,0, + 0,5803,5804,5,155,0,0,5804,5805,5,330,0,0,5805,5806,5,13,0,0,5806, + 5807,5,882,0,0,5807,5812,1,0,0,0,5808,5809,3,512,256,0,5809,5810, + 5,675,0,0,5810,5812,1,0,0,0,5811,5796,1,0,0,0,5811,5800,1,0,0,0, + 5811,5808,1,0,0,0,5812,511,1,0,0,0,5813,5814,7,86,0,0,5814,5815, + 5,394,0,0,5815,513,1,0,0,0,5816,5821,3,516,258,0,5817,5818,5,866, + 0,0,5818,5819,3,656,328,0,5819,5820,5,867,0,0,5820,5822,1,0,0,0, + 5821,5817,1,0,0,0,5821,5822,1,0,0,0,5822,515,1,0,0,0,5823,5825,5, + 7,0,0,5824,5826,5,734,0,0,5825,5824,1,0,0,0,5825,5826,1,0,0,0,5826, + 5917,1,0,0,0,5827,5829,5,8,0,0,5828,5830,5,743,0,0,5829,5828,1,0, + 0,0,5829,5830,1,0,0,0,5830,5917,1,0,0,0,5831,5839,5,34,0,0,5832, + 5833,5,660,0,0,5833,5840,5,752,0,0,5834,5840,5,743,0,0,5835,5840, + 5,684,0,0,5836,5840,5,678,0,0,5837,5840,5,658,0,0,5838,5840,5,582, + 0,0,5839,5832,1,0,0,0,5839,5834,1,0,0,0,5839,5835,1,0,0,0,5839,5836, + 1,0,0,0,5839,5837,1,0,0,0,5839,5838,1,0,0,0,5839,5840,1,0,0,0,5840, + 5917,1,0,0,0,5841,5917,5,44,0,0,5842,5844,5,51,0,0,5843,5845,5,582, + 0,0,5844,5843,1,0,0,0,5844,5845,1,0,0,0,5845,5917,1,0,0,0,5846,5917, + 5,385,0,0,5847,5917,5,717,0,0,5848,5917,5,718,0,0,5849,5850,5,73, + 0,0,5850,5917,5,121,0,0,5851,5917,5,82,0,0,5852,5917,5,86,0,0,5853, + 5854,5,104,0,0,5854,5917,5,752,0,0,5855,5917,5,735,0,0,5856,5917, + 5,547,0,0,5857,5917,5,138,0,0,5858,5917,5,736,0,0,5859,5860,5,572, + 0,0,5860,5917,7,87,0,0,5861,5917,5,154,0,0,5862,5863,5,157,0,0,5863, + 5917,7,88,0,0,5864,5917,5,749,0,0,5865,5917,5,750,0,0,5866,5917, + 5,178,0,0,5867,5917,5,185,0,0,5868,5917,5,186,0,0,5869,5917,5,705, + 0,0,5870,5917,5,706,0,0,5871,5917,5,707,0,0,5872,5917,5,709,0,0, + 5873,5917,5,710,0,0,5874,5917,5,711,0,0,5875,5917,5,712,0,0,5876, + 5917,5,714,0,0,5877,5917,5,715,0,0,5878,5917,5,716,0,0,5879,5917, + 5,719,0,0,5880,5917,5,720,0,0,5881,5917,5,721,0,0,5882,5917,5,722, + 0,0,5883,5917,5,723,0,0,5884,5917,5,724,0,0,5885,5917,5,725,0,0, + 5886,5917,5,726,0,0,5887,5917,5,727,0,0,5888,5917,5,728,0,0,5889, + 5917,5,731,0,0,5890,5917,5,732,0,0,5891,5917,5,733,0,0,5892,5917, + 5,737,0,0,5893,5917,5,738,0,0,5894,5917,5,740,0,0,5895,5917,5,741, + 0,0,5896,5917,5,742,0,0,5897,5917,5,745,0,0,5898,5917,5,746,0,0, + 5899,5917,5,747,0,0,5900,5917,5,160,0,0,5901,5917,5,748,0,0,5902, + 5917,5,836,0,0,5903,5917,5,751,0,0,5904,5917,5,753,0,0,5905,5917, + 5,838,0,0,5906,5917,5,754,0,0,5907,5917,5,755,0,0,5908,5909,5,103, + 0,0,5909,5910,5,68,0,0,5910,5917,5,744,0,0,5911,5912,5,154,0,0,5912, + 5913,5,88,0,0,5913,5917,5,744,0,0,5914,5915,5,729,0,0,5915,5917, + 5,730,0,0,5916,5823,1,0,0,0,5916,5827,1,0,0,0,5916,5831,1,0,0,0, + 5916,5841,1,0,0,0,5916,5842,1,0,0,0,5916,5846,1,0,0,0,5916,5847, + 1,0,0,0,5916,5848,1,0,0,0,5916,5849,1,0,0,0,5916,5851,1,0,0,0,5916, + 5852,1,0,0,0,5916,5853,1,0,0,0,5916,5855,1,0,0,0,5916,5856,1,0,0, + 0,5916,5857,1,0,0,0,5916,5858,1,0,0,0,5916,5859,1,0,0,0,5916,5861, + 1,0,0,0,5916,5862,1,0,0,0,5916,5864,1,0,0,0,5916,5865,1,0,0,0,5916, + 5866,1,0,0,0,5916,5867,1,0,0,0,5916,5868,1,0,0,0,5916,5869,1,0,0, + 0,5916,5870,1,0,0,0,5916,5871,1,0,0,0,5916,5872,1,0,0,0,5916,5873, + 1,0,0,0,5916,5874,1,0,0,0,5916,5875,1,0,0,0,5916,5876,1,0,0,0,5916, + 5877,1,0,0,0,5916,5878,1,0,0,0,5916,5879,1,0,0,0,5916,5880,1,0,0, + 0,5916,5881,1,0,0,0,5916,5882,1,0,0,0,5916,5883,1,0,0,0,5916,5884, + 1,0,0,0,5916,5885,1,0,0,0,5916,5886,1,0,0,0,5916,5887,1,0,0,0,5916, + 5888,1,0,0,0,5916,5889,1,0,0,0,5916,5890,1,0,0,0,5916,5891,1,0,0, + 0,5916,5892,1,0,0,0,5916,5893,1,0,0,0,5916,5894,1,0,0,0,5916,5895, + 1,0,0,0,5916,5896,1,0,0,0,5916,5897,1,0,0,0,5916,5898,1,0,0,0,5916, + 5899,1,0,0,0,5916,5900,1,0,0,0,5916,5901,1,0,0,0,5916,5902,1,0,0, + 0,5916,5903,1,0,0,0,5916,5904,1,0,0,0,5916,5905,1,0,0,0,5916,5906, + 1,0,0,0,5916,5907,1,0,0,0,5916,5908,1,0,0,0,5916,5911,1,0,0,0,5916, + 5914,1,0,0,0,5917,517,1,0,0,0,5918,5935,5,850,0,0,5919,5920,5,850, + 0,0,5920,5921,5,865,0,0,5921,5935,5,850,0,0,5922,5923,3,702,351, + 0,5923,5924,5,865,0,0,5924,5925,5,850,0,0,5925,5935,1,0,0,0,5926, + 5927,3,702,351,0,5927,5928,5,865,0,0,5928,5929,3,702,351,0,5929, + 5935,1,0,0,0,5930,5931,3,702,351,0,5931,5932,3,706,353,0,5932,5935, + 1,0,0,0,5933,5935,3,702,351,0,5934,5918,1,0,0,0,5934,5919,1,0,0, + 0,5934,5922,1,0,0,0,5934,5926,1,0,0,0,5934,5930,1,0,0,0,5934,5933, + 1,0,0,0,5935,519,1,0,0,0,5936,5937,3,680,340,0,5937,5938,5,176,0, + 0,5938,5939,3,680,340,0,5939,521,1,0,0,0,5940,5942,5,10,0,0,5941, + 5943,3,532,266,0,5942,5941,1,0,0,0,5942,5943,1,0,0,0,5943,5944,1, + 0,0,0,5944,5945,5,173,0,0,5945,5989,3,646,323,0,5946,5948,5,10,0, + 0,5947,5949,3,532,266,0,5948,5947,1,0,0,0,5948,5949,1,0,0,0,5949, + 5950,1,0,0,0,5950,5951,5,173,0,0,5951,5952,3,648,324,0,5952,5953, + 5,185,0,0,5953,5954,5,77,0,0,5954,5955,5,119,0,0,5955,5960,3,656, + 328,0,5956,5957,5,194,0,0,5957,5958,3,708,354,0,5958,5959,5,19,0, + 0,5959,5961,1,0,0,0,5960,5956,1,0,0,0,5960,5961,1,0,0,0,5961,5989, + 1,0,0,0,5962,5964,5,10,0,0,5963,5965,3,532,266,0,5964,5963,1,0,0, + 0,5964,5965,1,0,0,0,5965,5966,1,0,0,0,5966,5967,5,173,0,0,5967,5968, + 3,648,324,0,5968,5969,5,185,0,0,5969,5970,5,77,0,0,5970,5971,5,119, + 0,0,5971,5975,3,658,329,0,5972,5973,5,188,0,0,5973,5974,5,360,0, + 0,5974,5976,5,882,0,0,5975,5972,1,0,0,0,5975,5976,1,0,0,0,5976,5989, + 1,0,0,0,5977,5979,5,10,0,0,5978,5980,3,532,266,0,5979,5978,1,0,0, + 0,5979,5980,1,0,0,0,5980,5981,1,0,0,0,5981,5982,5,173,0,0,5982,5983, + 3,648,324,0,5983,5984,5,51,0,0,5984,5985,5,77,0,0,5985,5986,5,119, + 0,0,5986,5987,3,656,328,0,5987,5989,1,0,0,0,5988,5940,1,0,0,0,5988, + 5946,1,0,0,0,5988,5962,1,0,0,0,5988,5977,1,0,0,0,5989,523,1,0,0, + 0,5990,5991,5,27,0,0,5991,5992,5,173,0,0,5992,5996,3,646,323,0,5993, + 5995,3,534,267,0,5994,5993,1,0,0,0,5995,5998,1,0,0,0,5996,5994,1, + 0,0,0,5996,5997,1,0,0,0,5997,525,1,0,0,0,5998,5996,1,0,0,0,5999, + 6000,5,329,0,0,6000,6001,5,173,0,0,6001,6003,3,646,323,0,6002,6004, + 7,89,0,0,6003,6002,1,0,0,0,6003,6004,1,0,0,0,6004,527,1,0,0,0,6005, + 6007,5,120,0,0,6006,6008,3,532,266,0,6007,6006,1,0,0,0,6007,6008, + 1,0,0,0,6008,6009,1,0,0,0,6009,6010,7,60,0,0,6010,6011,3,646,323, + 0,6011,529,1,0,0,0,6012,6014,5,562,0,0,6013,6015,3,532,266,0,6014, + 6013,1,0,0,0,6014,6015,1,0,0,0,6015,6016,1,0,0,0,6016,6017,5,173, + 0,0,6017,6019,3,646,323,0,6018,6020,5,549,0,0,6019,6018,1,0,0,0, + 6019,6020,1,0,0,0,6020,6022,1,0,0,0,6021,6023,5,392,0,0,6022,6021, + 1,0,0,0,6022,6023,1,0,0,0,6023,6025,1,0,0,0,6024,6026,5,679,0,0, + 6025,6024,1,0,0,0,6025,6026,1,0,0,0,6026,531,1,0,0,0,6027,6028,7, + 90,0,0,6028,533,1,0,0,0,6029,6030,5,65,0,0,6030,6037,5,677,0,0,6031, + 6037,5,549,0,0,6032,6037,5,396,0,0,6033,6037,5,484,0,0,6034,6037, + 5,392,0,0,6035,6037,5,327,0,0,6036,6029,1,0,0,0,6036,6031,1,0,0, + 0,6036,6032,1,0,0,0,6036,6033,1,0,0,0,6036,6034,1,0,0,0,6036,6035, + 1,0,0,0,6037,535,1,0,0,0,6038,6040,5,34,0,0,6039,6041,5,307,0,0, + 6040,6039,1,0,0,0,6040,6041,1,0,0,0,6041,6042,1,0,0,0,6042,6044, + 5,409,0,0,6043,6045,3,756,378,0,6044,6043,1,0,0,0,6044,6045,1,0, + 0,0,6045,6046,1,0,0,0,6046,6047,3,626,313,0,6047,6048,5,580,0,0, + 6048,6049,7,91,0,0,6049,6050,5,603,0,0,6050,6051,5,882,0,0,6051, + 537,1,0,0,0,6052,6053,5,432,0,0,6053,6054,5,344,0,0,6054,6059,3, + 702,351,0,6055,6056,5,868,0,0,6056,6058,3,702,351,0,6057,6055,1, + 0,0,0,6058,6061,1,0,0,0,6059,6057,1,0,0,0,6059,6060,1,0,0,0,6060, + 6071,1,0,0,0,6061,6059,1,0,0,0,6062,6063,5,155,0,0,6063,6068,3,540, + 270,0,6064,6065,5,868,0,0,6065,6067,3,540,270,0,6066,6064,1,0,0, + 0,6067,6070,1,0,0,0,6068,6066,1,0,0,0,6068,6069,1,0,0,0,6069,6072, + 1,0,0,0,6070,6068,1,0,0,0,6071,6062,1,0,0,0,6071,6072,1,0,0,0,6072, + 539,1,0,0,0,6073,6074,7,92,0,0,6074,6075,3,698,349,0,6075,6076,5, + 857,0,0,6076,6077,3,800,400,0,6077,541,1,0,0,0,6078,6079,5,673,0, + 0,6079,6080,5,344,0,0,6080,6085,3,702,351,0,6081,6082,5,868,0,0, + 6082,6084,3,702,351,0,6083,6081,1,0,0,0,6084,6087,1,0,0,0,6085,6083, + 1,0,0,0,6085,6086,1,0,0,0,6086,543,1,0,0,0,6087,6085,1,0,0,0,6088, + 6089,5,432,0,0,6089,6090,5,534,0,0,6090,6091,3,702,351,0,6091,6092, + 5,603,0,0,6092,6093,5,882,0,0,6093,545,1,0,0,0,6094,6095,5,673,0, + 0,6095,6096,5,534,0,0,6096,6097,3,702,351,0,6097,547,1,0,0,0,6098, + 6099,5,713,0,0,6099,6100,5,450,0,0,6100,6101,5,360,0,0,6101,6103, + 5,367,0,0,6102,6104,5,857,0,0,6103,6102,1,0,0,0,6103,6104,1,0,0, + 0,6104,6105,1,0,0,0,6105,6129,5,882,0,0,6106,6107,5,713,0,0,6107, + 6108,5,433,0,0,6108,6109,5,68,0,0,6109,6110,3,672,336,0,6110,6111, + 5,423,0,0,6111,6112,5,20,0,0,6112,6119,5,882,0,0,6113,6114,5,360, + 0,0,6114,6116,5,367,0,0,6115,6117,5,857,0,0,6116,6115,1,0,0,0,6116, + 6117,1,0,0,0,6117,6118,1,0,0,0,6118,6120,5,882,0,0,6119,6113,1,0, + 0,0,6119,6120,1,0,0,0,6120,6126,1,0,0,0,6121,6123,5,144,0,0,6122, + 6124,5,502,0,0,6123,6122,1,0,0,0,6123,6124,1,0,0,0,6124,6125,1,0, + 0,0,6125,6127,5,169,0,0,6126,6121,1,0,0,0,6126,6127,1,0,0,0,6127, + 6129,1,0,0,0,6128,6098,1,0,0,0,6128,6106,1,0,0,0,6129,549,1,0,0, + 0,6130,6131,5,155,0,0,6131,6132,3,554,277,0,6132,6135,7,93,0,0,6133, + 6136,3,800,400,0,6134,6136,5,119,0,0,6135,6133,1,0,0,0,6135,6134, + 1,0,0,0,6136,6146,1,0,0,0,6137,6138,5,868,0,0,6138,6139,3,554,277, + 0,6139,6142,7,93,0,0,6140,6143,3,800,400,0,6141,6143,5,119,0,0,6142, + 6140,1,0,0,0,6142,6141,1,0,0,0,6143,6145,1,0,0,0,6144,6137,1,0,0, + 0,6145,6148,1,0,0,0,6146,6144,1,0,0,0,6146,6147,1,0,0,0,6147,6183, + 1,0,0,0,6148,6146,1,0,0,0,6149,6150,5,155,0,0,6150,6153,3,54,27, + 0,6151,6154,3,684,342,0,6152,6154,5,42,0,0,6153,6151,1,0,0,0,6153, + 6152,1,0,0,0,6154,6183,1,0,0,0,6155,6156,5,155,0,0,6156,6163,5,497, + 0,0,6157,6160,3,684,342,0,6158,6159,5,28,0,0,6159,6161,3,686,343, + 0,6160,6158,1,0,0,0,6160,6161,1,0,0,0,6161,6164,1,0,0,0,6162,6164, + 5,42,0,0,6163,6157,1,0,0,0,6163,6162,1,0,0,0,6164,6183,1,0,0,0,6165, + 6183,3,484,242,0,6166,6183,3,336,168,0,6167,6183,3,334,167,0,6168, + 6169,5,155,0,0,6169,6170,3,698,349,0,6170,6171,7,93,0,0,6171,6179, + 3,800,400,0,6172,6173,5,868,0,0,6173,6174,3,698,349,0,6174,6175, + 7,93,0,0,6175,6176,3,800,400,0,6176,6178,1,0,0,0,6177,6172,1,0,0, + 0,6178,6181,1,0,0,0,6179,6177,1,0,0,0,6179,6180,1,0,0,0,6180,6183, + 1,0,0,0,6181,6179,1,0,0,0,6182,6130,1,0,0,0,6182,6149,1,0,0,0,6182, + 6155,1,0,0,0,6182,6165,1,0,0,0,6182,6166,1,0,0,0,6182,6167,1,0,0, + 0,6182,6168,1,0,0,0,6183,551,1,0,0,0,6184,6185,5,157,0,0,6185,6186, + 7,62,0,0,6186,6369,5,452,0,0,6187,6188,5,157,0,0,6188,6189,7,94, + 0,0,6189,6192,5,386,0,0,6190,6191,5,80,0,0,6191,6193,5,882,0,0,6192, + 6190,1,0,0,0,6192,6193,1,0,0,0,6193,6196,1,0,0,0,6194,6195,5,68, + 0,0,6195,6197,3,708,354,0,6196,6194,1,0,0,0,6196,6197,1,0,0,0,6197, + 6205,1,0,0,0,6198,6202,5,100,0,0,6199,6200,3,708,354,0,6200,6201, + 5,868,0,0,6201,6203,1,0,0,0,6202,6199,1,0,0,0,6202,6203,1,0,0,0, + 6203,6204,1,0,0,0,6204,6206,3,708,354,0,6205,6198,1,0,0,0,6205,6206, + 1,0,0,0,6206,6208,1,0,0,0,6207,6209,3,384,192,0,6208,6207,1,0,0, + 0,6208,6209,1,0,0,0,6209,6369,1,0,0,0,6210,6211,5,157,0,0,6211,6213, + 3,556,278,0,6212,6214,3,558,279,0,6213,6212,1,0,0,0,6213,6214,1, + 0,0,0,6214,6369,1,0,0,0,6215,6217,5,157,0,0,6216,6218,5,392,0,0, + 6217,6216,1,0,0,0,6217,6218,1,0,0,0,6218,6220,1,0,0,0,6219,6221, + 5,408,0,0,6220,6219,1,0,0,0,6220,6221,1,0,0,0,6221,6222,1,0,0,0, + 6222,6223,7,46,0,0,6223,6224,7,95,0,0,6224,6227,3,648,324,0,6225, + 6226,7,95,0,0,6226,6228,3,624,312,0,6227,6225,1,0,0,0,6227,6228, + 1,0,0,0,6228,6230,1,0,0,0,6229,6231,3,558,279,0,6230,6229,1,0,0, + 0,6230,6231,1,0,0,0,6231,6369,1,0,0,0,6232,6233,5,157,0,0,6233,6234, + 5,34,0,0,6234,6236,7,0,0,0,6235,6237,3,756,378,0,6236,6235,1,0,0, + 0,6236,6237,1,0,0,0,6237,6238,1,0,0,0,6238,6369,3,622,311,0,6239, + 6240,5,157,0,0,6240,6241,5,34,0,0,6241,6242,7,96,0,0,6242,6369,3, + 698,349,0,6243,6244,5,157,0,0,6244,6245,5,34,0,0,6245,6246,5,409, + 0,0,6246,6369,3,626,313,0,6247,6248,5,157,0,0,6248,6249,5,34,0,0, + 6249,6250,5,684,0,0,6250,6369,3,630,315,0,6251,6252,5,157,0,0,6252, + 6253,5,34,0,0,6253,6254,5,173,0,0,6254,6369,3,644,322,0,6255,6256, + 5,157,0,0,6256,6257,5,34,0,0,6257,6258,5,678,0,0,6258,6369,3,680, + 340,0,6259,6260,5,157,0,0,6260,6261,5,380,0,0,6261,6262,3,688,344, + 0,6262,6263,7,97,0,0,6263,6369,1,0,0,0,6264,6265,5,157,0,0,6265, + 6369,3,560,280,0,6266,6267,5,157,0,0,6267,6275,7,98,0,0,6268,6272, + 5,100,0,0,6269,6270,3,708,354,0,6270,6271,5,868,0,0,6271,6273,1, + 0,0,0,6272,6269,1,0,0,0,6272,6273,1,0,0,0,6273,6274,1,0,0,0,6274, + 6276,3,708,354,0,6275,6268,1,0,0,0,6275,6276,1,0,0,0,6276,6369,1, + 0,0,0,6277,6278,5,157,0,0,6278,6279,5,262,0,0,6279,6280,5,866,0, + 0,6280,6281,5,850,0,0,6281,6282,5,867,0,0,6282,6369,7,98,0,0,6283, + 6284,5,157,0,0,6284,6287,3,562,281,0,6285,6286,7,95,0,0,6286,6288, + 3,624,312,0,6287,6285,1,0,0,0,6287,6288,1,0,0,0,6288,6290,1,0,0, + 0,6289,6291,3,558,279,0,6290,6289,1,0,0,0,6290,6291,1,0,0,0,6291, + 6369,1,0,0,0,6292,6293,5,157,0,0,6293,6294,5,132,0,0,6294,6295,5, + 336,0,0,6295,6369,3,698,349,0,6296,6297,5,157,0,0,6297,6298,5,409, + 0,0,6298,6299,5,336,0,0,6299,6369,3,628,314,0,6300,6301,5,157,0, + 0,6301,6308,5,414,0,0,6302,6303,5,65,0,0,6303,6306,3,652,326,0,6304, + 6305,5,188,0,0,6305,6307,3,650,325,0,6306,6304,1,0,0,0,6306,6307, + 1,0,0,0,6307,6309,1,0,0,0,6308,6302,1,0,0,0,6308,6309,1,0,0,0,6309, + 6369,1,0,0,0,6310,6312,5,157,0,0,6311,6313,5,392,0,0,6312,6311,1, + 0,0,0,6312,6313,1,0,0,0,6313,6314,1,0,0,0,6314,6315,7,99,0,0,6315, + 6316,7,95,0,0,6316,6319,3,648,324,0,6317,6318,7,95,0,0,6318,6320, + 3,624,312,0,6319,6317,1,0,0,0,6319,6320,1,0,0,0,6320,6323,1,0,0, + 0,6321,6322,5,192,0,0,6322,6324,3,800,400,0,6323,6321,1,0,0,0,6323, + 6324,1,0,0,0,6324,6369,1,0,0,0,6325,6326,5,157,0,0,6326,6327,5,516, + 0,0,6327,6330,5,752,0,0,6328,6329,7,95,0,0,6329,6331,3,624,312,0, + 6330,6328,1,0,0,0,6330,6331,1,0,0,0,6331,6333,1,0,0,0,6332,6334, + 3,558,279,0,6333,6332,1,0,0,0,6333,6334,1,0,0,0,6334,6369,1,0,0, + 0,6335,6336,5,157,0,0,6336,6345,5,545,0,0,6337,6342,3,564,282,0, + 6338,6339,5,868,0,0,6339,6341,3,564,282,0,6340,6338,1,0,0,0,6341, + 6344,1,0,0,0,6342,6340,1,0,0,0,6342,6343,1,0,0,0,6343,6346,1,0,0, + 0,6344,6342,1,0,0,0,6345,6337,1,0,0,0,6345,6346,1,0,0,0,6346,6350, + 1,0,0,0,6347,6348,5,65,0,0,6348,6349,5,548,0,0,6349,6351,3,708,354, + 0,6350,6347,1,0,0,0,6350,6351,1,0,0,0,6351,6358,1,0,0,0,6352,6353, + 5,100,0,0,6353,6356,3,708,354,0,6354,6355,5,509,0,0,6355,6357,3, + 708,354,0,6356,6354,1,0,0,0,6356,6357,1,0,0,0,6357,6359,1,0,0,0, + 6358,6352,1,0,0,0,6358,6359,1,0,0,0,6359,6369,1,0,0,0,6360,6361, + 5,157,0,0,6361,6362,7,63,0,0,6362,6364,5,645,0,0,6363,6365,3,384, + 192,0,6364,6363,1,0,0,0,6364,6365,1,0,0,0,6365,6369,1,0,0,0,6366, + 6367,5,157,0,0,6367,6369,5,564,0,0,6368,6184,1,0,0,0,6368,6187,1, + 0,0,0,6368,6210,1,0,0,0,6368,6215,1,0,0,0,6368,6232,1,0,0,0,6368, + 6239,1,0,0,0,6368,6243,1,0,0,0,6368,6247,1,0,0,0,6368,6251,1,0,0, + 0,6368,6255,1,0,0,0,6368,6259,1,0,0,0,6368,6264,1,0,0,0,6368,6266, + 1,0,0,0,6368,6277,1,0,0,0,6368,6283,1,0,0,0,6368,6292,1,0,0,0,6368, + 6296,1,0,0,0,6368,6300,1,0,0,0,6368,6310,1,0,0,0,6368,6325,1,0,0, + 0,6368,6335,1,0,0,0,6368,6360,1,0,0,0,6368,6366,1,0,0,0,6369,553, + 1,0,0,0,6370,6381,5,892,0,0,6371,6381,5,893,0,0,6372,6373,5,870, + 0,0,6373,6375,5,870,0,0,6374,6372,1,0,0,0,6374,6375,1,0,0,0,6375, + 6376,1,0,0,0,6376,6378,7,100,0,0,6377,6374,1,0,0,0,6377,6378,1,0, + 0,0,6378,6379,1,0,0,0,6379,6381,3,702,351,0,6380,6370,1,0,0,0,6380, + 6371,1,0,0,0,6380,6377,1,0,0,0,6381,555,1,0,0,0,6382,6383,5,26,0, + 0,6383,6397,5,155,0,0,6384,6397,5,823,0,0,6385,6397,5,824,0,0,6386, + 6397,5,40,0,0,6387,6397,5,153,0,0,6388,6389,5,409,0,0,6389,6397, + 5,645,0,0,6390,6391,5,132,0,0,6391,6397,5,645,0,0,6392,6394,7,61, + 0,0,6393,6392,1,0,0,0,6393,6394,1,0,0,0,6394,6395,1,0,0,0,6395,6397, + 7,101,0,0,6396,6382,1,0,0,0,6396,6384,1,0,0,0,6396,6385,1,0,0,0, + 6396,6386,1,0,0,0,6396,6387,1,0,0,0,6396,6388,1,0,0,0,6396,6390, + 1,0,0,0,6396,6393,1,0,0,0,6397,557,1,0,0,0,6398,6399,5,99,0,0,6399, + 6403,5,882,0,0,6400,6401,5,192,0,0,6401,6403,3,800,400,0,6402,6398, + 1,0,0,0,6402,6400,1,0,0,0,6403,559,1,0,0,0,6404,6406,5,647,0,0,6405, + 6404,1,0,0,0,6405,6406,1,0,0,0,6406,6407,1,0,0,0,6407,6422,5,381, + 0,0,6408,6409,5,453,0,0,6409,6422,5,645,0,0,6410,6422,5,536,0,0, + 6411,6422,5,734,0,0,6412,6414,5,408,0,0,6413,6412,1,0,0,0,6413,6414, + 1,0,0,0,6414,6415,1,0,0,0,6415,6422,5,544,0,0,6416,6422,5,546,0, + 0,6417,6418,5,598,0,0,6418,6422,5,422,0,0,6419,6422,5,312,0,0,6420, + 6422,5,356,0,0,6421,6405,1,0,0,0,6421,6408,1,0,0,0,6421,6410,1,0, + 0,0,6421,6411,1,0,0,0,6421,6413,1,0,0,0,6421,6416,1,0,0,0,6421,6417, + 1,0,0,0,6421,6419,1,0,0,0,6421,6420,1,0,0,0,6422,561,1,0,0,0,6423, + 6435,5,386,0,0,6424,6425,5,173,0,0,6425,6435,5,645,0,0,6426,6428, + 5,392,0,0,6427,6426,1,0,0,0,6427,6428,1,0,0,0,6428,6430,1,0,0,0, + 6429,6431,5,408,0,0,6430,6429,1,0,0,0,6430,6431,1,0,0,0,6431,6432, + 1,0,0,0,6432,6435,5,752,0,0,6433,6435,5,667,0,0,6434,6423,1,0,0, + 0,6434,6424,1,0,0,0,6434,6427,1,0,0,0,6434,6433,1,0,0,0,6435,563, + 1,0,0,0,6436,6449,5,7,0,0,6437,6438,5,320,0,0,6438,6449,5,437,0, + 0,6439,6440,5,355,0,0,6440,6449,5,656,0,0,6441,6449,5,358,0,0,6442, + 6449,5,439,0,0,6443,6449,5,802,0,0,6444,6445,5,521,0,0,6445,6449, + 5,397,0,0,6446,6449,5,605,0,0,6447,6449,5,655,0,0,6448,6436,1,0, + 0,0,6448,6437,1,0,0,0,6448,6439,1,0,0,0,6448,6441,1,0,0,0,6448,6442, + 1,0,0,0,6448,6443,1,0,0,0,6448,6444,1,0,0,0,6448,6446,1,0,0,0,6448, + 6447,1,0,0,0,6449,565,1,0,0,0,6450,6451,5,318,0,0,6451,6452,5,882, + 0,0,6452,567,1,0,0,0,6453,6454,5,324,0,0,6454,6472,5,82,0,0,6455, + 6460,3,588,294,0,6456,6457,5,868,0,0,6457,6459,3,588,294,0,6458, + 6456,1,0,0,0,6459,6462,1,0,0,0,6460,6458,1,0,0,0,6460,6461,1,0,0, + 0,6461,6473,1,0,0,0,6462,6460,1,0,0,0,6463,6464,3,648,324,0,6464, + 6465,5,130,0,0,6465,6468,5,866,0,0,6466,6469,3,666,333,0,6467,6469, + 5,7,0,0,6468,6466,1,0,0,0,6468,6467,1,0,0,0,6469,6470,1,0,0,0,6470, + 6471,5,867,0,0,6471,6473,1,0,0,0,6472,6455,1,0,0,0,6472,6463,1,0, + 0,0,6473,6474,1,0,0,0,6474,6475,5,80,0,0,6475,6476,3,624,312,0,6476, + 569,1,0,0,0,6477,6479,5,404,0,0,6478,6480,3,532,266,0,6479,6478, + 1,0,0,0,6479,6480,1,0,0,0,6480,6481,1,0,0,0,6481,6486,3,590,295, + 0,6482,6483,5,868,0,0,6483,6485,3,590,295,0,6484,6482,1,0,0,0,6485, + 6488,1,0,0,0,6486,6484,1,0,0,0,6486,6487,1,0,0,0,6487,571,1,0,0, + 0,6488,6486,1,0,0,0,6489,6491,5,94,0,0,6490,6492,7,102,0,0,6491, + 6490,1,0,0,0,6491,6492,1,0,0,0,6492,6493,1,0,0,0,6493,6494,3,800, + 400,0,6494,573,1,0,0,0,6495,6496,5,103,0,0,6496,6497,5,82,0,0,6497, + 6498,5,88,0,0,6498,6499,5,324,0,0,6499,6504,3,594,297,0,6500,6501, + 5,868,0,0,6501,6503,3,594,297,0,6502,6500,1,0,0,0,6503,6506,1,0, + 0,0,6504,6502,1,0,0,0,6504,6505,1,0,0,0,6505,575,1,0,0,0,6506,6504, + 1,0,0,0,6507,6508,5,575,0,0,6508,6513,3,578,289,0,6509,6510,5,868, + 0,0,6510,6512,3,578,289,0,6511,6509,1,0,0,0,6512,6515,1,0,0,0,6513, + 6511,1,0,0,0,6513,6514,1,0,0,0,6514,577,1,0,0,0,6515,6513,1,0,0, + 0,6516,6522,5,453,0,0,6517,6522,5,563,0,0,6518,6519,5,548,0,0,6519, + 6522,5,324,0,0,6520,6522,5,598,0,0,6521,6516,1,0,0,0,6521,6517,1, + 0,0,0,6521,6518,1,0,0,0,6521,6520,1,0,0,0,6522,579,1,0,0,0,6523, + 6524,5,575,0,0,6524,6529,5,531,0,0,6525,6527,3,754,377,0,6526,6525, + 1,0,0,0,6526,6527,1,0,0,0,6527,6528,1,0,0,0,6528,6530,3,702,351, + 0,6529,6526,1,0,0,0,6529,6530,1,0,0,0,6530,581,1,0,0,0,6531,6532, + 5,575,0,0,6532,6534,7,63,0,0,6533,6535,5,7,0,0,6534,6533,1,0,0,0, + 6534,6535,1,0,0,0,6535,6537,1,0,0,0,6536,6538,3,384,192,0,6537,6536, + 1,0,0,0,6537,6538,1,0,0,0,6538,583,1,0,0,0,6539,6540,5,576,0,0,6540, + 585,1,0,0,0,6541,6542,5,749,0,0,6542,587,1,0,0,0,6543,6549,3,648, + 324,0,6544,6545,7,18,0,0,6545,6546,5,866,0,0,6546,6547,3,636,318, + 0,6547,6548,5,867,0,0,6548,6550,1,0,0,0,6549,6544,1,0,0,0,6549,6550, + 1,0,0,0,6550,589,1,0,0,0,6551,6570,5,366,0,0,6552,6570,5,422,0,0, + 6553,6555,7,103,0,0,6554,6553,1,0,0,0,6554,6555,1,0,0,0,6555,6556, + 1,0,0,0,6556,6570,5,452,0,0,6557,6570,5,517,0,0,6558,6570,5,734, + 0,0,6559,6560,5,548,0,0,6560,6570,5,324,0,0,6561,6570,5,645,0,0, + 6562,6570,5,680,0,0,6563,6567,5,752,0,0,6564,6565,5,194,0,0,6565, + 6566,5,135,0,0,6566,6568,5,104,0,0,6567,6564,1,0,0,0,6567,6568,1, + 0,0,0,6568,6570,1,0,0,0,6569,6551,1,0,0,0,6569,6552,1,0,0,0,6569, + 6554,1,0,0,0,6569,6557,1,0,0,0,6569,6558,1,0,0,0,6569,6559,1,0,0, + 0,6569,6561,1,0,0,0,6569,6562,1,0,0,0,6569,6563,1,0,0,0,6570,6584, + 1,0,0,0,6571,6572,5,556,0,0,6572,6574,5,452,0,0,6573,6575,3,384, + 192,0,6574,6573,1,0,0,0,6574,6575,1,0,0,0,6575,6584,1,0,0,0,6576, + 6578,7,60,0,0,6577,6579,3,646,323,0,6578,6577,1,0,0,0,6578,6579, + 1,0,0,0,6579,6581,1,0,0,0,6580,6582,3,592,296,0,6581,6580,1,0,0, + 0,6581,6582,1,0,0,0,6582,6584,1,0,0,0,6583,6569,1,0,0,0,6583,6571, + 1,0,0,0,6583,6576,1,0,0,0,6584,591,1,0,0,0,6585,6586,5,194,0,0,6586, + 6587,5,135,0,0,6587,6591,5,104,0,0,6588,6589,5,65,0,0,6589,6591, + 5,391,0,0,6590,6585,1,0,0,0,6590,6588,1,0,0,0,6591,593,1,0,0,0,6592, + 6600,3,648,324,0,6593,6594,5,130,0,0,6594,6597,5,866,0,0,6595,6598, + 3,666,333,0,6596,6598,5,7,0,0,6597,6595,1,0,0,0,6597,6596,1,0,0, + 0,6598,6599,1,0,0,0,6599,6601,5,867,0,0,6600,6593,1,0,0,0,6600,6601, + 1,0,0,0,6601,6609,1,0,0,0,6602,6604,7,18,0,0,6603,6602,1,0,0,0,6603, + 6604,1,0,0,0,6604,6605,1,0,0,0,6605,6606,5,866,0,0,6606,6607,3,636, + 318,0,6607,6608,5,867,0,0,6608,6610,1,0,0,0,6609,6603,1,0,0,0,6609, + 6610,1,0,0,0,6610,6613,1,0,0,0,6611,6612,5,79,0,0,6612,6614,5,446, + 0,0,6613,6611,1,0,0,0,6613,6614,1,0,0,0,6614,595,1,0,0,0,6615,6616, + 7,104,0,0,6616,6619,3,648,324,0,6617,6620,3,658,329,0,6618,6620, + 5,882,0,0,6619,6617,1,0,0,0,6619,6618,1,0,0,0,6619,6620,1,0,0,0, + 6620,597,1,0,0,0,6621,6627,7,104,0,0,6622,6628,5,392,0,0,6623,6628, + 5,528,0,0,6624,6625,5,826,0,0,6625,6626,5,857,0,0,6626,6628,7,105, + 0,0,6627,6622,1,0,0,0,6627,6623,1,0,0,0,6627,6624,1,0,0,0,6627,6628, + 1,0,0,0,6628,6629,1,0,0,0,6629,6630,3,620,310,0,6630,599,1,0,0,0, + 6631,6632,7,104,0,0,6632,6636,5,10,0,0,6633,6634,5,826,0,0,6634, + 6635,5,857,0,0,6635,6637,5,666,0,0,6636,6633,1,0,0,0,6636,6637,1, + 0,0,0,6637,6638,1,0,0,0,6638,6639,3,204,102,0,6639,601,1,0,0,0,6640, + 6641,5,419,0,0,6641,6642,5,882,0,0,6642,603,1,0,0,0,6643,6644,5, + 187,0,0,6644,6645,3,624,312,0,6645,605,1,0,0,0,6646,6654,5,158,0, + 0,6647,6649,5,164,0,0,6648,6650,5,682,0,0,6649,6648,1,0,0,0,6649, + 6650,1,0,0,0,6650,6651,1,0,0,0,6651,6655,3,712,356,0,6652,6655,5, + 889,0,0,6653,6655,5,890,0,0,6654,6647,1,0,0,0,6654,6652,1,0,0,0, + 6654,6653,1,0,0,0,6655,6665,1,0,0,0,6656,6657,5,155,0,0,6657,6662, + 3,610,305,0,6658,6659,5,868,0,0,6659,6661,3,610,305,0,6660,6658, + 1,0,0,0,6661,6664,1,0,0,0,6662,6660,1,0,0,0,6662,6663,1,0,0,0,6663, + 6666,1,0,0,0,6664,6662,1,0,0,0,6665,6656,1,0,0,0,6665,6666,1,0,0, + 0,6666,607,1,0,0,0,6667,6675,5,145,0,0,6668,6670,5,164,0,0,6669, + 6671,5,682,0,0,6670,6669,1,0,0,0,6670,6671,1,0,0,0,6671,6672,1,0, + 0,0,6672,6676,3,712,356,0,6673,6676,5,889,0,0,6674,6676,5,890,0, + 0,6675,6668,1,0,0,0,6675,6673,1,0,0,0,6675,6674,1,0,0,0,6675,6676, + 1,0,0,0,6676,6686,1,0,0,0,6677,6678,5,155,0,0,6678,6683,3,610,305, + 0,6679,6680,5,868,0,0,6680,6682,3,610,305,0,6681,6679,1,0,0,0,6682, + 6685,1,0,0,0,6683,6681,1,0,0,0,6683,6684,1,0,0,0,6684,6687,1,0,0, + 0,6685,6683,1,0,0,0,6686,6677,1,0,0,0,6686,6687,1,0,0,0,6687,609, + 1,0,0,0,6688,6689,7,106,0,0,6689,6694,5,857,0,0,6690,6695,3,712, + 356,0,6691,6695,5,883,0,0,6692,6695,3,682,341,0,6693,6695,3,704, + 352,0,6694,6690,1,0,0,0,6694,6691,1,0,0,0,6694,6692,1,0,0,0,6694, + 6693,1,0,0,0,6695,611,1,0,0,0,6696,6698,5,194,0,0,6697,6699,5,552, + 0,0,6698,6697,1,0,0,0,6698,6699,1,0,0,0,6699,6700,1,0,0,0,6700,6705, + 3,48,24,0,6701,6702,5,868,0,0,6702,6704,3,48,24,0,6703,6701,1,0, + 0,0,6704,6707,1,0,0,0,6705,6703,1,0,0,0,6705,6706,1,0,0,0,6706,613, + 1,0,0,0,6707,6705,1,0,0,0,6708,6709,5,173,0,0,6709,6711,3,648,324, + 0,6710,6712,3,252,126,0,6711,6710,1,0,0,0,6711,6712,1,0,0,0,6712, + 6714,1,0,0,0,6713,6715,3,312,156,0,6714,6713,1,0,0,0,6714,6715,1, + 0,0,0,6715,615,1,0,0,0,6716,6718,5,72,0,0,6717,6719,7,107,0,0,6718, + 6717,1,0,0,0,6718,6719,1,0,0,0,6719,6720,1,0,0,0,6720,6752,5,48, + 0,0,6721,6722,3,554,277,0,6722,6723,5,857,0,0,6723,6731,7,108,0, + 0,6724,6725,5,868,0,0,6725,6726,3,554,277,0,6726,6727,5,857,0,0, + 6727,6728,7,108,0,0,6728,6730,1,0,0,0,6729,6724,1,0,0,0,6730,6733, + 1,0,0,0,6731,6729,1,0,0,0,6731,6732,1,0,0,0,6732,6753,1,0,0,0,6733, + 6731,1,0,0,0,6734,6737,5,30,0,0,6735,6738,3,708,354,0,6736,6738, + 3,554,277,0,6737,6735,1,0,0,0,6737,6736,1,0,0,0,6738,6739,1,0,0, + 0,6739,6740,3,554,277,0,6740,6741,5,857,0,0,6741,6749,3,618,309, + 0,6742,6743,5,868,0,0,6743,6744,3,554,277,0,6744,6745,5,857,0,0, + 6745,6746,3,618,309,0,6746,6748,1,0,0,0,6747,6742,1,0,0,0,6748,6751, + 1,0,0,0,6749,6747,1,0,0,0,6749,6750,1,0,0,0,6750,6753,1,0,0,0,6751, + 6749,1,0,0,0,6752,6721,1,0,0,0,6752,6734,1,0,0,0,6753,617,1,0,0, + 0,6754,6755,7,109,0,0,6755,619,1,0,0,0,6756,6762,3,204,102,0,6757, + 6762,3,180,90,0,6758,6762,3,186,93,0,6759,6762,3,202,101,0,6760, + 6762,3,214,107,0,6761,6756,1,0,0,0,6761,6757,1,0,0,0,6761,6758,1, + 0,0,0,6761,6759,1,0,0,0,6761,6760,1,0,0,0,6762,6767,1,0,0,0,6763, + 6764,5,65,0,0,6764,6765,5,349,0,0,6765,6767,3,702,351,0,6766,6761, + 1,0,0,0,6766,6763,1,0,0,0,6767,621,1,0,0,0,6768,6769,3,698,349,0, + 6769,623,1,0,0,0,6770,6771,3,698,349,0,6771,625,1,0,0,0,6772,6773, + 3,698,349,0,6773,627,1,0,0,0,6774,6775,3,698,349,0,6775,629,1,0, + 0,0,6776,6777,3,698,349,0,6777,631,1,0,0,0,6778,6779,3,698,349,0, + 6779,633,1,0,0,0,6780,6781,3,702,351,0,6781,635,1,0,0,0,6782,6787, + 3,638,319,0,6783,6784,5,868,0,0,6784,6786,3,638,319,0,6785,6783, + 1,0,0,0,6786,6789,1,0,0,0,6787,6785,1,0,0,0,6787,6788,1,0,0,0,6788, + 637,1,0,0,0,6789,6787,1,0,0,0,6790,6791,3,702,351,0,6791,639,1,0, + 0,0,6792,6793,3,702,351,0,6793,641,1,0,0,0,6794,6795,3,702,351,0, + 6795,643,1,0,0,0,6796,6797,3,698,349,0,6797,645,1,0,0,0,6798,6803, + 3,648,324,0,6799,6800,5,868,0,0,6800,6802,3,648,324,0,6801,6799, + 1,0,0,0,6802,6805,1,0,0,0,6803,6801,1,0,0,0,6803,6804,1,0,0,0,6804, + 647,1,0,0,0,6805,6803,1,0,0,0,6806,6807,3,698,349,0,6807,649,1,0, + 0,0,6808,6813,3,652,326,0,6809,6810,5,868,0,0,6810,6812,3,652,326, + 0,6811,6809,1,0,0,0,6812,6815,1,0,0,0,6813,6811,1,0,0,0,6813,6814, + 1,0,0,0,6814,651,1,0,0,0,6815,6813,1,0,0,0,6816,6819,3,680,340,0, + 6817,6819,3,702,351,0,6818,6816,1,0,0,0,6818,6817,1,0,0,0,6819,653, + 1,0,0,0,6820,6825,3,702,351,0,6821,6823,3,706,353,0,6822,6824,3, + 706,353,0,6823,6822,1,0,0,0,6823,6824,1,0,0,0,6824,6826,1,0,0,0, + 6825,6821,1,0,0,0,6825,6826,1,0,0,0,6826,6835,1,0,0,0,6827,6829, + 9,0,0,0,6828,6827,1,0,0,0,6828,6829,1,0,0,0,6829,6830,1,0,0,0,6830, + 6832,3,706,353,0,6831,6833,3,706,353,0,6832,6831,1,0,0,0,6832,6833, + 1,0,0,0,6833,6835,1,0,0,0,6834,6820,1,0,0,0,6834,6828,1,0,0,0,6835, + 655,1,0,0,0,6836,6841,3,658,329,0,6837,6838,5,868,0,0,6838,6840, + 3,658,329,0,6839,6837,1,0,0,0,6840,6843,1,0,0,0,6841,6839,1,0,0, + 0,6841,6842,1,0,0,0,6842,657,1,0,0,0,6843,6841,1,0,0,0,6844,6849, + 3,702,351,0,6845,6847,3,706,353,0,6846,6848,3,706,353,0,6847,6846, + 1,0,0,0,6847,6848,1,0,0,0,6848,6850,1,0,0,0,6849,6845,1,0,0,0,6849, + 6850,1,0,0,0,6850,6859,1,0,0,0,6851,6853,9,0,0,0,6852,6851,1,0,0, + 0,6852,6853,1,0,0,0,6853,6854,1,0,0,0,6854,6856,3,706,353,0,6855, + 6857,3,706,353,0,6856,6855,1,0,0,0,6856,6857,1,0,0,0,6857,6859,1, + 0,0,0,6858,6844,1,0,0,0,6858,6852,1,0,0,0,6859,659,1,0,0,0,6860, + 6861,3,702,351,0,6861,661,1,0,0,0,6862,6863,3,702,351,0,6863,663, + 1,0,0,0,6864,6865,3,702,351,0,6865,665,1,0,0,0,6866,6871,3,668,334, + 0,6867,6868,5,868,0,0,6868,6870,3,668,334,0,6869,6867,1,0,0,0,6870, + 6873,1,0,0,0,6871,6869,1,0,0,0,6871,6872,1,0,0,0,6872,667,1,0,0, + 0,6873,6871,1,0,0,0,6874,6875,3,702,351,0,6875,669,1,0,0,0,6876, + 6881,3,702,351,0,6877,6878,5,866,0,0,6878,6879,3,708,354,0,6879, + 6880,5,867,0,0,6880,6882,1,0,0,0,6881,6877,1,0,0,0,6881,6882,1,0, + 0,0,6882,6885,1,0,0,0,6883,6885,3,800,400,0,6884,6876,1,0,0,0,6884, + 6883,1,0,0,0,6885,6887,1,0,0,0,6886,6888,7,54,0,0,6887,6886,1,0, + 0,0,6887,6888,1,0,0,0,6888,671,1,0,0,0,6889,6890,3,674,337,0,6890, + 6891,5,878,0,0,6891,6892,3,708,354,0,6892,673,1,0,0,0,6893,6894, + 3,676,338,0,6894,6895,5,891,0,0,6895,675,1,0,0,0,6896,6901,5,882, + 0,0,6897,6901,5,889,0,0,6898,6901,5,704,0,0,6899,6901,3,830,415, + 0,6900,6896,1,0,0,0,6900,6897,1,0,0,0,6900,6898,1,0,0,0,6900,6899, + 1,0,0,0,6901,677,1,0,0,0,6902,6903,7,110,0,0,6903,679,1,0,0,0,6904, + 6906,3,676,338,0,6905,6907,3,678,339,0,6906,6905,1,0,0,0,6906,6907, + 1,0,0,0,6907,6910,1,0,0,0,6908,6910,3,56,28,0,6909,6904,1,0,0,0, + 6909,6908,1,0,0,0,6910,681,1,0,0,0,6911,6912,7,111,0,0,6912,683, + 1,0,0,0,6913,6918,5,228,0,0,6914,6918,3,820,410,0,6915,6918,5,882, + 0,0,6916,6918,5,879,0,0,6917,6913,1,0,0,0,6917,6914,1,0,0,0,6917, + 6915,1,0,0,0,6917,6916,1,0,0,0,6918,685,1,0,0,0,6919,6920,3,702, + 351,0,6920,687,1,0,0,0,6921,6925,3,690,345,0,6922,6925,5,889,0,0, + 6923,6925,5,882,0,0,6924,6921,1,0,0,0,6924,6922,1,0,0,0,6924,6923, + 1,0,0,0,6925,689,1,0,0,0,6926,6927,7,112,0,0,6927,691,1,0,0,0,6928, + 6929,3,708,354,0,6929,6930,5,854,0,0,6930,6931,3,708,354,0,6931, + 6932,5,854,0,0,6932,6933,3,708,354,0,6933,6934,5,854,0,0,6934,6935, + 3,708,354,0,6935,6936,5,854,0,0,6936,6942,3,708,354,0,6937,6938, + 5,878,0,0,6938,6939,3,708,354,0,6939,6940,5,854,0,0,6940,6941,3, + 708,354,0,6941,6943,1,0,0,0,6942,6937,1,0,0,0,6943,6944,1,0,0,0, + 6944,6942,1,0,0,0,6944,6945,1,0,0,0,6945,693,1,0,0,0,6946,6953,3, + 696,348,0,6947,6948,5,868,0,0,6948,6951,3,696,348,0,6949,6950,5, + 868,0,0,6950,6952,3,708,354,0,6951,6949,1,0,0,0,6951,6952,1,0,0, + 0,6952,6954,1,0,0,0,6953,6947,1,0,0,0,6953,6954,1,0,0,0,6954,695, + 1,0,0,0,6955,6963,5,882,0,0,6956,6963,5,887,0,0,6957,6959,5,884, + 0,0,6958,6957,1,0,0,0,6959,6960,1,0,0,0,6960,6958,1,0,0,0,6960,6961, + 1,0,0,0,6961,6963,1,0,0,0,6962,6955,1,0,0,0,6962,6956,1,0,0,0,6962, + 6958,1,0,0,0,6963,697,1,0,0,0,6964,6966,3,702,351,0,6965,6967,3, + 706,353,0,6966,6965,1,0,0,0,6966,6967,1,0,0,0,6967,699,1,0,0,0,6968, + 6973,3,702,351,0,6969,6970,5,868,0,0,6970,6972,3,702,351,0,6971, + 6969,1,0,0,0,6972,6975,1,0,0,0,6973,6971,1,0,0,0,6973,6974,1,0,0, + 0,6974,701,1,0,0,0,6975,6973,1,0,0,0,6976,6980,3,704,352,0,6977, + 6980,5,879,0,0,6978,6980,5,882,0,0,6979,6976,1,0,0,0,6979,6977,1, + 0,0,0,6979,6978,1,0,0,0,6980,703,1,0,0,0,6981,6991,5,889,0,0,6982, + 6991,3,820,410,0,6983,6991,3,822,411,0,6984,6991,3,690,345,0,6985, + 6991,3,824,412,0,6986,6991,3,826,413,0,6987,6991,3,828,414,0,6988, + 6991,3,830,415,0,6989,6991,3,792,396,0,6990,6981,1,0,0,0,6990,6982, + 1,0,0,0,6990,6983,1,0,0,0,6990,6984,1,0,0,0,6990,6985,1,0,0,0,6990, + 6986,1,0,0,0,6990,6987,1,0,0,0,6990,6988,1,0,0,0,6990,6989,1,0,0, + 0,6991,705,1,0,0,0,6992,6993,5,865,0,0,6993,6997,5,889,0,0,6994, + 6995,5,865,0,0,6995,6997,3,702,351,0,6996,6992,1,0,0,0,6996,6994, + 1,0,0,0,6997,707,1,0,0,0,6998,6999,7,113,0,0,6999,709,1,0,0,0,7000, + 7003,5,880,0,0,7001,7003,3,708,354,0,7002,7000,1,0,0,0,7002,7001, + 1,0,0,0,7003,711,1,0,0,0,7004,7006,5,888,0,0,7005,7004,1,0,0,0,7005, + 7006,1,0,0,0,7006,7007,1,0,0,0,7007,7010,5,882,0,0,7008,7010,5,881, + 0,0,7009,7005,1,0,0,0,7009,7008,1,0,0,0,7010,7012,1,0,0,0,7011,7013, + 5,882,0,0,7012,7011,1,0,0,0,7013,7014,1,0,0,0,7014,7012,1,0,0,0, + 7014,7015,1,0,0,0,7015,7028,1,0,0,0,7016,7018,5,888,0,0,7017,7016, + 1,0,0,0,7017,7018,1,0,0,0,7018,7019,1,0,0,0,7019,7022,5,882,0,0, + 7020,7022,5,881,0,0,7021,7017,1,0,0,0,7021,7020,1,0,0,0,7022,7025, + 1,0,0,0,7023,7024,5,28,0,0,7024,7026,3,686,343,0,7025,7023,1,0,0, + 0,7025,7026,1,0,0,0,7026,7028,1,0,0,0,7027,7009,1,0,0,0,7027,7021, + 1,0,0,0,7028,713,1,0,0,0,7029,7030,7,114,0,0,7030,715,1,0,0,0,7031, + 7033,5,888,0,0,7032,7031,1,0,0,0,7032,7033,1,0,0,0,7033,7034,1,0, + 0,0,7034,7035,5,884,0,0,7035,717,1,0,0,0,7036,7038,5,114,0,0,7037, + 7036,1,0,0,0,7037,7038,1,0,0,0,7038,7039,1,0,0,0,7039,7040,7,115, + 0,0,7040,719,1,0,0,0,7041,7054,3,712,356,0,7042,7054,3,708,354,0, + 7043,7044,5,854,0,0,7044,7054,3,708,354,0,7045,7054,3,716,358,0, + 7046,7054,3,714,357,0,7047,7054,5,885,0,0,7048,7054,5,887,0,0,7049, + 7051,5,114,0,0,7050,7049,1,0,0,0,7050,7051,1,0,0,0,7051,7052,1,0, + 0,0,7052,7054,7,115,0,0,7053,7041,1,0,0,0,7053,7042,1,0,0,0,7053, + 7043,1,0,0,0,7053,7045,1,0,0,0,7053,7046,1,0,0,0,7053,7047,1,0,0, + 0,7053,7048,1,0,0,0,7053,7050,1,0,0,0,7054,721,1,0,0,0,7055,7057, + 7,116,0,0,7056,7058,5,240,0,0,7057,7056,1,0,0,0,7057,7058,1,0,0, + 0,7058,7060,1,0,0,0,7059,7061,3,728,364,0,7060,7059,1,0,0,0,7060, + 7061,1,0,0,0,7061,7063,1,0,0,0,7062,7064,5,228,0,0,7063,7062,1,0, + 0,0,7063,7064,1,0,0,0,7064,7068,1,0,0,0,7065,7066,3,54,27,0,7066, + 7067,3,684,342,0,7067,7069,1,0,0,0,7068,7065,1,0,0,0,7068,7069,1, + 0,0,0,7069,7073,1,0,0,0,7070,7071,5,28,0,0,7071,7074,3,686,343,0, + 7072,7074,5,228,0,0,7073,7070,1,0,0,0,7073,7072,1,0,0,0,7073,7074, + 1,0,0,0,7074,7182,1,0,0,0,7075,7076,5,227,0,0,7076,7077,7,117,0, + 0,7077,7079,5,240,0,0,7078,7080,3,728,364,0,7079,7078,1,0,0,0,7079, + 7080,1,0,0,0,7080,7082,1,0,0,0,7081,7083,5,228,0,0,7082,7081,1,0, + 0,0,7082,7083,1,0,0,0,7083,7182,1,0,0,0,7084,7085,5,227,0,0,7085, + 7087,7,118,0,0,7086,7088,3,728,364,0,7087,7086,1,0,0,0,7087,7088, + 1,0,0,0,7088,7090,1,0,0,0,7089,7091,5,228,0,0,7090,7089,1,0,0,0, + 7090,7091,1,0,0,0,7091,7182,1,0,0,0,7092,7093,5,498,0,0,7093,7095, + 5,225,0,0,7094,7096,3,728,364,0,7095,7094,1,0,0,0,7095,7096,1,0, + 0,0,7096,7098,1,0,0,0,7097,7099,5,228,0,0,7098,7097,1,0,0,0,7098, + 7099,1,0,0,0,7099,7182,1,0,0,0,7100,7102,7,119,0,0,7101,7103,3,728, + 364,0,7102,7101,1,0,0,0,7102,7103,1,0,0,0,7103,7107,1,0,0,0,7104, + 7106,7,120,0,0,7105,7104,1,0,0,0,7106,7109,1,0,0,0,7107,7105,1,0, + 0,0,7107,7108,1,0,0,0,7108,7182,1,0,0,0,7109,7107,1,0,0,0,7110,7112, + 5,210,0,0,7111,7113,3,730,365,0,7112,7111,1,0,0,0,7112,7113,1,0, + 0,0,7113,7117,1,0,0,0,7114,7116,7,120,0,0,7115,7114,1,0,0,0,7116, + 7119,1,0,0,0,7117,7115,1,0,0,0,7117,7118,1,0,0,0,7118,7182,1,0,0, + 0,7119,7117,1,0,0,0,7120,7122,5,211,0,0,7121,7123,5,212,0,0,7122, + 7121,1,0,0,0,7122,7123,1,0,0,0,7123,7125,1,0,0,0,7124,7126,3,730, + 365,0,7125,7124,1,0,0,0,7125,7126,1,0,0,0,7126,7130,1,0,0,0,7127, + 7129,7,120,0,0,7128,7127,1,0,0,0,7129,7132,1,0,0,0,7130,7128,1,0, + 0,0,7130,7131,1,0,0,0,7131,7182,1,0,0,0,7132,7130,1,0,0,0,7133,7135, + 7,121,0,0,7134,7136,3,732,366,0,7135,7134,1,0,0,0,7135,7136,1,0, + 0,0,7136,7140,1,0,0,0,7137,7139,7,120,0,0,7138,7137,1,0,0,0,7139, + 7142,1,0,0,0,7140,7138,1,0,0,0,7140,7141,1,0,0,0,7141,7182,1,0,0, + 0,7142,7140,1,0,0,0,7143,7182,7,122,0,0,7144,7146,7,123,0,0,7145, + 7147,3,728,364,0,7146,7145,1,0,0,0,7146,7147,1,0,0,0,7147,7182,1, + 0,0,0,7148,7149,7,124,0,0,7149,7151,3,724,362,0,7150,7152,5,228, + 0,0,7151,7150,1,0,0,0,7151,7152,1,0,0,0,7152,7156,1,0,0,0,7153,7154, + 3,54,27,0,7154,7155,3,684,342,0,7155,7157,1,0,0,0,7156,7153,1,0, + 0,0,7156,7157,1,0,0,0,7157,7182,1,0,0,0,7158,7161,7,125,0,0,7159, + 7160,5,834,0,0,7160,7162,3,708,354,0,7161,7159,1,0,0,0,7161,7162, + 1,0,0,0,7162,7182,1,0,0,0,7163,7165,5,233,0,0,7164,7166,5,225,0, + 0,7165,7164,1,0,0,0,7165,7166,1,0,0,0,7166,7168,1,0,0,0,7167,7169, + 5,228,0,0,7168,7167,1,0,0,0,7168,7169,1,0,0,0,7169,7173,1,0,0,0, + 7170,7171,3,54,27,0,7171,7172,3,684,342,0,7172,7174,1,0,0,0,7173, + 7170,1,0,0,0,7173,7174,1,0,0,0,7174,7177,1,0,0,0,7175,7176,5,28, + 0,0,7176,7178,3,686,343,0,7177,7175,1,0,0,0,7177,7178,1,0,0,0,7178, + 7182,1,0,0,0,7179,7180,5,233,0,0,7180,7182,5,229,0,0,7181,7055,1, + 0,0,0,7181,7075,1,0,0,0,7181,7084,1,0,0,0,7181,7092,1,0,0,0,7181, + 7100,1,0,0,0,7181,7110,1,0,0,0,7181,7120,1,0,0,0,7181,7133,1,0,0, + 0,7181,7143,1,0,0,0,7181,7144,1,0,0,0,7181,7148,1,0,0,0,7181,7158, + 1,0,0,0,7181,7163,1,0,0,0,7181,7179,1,0,0,0,7182,723,1,0,0,0,7183, + 7184,5,866,0,0,7184,7189,5,882,0,0,7185,7186,5,868,0,0,7186,7188, + 5,882,0,0,7187,7185,1,0,0,0,7188,7191,1,0,0,0,7189,7187,1,0,0,0, + 7189,7190,1,0,0,0,7190,7192,1,0,0,0,7191,7189,1,0,0,0,7192,7193, + 5,867,0,0,7193,725,1,0,0,0,7194,7196,7,126,0,0,7195,7197,3,728,364, + 0,7196,7195,1,0,0,0,7196,7197,1,0,0,0,7197,7217,1,0,0,0,7198,7200, + 5,224,0,0,7199,7201,3,728,364,0,7200,7199,1,0,0,0,7200,7201,1,0, + 0,0,7201,7205,1,0,0,0,7202,7203,3,54,27,0,7203,7204,3,684,342,0, + 7204,7206,1,0,0,0,7205,7202,1,0,0,0,7205,7206,1,0,0,0,7206,7217, + 1,0,0,0,7207,7217,7,127,0,0,7208,7210,7,128,0,0,7209,7211,3,732, + 366,0,7210,7209,1,0,0,0,7210,7211,1,0,0,0,7211,7217,1,0,0,0,7212, + 7214,7,129,0,0,7213,7215,7,130,0,0,7214,7213,1,0,0,0,7214,7215,1, + 0,0,0,7215,7217,1,0,0,0,7216,7194,1,0,0,0,7216,7198,1,0,0,0,7216, + 7207,1,0,0,0,7216,7208,1,0,0,0,7216,7212,1,0,0,0,7217,7219,1,0,0, + 0,7218,7220,5,12,0,0,7219,7218,1,0,0,0,7219,7220,1,0,0,0,7220,727, + 1,0,0,0,7221,7222,5,866,0,0,7222,7223,3,708,354,0,7223,7224,5,867, + 0,0,7224,729,1,0,0,0,7225,7226,5,866,0,0,7226,7227,3,708,354,0,7227, + 7228,5,868,0,0,7228,7229,3,708,354,0,7229,7230,5,867,0,0,7230,731, + 1,0,0,0,7231,7232,5,866,0,0,7232,7235,3,708,354,0,7233,7234,5,868, + 0,0,7234,7236,3,708,354,0,7235,7233,1,0,0,0,7235,7236,1,0,0,0,7236, + 7237,1,0,0,0,7237,7238,5,867,0,0,7238,733,1,0,0,0,7239,7240,5,866, + 0,0,7240,7245,3,670,335,0,7241,7242,5,868,0,0,7242,7244,3,670,335, + 0,7243,7241,1,0,0,0,7244,7247,1,0,0,0,7245,7243,1,0,0,0,7245,7246, + 1,0,0,0,7246,7248,1,0,0,0,7247,7245,1,0,0,0,7248,7249,5,867,0,0, + 7249,735,1,0,0,0,7250,7255,3,800,400,0,7251,7252,5,868,0,0,7252, + 7254,3,800,400,0,7253,7251,1,0,0,0,7254,7257,1,0,0,0,7255,7253,1, + 0,0,0,7255,7256,1,0,0,0,7256,737,1,0,0,0,7257,7255,1,0,0,0,7258, + 7259,7,131,0,0,7259,7264,3,740,370,0,7260,7261,5,868,0,0,7261,7263, + 3,740,370,0,7262,7260,1,0,0,0,7263,7266,1,0,0,0,7264,7262,1,0,0, + 0,7264,7265,1,0,0,0,7265,739,1,0,0,0,7266,7264,1,0,0,0,7267,7268, + 5,866,0,0,7268,7273,3,742,371,0,7269,7270,5,868,0,0,7270,7272,3, + 742,371,0,7271,7269,1,0,0,0,7272,7275,1,0,0,0,7273,7271,1,0,0,0, + 7273,7274,1,0,0,0,7274,7276,1,0,0,0,7275,7273,1,0,0,0,7276,7277, + 5,867,0,0,7277,741,1,0,0,0,7278,7281,3,800,400,0,7279,7281,5,42, + 0,0,7280,7278,1,0,0,0,7280,7279,1,0,0,0,7281,743,1,0,0,0,7282,7287, + 3,720,360,0,7283,7284,5,868,0,0,7284,7286,3,720,360,0,7285,7283, + 1,0,0,0,7286,7289,1,0,0,0,7287,7285,1,0,0,0,7287,7288,1,0,0,0,7288, + 745,1,0,0,0,7289,7287,1,0,0,0,7290,7295,5,882,0,0,7291,7292,5,868, + 0,0,7292,7294,5,882,0,0,7293,7291,1,0,0,0,7294,7297,1,0,0,0,7295, + 7293,1,0,0,0,7295,7296,1,0,0,0,7296,747,1,0,0,0,7297,7295,1,0,0, + 0,7298,7303,5,892,0,0,7299,7300,5,868,0,0,7300,7302,5,892,0,0,7301, + 7299,1,0,0,0,7302,7305,1,0,0,0,7303,7301,1,0,0,0,7303,7304,1,0,0, + 0,7304,749,1,0,0,0,7305,7303,1,0,0,0,7306,7333,5,116,0,0,7307,7308, + 5,24,0,0,7308,7309,5,866,0,0,7309,7310,3,800,400,0,7310,7311,5,13, + 0,0,7311,7312,3,726,363,0,7312,7313,5,867,0,0,7313,7333,1,0,0,0, + 7314,7316,3,806,403,0,7315,7314,1,0,0,0,7315,7316,1,0,0,0,7316,7317, + 1,0,0,0,7317,7333,3,720,360,0,7318,7322,3,752,376,0,7319,7320,5, + 119,0,0,7320,7321,5,185,0,0,7321,7323,3,752,376,0,7322,7319,1,0, + 0,0,7322,7323,1,0,0,0,7323,7333,1,0,0,0,7324,7325,5,866,0,0,7325, + 7326,3,800,400,0,7326,7327,5,867,0,0,7327,7333,1,0,0,0,7328,7329, + 5,866,0,0,7329,7330,3,698,349,0,7330,7331,5,867,0,0,7331,7333,1, + 0,0,0,7332,7306,1,0,0,0,7332,7307,1,0,0,0,7332,7315,1,0,0,0,7332, + 7318,1,0,0,0,7332,7324,1,0,0,0,7332,7328,1,0,0,0,7333,751,1,0,0, + 0,7334,7340,7,132,0,0,7335,7337,5,866,0,0,7336,7338,3,708,354,0, + 7337,7336,1,0,0,0,7337,7338,1,0,0,0,7338,7339,1,0,0,0,7339,7341, + 5,867,0,0,7340,7335,1,0,0,0,7340,7341,1,0,0,0,7341,7349,1,0,0,0, + 7342,7343,5,295,0,0,7343,7345,5,866,0,0,7344,7346,3,708,354,0,7345, + 7344,1,0,0,0,7345,7346,1,0,0,0,7346,7347,1,0,0,0,7347,7349,5,867, + 0,0,7348,7334,1,0,0,0,7348,7342,1,0,0,0,7349,753,1,0,0,0,7350,7351, + 5,78,0,0,7351,7352,5,60,0,0,7352,755,1,0,0,0,7353,7354,5,78,0,0, + 7354,7355,5,114,0,0,7355,7356,5,60,0,0,7356,757,1,0,0,0,7357,7358, + 5,124,0,0,7358,7359,5,143,0,0,7359,759,1,0,0,0,7360,7379,3,762,381, + 0,7361,7379,3,770,385,0,7362,7379,3,772,386,0,7363,7364,3,792,396, + 0,7364,7366,5,866,0,0,7365,7367,3,796,398,0,7366,7365,1,0,0,0,7366, + 7367,1,0,0,0,7367,7368,1,0,0,0,7368,7369,5,867,0,0,7369,7379,1,0, + 0,0,7370,7371,3,628,314,0,7371,7373,5,866,0,0,7372,7374,3,796,398, + 0,7373,7372,1,0,0,0,7373,7374,1,0,0,0,7374,7375,1,0,0,0,7375,7376, + 5,867,0,0,7376,7379,1,0,0,0,7377,7379,3,794,397,0,7378,7360,1,0, + 0,0,7378,7361,1,0,0,0,7378,7362,1,0,0,0,7378,7363,1,0,0,0,7378,7370, + 1,0,0,0,7378,7377,1,0,0,0,7379,761,1,0,0,0,7380,7383,7,133,0,0,7381, + 7382,5,866,0,0,7382,7384,5,867,0,0,7383,7381,1,0,0,0,7383,7384,1, + 0,0,0,7384,7560,1,0,0,0,7385,7560,3,56,28,0,7386,7387,5,33,0,0,7387, + 7388,5,866,0,0,7388,7389,3,800,400,0,7389,7390,5,868,0,0,7390,7391, + 3,726,363,0,7391,7392,5,867,0,0,7392,7560,1,0,0,0,7393,7394,5,33, + 0,0,7394,7395,5,866,0,0,7395,7396,3,800,400,0,7396,7397,5,188,0, + 0,7397,7398,3,684,342,0,7398,7399,5,867,0,0,7399,7560,1,0,0,0,7400, + 7401,5,24,0,0,7401,7402,5,866,0,0,7402,7403,3,800,400,0,7403,7404, + 5,13,0,0,7404,7405,3,726,363,0,7405,7406,5,867,0,0,7406,7560,1,0, + 0,0,7407,7408,5,189,0,0,7408,7409,5,866,0,0,7409,7410,3,658,329, + 0,7410,7411,5,867,0,0,7411,7560,1,0,0,0,7412,7413,5,23,0,0,7413, + 7415,3,800,400,0,7414,7416,3,764,382,0,7415,7414,1,0,0,0,7416,7417, + 1,0,0,0,7417,7415,1,0,0,0,7417,7418,1,0,0,0,7418,7421,1,0,0,0,7419, + 7420,5,53,0,0,7420,7422,3,798,399,0,7421,7419,1,0,0,0,7421,7422, + 1,0,0,0,7422,7423,1,0,0,0,7423,7424,5,378,0,0,7424,7560,1,0,0,0, + 7425,7427,5,23,0,0,7426,7428,3,764,382,0,7427,7426,1,0,0,0,7428, + 7429,1,0,0,0,7429,7427,1,0,0,0,7429,7430,1,0,0,0,7430,7433,1,0,0, + 0,7431,7432,5,53,0,0,7432,7434,3,798,399,0,7433,7431,1,0,0,0,7433, + 7434,1,0,0,0,7434,7435,1,0,0,0,7435,7436,5,378,0,0,7436,7560,1,0, + 0,0,7437,7438,5,224,0,0,7438,7439,5,866,0,0,7439,7442,3,796,398, + 0,7440,7441,5,188,0,0,7441,7443,3,684,342,0,7442,7440,1,0,0,0,7442, + 7443,1,0,0,0,7443,7444,1,0,0,0,7444,7445,5,867,0,0,7445,7560,1,0, + 0,0,7446,7447,5,296,0,0,7447,7450,5,866,0,0,7448,7451,3,712,356, + 0,7449,7451,3,800,400,0,7450,7448,1,0,0,0,7450,7449,1,0,0,0,7451, + 7452,1,0,0,0,7452,7455,5,80,0,0,7453,7456,3,712,356,0,7454,7456, + 3,800,400,0,7455,7453,1,0,0,0,7455,7454,1,0,0,0,7456,7457,1,0,0, + 0,7457,7458,5,867,0,0,7458,7560,1,0,0,0,7459,7460,7,134,0,0,7460, + 7463,5,866,0,0,7461,7464,3,712,356,0,7462,7464,3,800,400,0,7463, + 7461,1,0,0,0,7463,7462,1,0,0,0,7464,7465,1,0,0,0,7465,7468,5,68, + 0,0,7466,7469,3,708,354,0,7467,7469,3,800,400,0,7468,7466,1,0,0, + 0,7468,7467,1,0,0,0,7469,7475,1,0,0,0,7470,7473,5,65,0,0,7471,7474, + 3,708,354,0,7472,7474,3,800,400,0,7473,7471,1,0,0,0,7473,7472,1, + 0,0,0,7474,7476,1,0,0,0,7475,7470,1,0,0,0,7475,7476,1,0,0,0,7476, + 7477,1,0,0,0,7477,7478,5,867,0,0,7478,7560,1,0,0,0,7479,7480,5,300, + 0,0,7480,7481,5,866,0,0,7481,7484,7,135,0,0,7482,7485,3,712,356, + 0,7483,7485,3,800,400,0,7484,7482,1,0,0,0,7484,7483,1,0,0,0,7484, + 7485,1,0,0,0,7485,7486,1,0,0,0,7486,7489,5,68,0,0,7487,7490,3,712, + 356,0,7488,7490,3,800,400,0,7489,7487,1,0,0,0,7489,7488,1,0,0,0, + 7490,7491,1,0,0,0,7491,7492,5,867,0,0,7492,7560,1,0,0,0,7493,7494, + 5,300,0,0,7494,7497,5,866,0,0,7495,7498,3,712,356,0,7496,7498,3, + 800,400,0,7497,7495,1,0,0,0,7497,7496,1,0,0,0,7498,7499,1,0,0,0, + 7499,7502,5,68,0,0,7500,7503,3,712,356,0,7501,7503,3,800,400,0,7502, + 7500,1,0,0,0,7502,7501,1,0,0,0,7503,7504,1,0,0,0,7504,7505,5,867, + 0,0,7505,7560,1,0,0,0,7506,7507,5,840,0,0,7507,7510,5,866,0,0,7508, + 7511,3,712,356,0,7509,7511,3,800,400,0,7510,7508,1,0,0,0,7510,7509, + 1,0,0,0,7511,7518,1,0,0,0,7512,7513,5,13,0,0,7513,7514,7,136,0,0, + 7514,7515,5,866,0,0,7515,7516,3,708,354,0,7516,7517,5,867,0,0,7517, + 7519,1,0,0,0,7518,7512,1,0,0,0,7518,7519,1,0,0,0,7519,7521,1,0,0, + 0,7520,7522,3,766,383,0,7521,7520,1,0,0,0,7521,7522,1,0,0,0,7522, + 7523,1,0,0,0,7523,7524,5,867,0,0,7524,7560,1,0,0,0,7525,7526,5,293, + 0,0,7526,7527,5,866,0,0,7527,7528,3,66,33,0,7528,7531,5,68,0,0,7529, + 7532,3,712,356,0,7530,7532,3,800,400,0,7531,7529,1,0,0,0,7531,7530, + 1,0,0,0,7532,7533,1,0,0,0,7533,7534,5,867,0,0,7534,7560,1,0,0,0, + 7535,7536,5,827,0,0,7536,7537,5,866,0,0,7537,7538,7,137,0,0,7538, + 7539,5,868,0,0,7539,7540,3,712,356,0,7540,7541,5,867,0,0,7541,7560, + 1,0,0,0,7542,7543,5,254,0,0,7543,7544,5,866,0,0,7544,7545,3,800, + 400,0,7545,7546,5,868,0,0,7546,7549,3,800,400,0,7547,7548,5,579, + 0,0,7548,7550,3,726,363,0,7549,7547,1,0,0,0,7549,7550,1,0,0,0,7550, + 7552,1,0,0,0,7551,7553,3,286,143,0,7552,7551,1,0,0,0,7552,7553,1, + 0,0,0,7553,7555,1,0,0,0,7554,7556,3,288,144,0,7555,7554,1,0,0,0, + 7555,7556,1,0,0,0,7556,7557,1,0,0,0,7557,7558,5,867,0,0,7558,7560, + 1,0,0,0,7559,7380,1,0,0,0,7559,7385,1,0,0,0,7559,7386,1,0,0,0,7559, + 7393,1,0,0,0,7559,7400,1,0,0,0,7559,7407,1,0,0,0,7559,7412,1,0,0, + 0,7559,7425,1,0,0,0,7559,7437,1,0,0,0,7559,7446,1,0,0,0,7559,7459, + 1,0,0,0,7559,7479,1,0,0,0,7559,7493,1,0,0,0,7559,7506,1,0,0,0,7559, + 7525,1,0,0,0,7559,7535,1,0,0,0,7559,7542,1,0,0,0,7560,763,1,0,0, + 0,7561,7562,5,191,0,0,7562,7563,3,798,399,0,7563,7564,5,175,0,0, + 7564,7565,3,798,399,0,7565,765,1,0,0,0,7566,7567,5,448,0,0,7567, + 7572,3,768,384,0,7568,7569,5,868,0,0,7569,7571,3,768,384,0,7570, + 7568,1,0,0,0,7571,7574,1,0,0,0,7572,7570,1,0,0,0,7572,7573,1,0,0, + 0,7573,7581,1,0,0,0,7574,7572,1,0,0,0,7575,7576,5,448,0,0,7576,7577, + 3,708,354,0,7577,7578,5,854,0,0,7578,7579,3,708,354,0,7579,7581, + 1,0,0,0,7580,7566,1,0,0,0,7580,7575,1,0,0,0,7581,767,1,0,0,0,7582, + 7584,3,708,354,0,7583,7585,7,138,0,0,7584,7583,1,0,0,0,7584,7585, + 1,0,0,0,7585,769,1,0,0,0,7586,7587,7,139,0,0,7587,7589,5,866,0,0, + 7588,7590,7,44,0,0,7589,7588,1,0,0,0,7589,7590,1,0,0,0,7590,7591, + 1,0,0,0,7591,7592,3,798,399,0,7592,7594,5,867,0,0,7593,7595,3,774, + 387,0,7594,7593,1,0,0,0,7594,7595,1,0,0,0,7595,7646,1,0,0,0,7596, + 7597,5,262,0,0,7597,7605,5,866,0,0,7598,7606,5,850,0,0,7599,7601, + 5,7,0,0,7600,7599,1,0,0,0,7600,7601,1,0,0,0,7601,7602,1,0,0,0,7602, + 7606,3,798,399,0,7603,7604,5,49,0,0,7604,7606,3,796,398,0,7605,7598, + 1,0,0,0,7605,7600,1,0,0,0,7605,7603,1,0,0,0,7606,7607,1,0,0,0,7607, + 7609,5,867,0,0,7608,7610,3,774,387,0,7609,7608,1,0,0,0,7609,7610, + 1,0,0,0,7610,7646,1,0,0,0,7611,7612,7,140,0,0,7612,7614,5,866,0, + 0,7613,7615,5,7,0,0,7614,7613,1,0,0,0,7614,7615,1,0,0,0,7615,7616, + 1,0,0,0,7616,7617,3,798,399,0,7617,7619,5,867,0,0,7618,7620,3,774, + 387,0,7619,7618,1,0,0,0,7619,7620,1,0,0,0,7620,7646,1,0,0,0,7621, + 7622,5,266,0,0,7622,7624,5,866,0,0,7623,7625,5,49,0,0,7624,7623, + 1,0,0,0,7624,7625,1,0,0,0,7625,7626,1,0,0,0,7626,7637,3,796,398, + 0,7627,7628,5,125,0,0,7628,7629,5,20,0,0,7629,7634,3,254,127,0,7630, + 7631,5,868,0,0,7631,7633,3,254,127,0,7632,7630,1,0,0,0,7633,7636, + 1,0,0,0,7634,7632,1,0,0,0,7634,7635,1,0,0,0,7635,7638,1,0,0,0,7636, + 7634,1,0,0,0,7637,7627,1,0,0,0,7637,7638,1,0,0,0,7638,7641,1,0,0, + 0,7639,7640,5,156,0,0,7640,7642,5,882,0,0,7641,7639,1,0,0,0,7641, + 7642,1,0,0,0,7642,7643,1,0,0,0,7643,7644,5,867,0,0,7644,7646,1,0, + 0,0,7645,7586,1,0,0,0,7645,7596,1,0,0,0,7645,7611,1,0,0,0,7645,7621, + 1,0,0,0,7646,771,1,0,0,0,7647,7648,7,141,0,0,7648,7649,5,866,0,0, + 7649,7652,3,800,400,0,7650,7651,5,868,0,0,7651,7653,3,708,354,0, + 7652,7650,1,0,0,0,7652,7653,1,0,0,0,7653,7656,1,0,0,0,7654,7655, + 5,868,0,0,7655,7657,3,708,354,0,7656,7654,1,0,0,0,7656,7657,1,0, + 0,0,7657,7658,1,0,0,0,7658,7659,5,867,0,0,7659,7660,3,774,387,0, + 7660,7686,1,0,0,0,7661,7662,7,142,0,0,7662,7663,5,866,0,0,7663,7664, + 3,800,400,0,7664,7665,5,867,0,0,7665,7666,3,774,387,0,7666,7686, + 1,0,0,0,7667,7668,7,143,0,0,7668,7669,5,866,0,0,7669,7670,5,867, + 0,0,7670,7686,3,774,387,0,7671,7672,5,273,0,0,7672,7673,5,866,0, + 0,7673,7674,3,800,400,0,7674,7675,5,868,0,0,7675,7676,3,708,354, + 0,7676,7677,5,867,0,0,7677,7678,3,774,387,0,7678,7686,1,0,0,0,7679, + 7680,5,272,0,0,7680,7681,5,866,0,0,7681,7682,3,708,354,0,7682,7683, + 5,867,0,0,7683,7684,3,774,387,0,7684,7686,1,0,0,0,7685,7647,1,0, + 0,0,7685,7661,1,0,0,0,7685,7667,1,0,0,0,7685,7671,1,0,0,0,7685,7679, + 1,0,0,0,7686,773,1,0,0,0,7687,7693,5,129,0,0,7688,7689,5,866,0,0, + 7689,7690,3,776,388,0,7690,7691,5,867,0,0,7691,7694,1,0,0,0,7692, + 7694,3,778,389,0,7693,7688,1,0,0,0,7693,7692,1,0,0,0,7694,775,1, + 0,0,0,7695,7697,3,778,389,0,7696,7695,1,0,0,0,7696,7697,1,0,0,0, + 7697,7699,1,0,0,0,7698,7700,3,790,395,0,7699,7698,1,0,0,0,7699,7700, + 1,0,0,0,7700,7702,1,0,0,0,7701,7703,3,252,126,0,7702,7701,1,0,0, + 0,7702,7703,1,0,0,0,7703,7705,1,0,0,0,7704,7706,3,780,390,0,7705, + 7704,1,0,0,0,7705,7706,1,0,0,0,7706,777,1,0,0,0,7707,7708,3,702, + 351,0,7708,779,1,0,0,0,7709,7710,3,782,391,0,7710,7711,3,784,392, + 0,7711,781,1,0,0,0,7712,7713,7,144,0,0,7713,783,1,0,0,0,7714,7717, + 3,788,394,0,7715,7717,3,786,393,0,7716,7714,1,0,0,0,7716,7715,1, + 0,0,0,7717,785,1,0,0,0,7718,7719,5,17,0,0,7719,7720,3,788,394,0, + 7720,7721,5,11,0,0,7721,7722,3,788,394,0,7722,787,1,0,0,0,7723,7724, + 5,36,0,0,7724,7731,5,586,0,0,7725,7726,5,669,0,0,7726,7731,7,145, + 0,0,7727,7728,3,800,400,0,7728,7729,7,145,0,0,7729,7731,1,0,0,0, + 7730,7723,1,0,0,0,7730,7725,1,0,0,0,7730,7727,1,0,0,0,7731,789,1, + 0,0,0,7732,7733,5,130,0,0,7733,7734,5,20,0,0,7734,7739,3,800,400, + 0,7735,7736,5,868,0,0,7736,7738,3,800,400,0,7737,7735,1,0,0,0,7738, + 7741,1,0,0,0,7739,7737,1,0,0,0,7739,7740,1,0,0,0,7740,791,1,0,0, + 0,7741,7739,1,0,0,0,7742,7767,3,832,416,0,7743,7767,5,757,0,0,7744, + 7767,5,289,0,0,7745,7767,5,285,0,0,7746,7767,5,286,0,0,7747,7767, + 5,287,0,0,7748,7767,5,290,0,0,7749,7767,5,291,0,0,7750,7767,5,292, + 0,0,7751,7767,5,78,0,0,7752,7767,5,86,0,0,7753,7767,5,288,0,0,7754, + 7767,5,294,0,0,7755,7767,5,488,0,0,7756,7767,5,295,0,0,7757,7767, + 5,142,0,0,7758,7767,5,143,0,0,7759,7767,5,297,0,0,7760,7767,5,298, + 0,0,7761,7767,5,299,0,0,7762,7767,5,300,0,0,7763,7767,5,301,0,0, + 7764,7767,5,302,0,0,7765,7767,5,303,0,0,7766,7742,1,0,0,0,7766,7743, + 1,0,0,0,7766,7744,1,0,0,0,7766,7745,1,0,0,0,7766,7746,1,0,0,0,7766, + 7747,1,0,0,0,7766,7748,1,0,0,0,7766,7749,1,0,0,0,7766,7750,1,0,0, + 0,7766,7751,1,0,0,0,7766,7752,1,0,0,0,7766,7753,1,0,0,0,7766,7754, + 1,0,0,0,7766,7755,1,0,0,0,7766,7756,1,0,0,0,7766,7757,1,0,0,0,7766, + 7758,1,0,0,0,7766,7759,1,0,0,0,7766,7760,1,0,0,0,7766,7761,1,0,0, + 0,7766,7762,1,0,0,0,7766,7763,1,0,0,0,7766,7764,1,0,0,0,7766,7765, + 1,0,0,0,7767,793,1,0,0,0,7768,7769,7,146,0,0,7769,7770,5,866,0,0, + 7770,7771,3,798,399,0,7771,7772,5,867,0,0,7772,795,1,0,0,0,7773, + 7778,3,798,399,0,7774,7775,5,868,0,0,7775,7777,3,798,399,0,7776, + 7774,1,0,0,0,7777,7780,1,0,0,0,7778,7776,1,0,0,0,7778,7779,1,0,0, + 0,7779,797,1,0,0,0,7780,7778,1,0,0,0,7781,7786,3,720,360,0,7782, + 7786,3,658,329,0,7783,7786,3,760,380,0,7784,7786,3,800,400,0,7785, + 7781,1,0,0,0,7785,7782,1,0,0,0,7785,7783,1,0,0,0,7785,7784,1,0,0, + 0,7786,799,1,0,0,0,7787,7788,6,400,-1,0,7788,7789,7,147,0,0,7789, + 7799,3,800,400,4,7790,7791,3,802,401,0,7791,7793,5,89,0,0,7792,7794, + 5,114,0,0,7793,7792,1,0,0,0,7793,7794,1,0,0,0,7794,7795,1,0,0,0, + 7795,7796,7,148,0,0,7796,7799,1,0,0,0,7797,7799,3,802,401,0,7798, + 7787,1,0,0,0,7798,7790,1,0,0,0,7798,7797,1,0,0,0,7799,7806,1,0,0, + 0,7800,7801,10,3,0,0,7801,7802,3,812,406,0,7802,7803,3,800,400,4, + 7803,7805,1,0,0,0,7804,7800,1,0,0,0,7805,7808,1,0,0,0,7806,7804, + 1,0,0,0,7806,7807,1,0,0,0,7807,801,1,0,0,0,7808,7806,1,0,0,0,7809, + 7810,6,401,-1,0,7810,7811,3,804,402,0,7811,7876,1,0,0,0,7812,7813, + 10,8,0,0,7813,7814,3,808,404,0,7814,7815,3,802,401,9,7815,7875,1, + 0,0,0,7816,7818,10,6,0,0,7817,7819,5,114,0,0,7818,7817,1,0,0,0,7818, + 7819,1,0,0,0,7819,7820,1,0,0,0,7820,7821,5,17,0,0,7821,7822,3,802, + 401,0,7822,7823,5,11,0,0,7823,7824,3,802,401,7,7824,7875,1,0,0,0, + 7825,7826,10,5,0,0,7826,7827,5,604,0,0,7827,7828,5,99,0,0,7828,7875, + 3,802,401,6,7829,7831,10,3,0,0,7830,7832,5,114,0,0,7831,7830,1,0, + 0,0,7831,7832,1,0,0,0,7832,7833,1,0,0,0,7833,7834,7,149,0,0,7834, + 7875,3,802,401,4,7835,7837,10,10,0,0,7836,7838,5,114,0,0,7837,7836, + 1,0,0,0,7837,7838,1,0,0,0,7838,7839,1,0,0,0,7839,7840,5,80,0,0,7840, + 7843,5,866,0,0,7841,7844,3,204,102,0,7842,7844,3,736,368,0,7843, + 7841,1,0,0,0,7843,7842,1,0,0,0,7844,7845,1,0,0,0,7845,7846,5,867, + 0,0,7846,7875,1,0,0,0,7847,7848,10,9,0,0,7848,7849,5,89,0,0,7849, + 7875,3,718,359,0,7850,7851,10,7,0,0,7851,7852,3,808,404,0,7852,7853, + 7,150,0,0,7853,7854,5,866,0,0,7854,7855,3,204,102,0,7855,7856,5, + 867,0,0,7856,7875,1,0,0,0,7857,7859,10,4,0,0,7858,7860,5,114,0,0, + 7859,7858,1,0,0,0,7859,7860,1,0,0,0,7860,7861,1,0,0,0,7861,7862, + 5,99,0,0,7862,7865,3,802,401,0,7863,7864,5,384,0,0,7864,7866,5,882, + 0,0,7865,7863,1,0,0,0,7865,7866,1,0,0,0,7866,7875,1,0,0,0,7867,7868, + 10,2,0,0,7868,7869,5,485,0,0,7869,7870,5,510,0,0,7870,7871,5,866, + 0,0,7871,7872,3,802,401,0,7872,7873,5,867,0,0,7873,7875,1,0,0,0, + 7874,7812,1,0,0,0,7874,7816,1,0,0,0,7874,7825,1,0,0,0,7874,7829, + 1,0,0,0,7874,7835,1,0,0,0,7874,7847,1,0,0,0,7874,7850,1,0,0,0,7874, + 7857,1,0,0,0,7874,7867,1,0,0,0,7875,7878,1,0,0,0,7876,7874,1,0,0, + 0,7876,7877,1,0,0,0,7877,803,1,0,0,0,7878,7876,1,0,0,0,7879,7880, + 6,402,-1,0,7880,7928,3,720,360,0,7881,7928,3,658,329,0,7882,7928, + 3,760,380,0,7883,7928,3,682,341,0,7884,7885,3,806,403,0,7885,7886, + 3,804,402,11,7886,7928,1,0,0,0,7887,7888,5,228,0,0,7888,7928,3,804, + 402,10,7889,7890,5,892,0,0,7890,7891,5,841,0,0,7891,7928,3,804,402, + 9,7892,7893,5,866,0,0,7893,7898,3,800,400,0,7894,7895,5,868,0,0, + 7895,7897,3,800,400,0,7896,7894,1,0,0,0,7897,7900,1,0,0,0,7898,7896, + 1,0,0,0,7898,7899,1,0,0,0,7899,7901,1,0,0,0,7900,7898,1,0,0,0,7901, + 7902,5,867,0,0,7902,7928,1,0,0,0,7903,7904,5,586,0,0,7904,7905,5, + 866,0,0,7905,7908,3,800,400,0,7906,7907,5,868,0,0,7907,7909,3,800, + 400,0,7908,7906,1,0,0,0,7909,7910,1,0,0,0,7910,7908,1,0,0,0,7910, + 7911,1,0,0,0,7911,7912,1,0,0,0,7912,7913,5,867,0,0,7913,7928,1,0, + 0,0,7914,7915,5,60,0,0,7915,7916,5,866,0,0,7916,7917,3,204,102,0, + 7917,7918,5,867,0,0,7918,7928,1,0,0,0,7919,7920,5,866,0,0,7920,7921, + 3,204,102,0,7921,7922,5,867,0,0,7922,7928,1,0,0,0,7923,7924,5,87, + 0,0,7924,7925,3,800,400,0,7925,7926,3,66,33,0,7926,7928,1,0,0,0, + 7927,7879,1,0,0,0,7927,7881,1,0,0,0,7927,7882,1,0,0,0,7927,7883, + 1,0,0,0,7927,7884,1,0,0,0,7927,7887,1,0,0,0,7927,7889,1,0,0,0,7927, + 7892,1,0,0,0,7927,7903,1,0,0,0,7927,7914,1,0,0,0,7927,7919,1,0,0, + 0,7927,7923,1,0,0,0,7928,7946,1,0,0,0,7929,7930,10,3,0,0,7930,7931, + 3,814,407,0,7931,7932,3,804,402,4,7932,7945,1,0,0,0,7933,7934,10, + 2,0,0,7934,7935,3,816,408,0,7935,7936,3,804,402,3,7936,7945,1,0, + 0,0,7937,7938,10,1,0,0,7938,7939,3,818,409,0,7939,7940,3,804,402, + 2,7940,7945,1,0,0,0,7941,7942,10,13,0,0,7942,7943,5,28,0,0,7943, + 7945,3,686,343,0,7944,7929,1,0,0,0,7944,7933,1,0,0,0,7944,7937,1, + 0,0,0,7944,7941,1,0,0,0,7945,7948,1,0,0,0,7946,7944,1,0,0,0,7946, + 7947,1,0,0,0,7947,805,1,0,0,0,7948,7946,1,0,0,0,7949,7950,7,151, + 0,0,7950,807,1,0,0,0,7951,7960,3,810,405,0,7952,7953,5,859,0,0,7953, + 7960,5,858,0,0,7954,7955,5,860,0,0,7955,7960,5,857,0,0,7956,7957, + 5,859,0,0,7957,7958,5,857,0,0,7958,7960,5,858,0,0,7959,7951,1,0, + 0,0,7959,7952,1,0,0,0,7959,7954,1,0,0,0,7959,7956,1,0,0,0,7960,809, + 1,0,0,0,7961,7969,5,857,0,0,7962,7969,5,858,0,0,7963,7969,5,859, + 0,0,7964,7965,5,859,0,0,7965,7969,5,857,0,0,7966,7967,5,858,0,0, + 7967,7969,5,857,0,0,7968,7961,1,0,0,0,7968,7962,1,0,0,0,7968,7963, + 1,0,0,0,7968,7964,1,0,0,0,7968,7966,1,0,0,0,7969,811,1,0,0,0,7970, + 7978,5,11,0,0,7971,7972,5,863,0,0,7972,7978,5,863,0,0,7973,7978, + 5,196,0,0,7974,7978,5,124,0,0,7975,7976,5,862,0,0,7976,7978,5,862, + 0,0,7977,7970,1,0,0,0,7977,7971,1,0,0,0,7977,7973,1,0,0,0,7977,7974, + 1,0,0,0,7977,7975,1,0,0,0,7978,813,1,0,0,0,7979,7980,5,859,0,0,7980, + 7987,5,859,0,0,7981,7982,5,858,0,0,7982,7987,5,858,0,0,7983,7987, + 5,863,0,0,7984,7987,5,864,0,0,7985,7987,5,862,0,0,7986,7979,1,0, + 0,0,7986,7981,1,0,0,0,7986,7983,1,0,0,0,7986,7984,1,0,0,0,7986,7985, + 1,0,0,0,7987,815,1,0,0,0,7988,7989,7,152,0,0,7989,817,1,0,0,0,7990, + 7991,5,854,0,0,7991,7996,5,858,0,0,7992,7993,5,854,0,0,7993,7994, + 5,858,0,0,7994,7996,5,858,0,0,7995,7990,1,0,0,0,7995,7992,1,0,0, + 0,7996,819,1,0,0,0,7997,7998,7,153,0,0,7998,821,1,0,0,0,7999,8000, + 7,154,0,0,8000,823,1,0,0,0,8001,8002,7,155,0,0,8002,825,1,0,0,0, + 8003,8004,7,156,0,0,8004,827,1,0,0,0,8005,8006,7,157,0,0,8006,829, + 1,0,0,0,8007,8008,7,158,0,0,8008,831,1,0,0,0,8009,8010,7,159,0,0, + 8010,833,1,0,0,0,1152,837,844,847,856,899,918,929,945,950,962,997, + 1007,1012,1018,1023,1027,1036,1039,1042,1046,1053,1056,1061,1069, + 1074,1079,1082,1084,1096,1099,1103,1106,1110,1113,1117,1120,1123, + 1127,1130,1134,1140,1144,1149,1155,1162,1170,1188,1195,1199,1205, + 1210,1213,1216,1220,1224,1228,1232,1237,1240,1243,1246,1249,1255, + 1259,1269,1271,1275,1282,1286,1289,1294,1298,1301,1305,1308,1312, + 1325,1328,1332,1335,1339,1342,1346,1349,1353,1356,1359,1363,1366, + 1370,1376,1380,1392,1398,1409,1414,1422,1426,1431,1434,1439,1447, + 1452,1458,1463,1467,1469,1472,1476,1480,1483,1487,1491,1495,1501, + 1504,1511,1516,1522,1529,1535,1543,1546,1553,1556,1558,1564,1570, + 1587,1594,1601,1613,1618,1621,1624,1634,1647,1652,1668,1676,1686, + 1689,1695,1700,1703,1709,1713,1718,1724,1728,1732,1735,1738,1744, + 1748,1753,1764,1767,1774,1777,1781,1787,1799,1802,1807,1820,1827, + 1833,1838,1842,1845,1853,1861,1863,1873,1877,1880,1884,1889,1894, + 1899,1903,1907,1911,1915,1919,1923,1928,1933,1938,1944,1949,1954, + 1959,1964,1969,1975,1980,1985,1990,1995,2000,2005,2010,2017,2022, + 2027,2032,2036,2041,2049,2054,2060,2072,2079,2081,2089,2094,2097, + 2105,2111,2115,2128,2140,2142,2145,2153,2159,2165,2178,2185,2194, + 2199,2210,2219,2224,2236,2243,2252,2257,2269,2276,2285,2290,2297, + 2306,2311,2313,2318,2326,2335,2339,2342,2346,2351,2357,2363,2368, + 2373,2378,2383,2386,2391,2396,2406,2410,2417,2422,2425,2430,2433, + 2437,2441,2449,2468,2471,2474,2478,2488,2501,2514,2517,2523,2526, + 2530,2539,2542,2545,2550,2554,2557,2561,2565,2568,2572,2575,2579, + 2582,2588,2591,2596,2604,2610,2614,2618,2623,2628,2635,2639,2650, + 2658,2661,2667,2673,2676,2682,2688,2690,2695,2701,2707,2709,2713, + 2716,2719,2725,2731,2733,2738,2745,2754,2757,2761,2766,2776,2785, + 2793,2796,2804,2807,2814,2819,2827,2843,2848,2855,2874,2880,2890, + 2902,2909,2916,2931,2944,2950,2956,2962,2968,2974,2980,2985,2992, + 2999,3006,3011,3014,3016,3025,3032,3039,3046,3055,3061,3065,3069, + 3073,3079,3082,3087,3094,3101,3105,3110,3120,3128,3134,3143,3152, + 3161,3164,3168,3177,3181,3184,3187,3193,3196,3199,3203,3206,3209, + 3212,3223,3226,3231,3237,3242,3247,3250,3254,3259,3262,3267,3277, + 3282,3288,3290,3296,3298,3304,3312,3317,3325,3328,3333,3336,3341, + 3349,3355,3359,3361,3367,3375,3380,3388,3391,3396,3399,3403,3406, + 3409,3413,3416,3424,3430,3434,3440,3445,3449,3451,3457,3461,3464, + 3467,3470,3476,3481,3484,3487,3490,3493,3495,3498,3502,3505,3508, + 3516,3522,3525,3527,3536,3541,3548,3551,3554,3558,3562,3568,3572, + 3579,3583,3586,3589,3594,3601,3611,3620,3629,3639,3642,3646,3652, + 3656,3659,3662,3667,3670,3677,3681,3684,3688,3692,3695,3698,3703, + 3709,3713,3723,3729,3733,3739,3743,3749,3752,3764,3768,3772,3780, + 3784,3798,3803,3806,3810,3813,3821,3826,3829,3832,3836,3839,3848, + 3853,3862,3867,3874,3881,3889,3895,3903,3906,3909,3916,3919,3922, + 3929,3932,3936,3942,3952,3956,3965,3968,3972,3978,3986,3991,3995, + 4001,4007,4010,4012,4016,4025,4035,4041,4046,4050,4053,4056,4059, + 4062,4065,4069,4073,4081,4085,4088,4090,4103,4106,4113,4123,4126, + 4131,4133,4137,4145,4151,4160,4173,4177,4183,4188,4192,4195,4199, + 4202,4210,4213,4215,4223,4235,4241,4243,4249,4251,4253,4259,4267, + 4275,4279,4283,4292,4297,4317,4322,4328,4335,4340,4349,4352,4356, + 4360,4364,4367,4370,4373,4377,4381,4384,4387,4390,4397,4401,4416, + 4429,4437,4447,4451,4454,4460,4463,4466,4475,4484,4494,4498,4508, + 4512,4523,4527,4536,4545,4548,4552,4557,4561,4570,4573,4576,4583, + 4589,4595,4621,4624,4627,4646,4648,4671,4674,4677,4696,4698,4712, + 4725,4762,4767,4802,4816,4823,4827,4833,4841,4843,4854,4864,4871, + 4877,4885,4890,4898,4906,4914,4922,4928,4933,4938,4943,4949,4951, + 4962,4967,4974,4976,4990,4996,5001,5006,5012,5019,5027,5035,5040, + 5046,5049,5057,5064,5073,5076,5093,5101,5109,5113,5120,5126,5134, + 5139,5146,5154,5161,5166,5169,5171,5177,5179,5183,5185,5190,5197, + 5202,5206,5211,5215,5221,5227,5232,5235,5237,5243,5245,5249,5251, + 5256,5261,5268,5277,5282,5291,5295,5301,5306,5309,5311,5317,5319, + 5322,5329,5331,5336,5343,5352,5358,5360,5367,5370,5382,5388,5396, + 5399,5403,5406,5410,5412,5423,5426,5430,5433,5436,5443,5455,5458, + 5465,5471,5481,5486,5493,5498,5504,5508,5512,5520,5524,5528,5534, + 5536,5548,5553,5559,5565,5569,5574,5576,5600,5604,5607,5616,5620, + 5629,5633,5637,5643,5645,5654,5664,5691,5695,5700,5707,5710,5716, + 5726,5736,5746,5752,5761,5767,5774,5776,5784,5790,5794,5811,5821, + 5825,5829,5839,5844,5916,5934,5942,5948,5960,5964,5975,5979,5988, + 5996,6003,6007,6014,6019,6022,6025,6036,6040,6044,6059,6068,6071, + 6085,6103,6116,6119,6123,6126,6128,6135,6142,6146,6153,6160,6163, + 6179,6182,6192,6196,6202,6205,6208,6213,6217,6220,6227,6230,6236, + 6272,6275,6287,6290,6306,6308,6312,6319,6323,6330,6333,6342,6345, + 6350,6356,6358,6364,6368,6374,6377,6380,6393,6396,6402,6405,6413, + 6421,6427,6430,6434,6448,6460,6468,6472,6479,6486,6491,6504,6513, + 6521,6526,6529,6534,6537,6549,6554,6567,6569,6574,6578,6581,6583, + 6590,6597,6600,6603,6609,6613,6619,6627,6636,6649,6654,6662,6665, + 6670,6675,6683,6686,6694,6698,6705,6711,6714,6718,6731,6737,6749, + 6752,6761,6766,6787,6803,6813,6818,6823,6825,6828,6832,6834,6841, + 6847,6849,6852,6856,6858,6871,6881,6884,6887,6900,6906,6909,6917, + 6924,6944,6951,6953,6960,6962,6966,6973,6979,6990,6996,7002,7005, + 7009,7014,7017,7021,7025,7027,7032,7037,7050,7053,7057,7060,7063, + 7068,7073,7079,7082,7087,7090,7095,7098,7102,7107,7112,7117,7122, + 7125,7130,7135,7140,7146,7151,7156,7161,7165,7168,7173,7177,7181, + 7189,7196,7200,7205,7210,7214,7216,7219,7235,7245,7255,7264,7273, + 7280,7287,7295,7303,7315,7322,7332,7337,7340,7345,7348,7366,7373, + 7378,7383,7417,7421,7429,7433,7442,7450,7455,7463,7468,7473,7475, + 7484,7489,7497,7502,7510,7518,7521,7531,7549,7552,7555,7559,7572, + 7580,7584,7589,7594,7600,7605,7609,7614,7619,7624,7634,7637,7641, + 7645,7652,7656,7685,7693,7696,7699,7702,7705,7716,7730,7739,7766, + 7778,7785,7793,7798,7806,7818,7831,7837,7843,7859,7865,7874,7876, + 7898,7910,7927,7944,7946,7959,7968,7977,7986,7995 ]; private static __ATN: antlr.ATN; @@ -62322,14 +61903,104 @@ export class SelectStatementContext extends antlr.ParserRuleContext { super.copyFrom(ctx); } } -export class UnionSelectContext extends SelectStatementContext { +export class UnionAndLateralSelectContext extends SelectStatementContext { public _unionType?: Token | null; public constructor(ctx: SelectStatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public querySpecificationNointo(): QuerySpecificationNointoContext { - return this.getRuleContext(0, QuerySpecificationNointoContext)!; + public querySpecification(): QuerySpecificationContext[]; + public querySpecification(i: number): QuerySpecificationContext | null; + public querySpecification(i?: number): QuerySpecificationContext[] | QuerySpecificationContext | null { + if (i === undefined) { + return this.getRuleContexts(QuerySpecificationContext); + } + + return this.getRuleContext(i, QuerySpecificationContext); + } + public unionStatement(): UnionStatementContext[]; + public unionStatement(i: number): UnionStatementContext | null; + public unionStatement(i?: number): UnionStatementContext[] | UnionStatementContext | null { + if (i === undefined) { + return this.getRuleContexts(UnionStatementContext); + } + + return this.getRuleContext(i, UnionStatementContext); + } + public KW_UNION(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_UNION, 0); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(MySqlParser.COMMA); + } else { + return this.getToken(MySqlParser.COMMA, i); + } + } + public lateralStatement(): LateralStatementContext[]; + public lateralStatement(i: number): LateralStatementContext | null; + public lateralStatement(i?: number): LateralStatementContext[] | LateralStatementContext | null { + if (i === undefined) { + return this.getRuleContexts(LateralStatementContext); + } + + return this.getRuleContext(i, LateralStatementContext); + } + public orderByClause(): OrderByClauseContext | null { + return this.getRuleContext(0, OrderByClauseContext); + } + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); + } + public lockClause(): LockClauseContext | null { + return this.getRuleContext(0, LockClauseContext); + } + public intoClause(): IntoClauseContext | null { + return this.getRuleContext(0, IntoClauseContext); + } + public queryExpression(): QueryExpressionContext | null { + return this.getRuleContext(0, QueryExpressionContext); + } + public KW_ALL(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_ALL, 0); + } + public KW_DISTINCT(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_DISTINCT, 0); + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterUnionAndLateralSelect) { + listener.enterUnionAndLateralSelect(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitUnionAndLateralSelect) { + listener.exitUnionAndLateralSelect(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitUnionAndLateralSelect) { + return visitor.visitUnionAndLateralSelect(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SelectExpressionContext extends SelectStatementContext { + public _unionType?: Token | null; + public constructor(ctx: SelectStatementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public queryExpression(): QueryExpressionContext[]; + public queryExpression(i: number): QueryExpressionContext | null; + public queryExpression(i?: number): QueryExpressionContext[] | QueryExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(QueryExpressionContext); + } + + return this.getRuleContext(i, QueryExpressionContext); } public unionStatement(): UnionStatementContext[]; public unionStatement(i: number): UnionStatementContext | null; @@ -62352,12 +62023,6 @@ export class UnionSelectContext extends SelectStatementContext { public lockClause(): LockClauseContext | null { return this.getRuleContext(0, LockClauseContext); } - public querySpecification(): QuerySpecificationContext | null { - return this.getRuleContext(0, QuerySpecificationContext); - } - public queryExpression(): QueryExpressionContext | null { - return this.getRuleContext(0, QueryExpressionContext); - } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_ALL, 0); } @@ -62365,183 +62030,18 @@ export class UnionSelectContext extends SelectStatementContext { return this.getToken(MySqlParser.KW_DISTINCT, 0); } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterUnionSelect) { - listener.enterUnionSelect(this); + if(listener.enterSelectExpression) { + listener.enterSelectExpression(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitUnionSelect) { - listener.exitUnionSelect(this); + if(listener.exitSelectExpression) { + listener.exitSelectExpression(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitUnionSelect) { - return visitor.visitUnionSelect(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class UnionParenthesisSelectContext extends SelectStatementContext { - public _unionType?: Token | null; - public constructor(ctx: SelectStatementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public queryExpressionNointo(): QueryExpressionNointoContext { - return this.getRuleContext(0, QueryExpressionNointoContext)!; - } - public unionParenthesis(): UnionParenthesisContext[]; - public unionParenthesis(i: number): UnionParenthesisContext | null; - public unionParenthesis(i?: number): UnionParenthesisContext[] | UnionParenthesisContext | null { - if (i === undefined) { - return this.getRuleContexts(UnionParenthesisContext); - } - - return this.getRuleContext(i, UnionParenthesisContext); - } - public KW_UNION(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_UNION, 0); - } - public queryExpression(): QueryExpressionContext | null { - return this.getRuleContext(0, QueryExpressionContext); - } - public orderByClause(): OrderByClauseContext | null { - return this.getRuleContext(0, OrderByClauseContext); - } - public limitClause(): LimitClauseContext | null { - return this.getRuleContext(0, LimitClauseContext); - } - public lockClause(): LockClauseContext | null { - return this.getRuleContext(0, LockClauseContext); - } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_ALL, 0); - } - public KW_DISTINCT(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_DISTINCT, 0); - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterUnionParenthesisSelect) { - listener.enterUnionParenthesisSelect(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitUnionParenthesisSelect) { - listener.exitUnionParenthesisSelect(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitUnionParenthesisSelect) { - return visitor.visitUnionParenthesisSelect(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class SimpleSelectContext extends SelectStatementContext { - public constructor(ctx: SelectStatementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public querySpecification(): QuerySpecificationContext | null { - return this.getRuleContext(0, QuerySpecificationContext); - } - public lockClause(): LockClauseContext | null { - return this.getRuleContext(0, LockClauseContext); - } - public querySpecificationNointo(): QuerySpecificationNointoContext | null { - return this.getRuleContext(0, QuerySpecificationNointoContext); - } - public intoClause(): IntoClauseContext | null { - return this.getRuleContext(0, IntoClauseContext); - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSimpleSelect) { - listener.enterSimpleSelect(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSimpleSelect) { - listener.exitSimpleSelect(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSimpleSelect) { - return visitor.visitSimpleSelect(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class ParenthesisSelectContext extends SelectStatementContext { - public constructor(ctx: SelectStatementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public queryExpression(): QueryExpressionContext { - return this.getRuleContext(0, QueryExpressionContext)!; - } - public lockClause(): LockClauseContext | null { - return this.getRuleContext(0, LockClauseContext); - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterParenthesisSelect) { - listener.enterParenthesisSelect(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitParenthesisSelect) { - listener.exitParenthesisSelect(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitParenthesisSelect) { - return visitor.visitParenthesisSelect(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class WithLateralStatementContext extends SelectStatementContext { - public constructor(ctx: SelectStatementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public querySpecificationNointo(): QuerySpecificationNointoContext { - return this.getRuleContext(0, QuerySpecificationNointoContext)!; - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(MySqlParser.COMMA); - } else { - return this.getToken(MySqlParser.COMMA, i); - } - } - public lateralStatement(): LateralStatementContext[]; - public lateralStatement(i: number): LateralStatementContext | null; - public lateralStatement(i?: number): LateralStatementContext[] | LateralStatementContext | null { - if (i === undefined) { - return this.getRuleContexts(LateralStatementContext); - } - - return this.getRuleContext(i, LateralStatementContext); - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterWithLateralStatement) { - listener.enterWithLateralStatement(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitWithLateralStatement) { - listener.exitWithLateralStatement(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitWithLateralStatement) { - return visitor.visitWithLateralStatement(this); + if (visitor.visitSelectExpression) { + return visitor.visitSelectExpression(this); } else { return visitor.visitChildren(this); } @@ -64601,45 +64101,6 @@ export class QueryExpressionContext extends antlr.ParserRuleContext { } -export class QueryExpressionNointoContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public LR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.LR_BRACKET, 0)!; - } - public querySpecificationNointo(): QuerySpecificationNointoContext | null { - return this.getRuleContext(0, QuerySpecificationNointoContext); - } - public RR_BRACKET(): antlr.TerminalNode { - return this.getToken(MySqlParser.RR_BRACKET, 0)!; - } - public queryExpressionNointo(): QueryExpressionNointoContext | null { - return this.getRuleContext(0, QueryExpressionNointoContext); - } - public override get ruleIndex(): number { - return MySqlParser.RULE_queryExpressionNointo; - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterQueryExpressionNointo) { - listener.enterQueryExpressionNointo(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitQueryExpressionNointo) { - listener.exitQueryExpressionNointo(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitQueryExpressionNointo) { - return visitor.visitQueryExpressionNointo(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class QuerySpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -64662,8 +64123,14 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, SelectSpecContext); } - public intoClause(): IntoClauseContext | null { - return this.getRuleContext(0, IntoClauseContext); + public intoClause(): IntoClauseContext[]; + public intoClause(i: number): IntoClauseContext | null; + public intoClause(i?: number): IntoClauseContext[] | IntoClauseContext | null { + if (i === undefined) { + return this.getRuleContexts(IntoClauseContext); + } + + return this.getRuleContext(i, IntoClauseContext); } public groupByClause(): GroupByClauseContext | null { return this.getRuleContext(0, GroupByClauseContext); @@ -64703,106 +64170,6 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { } -export class QuerySpecificationNointoContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_SELECT(): antlr.TerminalNode { - return this.getToken(MySqlParser.KW_SELECT, 0)!; - } - public selectElements(): SelectElementsContext { - return this.getRuleContext(0, SelectElementsContext)!; - } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext)!; - } - public selectSpec(): SelectSpecContext[]; - public selectSpec(i: number): SelectSpecContext | null; - public selectSpec(i?: number): SelectSpecContext[] | SelectSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(SelectSpecContext); - } - - return this.getRuleContext(i, SelectSpecContext); - } - public groupByClause(): GroupByClauseContext | null { - return this.getRuleContext(0, GroupByClauseContext); - } - public havingClause(): HavingClauseContext | null { - return this.getRuleContext(0, HavingClauseContext); - } - public windowClause(): WindowClauseContext | null { - return this.getRuleContext(0, WindowClauseContext); - } - public orderByClause(): OrderByClauseContext | null { - return this.getRuleContext(0, OrderByClauseContext); - } - public limitClause(): LimitClauseContext | null { - return this.getRuleContext(0, LimitClauseContext); - } - public override get ruleIndex(): number { - return MySqlParser.RULE_querySpecificationNointo; - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterQuerySpecificationNointo) { - listener.enterQuerySpecificationNointo(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitQuerySpecificationNointo) { - listener.exitQuerySpecificationNointo(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitQuerySpecificationNointo) { - return visitor.visitQuerySpecificationNointo(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnionParenthesisContext extends antlr.ParserRuleContext { - public _unionType?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_UNION(): antlr.TerminalNode { - return this.getToken(MySqlParser.KW_UNION, 0)!; - } - public queryExpressionNointo(): QueryExpressionNointoContext { - return this.getRuleContext(0, QueryExpressionNointoContext)!; - } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_ALL, 0); - } - public KW_DISTINCT(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_DISTINCT, 0); - } - public override get ruleIndex(): number { - return MySqlParser.RULE_unionParenthesis; - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterUnionParenthesis) { - listener.enterUnionParenthesis(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitUnionParenthesis) { - listener.exitUnionParenthesis(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitUnionParenthesis) { - return visitor.visitUnionParenthesis(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class UnionStatementContext extends antlr.ParserRuleContext { public _unionType?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -64811,11 +64178,11 @@ export class UnionStatementContext extends antlr.ParserRuleContext { public KW_UNION(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_UNION, 0)!; } - public querySpecificationNointo(): QuerySpecificationNointoContext | null { - return this.getRuleContext(0, QuerySpecificationNointoContext); + public querySpecification(): QuerySpecificationContext | null { + return this.getRuleContext(0, QuerySpecificationContext); } - public queryExpressionNointo(): QueryExpressionNointoContext | null { - return this.getRuleContext(0, QueryExpressionNointoContext); + public queryExpression(): QueryExpressionContext | null { + return this.getRuleContext(0, QueryExpressionContext); } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_ALL, 0); @@ -64854,11 +64221,11 @@ export class LateralStatementContext extends antlr.ParserRuleContext { public KW_LATERAL(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_LATERAL, 0)!; } - public querySpecificationNointo(): QuerySpecificationNointoContext | null { - return this.getRuleContext(0, QuerySpecificationNointoContext); + public querySpecification(): QuerySpecificationContext | null { + return this.getRuleContext(0, QuerySpecificationContext); } - public queryExpressionNointo(): QueryExpressionNointoContext | null { - return this.getRuleContext(0, QueryExpressionNointoContext); + public queryExpression(): QueryExpressionContext | null { + return this.getRuleContext(0, QueryExpressionContext); } public LR_BRACKET(): antlr.TerminalNode | null { return this.getToken(MySqlParser.LR_BRACKET, 0); @@ -71866,6 +71233,9 @@ export class AlterUserAuthOptionContext extends antlr.ParserRuleContext { public KW_OLD(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_OLD, 0); } + public registrationOption(): RegistrationOptionContext | null { + return this.getRuleContext(0, RegistrationOptionContext); + } public factor(): FactorContext[]; public factor(i: number): FactorContext | null; public factor(i?: number): FactorContext[] | FactorContext | null { @@ -71911,9 +71281,6 @@ export class AlterUserAuthOptionContext extends antlr.ParserRuleContext { return this.getRuleContext(i, FactorAuthOptionContext); } - public registrationOption(): RegistrationOptionContext | null { - return this.getRuleContext(0, RegistrationOptionContext); - } public override get ruleIndex(): number { return MySqlParser.RULE_alterUserAuthOption; } diff --git a/src/lib/mysql/MySqlParserListener.ts b/src/lib/mysql/MySqlParserListener.ts index 62fda1f..2ec915a 100644 --- a/src/lib/mysql/MySqlParserListener.ts +++ b/src/lib/mysql/MySqlParserListener.ts @@ -219,11 +219,8 @@ import { LoadDataStatementContext } from "./MySqlParser.js"; import { LoadXmlStatementContext } from "./MySqlParser.js"; import { ParenthesizedQueryContext } from "./MySqlParser.js"; import { ReplaceStatementContext } from "./MySqlParser.js"; -import { SimpleSelectContext } from "./MySqlParser.js"; -import { ParenthesisSelectContext } from "./MySqlParser.js"; -import { UnionSelectContext } from "./MySqlParser.js"; -import { UnionParenthesisSelectContext } from "./MySqlParser.js"; -import { WithLateralStatementContext } from "./MySqlParser.js"; +import { UnionAndLateralSelectContext } from "./MySqlParser.js"; +import { SelectExpressionContext } from "./MySqlParser.js"; import { SetOperationsContext } from "./MySqlParser.js"; import { QueryExpressionBodyContext } from "./MySqlParser.js"; import { QueryItemContext } from "./MySqlParser.js"; @@ -265,10 +262,7 @@ import { OuterJoinContext } from "./MySqlParser.js"; import { NaturalJoinContext } from "./MySqlParser.js"; import { JoinSpecContext } from "./MySqlParser.js"; import { QueryExpressionContext } from "./MySqlParser.js"; -import { QueryExpressionNointoContext } from "./MySqlParser.js"; import { QuerySpecificationContext } from "./MySqlParser.js"; -import { QuerySpecificationNointoContext } from "./MySqlParser.js"; -import { UnionParenthesisContext } from "./MySqlParser.js"; import { UnionStatementContext } from "./MySqlParser.js"; import { LateralStatementContext } from "./MySqlParser.js"; import { JsonTableContext } from "./MySqlParser.js"; @@ -278,10 +272,10 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; +import { SelectExpressionElementContext } from "./MySqlParser.js"; +import { SelectFunctionElementContext } from "./MySqlParser.js"; import { SelectStarElementContext } from "./MySqlParser.js"; import { SelectColumnElementContext } from "./MySqlParser.js"; -import { SelectFunctionElementContext } from "./MySqlParser.js"; -import { SelectExpressionElementContext } from "./MySqlParser.js"; import { SelectIntoVariablesContext } from "./MySqlParser.js"; import { SelectIntoDumpFileContext } from "./MySqlParser.js"; import { SelectIntoTextFileContext } from "./MySqlParser.js"; @@ -3099,65 +3093,29 @@ export class MySqlParserListener implements ParseTreeListener { */ exitReplaceStatement?: (ctx: ReplaceStatementContext) => void; /** - * Enter a parse tree produced by the `simpleSelect` + * Enter a parse tree produced by the `unionAndLateralSelect` * labeled alternative in `MySqlParser.selectStatement`. * @param ctx the parse tree */ - enterSimpleSelect?: (ctx: SimpleSelectContext) => void; + enterUnionAndLateralSelect?: (ctx: UnionAndLateralSelectContext) => void; /** - * Exit a parse tree produced by the `simpleSelect` + * Exit a parse tree produced by the `unionAndLateralSelect` * labeled alternative in `MySqlParser.selectStatement`. * @param ctx the parse tree */ - exitSimpleSelect?: (ctx: SimpleSelectContext) => void; + exitUnionAndLateralSelect?: (ctx: UnionAndLateralSelectContext) => void; /** - * Enter a parse tree produced by the `parenthesisSelect` + * Enter a parse tree produced by the `selectExpression` * labeled alternative in `MySqlParser.selectStatement`. * @param ctx the parse tree */ - enterParenthesisSelect?: (ctx: ParenthesisSelectContext) => void; + enterSelectExpression?: (ctx: SelectExpressionContext) => void; /** - * Exit a parse tree produced by the `parenthesisSelect` + * Exit a parse tree produced by the `selectExpression` * labeled alternative in `MySqlParser.selectStatement`. * @param ctx the parse tree */ - exitParenthesisSelect?: (ctx: ParenthesisSelectContext) => void; - /** - * Enter a parse tree produced by the `unionSelect` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - */ - enterUnionSelect?: (ctx: UnionSelectContext) => void; - /** - * Exit a parse tree produced by the `unionSelect` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - */ - exitUnionSelect?: (ctx: UnionSelectContext) => void; - /** - * Enter a parse tree produced by the `unionParenthesisSelect` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - */ - enterUnionParenthesisSelect?: (ctx: UnionParenthesisSelectContext) => void; - /** - * Exit a parse tree produced by the `unionParenthesisSelect` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - */ - exitUnionParenthesisSelect?: (ctx: UnionParenthesisSelectContext) => void; - /** - * Enter a parse tree produced by the `withLateralStatement` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - */ - enterWithLateralStatement?: (ctx: WithLateralStatementContext) => void; - /** - * Exit a parse tree produced by the `withLateralStatement` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - */ - exitWithLateralStatement?: (ctx: WithLateralStatementContext) => void; + exitSelectExpression?: (ctx: SelectExpressionContext) => void; /** * Enter a parse tree produced by `MySqlParser.setOperations`. * @param ctx the parse tree @@ -3588,16 +3546,6 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQueryExpression?: (ctx: QueryExpressionContext) => void; - /** - * Enter a parse tree produced by `MySqlParser.queryExpressionNointo`. - * @param ctx the parse tree - */ - enterQueryExpressionNointo?: (ctx: QueryExpressionNointoContext) => void; - /** - * Exit a parse tree produced by `MySqlParser.queryExpressionNointo`. - * @param ctx the parse tree - */ - exitQueryExpressionNointo?: (ctx: QueryExpressionNointoContext) => void; /** * Enter a parse tree produced by `MySqlParser.querySpecification`. * @param ctx the parse tree @@ -3608,26 +3556,6 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; - /** - * Enter a parse tree produced by `MySqlParser.querySpecificationNointo`. - * @param ctx the parse tree - */ - enterQuerySpecificationNointo?: (ctx: QuerySpecificationNointoContext) => void; - /** - * Exit a parse tree produced by `MySqlParser.querySpecificationNointo`. - * @param ctx the parse tree - */ - exitQuerySpecificationNointo?: (ctx: QuerySpecificationNointoContext) => void; - /** - * Enter a parse tree produced by `MySqlParser.unionParenthesis`. - * @param ctx the parse tree - */ - enterUnionParenthesis?: (ctx: UnionParenthesisContext) => void; - /** - * Exit a parse tree produced by `MySqlParser.unionParenthesis`. - * @param ctx the parse tree - */ - exitUnionParenthesis?: (ctx: UnionParenthesisContext) => void; /** * Enter a parse tree produced by `MySqlParser.unionStatement`. * @param ctx the parse tree @@ -3718,6 +3646,30 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectElements?: (ctx: SelectElementsContext) => void; + /** + * Enter a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + enterSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + /** + * Exit a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + exitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + /** + * Enter a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + enterSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; + /** + * Exit a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + exitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; /** * Enter a parse tree produced by the `selectStarElement` * labeled alternative in `MySqlParser.selectElement`. @@ -3742,30 +3694,6 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectColumnElement?: (ctx: SelectColumnElementContext) => void; - /** - * Enter a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. - * @param ctx the parse tree - */ - enterSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; - /** - * Exit a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. - * @param ctx the parse tree - */ - exitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; - /** - * Enter a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. - * @param ctx the parse tree - */ - enterSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; - /** - * Exit a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. - * @param ctx the parse tree - */ - exitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; /** * Enter a parse tree produced by the `selectIntoVariables` * labeled alternative in `MySqlParser.intoClause`. diff --git a/src/lib/mysql/MySqlParserVisitor.ts b/src/lib/mysql/MySqlParserVisitor.ts index cefd98c..6858bfa 100644 --- a/src/lib/mysql/MySqlParserVisitor.ts +++ b/src/lib/mysql/MySqlParserVisitor.ts @@ -219,11 +219,8 @@ import { LoadDataStatementContext } from "./MySqlParser.js"; import { LoadXmlStatementContext } from "./MySqlParser.js"; import { ParenthesizedQueryContext } from "./MySqlParser.js"; import { ReplaceStatementContext } from "./MySqlParser.js"; -import { SimpleSelectContext } from "./MySqlParser.js"; -import { ParenthesisSelectContext } from "./MySqlParser.js"; -import { UnionSelectContext } from "./MySqlParser.js"; -import { UnionParenthesisSelectContext } from "./MySqlParser.js"; -import { WithLateralStatementContext } from "./MySqlParser.js"; +import { UnionAndLateralSelectContext } from "./MySqlParser.js"; +import { SelectExpressionContext } from "./MySqlParser.js"; import { SetOperationsContext } from "./MySqlParser.js"; import { QueryExpressionBodyContext } from "./MySqlParser.js"; import { QueryItemContext } from "./MySqlParser.js"; @@ -265,10 +262,7 @@ import { OuterJoinContext } from "./MySqlParser.js"; import { NaturalJoinContext } from "./MySqlParser.js"; import { JoinSpecContext } from "./MySqlParser.js"; import { QueryExpressionContext } from "./MySqlParser.js"; -import { QueryExpressionNointoContext } from "./MySqlParser.js"; import { QuerySpecificationContext } from "./MySqlParser.js"; -import { QuerySpecificationNointoContext } from "./MySqlParser.js"; -import { UnionParenthesisContext } from "./MySqlParser.js"; import { UnionStatementContext } from "./MySqlParser.js"; import { LateralStatementContext } from "./MySqlParser.js"; import { JsonTableContext } from "./MySqlParser.js"; @@ -278,10 +272,10 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; +import { SelectExpressionElementContext } from "./MySqlParser.js"; +import { SelectFunctionElementContext } from "./MySqlParser.js"; import { SelectStarElementContext } from "./MySqlParser.js"; import { SelectColumnElementContext } from "./MySqlParser.js"; -import { SelectFunctionElementContext } from "./MySqlParser.js"; -import { SelectExpressionElementContext } from "./MySqlParser.js"; import { SelectIntoVariablesContext } from "./MySqlParser.js"; import { SelectIntoDumpFileContext } from "./MySqlParser.js"; import { SelectIntoTextFileContext } from "./MySqlParser.js"; @@ -2112,40 +2106,19 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor */ visitReplaceStatement?: (ctx: ReplaceStatementContext) => Result; /** - * Visit a parse tree produced by the `simpleSelect` + * Visit a parse tree produced by the `unionAndLateralSelect` * labeled alternative in `MySqlParser.selectStatement`. * @param ctx the parse tree * @return the visitor result */ - visitSimpleSelect?: (ctx: SimpleSelectContext) => Result; + visitUnionAndLateralSelect?: (ctx: UnionAndLateralSelectContext) => Result; /** - * Visit a parse tree produced by the `parenthesisSelect` + * Visit a parse tree produced by the `selectExpression` * labeled alternative in `MySqlParser.selectStatement`. * @param ctx the parse tree * @return the visitor result */ - visitParenthesisSelect?: (ctx: ParenthesisSelectContext) => Result; - /** - * Visit a parse tree produced by the `unionSelect` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnionSelect?: (ctx: UnionSelectContext) => Result; - /** - * Visit a parse tree produced by the `unionParenthesisSelect` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnionParenthesisSelect?: (ctx: UnionParenthesisSelectContext) => Result; - /** - * Visit a parse tree produced by the `withLateralStatement` - * labeled alternative in `MySqlParser.selectStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWithLateralStatement?: (ctx: WithLateralStatementContext) => Result; + visitSelectExpression?: (ctx: SelectExpressionContext) => Result; /** * Visit a parse tree produced by `MySqlParser.setOperations`. * @param ctx the parse tree @@ -2402,30 +2375,12 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitQueryExpression?: (ctx: QueryExpressionContext) => Result; - /** - * Visit a parse tree produced by `MySqlParser.queryExpressionNointo`. - * @param ctx the parse tree - * @return the visitor result - */ - visitQueryExpressionNointo?: (ctx: QueryExpressionNointoContext) => Result; /** * Visit a parse tree produced by `MySqlParser.querySpecification`. * @param ctx the parse tree * @return the visitor result */ visitQuerySpecification?: (ctx: QuerySpecificationContext) => Result; - /** - * Visit a parse tree produced by `MySqlParser.querySpecificationNointo`. - * @param ctx the parse tree - * @return the visitor result - */ - visitQuerySpecificationNointo?: (ctx: QuerySpecificationNointoContext) => Result; - /** - * Visit a parse tree produced by `MySqlParser.unionParenthesis`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnionParenthesis?: (ctx: UnionParenthesisContext) => Result; /** * Visit a parse tree produced by `MySqlParser.unionStatement`. * @param ctx the parse tree @@ -2480,6 +2435,20 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitSelectElements?: (ctx: SelectElementsContext) => Result; + /** + * Visit a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => Result; + /** + * Visit a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => Result; /** * Visit a parse tree produced by the `selectStarElement` * labeled alternative in `MySqlParser.selectElement`. @@ -2494,20 +2463,6 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitSelectColumnElement?: (ctx: SelectColumnElementContext) => Result; - /** - * Visit a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => Result; - /** - * Visit a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => Result; /** * Visit a parse tree produced by the `selectIntoVariables` * labeled alternative in `MySqlParser.intoClause`. diff --git a/src/lib/pgsql/PostgreSQLParser.interp b/src/lib/pgsql/PostgreSQLParser.interp index 944097c..529d216 100644 --- a/src/lib/pgsql/PostgreSQLParser.interp +++ b/src/lib/pgsql/PostgreSQLParser.interp @@ -1461,14 +1461,13 @@ object_type_any_name object_type_name object_type_name_on_any_name any_name_list -table_column_name relation_column_name relation_name any_name attrs type_name_list truncatestmt -opt_restart_seqs +truncate_table commentstmt comment_text seclabelstmt @@ -1569,7 +1568,6 @@ reindex_option_list reindex_option_elem altertblspcstmt renamestmt -opt_column opt_set_data alterobjectdependsstmt opt_no @@ -2064,4 +2062,4 @@ opt_returning_clause_into atn: -[4, 1, 590, 11930, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 2, 554, 7, 554, 2, 555, 7, 555, 2, 556, 7, 556, 2, 557, 7, 557, 2, 558, 7, 558, 2, 559, 7, 559, 2, 560, 7, 560, 2, 561, 7, 561, 2, 562, 7, 562, 2, 563, 7, 563, 2, 564, 7, 564, 2, 565, 7, 565, 2, 566, 7, 566, 2, 567, 7, 567, 2, 568, 7, 568, 2, 569, 7, 569, 2, 570, 7, 570, 2, 571, 7, 571, 2, 572, 7, 572, 2, 573, 7, 573, 2, 574, 7, 574, 2, 575, 7, 575, 2, 576, 7, 576, 2, 577, 7, 577, 2, 578, 7, 578, 2, 579, 7, 579, 2, 580, 7, 580, 2, 581, 7, 581, 2, 582, 7, 582, 2, 583, 7, 583, 2, 584, 7, 584, 2, 585, 7, 585, 2, 586, 7, 586, 2, 587, 7, 587, 2, 588, 7, 588, 2, 589, 7, 589, 2, 590, 7, 590, 2, 591, 7, 591, 2, 592, 7, 592, 2, 593, 7, 593, 2, 594, 7, 594, 2, 595, 7, 595, 2, 596, 7, 596, 2, 597, 7, 597, 2, 598, 7, 598, 2, 599, 7, 599, 2, 600, 7, 600, 2, 601, 7, 601, 2, 602, 7, 602, 2, 603, 7, 603, 2, 604, 7, 604, 2, 605, 7, 605, 2, 606, 7, 606, 2, 607, 7, 607, 2, 608, 7, 608, 2, 609, 7, 609, 2, 610, 7, 610, 2, 611, 7, 611, 2, 612, 7, 612, 2, 613, 7, 613, 2, 614, 7, 614, 2, 615, 7, 615, 2, 616, 7, 616, 2, 617, 7, 617, 2, 618, 7, 618, 2, 619, 7, 619, 2, 620, 7, 620, 2, 621, 7, 621, 2, 622, 7, 622, 2, 623, 7, 623, 2, 624, 7, 624, 2, 625, 7, 625, 2, 626, 7, 626, 2, 627, 7, 627, 2, 628, 7, 628, 2, 629, 7, 629, 2, 630, 7, 630, 2, 631, 7, 631, 2, 632, 7, 632, 2, 633, 7, 633, 2, 634, 7, 634, 2, 635, 7, 635, 2, 636, 7, 636, 2, 637, 7, 637, 2, 638, 7, 638, 2, 639, 7, 639, 2, 640, 7, 640, 2, 641, 7, 641, 2, 642, 7, 642, 2, 643, 7, 643, 2, 644, 7, 644, 2, 645, 7, 645, 2, 646, 7, 646, 2, 647, 7, 647, 2, 648, 7, 648, 2, 649, 7, 649, 2, 650, 7, 650, 2, 651, 7, 651, 2, 652, 7, 652, 2, 653, 7, 653, 2, 654, 7, 654, 2, 655, 7, 655, 2, 656, 7, 656, 2, 657, 7, 657, 2, 658, 7, 658, 2, 659, 7, 659, 2, 660, 7, 660, 2, 661, 7, 661, 2, 662, 7, 662, 2, 663, 7, 663, 2, 664, 7, 664, 2, 665, 7, 665, 2, 666, 7, 666, 2, 667, 7, 667, 2, 668, 7, 668, 2, 669, 7, 669, 2, 670, 7, 670, 2, 671, 7, 671, 2, 672, 7, 672, 2, 673, 7, 673, 2, 674, 7, 674, 2, 675, 7, 675, 2, 676, 7, 676, 2, 677, 7, 677, 2, 678, 7, 678, 2, 679, 7, 679, 2, 680, 7, 680, 2, 681, 7, 681, 2, 682, 7, 682, 2, 683, 7, 683, 2, 684, 7, 684, 2, 685, 7, 685, 2, 686, 7, 686, 2, 687, 7, 687, 2, 688, 7, 688, 2, 689, 7, 689, 2, 690, 7, 690, 2, 691, 7, 691, 2, 692, 7, 692, 2, 693, 7, 693, 2, 694, 7, 694, 2, 695, 7, 695, 2, 696, 7, 696, 2, 697, 7, 697, 2, 698, 7, 698, 2, 699, 7, 699, 2, 700, 7, 700, 2, 701, 7, 701, 2, 702, 7, 702, 2, 703, 7, 703, 2, 704, 7, 704, 2, 705, 7, 705, 2, 706, 7, 706, 2, 707, 7, 707, 2, 708, 7, 708, 2, 709, 7, 709, 2, 710, 7, 710, 2, 711, 7, 711, 2, 712, 7, 712, 2, 713, 7, 713, 2, 714, 7, 714, 2, 715, 7, 715, 2, 716, 7, 716, 2, 717, 7, 717, 2, 718, 7, 718, 2, 719, 7, 719, 2, 720, 7, 720, 2, 721, 7, 721, 2, 722, 7, 722, 2, 723, 7, 723, 2, 724, 7, 724, 2, 725, 7, 725, 2, 726, 7, 726, 2, 727, 7, 727, 2, 728, 7, 728, 2, 729, 7, 729, 2, 730, 7, 730, 2, 731, 7, 731, 2, 732, 7, 732, 2, 733, 7, 733, 2, 734, 7, 734, 2, 735, 7, 735, 2, 736, 7, 736, 2, 737, 7, 737, 2, 738, 7, 738, 2, 739, 7, 739, 2, 740, 7, 740, 2, 741, 7, 741, 2, 742, 7, 742, 2, 743, 7, 743, 2, 744, 7, 744, 2, 745, 7, 745, 2, 746, 7, 746, 2, 747, 7, 747, 2, 748, 7, 748, 2, 749, 7, 749, 2, 750, 7, 750, 2, 751, 7, 751, 2, 752, 7, 752, 2, 753, 7, 753, 2, 754, 7, 754, 2, 755, 7, 755, 2, 756, 7, 756, 2, 757, 7, 757, 2, 758, 7, 758, 2, 759, 7, 759, 2, 760, 7, 760, 2, 761, 7, 761, 2, 762, 7, 762, 2, 763, 7, 763, 2, 764, 7, 764, 2, 765, 7, 765, 2, 766, 7, 766, 2, 767, 7, 767, 2, 768, 7, 768, 2, 769, 7, 769, 2, 770, 7, 770, 2, 771, 7, 771, 2, 772, 7, 772, 2, 773, 7, 773, 2, 774, 7, 774, 2, 775, 7, 775, 2, 776, 7, 776, 2, 777, 7, 777, 2, 778, 7, 778, 2, 779, 7, 779, 2, 780, 7, 780, 2, 781, 7, 781, 2, 782, 7, 782, 2, 783, 7, 783, 2, 784, 7, 784, 2, 785, 7, 785, 2, 786, 7, 786, 2, 787, 7, 787, 2, 788, 7, 788, 2, 789, 7, 789, 2, 790, 7, 790, 2, 791, 7, 791, 2, 792, 7, 792, 2, 793, 7, 793, 2, 794, 7, 794, 2, 795, 7, 795, 2, 796, 7, 796, 2, 797, 7, 797, 2, 798, 7, 798, 2, 799, 7, 799, 2, 800, 7, 800, 2, 801, 7, 801, 2, 802, 7, 802, 2, 803, 7, 803, 2, 804, 7, 804, 2, 805, 7, 805, 2, 806, 7, 806, 2, 807, 7, 807, 2, 808, 7, 808, 2, 809, 7, 809, 2, 810, 7, 810, 2, 811, 7, 811, 2, 812, 7, 812, 2, 813, 7, 813, 2, 814, 7, 814, 2, 815, 7, 815, 2, 816, 7, 816, 2, 817, 7, 817, 2, 818, 7, 818, 2, 819, 7, 819, 2, 820, 7, 820, 2, 821, 7, 821, 2, 822, 7, 822, 2, 823, 7, 823, 2, 824, 7, 824, 2, 825, 7, 825, 2, 826, 7, 826, 2, 827, 7, 827, 2, 828, 7, 828, 2, 829, 7, 829, 2, 830, 7, 830, 2, 831, 7, 831, 2, 832, 7, 832, 2, 833, 7, 833, 2, 834, 7, 834, 2, 835, 7, 835, 2, 836, 7, 836, 2, 837, 7, 837, 2, 838, 7, 838, 2, 839, 7, 839, 2, 840, 7, 840, 2, 841, 7, 841, 2, 842, 7, 842, 2, 843, 7, 843, 2, 844, 7, 844, 2, 845, 7, 845, 2, 846, 7, 846, 2, 847, 7, 847, 2, 848, 7, 848, 2, 849, 7, 849, 2, 850, 7, 850, 2, 851, 7, 851, 2, 852, 7, 852, 2, 853, 7, 853, 2, 854, 7, 854, 2, 855, 7, 855, 2, 856, 7, 856, 2, 857, 7, 857, 2, 858, 7, 858, 2, 859, 7, 859, 2, 860, 7, 860, 2, 861, 7, 861, 2, 862, 7, 862, 2, 863, 7, 863, 2, 864, 7, 864, 2, 865, 7, 865, 2, 866, 7, 866, 2, 867, 7, 867, 2, 868, 7, 868, 2, 869, 7, 869, 2, 870, 7, 870, 2, 871, 7, 871, 2, 872, 7, 872, 2, 873, 7, 873, 2, 874, 7, 874, 2, 875, 7, 875, 1, 0, 5, 0, 1754, 8, 0, 10, 0, 12, 0, 1757, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 1765, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1884, 8, 3, 1, 4, 1, 4, 3, 4, 1888, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1897, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 5, 8, 1904, 8, 8, 10, 8, 12, 8, 1907, 9, 8, 1, 9, 5, 9, 1910, 8, 9, 10, 9, 12, 9, 1913, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1918, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1950, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1962, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1968, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1976, 8, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1984, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1990, 8, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1999, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 2005, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2017, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2023, 8, 17, 1, 18, 1, 18, 5, 18, 2027, 8, 18, 10, 18, 12, 18, 2030, 9, 18, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2036, 8, 19, 1, 19, 1, 19, 3, 19, 2040, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2045, 8, 19, 1, 19, 1, 19, 3, 19, 2049, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2062, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2073, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 2079, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 2095, 8, 23, 1, 23, 3, 23, 2098, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 2103, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 2109, 8, 24, 1, 25, 5, 25, 2112, 8, 25, 10, 25, 12, 25, 2115, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 2123, 8, 26, 1, 27, 1, 27, 3, 27, 2127, 8, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 2139, 8, 28, 1, 29, 1, 29, 3, 29, 2143, 8, 29, 1, 29, 3, 29, 2146, 8, 29, 1, 29, 1, 29, 3, 29, 2150, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2166, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2179, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 2184, 8, 31, 10, 31, 12, 31, 2187, 9, 31, 1, 32, 1, 32, 1, 32, 5, 32, 2192, 8, 32, 10, 32, 12, 32, 2195, 9, 32, 1, 33, 1, 33, 3, 33, 2199, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 2206, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 2212, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 2218, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2225, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2236, 8, 37, 1, 38, 1, 38, 3, 38, 2240, 8, 38, 1, 39, 1, 39, 3, 39, 2244, 8, 39, 1, 40, 1, 40, 3, 40, 2248, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 2261, 8, 42, 1, 43, 1, 43, 3, 43, 2265, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 2270, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 2275, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 2287, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 2296, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 2308, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2313, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2324, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2330, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2335, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2345, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2350, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2357, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2362, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2367, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2378, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2384, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2389, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2397, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2406, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2421, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2427, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2433, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2438, 8, 52, 1, 53, 1, 53, 1, 53, 5, 53, 2443, 8, 53, 10, 53, 12, 53, 2446, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2457, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2463, 8, 55, 10, 55, 12, 55, 2466, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2473, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2491, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 3, 60, 2499, 8, 60, 1, 60, 3, 60, 2502, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2507, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2514, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2523, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2532, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2538, 8, 60, 1, 60, 1, 60, 3, 60, 2542, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2551, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2560, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2568, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2576, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2585, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2594, 8, 60, 1, 60, 1, 60, 3, 60, 2598, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2605, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2611, 8, 60, 1, 60, 1, 60, 3, 60, 2615, 8, 60, 1, 60, 3, 60, 2618, 8, 60, 1, 60, 1, 60, 3, 60, 2622, 8, 60, 1, 60, 1, 60, 3, 60, 2626, 8, 60, 1, 60, 1, 60, 3, 60, 2630, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2635, 8, 60, 1, 60, 3, 60, 2638, 8, 60, 1, 60, 1, 60, 3, 60, 2642, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2660, 8, 60, 1, 60, 1, 60, 3, 60, 2664, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2759, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2766, 8, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2782, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 5, 68, 2794, 8, 68, 10, 68, 12, 68, 2797, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2806, 8, 69, 3, 69, 2808, 8, 69, 1, 70, 4, 70, 2811, 8, 70, 11, 70, 12, 70, 2812, 1, 71, 1, 71, 3, 71, 2817, 8, 71, 1, 71, 3, 71, 2820, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2826, 8, 71, 3, 71, 2828, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2856, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2864, 8, 74, 10, 74, 12, 74, 2867, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 5, 76, 2877, 8, 76, 10, 76, 12, 76, 2880, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2886, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2891, 8, 77, 1, 77, 1, 77, 3, 77, 2895, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2901, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2906, 8, 77, 1, 77, 3, 77, 2909, 8, 77, 3, 77, 2911, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2916, 8, 78, 1, 79, 1, 79, 3, 79, 2920, 8, 79, 1, 79, 1, 79, 3, 79, 2924, 8, 79, 1, 79, 1, 79, 3, 79, 2928, 8, 79, 1, 79, 1, 79, 3, 79, 2932, 8, 79, 1, 79, 3, 79, 2935, 8, 79, 1, 79, 1, 79, 3, 79, 2939, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2947, 8, 79, 1, 79, 1, 79, 3, 79, 2951, 8, 79, 1, 79, 1, 79, 3, 79, 2955, 8, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2964, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2971, 8, 83, 1, 84, 5, 84, 2974, 8, 84, 10, 84, 12, 84, 2977, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2983, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2988, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2995, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3000, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 3018, 8, 85, 1, 86, 1, 86, 1, 87, 3, 87, 3023, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 3033, 8, 89, 10, 89, 12, 89, 3036, 9, 89, 1, 90, 1, 90, 3, 90, 3040, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 3049, 8, 91, 1, 92, 1, 92, 1, 92, 5, 92, 3054, 8, 92, 10, 92, 12, 92, 3057, 9, 92, 1, 93, 1, 93, 1, 94, 1, 94, 3, 94, 3063, 8, 94, 1, 94, 1, 94, 3, 94, 3067, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3072, 8, 94, 1, 94, 1, 94, 3, 94, 3076, 8, 94, 1, 94, 3, 94, 3079, 8, 94, 1, 94, 3, 94, 3082, 8, 94, 1, 94, 3, 94, 3085, 8, 94, 1, 94, 3, 94, 3088, 8, 94, 1, 94, 3, 94, 3091, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3096, 8, 94, 1, 94, 3, 94, 3099, 8, 94, 1, 94, 3, 94, 3102, 8, 94, 1, 94, 3, 94, 3105, 8, 94, 1, 94, 3, 94, 3108, 8, 94, 1, 94, 3, 94, 3111, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3117, 8, 94, 1, 94, 1, 94, 3, 94, 3121, 8, 94, 1, 94, 3, 94, 3124, 8, 94, 1, 94, 3, 94, 3127, 8, 94, 1, 94, 3, 94, 3130, 8, 94, 1, 94, 3, 94, 3133, 8, 94, 3, 94, 3135, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3144, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 5, 99, 3157, 8, 99, 10, 99, 12, 99, 3160, 9, 99, 1, 100, 1, 100, 1, 100, 5, 100, 3165, 8, 100, 10, 100, 12, 100, 3168, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3173, 8, 101, 1, 102, 1, 102, 3, 102, 3177, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3182, 8, 103, 1, 103, 3, 103, 3185, 8, 103, 1, 103, 3, 103, 3188, 8, 103, 1, 103, 1, 103, 3, 103, 3192, 8, 103, 1, 103, 1, 103, 3, 103, 3196, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 3, 104, 3203, 8, 104, 1, 104, 3, 104, 3206, 8, 104, 1, 104, 3, 104, 3209, 8, 104, 1, 104, 1, 104, 3, 104, 3213, 8, 104, 1, 104, 1, 104, 3, 104, 3217, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3231, 8, 106, 1, 107, 1, 107, 1, 107, 3, 107, 3236, 8, 107, 1, 107, 1, 107, 1, 108, 5, 108, 3241, 8, 108, 10, 108, 12, 108, 3244, 9, 108, 1, 109, 1, 109, 3, 109, 3248, 8, 109, 1, 109, 1, 109, 3, 109, 3252, 8, 109, 1, 109, 3, 109, 3255, 8, 109, 1, 109, 1, 109, 3, 109, 3259, 8, 109, 1, 109, 3, 109, 3262, 8, 109, 3, 109, 3264, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3271, 8, 110, 1, 110, 3, 110, 3274, 8, 110, 1, 110, 1, 110, 3, 110, 3278, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3284, 8, 110, 1, 110, 3, 110, 3287, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3294, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3303, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3310, 8, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3315, 8, 110, 1, 110, 3, 110, 3318, 8, 110, 1, 110, 3, 110, 3321, 8, 110, 1, 110, 3, 110, 3324, 8, 110, 1, 111, 1, 111, 3, 111, 3328, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 3, 112, 3335, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3340, 8, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 5, 116, 3351, 8, 116, 10, 116, 12, 116, 3354, 9, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3363, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3376, 8, 119, 1, 119, 3, 119, 3379, 8, 119, 1, 119, 3, 119, 3382, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3389, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3397, 8, 119, 1, 119, 3, 119, 3400, 8, 119, 1, 119, 3, 119, 3403, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3410, 8, 119, 1, 119, 1, 119, 3, 119, 3414, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3420, 8, 119, 1, 119, 3, 119, 3423, 8, 119, 1, 119, 3, 119, 3426, 8, 119, 1, 119, 3, 119, 3429, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3441, 8, 119, 1, 119, 3, 119, 3444, 8, 119, 1, 119, 3, 119, 3447, 8, 119, 1, 119, 1, 119, 3, 119, 3451, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 5, 122, 3463, 8, 122, 10, 122, 12, 122, 3466, 9, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 5, 125, 3479, 8, 125, 10, 125, 12, 125, 3482, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3492, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3507, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3524, 8, 131, 3, 131, 3526, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 5, 135, 3545, 8, 135, 10, 135, 12, 135, 3548, 9, 135, 1, 136, 1, 136, 3, 136, 3552, 8, 136, 1, 136, 3, 136, 3555, 8, 136, 1, 136, 1, 136, 3, 136, 3559, 8, 136, 1, 136, 3, 136, 3562, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3568, 8, 136, 1, 136, 3, 136, 3571, 8, 136, 3, 136, 3573, 8, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3584, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3593, 8, 139, 1, 140, 1, 140, 1, 140, 1, 141, 3, 141, 3599, 8, 141, 1, 141, 3, 141, 3602, 8, 141, 1, 141, 3, 141, 3605, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 3, 144, 3619, 8, 144, 1, 144, 3, 144, 3622, 8, 144, 1, 144, 3, 144, 3625, 8, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3630, 8, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 3, 145, 3638, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 3, 146, 3647, 8, 146, 1, 146, 1, 146, 3, 146, 3651, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3657, 8, 146, 1, 147, 1, 147, 3, 147, 3661, 8, 147, 1, 147, 3, 147, 3664, 8, 147, 1, 147, 3, 147, 3667, 8, 147, 1, 147, 3, 147, 3670, 8, 147, 1, 147, 3, 147, 3673, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3679, 8, 148, 1, 149, 1, 149, 3, 149, 3683, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3688, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3694, 8, 149, 1, 150, 1, 150, 3, 150, 3698, 8, 150, 1, 150, 3, 150, 3701, 8, 150, 1, 150, 3, 150, 3704, 8, 150, 1, 150, 3, 150, 3707, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3715, 8, 152, 1, 152, 1, 152, 3, 152, 3719, 8, 152, 1, 153, 1, 153, 3, 153, 3723, 8, 153, 1, 153, 1, 153, 3, 153, 3727, 8, 153, 1, 153, 1, 153, 3, 153, 3731, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 3736, 8, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 4, 157, 3748, 8, 157, 11, 157, 12, 157, 3749, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3759, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3776, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3781, 8, 158, 1, 158, 3, 158, 3784, 8, 158, 3, 158, 3786, 8, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3796, 8, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3801, 8, 161, 10, 161, 12, 161, 3804, 9, 161, 1, 162, 1, 162, 3, 162, 3808, 8, 162, 1, 162, 3, 162, 3811, 8, 162, 1, 162, 3, 162, 3814, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3821, 8, 162, 1, 162, 3, 162, 3824, 8, 162, 3, 162, 3826, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 3, 164, 3832, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3841, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3851, 8, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3856, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 3, 171, 3864, 8, 171, 1, 171, 1, 171, 3, 171, 3868, 8, 171, 1, 171, 1, 171, 1, 172, 5, 172, 3873, 8, 172, 10, 172, 12, 172, 3876, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3885, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 5, 175, 3894, 8, 175, 10, 175, 12, 175, 3897, 9, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4004, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4012, 8, 178, 1, 178, 3, 178, 4015, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4025, 8, 179, 1, 180, 4, 180, 4028, 8, 180, 11, 180, 12, 180, 4029, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4040, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4051, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 4061, 8, 184, 10, 184, 12, 184, 4064, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 5, 186, 4074, 8, 186, 10, 186, 12, 186, 4077, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4086, 8, 187, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 3, 191, 4098, 8, 191, 1, 191, 1, 191, 3, 191, 4102, 8, 191, 1, 191, 3, 191, 4105, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4112, 8, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4120, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4130, 8, 195, 3, 195, 4132, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4138, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4143, 8, 196, 1, 196, 1, 196, 3, 196, 4147, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4152, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4158, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4165, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4171, 8, 196, 3, 196, 4173, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4180, 8, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4188, 8, 197, 1, 198, 1, 198, 1, 198, 3, 198, 4193, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4204, 8, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4211, 8, 200, 1, 201, 1, 201, 3, 201, 4215, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4232, 8, 203, 1, 203, 3, 203, 4235, 8, 203, 1, 203, 3, 203, 4238, 8, 203, 1, 203, 3, 203, 4241, 8, 203, 1, 203, 3, 203, 4244, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4252, 8, 204, 1, 204, 3, 204, 4255, 8, 204, 1, 204, 3, 204, 4258, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4264, 8, 205, 1, 205, 1, 205, 1, 206, 1, 206, 5, 206, 4270, 8, 206, 10, 206, 12, 206, 4273, 9, 206, 1, 206, 3, 206, 4276, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4288, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4294, 8, 206, 1, 207, 3, 207, 4297, 8, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4302, 8, 207, 1, 207, 1, 207, 3, 207, 4306, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4313, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4324, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4347, 8, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 3, 217, 4367, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4376, 8, 217, 1, 217, 3, 217, 4379, 8, 217, 1, 217, 3, 217, 4382, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4392, 8, 217, 1, 217, 3, 217, 4395, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4404, 8, 217, 1, 217, 1, 217, 3, 217, 4408, 8, 217, 1, 217, 3, 217, 4411, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4419, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4425, 8, 218, 1, 219, 1, 219, 3, 219, 4429, 8, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 5, 221, 4438, 8, 221, 10, 221, 12, 221, 4441, 9, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4450, 8, 222, 1, 223, 1, 223, 1, 223, 1, 224, 4, 224, 4456, 8, 224, 11, 224, 12, 224, 4457, 1, 225, 1, 225, 1, 225, 3, 225, 4463, 8, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 3, 229, 4475, 8, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 4492, 8, 233, 1, 234, 1, 234, 3, 234, 4496, 8, 234, 1, 234, 1, 234, 5, 234, 4500, 8, 234, 10, 234, 12, 234, 4503, 9, 234, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 4509, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 5, 237, 4515, 8, 237, 10, 237, 12, 237, 4518, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 4531, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 4557, 8, 239, 1, 240, 1, 240, 1, 240, 5, 240, 4562, 8, 240, 10, 240, 12, 240, 4565, 9, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 5, 242, 4576, 8, 242, 10, 242, 12, 242, 4579, 9, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4593, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 4606, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4615, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4640, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4651, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4693, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4701, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4707, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 5, 248, 4716, 8, 248, 10, 248, 12, 248, 4719, 9, 248, 1, 249, 1, 249, 1, 249, 3, 249, 4724, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 5, 252, 4741, 8, 252, 10, 252, 12, 252, 4744, 9, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 5, 255, 4755, 8, 255, 10, 255, 12, 255, 4758, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4766, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4776, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4788, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4803, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4814, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4822, 8, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 5, 259, 4830, 8, 259, 10, 259, 12, 259, 4833, 9, 259, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4839, 8, 260, 1, 260, 3, 260, 4842, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4848, 8, 260, 1, 260, 3, 260, 4851, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4866, 8, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 4879, 8, 263, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 4908, 8, 266, 1, 267, 1, 267, 1, 267, 5, 267, 4913, 8, 267, 10, 267, 12, 267, 4916, 9, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 4930, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 3, 270, 4942, 8, 270, 1, 270, 1, 270, 3, 270, 4946, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4951, 8, 270, 1, 270, 1, 270, 3, 270, 4955, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4960, 8, 270, 1, 270, 1, 270, 3, 270, 4964, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4970, 8, 270, 1, 270, 1, 270, 3, 270, 4974, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4979, 8, 270, 1, 270, 1, 270, 3, 270, 4983, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4989, 8, 270, 1, 270, 1, 270, 3, 270, 4993, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4998, 8, 270, 1, 270, 1, 270, 3, 270, 5002, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5007, 8, 270, 1, 270, 1, 270, 3, 270, 5011, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5016, 8, 270, 1, 270, 1, 270, 3, 270, 5020, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5027, 8, 270, 1, 270, 1, 270, 3, 270, 5031, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5038, 8, 270, 1, 270, 1, 270, 3, 270, 5042, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5049, 8, 270, 1, 270, 1, 270, 3, 270, 5053, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5060, 8, 270, 1, 270, 1, 270, 3, 270, 5064, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5070, 8, 270, 1, 270, 1, 270, 3, 270, 5074, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5080, 8, 270, 1, 270, 1, 270, 3, 270, 5084, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5089, 8, 270, 1, 270, 1, 270, 3, 270, 5093, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5100, 8, 270, 1, 270, 1, 270, 3, 270, 5104, 8, 270, 1, 270, 1, 270, 3, 270, 5108, 8, 270, 1, 270, 1, 270, 3, 270, 5112, 8, 270, 1, 270, 1, 270, 3, 270, 5116, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5121, 8, 270, 1, 270, 1, 270, 3, 270, 5125, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5130, 8, 270, 1, 270, 1, 270, 3, 270, 5134, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5139, 8, 270, 1, 270, 1, 270, 3, 270, 5143, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5148, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5154, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5159, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5165, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5170, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5176, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5181, 8, 270, 1, 270, 1, 270, 3, 270, 5185, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5190, 8, 270, 1, 270, 1, 270, 3, 270, 5194, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5200, 8, 270, 1, 270, 1, 270, 3, 270, 5204, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5209, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5217, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5223, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5229, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5235, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5241, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5248, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5253, 8, 270, 1, 270, 1, 270, 3, 270, 5257, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5262, 8, 270, 1, 270, 1, 270, 3, 270, 5266, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5271, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5277, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5284, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5289, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5296, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5306, 8, 270, 1, 270, 1, 270, 3, 270, 5310, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5316, 8, 270, 3, 270, 5318, 8, 270, 1, 271, 1, 271, 1, 271, 5, 271, 5323, 8, 271, 10, 271, 12, 271, 5326, 9, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5364, 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5379, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5397, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 5, 275, 5404, 8, 275, 10, 275, 12, 275, 5407, 9, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 3, 278, 5419, 8, 278, 1, 279, 1, 279, 3, 279, 5423, 8, 279, 1, 280, 1, 280, 4, 280, 5427, 8, 280, 11, 280, 12, 280, 5428, 1, 281, 1, 281, 1, 281, 5, 281, 5434, 8, 281, 10, 281, 12, 281, 5437, 9, 281, 1, 282, 1, 282, 3, 282, 5441, 8, 282, 1, 282, 1, 282, 3, 282, 5445, 8, 282, 1, 282, 3, 282, 5448, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5454, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5525, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5621, 8, 284, 1, 285, 1, 285, 3, 285, 5625, 8, 285, 1, 286, 1, 286, 1, 286, 3, 286, 5630, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5640, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5651, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5661, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5672, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5683, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5694, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5705, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5717, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5728, 8, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5736, 8, 286, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 3, 288, 5743, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5749, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5757, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5762, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5767, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5772, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5778, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5785, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5791, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5797, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5802, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5808, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5815, 8, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5820, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5826, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5833, 8, 290, 1, 290, 3, 290, 5836, 8, 290, 1, 291, 1, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5849, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 5858, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 5870, 8, 294, 3, 294, 5872, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 5890, 8, 295, 1, 296, 1, 296, 1, 296, 5, 296, 5895, 8, 296, 10, 296, 12, 296, 5898, 9, 296, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 5905, 8, 298, 10, 298, 12, 298, 5908, 9, 298, 1, 299, 1, 299, 3, 299, 5912, 8, 299, 1, 299, 1, 299, 3, 299, 5916, 8, 299, 1, 299, 1, 299, 3, 299, 5920, 8, 299, 1, 299, 1, 299, 3, 299, 5924, 8, 299, 3, 299, 5926, 8, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5986, 8, 300, 1, 301, 1, 301, 1, 301, 5, 301, 5991, 8, 301, 10, 301, 12, 301, 5994, 9, 301, 1, 302, 1, 302, 1, 302, 3, 302, 5999, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6010, 8, 304, 1, 304, 3, 304, 6013, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6020, 8, 305, 1, 305, 3, 305, 6023, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6033, 8, 305, 1, 305, 3, 305, 6036, 8, 305, 3, 305, 6038, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 5, 309, 6055, 8, 309, 10, 309, 12, 309, 6058, 9, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6069, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6078, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6087, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6099, 8, 311, 3, 311, 6101, 8, 311, 1, 312, 1, 312, 1, 313, 1, 313, 3, 313, 6107, 8, 313, 1, 313, 1, 313, 3, 313, 6111, 8, 313, 1, 313, 3, 313, 6114, 8, 313, 1, 313, 3, 313, 6117, 8, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6122, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6128, 8, 313, 1, 313, 3, 313, 6131, 8, 313, 1, 313, 3, 313, 6134, 8, 313, 1, 313, 3, 313, 6137, 8, 313, 1, 313, 3, 313, 6140, 8, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 5, 318, 6154, 8, 318, 10, 318, 12, 318, 6157, 9, 318, 1, 319, 3, 319, 6160, 8, 319, 1, 319, 3, 319, 6163, 8, 319, 1, 319, 3, 319, 6166, 8, 319, 1, 319, 3, 319, 6169, 8, 319, 1, 319, 3, 319, 6172, 8, 319, 1, 319, 1, 319, 1, 319, 3, 319, 6177, 8, 319, 1, 319, 3, 319, 6180, 8, 319, 3, 319, 6182, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6195, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 5, 322, 6205, 8, 322, 10, 322, 12, 322, 6208, 9, 322, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6221, 8, 326, 1, 327, 1, 327, 3, 327, 6225, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6231, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6241, 8, 327, 3, 327, 6243, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6248, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 5, 328, 6254, 8, 328, 10, 328, 12, 328, 6257, 9, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 3, 330, 6266, 8, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 5, 331, 6273, 8, 331, 10, 331, 12, 331, 6276, 9, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6281, 8, 332, 10, 332, 12, 332, 6284, 9, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 6292, 8, 333, 3, 333, 6294, 8, 333, 1, 334, 1, 334, 1, 334, 5, 334, 6299, 8, 334, 10, 334, 12, 334, 6302, 9, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6310, 8, 335, 3, 335, 6312, 8, 335, 1, 336, 1, 336, 1, 336, 5, 336, 6317, 8, 336, 10, 336, 12, 336, 6320, 9, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6328, 8, 337, 3, 337, 6330, 8, 337, 1, 338, 1, 338, 3, 338, 6334, 8, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 5, 339, 6341, 8, 339, 10, 339, 12, 339, 6344, 9, 339, 1, 340, 1, 340, 3, 340, 6348, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6354, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6359, 8, 340, 1, 341, 1, 341, 3, 341, 6363, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6368, 8, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 6386, 8, 344, 1, 345, 1, 345, 1, 345, 3, 345, 6391, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 3, 347, 6406, 8, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 5, 348, 6413, 8, 348, 10, 348, 12, 348, 6416, 9, 348, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 5, 350, 6424, 8, 350, 10, 350, 12, 350, 6427, 9, 350, 1, 351, 4, 351, 6430, 8, 351, 11, 351, 12, 351, 6431, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6469, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6489, 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6496, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 5, 354, 6505, 8, 354, 10, 354, 12, 354, 6508, 9, 354, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 5, 357, 6519, 8, 357, 10, 357, 12, 357, 6522, 9, 357, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6528, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 6536, 8, 359, 1, 360, 4, 360, 6539, 8, 360, 11, 360, 12, 360, 6540, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 3, 362, 6548, 8, 362, 1, 362, 1, 362, 3, 362, 6552, 8, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6557, 8, 362, 1, 362, 1, 362, 3, 362, 6561, 8, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6566, 8, 362, 1, 362, 1, 362, 3, 362, 6570, 8, 362, 3, 362, 6572, 8, 362, 1, 363, 1, 363, 1, 363, 3, 363, 6577, 8, 363, 1, 363, 1, 363, 3, 363, 6581, 8, 363, 1, 364, 1, 364, 1, 364, 3, 364, 6586, 8, 364, 1, 364, 1, 364, 3, 364, 6590, 8, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 6614, 8, 365, 1, 366, 1, 366, 1, 366, 5, 366, 6619, 8, 366, 10, 366, 12, 366, 6622, 9, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 5, 367, 6629, 8, 367, 10, 367, 12, 367, 6632, 9, 367, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 370, 4, 370, 6641, 8, 370, 11, 370, 12, 370, 6642, 1, 371, 1, 371, 1, 371, 3, 371, 6648, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6661, 8, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6673, 8, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6685, 8, 372, 3, 372, 6687, 8, 372, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 6693, 8, 373, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 3, 375, 6700, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 6745, 8, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 6763, 8, 377, 1, 378, 1, 378, 3, 378, 6767, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 6772, 8, 378, 1, 378, 3, 378, 6775, 8, 378, 1, 379, 1, 379, 3, 379, 6779, 8, 379, 1, 379, 1, 379, 1, 379, 3, 379, 6784, 8, 379, 1, 379, 1, 379, 1, 379, 3, 379, 6789, 8, 379, 1, 379, 3, 379, 6792, 8, 379, 1, 380, 1, 380, 1, 380, 5, 380, 6797, 8, 380, 10, 380, 12, 380, 6800, 9, 380, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6816, 8, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6887, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6918, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6972, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6982, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 6992, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7003, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7013, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7024, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7034, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7039, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7048, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7053, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7063, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7068, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7077, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7090, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7095, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7207, 8, 383, 3, 383, 7209, 8, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7220, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7231, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7242, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7255, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7267, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7278, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7285, 8, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7375, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7428, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7438, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7449, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7460, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7474, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 5, 390, 7487, 8, 390, 10, 390, 12, 390, 7490, 9, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7500, 8, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7507, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7561, 8, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7702, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7708, 8, 395, 1, 395, 3, 395, 7711, 8, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7721, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7761, 8, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7771, 8, 399, 1, 400, 1, 400, 1, 400, 5, 400, 7776, 8, 400, 10, 400, 12, 400, 7779, 9, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7801, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7810, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7819, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7828, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7861, 8, 402, 1, 403, 1, 403, 3, 403, 7865, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7875, 8, 403, 1, 403, 1, 403, 3, 403, 7879, 8, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7889, 8, 404, 1, 405, 3, 405, 7892, 8, 405, 1, 405, 1, 405, 3, 405, 7896, 8, 405, 5, 405, 7898, 8, 405, 10, 405, 12, 405, 7901, 9, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7908, 8, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7919, 8, 410, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7931, 8, 413, 1, 414, 1, 414, 3, 414, 7935, 8, 414, 1, 414, 3, 414, 7938, 8, 414, 1, 414, 1, 414, 3, 414, 7942, 8, 414, 1, 414, 3, 414, 7945, 8, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7950, 8, 414, 1, 414, 1, 414, 3, 414, 7954, 8, 414, 1, 414, 3, 414, 7957, 8, 414, 1, 414, 1, 414, 3, 414, 7961, 8, 414, 1, 414, 3, 414, 7964, 8, 414, 1, 414, 1, 414, 3, 414, 7968, 8, 414, 1, 414, 3, 414, 7971, 8, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7982, 8, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7989, 8, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 8002, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8016, 8, 416, 1, 417, 1, 417, 3, 417, 8020, 8, 417, 1, 417, 5, 417, 8023, 8, 417, 10, 417, 12, 417, 8026, 9, 417, 1, 418, 1, 418, 1, 419, 1, 419, 3, 419, 8032, 8, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 3, 420, 8039, 8, 420, 1, 420, 3, 420, 8042, 8, 420, 1, 420, 1, 420, 1, 420, 3, 420, 8047, 8, 420, 1, 420, 3, 420, 8050, 8, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 8059, 8, 420, 3, 420, 8061, 8, 420, 1, 420, 1, 420, 1, 420, 3, 420, 8066, 8, 420, 1, 421, 1, 421, 3, 421, 8070, 8, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 8082, 8, 423, 1, 423, 3, 423, 8085, 8, 423, 1, 424, 1, 424, 1, 425, 4, 425, 8090, 8, 425, 11, 425, 12, 425, 8091, 1, 426, 1, 426, 3, 426, 8096, 8, 426, 1, 426, 1, 426, 1, 426, 3, 426, 8101, 8, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 3, 427, 8111, 8, 427, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 3, 429, 8119, 8, 429, 1, 429, 3, 429, 8122, 8, 429, 1, 429, 3, 429, 8125, 8, 429, 1, 429, 1, 429, 1, 429, 3, 429, 8130, 8, 429, 3, 429, 8132, 8, 429, 1, 430, 1, 430, 1, 430, 1, 430, 3, 430, 8138, 8, 430, 1, 431, 1, 431, 1, 431, 5, 431, 8143, 8, 431, 10, 431, 12, 431, 8146, 9, 431, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 8165, 8, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8185, 8, 436, 1, 436, 1, 436, 3, 436, 8189, 8, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8194, 8, 436, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8263, 8, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8268, 8, 439, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8274, 8, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 3, 442, 8287, 8, 442, 1, 442, 1, 442, 3, 442, 8291, 8, 442, 1, 442, 1, 442, 3, 442, 8295, 8, 442, 1, 442, 1, 442, 1, 442, 1, 442, 3, 442, 8301, 8, 442, 3, 442, 8303, 8, 442, 1, 443, 1, 443, 1, 443, 1, 443, 5, 443, 8309, 8, 443, 10, 443, 12, 443, 8312, 9, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 3, 445, 8321, 8, 445, 1, 445, 3, 445, 8324, 8, 445, 1, 445, 3, 445, 8327, 8, 445, 1, 445, 3, 445, 8330, 8, 445, 1, 445, 3, 445, 8333, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8340, 8, 445, 1, 445, 3, 445, 8343, 8, 445, 3, 445, 8345, 8, 445, 1, 446, 1, 446, 3, 446, 8349, 8, 446, 1, 446, 3, 446, 8352, 8, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 3, 446, 8359, 8, 446, 3, 446, 8361, 8, 446, 1, 447, 1, 447, 1, 447, 5, 447, 8366, 8, 447, 10, 447, 12, 447, 8369, 9, 447, 1, 448, 1, 448, 1, 449, 1, 449, 3, 449, 8375, 8, 449, 1, 450, 1, 450, 3, 450, 8379, 8, 450, 1, 451, 1, 451, 3, 451, 8383, 8, 451, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 5, 453, 8390, 8, 453, 10, 453, 12, 453, 8393, 9, 453, 1, 454, 1, 454, 1, 454, 3, 454, 8398, 8, 454, 1, 455, 1, 455, 3, 455, 8402, 8, 455, 1, 456, 1, 456, 3, 456, 8406, 8, 456, 1, 457, 1, 457, 1, 457, 3, 457, 8411, 8, 457, 1, 458, 1, 458, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 3, 461, 8423, 8, 461, 1, 462, 1, 462, 1, 462, 5, 462, 8428, 8, 462, 10, 462, 12, 462, 8431, 9, 462, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8440, 8, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8453, 8, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 3, 465, 8464, 8, 465, 1, 466, 1, 466, 1, 466, 5, 466, 8469, 8, 466, 10, 466, 12, 466, 8472, 9, 466, 1, 467, 1, 467, 3, 467, 8476, 8, 467, 1, 468, 1, 468, 3, 468, 8480, 8, 468, 1, 469, 1, 469, 3, 469, 8484, 8, 469, 1, 470, 1, 470, 1, 470, 3, 470, 8489, 8, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 3, 472, 8502, 8, 472, 1, 473, 1, 473, 1, 473, 3, 473, 8507, 8, 473, 1, 473, 1, 473, 3, 473, 8511, 8, 473, 1, 473, 1, 473, 3, 473, 8515, 8, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 3, 473, 8522, 8, 473, 1, 473, 3, 473, 8525, 8, 473, 3, 473, 8527, 8, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 3, 475, 8543, 8, 475, 1, 476, 3, 476, 8546, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8553, 8, 476, 1, 476, 3, 476, 8556, 8, 476, 1, 477, 1, 477, 1, 477, 3, 477, 8561, 8, 477, 1, 478, 1, 478, 1, 478, 1, 478, 3, 478, 8567, 8, 478, 1, 478, 1, 478, 1, 478, 1, 478, 3, 478, 8573, 8, 478, 1, 478, 1, 478, 3, 478, 8577, 8, 478, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 5, 480, 8584, 8, 480, 10, 480, 12, 480, 8587, 9, 480, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 3, 482, 8595, 8, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 3, 482, 8602, 8, 482, 1, 482, 3, 482, 8605, 8, 482, 1, 483, 1, 483, 1, 483, 1, 483, 3, 483, 8611, 8, 483, 1, 483, 1, 483, 1, 483, 3, 483, 8616, 8, 483, 1, 484, 1, 484, 1, 484, 1, 485, 3, 485, 8622, 8, 485, 1, 485, 1, 485, 1, 485, 1, 485, 3, 485, 8628, 8, 485, 1, 485, 3, 485, 8631, 8, 485, 1, 485, 3, 485, 8634, 8, 485, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 3, 487, 8641, 8, 487, 1, 487, 1, 487, 3, 487, 8645, 8, 487, 1, 487, 3, 487, 8648, 8, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 3, 489, 8663, 8, 489, 1, 489, 3, 489, 8666, 8, 489, 1, 490, 1, 490, 1, 491, 1, 491, 1, 491, 3, 491, 8673, 8, 491, 1, 492, 3, 492, 8676, 8, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 3, 492, 8683, 8, 492, 1, 492, 3, 492, 8686, 8, 492, 1, 492, 3, 492, 8689, 8, 492, 1, 493, 1, 493, 1, 493, 5, 493, 8694, 8, 493, 10, 493, 12, 493, 8697, 9, 493, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 3, 494, 8708, 8, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 3, 494, 8715, 8, 494, 3, 494, 8717, 8, 494, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 5, 496, 8725, 8, 496, 10, 496, 12, 496, 8728, 9, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 5, 499, 8745, 8, 499, 10, 499, 12, 499, 8748, 9, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 3, 500, 8755, 8, 500, 1, 501, 1, 501, 3, 501, 8759, 8, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 3, 502, 8769, 8, 502, 1, 503, 1, 503, 3, 503, 8773, 8, 503, 1, 503, 1, 503, 3, 503, 8777, 8, 503, 1, 503, 1, 503, 3, 503, 8781, 8, 503, 3, 503, 8783, 8, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8788, 8, 503, 1, 503, 1, 503, 3, 503, 8792, 8, 503, 1, 503, 1, 503, 3, 503, 8796, 8, 503, 3, 503, 8798, 8, 503, 3, 503, 8800, 8, 503, 1, 504, 1, 504, 3, 504, 8804, 8, 504, 1, 505, 1, 505, 3, 505, 8808, 8, 505, 1, 505, 3, 505, 8811, 8, 505, 1, 505, 3, 505, 8814, 8, 505, 1, 505, 3, 505, 8817, 8, 505, 1, 505, 3, 505, 8820, 8, 505, 3, 505, 8822, 8, 505, 1, 505, 3, 505, 8825, 8, 505, 1, 505, 3, 505, 8828, 8, 505, 1, 505, 3, 505, 8831, 8, 505, 1, 505, 3, 505, 8834, 8, 505, 1, 505, 3, 505, 8837, 8, 505, 1, 505, 3, 505, 8840, 8, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 3, 505, 8849, 8, 505, 3, 505, 8851, 8, 505, 1, 505, 1, 505, 1, 505, 3, 505, 8856, 8, 505, 5, 505, 8858, 8, 505, 10, 505, 12, 505, 8861, 9, 505, 1, 506, 1, 506, 1, 506, 3, 506, 8866, 8, 506, 1, 507, 1, 507, 3, 507, 8870, 8, 507, 1, 508, 1, 508, 3, 508, 8874, 8, 508, 1, 508, 1, 508, 1, 509, 1, 509, 1, 509, 5, 509, 8881, 8, 509, 10, 509, 12, 509, 8884, 9, 509, 1, 510, 1, 510, 3, 510, 8888, 8, 510, 1, 510, 1, 510, 3, 510, 8892, 8, 510, 1, 510, 1, 510, 1, 510, 1, 510, 3, 510, 8898, 8, 510, 1, 510, 3, 510, 8901, 8, 510, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 3, 512, 8920, 8, 512, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 3, 513, 8928, 8, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 3, 515, 8937, 8, 515, 1, 516, 1, 516, 3, 516, 8941, 8, 516, 1, 517, 3, 517, 8944, 8, 517, 1, 517, 1, 517, 3, 517, 8948, 8, 517, 1, 517, 1, 517, 1, 517, 3, 517, 8953, 8, 517, 1, 517, 1, 517, 1, 517, 1, 517, 3, 517, 8959, 8, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 3, 520, 8971, 8, 520, 1, 521, 1, 521, 1, 522, 1, 522, 1, 523, 1, 523, 1, 523, 1, 523, 1, 524, 1, 524, 1, 524, 5, 524, 8984, 8, 524, 10, 524, 12, 524, 8987, 9, 524, 1, 525, 1, 525, 1, 525, 1, 525, 3, 525, 8993, 8, 525, 1, 525, 3, 525, 8996, 8, 525, 1, 526, 1, 526, 3, 526, 9000, 8, 526, 1, 526, 1, 526, 3, 526, 9004, 8, 526, 1, 526, 1, 526, 3, 526, 9008, 8, 526, 3, 526, 9010, 8, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 528, 1, 528, 3, 528, 9018, 8, 528, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 1, 529, 3, 529, 9027, 8, 529, 1, 529, 1, 529, 1, 529, 1, 529, 3, 529, 9033, 8, 529, 3, 529, 9035, 8, 529, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 3, 530, 9042, 8, 530, 1, 531, 1, 531, 3, 531, 9046, 8, 531, 1, 532, 1, 532, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 3, 533, 9055, 8, 533, 1, 534, 1, 534, 3, 534, 9059, 8, 534, 1, 535, 1, 535, 1, 536, 1, 536, 1, 537, 1, 537, 1, 537, 3, 537, 9068, 8, 537, 1, 537, 1, 537, 1, 538, 1, 538, 1, 538, 5, 538, 9075, 8, 538, 10, 538, 12, 538, 9078, 9, 538, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 3, 539, 9089, 8, 539, 1, 540, 1, 540, 1, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 543, 1, 544, 1, 544, 1, 544, 1, 545, 1, 545, 1, 545, 1, 545, 3, 545, 9117, 8, 545, 1, 546, 1, 546, 1, 547, 4, 547, 9122, 8, 547, 11, 547, 12, 547, 9123, 1, 548, 1, 548, 3, 548, 9128, 8, 548, 1, 548, 3, 548, 9131, 8, 548, 1, 549, 1, 549, 1, 549, 3, 549, 9136, 8, 549, 1, 549, 1, 549, 3, 549, 9140, 8, 549, 1, 549, 3, 549, 9143, 8, 549, 1, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 5, 551, 9157, 8, 551, 10, 551, 12, 551, 9160, 9, 551, 1, 552, 1, 552, 1, 552, 1, 553, 1, 553, 1, 553, 5, 553, 9168, 8, 553, 10, 553, 12, 553, 9171, 9, 553, 1, 554, 1, 554, 3, 554, 9175, 8, 554, 1, 554, 3, 554, 9178, 8, 554, 1, 554, 3, 554, 9181, 8, 554, 1, 554, 1, 554, 3, 554, 9185, 8, 554, 1, 554, 1, 554, 3, 554, 9189, 8, 554, 1, 554, 1, 554, 3, 554, 9193, 8, 554, 1, 554, 1, 554, 1, 554, 3, 554, 9198, 8, 554, 1, 554, 1, 554, 3, 554, 9202, 8, 554, 1, 554, 1, 554, 3, 554, 9206, 8, 554, 3, 554, 9208, 8, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 3, 554, 9217, 8, 554, 1, 554, 1, 554, 1, 554, 3, 554, 9222, 8, 554, 1, 554, 1, 554, 1, 554, 1, 554, 3, 554, 9228, 8, 554, 1, 554, 1, 554, 3, 554, 9232, 8, 554, 3, 554, 9234, 8, 554, 1, 554, 1, 554, 1, 554, 1, 554, 1, 554, 3, 554, 9241, 8, 554, 1, 554, 1, 554, 1, 554, 3, 554, 9246, 8, 554, 1, 554, 1, 554, 1, 554, 1, 554, 5, 554, 9252, 8, 554, 10, 554, 12, 554, 9255, 9, 554, 1, 555, 3, 555, 9258, 8, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 3, 555, 9265, 8, 555, 1, 556, 1, 556, 1, 557, 1, 557, 1, 557, 3, 557, 9272, 8, 557, 1, 557, 3, 557, 9275, 8, 557, 1, 557, 1, 557, 1, 557, 1, 557, 3, 557, 9281, 8, 557, 1, 558, 1, 558, 3, 558, 9285, 8, 558, 1, 559, 1, 559, 1, 559, 1, 559, 1, 559, 1, 559, 1, 559, 3, 559, 9294, 8, 559, 1, 560, 3, 560, 9297, 8, 560, 1, 560, 1, 560, 3, 560, 9301, 8, 560, 1, 560, 3, 560, 9304, 8, 560, 1, 560, 3, 560, 9307, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9315, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9321, 8, 560, 3, 560, 9323, 8, 560, 1, 561, 3, 561, 9326, 8, 561, 1, 561, 1, 561, 3, 561, 9330, 8, 561, 1, 561, 3, 561, 9333, 8, 561, 1, 561, 3, 561, 9336, 8, 561, 1, 562, 1, 562, 3, 562, 9340, 8, 562, 1, 562, 1, 562, 3, 562, 9344, 8, 562, 1, 562, 1, 562, 1, 562, 1, 562, 3, 562, 9350, 8, 562, 1, 562, 3, 562, 9353, 8, 562, 1, 562, 1, 562, 1, 562, 1, 562, 1, 562, 1, 562, 1, 562, 3, 562, 9362, 8, 562, 1, 562, 1, 562, 1, 562, 1, 562, 1, 562, 3, 562, 9369, 8, 562, 3, 562, 9371, 8, 562, 1, 563, 1, 563, 1, 563, 5, 563, 9376, 8, 563, 10, 563, 12, 563, 9379, 9, 563, 1, 564, 1, 564, 1, 564, 5, 564, 9384, 8, 564, 10, 564, 12, 564, 9387, 9, 564, 1, 565, 1, 565, 3, 565, 9391, 8, 565, 1, 565, 3, 565, 9394, 8, 565, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 3, 566, 9402, 8, 566, 1, 567, 1, 567, 1, 567, 1, 567, 1, 567, 1, 568, 1, 568, 3, 568, 9411, 8, 568, 1, 568, 1, 568, 1, 568, 1, 568, 1, 568, 1, 568, 3, 568, 9419, 8, 568, 3, 568, 9421, 8, 568, 1, 569, 1, 569, 3, 569, 9425, 8, 569, 1, 570, 1, 570, 1, 570, 5, 570, 9430, 8, 570, 10, 570, 12, 570, 9433, 9, 570, 1, 571, 1, 571, 1, 571, 1, 571, 1, 571, 1, 572, 1, 572, 1, 572, 1, 573, 1, 573, 1, 573, 1, 574, 1, 574, 1, 574, 1, 574, 1, 574, 3, 574, 9451, 8, 574, 1, 575, 1, 575, 1, 576, 1, 576, 1, 576, 5, 576, 9458, 8, 576, 10, 576, 12, 576, 9461, 9, 576, 1, 577, 1, 577, 1, 577, 3, 577, 9466, 8, 577, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 3, 578, 9485, 8, 578, 1, 578, 1, 578, 1, 579, 1, 579, 1, 579, 5, 579, 9492, 8, 579, 10, 579, 12, 579, 9495, 9, 579, 1, 580, 1, 580, 1, 580, 3, 580, 9500, 8, 580, 1, 580, 1, 580, 3, 580, 9504, 8, 580, 1, 581, 4, 581, 9507, 8, 581, 11, 581, 12, 581, 9508, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 3, 582, 9519, 8, 582, 1, 583, 1, 583, 1, 583, 5, 583, 9524, 8, 583, 10, 583, 12, 583, 9527, 9, 583, 1, 584, 1, 584, 1, 584, 1, 584, 1, 584, 1, 584, 3, 584, 9535, 8, 584, 1, 585, 3, 585, 9538, 8, 585, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 3, 585, 9547, 8, 585, 3, 585, 9549, 8, 585, 1, 585, 1, 585, 1, 585, 1, 585, 3, 585, 9555, 8, 585, 1, 586, 1, 586, 3, 586, 9559, 8, 586, 1, 586, 5, 586, 9562, 8, 586, 10, 586, 12, 586, 9565, 9, 586, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 1, 587, 3, 587, 9574, 8, 587, 1, 587, 1, 587, 1, 587, 1, 587, 3, 587, 9580, 8, 587, 3, 587, 9582, 8, 587, 1, 588, 1, 588, 1, 588, 1, 588, 3, 588, 9588, 8, 588, 1, 589, 1, 589, 3, 589, 9592, 8, 589, 1, 589, 3, 589, 9595, 8, 589, 1, 590, 1, 590, 1, 590, 1, 590, 1, 591, 1, 591, 1, 591, 1, 591, 1, 591, 1, 591, 1, 591, 3, 591, 9608, 8, 591, 1, 591, 1, 591, 1, 591, 1, 591, 3, 591, 9614, 8, 591, 1, 591, 1, 591, 3, 591, 9618, 8, 591, 1, 591, 1, 591, 3, 591, 9622, 8, 591, 1, 591, 3, 591, 9625, 8, 591, 1, 592, 1, 592, 1, 592, 1, 592, 1, 593, 1, 593, 3, 593, 9633, 8, 593, 1, 594, 1, 594, 3, 594, 9637, 8, 594, 1, 595, 1, 595, 3, 595, 9641, 8, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 596, 1, 596, 3, 596, 9649, 8, 596, 1, 597, 1, 597, 1, 597, 1, 597, 1, 597, 3, 597, 9656, 8, 597, 1, 598, 1, 598, 1, 598, 1, 598, 1, 598, 3, 598, 9663, 8, 598, 1, 599, 1, 599, 3, 599, 9667, 8, 599, 1, 599, 1, 599, 1, 599, 1, 599, 3, 599, 9673, 8, 599, 3, 599, 9675, 8, 599, 1, 600, 1, 600, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 3, 601, 9684, 8, 601, 1, 601, 3, 601, 9687, 8, 601, 1, 602, 1, 602, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 3, 603, 9697, 8, 603, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 1, 604, 3, 604, 9713, 8, 604, 1, 604, 1, 604, 1, 604, 1, 604, 3, 604, 9719, 8, 604, 1, 604, 1, 604, 1, 604, 3, 604, 9724, 8, 604, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 3, 605, 9731, 8, 605, 1, 606, 1, 606, 1, 606, 1, 607, 1, 607, 1, 608, 1, 608, 3, 608, 9740, 8, 608, 1, 609, 1, 609, 1, 609, 5, 609, 9745, 8, 609, 10, 609, 12, 609, 9748, 9, 609, 1, 610, 1, 610, 1, 610, 5, 610, 9753, 8, 610, 10, 610, 12, 610, 9756, 9, 610, 1, 611, 1, 611, 1, 611, 5, 611, 9761, 8, 611, 10, 611, 12, 611, 9764, 9, 611, 1, 612, 1, 612, 3, 612, 9768, 8, 612, 1, 612, 1, 612, 3, 612, 9772, 8, 612, 1, 613, 3, 613, 9775, 8, 613, 1, 613, 1, 613, 1, 614, 1, 614, 3, 614, 9781, 8, 614, 1, 615, 1, 615, 1, 615, 3, 615, 9786, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9802, 8, 615, 1, 615, 3, 615, 9805, 8, 615, 3, 615, 9807, 8, 615, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 3, 616, 9819, 8, 616, 3, 616, 9821, 8, 616, 1, 617, 1, 617, 3, 617, 9825, 8, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 3, 617, 9833, 8, 617, 3, 617, 9835, 8, 617, 1, 617, 1, 617, 3, 617, 9839, 8, 617, 3, 617, 9841, 8, 617, 1, 618, 1, 618, 1, 618, 1, 618, 5, 618, 9847, 8, 618, 10, 618, 12, 618, 9850, 9, 618, 1, 619, 3, 619, 9853, 8, 619, 1, 619, 1, 619, 1, 620, 1, 620, 1, 620, 5, 620, 9860, 8, 620, 10, 620, 12, 620, 9863, 9, 620, 1, 621, 1, 621, 1, 621, 5, 621, 9868, 8, 621, 10, 621, 12, 621, 9871, 9, 621, 1, 622, 1, 622, 1, 622, 3, 622, 9876, 8, 622, 1, 623, 3, 623, 9879, 8, 623, 1, 623, 1, 623, 1, 624, 1, 624, 1, 624, 1, 624, 1, 624, 3, 624, 9888, 8, 624, 1, 625, 1, 625, 1, 625, 3, 625, 9893, 8, 625, 1, 626, 1, 626, 1, 626, 5, 626, 9898, 8, 626, 10, 626, 12, 626, 9901, 9, 626, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9910, 8, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9936, 8, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 1, 627, 3, 627, 9947, 8, 627, 5, 627, 9949, 8, 627, 10, 627, 12, 627, 9952, 9, 627, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9959, 8, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9982, 8, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9990, 8, 628, 1, 629, 1, 629, 1, 630, 1, 630, 1, 630, 1, 630, 1, 630, 1, 630, 3, 630, 10000, 8, 630, 1, 630, 3, 630, 10003, 8, 630, 1, 630, 1, 630, 1, 630, 3, 630, 10008, 8, 630, 1, 630, 1, 630, 1, 630, 3, 630, 10013, 8, 630, 1, 630, 1, 630, 3, 630, 10017, 8, 630, 1, 630, 3, 630, 10020, 8, 630, 1, 631, 1, 631, 3, 631, 10024, 8, 631, 1, 631, 3, 631, 10027, 8, 631, 1, 631, 3, 631, 10030, 8, 631, 1, 631, 3, 631, 10033, 8, 631, 1, 632, 1, 632, 3, 632, 10037, 8, 632, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10051, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10058, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10065, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10072, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10090, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10098, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10110, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10116, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10129, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10168, 8, 633, 3, 633, 10170, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10190, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10200, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10211, 8, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10223, 8, 633, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 3, 634, 10230, 8, 634, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 3, 635, 10242, 8, 635, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 1, 637, 1, 637, 1, 637, 5, 637, 10252, 8, 637, 10, 637, 12, 637, 10255, 9, 637, 1, 638, 1, 638, 1, 638, 3, 638, 10260, 8, 638, 1, 639, 1, 639, 1, 640, 1, 640, 1, 640, 1, 640, 3, 640, 10268, 8, 640, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 3, 641, 10285, 8, 641, 1, 642, 1, 642, 1, 642, 1, 643, 1, 643, 1, 643, 1, 643, 1, 643, 1, 643, 1, 644, 1, 644, 1, 644, 1, 644, 1, 644, 1, 644, 1, 645, 1, 645, 1, 645, 1, 646, 1, 646, 1, 646, 5, 646, 10308, 8, 646, 10, 646, 12, 646, 10311, 9, 646, 1, 647, 1, 647, 1, 647, 1, 647, 1, 648, 1, 648, 1, 648, 3, 648, 10320, 8, 648, 1, 649, 1, 649, 3, 649, 10324, 8, 649, 1, 649, 3, 649, 10327, 8, 649, 1, 649, 3, 649, 10330, 8, 649, 1, 649, 3, 649, 10333, 8, 649, 1, 649, 1, 649, 1, 650, 1, 650, 1, 651, 1, 651, 1, 651, 1, 651, 1, 652, 1, 652, 1, 652, 3, 652, 10346, 8, 652, 1, 652, 1, 652, 1, 652, 3, 652, 10351, 8, 652, 1, 652, 1, 652, 1, 652, 3, 652, 10356, 8, 652, 3, 652, 10358, 8, 652, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 3, 653, 10366, 8, 653, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 3, 654, 10375, 8, 654, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 3, 655, 10384, 8, 655, 1, 656, 1, 656, 1, 656, 3, 656, 10389, 8, 656, 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 3, 656, 10398, 8, 656, 1, 657, 1, 657, 1, 657, 3, 657, 10403, 8, 657, 1, 657, 1, 657, 1, 658, 1, 658, 1, 658, 1, 658, 1, 658, 1, 658, 1, 659, 1, 659, 1, 660, 1, 660, 3, 660, 10417, 8, 660, 1, 661, 1, 661, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 3, 662, 10427, 8, 662, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 3, 663, 10435, 8, 663, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 3, 664, 10449, 8, 664, 1, 665, 1, 665, 1, 665, 5, 665, 10454, 8, 665, 10, 665, 12, 665, 10457, 9, 665, 1, 666, 1, 666, 1, 666, 5, 666, 10462, 8, 666, 10, 666, 12, 666, 10465, 9, 666, 1, 667, 1, 667, 1, 667, 5, 667, 10470, 8, 667, 10, 667, 12, 667, 10473, 9, 667, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 3, 668, 10480, 8, 668, 1, 669, 1, 669, 3, 669, 10484, 8, 669, 1, 670, 1, 670, 1, 670, 5, 670, 10489, 8, 670, 10, 670, 12, 670, 10492, 9, 670, 1, 671, 1, 671, 1, 671, 1, 671, 1, 671, 3, 671, 10499, 8, 671, 1, 672, 1, 672, 1, 672, 5, 672, 10504, 8, 672, 10, 672, 12, 672, 10507, 9, 672, 1, 673, 1, 673, 1, 673, 3, 673, 10512, 8, 673, 1, 673, 1, 673, 1, 674, 1, 674, 1, 674, 5, 674, 10519, 8, 674, 10, 674, 12, 674, 10522, 9, 674, 1, 675, 1, 675, 1, 675, 1, 675, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 3, 676, 10536, 8, 676, 1, 677, 1, 677, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 3, 678, 10547, 8, 678, 1, 679, 1, 679, 1, 679, 1, 679, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 3, 680, 10580, 8, 680, 1, 681, 1, 681, 1, 681, 1, 681, 1, 681, 1, 681, 1, 681, 3, 681, 10589, 8, 681, 1, 682, 1, 682, 1, 682, 1, 682, 1, 682, 3, 682, 10596, 8, 682, 1, 683, 1, 683, 3, 683, 10600, 8, 683, 1, 683, 1, 683, 3, 683, 10604, 8, 683, 1, 683, 1, 683, 1, 684, 4, 684, 10609, 8, 684, 11, 684, 12, 684, 10610, 1, 685, 1, 685, 1, 685, 1, 685, 1, 685, 1, 686, 1, 686, 1, 686, 1, 687, 1, 687, 1, 688, 1, 688, 3, 688, 10625, 8, 688, 1, 689, 1, 689, 1, 689, 3, 689, 10630, 8, 689, 1, 689, 1, 689, 1, 689, 3, 689, 10635, 8, 689, 1, 689, 1, 689, 3, 689, 10639, 8, 689, 3, 689, 10641, 8, 689, 1, 689, 3, 689, 10644, 8, 689, 1, 690, 1, 690, 1, 691, 4, 691, 10649, 8, 691, 11, 691, 12, 691, 10650, 1, 692, 5, 692, 10654, 8, 692, 10, 692, 12, 692, 10657, 9, 692, 1, 693, 1, 693, 1, 694, 1, 694, 1, 694, 5, 694, 10664, 8, 694, 10, 694, 12, 694, 10667, 9, 694, 1, 695, 1, 695, 1, 695, 1, 695, 1, 695, 3, 695, 10674, 8, 695, 1, 695, 3, 695, 10677, 8, 695, 1, 696, 1, 696, 1, 696, 5, 696, 10682, 8, 696, 10, 696, 12, 696, 10685, 9, 696, 1, 697, 1, 697, 1, 697, 5, 697, 10690, 8, 697, 10, 697, 12, 697, 10693, 9, 697, 1, 698, 1, 698, 1, 698, 5, 698, 10698, 8, 698, 10, 698, 12, 698, 10701, 9, 698, 1, 699, 1, 699, 1, 699, 5, 699, 10706, 8, 699, 10, 699, 12, 699, 10709, 9, 699, 1, 700, 1, 700, 1, 700, 5, 700, 10714, 8, 700, 10, 700, 12, 700, 10717, 9, 700, 1, 701, 1, 701, 3, 701, 10721, 8, 701, 1, 702, 1, 702, 3, 702, 10725, 8, 702, 1, 703, 1, 703, 3, 703, 10729, 8, 703, 1, 704, 1, 704, 3, 704, 10733, 8, 704, 1, 705, 1, 705, 3, 705, 10737, 8, 705, 1, 706, 1, 706, 3, 706, 10741, 8, 706, 1, 707, 1, 707, 3, 707, 10745, 8, 707, 1, 708, 1, 708, 1, 708, 5, 708, 10750, 8, 708, 10, 708, 12, 708, 10753, 9, 708, 1, 709, 1, 709, 1, 709, 5, 709, 10758, 8, 709, 10, 709, 12, 709, 10761, 9, 709, 1, 710, 1, 710, 3, 710, 10765, 8, 710, 1, 711, 1, 711, 3, 711, 10769, 8, 711, 1, 712, 1, 712, 3, 712, 10773, 8, 712, 1, 713, 1, 713, 1, 714, 1, 714, 1, 715, 1, 715, 1, 715, 1, 715, 3, 715, 10783, 8, 715, 1, 716, 1, 716, 1, 716, 1, 716, 3, 716, 10789, 8, 716, 1, 717, 1, 717, 1, 718, 1, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 721, 1, 721, 1, 722, 1, 722, 1, 722, 1, 722, 3, 722, 10805, 8, 722, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10811, 8, 723, 1, 724, 1, 724, 1, 724, 1, 724, 3, 724, 10817, 8, 724, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 3, 725, 10829, 8, 725, 1, 725, 1, 725, 1, 725, 3, 725, 10834, 8, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 3, 725, 10842, 8, 725, 1, 725, 1, 725, 1, 725, 1, 725, 1, 725, 3, 725, 10849, 8, 725, 1, 725, 1, 725, 1, 725, 3, 725, 10854, 8, 725, 1, 726, 1, 726, 1, 727, 1, 727, 1, 728, 1, 728, 1, 729, 1, 729, 1, 730, 1, 730, 3, 730, 10866, 8, 730, 1, 731, 1, 731, 1, 731, 1, 731, 5, 731, 10872, 8, 731, 10, 731, 12, 731, 10875, 9, 731, 1, 731, 1, 731, 3, 731, 10879, 8, 731, 1, 732, 1, 732, 1, 732, 1, 733, 1, 733, 1, 733, 1, 733, 1, 733, 3, 733, 10889, 8, 733, 1, 734, 1, 734, 1, 735, 1, 735, 1, 736, 1, 736, 1, 736, 1, 736, 1, 736, 3, 736, 10900, 8, 736, 1, 737, 1, 737, 1, 737, 5, 737, 10905, 8, 737, 10, 737, 12, 737, 10908, 9, 737, 1, 738, 1, 738, 1, 738, 1, 738, 3, 738, 10914, 8, 738, 1, 739, 1, 739, 1, 740, 1, 740, 1, 740, 1, 740, 1, 740, 1, 740, 1, 740, 3, 740, 10925, 8, 740, 1, 740, 3, 740, 10928, 8, 740, 3, 740, 10930, 8, 740, 1, 741, 1, 741, 3, 741, 10934, 8, 741, 1, 741, 3, 741, 10937, 8, 741, 1, 742, 1, 742, 1, 742, 1, 742, 3, 742, 10943, 8, 742, 1, 743, 1, 743, 1, 743, 1, 743, 3, 743, 10949, 8, 743, 1, 744, 1, 744, 3, 744, 10953, 8, 744, 1, 745, 1, 745, 1, 745, 1, 745, 3, 745, 10959, 8, 745, 1, 746, 1, 746, 1, 746, 1, 746, 1, 746, 1, 746, 3, 746, 10967, 8, 746, 1, 747, 1, 747, 3, 747, 10971, 8, 747, 1, 747, 1, 747, 1, 747, 1, 747, 1, 747, 1, 747, 3, 747, 10979, 8, 747, 1, 748, 1, 748, 1, 749, 1, 749, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 1, 750, 3, 750, 11036, 8, 750, 1, 751, 1, 751, 1, 752, 1, 752, 1, 753, 1, 753, 1, 753, 1, 753, 1, 754, 5, 754, 11047, 8, 754, 10, 754, 12, 754, 11050, 9, 754, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 3, 755, 11072, 8, 755, 1, 756, 1, 756, 1, 757, 1, 757, 1, 757, 1, 757, 3, 757, 11080, 8, 757, 1, 758, 1, 758, 3, 758, 11084, 8, 758, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 760, 1, 760, 1, 760, 3, 760, 11096, 8, 760, 3, 760, 11098, 8, 760, 1, 761, 1, 761, 1, 762, 4, 762, 11103, 8, 762, 11, 762, 12, 762, 11104, 1, 763, 1, 763, 1, 763, 1, 763, 1, 764, 1, 764, 1, 764, 3, 764, 11114, 8, 764, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 1, 765, 3, 765, 11132, 8, 765, 1, 765, 1, 765, 1, 766, 1, 766, 1, 766, 1, 766, 3, 766, 11140, 8, 766, 1, 767, 1, 767, 1, 768, 1, 768, 1, 768, 1, 768, 1, 768, 3, 768, 11149, 8, 768, 1, 769, 1, 769, 1, 769, 5, 769, 11154, 8, 769, 10, 769, 12, 769, 11157, 9, 769, 1, 770, 1, 770, 1, 770, 1, 771, 1, 771, 1, 772, 1, 772, 3, 772, 11166, 8, 772, 1, 773, 1, 773, 1, 774, 1, 774, 3, 774, 11172, 8, 774, 1, 775, 1, 775, 1, 776, 1, 776, 1, 776, 3, 776, 11179, 8, 776, 1, 777, 1, 777, 1, 777, 3, 777, 11184, 8, 777, 1, 778, 1, 778, 1, 778, 1, 778, 3, 778, 11190, 8, 778, 1, 779, 1, 779, 3, 779, 11194, 8, 779, 1, 780, 1, 780, 1, 781, 5, 781, 11199, 8, 781, 10, 781, 12, 781, 11202, 9, 781, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 3, 782, 11231, 8, 782, 1, 783, 1, 783, 1, 783, 1, 783, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 3, 784, 11244, 8, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 3, 784, 11253, 8, 784, 1, 785, 1, 785, 3, 785, 11257, 8, 785, 1, 786, 1, 786, 1, 786, 1, 786, 1, 786, 1, 787, 1, 787, 1, 787, 1, 787, 1, 787, 1, 787, 1, 788, 1, 788, 1, 788, 3, 788, 11273, 8, 788, 1, 789, 1, 789, 1, 789, 5, 789, 11278, 8, 789, 10, 789, 12, 789, 11281, 9, 789, 1, 790, 1, 790, 1, 790, 1, 790, 1, 791, 1, 791, 1, 792, 1, 792, 1, 793, 1, 793, 3, 793, 11293, 8, 793, 1, 793, 1, 793, 1, 793, 1, 793, 5, 793, 11299, 8, 793, 10, 793, 12, 793, 11302, 9, 793, 1, 794, 1, 794, 1, 794, 1, 794, 1, 794, 1, 794, 1, 794, 1, 794, 1, 794, 1, 794, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 5, 795, 11319, 8, 795, 10, 795, 12, 795, 11322, 9, 795, 1, 796, 1, 796, 1, 796, 3, 796, 11327, 8, 796, 1, 797, 1, 797, 1, 797, 1, 797, 1, 797, 1, 797, 1, 797, 1, 797, 1, 798, 1, 798, 3, 798, 11339, 8, 798, 1, 799, 4, 799, 11342, 8, 799, 11, 799, 12, 799, 11343, 1, 800, 1, 800, 1, 800, 1, 800, 1, 800, 1, 801, 1, 801, 1, 801, 3, 801, 11354, 8, 801, 1, 802, 1, 802, 1, 802, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 3, 805, 11386, 8, 805, 1, 806, 1, 806, 1, 806, 3, 806, 11391, 8, 806, 1, 807, 1, 807, 1, 807, 1, 807, 1, 807, 5, 807, 11398, 8, 807, 10, 807, 12, 807, 11401, 9, 807, 1, 807, 1, 807, 3, 807, 11405, 8, 807, 1, 808, 1, 808, 3, 808, 11409, 8, 808, 1, 809, 1, 809, 1, 809, 3, 809, 11414, 8, 809, 1, 810, 1, 810, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 812, 1, 812, 1, 812, 3, 812, 11430, 8, 812, 1, 813, 1, 813, 1, 813, 3, 813, 11435, 8, 813, 1, 813, 1, 813, 1, 814, 1, 814, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11450, 8, 815, 1, 815, 3, 815, 11453, 8, 815, 1, 815, 1, 815, 1, 816, 1, 816, 3, 816, 11459, 8, 816, 1, 817, 1, 817, 3, 817, 11463, 8, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 3, 817, 11472, 8, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 3, 817, 11480, 8, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 1, 817, 3, 817, 11489, 8, 817, 1, 817, 1, 817, 1, 817, 1, 817, 3, 817, 11495, 8, 817, 1, 818, 1, 818, 1, 819, 1, 819, 1, 819, 4, 819, 11502, 8, 819, 11, 819, 12, 819, 11503, 3, 819, 11506, 8, 819, 1, 820, 1, 820, 1, 820, 3, 820, 11511, 8, 820, 1, 821, 1, 821, 1, 821, 1, 821, 1, 822, 1, 822, 1, 822, 5, 822, 11520, 8, 822, 10, 822, 12, 822, 11523, 9, 822, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 824, 1, 824, 1, 824, 3, 824, 11533, 8, 824, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 826, 1, 826, 1, 826, 1, 827, 1, 827, 1, 827, 1, 827, 1, 827, 1, 827, 1, 827, 1, 827, 1, 827, 3, 827, 11554, 8, 827, 1, 827, 1, 827, 1, 828, 1, 828, 1, 828, 3, 828, 11561, 8, 828, 1, 829, 1, 829, 1, 829, 5, 829, 11566, 8, 829, 10, 829, 12, 829, 11569, 9, 829, 1, 830, 1, 830, 1, 830, 3, 830, 11574, 8, 830, 1, 830, 3, 830, 11577, 8, 830, 1, 831, 1, 831, 1, 831, 1, 831, 1, 831, 1, 831, 1, 831, 1, 831, 1, 831, 3, 831, 11588, 8, 831, 1, 831, 1, 831, 1, 831, 1, 831, 1, 831, 3, 831, 11595, 8, 831, 3, 831, 11597, 8, 831, 1, 831, 1, 831, 1, 832, 1, 832, 1, 832, 1, 832, 1, 832, 3, 832, 11606, 8, 832, 1, 833, 1, 833, 1, 833, 5, 833, 11611, 8, 833, 10, 833, 12, 833, 11614, 9, 833, 1, 834, 1, 834, 1, 834, 3, 834, 11619, 8, 834, 1, 835, 1, 835, 1, 835, 1, 835, 3, 835, 11625, 8, 835, 1, 836, 1, 836, 3, 836, 11629, 8, 836, 1, 837, 1, 837, 3, 837, 11633, 8, 837, 1, 837, 1, 837, 1, 837, 1, 837, 1, 837, 1, 837, 1, 838, 1, 838, 1, 839, 1, 839, 1, 839, 3, 839, 11646, 8, 839, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 3, 840, 11661, 8, 840, 3, 840, 11663, 8, 840, 1, 841, 1, 841, 3, 841, 11667, 8, 841, 1, 841, 1, 841, 1, 841, 1, 842, 3, 842, 11673, 8, 842, 1, 842, 1, 842, 1, 842, 3, 842, 11678, 8, 842, 1, 842, 1, 842, 3, 842, 11682, 8, 842, 1, 842, 3, 842, 11685, 8, 842, 1, 842, 3, 842, 11688, 8, 842, 1, 842, 1, 842, 1, 842, 1, 842, 1, 842, 4, 842, 11695, 8, 842, 11, 842, 12, 842, 11696, 1, 843, 3, 843, 11700, 8, 843, 1, 843, 1, 843, 3, 843, 11704, 8, 843, 1, 843, 1, 843, 3, 843, 11708, 8, 843, 3, 843, 11710, 8, 843, 1, 843, 3, 843, 11713, 8, 843, 1, 843, 3, 843, 11716, 8, 843, 1, 844, 1, 844, 1, 845, 1, 845, 1, 845, 1, 845, 3, 845, 11724, 8, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 3, 845, 11731, 8, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 3, 845, 11738, 8, 845, 1, 845, 1, 845, 1, 845, 1, 845, 3, 845, 11744, 8, 845, 3, 845, 11746, 8, 845, 1, 846, 1, 846, 1, 846, 1, 846, 1, 846, 3, 846, 11753, 8, 846, 1, 846, 1, 846, 1, 846, 3, 846, 11758, 8, 846, 1, 846, 1, 846, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 1, 847, 4, 847, 11776, 8, 847, 11, 847, 12, 847, 11777, 1, 848, 1, 848, 1, 848, 1, 848, 3, 848, 11784, 8, 848, 1, 849, 1, 849, 1, 849, 1, 849, 5, 849, 11790, 8, 849, 10, 849, 12, 849, 11793, 9, 849, 1, 849, 1, 849, 1, 850, 1, 850, 3, 850, 11799, 8, 850, 1, 851, 1, 851, 1, 851, 1, 851, 1, 852, 1, 852, 1, 852, 1, 853, 1, 853, 3, 853, 11810, 8, 853, 1, 853, 1, 853, 1, 854, 1, 854, 3, 854, 11816, 8, 854, 1, 854, 1, 854, 1, 855, 1, 855, 3, 855, 11822, 8, 855, 1, 855, 1, 855, 1, 856, 1, 856, 1, 856, 1, 856, 1, 856, 1, 856, 1, 856, 1, 856, 1, 856, 3, 856, 11835, 8, 856, 1, 856, 3, 856, 11838, 8, 856, 1, 857, 1, 857, 3, 857, 11842, 8, 857, 1, 858, 1, 858, 1, 858, 3, 858, 11847, 8, 858, 1, 859, 4, 859, 11850, 8, 859, 11, 859, 12, 859, 11851, 1, 860, 1, 860, 1, 860, 1, 860, 1, 860, 1, 861, 1, 861, 1, 861, 5, 861, 11862, 8, 861, 10, 861, 12, 861, 11865, 9, 861, 1, 862, 1, 862, 1, 862, 3, 862, 11870, 8, 862, 1, 863, 1, 863, 3, 863, 11874, 8, 863, 1, 864, 1, 864, 3, 864, 11878, 8, 864, 1, 865, 1, 865, 3, 865, 11882, 8, 865, 1, 866, 1, 866, 1, 866, 1, 867, 1, 867, 3, 867, 11889, 8, 867, 1, 868, 1, 868, 1, 869, 3, 869, 11894, 8, 869, 1, 869, 3, 869, 11897, 8, 869, 1, 869, 3, 869, 11900, 8, 869, 1, 869, 3, 869, 11903, 8, 869, 1, 869, 3, 869, 11906, 8, 869, 1, 869, 3, 869, 11909, 8, 869, 1, 869, 3, 869, 11912, 8, 869, 1, 870, 1, 870, 1, 871, 1, 871, 1, 872, 1, 872, 1, 873, 1, 873, 1, 874, 1, 874, 3, 874, 11924, 8, 874, 1, 875, 1, 875, 1, 875, 1, 875, 1, 875, 0, 1, 1254, 876, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1592, 1594, 1596, 1598, 1600, 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, 1632, 1634, 1636, 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, 1682, 1684, 1686, 1688, 1690, 1692, 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 1726, 1728, 1730, 1732, 1734, 1736, 1738, 1740, 1742, 1744, 1746, 1748, 1750, 0, 81, 2, 0, 195, 195, 364, 364, 1, 0, 228, 229, 1, 0, 236, 237, 1, 0, 234, 235, 1, 0, 232, 233, 1, 0, 230, 231, 1, 0, 535, 536, 1, 0, 537, 538, 1, 0, 539, 540, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 3, 0, 173, 173, 260, 260, 262, 262, 2, 0, 9, 9, 94, 94, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 92, 92, 226, 226, 2, 0, 341, 341, 414, 414, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 3, 0, 66, 66, 99, 99, 318, 318, 3, 0, 321, 321, 357, 357, 445, 445, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 10, 10, 53, 53, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 356, 356, 380, 380, 2, 0, 151, 151, 254, 254, 2, 0, 313, 313, 333, 333, 1, 0, 31, 32, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 201, 201, 334, 334, 1, 0, 527, 528, 2, 0, 213, 213, 254, 254, 2, 0, 30, 30, 56, 56, 2, 0, 320, 320, 414, 414, 2, 0, 207, 207, 268, 268, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 1, 0, 18, 19, 2, 0, 117, 117, 122, 122, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 3, 0, 39, 39, 73, 73, 95, 95, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 10, 0, 124, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 478, 488, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 36, 0, 33, 33, 35, 35, 43, 45, 53, 53, 57, 57, 61, 61, 92, 92, 116, 116, 123, 123, 130, 130, 144, 144, 153, 153, 157, 157, 161, 161, 167, 167, 172, 172, 207, 207, 210, 210, 241, 241, 249, 249, 265, 265, 268, 269, 279, 279, 293, 293, 307, 307, 313, 313, 319, 319, 323, 324, 333, 333, 360, 360, 433, 434, 477, 477, 490, 502, 504, 504, 506, 518, 520, 520, 13276, 0, 1755, 1, 0, 0, 0, 2, 1760, 1, 0, 0, 0, 4, 1762, 1, 0, 0, 0, 6, 1883, 1, 0, 0, 0, 8, 1885, 1, 0, 0, 0, 10, 1889, 1, 0, 0, 0, 12, 1892, 1, 0, 0, 0, 14, 1900, 1, 0, 0, 0, 16, 1905, 1, 0, 0, 0, 18, 1911, 1, 0, 0, 0, 20, 1949, 1, 0, 0, 0, 22, 1961, 1, 0, 0, 0, 24, 1963, 1, 0, 0, 0, 26, 1971, 1, 0, 0, 0, 28, 1983, 1, 0, 0, 0, 30, 1985, 1, 0, 0, 0, 32, 1994, 1, 0, 0, 0, 34, 2022, 1, 0, 0, 0, 36, 2024, 1, 0, 0, 0, 38, 2072, 1, 0, 0, 0, 40, 2074, 1, 0, 0, 0, 42, 2082, 1, 0, 0, 0, 44, 2089, 1, 0, 0, 0, 46, 2091, 1, 0, 0, 0, 48, 2106, 1, 0, 0, 0, 50, 2113, 1, 0, 0, 0, 52, 2122, 1, 0, 0, 0, 54, 2124, 1, 0, 0, 0, 56, 2138, 1, 0, 0, 0, 58, 2142, 1, 0, 0, 0, 60, 2178, 1, 0, 0, 0, 62, 2180, 1, 0, 0, 0, 64, 2188, 1, 0, 0, 0, 66, 2198, 1, 0, 0, 0, 68, 2205, 1, 0, 0, 0, 70, 2211, 1, 0, 0, 0, 72, 2217, 1, 0, 0, 0, 74, 2235, 1, 0, 0, 0, 76, 2239, 1, 0, 0, 0, 78, 2243, 1, 0, 0, 0, 80, 2247, 1, 0, 0, 0, 82, 2249, 1, 0, 0, 0, 84, 2260, 1, 0, 0, 0, 86, 2264, 1, 0, 0, 0, 88, 2269, 1, 0, 0, 0, 90, 2274, 1, 0, 0, 0, 92, 2276, 1, 0, 0, 0, 94, 2288, 1, 0, 0, 0, 96, 2295, 1, 0, 0, 0, 98, 2297, 1, 0, 0, 0, 100, 2299, 1, 0, 0, 0, 102, 2301, 1, 0, 0, 0, 104, 2437, 1, 0, 0, 0, 106, 2439, 1, 0, 0, 0, 108, 2456, 1, 0, 0, 0, 110, 2458, 1, 0, 0, 0, 112, 2472, 1, 0, 0, 0, 114, 2474, 1, 0, 0, 0, 116, 2490, 1, 0, 0, 0, 118, 2492, 1, 0, 0, 0, 120, 2758, 1, 0, 0, 0, 122, 2765, 1, 0, 0, 0, 124, 2767, 1, 0, 0, 0, 126, 2769, 1, 0, 0, 0, 128, 2772, 1, 0, 0, 0, 130, 2781, 1, 0, 0, 0, 132, 2783, 1, 0, 0, 0, 134, 2787, 1, 0, 0, 0, 136, 2790, 1, 0, 0, 0, 138, 2798, 1, 0, 0, 0, 140, 2810, 1, 0, 0, 0, 142, 2827, 1, 0, 0, 0, 144, 2855, 1, 0, 0, 0, 146, 2857, 1, 0, 0, 0, 148, 2860, 1, 0, 0, 0, 150, 2868, 1, 0, 0, 0, 152, 2873, 1, 0, 0, 0, 154, 2910, 1, 0, 0, 0, 156, 2912, 1, 0, 0, 0, 158, 2954, 1, 0, 0, 0, 160, 2956, 1, 0, 0, 0, 162, 2958, 1, 0, 0, 0, 164, 2963, 1, 0, 0, 0, 166, 2970, 1, 0, 0, 0, 168, 2975, 1, 0, 0, 0, 170, 3017, 1, 0, 0, 0, 172, 3019, 1, 0, 0, 0, 174, 3022, 1, 0, 0, 0, 176, 3027, 1, 0, 0, 0, 178, 3029, 1, 0, 0, 0, 180, 3037, 1, 0, 0, 0, 182, 3048, 1, 0, 0, 0, 184, 3050, 1, 0, 0, 0, 186, 3058, 1, 0, 0, 0, 188, 3060, 1, 0, 0, 0, 190, 3143, 1, 0, 0, 0, 192, 3145, 1, 0, 0, 0, 194, 3147, 1, 0, 0, 0, 196, 3149, 1, 0, 0, 0, 198, 3153, 1, 0, 0, 0, 200, 3161, 1, 0, 0, 0, 202, 3172, 1, 0, 0, 0, 204, 3176, 1, 0, 0, 0, 206, 3178, 1, 0, 0, 0, 208, 3199, 1, 0, 0, 0, 210, 3220, 1, 0, 0, 0, 212, 3223, 1, 0, 0, 0, 214, 3232, 1, 0, 0, 0, 216, 3242, 1, 0, 0, 0, 218, 3263, 1, 0, 0, 0, 220, 3323, 1, 0, 0, 0, 222, 3325, 1, 0, 0, 0, 224, 3334, 1, 0, 0, 0, 226, 3339, 1, 0, 0, 0, 228, 3341, 1, 0, 0, 0, 230, 3344, 1, 0, 0, 0, 232, 3352, 1, 0, 0, 0, 234, 3355, 1, 0, 0, 0, 236, 3362, 1, 0, 0, 0, 238, 3450, 1, 0, 0, 0, 240, 3452, 1, 0, 0, 0, 242, 3455, 1, 0, 0, 0, 244, 3459, 1, 0, 0, 0, 246, 3467, 1, 0, 0, 0, 248, 3472, 1, 0, 0, 0, 250, 3475, 1, 0, 0, 0, 252, 3483, 1, 0, 0, 0, 254, 3493, 1, 0, 0, 0, 256, 3506, 1, 0, 0, 0, 258, 3508, 1, 0, 0, 0, 260, 3512, 1, 0, 0, 0, 262, 3525, 1, 0, 0, 0, 264, 3527, 1, 0, 0, 0, 266, 3532, 1, 0, 0, 0, 268, 3534, 1, 0, 0, 0, 270, 3541, 1, 0, 0, 0, 272, 3572, 1, 0, 0, 0, 274, 3574, 1, 0, 0, 0, 276, 3583, 1, 0, 0, 0, 278, 3585, 1, 0, 0, 0, 280, 3594, 1, 0, 0, 0, 282, 3598, 1, 0, 0, 0, 284, 3606, 1, 0, 0, 0, 286, 3611, 1, 0, 0, 0, 288, 3615, 1, 0, 0, 0, 290, 3634, 1, 0, 0, 0, 292, 3644, 1, 0, 0, 0, 294, 3658, 1, 0, 0, 0, 296, 3674, 1, 0, 0, 0, 298, 3680, 1, 0, 0, 0, 300, 3695, 1, 0, 0, 0, 302, 3708, 1, 0, 0, 0, 304, 3710, 1, 0, 0, 0, 306, 3720, 1, 0, 0, 0, 308, 3732, 1, 0, 0, 0, 310, 3740, 1, 0, 0, 0, 312, 3742, 1, 0, 0, 0, 314, 3747, 1, 0, 0, 0, 316, 3785, 1, 0, 0, 0, 318, 3787, 1, 0, 0, 0, 320, 3795, 1, 0, 0, 0, 322, 3797, 1, 0, 0, 0, 324, 3805, 1, 0, 0, 0, 326, 3827, 1, 0, 0, 0, 328, 3829, 1, 0, 0, 0, 330, 3833, 1, 0, 0, 0, 332, 3840, 1, 0, 0, 0, 334, 3842, 1, 0, 0, 0, 336, 3844, 1, 0, 0, 0, 338, 3846, 1, 0, 0, 0, 340, 3857, 1, 0, 0, 0, 342, 3860, 1, 0, 0, 0, 344, 3874, 1, 0, 0, 0, 346, 3884, 1, 0, 0, 0, 348, 3886, 1, 0, 0, 0, 350, 3895, 1, 0, 0, 0, 352, 3898, 1, 0, 0, 0, 354, 4003, 1, 0, 0, 0, 356, 4005, 1, 0, 0, 0, 358, 4024, 1, 0, 0, 0, 360, 4027, 1, 0, 0, 0, 362, 4031, 1, 0, 0, 0, 364, 4050, 1, 0, 0, 0, 366, 4052, 1, 0, 0, 0, 368, 4057, 1, 0, 0, 0, 370, 4065, 1, 0, 0, 0, 372, 4070, 1, 0, 0, 0, 374, 4085, 1, 0, 0, 0, 376, 4087, 1, 0, 0, 0, 378, 4090, 1, 0, 0, 0, 380, 4092, 1, 0, 0, 0, 382, 4094, 1, 0, 0, 0, 384, 4113, 1, 0, 0, 0, 386, 4116, 1, 0, 0, 0, 388, 4121, 1, 0, 0, 0, 390, 4123, 1, 0, 0, 0, 392, 4172, 1, 0, 0, 0, 394, 4174, 1, 0, 0, 0, 396, 4192, 1, 0, 0, 0, 398, 4194, 1, 0, 0, 0, 400, 4199, 1, 0, 0, 0, 402, 4214, 1, 0, 0, 0, 404, 4216, 1, 0, 0, 0, 406, 4225, 1, 0, 0, 0, 408, 4245, 1, 0, 0, 0, 410, 4259, 1, 0, 0, 0, 412, 4293, 1, 0, 0, 0, 414, 4323, 1, 0, 0, 0, 416, 4325, 1, 0, 0, 0, 418, 4330, 1, 0, 0, 0, 420, 4336, 1, 0, 0, 0, 422, 4339, 1, 0, 0, 0, 424, 4342, 1, 0, 0, 0, 426, 4348, 1, 0, 0, 0, 428, 4351, 1, 0, 0, 0, 430, 4353, 1, 0, 0, 0, 432, 4362, 1, 0, 0, 0, 434, 4418, 1, 0, 0, 0, 436, 4424, 1, 0, 0, 0, 438, 4426, 1, 0, 0, 0, 440, 4432, 1, 0, 0, 0, 442, 4434, 1, 0, 0, 0, 444, 4449, 1, 0, 0, 0, 446, 4451, 1, 0, 0, 0, 448, 4455, 1, 0, 0, 0, 450, 4459, 1, 0, 0, 0, 452, 4466, 1, 0, 0, 0, 454, 4468, 1, 0, 0, 0, 456, 4470, 1, 0, 0, 0, 458, 4472, 1, 0, 0, 0, 460, 4478, 1, 0, 0, 0, 462, 4480, 1, 0, 0, 0, 464, 4482, 1, 0, 0, 0, 466, 4491, 1, 0, 0, 0, 468, 4495, 1, 0, 0, 0, 470, 4508, 1, 0, 0, 0, 472, 4510, 1, 0, 0, 0, 474, 4516, 1, 0, 0, 0, 476, 4530, 1, 0, 0, 0, 478, 4556, 1, 0, 0, 0, 480, 4558, 1, 0, 0, 0, 482, 4566, 1, 0, 0, 0, 484, 4572, 1, 0, 0, 0, 486, 4580, 1, 0, 0, 0, 488, 4592, 1, 0, 0, 0, 490, 4594, 1, 0, 0, 0, 492, 4706, 1, 0, 0, 0, 494, 4708, 1, 0, 0, 0, 496, 4712, 1, 0, 0, 0, 498, 4720, 1, 0, 0, 0, 500, 4731, 1, 0, 0, 0, 502, 4733, 1, 0, 0, 0, 504, 4737, 1, 0, 0, 0, 506, 4745, 1, 0, 0, 0, 508, 4749, 1, 0, 0, 0, 510, 4751, 1, 0, 0, 0, 512, 4802, 1, 0, 0, 0, 514, 4804, 1, 0, 0, 0, 516, 4808, 1, 0, 0, 0, 518, 4826, 1, 0, 0, 0, 520, 4865, 1, 0, 0, 0, 522, 4867, 1, 0, 0, 0, 524, 4869, 1, 0, 0, 0, 526, 4878, 1, 0, 0, 0, 528, 4880, 1, 0, 0, 0, 530, 4882, 1, 0, 0, 0, 532, 4907, 1, 0, 0, 0, 534, 4909, 1, 0, 0, 0, 536, 4929, 1, 0, 0, 0, 538, 4931, 1, 0, 0, 0, 540, 5317, 1, 0, 0, 0, 542, 5319, 1, 0, 0, 0, 544, 5363, 1, 0, 0, 0, 546, 5396, 1, 0, 0, 0, 548, 5398, 1, 0, 0, 0, 550, 5400, 1, 0, 0, 0, 552, 5408, 1, 0, 0, 0, 554, 5412, 1, 0, 0, 0, 556, 5416, 1, 0, 0, 0, 558, 5420, 1, 0, 0, 0, 560, 5426, 1, 0, 0, 0, 562, 5430, 1, 0, 0, 0, 564, 5438, 1, 0, 0, 0, 566, 5453, 1, 0, 0, 0, 568, 5620, 1, 0, 0, 0, 570, 5624, 1, 0, 0, 0, 572, 5735, 1, 0, 0, 0, 574, 5737, 1, 0, 0, 0, 576, 5742, 1, 0, 0, 0, 578, 5748, 1, 0, 0, 0, 580, 5835, 1, 0, 0, 0, 582, 5837, 1, 0, 0, 0, 584, 5839, 1, 0, 0, 0, 586, 5841, 1, 0, 0, 0, 588, 5871, 1, 0, 0, 0, 590, 5889, 1, 0, 0, 0, 592, 5891, 1, 0, 0, 0, 594, 5899, 1, 0, 0, 0, 596, 5901, 1, 0, 0, 0, 598, 5925, 1, 0, 0, 0, 600, 5985, 1, 0, 0, 0, 602, 5987, 1, 0, 0, 0, 604, 5998, 1, 0, 0, 0, 606, 6000, 1, 0, 0, 0, 608, 6004, 1, 0, 0, 0, 610, 6037, 1, 0, 0, 0, 612, 6039, 1, 0, 0, 0, 614, 6043, 1, 0, 0, 0, 616, 6047, 1, 0, 0, 0, 618, 6056, 1, 0, 0, 0, 620, 6068, 1, 0, 0, 0, 622, 6100, 1, 0, 0, 0, 624, 6102, 1, 0, 0, 0, 626, 6104, 1, 0, 0, 0, 628, 6141, 1, 0, 0, 0, 630, 6143, 1, 0, 0, 0, 632, 6145, 1, 0, 0, 0, 634, 6147, 1, 0, 0, 0, 636, 6150, 1, 0, 0, 0, 638, 6181, 1, 0, 0, 0, 640, 6194, 1, 0, 0, 0, 642, 6196, 1, 0, 0, 0, 644, 6201, 1, 0, 0, 0, 646, 6209, 1, 0, 0, 0, 648, 6212, 1, 0, 0, 0, 650, 6214, 1, 0, 0, 0, 652, 6220, 1, 0, 0, 0, 654, 6222, 1, 0, 0, 0, 656, 6249, 1, 0, 0, 0, 658, 6260, 1, 0, 0, 0, 660, 6263, 1, 0, 0, 0, 662, 6269, 1, 0, 0, 0, 664, 6277, 1, 0, 0, 0, 666, 6293, 1, 0, 0, 0, 668, 6295, 1, 0, 0, 0, 670, 6311, 1, 0, 0, 0, 672, 6313, 1, 0, 0, 0, 674, 6329, 1, 0, 0, 0, 676, 6331, 1, 0, 0, 0, 678, 6337, 1, 0, 0, 0, 680, 6358, 1, 0, 0, 0, 682, 6367, 1, 0, 0, 0, 684, 6369, 1, 0, 0, 0, 686, 6371, 1, 0, 0, 0, 688, 6385, 1, 0, 0, 0, 690, 6387, 1, 0, 0, 0, 692, 6392, 1, 0, 0, 0, 694, 6394, 1, 0, 0, 0, 696, 6409, 1, 0, 0, 0, 698, 6417, 1, 0, 0, 0, 700, 6420, 1, 0, 0, 0, 702, 6429, 1, 0, 0, 0, 704, 6468, 1, 0, 0, 0, 706, 6495, 1, 0, 0, 0, 708, 6497, 1, 0, 0, 0, 710, 6509, 1, 0, 0, 0, 712, 6512, 1, 0, 0, 0, 714, 6515, 1, 0, 0, 0, 716, 6523, 1, 0, 0, 0, 718, 6535, 1, 0, 0, 0, 720, 6538, 1, 0, 0, 0, 722, 6542, 1, 0, 0, 0, 724, 6571, 1, 0, 0, 0, 726, 6573, 1, 0, 0, 0, 728, 6582, 1, 0, 0, 0, 730, 6613, 1, 0, 0, 0, 732, 6620, 1, 0, 0, 0, 734, 6625, 1, 0, 0, 0, 736, 6633, 1, 0, 0, 0, 738, 6636, 1, 0, 0, 0, 740, 6640, 1, 0, 0, 0, 742, 6647, 1, 0, 0, 0, 744, 6686, 1, 0, 0, 0, 746, 6692, 1, 0, 0, 0, 748, 6694, 1, 0, 0, 0, 750, 6697, 1, 0, 0, 0, 752, 6744, 1, 0, 0, 0, 754, 6762, 1, 0, 0, 0, 756, 6774, 1, 0, 0, 0, 758, 6791, 1, 0, 0, 0, 760, 6793, 1, 0, 0, 0, 762, 6801, 1, 0, 0, 0, 764, 6815, 1, 0, 0, 0, 766, 7208, 1, 0, 0, 0, 768, 7210, 1, 0, 0, 0, 770, 7212, 1, 0, 0, 0, 772, 7284, 1, 0, 0, 0, 774, 7286, 1, 0, 0, 0, 776, 7473, 1, 0, 0, 0, 778, 7475, 1, 0, 0, 0, 780, 7483, 1, 0, 0, 0, 782, 7499, 1, 0, 0, 0, 784, 7506, 1, 0, 0, 0, 786, 7508, 1, 0, 0, 0, 788, 7701, 1, 0, 0, 0, 790, 7703, 1, 0, 0, 0, 792, 7712, 1, 0, 0, 0, 794, 7720, 1, 0, 0, 0, 796, 7760, 1, 0, 0, 0, 798, 7762, 1, 0, 0, 0, 800, 7772, 1, 0, 0, 0, 802, 7780, 1, 0, 0, 0, 804, 7860, 1, 0, 0, 0, 806, 7862, 1, 0, 0, 0, 808, 7888, 1, 0, 0, 0, 810, 7891, 1, 0, 0, 0, 812, 7907, 1, 0, 0, 0, 814, 7909, 1, 0, 0, 0, 816, 7911, 1, 0, 0, 0, 818, 7913, 1, 0, 0, 0, 820, 7915, 1, 0, 0, 0, 822, 7920, 1, 0, 0, 0, 824, 7923, 1, 0, 0, 0, 826, 7930, 1, 0, 0, 0, 828, 8001, 1, 0, 0, 0, 830, 8003, 1, 0, 0, 0, 832, 8015, 1, 0, 0, 0, 834, 8017, 1, 0, 0, 0, 836, 8027, 1, 0, 0, 0, 838, 8029, 1, 0, 0, 0, 840, 8035, 1, 0, 0, 0, 842, 8067, 1, 0, 0, 0, 844, 8074, 1, 0, 0, 0, 846, 8077, 1, 0, 0, 0, 848, 8086, 1, 0, 0, 0, 850, 8089, 1, 0, 0, 0, 852, 8093, 1, 0, 0, 0, 854, 8110, 1, 0, 0, 0, 856, 8112, 1, 0, 0, 0, 858, 8114, 1, 0, 0, 0, 860, 8133, 1, 0, 0, 0, 862, 8139, 1, 0, 0, 0, 864, 8147, 1, 0, 0, 0, 866, 8149, 1, 0, 0, 0, 868, 8155, 1, 0, 0, 0, 870, 8160, 1, 0, 0, 0, 872, 8169, 1, 0, 0, 0, 874, 8195, 1, 0, 0, 0, 876, 8197, 1, 0, 0, 0, 878, 8267, 1, 0, 0, 0, 880, 8269, 1, 0, 0, 0, 882, 8271, 1, 0, 0, 0, 884, 8302, 1, 0, 0, 0, 886, 8304, 1, 0, 0, 0, 888, 8315, 1, 0, 0, 0, 890, 8344, 1, 0, 0, 0, 892, 8360, 1, 0, 0, 0, 894, 8362, 1, 0, 0, 0, 896, 8370, 1, 0, 0, 0, 898, 8372, 1, 0, 0, 0, 900, 8378, 1, 0, 0, 0, 902, 8382, 1, 0, 0, 0, 904, 8384, 1, 0, 0, 0, 906, 8386, 1, 0, 0, 0, 908, 8397, 1, 0, 0, 0, 910, 8399, 1, 0, 0, 0, 912, 8403, 1, 0, 0, 0, 914, 8407, 1, 0, 0, 0, 916, 8412, 1, 0, 0, 0, 918, 8414, 1, 0, 0, 0, 920, 8416, 1, 0, 0, 0, 922, 8420, 1, 0, 0, 0, 924, 8424, 1, 0, 0, 0, 926, 8432, 1, 0, 0, 0, 928, 8452, 1, 0, 0, 0, 930, 8463, 1, 0, 0, 0, 932, 8465, 1, 0, 0, 0, 934, 8473, 1, 0, 0, 0, 936, 8479, 1, 0, 0, 0, 938, 8483, 1, 0, 0, 0, 940, 8485, 1, 0, 0, 0, 942, 8493, 1, 0, 0, 0, 944, 8501, 1, 0, 0, 0, 946, 8526, 1, 0, 0, 0, 948, 8528, 1, 0, 0, 0, 950, 8542, 1, 0, 0, 0, 952, 8545, 1, 0, 0, 0, 954, 8557, 1, 0, 0, 0, 956, 8566, 1, 0, 0, 0, 958, 8578, 1, 0, 0, 0, 960, 8580, 1, 0, 0, 0, 962, 8588, 1, 0, 0, 0, 964, 8591, 1, 0, 0, 0, 966, 8615, 1, 0, 0, 0, 968, 8617, 1, 0, 0, 0, 970, 8621, 1, 0, 0, 0, 972, 8635, 1, 0, 0, 0, 974, 8638, 1, 0, 0, 0, 976, 8649, 1, 0, 0, 0, 978, 8665, 1, 0, 0, 0, 980, 8667, 1, 0, 0, 0, 982, 8672, 1, 0, 0, 0, 984, 8675, 1, 0, 0, 0, 986, 8690, 1, 0, 0, 0, 988, 8716, 1, 0, 0, 0, 990, 8718, 1, 0, 0, 0, 992, 8721, 1, 0, 0, 0, 994, 8729, 1, 0, 0, 0, 996, 8737, 1, 0, 0, 0, 998, 8746, 1, 0, 0, 0, 1000, 8754, 1, 0, 0, 0, 1002, 8758, 1, 0, 0, 0, 1004, 8768, 1, 0, 0, 0, 1006, 8799, 1, 0, 0, 0, 1008, 8803, 1, 0, 0, 0, 1010, 8850, 1, 0, 0, 0, 1012, 8865, 1, 0, 0, 0, 1014, 8867, 1, 0, 0, 0, 1016, 8871, 1, 0, 0, 0, 1018, 8877, 1, 0, 0, 0, 1020, 8885, 1, 0, 0, 0, 1022, 8902, 1, 0, 0, 0, 1024, 8910, 1, 0, 0, 0, 1026, 8927, 1, 0, 0, 0, 1028, 8929, 1, 0, 0, 0, 1030, 8931, 1, 0, 0, 0, 1032, 8940, 1, 0, 0, 0, 1034, 8958, 1, 0, 0, 0, 1036, 8960, 1, 0, 0, 0, 1038, 8962, 1, 0, 0, 0, 1040, 8964, 1, 0, 0, 0, 1042, 8972, 1, 0, 0, 0, 1044, 8974, 1, 0, 0, 0, 1046, 8976, 1, 0, 0, 0, 1048, 8980, 1, 0, 0, 0, 1050, 8988, 1, 0, 0, 0, 1052, 9009, 1, 0, 0, 0, 1054, 9011, 1, 0, 0, 0, 1056, 9013, 1, 0, 0, 0, 1058, 9019, 1, 0, 0, 0, 1060, 9036, 1, 0, 0, 0, 1062, 9045, 1, 0, 0, 0, 1064, 9047, 1, 0, 0, 0, 1066, 9054, 1, 0, 0, 0, 1068, 9058, 1, 0, 0, 0, 1070, 9060, 1, 0, 0, 0, 1072, 9062, 1, 0, 0, 0, 1074, 9064, 1, 0, 0, 0, 1076, 9071, 1, 0, 0, 0, 1078, 9088, 1, 0, 0, 0, 1080, 9090, 1, 0, 0, 0, 1082, 9093, 1, 0, 0, 0, 1084, 9098, 1, 0, 0, 0, 1086, 9103, 1, 0, 0, 0, 1088, 9109, 1, 0, 0, 0, 1090, 9116, 1, 0, 0, 0, 1092, 9118, 1, 0, 0, 0, 1094, 9121, 1, 0, 0, 0, 1096, 9125, 1, 0, 0, 0, 1098, 9132, 1, 0, 0, 0, 1100, 9144, 1, 0, 0, 0, 1102, 9147, 1, 0, 0, 0, 1104, 9161, 1, 0, 0, 0, 1106, 9164, 1, 0, 0, 0, 1108, 9233, 1, 0, 0, 0, 1110, 9257, 1, 0, 0, 0, 1112, 9266, 1, 0, 0, 0, 1114, 9280, 1, 0, 0, 0, 1116, 9282, 1, 0, 0, 0, 1118, 9293, 1, 0, 0, 0, 1120, 9322, 1, 0, 0, 0, 1122, 9325, 1, 0, 0, 0, 1124, 9370, 1, 0, 0, 0, 1126, 9372, 1, 0, 0, 0, 1128, 9380, 1, 0, 0, 0, 1130, 9388, 1, 0, 0, 0, 1132, 9395, 1, 0, 0, 0, 1134, 9403, 1, 0, 0, 0, 1136, 9420, 1, 0, 0, 0, 1138, 9422, 1, 0, 0, 0, 1140, 9426, 1, 0, 0, 0, 1142, 9434, 1, 0, 0, 0, 1144, 9439, 1, 0, 0, 0, 1146, 9442, 1, 0, 0, 0, 1148, 9445, 1, 0, 0, 0, 1150, 9452, 1, 0, 0, 0, 1152, 9454, 1, 0, 0, 0, 1154, 9462, 1, 0, 0, 0, 1156, 9467, 1, 0, 0, 0, 1158, 9488, 1, 0, 0, 0, 1160, 9496, 1, 0, 0, 0, 1162, 9506, 1, 0, 0, 0, 1164, 9518, 1, 0, 0, 0, 1166, 9520, 1, 0, 0, 0, 1168, 9534, 1, 0, 0, 0, 1170, 9554, 1, 0, 0, 0, 1172, 9563, 1, 0, 0, 0, 1174, 9581, 1, 0, 0, 0, 1176, 9587, 1, 0, 0, 0, 1178, 9589, 1, 0, 0, 0, 1180, 9596, 1, 0, 0, 0, 1182, 9624, 1, 0, 0, 0, 1184, 9626, 1, 0, 0, 0, 1186, 9632, 1, 0, 0, 0, 1188, 9636, 1, 0, 0, 0, 1190, 9638, 1, 0, 0, 0, 1192, 9646, 1, 0, 0, 0, 1194, 9650, 1, 0, 0, 0, 1196, 9657, 1, 0, 0, 0, 1198, 9674, 1, 0, 0, 0, 1200, 9676, 1, 0, 0, 0, 1202, 9678, 1, 0, 0, 0, 1204, 9688, 1, 0, 0, 0, 1206, 9696, 1, 0, 0, 0, 1208, 9723, 1, 0, 0, 0, 1210, 9725, 1, 0, 0, 0, 1212, 9732, 1, 0, 0, 0, 1214, 9735, 1, 0, 0, 0, 1216, 9737, 1, 0, 0, 0, 1218, 9741, 1, 0, 0, 0, 1220, 9749, 1, 0, 0, 0, 1222, 9757, 1, 0, 0, 0, 1224, 9765, 1, 0, 0, 0, 1226, 9774, 1, 0, 0, 0, 1228, 9778, 1, 0, 0, 0, 1230, 9782, 1, 0, 0, 0, 1232, 9808, 1, 0, 0, 0, 1234, 9822, 1, 0, 0, 0, 1236, 9842, 1, 0, 0, 0, 1238, 9852, 1, 0, 0, 0, 1240, 9856, 1, 0, 0, 0, 1242, 9864, 1, 0, 0, 0, 1244, 9872, 1, 0, 0, 0, 1246, 9878, 1, 0, 0, 0, 1248, 9882, 1, 0, 0, 0, 1250, 9889, 1, 0, 0, 0, 1252, 9894, 1, 0, 0, 0, 1254, 9909, 1, 0, 0, 0, 1256, 9989, 1, 0, 0, 0, 1258, 9991, 1, 0, 0, 0, 1260, 9993, 1, 0, 0, 0, 1262, 10032, 1, 0, 0, 0, 1264, 10036, 1, 0, 0, 0, 1266, 10222, 1, 0, 0, 0, 1268, 10229, 1, 0, 0, 0, 1270, 10241, 1, 0, 0, 0, 1272, 10243, 1, 0, 0, 0, 1274, 10248, 1, 0, 0, 0, 1276, 10256, 1, 0, 0, 0, 1278, 10261, 1, 0, 0, 0, 1280, 10267, 1, 0, 0, 0, 1282, 10284, 1, 0, 0, 0, 1284, 10286, 1, 0, 0, 0, 1286, 10289, 1, 0, 0, 0, 1288, 10295, 1, 0, 0, 0, 1290, 10301, 1, 0, 0, 0, 1292, 10304, 1, 0, 0, 0, 1294, 10312, 1, 0, 0, 0, 1296, 10316, 1, 0, 0, 0, 1298, 10321, 1, 0, 0, 0, 1300, 10336, 1, 0, 0, 0, 1302, 10338, 1, 0, 0, 0, 1304, 10357, 1, 0, 0, 0, 1306, 10365, 1, 0, 0, 0, 1308, 10374, 1, 0, 0, 0, 1310, 10376, 1, 0, 0, 0, 1312, 10397, 1, 0, 0, 0, 1314, 10399, 1, 0, 0, 0, 1316, 10406, 1, 0, 0, 0, 1318, 10412, 1, 0, 0, 0, 1320, 10416, 1, 0, 0, 0, 1322, 10418, 1, 0, 0, 0, 1324, 10426, 1, 0, 0, 0, 1326, 10434, 1, 0, 0, 0, 1328, 10448, 1, 0, 0, 0, 1330, 10450, 1, 0, 0, 0, 1332, 10458, 1, 0, 0, 0, 1334, 10466, 1, 0, 0, 0, 1336, 10479, 1, 0, 0, 0, 1338, 10483, 1, 0, 0, 0, 1340, 10485, 1, 0, 0, 0, 1342, 10498, 1, 0, 0, 0, 1344, 10500, 1, 0, 0, 0, 1346, 10508, 1, 0, 0, 0, 1348, 10515, 1, 0, 0, 0, 1350, 10523, 1, 0, 0, 0, 1352, 10535, 1, 0, 0, 0, 1354, 10537, 1, 0, 0, 0, 1356, 10539, 1, 0, 0, 0, 1358, 10548, 1, 0, 0, 0, 1360, 10579, 1, 0, 0, 0, 1362, 10588, 1, 0, 0, 0, 1364, 10595, 1, 0, 0, 0, 1366, 10597, 1, 0, 0, 0, 1368, 10608, 1, 0, 0, 0, 1370, 10612, 1, 0, 0, 0, 1372, 10617, 1, 0, 0, 0, 1374, 10620, 1, 0, 0, 0, 1376, 10622, 1, 0, 0, 0, 1378, 10643, 1, 0, 0, 0, 1380, 10645, 1, 0, 0, 0, 1382, 10648, 1, 0, 0, 0, 1384, 10655, 1, 0, 0, 0, 1386, 10658, 1, 0, 0, 0, 1388, 10660, 1, 0, 0, 0, 1390, 10676, 1, 0, 0, 0, 1392, 10678, 1, 0, 0, 0, 1394, 10686, 1, 0, 0, 0, 1396, 10694, 1, 0, 0, 0, 1398, 10702, 1, 0, 0, 0, 1400, 10710, 1, 0, 0, 0, 1402, 10718, 1, 0, 0, 0, 1404, 10722, 1, 0, 0, 0, 1406, 10726, 1, 0, 0, 0, 1408, 10730, 1, 0, 0, 0, 1410, 10734, 1, 0, 0, 0, 1412, 10738, 1, 0, 0, 0, 1414, 10742, 1, 0, 0, 0, 1416, 10746, 1, 0, 0, 0, 1418, 10754, 1, 0, 0, 0, 1420, 10762, 1, 0, 0, 0, 1422, 10766, 1, 0, 0, 0, 1424, 10770, 1, 0, 0, 0, 1426, 10774, 1, 0, 0, 0, 1428, 10776, 1, 0, 0, 0, 1430, 10782, 1, 0, 0, 0, 1432, 10788, 1, 0, 0, 0, 1434, 10790, 1, 0, 0, 0, 1436, 10792, 1, 0, 0, 0, 1438, 10794, 1, 0, 0, 0, 1440, 10796, 1, 0, 0, 0, 1442, 10798, 1, 0, 0, 0, 1444, 10804, 1, 0, 0, 0, 1446, 10810, 1, 0, 0, 0, 1448, 10816, 1, 0, 0, 0, 1450, 10853, 1, 0, 0, 0, 1452, 10855, 1, 0, 0, 0, 1454, 10857, 1, 0, 0, 0, 1456, 10859, 1, 0, 0, 0, 1458, 10861, 1, 0, 0, 0, 1460, 10863, 1, 0, 0, 0, 1462, 10878, 1, 0, 0, 0, 1464, 10880, 1, 0, 0, 0, 1466, 10888, 1, 0, 0, 0, 1468, 10890, 1, 0, 0, 0, 1470, 10892, 1, 0, 0, 0, 1472, 10899, 1, 0, 0, 0, 1474, 10901, 1, 0, 0, 0, 1476, 10913, 1, 0, 0, 0, 1478, 10915, 1, 0, 0, 0, 1480, 10929, 1, 0, 0, 0, 1482, 10933, 1, 0, 0, 0, 1484, 10942, 1, 0, 0, 0, 1486, 10948, 1, 0, 0, 0, 1488, 10952, 1, 0, 0, 0, 1490, 10958, 1, 0, 0, 0, 1492, 10966, 1, 0, 0, 0, 1494, 10978, 1, 0, 0, 0, 1496, 10980, 1, 0, 0, 0, 1498, 10982, 1, 0, 0, 0, 1500, 11035, 1, 0, 0, 0, 1502, 11037, 1, 0, 0, 0, 1504, 11039, 1, 0, 0, 0, 1506, 11041, 1, 0, 0, 0, 1508, 11048, 1, 0, 0, 0, 1510, 11071, 1, 0, 0, 0, 1512, 11073, 1, 0, 0, 0, 1514, 11079, 1, 0, 0, 0, 1516, 11083, 1, 0, 0, 0, 1518, 11085, 1, 0, 0, 0, 1520, 11092, 1, 0, 0, 0, 1522, 11099, 1, 0, 0, 0, 1524, 11102, 1, 0, 0, 0, 1526, 11106, 1, 0, 0, 0, 1528, 11113, 1, 0, 0, 0, 1530, 11115, 1, 0, 0, 0, 1532, 11139, 1, 0, 0, 0, 1534, 11141, 1, 0, 0, 0, 1536, 11148, 1, 0, 0, 0, 1538, 11150, 1, 0, 0, 0, 1540, 11158, 1, 0, 0, 0, 1542, 11161, 1, 0, 0, 0, 1544, 11165, 1, 0, 0, 0, 1546, 11167, 1, 0, 0, 0, 1548, 11171, 1, 0, 0, 0, 1550, 11173, 1, 0, 0, 0, 1552, 11178, 1, 0, 0, 0, 1554, 11183, 1, 0, 0, 0, 1556, 11189, 1, 0, 0, 0, 1558, 11193, 1, 0, 0, 0, 1560, 11195, 1, 0, 0, 0, 1562, 11200, 1, 0, 0, 0, 1564, 11230, 1, 0, 0, 0, 1566, 11232, 1, 0, 0, 0, 1568, 11252, 1, 0, 0, 0, 1570, 11256, 1, 0, 0, 0, 1572, 11258, 1, 0, 0, 0, 1574, 11263, 1, 0, 0, 0, 1576, 11272, 1, 0, 0, 0, 1578, 11274, 1, 0, 0, 0, 1580, 11282, 1, 0, 0, 0, 1582, 11286, 1, 0, 0, 0, 1584, 11288, 1, 0, 0, 0, 1586, 11292, 1, 0, 0, 0, 1588, 11303, 1, 0, 0, 0, 1590, 11320, 1, 0, 0, 0, 1592, 11326, 1, 0, 0, 0, 1594, 11328, 1, 0, 0, 0, 1596, 11338, 1, 0, 0, 0, 1598, 11341, 1, 0, 0, 0, 1600, 11345, 1, 0, 0, 0, 1602, 11353, 1, 0, 0, 0, 1604, 11355, 1, 0, 0, 0, 1606, 11358, 1, 0, 0, 0, 1608, 11363, 1, 0, 0, 0, 1610, 11368, 1, 0, 0, 0, 1612, 11390, 1, 0, 0, 0, 1614, 11404, 1, 0, 0, 0, 1616, 11408, 1, 0, 0, 0, 1618, 11413, 1, 0, 0, 0, 1620, 11415, 1, 0, 0, 0, 1622, 11417, 1, 0, 0, 0, 1624, 11429, 1, 0, 0, 0, 1626, 11431, 1, 0, 0, 0, 1628, 11438, 1, 0, 0, 0, 1630, 11440, 1, 0, 0, 0, 1632, 11458, 1, 0, 0, 0, 1634, 11494, 1, 0, 0, 0, 1636, 11496, 1, 0, 0, 0, 1638, 11505, 1, 0, 0, 0, 1640, 11510, 1, 0, 0, 0, 1642, 11512, 1, 0, 0, 0, 1644, 11516, 1, 0, 0, 0, 1646, 11524, 1, 0, 0, 0, 1648, 11532, 1, 0, 0, 0, 1650, 11534, 1, 0, 0, 0, 1652, 11541, 1, 0, 0, 0, 1654, 11544, 1, 0, 0, 0, 1656, 11560, 1, 0, 0, 0, 1658, 11562, 1, 0, 0, 0, 1660, 11576, 1, 0, 0, 0, 1662, 11578, 1, 0, 0, 0, 1664, 11605, 1, 0, 0, 0, 1666, 11607, 1, 0, 0, 0, 1668, 11618, 1, 0, 0, 0, 1670, 11624, 1, 0, 0, 0, 1672, 11628, 1, 0, 0, 0, 1674, 11630, 1, 0, 0, 0, 1676, 11640, 1, 0, 0, 0, 1678, 11645, 1, 0, 0, 0, 1680, 11662, 1, 0, 0, 0, 1682, 11664, 1, 0, 0, 0, 1684, 11672, 1, 0, 0, 0, 1686, 11709, 1, 0, 0, 0, 1688, 11717, 1, 0, 0, 0, 1690, 11745, 1, 0, 0, 0, 1692, 11747, 1, 0, 0, 0, 1694, 11761, 1, 0, 0, 0, 1696, 11783, 1, 0, 0, 0, 1698, 11785, 1, 0, 0, 0, 1700, 11798, 1, 0, 0, 0, 1702, 11800, 1, 0, 0, 0, 1704, 11804, 1, 0, 0, 0, 1706, 11807, 1, 0, 0, 0, 1708, 11813, 1, 0, 0, 0, 1710, 11819, 1, 0, 0, 0, 1712, 11837, 1, 0, 0, 0, 1714, 11841, 1, 0, 0, 0, 1716, 11846, 1, 0, 0, 0, 1718, 11849, 1, 0, 0, 0, 1720, 11853, 1, 0, 0, 0, 1722, 11858, 1, 0, 0, 0, 1724, 11869, 1, 0, 0, 0, 1726, 11873, 1, 0, 0, 0, 1728, 11877, 1, 0, 0, 0, 1730, 11881, 1, 0, 0, 0, 1732, 11883, 1, 0, 0, 0, 1734, 11888, 1, 0, 0, 0, 1736, 11890, 1, 0, 0, 0, 1738, 11893, 1, 0, 0, 0, 1740, 11913, 1, 0, 0, 0, 1742, 11915, 1, 0, 0, 0, 1744, 11917, 1, 0, 0, 0, 1746, 11919, 1, 0, 0, 0, 1748, 11921, 1, 0, 0, 0, 1750, 11925, 1, 0, 0, 0, 1752, 1754, 3, 4, 2, 0, 1753, 1752, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1759, 5, 0, 0, 1, 1759, 1, 1, 0, 0, 0, 1760, 1761, 3, 1506, 753, 0, 1761, 3, 1, 0, 0, 0, 1762, 1764, 3, 6, 3, 0, 1763, 1765, 5, 7, 0, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 5, 1, 0, 0, 0, 1766, 1884, 3, 486, 243, 0, 1767, 1884, 3, 866, 433, 0, 1768, 1884, 3, 858, 429, 0, 1769, 1884, 3, 860, 430, 0, 1770, 1884, 3, 616, 308, 0, 1771, 1884, 3, 872, 436, 0, 1772, 1884, 3, 512, 256, 0, 1773, 1884, 3, 348, 174, 0, 1774, 1884, 3, 354, 177, 0, 1775, 1884, 3, 364, 182, 0, 1776, 1884, 3, 390, 195, 0, 1777, 1884, 3, 716, 358, 0, 1778, 1884, 3, 42, 21, 0, 1779, 1884, 3, 772, 386, 0, 1780, 1884, 3, 776, 388, 0, 1781, 1884, 3, 788, 394, 0, 1782, 1884, 3, 778, 389, 0, 1783, 1884, 3, 786, 393, 0, 1784, 1884, 3, 408, 204, 0, 1785, 1884, 3, 410, 205, 0, 1786, 1884, 3, 308, 154, 0, 1787, 1884, 3, 868, 434, 0, 1788, 1884, 3, 104, 52, 0, 1789, 1884, 3, 764, 382, 0, 1790, 1884, 3, 150, 75, 0, 1791, 1884, 3, 796, 398, 0, 1792, 1884, 3, 30, 15, 0, 1793, 1884, 3, 32, 16, 0, 1794, 1884, 3, 26, 13, 0, 1795, 1884, 3, 804, 402, 0, 1796, 1884, 3, 290, 145, 0, 1797, 1884, 3, 878, 439, 0, 1798, 1884, 3, 876, 438, 0, 1799, 1884, 3, 404, 202, 0, 1800, 1884, 3, 892, 446, 0, 1801, 1884, 3, 10, 5, 0, 1802, 1884, 3, 100, 50, 0, 1803, 1884, 3, 156, 78, 0, 1804, 1884, 3, 884, 442, 0, 1805, 1884, 3, 568, 284, 0, 1806, 1884, 3, 94, 47, 0, 1807, 1884, 3, 158, 79, 0, 1808, 1884, 3, 430, 215, 0, 1809, 1884, 3, 292, 146, 0, 1810, 1884, 3, 490, 245, 0, 1811, 1884, 3, 744, 372, 0, 1812, 1884, 3, 882, 441, 0, 1813, 1884, 3, 870, 435, 0, 1814, 1884, 3, 342, 171, 0, 1815, 1884, 3, 356, 178, 0, 1816, 1884, 3, 382, 191, 0, 1817, 1884, 3, 392, 196, 0, 1818, 1884, 3, 654, 327, 0, 1819, 1884, 3, 40, 20, 0, 1820, 1884, 3, 298, 149, 0, 1821, 1884, 3, 516, 258, 0, 1822, 1884, 3, 530, 265, 0, 1823, 1884, 3, 790, 395, 0, 1824, 1884, 3, 532, 266, 0, 1825, 1884, 3, 406, 203, 0, 1826, 1884, 3, 324, 162, 0, 1827, 1884, 3, 46, 23, 0, 1828, 1884, 3, 306, 153, 0, 1829, 1884, 3, 188, 94, 0, 1830, 1884, 3, 798, 399, 0, 1831, 1884, 3, 288, 144, 0, 1832, 1884, 3, 338, 169, 0, 1833, 1884, 3, 750, 375, 0, 1834, 1884, 3, 434, 217, 0, 1835, 1884, 3, 478, 239, 0, 1836, 1884, 3, 12, 6, 0, 1837, 1884, 3, 24, 12, 0, 1838, 1884, 3, 400, 200, 0, 1839, 1884, 3, 846, 423, 0, 1840, 1884, 3, 950, 475, 0, 1841, 1884, 3, 994, 497, 0, 1842, 1884, 3, 492, 246, 0, 1843, 1884, 3, 970, 485, 0, 1844, 1884, 3, 102, 51, 0, 1845, 1884, 3, 738, 369, 0, 1846, 1884, 3, 540, 270, 0, 1847, 1884, 3, 946, 473, 0, 1848, 1884, 3, 928, 464, 0, 1849, 1884, 3, 578, 289, 0, 1850, 1884, 3, 586, 293, 0, 1851, 1884, 3, 608, 304, 0, 1852, 1884, 3, 1684, 842, 0, 1853, 1884, 3, 394, 197, 0, 1854, 1884, 3, 626, 313, 0, 1855, 1884, 3, 952, 476, 0, 1856, 1884, 3, 824, 412, 0, 1857, 1884, 3, 304, 152, 0, 1858, 1884, 3, 844, 422, 0, 1859, 1884, 3, 974, 487, 0, 1860, 1884, 3, 820, 410, 0, 1861, 1884, 3, 940, 470, 0, 1862, 1884, 3, 538, 269, 0, 1863, 1884, 3, 754, 377, 0, 1864, 1884, 3, 726, 363, 0, 1865, 1884, 3, 724, 362, 0, 1866, 1884, 3, 728, 364, 0, 1867, 1884, 3, 766, 383, 0, 1868, 1884, 3, 588, 294, 0, 1869, 1884, 3, 610, 305, 0, 1870, 1884, 3, 806, 403, 0, 1871, 1884, 3, 572, 286, 0, 1872, 1884, 3, 1002, 501, 0, 1873, 1884, 3, 828, 414, 0, 1874, 1884, 3, 564, 282, 0, 1875, 1884, 3, 826, 413, 0, 1876, 1884, 3, 984, 492, 0, 1877, 1884, 3, 890, 445, 0, 1878, 1884, 3, 82, 41, 0, 1879, 1884, 3, 54, 27, 0, 1880, 1884, 3, 92, 46, 0, 1881, 1884, 3, 840, 420, 0, 1882, 1884, 3, 8, 4, 0, 1883, 1766, 1, 0, 0, 0, 1883, 1767, 1, 0, 0, 0, 1883, 1768, 1, 0, 0, 0, 1883, 1769, 1, 0, 0, 0, 1883, 1770, 1, 0, 0, 0, 1883, 1771, 1, 0, 0, 0, 1883, 1772, 1, 0, 0, 0, 1883, 1773, 1, 0, 0, 0, 1883, 1774, 1, 0, 0, 0, 1883, 1775, 1, 0, 0, 0, 1883, 1776, 1, 0, 0, 0, 1883, 1777, 1, 0, 0, 0, 1883, 1778, 1, 0, 0, 0, 1883, 1779, 1, 0, 0, 0, 1883, 1780, 1, 0, 0, 0, 1883, 1781, 1, 0, 0, 0, 1883, 1782, 1, 0, 0, 0, 1883, 1783, 1, 0, 0, 0, 1883, 1784, 1, 0, 0, 0, 1883, 1785, 1, 0, 0, 0, 1883, 1786, 1, 0, 0, 0, 1883, 1787, 1, 0, 0, 0, 1883, 1788, 1, 0, 0, 0, 1883, 1789, 1, 0, 0, 0, 1883, 1790, 1, 0, 0, 0, 1883, 1791, 1, 0, 0, 0, 1883, 1792, 1, 0, 0, 0, 1883, 1793, 1, 0, 0, 0, 1883, 1794, 1, 0, 0, 0, 1883, 1795, 1, 0, 0, 0, 1883, 1796, 1, 0, 0, 0, 1883, 1797, 1, 0, 0, 0, 1883, 1798, 1, 0, 0, 0, 1883, 1799, 1, 0, 0, 0, 1883, 1800, 1, 0, 0, 0, 1883, 1801, 1, 0, 0, 0, 1883, 1802, 1, 0, 0, 0, 1883, 1803, 1, 0, 0, 0, 1883, 1804, 1, 0, 0, 0, 1883, 1805, 1, 0, 0, 0, 1883, 1806, 1, 0, 0, 0, 1883, 1807, 1, 0, 0, 0, 1883, 1808, 1, 0, 0, 0, 1883, 1809, 1, 0, 0, 0, 1883, 1810, 1, 0, 0, 0, 1883, 1811, 1, 0, 0, 0, 1883, 1812, 1, 0, 0, 0, 1883, 1813, 1, 0, 0, 0, 1883, 1814, 1, 0, 0, 0, 1883, 1815, 1, 0, 0, 0, 1883, 1816, 1, 0, 0, 0, 1883, 1817, 1, 0, 0, 0, 1883, 1818, 1, 0, 0, 0, 1883, 1819, 1, 0, 0, 0, 1883, 1820, 1, 0, 0, 0, 1883, 1821, 1, 0, 0, 0, 1883, 1822, 1, 0, 0, 0, 1883, 1823, 1, 0, 0, 0, 1883, 1824, 1, 0, 0, 0, 1883, 1825, 1, 0, 0, 0, 1883, 1826, 1, 0, 0, 0, 1883, 1827, 1, 0, 0, 0, 1883, 1828, 1, 0, 0, 0, 1883, 1829, 1, 0, 0, 0, 1883, 1830, 1, 0, 0, 0, 1883, 1831, 1, 0, 0, 0, 1883, 1832, 1, 0, 0, 0, 1883, 1833, 1, 0, 0, 0, 1883, 1834, 1, 0, 0, 0, 1883, 1835, 1, 0, 0, 0, 1883, 1836, 1, 0, 0, 0, 1883, 1837, 1, 0, 0, 0, 1883, 1838, 1, 0, 0, 0, 1883, 1839, 1, 0, 0, 0, 1883, 1840, 1, 0, 0, 0, 1883, 1841, 1, 0, 0, 0, 1883, 1842, 1, 0, 0, 0, 1883, 1843, 1, 0, 0, 0, 1883, 1844, 1, 0, 0, 0, 1883, 1845, 1, 0, 0, 0, 1883, 1846, 1, 0, 0, 0, 1883, 1847, 1, 0, 0, 0, 1883, 1848, 1, 0, 0, 0, 1883, 1849, 1, 0, 0, 0, 1883, 1850, 1, 0, 0, 0, 1883, 1851, 1, 0, 0, 0, 1883, 1852, 1, 0, 0, 0, 1883, 1853, 1, 0, 0, 0, 1883, 1854, 1, 0, 0, 0, 1883, 1855, 1, 0, 0, 0, 1883, 1856, 1, 0, 0, 0, 1883, 1857, 1, 0, 0, 0, 1883, 1858, 1, 0, 0, 0, 1883, 1859, 1, 0, 0, 0, 1883, 1860, 1, 0, 0, 0, 1883, 1861, 1, 0, 0, 0, 1883, 1862, 1, 0, 0, 0, 1883, 1863, 1, 0, 0, 0, 1883, 1864, 1, 0, 0, 0, 1883, 1865, 1, 0, 0, 0, 1883, 1866, 1, 0, 0, 0, 1883, 1867, 1, 0, 0, 0, 1883, 1868, 1, 0, 0, 0, 1883, 1869, 1, 0, 0, 0, 1883, 1870, 1, 0, 0, 0, 1883, 1871, 1, 0, 0, 0, 1883, 1872, 1, 0, 0, 0, 1883, 1873, 1, 0, 0, 0, 1883, 1874, 1, 0, 0, 0, 1883, 1875, 1, 0, 0, 0, 1883, 1876, 1, 0, 0, 0, 1883, 1877, 1, 0, 0, 0, 1883, 1878, 1, 0, 0, 0, 1883, 1879, 1, 0, 0, 0, 1883, 1880, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1882, 1, 0, 0, 0, 1884, 7, 1, 0, 0, 0, 1885, 1887, 5, 581, 0, 0, 1886, 1888, 5, 582, 0, 0, 1887, 1886, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 9, 1, 0, 0, 0, 1889, 1890, 5, 433, 0, 0, 1890, 1891, 3, 1260, 630, 0, 1891, 11, 1, 0, 0, 0, 1892, 1893, 5, 46, 0, 0, 1893, 1894, 5, 318, 0, 0, 1894, 1896, 3, 1470, 735, 0, 1895, 1897, 3, 14, 7, 0, 1896, 1895, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 3, 16, 8, 0, 1899, 13, 1, 0, 0, 0, 1900, 1901, 5, 105, 0, 0, 1901, 15, 1, 0, 0, 0, 1902, 1904, 3, 22, 11, 0, 1903, 1902, 1, 0, 0, 0, 1904, 1907, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 17, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1908, 1910, 3, 20, 10, 0, 1909, 1908, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 19, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 5, 287, 0, 0, 1915, 1918, 3, 1460, 730, 0, 1916, 1918, 5, 78, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1916, 1, 0, 0, 0, 1918, 1950, 1, 0, 0, 0, 1919, 1920, 7, 0, 0, 0, 1920, 1921, 5, 287, 0, 0, 1921, 1950, 3, 1460, 730, 0, 1922, 1950, 7, 1, 0, 0, 1923, 1950, 7, 2, 0, 0, 1924, 1950, 7, 3, 0, 0, 1925, 1950, 7, 4, 0, 0, 1926, 1950, 7, 5, 0, 0, 1927, 1950, 7, 6, 0, 0, 1928, 1950, 7, 7, 0, 0, 1929, 1950, 7, 8, 0, 0, 1930, 1931, 5, 164, 0, 0, 1931, 1932, 5, 74, 0, 0, 1932, 1950, 3, 1466, 733, 0, 1933, 1934, 5, 371, 0, 0, 1934, 1935, 5, 368, 0, 0, 1935, 1950, 3, 1460, 730, 0, 1936, 1937, 5, 68, 0, 0, 1937, 1938, 5, 318, 0, 0, 1938, 1950, 3, 1418, 709, 0, 1939, 1940, 5, 68, 0, 0, 1940, 1941, 5, 66, 0, 0, 1941, 1950, 3, 1418, 709, 0, 1942, 1943, 5, 318, 0, 0, 1943, 1950, 3, 1474, 737, 0, 1944, 1945, 5, 134, 0, 0, 1945, 1950, 3, 1418, 709, 0, 1946, 1947, 5, 99, 0, 0, 1947, 1950, 3, 1474, 737, 0, 1948, 1950, 3, 1494, 747, 0, 1949, 1914, 1, 0, 0, 0, 1949, 1919, 1, 0, 0, 0, 1949, 1922, 1, 0, 0, 0, 1949, 1923, 1, 0, 0, 0, 1949, 1924, 1, 0, 0, 0, 1949, 1925, 1, 0, 0, 0, 1949, 1926, 1, 0, 0, 0, 1949, 1927, 1, 0, 0, 0, 1949, 1928, 1, 0, 0, 0, 1949, 1929, 1, 0, 0, 0, 1949, 1930, 1, 0, 0, 0, 1949, 1933, 1, 0, 0, 0, 1949, 1936, 1, 0, 0, 0, 1949, 1939, 1, 0, 0, 0, 1949, 1942, 1, 0, 0, 0, 1949, 1944, 1, 0, 0, 0, 1949, 1946, 1, 0, 0, 0, 1949, 1948, 1, 0, 0, 0, 1950, 21, 1, 0, 0, 0, 1951, 1962, 3, 20, 10, 0, 1952, 1953, 5, 348, 0, 0, 1953, 1962, 3, 1458, 729, 0, 1954, 1955, 5, 134, 0, 0, 1955, 1962, 3, 1474, 737, 0, 1956, 1957, 5, 318, 0, 0, 1957, 1962, 3, 1474, 737, 0, 1958, 1959, 5, 68, 0, 0, 1959, 1960, 7, 9, 0, 0, 1960, 1962, 3, 1474, 737, 0, 1961, 1951, 1, 0, 0, 0, 1961, 1952, 1, 0, 0, 0, 1961, 1954, 1, 0, 0, 0, 1961, 1956, 1, 0, 0, 0, 1961, 1958, 1, 0, 0, 0, 1962, 23, 1, 0, 0, 0, 1963, 1964, 5, 46, 0, 0, 1964, 1965, 5, 99, 0, 0, 1965, 1967, 3, 1470, 735, 0, 1966, 1968, 3, 14, 7, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 3, 16, 8, 0, 1970, 25, 1, 0, 0, 0, 1971, 1972, 5, 138, 0, 0, 1972, 1973, 7, 10, 0, 0, 1973, 1975, 3, 1472, 736, 0, 1974, 1976, 3, 14, 7, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1978, 3, 18, 9, 0, 1978, 27, 1, 0, 0, 0, 1979, 1984, 1, 0, 0, 0, 1980, 1981, 5, 68, 0, 0, 1981, 1982, 5, 175, 0, 0, 1982, 1984, 3, 1422, 711, 0, 1983, 1979, 1, 0, 0, 0, 1983, 1980, 1, 0, 0, 0, 1984, 29, 1, 0, 0, 0, 1985, 1986, 5, 138, 0, 0, 1986, 1989, 7, 10, 0, 0, 1987, 1990, 5, 30, 0, 0, 1988, 1990, 3, 1472, 736, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1992, 3, 28, 14, 0, 1992, 1993, 3, 88, 44, 0, 1993, 31, 1, 0, 0, 0, 1994, 1995, 5, 138, 0, 0, 1995, 1996, 5, 442, 0, 0, 1996, 1998, 3, 1428, 714, 0, 1997, 1999, 3, 660, 330, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2001, 3, 34, 17, 0, 2001, 33, 1, 0, 0, 0, 2002, 2004, 3, 36, 18, 0, 2003, 2005, 5, 315, 0, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2023, 1, 0, 0, 0, 2006, 2007, 5, 309, 0, 0, 2007, 2008, 5, 94, 0, 0, 2008, 2023, 3, 1426, 713, 0, 2009, 2010, 5, 282, 0, 0, 2010, 2011, 5, 94, 0, 0, 2011, 2023, 3, 1472, 736, 0, 2012, 2013, 5, 333, 0, 0, 2013, 2014, 5, 323, 0, 0, 2014, 2023, 3, 48, 24, 0, 2015, 2017, 5, 269, 0, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 5, 462, 0, 0, 2019, 2020, 5, 80, 0, 0, 2020, 2021, 5, 204, 0, 0, 2021, 2023, 3, 1438, 719, 0, 2022, 2002, 1, 0, 0, 0, 2022, 2006, 1, 0, 0, 0, 2022, 2009, 1, 0, 0, 0, 2022, 2012, 1, 0, 0, 0, 2022, 2016, 1, 0, 0, 0, 2023, 35, 1, 0, 0, 0, 2024, 2028, 3, 38, 19, 0, 2025, 2027, 3, 38, 19, 0, 2026, 2025, 1, 0, 0, 0, 2027, 2030, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 37, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2031, 2073, 5, 222, 0, 0, 2032, 2073, 5, 338, 0, 0, 2033, 2073, 5, 377, 0, 0, 2034, 2036, 5, 77, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2073, 5, 250, 0, 0, 2038, 2040, 5, 205, 0, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 5, 327, 0, 0, 2042, 2049, 5, 243, 0, 0, 2043, 2045, 5, 205, 0, 0, 2044, 2043, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 5, 327, 0, 0, 2047, 2049, 5, 181, 0, 0, 2048, 2039, 1, 0, 0, 0, 2048, 2044, 1, 0, 0, 0, 2049, 2073, 1, 0, 0, 0, 2050, 2051, 5, 460, 0, 0, 2051, 2073, 7, 11, 0, 0, 2052, 2053, 5, 170, 0, 0, 2053, 2073, 3, 1440, 720, 0, 2054, 2055, 5, 320, 0, 0, 2055, 2073, 3, 1438, 719, 0, 2056, 2057, 5, 333, 0, 0, 2057, 2058, 3, 1438, 719, 0, 2058, 2061, 7, 12, 0, 0, 2059, 2062, 3, 1438, 719, 0, 2060, 2062, 5, 53, 0, 0, 2061, 2059, 1, 0, 0, 0, 2061, 2060, 1, 0, 0, 0, 2062, 2073, 1, 0, 0, 0, 2063, 2064, 5, 333, 0, 0, 2064, 2065, 3, 1438, 719, 0, 2065, 2066, 5, 64, 0, 0, 2066, 2067, 5, 434, 0, 0, 2067, 2073, 1, 0, 0, 0, 2068, 2069, 5, 313, 0, 0, 2069, 2073, 3, 1438, 719, 0, 2070, 2071, 5, 313, 0, 0, 2071, 2073, 5, 30, 0, 0, 2072, 2031, 1, 0, 0, 0, 2072, 2032, 1, 0, 0, 0, 2072, 2033, 1, 0, 0, 0, 2072, 2035, 1, 0, 0, 0, 2072, 2048, 1, 0, 0, 0, 2072, 2050, 1, 0, 0, 0, 2072, 2052, 1, 0, 0, 0, 2072, 2054, 1, 0, 0, 0, 2072, 2056, 1, 0, 0, 0, 2072, 2063, 1, 0, 0, 0, 2072, 2068, 1, 0, 0, 0, 2072, 2070, 1, 0, 0, 0, 2073, 39, 1, 0, 0, 0, 2074, 2075, 5, 46, 0, 0, 2075, 2076, 5, 66, 0, 0, 2076, 2078, 3, 1468, 734, 0, 2077, 2079, 3, 14, 7, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 3, 16, 8, 0, 2081, 41, 1, 0, 0, 0, 2082, 2083, 5, 138, 0, 0, 2083, 2084, 5, 66, 0, 0, 2084, 2085, 3, 1472, 736, 0, 2085, 2086, 3, 44, 22, 0, 2086, 2087, 5, 99, 0, 0, 2087, 2088, 3, 1474, 737, 0, 2088, 43, 1, 0, 0, 0, 2089, 2090, 7, 13, 0, 0, 2090, 45, 1, 0, 0, 0, 2091, 2092, 5, 46, 0, 0, 2092, 2094, 5, 323, 0, 0, 2093, 2095, 3, 514, 257, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2102, 1, 0, 0, 0, 2096, 2098, 3, 48, 24, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2100, 5, 106, 0, 0, 2100, 2103, 3, 1472, 736, 0, 2101, 2103, 3, 48, 24, 0, 2102, 2097, 1, 0, 0, 0, 2102, 2101, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2105, 3, 50, 25, 0, 2105, 47, 1, 0, 0, 0, 2106, 2108, 3, 1476, 738, 0, 2107, 2109, 3, 560, 280, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 49, 1, 0, 0, 0, 2110, 2112, 3, 52, 26, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 51, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2123, 3, 188, 94, 0, 2117, 2123, 3, 626, 313, 0, 2118, 2123, 3, 306, 153, 0, 2119, 2123, 3, 434, 217, 0, 2120, 2123, 3, 586, 293, 0, 2121, 2123, 3, 840, 420, 0, 2122, 2116, 1, 0, 0, 0, 2122, 2117, 1, 0, 0, 0, 2122, 2118, 1, 0, 0, 0, 2122, 2119, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2121, 1, 0, 0, 0, 2123, 53, 1, 0, 0, 0, 2124, 2126, 5, 333, 0, 0, 2125, 2127, 7, 14, 0, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 3, 56, 28, 0, 2129, 55, 1, 0, 0, 0, 2130, 2131, 5, 356, 0, 0, 2131, 2139, 3, 834, 417, 0, 2132, 2133, 5, 332, 0, 0, 2133, 2134, 5, 154, 0, 0, 2134, 2135, 5, 36, 0, 0, 2135, 2136, 5, 356, 0, 0, 2136, 2139, 3, 834, 417, 0, 2137, 2139, 3, 60, 30, 0, 2138, 2130, 1, 0, 0, 0, 2138, 2132, 1, 0, 0, 0, 2138, 2137, 1, 0, 0, 0, 2139, 57, 1, 0, 0, 0, 2140, 2143, 3, 62, 31, 0, 2141, 2143, 5, 30, 0, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2141, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 7, 12, 0, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2149, 1, 0, 0, 0, 2147, 2150, 3, 64, 32, 0, 2148, 2150, 5, 53, 0, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2148, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 59, 1, 0, 0, 0, 2151, 2179, 3, 58, 29, 0, 2152, 2153, 3, 62, 31, 0, 2153, 2154, 5, 64, 0, 0, 2154, 2155, 5, 434, 0, 0, 2155, 2179, 1, 0, 0, 0, 2156, 2157, 5, 418, 0, 0, 2157, 2158, 5, 386, 0, 0, 2158, 2179, 3, 74, 37, 0, 2159, 2160, 5, 152, 0, 0, 2160, 2179, 3, 1460, 730, 0, 2161, 2162, 5, 323, 0, 0, 2162, 2179, 3, 1424, 712, 0, 2163, 2165, 5, 267, 0, 0, 2164, 2166, 3, 76, 38, 0, 2165, 2164, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2179, 1, 0, 0, 0, 2167, 2168, 5, 318, 0, 0, 2168, 2179, 3, 80, 40, 0, 2169, 2170, 5, 332, 0, 0, 2170, 2171, 5, 106, 0, 0, 2171, 2179, 3, 80, 40, 0, 2172, 2173, 5, 383, 0, 0, 2173, 2174, 5, 279, 0, 0, 2174, 2179, 3, 1278, 639, 0, 2175, 2176, 5, 356, 0, 0, 2176, 2177, 5, 337, 0, 0, 2177, 2179, 3, 1460, 730, 0, 2178, 2151, 1, 0, 0, 0, 2178, 2152, 1, 0, 0, 0, 2178, 2156, 1, 0, 0, 0, 2178, 2159, 1, 0, 0, 0, 2178, 2161, 1, 0, 0, 0, 2178, 2163, 1, 0, 0, 0, 2178, 2167, 1, 0, 0, 0, 2178, 2169, 1, 0, 0, 0, 2178, 2172, 1, 0, 0, 0, 2178, 2175, 1, 0, 0, 0, 2179, 61, 1, 0, 0, 0, 2180, 2185, 3, 1476, 738, 0, 2181, 2182, 5, 11, 0, 0, 2182, 2184, 3, 1476, 738, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 63, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2193, 3, 66, 33, 0, 2189, 2190, 5, 6, 0, 0, 2190, 2192, 3, 66, 33, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2195, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 65, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2196, 2199, 3, 72, 36, 0, 2197, 2199, 3, 320, 160, 0, 2198, 2196, 1, 0, 0, 0, 2198, 2197, 1, 0, 0, 0, 2199, 67, 1, 0, 0, 0, 2200, 2201, 5, 300, 0, 0, 2201, 2206, 7, 15, 0, 0, 2202, 2203, 5, 310, 0, 0, 2203, 2206, 5, 300, 0, 0, 2204, 2206, 5, 330, 0, 0, 2205, 2200, 1, 0, 0, 0, 2205, 2202, 1, 0, 0, 0, 2205, 2204, 1, 0, 0, 0, 2206, 69, 1, 0, 0, 0, 2207, 2212, 5, 96, 0, 0, 2208, 2212, 5, 60, 0, 0, 2209, 2212, 5, 80, 0, 0, 2210, 2212, 3, 78, 39, 0, 2211, 2207, 1, 0, 0, 0, 2211, 2208, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2210, 1, 0, 0, 0, 2212, 71, 1, 0, 0, 0, 2213, 2218, 5, 96, 0, 0, 2214, 2218, 5, 60, 0, 0, 2215, 2218, 5, 80, 0, 0, 2216, 2218, 3, 80, 40, 0, 2217, 2213, 1, 0, 0, 0, 2217, 2214, 1, 0, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2216, 1, 0, 0, 0, 2218, 73, 1, 0, 0, 0, 2219, 2236, 3, 1460, 730, 0, 2220, 2236, 3, 1494, 747, 0, 2221, 2222, 3, 1204, 602, 0, 2222, 2224, 3, 1460, 730, 0, 2223, 2225, 3, 1208, 604, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2236, 1, 0, 0, 0, 2226, 2227, 3, 1204, 602, 0, 2227, 2228, 5, 2, 0, 0, 2228, 2229, 3, 1458, 729, 0, 2229, 2230, 5, 3, 0, 0, 2230, 2231, 3, 1460, 730, 0, 2231, 2236, 1, 0, 0, 0, 2232, 2236, 3, 320, 160, 0, 2233, 2236, 5, 53, 0, 0, 2234, 2236, 5, 254, 0, 0, 2235, 2219, 1, 0, 0, 0, 2235, 2220, 1, 0, 0, 0, 2235, 2221, 1, 0, 0, 0, 2235, 2226, 1, 0, 0, 0, 2235, 2232, 1, 0, 0, 0, 2235, 2233, 1, 0, 0, 0, 2235, 2234, 1, 0, 0, 0, 2236, 75, 1, 0, 0, 0, 2237, 2240, 3, 1460, 730, 0, 2238, 2240, 5, 53, 0, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2238, 1, 0, 0, 0, 2240, 77, 1, 0, 0, 0, 2241, 2244, 3, 1488, 744, 0, 2242, 2244, 3, 1460, 730, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2242, 1, 0, 0, 0, 2244, 79, 1, 0, 0, 0, 2245, 2248, 3, 1490, 745, 0, 2246, 2248, 3, 1460, 730, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2246, 1, 0, 0, 0, 2248, 81, 1, 0, 0, 0, 2249, 2250, 5, 313, 0, 0, 2250, 2251, 3, 84, 42, 0, 2251, 83, 1, 0, 0, 0, 2252, 2261, 3, 86, 43, 0, 2253, 2254, 5, 418, 0, 0, 2254, 2261, 5, 386, 0, 0, 2255, 2256, 5, 356, 0, 0, 2256, 2257, 5, 244, 0, 0, 2257, 2261, 5, 251, 0, 0, 2258, 2259, 5, 332, 0, 0, 2259, 2261, 5, 106, 0, 0, 2260, 2252, 1, 0, 0, 0, 2260, 2253, 1, 0, 0, 0, 2260, 2255, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2261, 85, 1, 0, 0, 0, 2262, 2265, 3, 62, 31, 0, 2263, 2265, 5, 30, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2263, 1, 0, 0, 0, 2265, 87, 1, 0, 0, 0, 2266, 2267, 5, 333, 0, 0, 2267, 2270, 3, 56, 28, 0, 2268, 2270, 3, 82, 41, 0, 2269, 2266, 1, 0, 0, 0, 2269, 2268, 1, 0, 0, 0, 2270, 89, 1, 0, 0, 0, 2271, 2272, 5, 333, 0, 0, 2272, 2275, 3, 60, 30, 0, 2273, 2275, 3, 82, 41, 0, 2274, 2271, 1, 0, 0, 0, 2274, 2273, 1, 0, 0, 0, 2275, 91, 1, 0, 0, 0, 2276, 2286, 5, 335, 0, 0, 2277, 2287, 3, 62, 31, 0, 2278, 2279, 5, 418, 0, 0, 2279, 2287, 5, 386, 0, 0, 2280, 2281, 5, 356, 0, 0, 2281, 2282, 5, 244, 0, 0, 2282, 2287, 5, 251, 0, 0, 2283, 2284, 5, 332, 0, 0, 2284, 2287, 5, 106, 0, 0, 2285, 2287, 5, 30, 0, 0, 2286, 2277, 1, 0, 0, 0, 2286, 2278, 1, 0, 0, 0, 2286, 2280, 1, 0, 0, 0, 2286, 2283, 1, 0, 0, 0, 2286, 2285, 1, 0, 0, 0, 2287, 93, 1, 0, 0, 0, 2288, 2289, 5, 333, 0, 0, 2289, 2290, 5, 165, 0, 0, 2290, 2291, 3, 96, 48, 0, 2291, 2292, 3, 98, 49, 0, 2292, 95, 1, 0, 0, 0, 2293, 2296, 5, 30, 0, 0, 2294, 2296, 3, 1392, 696, 0, 2295, 2293, 1, 0, 0, 0, 2295, 2294, 1, 0, 0, 0, 2296, 97, 1, 0, 0, 0, 2297, 2298, 7, 16, 0, 0, 2298, 99, 1, 0, 0, 0, 2299, 2300, 5, 155, 0, 0, 2300, 101, 1, 0, 0, 0, 2301, 2302, 5, 187, 0, 0, 2302, 2303, 7, 17, 0, 0, 2303, 103, 1, 0, 0, 0, 2304, 2305, 5, 138, 0, 0, 2305, 2307, 5, 92, 0, 0, 2306, 2308, 3, 748, 374, 0, 2307, 2306, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2312, 3, 1120, 560, 0, 2310, 2313, 3, 106, 53, 0, 2311, 2313, 3, 116, 58, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 2438, 1, 0, 0, 0, 2314, 2315, 5, 138, 0, 0, 2315, 2316, 5, 92, 0, 0, 2316, 2317, 5, 30, 0, 0, 2317, 2318, 5, 68, 0, 0, 2318, 2319, 5, 351, 0, 0, 2319, 2323, 3, 1404, 702, 0, 2320, 2321, 5, 281, 0, 0, 2321, 2322, 5, 147, 0, 0, 2322, 2324, 3, 1474, 737, 0, 2323, 2320, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2326, 5, 333, 0, 0, 2326, 2327, 5, 351, 0, 0, 2327, 2329, 3, 1402, 701, 0, 2328, 2330, 3, 980, 490, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2438, 1, 0, 0, 0, 2331, 2332, 5, 138, 0, 0, 2332, 2334, 5, 92, 0, 0, 2333, 2335, 3, 748, 374, 0, 2334, 2333, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 3, 1408, 704, 0, 2337, 2338, 5, 435, 0, 0, 2338, 2339, 5, 285, 0, 0, 2339, 2344, 3, 1414, 707, 0, 2340, 2341, 5, 62, 0, 0, 2341, 2342, 5, 422, 0, 0, 2342, 2345, 3, 108, 54, 0, 2343, 2345, 5, 53, 0, 0, 2344, 2340, 1, 0, 0, 0, 2344, 2343, 1, 0, 0, 0, 2345, 2438, 1, 0, 0, 0, 2346, 2347, 5, 138, 0, 0, 2347, 2349, 5, 92, 0, 0, 2348, 2350, 3, 748, 374, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2352, 3, 1408, 704, 0, 2352, 2353, 5, 436, 0, 0, 2353, 2354, 5, 285, 0, 0, 2354, 2356, 3, 1414, 707, 0, 2355, 2357, 7, 18, 0, 0, 2356, 2355, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2438, 1, 0, 0, 0, 2358, 2359, 5, 138, 0, 0, 2359, 2361, 5, 226, 0, 0, 2360, 2362, 3, 748, 374, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 2366, 3, 1414, 707, 0, 2364, 2367, 3, 106, 53, 0, 2365, 2367, 3, 118, 59, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2365, 1, 0, 0, 0, 2367, 2438, 1, 0, 0, 0, 2368, 2369, 5, 138, 0, 0, 2369, 2370, 5, 226, 0, 0, 2370, 2371, 5, 30, 0, 0, 2371, 2372, 5, 68, 0, 0, 2372, 2373, 5, 351, 0, 0, 2373, 2377, 3, 1404, 702, 0, 2374, 2375, 5, 281, 0, 0, 2375, 2376, 5, 147, 0, 0, 2376, 2378, 3, 1474, 737, 0, 2377, 2374, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2380, 5, 333, 0, 0, 2380, 2381, 5, 351, 0, 0, 2381, 2383, 3, 1402, 701, 0, 2382, 2384, 3, 980, 490, 0, 2383, 2382, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2438, 1, 0, 0, 0, 2385, 2386, 5, 138, 0, 0, 2386, 2388, 5, 328, 0, 0, 2387, 2389, 3, 748, 374, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2391, 3, 1414, 707, 0, 2391, 2392, 3, 106, 53, 0, 2392, 2438, 1, 0, 0, 0, 2393, 2394, 5, 138, 0, 0, 2394, 2396, 5, 376, 0, 0, 2395, 2397, 3, 748, 374, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 3, 1412, 706, 0, 2399, 2400, 3, 106, 53, 0, 2400, 2438, 1, 0, 0, 0, 2401, 2402, 5, 138, 0, 0, 2402, 2403, 5, 259, 0, 0, 2403, 2405, 5, 376, 0, 0, 2404, 2406, 3, 748, 374, 0, 2405, 2404, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2408, 3, 1412, 706, 0, 2408, 2409, 3, 106, 53, 0, 2409, 2438, 1, 0, 0, 0, 2410, 2411, 5, 138, 0, 0, 2411, 2412, 5, 259, 0, 0, 2412, 2413, 5, 376, 0, 0, 2413, 2414, 5, 30, 0, 0, 2414, 2415, 5, 68, 0, 0, 2415, 2416, 5, 351, 0, 0, 2416, 2420, 3, 1404, 702, 0, 2417, 2418, 5, 281, 0, 0, 2418, 2419, 5, 147, 0, 0, 2419, 2421, 3, 1474, 737, 0, 2420, 2417, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2423, 5, 333, 0, 0, 2423, 2424, 5, 351, 0, 0, 2424, 2426, 3, 1402, 701, 0, 2425, 2427, 3, 980, 490, 0, 2426, 2425, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2438, 1, 0, 0, 0, 2428, 2429, 5, 138, 0, 0, 2429, 2430, 5, 63, 0, 0, 2430, 2432, 5, 92, 0, 0, 2431, 2433, 3, 748, 374, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2435, 3, 1120, 560, 0, 2435, 2436, 3, 106, 53, 0, 2436, 2438, 1, 0, 0, 0, 2437, 2304, 1, 0, 0, 0, 2437, 2314, 1, 0, 0, 0, 2437, 2331, 1, 0, 0, 0, 2437, 2346, 1, 0, 0, 0, 2437, 2358, 1, 0, 0, 0, 2437, 2368, 1, 0, 0, 0, 2437, 2385, 1, 0, 0, 0, 2437, 2393, 1, 0, 0, 0, 2437, 2401, 1, 0, 0, 0, 2437, 2410, 1, 0, 0, 0, 2437, 2428, 1, 0, 0, 0, 2438, 105, 1, 0, 0, 0, 2439, 2444, 3, 120, 60, 0, 2440, 2441, 5, 6, 0, 0, 2441, 2443, 3, 120, 60, 0, 2442, 2440, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 107, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2447, 2448, 5, 68, 0, 0, 2448, 2457, 3, 1180, 590, 0, 2449, 2450, 5, 64, 0, 0, 2450, 2451, 3, 110, 55, 0, 2451, 2452, 5, 94, 0, 0, 2452, 2453, 3, 110, 55, 0, 2453, 2457, 1, 0, 0, 0, 2454, 2455, 5, 105, 0, 0, 2455, 2457, 3, 114, 57, 0, 2456, 2447, 1, 0, 0, 0, 2456, 2449, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2457, 109, 1, 0, 0, 0, 2458, 2459, 5, 2, 0, 0, 2459, 2464, 3, 112, 56, 0, 2460, 2461, 5, 6, 0, 0, 2461, 2463, 3, 112, 56, 0, 2462, 2460, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2467, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2468, 5, 3, 0, 0, 2468, 111, 1, 0, 0, 0, 2469, 2473, 3, 1180, 590, 0, 2470, 2473, 5, 262, 0, 0, 2471, 2473, 5, 260, 0, 0, 2472, 2469, 1, 0, 0, 0, 2472, 2470, 1, 0, 0, 0, 2472, 2471, 1, 0, 0, 0, 2473, 113, 1, 0, 0, 0, 2474, 2475, 5, 2, 0, 0, 2475, 2476, 5, 533, 0, 0, 2476, 2477, 3, 320, 160, 0, 2477, 2478, 5, 6, 0, 0, 2478, 2479, 5, 534, 0, 0, 2479, 2480, 3, 320, 160, 0, 2480, 2481, 5, 3, 0, 0, 2481, 115, 1, 0, 0, 0, 2482, 2483, 5, 435, 0, 0, 2483, 2484, 5, 285, 0, 0, 2484, 2485, 3, 1414, 707, 0, 2485, 2486, 3, 144, 72, 0, 2486, 2491, 1, 0, 0, 0, 2487, 2488, 5, 436, 0, 0, 2488, 2489, 5, 285, 0, 0, 2489, 2491, 3, 1414, 707, 0, 2490, 2482, 1, 0, 0, 0, 2490, 2487, 1, 0, 0, 0, 2491, 117, 1, 0, 0, 0, 2492, 2493, 5, 435, 0, 0, 2493, 2494, 5, 285, 0, 0, 2494, 2495, 3, 1414, 707, 0, 2495, 119, 1, 0, 0, 0, 2496, 2498, 5, 133, 0, 0, 2497, 2499, 3, 768, 384, 0, 2498, 2497, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 1, 0, 0, 0, 2500, 2502, 3, 514, 257, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2759, 3, 206, 103, 0, 2504, 2506, 5, 138, 0, 0, 2505, 2507, 3, 768, 384, 0, 2506, 2505, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2509, 3, 1434, 717, 0, 2509, 2510, 3, 122, 61, 0, 2510, 2759, 1, 0, 0, 0, 2511, 2513, 5, 138, 0, 0, 2512, 2514, 3, 768, 384, 0, 2513, 2512, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 3, 1434, 717, 0, 2516, 2517, 5, 191, 0, 0, 2517, 2518, 5, 77, 0, 0, 2518, 2519, 5, 78, 0, 0, 2519, 2759, 1, 0, 0, 0, 2520, 2522, 5, 138, 0, 0, 2521, 2523, 3, 768, 384, 0, 2522, 2521, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2525, 3, 1434, 717, 0, 2525, 2526, 5, 333, 0, 0, 2526, 2527, 5, 77, 0, 0, 2527, 2528, 5, 78, 0, 0, 2528, 2759, 1, 0, 0, 0, 2529, 2531, 5, 138, 0, 0, 2530, 2532, 3, 768, 384, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 3, 1434, 717, 0, 2534, 2535, 5, 191, 0, 0, 2535, 2537, 5, 437, 0, 0, 2536, 2538, 3, 748, 374, 0, 2537, 2536, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2759, 1, 0, 0, 0, 2539, 2541, 5, 138, 0, 0, 2540, 2542, 3, 768, 384, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 3, 1434, 717, 0, 2544, 2545, 5, 333, 0, 0, 2545, 2546, 5, 342, 0, 0, 2546, 2547, 3, 1466, 733, 0, 2547, 2759, 1, 0, 0, 0, 2548, 2550, 5, 138, 0, 0, 2549, 2551, 3, 768, 384, 0, 2550, 2549, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2553, 3, 1434, 717, 0, 2553, 2554, 5, 333, 0, 0, 2554, 2555, 5, 342, 0, 0, 2555, 2556, 3, 1466, 733, 0, 2556, 2759, 1, 0, 0, 0, 2557, 2559, 5, 138, 0, 0, 2558, 2560, 3, 768, 384, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2562, 3, 1434, 717, 0, 2562, 2563, 5, 333, 0, 0, 2563, 2564, 3, 132, 66, 0, 2564, 2759, 1, 0, 0, 0, 2565, 2567, 5, 138, 0, 0, 2566, 2568, 3, 768, 384, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2570, 3, 1434, 717, 0, 2570, 2571, 5, 313, 0, 0, 2571, 2572, 3, 132, 66, 0, 2572, 2759, 1, 0, 0, 0, 2573, 2575, 5, 138, 0, 0, 2574, 2576, 3, 768, 384, 0, 2575, 2574, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2578, 3, 1434, 717, 0, 2578, 2579, 5, 333, 0, 0, 2579, 2580, 5, 345, 0, 0, 2580, 2581, 3, 1476, 738, 0, 2581, 2759, 1, 0, 0, 0, 2582, 2584, 5, 138, 0, 0, 2583, 2585, 3, 768, 384, 0, 2584, 2583, 1, 0, 0, 0, 2584, 2585, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2587, 3, 1434, 717, 0, 2587, 2588, 5, 133, 0, 0, 2588, 2589, 5, 438, 0, 0, 2589, 2590, 3, 224, 112, 0, 2590, 2591, 5, 36, 0, 0, 2591, 2593, 5, 219, 0, 0, 2592, 2594, 3, 312, 156, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2759, 1, 0, 0, 0, 2595, 2597, 5, 138, 0, 0, 2596, 2598, 3, 768, 384, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 3, 1434, 717, 0, 2600, 2601, 3, 140, 70, 0, 2601, 2759, 1, 0, 0, 0, 2602, 2604, 5, 138, 0, 0, 2603, 2605, 3, 768, 384, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 3, 1434, 717, 0, 2607, 2608, 5, 191, 0, 0, 2608, 2610, 5, 219, 0, 0, 2609, 2611, 3, 748, 374, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2759, 1, 0, 0, 0, 2612, 2614, 5, 191, 0, 0, 2613, 2615, 3, 768, 384, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 1, 0, 0, 0, 2616, 2618, 3, 748, 374, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2621, 3, 1434, 717, 0, 2620, 2622, 3, 124, 62, 0, 2621, 2620, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2759, 1, 0, 0, 0, 2623, 2625, 5, 138, 0, 0, 2624, 2626, 3, 768, 384, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 3, 1434, 717, 0, 2628, 2630, 3, 770, 385, 0, 2629, 2628, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 5, 360, 0, 0, 2632, 2634, 3, 1170, 585, 0, 2633, 2635, 3, 126, 63, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2637, 1, 0, 0, 0, 2636, 2638, 3, 128, 64, 0, 2637, 2636, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 2759, 1, 0, 0, 0, 2639, 2641, 5, 138, 0, 0, 2640, 2642, 3, 768, 384, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2644, 3, 1434, 717, 0, 2644, 2645, 3, 370, 185, 0, 2645, 2759, 1, 0, 0, 0, 2646, 2647, 5, 133, 0, 0, 2647, 2759, 3, 236, 118, 0, 2648, 2649, 5, 138, 0, 0, 2649, 2650, 5, 45, 0, 0, 2650, 2651, 3, 1438, 719, 0, 2651, 2652, 3, 474, 237, 0, 2652, 2759, 1, 0, 0, 0, 2653, 2654, 5, 372, 0, 0, 2654, 2655, 5, 45, 0, 0, 2655, 2759, 3, 1438, 719, 0, 2656, 2657, 5, 191, 0, 0, 2657, 2659, 5, 45, 0, 0, 2658, 2660, 3, 748, 374, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2663, 3, 1438, 719, 0, 2662, 2664, 3, 124, 62, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2759, 1, 0, 0, 0, 2665, 2666, 5, 333, 0, 0, 2666, 2667, 5, 379, 0, 0, 2667, 2759, 5, 277, 0, 0, 2668, 2669, 5, 158, 0, 0, 2669, 2670, 5, 80, 0, 0, 2670, 2759, 3, 1438, 719, 0, 2671, 2672, 5, 333, 0, 0, 2672, 2673, 5, 379, 0, 0, 2673, 2759, 5, 158, 0, 0, 2674, 2675, 5, 333, 0, 0, 2675, 2759, 5, 439, 0, 0, 2676, 2677, 5, 333, 0, 0, 2677, 2759, 5, 367, 0, 0, 2678, 2679, 5, 193, 0, 0, 2679, 2680, 5, 357, 0, 0, 2680, 2759, 3, 1438, 719, 0, 2681, 2682, 5, 193, 0, 0, 2682, 2683, 5, 139, 0, 0, 2683, 2684, 5, 357, 0, 0, 2684, 2759, 3, 1438, 719, 0, 2685, 2686, 5, 193, 0, 0, 2686, 2687, 5, 312, 0, 0, 2687, 2688, 5, 357, 0, 0, 2688, 2759, 3, 1438, 719, 0, 2689, 2690, 5, 193, 0, 0, 2690, 2691, 5, 357, 0, 0, 2691, 2759, 5, 30, 0, 0, 2692, 2693, 5, 193, 0, 0, 2693, 2694, 5, 357, 0, 0, 2694, 2759, 5, 99, 0, 0, 2695, 2696, 5, 186, 0, 0, 2696, 2697, 5, 357, 0, 0, 2697, 2759, 3, 1438, 719, 0, 2698, 2699, 5, 186, 0, 0, 2699, 2700, 5, 357, 0, 0, 2700, 2759, 5, 30, 0, 0, 2701, 2702, 5, 186, 0, 0, 2702, 2703, 5, 357, 0, 0, 2703, 2759, 5, 99, 0, 0, 2704, 2705, 5, 193, 0, 0, 2705, 2706, 5, 321, 0, 0, 2706, 2759, 3, 1438, 719, 0, 2707, 2708, 5, 193, 0, 0, 2708, 2709, 5, 139, 0, 0, 2709, 2710, 5, 321, 0, 0, 2710, 2759, 3, 1438, 719, 0, 2711, 2712, 5, 193, 0, 0, 2712, 2713, 5, 312, 0, 0, 2713, 2714, 5, 321, 0, 0, 2714, 2759, 3, 1438, 719, 0, 2715, 2716, 5, 186, 0, 0, 2716, 2717, 5, 321, 0, 0, 2717, 2759, 3, 1438, 719, 0, 2718, 2719, 5, 228, 0, 0, 2719, 2759, 3, 1414, 707, 0, 2720, 2721, 5, 269, 0, 0, 2721, 2722, 5, 228, 0, 0, 2722, 2759, 3, 1414, 707, 0, 2723, 2724, 5, 275, 0, 0, 2724, 2759, 3, 558, 279, 0, 2725, 2726, 5, 77, 0, 0, 2726, 2759, 5, 275, 0, 0, 2727, 2728, 5, 282, 0, 0, 2728, 2729, 5, 94, 0, 0, 2729, 2759, 3, 1472, 736, 0, 2730, 2731, 5, 333, 0, 0, 2731, 2732, 5, 351, 0, 0, 2732, 2759, 3, 1402, 701, 0, 2733, 2734, 5, 333, 0, 0, 2734, 2759, 3, 132, 66, 0, 2735, 2736, 5, 313, 0, 0, 2736, 2759, 3, 132, 66, 0, 2737, 2738, 5, 312, 0, 0, 2738, 2739, 5, 219, 0, 0, 2739, 2759, 3, 130, 65, 0, 2740, 2741, 5, 193, 0, 0, 2741, 2742, 5, 414, 0, 0, 2742, 2743, 5, 251, 0, 0, 2743, 2759, 5, 327, 0, 0, 2744, 2745, 5, 186, 0, 0, 2745, 2746, 5, 414, 0, 0, 2746, 2747, 5, 251, 0, 0, 2747, 2759, 5, 327, 0, 0, 2748, 2749, 5, 209, 0, 0, 2749, 2750, 5, 414, 0, 0, 2750, 2751, 5, 251, 0, 0, 2751, 2759, 5, 327, 0, 0, 2752, 2753, 5, 269, 0, 0, 2753, 2754, 5, 209, 0, 0, 2754, 2755, 5, 414, 0, 0, 2755, 2756, 5, 251, 0, 0, 2756, 2759, 5, 327, 0, 0, 2757, 2759, 3, 370, 185, 0, 2758, 2496, 1, 0, 0, 0, 2758, 2504, 1, 0, 0, 0, 2758, 2511, 1, 0, 0, 0, 2758, 2520, 1, 0, 0, 0, 2758, 2529, 1, 0, 0, 0, 2758, 2539, 1, 0, 0, 0, 2758, 2548, 1, 0, 0, 0, 2758, 2557, 1, 0, 0, 0, 2758, 2565, 1, 0, 0, 0, 2758, 2573, 1, 0, 0, 0, 2758, 2582, 1, 0, 0, 0, 2758, 2595, 1, 0, 0, 0, 2758, 2602, 1, 0, 0, 0, 2758, 2612, 1, 0, 0, 0, 2758, 2623, 1, 0, 0, 0, 2758, 2639, 1, 0, 0, 0, 2758, 2646, 1, 0, 0, 0, 2758, 2648, 1, 0, 0, 0, 2758, 2653, 1, 0, 0, 0, 2758, 2656, 1, 0, 0, 0, 2758, 2665, 1, 0, 0, 0, 2758, 2668, 1, 0, 0, 0, 2758, 2671, 1, 0, 0, 0, 2758, 2674, 1, 0, 0, 0, 2758, 2676, 1, 0, 0, 0, 2758, 2678, 1, 0, 0, 0, 2758, 2681, 1, 0, 0, 0, 2758, 2685, 1, 0, 0, 0, 2758, 2689, 1, 0, 0, 0, 2758, 2692, 1, 0, 0, 0, 2758, 2695, 1, 0, 0, 0, 2758, 2698, 1, 0, 0, 0, 2758, 2701, 1, 0, 0, 0, 2758, 2704, 1, 0, 0, 0, 2758, 2707, 1, 0, 0, 0, 2758, 2711, 1, 0, 0, 0, 2758, 2715, 1, 0, 0, 0, 2758, 2718, 1, 0, 0, 0, 2758, 2720, 1, 0, 0, 0, 2758, 2723, 1, 0, 0, 0, 2758, 2725, 1, 0, 0, 0, 2758, 2727, 1, 0, 0, 0, 2758, 2730, 1, 0, 0, 0, 2758, 2733, 1, 0, 0, 0, 2758, 2735, 1, 0, 0, 0, 2758, 2737, 1, 0, 0, 0, 2758, 2740, 1, 0, 0, 0, 2758, 2744, 1, 0, 0, 0, 2758, 2748, 1, 0, 0, 0, 2758, 2752, 1, 0, 0, 0, 2758, 2757, 1, 0, 0, 0, 2759, 121, 1, 0, 0, 0, 2760, 2761, 5, 333, 0, 0, 2761, 2762, 5, 53, 0, 0, 2762, 2766, 3, 1214, 607, 0, 2763, 2764, 5, 191, 0, 0, 2764, 2766, 5, 53, 0, 0, 2765, 2760, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 123, 1, 0, 0, 0, 2767, 2768, 7, 19, 0, 0, 2768, 125, 1, 0, 0, 0, 2769, 2770, 5, 43, 0, 0, 2770, 2771, 3, 558, 279, 0, 2771, 127, 1, 0, 0, 0, 2772, 2773, 5, 100, 0, 0, 2773, 2774, 3, 1214, 607, 0, 2774, 129, 1, 0, 0, 0, 2775, 2782, 5, 270, 0, 0, 2776, 2782, 5, 113, 0, 0, 2777, 2782, 5, 53, 0, 0, 2778, 2779, 5, 100, 0, 0, 2779, 2780, 5, 226, 0, 0, 2780, 2782, 3, 1438, 719, 0, 2781, 2775, 1, 0, 0, 0, 2781, 2776, 1, 0, 0, 0, 2781, 2777, 1, 0, 0, 0, 2781, 2778, 1, 0, 0, 0, 2782, 131, 1, 0, 0, 0, 2783, 2784, 5, 2, 0, 0, 2784, 2785, 3, 136, 68, 0, 2785, 2786, 5, 3, 0, 0, 2786, 133, 1, 0, 0, 0, 2787, 2788, 5, 105, 0, 0, 2788, 2789, 3, 132, 66, 0, 2789, 135, 1, 0, 0, 0, 2790, 2795, 3, 138, 69, 0, 2791, 2792, 5, 6, 0, 0, 2792, 2794, 3, 138, 69, 0, 2793, 2791, 1, 0, 0, 0, 2794, 2797, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 137, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2798, 2807, 3, 1492, 746, 0, 2799, 2800, 5, 10, 0, 0, 2800, 2808, 3, 500, 250, 0, 2801, 2802, 5, 11, 0, 0, 2802, 2805, 3, 1492, 746, 0, 2803, 2804, 5, 10, 0, 0, 2804, 2806, 3, 500, 250, 0, 2805, 2803, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 1, 0, 0, 0, 2807, 2799, 1, 0, 0, 0, 2807, 2801, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 139, 1, 0, 0, 0, 2809, 2811, 3, 142, 71, 0, 2810, 2809, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2810, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 141, 1, 0, 0, 0, 2814, 2819, 5, 314, 0, 0, 2815, 2817, 3, 14, 7, 0, 2816, 2815, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2820, 3, 320, 160, 0, 2819, 2816, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2828, 1, 0, 0, 0, 2821, 2825, 5, 333, 0, 0, 2822, 2826, 3, 316, 158, 0, 2823, 2824, 5, 438, 0, 0, 2824, 2826, 3, 224, 112, 0, 2825, 2822, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2826, 2828, 1, 0, 0, 0, 2827, 2814, 1, 0, 0, 0, 2827, 2821, 1, 0, 0, 0, 2828, 143, 1, 0, 0, 0, 2829, 2830, 5, 62, 0, 0, 2830, 2831, 5, 422, 0, 0, 2831, 2832, 5, 105, 0, 0, 2832, 2833, 5, 2, 0, 0, 2833, 2834, 3, 148, 74, 0, 2834, 2835, 5, 3, 0, 0, 2835, 2856, 1, 0, 0, 0, 2836, 2837, 5, 62, 0, 0, 2837, 2838, 5, 422, 0, 0, 2838, 2839, 5, 68, 0, 0, 2839, 2840, 5, 2, 0, 0, 2840, 2841, 3, 1330, 665, 0, 2841, 2842, 5, 3, 0, 0, 2842, 2856, 1, 0, 0, 0, 2843, 2844, 5, 62, 0, 0, 2844, 2845, 5, 422, 0, 0, 2845, 2846, 5, 64, 0, 0, 2846, 2847, 5, 2, 0, 0, 2847, 2848, 3, 1330, 665, 0, 2848, 2849, 5, 3, 0, 0, 2849, 2850, 5, 94, 0, 0, 2850, 2851, 5, 2, 0, 0, 2851, 2852, 3, 1330, 665, 0, 2852, 2853, 5, 3, 0, 0, 2853, 2856, 1, 0, 0, 0, 2854, 2856, 5, 53, 0, 0, 2855, 2829, 1, 0, 0, 0, 2855, 2836, 1, 0, 0, 0, 2855, 2843, 1, 0, 0, 0, 2855, 2854, 1, 0, 0, 0, 2856, 145, 1, 0, 0, 0, 2857, 2858, 3, 1490, 745, 0, 2858, 2859, 3, 1458, 729, 0, 2859, 147, 1, 0, 0, 0, 2860, 2865, 3, 146, 73, 0, 2861, 2862, 5, 6, 0, 0, 2862, 2864, 3, 146, 73, 0, 2863, 2861, 1, 0, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 149, 1, 0, 0, 0, 2867, 2865, 1, 0, 0, 0, 2868, 2869, 5, 138, 0, 0, 2869, 2870, 5, 360, 0, 0, 2870, 2871, 3, 558, 279, 0, 2871, 2872, 3, 152, 76, 0, 2872, 151, 1, 0, 0, 0, 2873, 2878, 3, 154, 77, 0, 2874, 2875, 5, 6, 0, 0, 2875, 2877, 3, 154, 77, 0, 2876, 2874, 1, 0, 0, 0, 2877, 2880, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 153, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2881, 2882, 5, 133, 0, 0, 2882, 2883, 5, 143, 0, 0, 2883, 2885, 3, 1154, 577, 0, 2884, 2886, 3, 124, 62, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2911, 1, 0, 0, 0, 2887, 2888, 5, 191, 0, 0, 2888, 2890, 5, 143, 0, 0, 2889, 2891, 3, 748, 374, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 3, 1476, 738, 0, 2893, 2895, 3, 124, 62, 0, 2894, 2893, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2911, 1, 0, 0, 0, 2896, 2897, 5, 138, 0, 0, 2897, 2898, 5, 143, 0, 0, 2898, 2900, 3, 1476, 738, 0, 2899, 2901, 3, 770, 385, 0, 2900, 2899, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2903, 5, 360, 0, 0, 2903, 2905, 3, 1170, 585, 0, 2904, 2906, 3, 126, 63, 0, 2905, 2904, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2908, 1, 0, 0, 0, 2907, 2909, 3, 124, 62, 0, 2908, 2907, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2881, 1, 0, 0, 0, 2910, 2887, 1, 0, 0, 0, 2910, 2896, 1, 0, 0, 0, 2911, 155, 1, 0, 0, 0, 2912, 2915, 5, 157, 0, 0, 2913, 2916, 3, 996, 498, 0, 2914, 2916, 5, 30, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2914, 1, 0, 0, 0, 2916, 157, 1, 0, 0, 0, 2917, 2919, 5, 169, 0, 0, 2918, 2920, 3, 172, 86, 0, 2919, 2918, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 3, 1408, 704, 0, 2922, 2924, 3, 242, 121, 0, 2923, 2922, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2927, 3, 160, 80, 0, 2926, 2928, 3, 162, 81, 0, 2927, 2926, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 3, 164, 82, 0, 2930, 2932, 3, 174, 87, 0, 2931, 2930, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2934, 1, 0, 0, 0, 2933, 2935, 3, 14, 7, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2938, 3, 166, 83, 0, 2937, 2939, 3, 1146, 573, 0, 2938, 2937, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2955, 1, 0, 0, 0, 2940, 2941, 5, 169, 0, 0, 2941, 2942, 5, 2, 0, 0, 2942, 2943, 3, 944, 472, 0, 2943, 2944, 5, 3, 0, 0, 2944, 2946, 5, 94, 0, 0, 2945, 2947, 3, 162, 81, 0, 2946, 2945, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2950, 3, 164, 82, 0, 2949, 2951, 3, 14, 7, 0, 2950, 2949, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2953, 3, 166, 83, 0, 2953, 2955, 1, 0, 0, 0, 2954, 2917, 1, 0, 0, 0, 2954, 2940, 1, 0, 0, 0, 2955, 159, 1, 0, 0, 0, 2956, 2957, 7, 20, 0, 0, 2957, 161, 1, 0, 0, 0, 2958, 2959, 5, 297, 0, 0, 2959, 163, 1, 0, 0, 0, 2960, 2964, 3, 1460, 730, 0, 2961, 2964, 5, 343, 0, 0, 2962, 2964, 5, 344, 0, 0, 2963, 2960, 1, 0, 0, 0, 2963, 2961, 1, 0, 0, 0, 2963, 2962, 1, 0, 0, 0, 2964, 165, 1, 0, 0, 0, 2965, 2971, 3, 168, 84, 0, 2966, 2967, 5, 2, 0, 0, 2967, 2968, 3, 178, 89, 0, 2968, 2969, 5, 3, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2965, 1, 0, 0, 0, 2970, 2966, 1, 0, 0, 0, 2971, 167, 1, 0, 0, 0, 2972, 2974, 3, 170, 85, 0, 2973, 2972, 1, 0, 0, 0, 2974, 2977, 1, 0, 0, 0, 2975, 2973, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 169, 1, 0, 0, 0, 2977, 2975, 1, 0, 0, 0, 2978, 3018, 5, 107, 0, 0, 2979, 3018, 5, 112, 0, 0, 2980, 2982, 5, 183, 0, 0, 2981, 2983, 3, 874, 437, 0, 2982, 2981, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 3018, 3, 1460, 730, 0, 2985, 2987, 5, 78, 0, 0, 2986, 2988, 3, 874, 437, 0, 2987, 2986, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 3018, 3, 1460, 730, 0, 2990, 3018, 5, 171, 0, 0, 2991, 3018, 5, 216, 0, 0, 2992, 2994, 5, 298, 0, 0, 2993, 2995, 3, 874, 437, 0, 2994, 2993, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2996, 1, 0, 0, 0, 2996, 3018, 3, 1460, 730, 0, 2997, 2999, 5, 197, 0, 0, 2998, 3000, 3, 874, 437, 0, 2999, 2998, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3018, 3, 1460, 730, 0, 3002, 3003, 5, 209, 0, 0, 3003, 3004, 5, 298, 0, 0, 3004, 3018, 3, 244, 122, 0, 3005, 3006, 5, 209, 0, 0, 3006, 3007, 5, 298, 0, 0, 3007, 3018, 5, 9, 0, 0, 3008, 3009, 5, 209, 0, 0, 3009, 3010, 5, 77, 0, 0, 3010, 3011, 5, 78, 0, 0, 3011, 3018, 3, 244, 122, 0, 3012, 3013, 5, 209, 0, 0, 3013, 3014, 5, 78, 0, 0, 3014, 3018, 3, 244, 122, 0, 3015, 3016, 5, 194, 0, 0, 3016, 3018, 3, 1460, 730, 0, 3017, 2978, 1, 0, 0, 0, 3017, 2979, 1, 0, 0, 0, 3017, 2980, 1, 0, 0, 0, 3017, 2985, 1, 0, 0, 0, 3017, 2990, 1, 0, 0, 0, 3017, 2991, 1, 0, 0, 0, 3017, 2992, 1, 0, 0, 0, 3017, 2997, 1, 0, 0, 0, 3017, 3002, 1, 0, 0, 0, 3017, 3005, 1, 0, 0, 0, 3017, 3008, 1, 0, 0, 0, 3017, 3012, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3018, 171, 1, 0, 0, 0, 3019, 3020, 5, 107, 0, 0, 3020, 173, 1, 0, 0, 0, 3021, 3023, 3, 176, 88, 0, 3022, 3021, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 5, 184, 0, 0, 3025, 3026, 3, 1460, 730, 0, 3026, 175, 1, 0, 0, 0, 3027, 3028, 5, 100, 0, 0, 3028, 177, 1, 0, 0, 0, 3029, 3034, 3, 180, 90, 0, 3030, 3031, 5, 6, 0, 0, 3031, 3033, 3, 180, 90, 0, 3032, 3030, 1, 0, 0, 0, 3033, 3036, 1, 0, 0, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 179, 1, 0, 0, 0, 3036, 3034, 1, 0, 0, 0, 3037, 3039, 3, 1492, 746, 0, 3038, 3040, 3, 182, 91, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 181, 1, 0, 0, 0, 3041, 3049, 3, 72, 36, 0, 3042, 3049, 3, 320, 160, 0, 3043, 3049, 5, 9, 0, 0, 3044, 3045, 5, 2, 0, 0, 3045, 3046, 3, 184, 92, 0, 3046, 3047, 5, 3, 0, 0, 3047, 3049, 1, 0, 0, 0, 3048, 3041, 1, 0, 0, 0, 3048, 3042, 1, 0, 0, 0, 3048, 3043, 1, 0, 0, 0, 3048, 3044, 1, 0, 0, 0, 3049, 183, 1, 0, 0, 0, 3050, 3055, 3, 186, 93, 0, 3051, 3052, 5, 6, 0, 0, 3052, 3054, 3, 186, 93, 0, 3053, 3051, 1, 0, 0, 0, 3054, 3057, 1, 0, 0, 0, 3055, 3053, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 185, 1, 0, 0, 0, 3057, 3055, 1, 0, 0, 0, 3058, 3059, 3, 70, 35, 0, 3059, 187, 1, 0, 0, 0, 3060, 3062, 5, 46, 0, 0, 3061, 3063, 3, 190, 95, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3066, 5, 92, 0, 0, 3065, 3067, 3, 514, 257, 0, 3066, 3065, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3134, 3, 1406, 703, 0, 3069, 3071, 5, 2, 0, 0, 3070, 3072, 3, 192, 96, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3075, 5, 3, 0, 0, 3074, 3076, 3, 264, 132, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3079, 3, 266, 133, 0, 3078, 3077, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3081, 1, 0, 0, 0, 3080, 3082, 3, 274, 137, 0, 3081, 3080, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3084, 1, 0, 0, 0, 3083, 3085, 3, 276, 138, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3087, 1, 0, 0, 0, 3086, 3088, 3, 278, 139, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3091, 3, 280, 140, 0, 3090, 3089, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3135, 1, 0, 0, 0, 3092, 3093, 5, 275, 0, 0, 3093, 3095, 3, 558, 279, 0, 3094, 3096, 3, 196, 98, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3098, 1, 0, 0, 0, 3097, 3099, 3, 266, 133, 0, 3098, 3097, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3101, 1, 0, 0, 0, 3100, 3102, 3, 274, 137, 0, 3101, 3100, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3104, 1, 0, 0, 0, 3103, 3105, 3, 276, 138, 0, 3104, 3103, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3107, 1, 0, 0, 0, 3106, 3108, 3, 278, 139, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3110, 1, 0, 0, 0, 3109, 3111, 3, 280, 140, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3135, 1, 0, 0, 0, 3112, 3113, 5, 285, 0, 0, 3113, 3114, 5, 275, 0, 0, 3114, 3116, 3, 1414, 707, 0, 3115, 3117, 3, 196, 98, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3120, 3, 144, 72, 0, 3119, 3121, 3, 266, 133, 0, 3120, 3119, 1, 0, 0, 0, 3120, 3121, 1, 0, 0, 0, 3121, 3123, 1, 0, 0, 0, 3122, 3124, 3, 274, 137, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3126, 1, 0, 0, 0, 3125, 3127, 3, 276, 138, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3129, 1, 0, 0, 0, 3128, 3130, 3, 278, 139, 0, 3129, 3128, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3132, 1, 0, 0, 0, 3131, 3133, 3, 280, 140, 0, 3132, 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3135, 1, 0, 0, 0, 3134, 3069, 1, 0, 0, 0, 3134, 3092, 1, 0, 0, 0, 3134, 3112, 1, 0, 0, 0, 3135, 189, 1, 0, 0, 0, 3136, 3144, 5, 354, 0, 0, 3137, 3144, 5, 352, 0, 0, 3138, 3139, 5, 254, 0, 0, 3139, 3144, 7, 21, 0, 0, 3140, 3141, 5, 213, 0, 0, 3141, 3144, 7, 21, 0, 0, 3142, 3144, 5, 367, 0, 0, 3143, 3136, 1, 0, 0, 0, 3143, 3137, 1, 0, 0, 0, 3143, 3138, 1, 0, 0, 0, 3143, 3140, 1, 0, 0, 0, 3143, 3142, 1, 0, 0, 0, 3144, 191, 1, 0, 0, 0, 3145, 3146, 3, 198, 99, 0, 3146, 193, 1, 0, 0, 0, 3147, 3148, 3, 198, 99, 0, 3148, 195, 1, 0, 0, 0, 3149, 3150, 5, 2, 0, 0, 3150, 3151, 3, 200, 100, 0, 3151, 3152, 5, 3, 0, 0, 3152, 197, 1, 0, 0, 0, 3153, 3158, 3, 202, 101, 0, 3154, 3155, 5, 6, 0, 0, 3155, 3157, 3, 202, 101, 0, 3156, 3154, 1, 0, 0, 0, 3157, 3160, 1, 0, 0, 0, 3158, 3156, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 199, 1, 0, 0, 0, 3160, 3158, 1, 0, 0, 0, 3161, 3166, 3, 204, 102, 0, 3162, 3163, 5, 6, 0, 0, 3163, 3165, 3, 204, 102, 0, 3164, 3162, 1, 0, 0, 0, 3165, 3168, 1, 0, 0, 0, 3166, 3164, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 201, 1, 0, 0, 0, 3168, 3166, 1, 0, 0, 0, 3169, 3173, 3, 208, 104, 0, 3170, 3173, 3, 230, 115, 0, 3171, 3173, 3, 236, 118, 0, 3172, 3169, 1, 0, 0, 0, 3172, 3170, 1, 0, 0, 0, 3172, 3171, 1, 0, 0, 0, 3173, 203, 1, 0, 0, 0, 3174, 3177, 3, 214, 107, 0, 3175, 3177, 3, 236, 118, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3175, 1, 0, 0, 0, 3177, 205, 1, 0, 0, 0, 3178, 3179, 3, 1434, 717, 0, 3179, 3181, 3, 1170, 585, 0, 3180, 3182, 3, 366, 183, 0, 3181, 3180, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3184, 1, 0, 0, 0, 3183, 3185, 3, 212, 106, 0, 3184, 3183, 1, 0, 0, 0, 3184, 3185, 1, 0, 0, 0, 3185, 3187, 1, 0, 0, 0, 3186, 3188, 3, 210, 105, 0, 3187, 3186, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3191, 1, 0, 0, 0, 3189, 3190, 5, 43, 0, 0, 3190, 3192, 3, 558, 279, 0, 3191, 3189, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 3195, 1, 0, 0, 0, 3193, 3194, 5, 105, 0, 0, 3194, 3196, 5, 280, 0, 0, 3195, 3193, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3198, 3, 216, 108, 0, 3198, 207, 1, 0, 0, 0, 3199, 3200, 3, 1434, 717, 0, 3200, 3202, 3, 1170, 585, 0, 3201, 3203, 3, 366, 183, 0, 3202, 3201, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3205, 1, 0, 0, 0, 3204, 3206, 3, 212, 106, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3208, 1, 0, 0, 0, 3207, 3209, 3, 210, 105, 0, 3208, 3207, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3212, 1, 0, 0, 0, 3210, 3211, 5, 43, 0, 0, 3211, 3213, 3, 558, 279, 0, 3212, 3210, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3216, 1, 0, 0, 0, 3214, 3215, 5, 105, 0, 0, 3215, 3217, 5, 280, 0, 0, 3216, 3214, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 3, 216, 108, 0, 3219, 209, 1, 0, 0, 0, 3220, 3221, 5, 543, 0, 0, 3221, 3222, 3, 1476, 738, 0, 3222, 211, 1, 0, 0, 0, 3223, 3230, 5, 345, 0, 0, 3224, 3231, 5, 544, 0, 0, 3225, 3231, 5, 205, 0, 0, 3226, 3231, 5, 545, 0, 0, 3227, 3231, 5, 546, 0, 0, 3228, 3231, 5, 53, 0, 0, 3229, 3231, 3, 1476, 738, 0, 3230, 3224, 1, 0, 0, 0, 3230, 3225, 1, 0, 0, 0, 3230, 3226, 1, 0, 0, 0, 3230, 3227, 1, 0, 0, 0, 3230, 3228, 1, 0, 0, 0, 3230, 3229, 1, 0, 0, 0, 3231, 213, 1, 0, 0, 0, 3232, 3235, 3, 1434, 717, 0, 3233, 3234, 5, 105, 0, 0, 3234, 3236, 5, 280, 0, 0, 3235, 3233, 1, 0, 0, 0, 3235, 3236, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3238, 3, 216, 108, 0, 3238, 215, 1, 0, 0, 0, 3239, 3241, 3, 218, 109, 0, 3240, 3239, 1, 0, 0, 0, 3241, 3244, 1, 0, 0, 0, 3242, 3240, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 217, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3245, 3246, 5, 45, 0, 0, 3246, 3248, 3, 1438, 719, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3251, 3, 220, 110, 0, 3250, 3252, 3, 226, 113, 0, 3251, 3250, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3254, 1, 0, 0, 0, 3253, 3255, 3, 228, 114, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3264, 1, 0, 0, 0, 3256, 3258, 3, 220, 110, 0, 3257, 3259, 3, 226, 113, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 228, 114, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3247, 1, 0, 0, 0, 3263, 3256, 1, 0, 0, 0, 3264, 219, 1, 0, 0, 0, 3265, 3266, 5, 77, 0, 0, 3266, 3324, 5, 78, 0, 0, 3267, 3324, 5, 78, 0, 0, 3268, 3270, 5, 98, 0, 0, 3269, 3271, 3, 710, 355, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3273, 1, 0, 0, 0, 3272, 3274, 3, 284, 142, 0, 3273, 3272, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3324, 1, 0, 0, 0, 3275, 3277, 5, 98, 0, 0, 3276, 3278, 3, 222, 111, 0, 3277, 3276, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3324, 3, 282, 141, 0, 3280, 3281, 5, 85, 0, 0, 3281, 3283, 5, 245, 0, 0, 3282, 3284, 3, 710, 355, 0, 3283, 3282, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3286, 1, 0, 0, 0, 3285, 3287, 3, 284, 142, 0, 3286, 3285, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3324, 1, 0, 0, 0, 3288, 3289, 5, 42, 0, 0, 3289, 3290, 5, 2, 0, 0, 3290, 3291, 3, 1214, 607, 0, 3291, 3293, 5, 3, 0, 0, 3292, 3294, 3, 240, 120, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3324, 1, 0, 0, 0, 3295, 3296, 5, 53, 0, 0, 3296, 3324, 3, 1254, 627, 0, 3297, 3298, 5, 438, 0, 0, 3298, 3299, 3, 224, 112, 0, 3299, 3309, 5, 36, 0, 0, 3300, 3302, 5, 219, 0, 0, 3301, 3303, 3, 312, 156, 0, 3302, 3301, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3310, 1, 0, 0, 0, 3304, 3305, 5, 2, 0, 0, 3305, 3306, 3, 1214, 607, 0, 3306, 3307, 5, 3, 0, 0, 3307, 3308, 5, 440, 0, 0, 3308, 3310, 1, 0, 0, 0, 3309, 3300, 1, 0, 0, 0, 3309, 3304, 1, 0, 0, 0, 3310, 3324, 1, 0, 0, 0, 3311, 3312, 5, 86, 0, 0, 3312, 3314, 3, 1414, 707, 0, 3313, 3315, 3, 242, 121, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 248, 124, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 256, 128, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3324, 3, 646, 323, 0, 3323, 3265, 1, 0, 0, 0, 3323, 3267, 1, 0, 0, 0, 3323, 3268, 1, 0, 0, 0, 3323, 3275, 1, 0, 0, 0, 3323, 3280, 1, 0, 0, 0, 3323, 3288, 1, 0, 0, 0, 3323, 3295, 1, 0, 0, 0, 3323, 3297, 1, 0, 0, 0, 3323, 3311, 1, 0, 0, 0, 3323, 3322, 1, 0, 0, 0, 3324, 221, 1, 0, 0, 0, 3325, 3327, 5, 273, 0, 0, 3326, 3328, 5, 77, 0, 0, 3327, 3326, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 5, 56, 0, 0, 3330, 223, 1, 0, 0, 0, 3331, 3335, 5, 139, 0, 0, 3332, 3333, 5, 147, 0, 0, 3333, 3335, 5, 53, 0, 0, 3334, 3331, 1, 0, 0, 0, 3334, 3332, 1, 0, 0, 0, 3335, 225, 1, 0, 0, 0, 3336, 3340, 5, 54, 0, 0, 3337, 3338, 5, 77, 0, 0, 3338, 3340, 5, 54, 0, 0, 3339, 3336, 1, 0, 0, 0, 3339, 3337, 1, 0, 0, 0, 3340, 227, 1, 0, 0, 0, 3341, 3342, 5, 69, 0, 0, 3342, 3343, 7, 16, 0, 0, 3343, 229, 1, 0, 0, 0, 3344, 3345, 5, 120, 0, 0, 3345, 3346, 3, 1414, 707, 0, 3346, 3347, 3, 232, 116, 0, 3347, 231, 1, 0, 0, 0, 3348, 3349, 7, 22, 0, 0, 3349, 3351, 3, 234, 117, 0, 3350, 3348, 1, 0, 0, 0, 3351, 3354, 1, 0, 0, 0, 3352, 3350, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 233, 1, 0, 0, 0, 3354, 3352, 1, 0, 0, 0, 3355, 3356, 7, 23, 0, 0, 3356, 235, 1, 0, 0, 0, 3357, 3358, 5, 45, 0, 0, 3358, 3359, 3, 1438, 719, 0, 3359, 3360, 3, 238, 119, 0, 3360, 3363, 1, 0, 0, 0, 3361, 3363, 3, 238, 119, 0, 3362, 3357, 1, 0, 0, 0, 3362, 3361, 1, 0, 0, 0, 3363, 237, 1, 0, 0, 0, 3364, 3365, 5, 42, 0, 0, 3365, 3366, 5, 2, 0, 0, 3366, 3367, 3, 1214, 607, 0, 3367, 3368, 5, 3, 0, 0, 3368, 3369, 3, 474, 237, 0, 3369, 3451, 1, 0, 0, 0, 3370, 3388, 5, 98, 0, 0, 3371, 3372, 5, 2, 0, 0, 3372, 3373, 3, 244, 122, 0, 3373, 3375, 5, 3, 0, 0, 3374, 3376, 3, 246, 123, 0, 3375, 3374, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3378, 1, 0, 0, 0, 3377, 3379, 3, 710, 355, 0, 3378, 3377, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3381, 1, 0, 0, 0, 3380, 3382, 3, 284, 142, 0, 3381, 3380, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3384, 3, 474, 237, 0, 3384, 3389, 1, 0, 0, 0, 3385, 3386, 3, 286, 143, 0, 3386, 3387, 3, 474, 237, 0, 3387, 3389, 1, 0, 0, 0, 3388, 3371, 1, 0, 0, 0, 3388, 3385, 1, 0, 0, 0, 3389, 3451, 1, 0, 0, 0, 3390, 3391, 5, 85, 0, 0, 3391, 3409, 5, 245, 0, 0, 3392, 3393, 5, 2, 0, 0, 3393, 3394, 3, 244, 122, 0, 3394, 3396, 5, 3, 0, 0, 3395, 3397, 3, 246, 123, 0, 3396, 3395, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3399, 1, 0, 0, 0, 3398, 3400, 3, 710, 355, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3402, 1, 0, 0, 0, 3401, 3403, 3, 284, 142, 0, 3402, 3401, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3405, 3, 474, 237, 0, 3405, 3410, 1, 0, 0, 0, 3406, 3407, 3, 286, 143, 0, 3407, 3408, 3, 474, 237, 0, 3408, 3410, 1, 0, 0, 0, 3409, 3392, 1, 0, 0, 0, 3409, 3406, 1, 0, 0, 0, 3410, 3451, 1, 0, 0, 0, 3411, 3413, 5, 199, 0, 0, 3412, 3414, 3, 634, 317, 0, 3413, 3412, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 5, 2, 0, 0, 3416, 3417, 3, 250, 125, 0, 3417, 3419, 5, 3, 0, 0, 3418, 3420, 3, 246, 123, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3423, 3, 710, 355, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3425, 1, 0, 0, 0, 3424, 3426, 3, 284, 142, 0, 3425, 3424, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3428, 1, 0, 0, 0, 3427, 3429, 3, 254, 127, 0, 3428, 3427, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 3, 474, 237, 0, 3431, 3451, 1, 0, 0, 0, 3432, 3433, 5, 63, 0, 0, 3433, 3434, 5, 245, 0, 0, 3434, 3435, 5, 2, 0, 0, 3435, 3436, 3, 244, 122, 0, 3436, 3437, 5, 3, 0, 0, 3437, 3438, 5, 86, 0, 0, 3438, 3440, 3, 1414, 707, 0, 3439, 3441, 3, 242, 121, 0, 3440, 3439, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3443, 1, 0, 0, 0, 3442, 3444, 3, 248, 124, 0, 3443, 3442, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3447, 3, 256, 128, 0, 3446, 3445, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3449, 3, 474, 237, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3364, 1, 0, 0, 0, 3450, 3370, 1, 0, 0, 0, 3450, 3390, 1, 0, 0, 0, 3450, 3411, 1, 0, 0, 0, 3450, 3432, 1, 0, 0, 0, 3451, 239, 1, 0, 0, 0, 3452, 3453, 5, 269, 0, 0, 3453, 3454, 5, 228, 0, 0, 3454, 241, 1, 0, 0, 0, 3455, 3456, 5, 2, 0, 0, 3456, 3457, 3, 244, 122, 0, 3457, 3458, 5, 3, 0, 0, 3458, 243, 1, 0, 0, 0, 3459, 3464, 3, 1434, 717, 0, 3460, 3461, 5, 6, 0, 0, 3461, 3463, 3, 1434, 717, 0, 3462, 3460, 1, 0, 0, 0, 3463, 3466, 1, 0, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 245, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3467, 3468, 5, 441, 0, 0, 3468, 3469, 5, 2, 0, 0, 3469, 3470, 3, 244, 122, 0, 3470, 3471, 5, 3, 0, 0, 3471, 247, 1, 0, 0, 0, 3472, 3473, 5, 258, 0, 0, 3473, 3474, 7, 24, 0, 0, 3474, 249, 1, 0, 0, 0, 3475, 3480, 3, 252, 126, 0, 3476, 3477, 5, 6, 0, 0, 3477, 3479, 3, 252, 126, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3482, 1, 0, 0, 0, 3480, 3478, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 251, 1, 0, 0, 0, 3482, 3480, 1, 0, 0, 0, 3483, 3484, 3, 640, 320, 0, 3484, 3491, 5, 105, 0, 0, 3485, 3492, 3, 732, 366, 0, 3486, 3487, 5, 278, 0, 0, 3487, 3488, 5, 2, 0, 0, 3488, 3489, 3, 732, 366, 0, 3489, 3490, 5, 3, 0, 0, 3490, 3492, 1, 0, 0, 0, 3491, 3485, 1, 0, 0, 0, 3491, 3486, 1, 0, 0, 0, 3492, 253, 1, 0, 0, 0, 3493, 3494, 5, 103, 0, 0, 3494, 3495, 5, 2, 0, 0, 3495, 3496, 3, 1214, 607, 0, 3496, 3497, 5, 3, 0, 0, 3497, 255, 1, 0, 0, 0, 3498, 3507, 3, 258, 129, 0, 3499, 3507, 3, 260, 130, 0, 3500, 3501, 3, 258, 129, 0, 3501, 3502, 3, 260, 130, 0, 3502, 3507, 1, 0, 0, 0, 3503, 3504, 3, 260, 130, 0, 3504, 3505, 3, 258, 129, 0, 3505, 3507, 1, 0, 0, 0, 3506, 3498, 1, 0, 0, 0, 3506, 3499, 1, 0, 0, 0, 3506, 3500, 1, 0, 0, 0, 3506, 3503, 1, 0, 0, 0, 3507, 257, 1, 0, 0, 0, 3508, 3509, 5, 80, 0, 0, 3509, 3510, 5, 369, 0, 0, 3510, 3511, 3, 262, 131, 0, 3511, 259, 1, 0, 0, 0, 3512, 3513, 5, 80, 0, 0, 3513, 3514, 5, 182, 0, 0, 3514, 3515, 3, 262, 131, 0, 3515, 261, 1, 0, 0, 0, 3516, 3517, 5, 269, 0, 0, 3517, 3526, 5, 132, 0, 0, 3518, 3526, 5, 315, 0, 0, 3519, 3526, 5, 150, 0, 0, 3520, 3521, 5, 333, 0, 0, 3521, 3523, 7, 25, 0, 0, 3522, 3524, 3, 244, 122, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3526, 1, 0, 0, 0, 3525, 3516, 1, 0, 0, 0, 3525, 3518, 1, 0, 0, 0, 3525, 3519, 1, 0, 0, 0, 3525, 3520, 1, 0, 0, 0, 3526, 263, 1, 0, 0, 0, 3527, 3528, 5, 238, 0, 0, 3528, 3529, 5, 2, 0, 0, 3529, 3530, 3, 1392, 696, 0, 3530, 3531, 5, 3, 0, 0, 3531, 265, 1, 0, 0, 0, 3532, 3533, 3, 268, 134, 0, 3533, 267, 1, 0, 0, 0, 3534, 3535, 5, 285, 0, 0, 3535, 3536, 5, 147, 0, 0, 3536, 3537, 3, 1476, 738, 0, 3537, 3538, 5, 2, 0, 0, 3538, 3539, 3, 270, 135, 0, 3539, 3540, 5, 3, 0, 0, 3540, 269, 1, 0, 0, 0, 3541, 3546, 3, 272, 136, 0, 3542, 3543, 5, 6, 0, 0, 3543, 3545, 3, 272, 136, 0, 3544, 3542, 1, 0, 0, 0, 3545, 3548, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 271, 1, 0, 0, 0, 3548, 3546, 1, 0, 0, 0, 3549, 3551, 3, 1434, 717, 0, 3550, 3552, 3, 646, 323, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3554, 1, 0, 0, 0, 3553, 3555, 3, 648, 324, 0, 3554, 3553, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3573, 1, 0, 0, 0, 3556, 3558, 3, 1264, 632, 0, 3557, 3559, 3, 646, 323, 0, 3558, 3557, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3562, 3, 648, 324, 0, 3561, 3560, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3573, 1, 0, 0, 0, 3563, 3564, 5, 2, 0, 0, 3564, 3565, 3, 1214, 607, 0, 3565, 3567, 5, 3, 0, 0, 3566, 3568, 3, 646, 323, 0, 3567, 3566, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3571, 3, 648, 324, 0, 3570, 3569, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3549, 1, 0, 0, 0, 3572, 3556, 1, 0, 0, 0, 3572, 3563, 1, 0, 0, 0, 3573, 273, 1, 0, 0, 0, 3574, 3575, 5, 100, 0, 0, 3575, 3576, 3, 1438, 719, 0, 3576, 275, 1, 0, 0, 0, 3577, 3578, 5, 105, 0, 0, 3578, 3584, 3, 132, 66, 0, 3579, 3580, 5, 379, 0, 0, 3580, 3584, 5, 277, 0, 0, 3581, 3582, 5, 105, 0, 0, 3582, 3584, 5, 277, 0, 0, 3583, 3577, 1, 0, 0, 0, 3583, 3579, 1, 0, 0, 0, 3583, 3581, 1, 0, 0, 0, 3584, 277, 1, 0, 0, 0, 3585, 3586, 5, 80, 0, 0, 3586, 3592, 5, 161, 0, 0, 3587, 3593, 5, 191, 0, 0, 3588, 3589, 5, 182, 0, 0, 3589, 3593, 5, 320, 0, 0, 3590, 3591, 5, 292, 0, 0, 3591, 3593, 5, 320, 0, 0, 3592, 3587, 1, 0, 0, 0, 3592, 3588, 1, 0, 0, 0, 3592, 3590, 1, 0, 0, 0, 3593, 279, 1, 0, 0, 0, 3594, 3595, 5, 351, 0, 0, 3595, 3596, 3, 1404, 702, 0, 3596, 281, 1, 0, 0, 0, 3597, 3599, 3, 642, 321, 0, 3598, 3597, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 1, 0, 0, 0, 3600, 3602, 3, 1016, 508, 0, 3601, 3600, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 1, 0, 0, 0, 3603, 3605, 3, 284, 142, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 283, 1, 0, 0, 0, 3606, 3607, 5, 100, 0, 0, 3607, 3608, 5, 226, 0, 0, 3608, 3609, 5, 351, 0, 0, 3609, 3610, 3, 1404, 702, 0, 3610, 285, 1, 0, 0, 0, 3611, 3612, 5, 100, 0, 0, 3612, 3613, 5, 226, 0, 0, 3613, 3614, 3, 1438, 719, 0, 3614, 287, 1, 0, 0, 0, 3615, 3616, 5, 46, 0, 0, 3616, 3621, 5, 342, 0, 0, 3617, 3619, 3, 514, 257, 0, 3618, 3617, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3622, 3, 558, 279, 0, 3621, 3618, 1, 0, 0, 0, 3621, 3622, 1, 0, 0, 0, 3622, 3624, 1, 0, 0, 0, 3623, 3625, 3, 920, 460, 0, 3624, 3623, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3626, 1, 0, 0, 0, 3626, 3629, 5, 80, 0, 0, 3627, 3630, 3, 1334, 667, 0, 3628, 3630, 3, 1330, 665, 0, 3629, 3627, 1, 0, 0, 0, 3629, 3628, 1, 0, 0, 0, 3630, 3631, 1, 0, 0, 0, 3631, 3632, 5, 64, 0, 0, 3632, 3633, 3, 1106, 553, 0, 3633, 289, 1, 0, 0, 0, 3634, 3635, 5, 138, 0, 0, 3635, 3637, 5, 342, 0, 0, 3636, 3638, 3, 748, 374, 0, 3637, 3636, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 3639, 1, 0, 0, 0, 3639, 3640, 3, 558, 279, 0, 3640, 3641, 5, 333, 0, 0, 3641, 3642, 5, 342, 0, 0, 3642, 3643, 3, 1466, 733, 0, 3643, 291, 1, 0, 0, 0, 3644, 3646, 5, 46, 0, 0, 3645, 3647, 3, 190, 95, 0, 3646, 3645, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3650, 5, 92, 0, 0, 3649, 3651, 3, 514, 257, 0, 3650, 3649, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 3, 294, 147, 0, 3653, 3654, 5, 36, 0, 0, 3654, 3656, 3, 1002, 501, 0, 3655, 3657, 3, 296, 148, 0, 3656, 3655, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 293, 1, 0, 0, 0, 3658, 3660, 3, 1406, 703, 0, 3659, 3661, 3, 242, 121, 0, 3660, 3659, 1, 0, 0, 0, 3660, 3661, 1, 0, 0, 0, 3661, 3663, 1, 0, 0, 0, 3662, 3664, 3, 274, 137, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3666, 1, 0, 0, 0, 3665, 3667, 3, 276, 138, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3670, 3, 278, 139, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3672, 1, 0, 0, 0, 3671, 3673, 3, 280, 140, 0, 3672, 3671, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 295, 1, 0, 0, 0, 3674, 3678, 5, 105, 0, 0, 3675, 3679, 5, 174, 0, 0, 3676, 3677, 5, 269, 0, 0, 3677, 3679, 5, 174, 0, 0, 3678, 3675, 1, 0, 0, 0, 3678, 3676, 1, 0, 0, 0, 3679, 297, 1, 0, 0, 0, 3680, 3682, 5, 46, 0, 0, 3681, 3683, 3, 302, 151, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3685, 5, 259, 0, 0, 3685, 3687, 5, 376, 0, 0, 3686, 3688, 3, 514, 257, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3690, 3, 300, 150, 0, 3690, 3691, 5, 36, 0, 0, 3691, 3693, 3, 1002, 501, 0, 3692, 3694, 3, 296, 148, 0, 3693, 3692, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 299, 1, 0, 0, 0, 3695, 3697, 3, 1410, 705, 0, 3696, 3698, 3, 242, 121, 0, 3697, 3696, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3700, 1, 0, 0, 0, 3699, 3701, 3, 274, 137, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 3703, 1, 0, 0, 0, 3702, 3704, 3, 134, 67, 0, 3703, 3702, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3706, 1, 0, 0, 0, 3705, 3707, 3, 280, 140, 0, 3706, 3705, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 301, 1, 0, 0, 0, 3708, 3709, 5, 367, 0, 0, 3709, 303, 1, 0, 0, 0, 3710, 3711, 5, 305, 0, 0, 3711, 3712, 5, 259, 0, 0, 3712, 3714, 5, 376, 0, 0, 3713, 3715, 3, 630, 315, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3716, 1, 0, 0, 0, 3716, 3718, 3, 1412, 706, 0, 3717, 3719, 3, 296, 148, 0, 3718, 3717, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 305, 1, 0, 0, 0, 3720, 3722, 5, 46, 0, 0, 3721, 3723, 3, 190, 95, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3726, 5, 328, 0, 0, 3725, 3727, 3, 514, 257, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3730, 3, 1414, 707, 0, 3729, 3731, 3, 310, 155, 0, 3730, 3729, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 307, 1, 0, 0, 0, 3732, 3733, 5, 138, 0, 0, 3733, 3735, 5, 328, 0, 0, 3734, 3736, 3, 748, 374, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3738, 3, 1414, 707, 0, 3738, 3739, 3, 314, 157, 0, 3739, 309, 1, 0, 0, 0, 3740, 3741, 3, 314, 157, 0, 3741, 311, 1, 0, 0, 0, 3742, 3743, 5, 2, 0, 0, 3743, 3744, 3, 314, 157, 0, 3744, 3745, 5, 3, 0, 0, 3745, 313, 1, 0, 0, 0, 3746, 3748, 3, 316, 158, 0, 3747, 3746, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 315, 1, 0, 0, 0, 3751, 3752, 5, 36, 0, 0, 3752, 3786, 3, 1174, 587, 0, 3753, 3754, 5, 148, 0, 0, 3754, 3786, 3, 320, 160, 0, 3755, 3786, 5, 173, 0, 0, 3756, 3758, 5, 225, 0, 0, 3757, 3759, 3, 318, 159, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 3786, 3, 320, 160, 0, 3761, 3762, 5, 260, 0, 0, 3762, 3786, 3, 320, 160, 0, 3763, 3764, 5, 262, 0, 0, 3764, 3786, 3, 320, 160, 0, 3765, 3766, 5, 269, 0, 0, 3766, 3786, 7, 26, 0, 0, 3767, 3768, 5, 281, 0, 0, 3768, 3769, 5, 147, 0, 0, 3769, 3786, 3, 552, 276, 0, 3770, 3771, 5, 328, 0, 0, 3771, 3772, 5, 266, 0, 0, 3772, 3786, 3, 558, 279, 0, 3773, 3775, 5, 340, 0, 0, 3774, 3776, 3, 14, 7, 0, 3775, 3774, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3786, 3, 320, 160, 0, 3778, 3780, 5, 314, 0, 0, 3779, 3781, 3, 14, 7, 0, 3780, 3779, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3783, 1, 0, 0, 0, 3782, 3784, 3, 320, 160, 0, 3783, 3782, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3786, 1, 0, 0, 0, 3785, 3751, 1, 0, 0, 0, 3785, 3753, 1, 0, 0, 0, 3785, 3755, 1, 0, 0, 0, 3785, 3756, 1, 0, 0, 0, 3785, 3761, 1, 0, 0, 0, 3785, 3763, 1, 0, 0, 0, 3785, 3765, 1, 0, 0, 0, 3785, 3767, 1, 0, 0, 0, 3785, 3770, 1, 0, 0, 0, 3785, 3773, 1, 0, 0, 0, 3785, 3778, 1, 0, 0, 0, 3786, 317, 1, 0, 0, 0, 3787, 3788, 5, 147, 0, 0, 3788, 319, 1, 0, 0, 0, 3789, 3796, 3, 1456, 728, 0, 3790, 3791, 5, 12, 0, 0, 3791, 3796, 3, 1456, 728, 0, 3792, 3793, 5, 13, 0, 0, 3793, 3796, 3, 1456, 728, 0, 3794, 3796, 3, 1466, 733, 0, 3795, 3789, 1, 0, 0, 0, 3795, 3790, 1, 0, 0, 0, 3795, 3792, 1, 0, 0, 0, 3795, 3794, 1, 0, 0, 0, 3796, 321, 1, 0, 0, 0, 3797, 3802, 3, 320, 160, 0, 3798, 3799, 5, 6, 0, 0, 3799, 3801, 3, 320, 160, 0, 3800, 3798, 1, 0, 0, 0, 3801, 3804, 1, 0, 0, 0, 3802, 3800, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 323, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3805, 3807, 5, 46, 0, 0, 3806, 3808, 3, 658, 329, 0, 3807, 3806, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3811, 3, 326, 163, 0, 3810, 3809, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3813, 1, 0, 0, 0, 3812, 3814, 3, 336, 168, 0, 3813, 3812, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 5, 247, 0, 0, 3816, 3825, 3, 1438, 719, 0, 3817, 3818, 5, 215, 0, 0, 3818, 3820, 3, 328, 164, 0, 3819, 3821, 3, 330, 165, 0, 3820, 3819, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3823, 1, 0, 0, 0, 3822, 3824, 3, 334, 167, 0, 3823, 3822, 1, 0, 0, 0, 3823, 3824, 1, 0, 0, 0, 3824, 3826, 1, 0, 0, 0, 3825, 3817, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 325, 1, 0, 0, 0, 3827, 3828, 5, 359, 0, 0, 3828, 327, 1, 0, 0, 0, 3829, 3831, 3, 1438, 719, 0, 3830, 3832, 3, 560, 280, 0, 3831, 3830, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 329, 1, 0, 0, 0, 3833, 3834, 5, 239, 0, 0, 3834, 3835, 3, 328, 164, 0, 3835, 331, 1, 0, 0, 0, 3836, 3837, 5, 373, 0, 0, 3837, 3841, 3, 328, 164, 0, 3838, 3839, 5, 269, 0, 0, 3839, 3841, 5, 373, 0, 0, 3840, 3836, 1, 0, 0, 0, 3840, 3838, 1, 0, 0, 0, 3841, 333, 1, 0, 0, 0, 3842, 3843, 3, 332, 166, 0, 3843, 335, 1, 0, 0, 0, 3844, 3845, 5, 295, 0, 0, 3845, 337, 1, 0, 0, 0, 3846, 3847, 5, 46, 0, 0, 3847, 3848, 5, 351, 0, 0, 3848, 3850, 3, 1404, 702, 0, 3849, 3851, 3, 340, 170, 0, 3850, 3849, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3852, 1, 0, 0, 0, 3852, 3853, 5, 255, 0, 0, 3853, 3855, 3, 1460, 730, 0, 3854, 3856, 3, 134, 67, 0, 3855, 3854, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 339, 1, 0, 0, 0, 3857, 3858, 5, 282, 0, 0, 3858, 3859, 3, 1472, 736, 0, 3859, 341, 1, 0, 0, 0, 3860, 3861, 5, 46, 0, 0, 3861, 3863, 5, 204, 0, 0, 3862, 3864, 3, 514, 257, 0, 3863, 3862, 1, 0, 0, 0, 3863, 3864, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3867, 3, 1438, 719, 0, 3866, 3868, 3, 14, 7, 0, 3867, 3866, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3870, 3, 344, 172, 0, 3870, 343, 1, 0, 0, 0, 3871, 3873, 3, 346, 173, 0, 3872, 3871, 1, 0, 0, 0, 3873, 3876, 1, 0, 0, 0, 3874, 3872, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 345, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3877, 3878, 5, 323, 0, 0, 3878, 3885, 3, 1424, 712, 0, 3879, 3880, 5, 375, 0, 0, 3880, 3885, 3, 80, 40, 0, 3881, 3882, 5, 64, 0, 0, 3882, 3885, 3, 80, 40, 0, 3883, 3885, 5, 150, 0, 0, 3884, 3877, 1, 0, 0, 0, 3884, 3879, 1, 0, 0, 0, 3884, 3881, 1, 0, 0, 0, 3884, 3883, 1, 0, 0, 0, 3885, 347, 1, 0, 0, 0, 3886, 3887, 5, 138, 0, 0, 3887, 3888, 5, 204, 0, 0, 3888, 3889, 3, 1438, 719, 0, 3889, 3890, 5, 369, 0, 0, 3890, 3891, 3, 350, 175, 0, 3891, 349, 1, 0, 0, 0, 3892, 3894, 3, 352, 176, 0, 3893, 3892, 1, 0, 0, 0, 3894, 3897, 1, 0, 0, 0, 3895, 3893, 1, 0, 0, 0, 3895, 3896, 1, 0, 0, 0, 3896, 351, 1, 0, 0, 0, 3897, 3895, 1, 0, 0, 0, 3898, 3899, 5, 94, 0, 0, 3899, 3900, 3, 80, 40, 0, 3900, 353, 1, 0, 0, 0, 3901, 3902, 5, 138, 0, 0, 3902, 3903, 5, 204, 0, 0, 3903, 3904, 3, 1438, 719, 0, 3904, 3905, 3, 44, 22, 0, 3905, 3906, 3, 546, 273, 0, 3906, 4004, 1, 0, 0, 0, 3907, 3908, 5, 138, 0, 0, 3908, 3909, 5, 204, 0, 0, 3909, 3910, 3, 1438, 719, 0, 3910, 3911, 3, 44, 22, 0, 3911, 3912, 3, 544, 272, 0, 3912, 4004, 1, 0, 0, 0, 3913, 3914, 5, 138, 0, 0, 3914, 3915, 5, 204, 0, 0, 3915, 3916, 3, 1438, 719, 0, 3916, 3917, 3, 44, 22, 0, 3917, 3918, 5, 136, 0, 0, 3918, 3919, 3, 698, 349, 0, 3919, 4004, 1, 0, 0, 0, 3920, 3921, 5, 138, 0, 0, 3921, 3922, 5, 204, 0, 0, 3922, 3923, 3, 1438, 719, 0, 3923, 3924, 3, 44, 22, 0, 3924, 3925, 5, 41, 0, 0, 3925, 3926, 5, 2, 0, 0, 3926, 3927, 3, 1170, 585, 0, 3927, 3928, 5, 36, 0, 0, 3928, 3929, 3, 1170, 585, 0, 3929, 3930, 5, 3, 0, 0, 3930, 4004, 1, 0, 0, 0, 3931, 3932, 5, 138, 0, 0, 3932, 3933, 5, 204, 0, 0, 3933, 3934, 3, 1438, 719, 0, 3934, 3935, 3, 44, 22, 0, 3935, 3936, 5, 189, 0, 0, 3936, 3937, 3, 1170, 585, 0, 3937, 4004, 1, 0, 0, 0, 3938, 3939, 5, 138, 0, 0, 3939, 3940, 5, 204, 0, 0, 3940, 3941, 3, 1438, 719, 0, 3941, 3942, 3, 44, 22, 0, 3942, 3943, 5, 211, 0, 0, 3943, 3944, 3, 674, 337, 0, 3944, 4004, 1, 0, 0, 0, 3945, 3946, 5, 138, 0, 0, 3946, 3947, 5, 204, 0, 0, 3947, 3948, 3, 1438, 719, 0, 3948, 3949, 3, 44, 22, 0, 3949, 3950, 5, 278, 0, 0, 3950, 3951, 3, 736, 368, 0, 3951, 4004, 1, 0, 0, 0, 3952, 3953, 5, 138, 0, 0, 3953, 3954, 5, 204, 0, 0, 3954, 3955, 3, 1438, 719, 0, 3955, 3956, 3, 44, 22, 0, 3956, 3957, 5, 278, 0, 0, 3957, 3958, 5, 156, 0, 0, 3958, 3959, 3, 558, 279, 0, 3959, 3960, 5, 100, 0, 0, 3960, 3961, 3, 1438, 719, 0, 3961, 4004, 1, 0, 0, 0, 3962, 3963, 5, 138, 0, 0, 3963, 3964, 5, 204, 0, 0, 3964, 3965, 3, 1438, 719, 0, 3965, 3966, 3, 44, 22, 0, 3966, 3967, 5, 278, 0, 0, 3967, 3968, 5, 206, 0, 0, 3968, 3969, 3, 558, 279, 0, 3969, 3970, 5, 100, 0, 0, 3970, 3971, 3, 1438, 719, 0, 3971, 4004, 1, 0, 0, 0, 3972, 3973, 5, 138, 0, 0, 3973, 3974, 5, 204, 0, 0, 3974, 3975, 3, 1438, 719, 0, 3975, 3976, 3, 44, 22, 0, 3976, 3977, 5, 296, 0, 0, 3977, 3978, 3, 670, 335, 0, 3978, 4004, 1, 0, 0, 0, 3979, 3980, 5, 138, 0, 0, 3980, 3981, 5, 204, 0, 0, 3981, 3982, 3, 1438, 719, 0, 3982, 3983, 3, 44, 22, 0, 3983, 3984, 5, 442, 0, 0, 3984, 3985, 3, 666, 333, 0, 3985, 4004, 1, 0, 0, 0, 3986, 3987, 5, 138, 0, 0, 3987, 3988, 5, 204, 0, 0, 3988, 3989, 3, 1438, 719, 0, 3989, 3990, 3, 44, 22, 0, 3990, 3991, 5, 443, 0, 0, 3991, 3992, 5, 62, 0, 0, 3992, 3993, 3, 1170, 585, 0, 3993, 3994, 5, 247, 0, 0, 3994, 3995, 3, 1438, 719, 0, 3995, 4004, 1, 0, 0, 0, 3996, 3997, 5, 138, 0, 0, 3997, 3998, 5, 204, 0, 0, 3998, 3999, 3, 1438, 719, 0, 3999, 4000, 3, 44, 22, 0, 4000, 4001, 5, 360, 0, 0, 4001, 4002, 3, 1170, 585, 0, 4002, 4004, 1, 0, 0, 0, 4003, 3901, 1, 0, 0, 0, 4003, 3907, 1, 0, 0, 0, 4003, 3913, 1, 0, 0, 0, 4003, 3920, 1, 0, 0, 0, 4003, 3931, 1, 0, 0, 0, 4003, 3938, 1, 0, 0, 0, 4003, 3945, 1, 0, 0, 0, 4003, 3952, 1, 0, 0, 0, 4003, 3962, 1, 0, 0, 0, 4003, 3972, 1, 0, 0, 0, 4003, 3979, 1, 0, 0, 0, 4003, 3986, 1, 0, 0, 0, 4003, 3996, 1, 0, 0, 0, 4004, 355, 1, 0, 0, 0, 4005, 4006, 5, 46, 0, 0, 4006, 4007, 5, 63, 0, 0, 4007, 4008, 5, 174, 0, 0, 4008, 4009, 5, 381, 0, 0, 4009, 4011, 3, 1438, 719, 0, 4010, 4012, 3, 362, 181, 0, 4011, 4010, 1, 0, 0, 0, 4011, 4012, 1, 0, 0, 0, 4012, 4014, 1, 0, 0, 0, 4013, 4015, 3, 366, 183, 0, 4014, 4013, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 357, 1, 0, 0, 0, 4016, 4017, 5, 215, 0, 0, 4017, 4025, 3, 328, 164, 0, 4018, 4019, 5, 269, 0, 0, 4019, 4025, 5, 215, 0, 0, 4020, 4021, 5, 373, 0, 0, 4021, 4025, 3, 328, 164, 0, 4022, 4023, 5, 269, 0, 0, 4023, 4025, 5, 373, 0, 0, 4024, 4016, 1, 0, 0, 0, 4024, 4018, 1, 0, 0, 0, 4024, 4020, 1, 0, 0, 0, 4024, 4022, 1, 0, 0, 0, 4025, 359, 1, 0, 0, 0, 4026, 4028, 3, 358, 179, 0, 4027, 4026, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4027, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 361, 1, 0, 0, 0, 4031, 4032, 3, 360, 180, 0, 4032, 363, 1, 0, 0, 0, 4033, 4034, 5, 138, 0, 0, 4034, 4035, 5, 63, 0, 0, 4035, 4036, 5, 174, 0, 0, 4036, 4037, 5, 381, 0, 0, 4037, 4039, 3, 1438, 719, 0, 4038, 4040, 3, 362, 181, 0, 4039, 4038, 1, 0, 0, 0, 4039, 4040, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 3, 370, 185, 0, 4042, 4051, 1, 0, 0, 0, 4043, 4044, 5, 138, 0, 0, 4044, 4045, 5, 63, 0, 0, 4045, 4046, 5, 174, 0, 0, 4046, 4047, 5, 381, 0, 0, 4047, 4048, 3, 1438, 719, 0, 4048, 4049, 3, 360, 180, 0, 4049, 4051, 1, 0, 0, 0, 4050, 4033, 1, 0, 0, 0, 4050, 4043, 1, 0, 0, 0, 4051, 365, 1, 0, 0, 0, 4052, 4053, 5, 280, 0, 0, 4053, 4054, 5, 2, 0, 0, 4054, 4055, 3, 368, 184, 0, 4055, 4056, 5, 3, 0, 0, 4056, 367, 1, 0, 0, 0, 4057, 4062, 3, 376, 188, 0, 4058, 4059, 5, 6, 0, 0, 4059, 4061, 3, 376, 188, 0, 4060, 4058, 1, 0, 0, 0, 4061, 4064, 1, 0, 0, 0, 4062, 4060, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 369, 1, 0, 0, 0, 4064, 4062, 1, 0, 0, 0, 4065, 4066, 5, 280, 0, 0, 4066, 4067, 5, 2, 0, 0, 4067, 4068, 3, 372, 186, 0, 4068, 4069, 5, 3, 0, 0, 4069, 371, 1, 0, 0, 0, 4070, 4075, 3, 374, 187, 0, 4071, 4072, 5, 6, 0, 0, 4072, 4074, 3, 374, 187, 0, 4073, 4071, 1, 0, 0, 0, 4074, 4077, 1, 0, 0, 0, 4075, 4073, 1, 0, 0, 0, 4075, 4076, 1, 0, 0, 0, 4076, 373, 1, 0, 0, 0, 4077, 4075, 1, 0, 0, 0, 4078, 4086, 3, 376, 188, 0, 4079, 4080, 5, 333, 0, 0, 4080, 4086, 3, 376, 188, 0, 4081, 4082, 5, 133, 0, 0, 4082, 4086, 3, 376, 188, 0, 4083, 4084, 5, 191, 0, 0, 4084, 4086, 3, 376, 188, 0, 4085, 4078, 1, 0, 0, 0, 4085, 4079, 1, 0, 0, 0, 4085, 4081, 1, 0, 0, 0, 4085, 4083, 1, 0, 0, 0, 4086, 375, 1, 0, 0, 0, 4087, 4088, 3, 378, 189, 0, 4088, 4089, 3, 380, 190, 0, 4089, 377, 1, 0, 0, 0, 4090, 4091, 3, 1492, 746, 0, 4091, 379, 1, 0, 0, 0, 4092, 4093, 3, 1460, 730, 0, 4093, 381, 1, 0, 0, 0, 4094, 4095, 5, 46, 0, 0, 4095, 4097, 5, 331, 0, 0, 4096, 4098, 3, 514, 257, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 3, 1438, 719, 0, 4100, 4102, 3, 384, 192, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4104, 1, 0, 0, 0, 4103, 4105, 3, 388, 194, 0, 4104, 4103, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4106, 1, 0, 0, 0, 4106, 4107, 5, 63, 0, 0, 4107, 4108, 5, 174, 0, 0, 4108, 4109, 5, 381, 0, 0, 4109, 4111, 3, 1438, 719, 0, 4110, 4112, 3, 366, 183, 0, 4111, 4110, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 383, 1, 0, 0, 0, 4113, 4114, 5, 360, 0, 0, 4114, 4115, 3, 1460, 730, 0, 4115, 385, 1, 0, 0, 0, 4116, 4119, 5, 375, 0, 0, 4117, 4120, 3, 1460, 730, 0, 4118, 4120, 5, 78, 0, 0, 4119, 4117, 1, 0, 0, 0, 4119, 4118, 1, 0, 0, 0, 4120, 387, 1, 0, 0, 0, 4121, 4122, 3, 386, 193, 0, 4122, 389, 1, 0, 0, 0, 4123, 4124, 5, 138, 0, 0, 4124, 4125, 5, 331, 0, 0, 4125, 4131, 3, 1438, 719, 0, 4126, 4132, 3, 370, 185, 0, 4127, 4129, 3, 386, 193, 0, 4128, 4130, 3, 370, 185, 0, 4129, 4128, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 4132, 1, 0, 0, 0, 4131, 4126, 1, 0, 0, 0, 4131, 4127, 1, 0, 0, 0, 4132, 391, 1, 0, 0, 0, 4133, 4134, 5, 46, 0, 0, 4134, 4135, 5, 63, 0, 0, 4135, 4137, 5, 92, 0, 0, 4136, 4138, 3, 514, 257, 0, 4137, 4136, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4140, 3, 1406, 703, 0, 4140, 4142, 5, 2, 0, 0, 4141, 4143, 3, 194, 97, 0, 4142, 4141, 1, 0, 0, 0, 4142, 4143, 1, 0, 0, 0, 4143, 4144, 1, 0, 0, 0, 4144, 4146, 5, 3, 0, 0, 4145, 4147, 3, 264, 132, 0, 4146, 4145, 1, 0, 0, 0, 4146, 4147, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4149, 5, 331, 0, 0, 4149, 4151, 3, 1438, 719, 0, 4150, 4152, 3, 366, 183, 0, 4151, 4150, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4173, 1, 0, 0, 0, 4153, 4154, 5, 46, 0, 0, 4154, 4155, 5, 63, 0, 0, 4155, 4157, 5, 92, 0, 0, 4156, 4158, 3, 514, 257, 0, 4157, 4156, 1, 0, 0, 0, 4157, 4158, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 4160, 3, 1406, 703, 0, 4160, 4161, 5, 285, 0, 0, 4161, 4162, 5, 275, 0, 0, 4162, 4164, 3, 1408, 704, 0, 4163, 4165, 3, 196, 98, 0, 4164, 4163, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4166, 1, 0, 0, 0, 4166, 4167, 3, 144, 72, 0, 4167, 4168, 5, 331, 0, 0, 4168, 4170, 3, 1438, 719, 0, 4169, 4171, 3, 366, 183, 0, 4170, 4169, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4173, 1, 0, 0, 0, 4172, 4133, 1, 0, 0, 0, 4172, 4153, 1, 0, 0, 0, 4173, 393, 1, 0, 0, 0, 4174, 4175, 5, 444, 0, 0, 4175, 4176, 5, 63, 0, 0, 4176, 4177, 5, 323, 0, 0, 4177, 4179, 3, 1424, 712, 0, 4178, 4180, 3, 398, 199, 0, 4179, 4178, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4182, 5, 64, 0, 0, 4182, 4183, 5, 331, 0, 0, 4183, 4184, 3, 1438, 719, 0, 4184, 4185, 5, 71, 0, 0, 4185, 4187, 3, 1438, 719, 0, 4186, 4188, 3, 366, 183, 0, 4187, 4186, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 395, 1, 0, 0, 0, 4189, 4190, 5, 74, 0, 0, 4190, 4193, 5, 94, 0, 0, 4191, 4193, 5, 59, 0, 0, 4192, 4189, 1, 0, 0, 0, 4192, 4191, 1, 0, 0, 0, 4193, 397, 1, 0, 0, 0, 4194, 4195, 3, 396, 198, 0, 4195, 4196, 5, 2, 0, 0, 4196, 4197, 3, 1126, 563, 0, 4197, 4198, 5, 3, 0, 0, 4198, 399, 1, 0, 0, 0, 4199, 4200, 5, 46, 0, 0, 4200, 4201, 5, 99, 0, 0, 4201, 4203, 5, 257, 0, 0, 4202, 4204, 3, 514, 257, 0, 4203, 4202, 1, 0, 0, 0, 4203, 4204, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 4206, 5, 62, 0, 0, 4206, 4207, 3, 402, 201, 0, 4207, 4208, 5, 331, 0, 0, 4208, 4210, 3, 1438, 719, 0, 4209, 4211, 3, 366, 183, 0, 4210, 4209, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 401, 1, 0, 0, 0, 4212, 4215, 3, 1472, 736, 0, 4213, 4215, 5, 99, 0, 0, 4214, 4212, 1, 0, 0, 0, 4214, 4213, 1, 0, 0, 0, 4215, 403, 1, 0, 0, 0, 4216, 4217, 5, 138, 0, 0, 4217, 4218, 5, 99, 0, 0, 4218, 4219, 5, 257, 0, 0, 4219, 4220, 5, 62, 0, 0, 4220, 4221, 3, 402, 201, 0, 4221, 4222, 5, 331, 0, 0, 4222, 4223, 3, 1438, 719, 0, 4223, 4224, 3, 370, 185, 0, 4224, 405, 1, 0, 0, 0, 4225, 4226, 5, 46, 0, 0, 4226, 4227, 5, 445, 0, 0, 4227, 4228, 3, 1438, 719, 0, 4228, 4229, 5, 80, 0, 0, 4229, 4231, 3, 1414, 707, 0, 4230, 4232, 3, 424, 212, 0, 4231, 4230, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4234, 1, 0, 0, 0, 4233, 4235, 3, 426, 213, 0, 4234, 4233, 1, 0, 0, 0, 4234, 4235, 1, 0, 0, 0, 4235, 4237, 1, 0, 0, 0, 4236, 4238, 3, 420, 210, 0, 4237, 4236, 1, 0, 0, 0, 4237, 4238, 1, 0, 0, 0, 4238, 4240, 1, 0, 0, 0, 4239, 4241, 3, 416, 208, 0, 4240, 4239, 1, 0, 0, 0, 4240, 4241, 1, 0, 0, 0, 4241, 4243, 1, 0, 0, 0, 4242, 4244, 3, 418, 209, 0, 4243, 4242, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 407, 1, 0, 0, 0, 4245, 4246, 5, 138, 0, 0, 4246, 4247, 5, 445, 0, 0, 4247, 4248, 3, 1438, 719, 0, 4248, 4249, 5, 80, 0, 0, 4249, 4251, 3, 1414, 707, 0, 4250, 4252, 3, 422, 211, 0, 4251, 4250, 1, 0, 0, 0, 4251, 4252, 1, 0, 0, 0, 4252, 4254, 1, 0, 0, 0, 4253, 4255, 3, 416, 208, 0, 4254, 4253, 1, 0, 0, 0, 4254, 4255, 1, 0, 0, 0, 4255, 4257, 1, 0, 0, 0, 4256, 4258, 3, 418, 209, 0, 4257, 4256, 1, 0, 0, 0, 4257, 4258, 1, 0, 0, 0, 4258, 409, 1, 0, 0, 0, 4259, 4260, 5, 138, 0, 0, 4260, 4261, 5, 296, 0, 0, 4261, 4263, 3, 1430, 715, 0, 4262, 4264, 3, 660, 330, 0, 4263, 4262, 1, 0, 0, 0, 4263, 4264, 1, 0, 0, 0, 4264, 4265, 1, 0, 0, 0, 4265, 4266, 3, 412, 206, 0, 4266, 411, 1, 0, 0, 0, 4267, 4271, 3, 414, 207, 0, 4268, 4270, 3, 414, 207, 0, 4269, 4268, 1, 0, 0, 0, 4270, 4273, 1, 0, 0, 0, 4271, 4269, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4275, 1, 0, 0, 0, 4273, 4271, 1, 0, 0, 0, 4274, 4276, 5, 315, 0, 0, 4275, 4274, 1, 0, 0, 0, 4275, 4276, 1, 0, 0, 0, 4276, 4294, 1, 0, 0, 0, 4277, 4278, 5, 309, 0, 0, 4278, 4279, 5, 94, 0, 0, 4279, 4294, 3, 1432, 716, 0, 4280, 4281, 5, 282, 0, 0, 4281, 4282, 5, 94, 0, 0, 4282, 4294, 3, 1472, 736, 0, 4283, 4284, 5, 333, 0, 0, 4284, 4285, 5, 323, 0, 0, 4285, 4294, 3, 48, 24, 0, 4286, 4288, 5, 269, 0, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4290, 5, 462, 0, 0, 4290, 4291, 5, 80, 0, 0, 4291, 4292, 5, 204, 0, 0, 4292, 4294, 3, 1438, 719, 0, 4293, 4267, 1, 0, 0, 0, 4293, 4277, 1, 0, 0, 0, 4293, 4280, 1, 0, 0, 0, 4293, 4283, 1, 0, 0, 0, 4293, 4287, 1, 0, 0, 0, 4294, 413, 1, 0, 0, 0, 4295, 4297, 5, 205, 0, 0, 4296, 4295, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4299, 5, 327, 0, 0, 4299, 4306, 5, 243, 0, 0, 4300, 4302, 5, 205, 0, 0, 4301, 4300, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4304, 5, 327, 0, 0, 4304, 4306, 5, 181, 0, 0, 4305, 4296, 1, 0, 0, 0, 4305, 4301, 1, 0, 0, 0, 4306, 4324, 1, 0, 0, 0, 4307, 4308, 5, 333, 0, 0, 4308, 4309, 3, 1438, 719, 0, 4309, 4312, 7, 27, 0, 0, 4310, 4313, 3, 1438, 719, 0, 4311, 4313, 5, 53, 0, 0, 4312, 4310, 1, 0, 0, 0, 4312, 4311, 1, 0, 0, 0, 4313, 4324, 1, 0, 0, 0, 4314, 4315, 5, 333, 0, 0, 4315, 4316, 3, 1438, 719, 0, 4316, 4317, 5, 64, 0, 0, 4317, 4318, 5, 434, 0, 0, 4318, 4324, 1, 0, 0, 0, 4319, 4320, 5, 313, 0, 0, 4320, 4324, 3, 1438, 719, 0, 4321, 4322, 5, 313, 0, 0, 4322, 4324, 5, 30, 0, 0, 4323, 4305, 1, 0, 0, 0, 4323, 4307, 1, 0, 0, 0, 4323, 4314, 1, 0, 0, 0, 4323, 4319, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 415, 1, 0, 0, 0, 4325, 4326, 5, 100, 0, 0, 4326, 4327, 5, 2, 0, 0, 4327, 4328, 3, 1214, 607, 0, 4328, 4329, 5, 3, 0, 0, 4329, 417, 1, 0, 0, 0, 4330, 4331, 5, 105, 0, 0, 4331, 4332, 5, 42, 0, 0, 4332, 4333, 5, 2, 0, 0, 4333, 4334, 3, 1214, 607, 0, 4334, 4335, 5, 3, 0, 0, 4335, 419, 1, 0, 0, 0, 4336, 4337, 5, 94, 0, 0, 4337, 4338, 3, 1474, 737, 0, 4338, 421, 1, 0, 0, 0, 4339, 4340, 5, 94, 0, 0, 4340, 4341, 3, 1474, 737, 0, 4341, 423, 1, 0, 0, 0, 4342, 4346, 5, 36, 0, 0, 4343, 4347, 5, 541, 0, 0, 4344, 4347, 5, 542, 0, 0, 4345, 4347, 3, 1494, 747, 0, 4346, 4343, 1, 0, 0, 0, 4346, 4344, 1, 0, 0, 0, 4346, 4345, 1, 0, 0, 0, 4347, 425, 1, 0, 0, 0, 4348, 4349, 5, 62, 0, 0, 4349, 4350, 3, 428, 214, 0, 4350, 427, 1, 0, 0, 0, 4351, 4352, 7, 28, 0, 0, 4352, 429, 1, 0, 0, 0, 4353, 4354, 5, 46, 0, 0, 4354, 4355, 5, 131, 0, 0, 4355, 4356, 5, 446, 0, 0, 4356, 4357, 3, 1438, 719, 0, 4357, 4358, 5, 360, 0, 0, 4358, 4359, 3, 432, 216, 0, 4359, 4360, 5, 215, 0, 0, 4360, 4361, 3, 328, 164, 0, 4361, 431, 1, 0, 0, 0, 4362, 4363, 7, 29, 0, 0, 4363, 433, 1, 0, 0, 0, 4364, 4366, 5, 46, 0, 0, 4365, 4367, 3, 658, 329, 0, 4366, 4365, 1, 0, 0, 0, 4366, 4367, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4369, 5, 357, 0, 0, 4369, 4370, 3, 1438, 719, 0, 4370, 4371, 3, 436, 218, 0, 4371, 4372, 3, 442, 221, 0, 4372, 4373, 5, 80, 0, 0, 4373, 4375, 3, 1408, 704, 0, 4374, 4376, 3, 446, 223, 0, 4375, 4374, 1, 0, 0, 0, 4375, 4376, 1, 0, 0, 0, 4376, 4378, 1, 0, 0, 0, 4377, 4379, 3, 458, 229, 0, 4378, 4377, 1, 0, 0, 0, 4378, 4379, 1, 0, 0, 0, 4379, 4381, 1, 0, 0, 0, 4380, 4382, 3, 464, 232, 0, 4381, 4380, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4384, 5, 202, 0, 0, 4384, 4385, 3, 466, 233, 0, 4385, 4386, 5, 2, 0, 0, 4386, 4387, 3, 468, 234, 0, 4387, 4388, 5, 3, 0, 0, 4388, 4419, 1, 0, 0, 0, 4389, 4391, 5, 46, 0, 0, 4390, 4392, 3, 658, 329, 0, 4391, 4390, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4394, 1, 0, 0, 0, 4393, 4395, 5, 45, 0, 0, 4394, 4393, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 4397, 5, 357, 0, 0, 4397, 4398, 3, 1438, 719, 0, 4398, 4399, 3, 436, 218, 0, 4399, 4400, 3, 442, 221, 0, 4400, 4401, 5, 80, 0, 0, 4401, 4403, 3, 1408, 704, 0, 4402, 4404, 3, 472, 236, 0, 4403, 4402, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4405, 1, 0, 0, 0, 4405, 4407, 3, 474, 237, 0, 4406, 4408, 3, 438, 219, 0, 4407, 4406, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4410, 1, 0, 0, 0, 4409, 4411, 3, 464, 232, 0, 4410, 4409, 1, 0, 0, 0, 4410, 4411, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 4413, 5, 202, 0, 0, 4413, 4414, 3, 466, 233, 0, 4414, 4415, 5, 2, 0, 0, 4415, 4416, 3, 468, 234, 0, 4416, 4417, 5, 3, 0, 0, 4417, 4419, 1, 0, 0, 0, 4418, 4364, 1, 0, 0, 0, 4418, 4389, 1, 0, 0, 0, 4419, 435, 1, 0, 0, 0, 4420, 4425, 5, 145, 0, 0, 4421, 4425, 5, 135, 0, 0, 4422, 4423, 5, 242, 0, 0, 4423, 4425, 5, 275, 0, 0, 4424, 4420, 1, 0, 0, 0, 4424, 4421, 1, 0, 0, 0, 4424, 4422, 1, 0, 0, 0, 4425, 437, 1, 0, 0, 0, 4426, 4428, 5, 62, 0, 0, 4427, 4429, 5, 192, 0, 0, 4428, 4427, 1, 0, 0, 0, 4428, 4429, 1, 0, 0, 0, 4429, 4430, 1, 0, 0, 0, 4430, 4431, 3, 440, 220, 0, 4431, 439, 1, 0, 0, 0, 4432, 4433, 7, 30, 0, 0, 4433, 441, 1, 0, 0, 0, 4434, 4439, 3, 444, 222, 0, 4435, 4436, 5, 82, 0, 0, 4436, 4438, 3, 444, 222, 0, 4437, 4435, 1, 0, 0, 0, 4438, 4441, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4439, 4440, 1, 0, 0, 0, 4440, 443, 1, 0, 0, 0, 4441, 4439, 1, 0, 0, 0, 4442, 4450, 5, 241, 0, 0, 4443, 4450, 5, 182, 0, 0, 4444, 4450, 5, 369, 0, 0, 4445, 4446, 5, 369, 0, 0, 4446, 4447, 5, 275, 0, 0, 4447, 4450, 3, 244, 122, 0, 4448, 4450, 5, 358, 0, 0, 4449, 4442, 1, 0, 0, 0, 4449, 4443, 1, 0, 0, 0, 4449, 4444, 1, 0, 0, 0, 4449, 4445, 1, 0, 0, 0, 4449, 4448, 1, 0, 0, 0, 4450, 445, 1, 0, 0, 0, 4451, 4452, 5, 447, 0, 0, 4452, 4453, 3, 448, 224, 0, 4453, 447, 1, 0, 0, 0, 4454, 4456, 3, 450, 225, 0, 4455, 4454, 1, 0, 0, 0, 4456, 4457, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 449, 1, 0, 0, 0, 4459, 4460, 3, 452, 226, 0, 4460, 4462, 3, 454, 227, 0, 4461, 4463, 3, 874, 437, 0, 4462, 4461, 1, 0, 0, 0, 4462, 4463, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4465, 3, 456, 228, 0, 4465, 451, 1, 0, 0, 0, 4466, 4467, 7, 31, 0, 0, 4467, 453, 1, 0, 0, 0, 4468, 4469, 7, 32, 0, 0, 4469, 455, 1, 0, 0, 0, 4470, 4471, 3, 1476, 738, 0, 4471, 457, 1, 0, 0, 0, 4472, 4474, 5, 62, 0, 0, 4473, 4475, 3, 460, 230, 0, 4474, 4473, 1, 0, 0, 0, 4474, 4475, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 4477, 3, 462, 231, 0, 4477, 459, 1, 0, 0, 0, 4478, 4479, 5, 192, 0, 0, 4479, 461, 1, 0, 0, 0, 4480, 4481, 7, 30, 0, 0, 4481, 463, 1, 0, 0, 0, 4482, 4483, 5, 102, 0, 0, 4483, 4484, 5, 2, 0, 0, 4484, 4485, 3, 1214, 607, 0, 4485, 4486, 5, 3, 0, 0, 4486, 465, 1, 0, 0, 0, 4487, 4488, 5, 211, 0, 0, 4488, 4492, 3, 1446, 723, 0, 4489, 4490, 5, 296, 0, 0, 4490, 4492, 3, 1430, 715, 0, 4491, 4487, 1, 0, 0, 0, 4491, 4489, 1, 0, 0, 0, 4492, 467, 1, 0, 0, 0, 4493, 4496, 3, 470, 235, 0, 4494, 4496, 1, 0, 0, 0, 4495, 4493, 1, 0, 0, 0, 4495, 4494, 1, 0, 0, 0, 4496, 4501, 1, 0, 0, 0, 4497, 4498, 5, 6, 0, 0, 4498, 4500, 3, 470, 235, 0, 4499, 4497, 1, 0, 0, 0, 4500, 4503, 1, 0, 0, 0, 4501, 4499, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 469, 1, 0, 0, 0, 4503, 4501, 1, 0, 0, 0, 4504, 4509, 3, 1458, 729, 0, 4505, 4509, 3, 1456, 728, 0, 4506, 4509, 3, 1460, 730, 0, 4507, 4509, 3, 1492, 746, 0, 4508, 4504, 1, 0, 0, 0, 4508, 4505, 1, 0, 0, 0, 4508, 4506, 1, 0, 0, 0, 4508, 4507, 1, 0, 0, 0, 4509, 471, 1, 0, 0, 0, 4510, 4511, 5, 64, 0, 0, 4511, 4512, 3, 1414, 707, 0, 4512, 473, 1, 0, 0, 0, 4513, 4515, 3, 476, 238, 0, 4514, 4513, 1, 0, 0, 0, 4515, 4518, 1, 0, 0, 0, 4516, 4514, 1, 0, 0, 0, 4516, 4517, 1, 0, 0, 0, 4517, 475, 1, 0, 0, 0, 4518, 4516, 1, 0, 0, 0, 4519, 4520, 5, 77, 0, 0, 4520, 4531, 5, 54, 0, 0, 4521, 4531, 5, 54, 0, 0, 4522, 4523, 5, 69, 0, 0, 4523, 4531, 5, 221, 0, 0, 4524, 4525, 5, 69, 0, 0, 4525, 4531, 5, 180, 0, 0, 4526, 4527, 5, 77, 0, 0, 4527, 4531, 5, 371, 0, 0, 4528, 4529, 5, 269, 0, 0, 4529, 4531, 5, 228, 0, 0, 4530, 4519, 1, 0, 0, 0, 4530, 4521, 1, 0, 0, 0, 4530, 4522, 1, 0, 0, 0, 4530, 4524, 1, 0, 0, 0, 4530, 4526, 1, 0, 0, 0, 4530, 4528, 1, 0, 0, 0, 4531, 477, 1, 0, 0, 0, 4532, 4533, 5, 46, 0, 0, 4533, 4534, 5, 198, 0, 0, 4534, 4535, 5, 357, 0, 0, 4535, 4536, 3, 1438, 719, 0, 4536, 4537, 5, 80, 0, 0, 4537, 4538, 3, 1492, 746, 0, 4538, 4539, 5, 202, 0, 0, 4539, 4540, 3, 466, 233, 0, 4540, 4541, 5, 2, 0, 0, 4541, 4542, 5, 3, 0, 0, 4542, 4557, 1, 0, 0, 0, 4543, 4544, 5, 46, 0, 0, 4544, 4545, 5, 198, 0, 0, 4545, 4546, 5, 357, 0, 0, 4546, 4547, 3, 1438, 719, 0, 4547, 4548, 5, 80, 0, 0, 4548, 4549, 3, 1492, 746, 0, 4549, 4550, 5, 102, 0, 0, 4550, 4551, 3, 480, 240, 0, 4551, 4552, 5, 202, 0, 0, 4552, 4553, 3, 466, 233, 0, 4553, 4554, 5, 2, 0, 0, 4554, 4555, 5, 3, 0, 0, 4555, 4557, 1, 0, 0, 0, 4556, 4532, 1, 0, 0, 0, 4556, 4543, 1, 0, 0, 0, 4557, 479, 1, 0, 0, 0, 4558, 4563, 3, 482, 241, 0, 4559, 4560, 5, 33, 0, 0, 4560, 4562, 3, 482, 241, 0, 4561, 4559, 1, 0, 0, 0, 4562, 4565, 1, 0, 0, 0, 4563, 4561, 1, 0, 0, 0, 4563, 4564, 1, 0, 0, 0, 4564, 481, 1, 0, 0, 0, 4565, 4563, 1, 0, 0, 0, 4566, 4567, 3, 1476, 738, 0, 4567, 4568, 5, 68, 0, 0, 4568, 4569, 5, 2, 0, 0, 4569, 4570, 3, 484, 242, 0, 4570, 4571, 5, 3, 0, 0, 4571, 483, 1, 0, 0, 0, 4572, 4577, 3, 1460, 730, 0, 4573, 4574, 5, 6, 0, 0, 4574, 4576, 3, 1460, 730, 0, 4575, 4573, 1, 0, 0, 0, 4576, 4579, 1, 0, 0, 0, 4577, 4575, 1, 0, 0, 0, 4577, 4578, 1, 0, 0, 0, 4578, 485, 1, 0, 0, 0, 4579, 4577, 1, 0, 0, 0, 4580, 4581, 5, 138, 0, 0, 4581, 4582, 5, 198, 0, 0, 4582, 4583, 5, 357, 0, 0, 4583, 4584, 3, 1438, 719, 0, 4584, 4585, 3, 488, 244, 0, 4585, 487, 1, 0, 0, 0, 4586, 4593, 5, 193, 0, 0, 4587, 4588, 5, 193, 0, 0, 4588, 4593, 5, 312, 0, 0, 4589, 4590, 5, 193, 0, 0, 4590, 4593, 5, 139, 0, 0, 4591, 4593, 5, 186, 0, 0, 4592, 4586, 1, 0, 0, 0, 4592, 4587, 1, 0, 0, 0, 4592, 4589, 1, 0, 0, 0, 4592, 4591, 1, 0, 0, 0, 4593, 489, 1, 0, 0, 0, 4594, 4595, 5, 46, 0, 0, 4595, 4596, 5, 140, 0, 0, 4596, 4597, 3, 558, 279, 0, 4597, 4598, 5, 42, 0, 0, 4598, 4599, 5, 2, 0, 0, 4599, 4600, 3, 1214, 607, 0, 4600, 4601, 5, 3, 0, 0, 4601, 4602, 3, 474, 237, 0, 4602, 491, 1, 0, 0, 0, 4603, 4605, 5, 46, 0, 0, 4604, 4606, 3, 658, 329, 0, 4605, 4604, 1, 0, 0, 0, 4605, 4606, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4608, 5, 136, 0, 0, 4608, 4609, 3, 1446, 723, 0, 4609, 4610, 3, 694, 347, 0, 4610, 4611, 3, 494, 247, 0, 4611, 4707, 1, 0, 0, 0, 4612, 4614, 5, 46, 0, 0, 4613, 4615, 3, 658, 329, 0, 4614, 4613, 1, 0, 0, 0, 4614, 4615, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4617, 5, 136, 0, 0, 4617, 4618, 3, 1446, 723, 0, 4618, 4619, 3, 502, 251, 0, 4619, 4707, 1, 0, 0, 0, 4620, 4621, 5, 46, 0, 0, 4621, 4622, 5, 278, 0, 0, 4622, 4623, 3, 732, 366, 0, 4623, 4624, 3, 494, 247, 0, 4624, 4707, 1, 0, 0, 0, 4625, 4626, 5, 46, 0, 0, 4626, 4627, 5, 360, 0, 0, 4627, 4628, 3, 558, 279, 0, 4628, 4629, 3, 494, 247, 0, 4629, 4707, 1, 0, 0, 0, 4630, 4631, 5, 46, 0, 0, 4631, 4632, 5, 360, 0, 0, 4632, 4707, 3, 558, 279, 0, 4633, 4634, 5, 46, 0, 0, 4634, 4635, 5, 360, 0, 0, 4635, 4636, 3, 558, 279, 0, 4636, 4637, 5, 36, 0, 0, 4637, 4639, 5, 2, 0, 0, 4638, 4640, 3, 1150, 575, 0, 4639, 4638, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4641, 1, 0, 0, 0, 4641, 4642, 5, 3, 0, 0, 4642, 4707, 1, 0, 0, 0, 4643, 4644, 5, 46, 0, 0, 4644, 4645, 5, 360, 0, 0, 4645, 4646, 3, 558, 279, 0, 4646, 4647, 5, 36, 0, 0, 4647, 4648, 5, 196, 0, 0, 4648, 4650, 5, 2, 0, 0, 4649, 4651, 3, 508, 254, 0, 4650, 4649, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4653, 5, 3, 0, 0, 4653, 4707, 1, 0, 0, 0, 4654, 4655, 5, 46, 0, 0, 4655, 4656, 5, 360, 0, 0, 4656, 4657, 3, 558, 279, 0, 4657, 4658, 5, 36, 0, 0, 4658, 4659, 5, 299, 0, 0, 4659, 4660, 3, 494, 247, 0, 4660, 4707, 1, 0, 0, 0, 4661, 4662, 5, 46, 0, 0, 4662, 4663, 5, 355, 0, 0, 4663, 4664, 5, 325, 0, 0, 4664, 4665, 5, 283, 0, 0, 4665, 4666, 3, 558, 279, 0, 4666, 4667, 3, 494, 247, 0, 4667, 4707, 1, 0, 0, 0, 4668, 4669, 5, 46, 0, 0, 4669, 4670, 5, 355, 0, 0, 4670, 4671, 5, 325, 0, 0, 4671, 4672, 5, 185, 0, 0, 4672, 4673, 3, 558, 279, 0, 4673, 4674, 3, 494, 247, 0, 4674, 4707, 1, 0, 0, 0, 4675, 4676, 5, 46, 0, 0, 4676, 4677, 5, 355, 0, 0, 4677, 4678, 5, 325, 0, 0, 4678, 4679, 5, 353, 0, 0, 4679, 4680, 3, 558, 279, 0, 4680, 4681, 3, 494, 247, 0, 4681, 4707, 1, 0, 0, 0, 4682, 4683, 5, 46, 0, 0, 4683, 4684, 5, 355, 0, 0, 4684, 4685, 5, 325, 0, 0, 4685, 4686, 5, 163, 0, 0, 4686, 4687, 3, 558, 279, 0, 4687, 4688, 3, 494, 247, 0, 4688, 4707, 1, 0, 0, 0, 4689, 4690, 5, 46, 0, 0, 4690, 4692, 5, 108, 0, 0, 4691, 4693, 3, 514, 257, 0, 4692, 4691, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 4694, 1, 0, 0, 0, 4694, 4695, 3, 558, 279, 0, 4695, 4696, 3, 494, 247, 0, 4696, 4707, 1, 0, 0, 0, 4697, 4698, 5, 46, 0, 0, 4698, 4700, 5, 108, 0, 0, 4699, 4701, 3, 514, 257, 0, 4700, 4699, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4702, 1, 0, 0, 0, 4702, 4703, 3, 558, 279, 0, 4703, 4704, 5, 64, 0, 0, 4704, 4705, 3, 558, 279, 0, 4705, 4707, 1, 0, 0, 0, 4706, 4603, 1, 0, 0, 0, 4706, 4612, 1, 0, 0, 0, 4706, 4620, 1, 0, 0, 0, 4706, 4625, 1, 0, 0, 0, 4706, 4630, 1, 0, 0, 0, 4706, 4633, 1, 0, 0, 0, 4706, 4643, 1, 0, 0, 0, 4706, 4654, 1, 0, 0, 0, 4706, 4661, 1, 0, 0, 0, 4706, 4668, 1, 0, 0, 0, 4706, 4675, 1, 0, 0, 0, 4706, 4682, 1, 0, 0, 0, 4706, 4689, 1, 0, 0, 0, 4706, 4697, 1, 0, 0, 0, 4707, 493, 1, 0, 0, 0, 4708, 4709, 5, 2, 0, 0, 4709, 4710, 3, 496, 248, 0, 4710, 4711, 5, 3, 0, 0, 4711, 495, 1, 0, 0, 0, 4712, 4717, 3, 498, 249, 0, 4713, 4714, 5, 6, 0, 0, 4714, 4716, 3, 498, 249, 0, 4715, 4713, 1, 0, 0, 0, 4716, 4719, 1, 0, 0, 0, 4717, 4715, 1, 0, 0, 0, 4717, 4718, 1, 0, 0, 0, 4718, 497, 1, 0, 0, 0, 4719, 4717, 1, 0, 0, 0, 4720, 4723, 3, 1492, 746, 0, 4721, 4722, 5, 10, 0, 0, 4722, 4724, 3, 500, 250, 0, 4723, 4721, 1, 0, 0, 0, 4723, 4724, 1, 0, 0, 0, 4724, 499, 1, 0, 0, 0, 4725, 4732, 3, 688, 344, 0, 4726, 4732, 3, 1504, 752, 0, 4727, 4732, 3, 1326, 663, 0, 4728, 4732, 3, 320, 160, 0, 4729, 4732, 3, 1460, 730, 0, 4730, 4732, 5, 407, 0, 0, 4731, 4725, 1, 0, 0, 0, 4731, 4726, 1, 0, 0, 0, 4731, 4727, 1, 0, 0, 0, 4731, 4728, 1, 0, 0, 0, 4731, 4729, 1, 0, 0, 0, 4731, 4730, 1, 0, 0, 0, 4732, 501, 1, 0, 0, 0, 4733, 4734, 5, 2, 0, 0, 4734, 4735, 3, 504, 252, 0, 4735, 4736, 5, 3, 0, 0, 4736, 503, 1, 0, 0, 0, 4737, 4742, 3, 506, 253, 0, 4738, 4739, 5, 6, 0, 0, 4739, 4741, 3, 506, 253, 0, 4740, 4738, 1, 0, 0, 0, 4741, 4744, 1, 0, 0, 0, 4742, 4740, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 505, 1, 0, 0, 0, 4744, 4742, 1, 0, 0, 0, 4745, 4746, 3, 1494, 747, 0, 4746, 4747, 5, 10, 0, 0, 4747, 4748, 3, 500, 250, 0, 4748, 507, 1, 0, 0, 0, 4749, 4750, 3, 510, 255, 0, 4750, 509, 1, 0, 0, 0, 4751, 4756, 3, 1460, 730, 0, 4752, 4753, 5, 6, 0, 0, 4753, 4755, 3, 1460, 730, 0, 4754, 4752, 1, 0, 0, 0, 4755, 4758, 1, 0, 0, 0, 4756, 4754, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 511, 1, 0, 0, 0, 4758, 4756, 1, 0, 0, 0, 4759, 4760, 5, 138, 0, 0, 4760, 4761, 5, 360, 0, 0, 4761, 4762, 3, 558, 279, 0, 4762, 4763, 5, 133, 0, 0, 4763, 4765, 5, 450, 0, 0, 4764, 4766, 3, 514, 257, 0, 4765, 4764, 1, 0, 0, 0, 4765, 4766, 1, 0, 0, 0, 4766, 4767, 1, 0, 0, 0, 4767, 4768, 3, 1460, 730, 0, 4768, 4803, 1, 0, 0, 0, 4769, 4770, 5, 138, 0, 0, 4770, 4771, 5, 360, 0, 0, 4771, 4772, 3, 558, 279, 0, 4772, 4773, 5, 133, 0, 0, 4773, 4775, 5, 450, 0, 0, 4774, 4776, 3, 514, 257, 0, 4775, 4774, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4777, 1, 0, 0, 0, 4777, 4778, 3, 1460, 730, 0, 4778, 4779, 5, 145, 0, 0, 4779, 4780, 3, 1460, 730, 0, 4780, 4803, 1, 0, 0, 0, 4781, 4782, 5, 138, 0, 0, 4782, 4783, 5, 360, 0, 0, 4783, 4784, 3, 558, 279, 0, 4784, 4785, 5, 133, 0, 0, 4785, 4787, 5, 450, 0, 0, 4786, 4788, 3, 514, 257, 0, 4787, 4786, 1, 0, 0, 0, 4787, 4788, 1, 0, 0, 0, 4788, 4789, 1, 0, 0, 0, 4789, 4790, 3, 1460, 730, 0, 4790, 4791, 5, 135, 0, 0, 4791, 4792, 3, 1460, 730, 0, 4792, 4803, 1, 0, 0, 0, 4793, 4794, 5, 138, 0, 0, 4794, 4795, 5, 360, 0, 0, 4795, 4796, 3, 558, 279, 0, 4796, 4797, 5, 309, 0, 0, 4797, 4798, 5, 450, 0, 0, 4798, 4799, 3, 1460, 730, 0, 4799, 4800, 5, 94, 0, 0, 4800, 4801, 3, 1460, 730, 0, 4801, 4803, 1, 0, 0, 0, 4802, 4759, 1, 0, 0, 0, 4802, 4769, 1, 0, 0, 0, 4802, 4781, 1, 0, 0, 0, 4802, 4793, 1, 0, 0, 0, 4803, 513, 1, 0, 0, 0, 4804, 4805, 5, 220, 0, 0, 4805, 4806, 5, 77, 0, 0, 4806, 4807, 5, 396, 0, 0, 4807, 515, 1, 0, 0, 0, 4808, 4809, 5, 46, 0, 0, 4809, 4810, 5, 278, 0, 0, 4810, 4811, 5, 156, 0, 0, 4811, 4813, 3, 558, 279, 0, 4812, 4814, 3, 522, 261, 0, 4813, 4812, 1, 0, 0, 0, 4813, 4814, 1, 0, 0, 0, 4814, 4815, 1, 0, 0, 0, 4815, 4816, 5, 62, 0, 0, 4816, 4817, 5, 360, 0, 0, 4817, 4818, 3, 1170, 585, 0, 4818, 4819, 5, 100, 0, 0, 4819, 4821, 3, 1438, 719, 0, 4820, 4822, 3, 524, 262, 0, 4821, 4820, 1, 0, 0, 0, 4821, 4822, 1, 0, 0, 0, 4822, 4823, 1, 0, 0, 0, 4823, 4824, 5, 36, 0, 0, 4824, 4825, 3, 518, 259, 0, 4825, 517, 1, 0, 0, 0, 4826, 4831, 3, 520, 260, 0, 4827, 4828, 5, 6, 0, 0, 4828, 4830, 3, 520, 260, 0, 4829, 4827, 1, 0, 0, 0, 4830, 4833, 1, 0, 0, 0, 4831, 4829, 1, 0, 0, 0, 4831, 4832, 1, 0, 0, 0, 4832, 519, 1, 0, 0, 0, 4833, 4831, 1, 0, 0, 0, 4834, 4835, 5, 278, 0, 0, 4835, 4836, 3, 1458, 729, 0, 4836, 4838, 3, 732, 366, 0, 4837, 4839, 3, 526, 263, 0, 4838, 4837, 1, 0, 0, 0, 4838, 4839, 1, 0, 0, 0, 4839, 4841, 1, 0, 0, 0, 4840, 4842, 3, 528, 264, 0, 4841, 4840, 1, 0, 0, 0, 4841, 4842, 1, 0, 0, 0, 4842, 4866, 1, 0, 0, 0, 4843, 4844, 5, 278, 0, 0, 4844, 4845, 3, 1458, 729, 0, 4845, 4847, 3, 736, 368, 0, 4846, 4848, 3, 526, 263, 0, 4847, 4846, 1, 0, 0, 0, 4847, 4848, 1, 0, 0, 0, 4848, 4850, 1, 0, 0, 0, 4849, 4851, 3, 528, 264, 0, 4850, 4849, 1, 0, 0, 0, 4850, 4851, 1, 0, 0, 0, 4851, 4866, 1, 0, 0, 0, 4852, 4853, 5, 211, 0, 0, 4853, 4854, 3, 1458, 729, 0, 4854, 4855, 3, 674, 337, 0, 4855, 4866, 1, 0, 0, 0, 4856, 4857, 5, 211, 0, 0, 4857, 4858, 3, 1458, 729, 0, 4858, 4859, 5, 2, 0, 0, 4859, 4860, 3, 1344, 672, 0, 4860, 4861, 5, 3, 0, 0, 4861, 4862, 3, 674, 337, 0, 4862, 4866, 1, 0, 0, 0, 4863, 4864, 5, 345, 0, 0, 4864, 4866, 3, 1170, 585, 0, 4865, 4834, 1, 0, 0, 0, 4865, 4843, 1, 0, 0, 0, 4865, 4852, 1, 0, 0, 0, 4865, 4856, 1, 0, 0, 0, 4865, 4863, 1, 0, 0, 0, 4866, 521, 1, 0, 0, 0, 4867, 4868, 5, 53, 0, 0, 4868, 523, 1, 0, 0, 0, 4869, 4870, 5, 206, 0, 0, 4870, 4871, 3, 558, 279, 0, 4871, 525, 1, 0, 0, 0, 4872, 4873, 5, 62, 0, 0, 4873, 4879, 5, 325, 0, 0, 4874, 4875, 5, 62, 0, 0, 4875, 4876, 5, 83, 0, 0, 4876, 4877, 5, 147, 0, 0, 4877, 4879, 3, 558, 279, 0, 4878, 4872, 1, 0, 0, 0, 4878, 4874, 1, 0, 0, 0, 4879, 527, 1, 0, 0, 0, 4880, 4881, 5, 302, 0, 0, 4881, 529, 1, 0, 0, 0, 4882, 4883, 5, 46, 0, 0, 4883, 4884, 5, 278, 0, 0, 4884, 4885, 5, 206, 0, 0, 4885, 4886, 3, 558, 279, 0, 4886, 4887, 5, 100, 0, 0, 4887, 4888, 3, 1438, 719, 0, 4888, 531, 1, 0, 0, 0, 4889, 4890, 5, 138, 0, 0, 4890, 4891, 5, 278, 0, 0, 4891, 4892, 5, 206, 0, 0, 4892, 4893, 3, 558, 279, 0, 4893, 4894, 5, 100, 0, 0, 4894, 4895, 3, 1438, 719, 0, 4895, 4896, 5, 133, 0, 0, 4896, 4897, 3, 518, 259, 0, 4897, 4908, 1, 0, 0, 0, 4898, 4899, 5, 138, 0, 0, 4899, 4900, 5, 278, 0, 0, 4900, 4901, 5, 206, 0, 0, 4901, 4902, 3, 558, 279, 0, 4902, 4903, 5, 100, 0, 0, 4903, 4904, 3, 1438, 719, 0, 4904, 4905, 5, 191, 0, 0, 4905, 4906, 3, 534, 267, 0, 4906, 4908, 1, 0, 0, 0, 4907, 4889, 1, 0, 0, 0, 4907, 4898, 1, 0, 0, 0, 4908, 533, 1, 0, 0, 0, 4909, 4914, 3, 536, 268, 0, 4910, 4911, 5, 6, 0, 0, 4911, 4913, 3, 536, 268, 0, 4912, 4910, 1, 0, 0, 0, 4913, 4916, 1, 0, 0, 0, 4914, 4912, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 535, 1, 0, 0, 0, 4916, 4914, 1, 0, 0, 0, 4917, 4918, 5, 278, 0, 0, 4918, 4919, 3, 1458, 729, 0, 4919, 4920, 5, 2, 0, 0, 4920, 4921, 3, 1344, 672, 0, 4921, 4922, 5, 3, 0, 0, 4922, 4930, 1, 0, 0, 0, 4923, 4924, 5, 211, 0, 0, 4924, 4925, 3, 1458, 729, 0, 4925, 4926, 5, 2, 0, 0, 4926, 4927, 3, 1344, 672, 0, 4927, 4928, 5, 3, 0, 0, 4928, 4930, 1, 0, 0, 0, 4929, 4917, 1, 0, 0, 0, 4929, 4923, 1, 0, 0, 0, 4930, 537, 1, 0, 0, 0, 4931, 4932, 5, 301, 0, 0, 4932, 4933, 5, 281, 0, 0, 4933, 4934, 5, 147, 0, 0, 4934, 4935, 3, 1474, 737, 0, 4935, 4936, 5, 94, 0, 0, 4936, 4937, 3, 1472, 736, 0, 4937, 539, 1, 0, 0, 0, 4938, 4939, 5, 191, 0, 0, 4939, 4941, 5, 92, 0, 0, 4940, 4942, 3, 748, 374, 0, 4941, 4940, 1, 0, 0, 0, 4941, 4942, 1, 0, 0, 0, 4942, 4943, 1, 0, 0, 0, 4943, 4945, 3, 1394, 697, 0, 4944, 4946, 3, 124, 62, 0, 4945, 4944, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 5318, 1, 0, 0, 0, 4947, 4948, 5, 191, 0, 0, 4948, 4950, 5, 328, 0, 0, 4949, 4951, 3, 748, 374, 0, 4950, 4949, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 4954, 3, 1418, 709, 0, 4953, 4955, 3, 124, 62, 0, 4954, 4953, 1, 0, 0, 0, 4954, 4955, 1, 0, 0, 0, 4955, 5318, 1, 0, 0, 0, 4956, 4957, 5, 191, 0, 0, 4957, 4959, 5, 376, 0, 0, 4958, 4960, 3, 748, 374, 0, 4959, 4958, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 4961, 1, 0, 0, 0, 4961, 4963, 3, 542, 271, 0, 4962, 4964, 3, 124, 62, 0, 4963, 4962, 1, 0, 0, 0, 4963, 4964, 1, 0, 0, 0, 4964, 5318, 1, 0, 0, 0, 4965, 4966, 5, 191, 0, 0, 4966, 4967, 5, 259, 0, 0, 4967, 4969, 5, 376, 0, 0, 4968, 4970, 3, 748, 374, 0, 4969, 4968, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4971, 1, 0, 0, 0, 4971, 4973, 3, 542, 271, 0, 4972, 4974, 3, 124, 62, 0, 4973, 4972, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 5318, 1, 0, 0, 0, 4975, 4976, 5, 191, 0, 0, 4976, 4978, 5, 226, 0, 0, 4977, 4979, 3, 748, 374, 0, 4978, 4977, 1, 0, 0, 0, 4978, 4979, 1, 0, 0, 0, 4979, 4980, 1, 0, 0, 0, 4980, 4982, 3, 1418, 709, 0, 4981, 4983, 3, 124, 62, 0, 4982, 4981, 1, 0, 0, 0, 4982, 4983, 1, 0, 0, 0, 4983, 5318, 1, 0, 0, 0, 4984, 4985, 5, 191, 0, 0, 4985, 4986, 5, 63, 0, 0, 4986, 4988, 5, 92, 0, 0, 4987, 4989, 3, 748, 374, 0, 4988, 4987, 1, 0, 0, 0, 4988, 4989, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4992, 3, 1394, 697, 0, 4991, 4993, 3, 124, 62, 0, 4992, 4991, 1, 0, 0, 0, 4992, 4993, 1, 0, 0, 0, 4993, 5318, 1, 0, 0, 0, 4994, 4995, 5, 191, 0, 0, 4995, 4997, 5, 108, 0, 0, 4996, 4998, 3, 748, 374, 0, 4997, 4996, 1, 0, 0, 0, 4997, 4998, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5001, 3, 1418, 709, 0, 5000, 5002, 3, 124, 62, 0, 5001, 5000, 1, 0, 0, 0, 5001, 5002, 1, 0, 0, 0, 5002, 5318, 1, 0, 0, 0, 5003, 5004, 5, 191, 0, 0, 5004, 5006, 5, 168, 0, 0, 5005, 5007, 3, 748, 374, 0, 5006, 5005, 1, 0, 0, 0, 5006, 5007, 1, 0, 0, 0, 5007, 5008, 1, 0, 0, 0, 5008, 5010, 3, 1418, 709, 0, 5009, 5011, 3, 124, 62, 0, 5010, 5009, 1, 0, 0, 0, 5010, 5011, 1, 0, 0, 0, 5011, 5318, 1, 0, 0, 0, 5012, 5013, 5, 191, 0, 0, 5013, 5015, 5, 342, 0, 0, 5014, 5016, 3, 748, 374, 0, 5015, 5014, 1, 0, 0, 0, 5015, 5016, 1, 0, 0, 0, 5016, 5017, 1, 0, 0, 0, 5017, 5019, 3, 1418, 709, 0, 5018, 5020, 3, 124, 62, 0, 5019, 5018, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 5318, 1, 0, 0, 0, 5021, 5022, 5, 191, 0, 0, 5022, 5023, 5, 355, 0, 0, 5023, 5024, 5, 325, 0, 0, 5024, 5026, 5, 283, 0, 0, 5025, 5027, 3, 748, 374, 0, 5026, 5025, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5028, 1, 0, 0, 0, 5028, 5030, 3, 1418, 709, 0, 5029, 5031, 3, 124, 62, 0, 5030, 5029, 1, 0, 0, 0, 5030, 5031, 1, 0, 0, 0, 5031, 5318, 1, 0, 0, 0, 5032, 5033, 5, 191, 0, 0, 5033, 5034, 5, 355, 0, 0, 5034, 5035, 5, 325, 0, 0, 5035, 5037, 5, 185, 0, 0, 5036, 5038, 3, 748, 374, 0, 5037, 5036, 1, 0, 0, 0, 5037, 5038, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5041, 3, 1418, 709, 0, 5040, 5042, 3, 124, 62, 0, 5041, 5040, 1, 0, 0, 0, 5041, 5042, 1, 0, 0, 0, 5042, 5318, 1, 0, 0, 0, 5043, 5044, 5, 191, 0, 0, 5044, 5045, 5, 355, 0, 0, 5045, 5046, 5, 325, 0, 0, 5046, 5048, 5, 353, 0, 0, 5047, 5049, 3, 748, 374, 0, 5048, 5047, 1, 0, 0, 0, 5048, 5049, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5052, 3, 1418, 709, 0, 5051, 5053, 3, 124, 62, 0, 5052, 5051, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 5318, 1, 0, 0, 0, 5054, 5055, 5, 191, 0, 0, 5055, 5056, 5, 355, 0, 0, 5056, 5057, 5, 325, 0, 0, 5057, 5059, 5, 163, 0, 0, 5058, 5060, 3, 748, 374, 0, 5059, 5058, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5063, 3, 1418, 709, 0, 5062, 5064, 3, 124, 62, 0, 5063, 5062, 1, 0, 0, 0, 5063, 5064, 1, 0, 0, 0, 5064, 5318, 1, 0, 0, 0, 5065, 5066, 5, 191, 0, 0, 5066, 5067, 5, 131, 0, 0, 5067, 5069, 5, 446, 0, 0, 5068, 5070, 3, 748, 374, 0, 5069, 5068, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5073, 3, 1418, 709, 0, 5072, 5074, 3, 124, 62, 0, 5073, 5072, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5318, 1, 0, 0, 0, 5075, 5076, 5, 191, 0, 0, 5076, 5077, 5, 198, 0, 0, 5077, 5079, 5, 357, 0, 0, 5078, 5080, 3, 748, 374, 0, 5079, 5078, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5083, 3, 1418, 709, 0, 5082, 5084, 3, 124, 62, 0, 5083, 5082, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5318, 1, 0, 0, 0, 5085, 5086, 5, 191, 0, 0, 5086, 5088, 5, 204, 0, 0, 5087, 5089, 3, 748, 374, 0, 5088, 5087, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5092, 3, 1418, 709, 0, 5091, 5093, 3, 124, 62, 0, 5092, 5091, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5318, 1, 0, 0, 0, 5094, 5095, 5, 191, 0, 0, 5095, 5096, 5, 63, 0, 0, 5096, 5097, 5, 174, 0, 0, 5097, 5099, 5, 381, 0, 0, 5098, 5100, 3, 748, 374, 0, 5099, 5098, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5103, 3, 1418, 709, 0, 5102, 5104, 3, 124, 62, 0, 5103, 5102, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 5318, 1, 0, 0, 0, 5105, 5107, 5, 191, 0, 0, 5106, 5108, 3, 336, 168, 0, 5107, 5106, 1, 0, 0, 0, 5107, 5108, 1, 0, 0, 0, 5108, 5109, 1, 0, 0, 0, 5109, 5111, 5, 247, 0, 0, 5110, 5112, 3, 748, 374, 0, 5111, 5110, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5115, 3, 1418, 709, 0, 5114, 5116, 3, 124, 62, 0, 5115, 5114, 1, 0, 0, 0, 5115, 5116, 1, 0, 0, 0, 5116, 5318, 1, 0, 0, 0, 5117, 5118, 5, 191, 0, 0, 5118, 5120, 5, 452, 0, 0, 5119, 5121, 3, 748, 374, 0, 5120, 5119, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5124, 3, 1418, 709, 0, 5123, 5125, 3, 124, 62, 0, 5124, 5123, 1, 0, 0, 0, 5124, 5125, 1, 0, 0, 0, 5125, 5318, 1, 0, 0, 0, 5126, 5127, 5, 191, 0, 0, 5127, 5129, 5, 331, 0, 0, 5128, 5130, 3, 748, 374, 0, 5129, 5128, 1, 0, 0, 0, 5129, 5130, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5133, 3, 1418, 709, 0, 5132, 5134, 3, 124, 62, 0, 5133, 5132, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5318, 1, 0, 0, 0, 5135, 5136, 5, 191, 0, 0, 5136, 5138, 5, 323, 0, 0, 5137, 5139, 3, 748, 374, 0, 5138, 5137, 1, 0, 0, 0, 5138, 5139, 1, 0, 0, 0, 5139, 5140, 1, 0, 0, 0, 5140, 5142, 3, 1396, 698, 0, 5141, 5143, 3, 124, 62, 0, 5142, 5141, 1, 0, 0, 0, 5142, 5143, 1, 0, 0, 0, 5143, 5318, 1, 0, 0, 0, 5144, 5145, 5, 191, 0, 0, 5145, 5147, 5, 445, 0, 0, 5146, 5148, 3, 748, 374, 0, 5147, 5146, 1, 0, 0, 0, 5147, 5148, 1, 0, 0, 0, 5148, 5149, 1, 0, 0, 0, 5149, 5150, 3, 1438, 719, 0, 5150, 5151, 5, 80, 0, 0, 5151, 5153, 3, 558, 279, 0, 5152, 5154, 3, 124, 62, 0, 5153, 5152, 1, 0, 0, 0, 5153, 5154, 1, 0, 0, 0, 5154, 5318, 1, 0, 0, 0, 5155, 5156, 5, 191, 0, 0, 5156, 5158, 5, 321, 0, 0, 5157, 5159, 3, 748, 374, 0, 5158, 5157, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5160, 1, 0, 0, 0, 5160, 5161, 3, 1438, 719, 0, 5161, 5162, 5, 80, 0, 0, 5162, 5164, 3, 558, 279, 0, 5163, 5165, 3, 124, 62, 0, 5164, 5163, 1, 0, 0, 0, 5164, 5165, 1, 0, 0, 0, 5165, 5318, 1, 0, 0, 0, 5166, 5167, 5, 191, 0, 0, 5167, 5169, 5, 357, 0, 0, 5168, 5170, 3, 748, 374, 0, 5169, 5168, 1, 0, 0, 0, 5169, 5170, 1, 0, 0, 0, 5170, 5171, 1, 0, 0, 0, 5171, 5172, 3, 1438, 719, 0, 5172, 5173, 5, 80, 0, 0, 5173, 5175, 3, 558, 279, 0, 5174, 5176, 3, 124, 62, 0, 5175, 5174, 1, 0, 0, 0, 5175, 5176, 1, 0, 0, 0, 5176, 5318, 1, 0, 0, 0, 5177, 5178, 5, 191, 0, 0, 5178, 5180, 5, 360, 0, 0, 5179, 5181, 3, 748, 374, 0, 5180, 5179, 1, 0, 0, 0, 5180, 5181, 1, 0, 0, 0, 5181, 5182, 1, 0, 0, 0, 5182, 5184, 3, 562, 281, 0, 5183, 5185, 3, 124, 62, 0, 5184, 5183, 1, 0, 0, 0, 5184, 5185, 1, 0, 0, 0, 5185, 5318, 1, 0, 0, 0, 5186, 5187, 5, 191, 0, 0, 5187, 5189, 5, 189, 0, 0, 5188, 5190, 3, 748, 374, 0, 5189, 5188, 1, 0, 0, 0, 5189, 5190, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5193, 3, 562, 281, 0, 5192, 5194, 3, 124, 62, 0, 5193, 5192, 1, 0, 0, 0, 5193, 5194, 1, 0, 0, 0, 5194, 5318, 1, 0, 0, 0, 5195, 5196, 5, 191, 0, 0, 5196, 5197, 5, 226, 0, 0, 5197, 5199, 5, 109, 0, 0, 5198, 5200, 3, 748, 374, 0, 5199, 5198, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5203, 3, 550, 275, 0, 5202, 5204, 3, 124, 62, 0, 5203, 5202, 1, 0, 0, 0, 5203, 5204, 1, 0, 0, 0, 5204, 5318, 1, 0, 0, 0, 5205, 5206, 5, 191, 0, 0, 5206, 5208, 5, 41, 0, 0, 5207, 5209, 3, 748, 374, 0, 5208, 5207, 1, 0, 0, 0, 5208, 5209, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5211, 5, 2, 0, 0, 5211, 5212, 3, 1170, 585, 0, 5212, 5213, 5, 36, 0, 0, 5213, 5214, 3, 1170, 585, 0, 5214, 5216, 5, 3, 0, 0, 5215, 5217, 3, 124, 62, 0, 5216, 5215, 1, 0, 0, 0, 5216, 5217, 1, 0, 0, 0, 5217, 5318, 1, 0, 0, 0, 5218, 5219, 5, 191, 0, 0, 5219, 5220, 5, 278, 0, 0, 5220, 5222, 5, 156, 0, 0, 5221, 5223, 3, 748, 374, 0, 5222, 5221, 1, 0, 0, 0, 5222, 5223, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5225, 3, 558, 279, 0, 5225, 5226, 5, 100, 0, 0, 5226, 5228, 3, 1438, 719, 0, 5227, 5229, 3, 124, 62, 0, 5228, 5227, 1, 0, 0, 0, 5228, 5229, 1, 0, 0, 0, 5229, 5318, 1, 0, 0, 0, 5230, 5231, 5, 191, 0, 0, 5231, 5232, 5, 278, 0, 0, 5232, 5234, 5, 206, 0, 0, 5233, 5235, 3, 748, 374, 0, 5234, 5233, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, 5236, 1, 0, 0, 0, 5236, 5237, 3, 558, 279, 0, 5237, 5238, 5, 100, 0, 0, 5238, 5240, 3, 1438, 719, 0, 5239, 5241, 3, 124, 62, 0, 5240, 5239, 1, 0, 0, 0, 5240, 5241, 1, 0, 0, 0, 5241, 5318, 1, 0, 0, 0, 5242, 5243, 5, 191, 0, 0, 5243, 5244, 5, 281, 0, 0, 5244, 5245, 5, 147, 0, 0, 5245, 5247, 3, 1474, 737, 0, 5246, 5248, 3, 124, 62, 0, 5247, 5246, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5318, 1, 0, 0, 0, 5249, 5250, 5, 191, 0, 0, 5250, 5252, 5, 376, 0, 0, 5251, 5253, 3, 748, 374, 0, 5252, 5251, 1, 0, 0, 0, 5252, 5253, 1, 0, 0, 0, 5253, 5254, 1, 0, 0, 0, 5254, 5256, 3, 542, 271, 0, 5255, 5257, 3, 124, 62, 0, 5256, 5255, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 5318, 1, 0, 0, 0, 5258, 5259, 5, 191, 0, 0, 5259, 5261, 5, 451, 0, 0, 5260, 5262, 3, 748, 374, 0, 5261, 5260, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5265, 3, 1438, 719, 0, 5264, 5266, 3, 124, 62, 0, 5265, 5264, 1, 0, 0, 0, 5265, 5266, 1, 0, 0, 0, 5266, 5318, 1, 0, 0, 0, 5267, 5268, 5, 191, 0, 0, 5268, 5270, 5, 351, 0, 0, 5269, 5271, 3, 748, 374, 0, 5270, 5269, 1, 0, 0, 0, 5270, 5271, 1, 0, 0, 0, 5271, 5272, 1, 0, 0, 0, 5272, 5318, 3, 1404, 702, 0, 5273, 5274, 5, 191, 0, 0, 5274, 5276, 5, 443, 0, 0, 5275, 5277, 3, 748, 374, 0, 5276, 5275, 1, 0, 0, 0, 5276, 5277, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5279, 5, 62, 0, 0, 5279, 5280, 3, 1170, 585, 0, 5280, 5281, 5, 247, 0, 0, 5281, 5283, 3, 1438, 719, 0, 5282, 5284, 3, 124, 62, 0, 5283, 5282, 1, 0, 0, 0, 5283, 5284, 1, 0, 0, 0, 5284, 5318, 1, 0, 0, 0, 5285, 5286, 5, 191, 0, 0, 5286, 5288, 7, 33, 0, 0, 5287, 5289, 3, 748, 374, 0, 5288, 5287, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5290, 1, 0, 0, 0, 5290, 5318, 3, 1474, 737, 0, 5291, 5292, 5, 191, 0, 0, 5292, 5293, 5, 99, 0, 0, 5293, 5295, 5, 257, 0, 0, 5294, 5296, 3, 748, 374, 0, 5295, 5294, 1, 0, 0, 0, 5295, 5296, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 5298, 5, 62, 0, 0, 5298, 5299, 3, 402, 201, 0, 5299, 5300, 5, 331, 0, 0, 5300, 5301, 3, 1438, 719, 0, 5301, 5318, 1, 0, 0, 0, 5302, 5303, 5, 191, 0, 0, 5303, 5305, 5, 175, 0, 0, 5304, 5306, 3, 748, 374, 0, 5305, 5304, 1, 0, 0, 0, 5305, 5306, 1, 0, 0, 0, 5306, 5307, 1, 0, 0, 0, 5307, 5315, 3, 1422, 711, 0, 5308, 5310, 3, 14, 7, 0, 5309, 5308, 1, 0, 0, 0, 5309, 5310, 1, 0, 0, 0, 5310, 5311, 1, 0, 0, 0, 5311, 5312, 5, 2, 0, 0, 5312, 5313, 3, 862, 431, 0, 5313, 5314, 5, 3, 0, 0, 5314, 5316, 1, 0, 0, 0, 5315, 5309, 1, 0, 0, 0, 5315, 5316, 1, 0, 0, 0, 5316, 5318, 1, 0, 0, 0, 5317, 4938, 1, 0, 0, 0, 5317, 4947, 1, 0, 0, 0, 5317, 4956, 1, 0, 0, 0, 5317, 4965, 1, 0, 0, 0, 5317, 4975, 1, 0, 0, 0, 5317, 4984, 1, 0, 0, 0, 5317, 4994, 1, 0, 0, 0, 5317, 5003, 1, 0, 0, 0, 5317, 5012, 1, 0, 0, 0, 5317, 5021, 1, 0, 0, 0, 5317, 5032, 1, 0, 0, 0, 5317, 5043, 1, 0, 0, 0, 5317, 5054, 1, 0, 0, 0, 5317, 5065, 1, 0, 0, 0, 5317, 5075, 1, 0, 0, 0, 5317, 5085, 1, 0, 0, 0, 5317, 5094, 1, 0, 0, 0, 5317, 5105, 1, 0, 0, 0, 5317, 5117, 1, 0, 0, 0, 5317, 5126, 1, 0, 0, 0, 5317, 5135, 1, 0, 0, 0, 5317, 5144, 1, 0, 0, 0, 5317, 5155, 1, 0, 0, 0, 5317, 5166, 1, 0, 0, 0, 5317, 5177, 1, 0, 0, 0, 5317, 5186, 1, 0, 0, 0, 5317, 5195, 1, 0, 0, 0, 5317, 5205, 1, 0, 0, 0, 5317, 5218, 1, 0, 0, 0, 5317, 5230, 1, 0, 0, 0, 5317, 5242, 1, 0, 0, 0, 5317, 5249, 1, 0, 0, 0, 5317, 5258, 1, 0, 0, 0, 5317, 5267, 1, 0, 0, 0, 5317, 5273, 1, 0, 0, 0, 5317, 5285, 1, 0, 0, 0, 5317, 5291, 1, 0, 0, 0, 5317, 5302, 1, 0, 0, 0, 5318, 541, 1, 0, 0, 0, 5319, 5324, 3, 1412, 706, 0, 5320, 5321, 5, 6, 0, 0, 5321, 5323, 3, 1412, 706, 0, 5322, 5320, 1, 0, 0, 0, 5323, 5326, 1, 0, 0, 0, 5324, 5322, 1, 0, 0, 0, 5324, 5325, 1, 0, 0, 0, 5325, 543, 1, 0, 0, 0, 5326, 5324, 1, 0, 0, 0, 5327, 5328, 5, 92, 0, 0, 5328, 5364, 3, 1408, 704, 0, 5329, 5330, 5, 328, 0, 0, 5330, 5364, 3, 558, 279, 0, 5331, 5332, 5, 376, 0, 0, 5332, 5364, 3, 1412, 706, 0, 5333, 5334, 5, 259, 0, 0, 5334, 5335, 5, 376, 0, 0, 5335, 5364, 3, 1412, 706, 0, 5336, 5337, 5, 226, 0, 0, 5337, 5364, 3, 558, 279, 0, 5338, 5339, 5, 63, 0, 0, 5339, 5340, 5, 92, 0, 0, 5340, 5364, 3, 1408, 704, 0, 5341, 5342, 5, 108, 0, 0, 5342, 5364, 3, 558, 279, 0, 5343, 5344, 5, 168, 0, 0, 5344, 5364, 3, 558, 279, 0, 5345, 5346, 5, 342, 0, 0, 5346, 5364, 3, 558, 279, 0, 5347, 5348, 5, 355, 0, 0, 5348, 5349, 5, 325, 0, 0, 5349, 5350, 5, 283, 0, 0, 5350, 5364, 3, 558, 279, 0, 5351, 5352, 5, 355, 0, 0, 5352, 5353, 5, 325, 0, 0, 5353, 5354, 5, 185, 0, 0, 5354, 5364, 3, 558, 279, 0, 5355, 5356, 5, 355, 0, 0, 5356, 5357, 5, 325, 0, 0, 5357, 5358, 5, 353, 0, 0, 5358, 5364, 3, 558, 279, 0, 5359, 5360, 5, 355, 0, 0, 5360, 5361, 5, 325, 0, 0, 5361, 5362, 5, 163, 0, 0, 5362, 5364, 3, 558, 279, 0, 5363, 5327, 1, 0, 0, 0, 5363, 5329, 1, 0, 0, 0, 5363, 5331, 1, 0, 0, 0, 5363, 5333, 1, 0, 0, 0, 5363, 5336, 1, 0, 0, 0, 5363, 5338, 1, 0, 0, 0, 5363, 5341, 1, 0, 0, 0, 5363, 5343, 1, 0, 0, 0, 5363, 5345, 1, 0, 0, 0, 5363, 5347, 1, 0, 0, 0, 5363, 5351, 1, 0, 0, 0, 5363, 5355, 1, 0, 0, 0, 5363, 5359, 1, 0, 0, 0, 5364, 545, 1, 0, 0, 0, 5365, 5366, 5, 131, 0, 0, 5366, 5367, 5, 446, 0, 0, 5367, 5397, 3, 1438, 719, 0, 5368, 5369, 5, 198, 0, 0, 5369, 5370, 5, 357, 0, 0, 5370, 5397, 3, 1438, 719, 0, 5371, 5372, 5, 204, 0, 0, 5372, 5397, 3, 1438, 719, 0, 5373, 5374, 5, 63, 0, 0, 5374, 5375, 5, 174, 0, 0, 5375, 5376, 5, 381, 0, 0, 5376, 5397, 3, 1438, 719, 0, 5377, 5379, 3, 336, 168, 0, 5378, 5377, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5380, 1, 0, 0, 0, 5380, 5381, 5, 247, 0, 0, 5381, 5397, 3, 1438, 719, 0, 5382, 5383, 5, 452, 0, 0, 5383, 5397, 3, 1438, 719, 0, 5384, 5385, 5, 323, 0, 0, 5385, 5397, 3, 1424, 712, 0, 5386, 5387, 5, 331, 0, 0, 5387, 5397, 3, 1438, 719, 0, 5388, 5389, 5, 175, 0, 0, 5389, 5397, 3, 1422, 711, 0, 5390, 5391, 5, 318, 0, 0, 5391, 5397, 3, 1438, 719, 0, 5392, 5393, 5, 451, 0, 0, 5393, 5397, 3, 1438, 719, 0, 5394, 5395, 5, 351, 0, 0, 5395, 5397, 3, 1404, 702, 0, 5396, 5365, 1, 0, 0, 0, 5396, 5368, 1, 0, 0, 0, 5396, 5371, 1, 0, 0, 0, 5396, 5373, 1, 0, 0, 0, 5396, 5378, 1, 0, 0, 0, 5396, 5382, 1, 0, 0, 0, 5396, 5384, 1, 0, 0, 0, 5396, 5386, 1, 0, 0, 0, 5396, 5388, 1, 0, 0, 0, 5396, 5390, 1, 0, 0, 0, 5396, 5392, 1, 0, 0, 0, 5396, 5394, 1, 0, 0, 0, 5397, 547, 1, 0, 0, 0, 5398, 5399, 7, 34, 0, 0, 5399, 549, 1, 0, 0, 0, 5400, 5405, 3, 558, 279, 0, 5401, 5402, 5, 6, 0, 0, 5402, 5404, 3, 558, 279, 0, 5403, 5401, 1, 0, 0, 0, 5404, 5407, 1, 0, 0, 0, 5405, 5403, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 551, 1, 0, 0, 0, 5407, 5405, 1, 0, 0, 0, 5408, 5409, 3, 1408, 704, 0, 5409, 5410, 5, 11, 0, 0, 5410, 5411, 3, 1434, 717, 0, 5411, 553, 1, 0, 0, 0, 5412, 5413, 3, 556, 278, 0, 5413, 5414, 5, 11, 0, 0, 5414, 5415, 3, 1434, 717, 0, 5415, 555, 1, 0, 0, 0, 5416, 5418, 3, 1476, 738, 0, 5417, 5419, 3, 560, 280, 0, 5418, 5417, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 557, 1, 0, 0, 0, 5420, 5422, 3, 1476, 738, 0, 5421, 5423, 3, 560, 280, 0, 5422, 5421, 1, 0, 0, 0, 5422, 5423, 1, 0, 0, 0, 5423, 559, 1, 0, 0, 0, 5424, 5425, 5, 11, 0, 0, 5425, 5427, 3, 1440, 720, 0, 5426, 5424, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5426, 1, 0, 0, 0, 5428, 5429, 1, 0, 0, 0, 5429, 561, 1, 0, 0, 0, 5430, 5435, 3, 1170, 585, 0, 5431, 5432, 5, 6, 0, 0, 5432, 5434, 3, 1170, 585, 0, 5433, 5431, 1, 0, 0, 0, 5434, 5437, 1, 0, 0, 0, 5435, 5433, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 563, 1, 0, 0, 0, 5437, 5435, 1, 0, 0, 0, 5438, 5440, 5, 358, 0, 0, 5439, 5441, 3, 1036, 518, 0, 5440, 5439, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5442, 1, 0, 0, 0, 5442, 5444, 3, 1126, 563, 0, 5443, 5445, 3, 566, 283, 0, 5444, 5443, 1, 0, 0, 0, 5444, 5445, 1, 0, 0, 0, 5445, 5447, 1, 0, 0, 0, 5446, 5448, 3, 124, 62, 0, 5447, 5446, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5448, 565, 1, 0, 0, 0, 5449, 5450, 5, 167, 0, 0, 5450, 5454, 5, 219, 0, 0, 5451, 5452, 5, 314, 0, 0, 5452, 5454, 5, 219, 0, 0, 5453, 5449, 1, 0, 0, 0, 5453, 5451, 1, 0, 0, 0, 5454, 567, 1, 0, 0, 0, 5455, 5456, 5, 159, 0, 0, 5456, 5457, 5, 80, 0, 0, 5457, 5458, 3, 544, 272, 0, 5458, 5459, 5, 116, 0, 0, 5459, 5460, 3, 570, 285, 0, 5460, 5621, 1, 0, 0, 0, 5461, 5462, 5, 159, 0, 0, 5462, 5463, 5, 80, 0, 0, 5463, 5464, 5, 44, 0, 0, 5464, 5465, 3, 554, 277, 0, 5465, 5466, 5, 116, 0, 0, 5466, 5467, 3, 570, 285, 0, 5467, 5621, 1, 0, 0, 0, 5468, 5469, 5, 159, 0, 0, 5469, 5470, 5, 80, 0, 0, 5470, 5471, 3, 546, 273, 0, 5471, 5472, 5, 116, 0, 0, 5472, 5473, 3, 570, 285, 0, 5473, 5621, 1, 0, 0, 0, 5474, 5475, 5, 159, 0, 0, 5475, 5476, 5, 80, 0, 0, 5476, 5477, 5, 360, 0, 0, 5477, 5478, 3, 1170, 585, 0, 5478, 5479, 5, 116, 0, 0, 5479, 5480, 3, 570, 285, 0, 5480, 5621, 1, 0, 0, 0, 5481, 5482, 5, 159, 0, 0, 5482, 5483, 5, 80, 0, 0, 5483, 5484, 5, 189, 0, 0, 5484, 5485, 3, 1170, 585, 0, 5485, 5486, 5, 116, 0, 0, 5486, 5487, 3, 570, 285, 0, 5487, 5621, 1, 0, 0, 0, 5488, 5489, 5, 159, 0, 0, 5489, 5490, 5, 80, 0, 0, 5490, 5491, 5, 136, 0, 0, 5491, 5492, 3, 698, 349, 0, 5492, 5493, 5, 116, 0, 0, 5493, 5494, 3, 570, 285, 0, 5494, 5621, 1, 0, 0, 0, 5495, 5496, 5, 159, 0, 0, 5496, 5497, 5, 80, 0, 0, 5497, 5498, 5, 211, 0, 0, 5498, 5499, 3, 674, 337, 0, 5499, 5500, 5, 116, 0, 0, 5500, 5501, 3, 570, 285, 0, 5501, 5621, 1, 0, 0, 0, 5502, 5503, 5, 159, 0, 0, 5503, 5504, 5, 80, 0, 0, 5504, 5505, 5, 278, 0, 0, 5505, 5506, 3, 736, 368, 0, 5506, 5507, 5, 116, 0, 0, 5507, 5508, 3, 570, 285, 0, 5508, 5621, 1, 0, 0, 0, 5509, 5510, 5, 159, 0, 0, 5510, 5511, 5, 80, 0, 0, 5511, 5512, 5, 45, 0, 0, 5512, 5513, 3, 1438, 719, 0, 5513, 5514, 5, 80, 0, 0, 5514, 5515, 3, 1408, 704, 0, 5515, 5516, 5, 116, 0, 0, 5516, 5517, 3, 570, 285, 0, 5517, 5621, 1, 0, 0, 0, 5518, 5519, 5, 159, 0, 0, 5519, 5520, 5, 80, 0, 0, 5520, 5521, 5, 45, 0, 0, 5521, 5522, 3, 1438, 719, 0, 5522, 5524, 5, 80, 0, 0, 5523, 5525, 5, 189, 0, 0, 5524, 5523, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 5527, 3, 558, 279, 0, 5527, 5528, 5, 116, 0, 0, 5528, 5529, 3, 570, 285, 0, 5529, 5621, 1, 0, 0, 0, 5530, 5531, 5, 159, 0, 0, 5531, 5532, 5, 80, 0, 0, 5532, 5533, 5, 445, 0, 0, 5533, 5534, 3, 1438, 719, 0, 5534, 5535, 5, 80, 0, 0, 5535, 5536, 3, 558, 279, 0, 5536, 5537, 5, 116, 0, 0, 5537, 5538, 3, 570, 285, 0, 5538, 5621, 1, 0, 0, 0, 5539, 5540, 5, 159, 0, 0, 5540, 5541, 5, 80, 0, 0, 5541, 5542, 5, 321, 0, 0, 5542, 5543, 3, 1438, 719, 0, 5543, 5544, 5, 80, 0, 0, 5544, 5545, 3, 558, 279, 0, 5545, 5546, 5, 116, 0, 0, 5546, 5547, 3, 570, 285, 0, 5547, 5621, 1, 0, 0, 0, 5548, 5549, 5, 159, 0, 0, 5549, 5550, 5, 80, 0, 0, 5550, 5551, 5, 357, 0, 0, 5551, 5552, 3, 1438, 719, 0, 5552, 5553, 5, 80, 0, 0, 5553, 5554, 3, 558, 279, 0, 5554, 5555, 5, 116, 0, 0, 5555, 5556, 3, 570, 285, 0, 5556, 5621, 1, 0, 0, 0, 5557, 5558, 5, 159, 0, 0, 5558, 5559, 5, 80, 0, 0, 5559, 5560, 5, 296, 0, 0, 5560, 5561, 3, 670, 335, 0, 5561, 5562, 5, 116, 0, 0, 5562, 5563, 3, 570, 285, 0, 5563, 5621, 1, 0, 0, 0, 5564, 5565, 5, 159, 0, 0, 5565, 5566, 5, 80, 0, 0, 5566, 5567, 5, 442, 0, 0, 5567, 5568, 3, 666, 333, 0, 5568, 5569, 5, 116, 0, 0, 5569, 5570, 3, 570, 285, 0, 5570, 5621, 1, 0, 0, 0, 5571, 5572, 5, 159, 0, 0, 5572, 5573, 5, 80, 0, 0, 5573, 5574, 5, 443, 0, 0, 5574, 5575, 5, 62, 0, 0, 5575, 5576, 3, 1170, 585, 0, 5576, 5577, 5, 247, 0, 0, 5577, 5578, 3, 1438, 719, 0, 5578, 5579, 5, 116, 0, 0, 5579, 5580, 3, 570, 285, 0, 5580, 5621, 1, 0, 0, 0, 5581, 5582, 5, 159, 0, 0, 5582, 5583, 5, 80, 0, 0, 5583, 5584, 5, 278, 0, 0, 5584, 5585, 5, 156, 0, 0, 5585, 5586, 3, 558, 279, 0, 5586, 5587, 5, 100, 0, 0, 5587, 5588, 3, 1438, 719, 0, 5588, 5589, 5, 116, 0, 0, 5589, 5590, 3, 570, 285, 0, 5590, 5621, 1, 0, 0, 0, 5591, 5592, 5, 159, 0, 0, 5592, 5593, 5, 80, 0, 0, 5593, 5594, 5, 278, 0, 0, 5594, 5595, 5, 206, 0, 0, 5595, 5596, 3, 558, 279, 0, 5596, 5597, 5, 100, 0, 0, 5597, 5598, 3, 1438, 719, 0, 5598, 5599, 5, 116, 0, 0, 5599, 5600, 3, 570, 285, 0, 5600, 5621, 1, 0, 0, 0, 5601, 5602, 5, 159, 0, 0, 5602, 5603, 5, 80, 0, 0, 5603, 5604, 5, 248, 0, 0, 5604, 5605, 5, 274, 0, 0, 5605, 5606, 3, 320, 160, 0, 5606, 5607, 5, 116, 0, 0, 5607, 5608, 3, 570, 285, 0, 5608, 5621, 1, 0, 0, 0, 5609, 5610, 5, 159, 0, 0, 5610, 5611, 5, 80, 0, 0, 5611, 5612, 5, 41, 0, 0, 5612, 5613, 5, 2, 0, 0, 5613, 5614, 3, 1170, 585, 0, 5614, 5615, 5, 36, 0, 0, 5615, 5616, 3, 1170, 585, 0, 5616, 5617, 5, 3, 0, 0, 5617, 5618, 5, 116, 0, 0, 5618, 5619, 3, 570, 285, 0, 5619, 5621, 1, 0, 0, 0, 5620, 5455, 1, 0, 0, 0, 5620, 5461, 1, 0, 0, 0, 5620, 5468, 1, 0, 0, 0, 5620, 5474, 1, 0, 0, 0, 5620, 5481, 1, 0, 0, 0, 5620, 5488, 1, 0, 0, 0, 5620, 5495, 1, 0, 0, 0, 5620, 5502, 1, 0, 0, 0, 5620, 5509, 1, 0, 0, 0, 5620, 5518, 1, 0, 0, 0, 5620, 5530, 1, 0, 0, 0, 5620, 5539, 1, 0, 0, 0, 5620, 5548, 1, 0, 0, 0, 5620, 5557, 1, 0, 0, 0, 5620, 5564, 1, 0, 0, 0, 5620, 5571, 1, 0, 0, 0, 5620, 5581, 1, 0, 0, 0, 5620, 5591, 1, 0, 0, 0, 5620, 5601, 1, 0, 0, 0, 5620, 5609, 1, 0, 0, 0, 5621, 569, 1, 0, 0, 0, 5622, 5625, 3, 1460, 730, 0, 5623, 5625, 5, 78, 0, 0, 5624, 5622, 1, 0, 0, 0, 5624, 5623, 1, 0, 0, 0, 5625, 571, 1, 0, 0, 0, 5626, 5627, 5, 327, 0, 0, 5627, 5629, 5, 246, 0, 0, 5628, 5630, 3, 574, 287, 0, 5629, 5628, 1, 0, 0, 0, 5629, 5630, 1, 0, 0, 0, 5630, 5631, 1, 0, 0, 0, 5631, 5632, 5, 80, 0, 0, 5632, 5633, 3, 544, 272, 0, 5633, 5634, 5, 116, 0, 0, 5634, 5635, 3, 576, 288, 0, 5635, 5736, 1, 0, 0, 0, 5636, 5637, 5, 327, 0, 0, 5637, 5639, 5, 246, 0, 0, 5638, 5640, 3, 574, 287, 0, 5639, 5638, 1, 0, 0, 0, 5639, 5640, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5642, 5, 80, 0, 0, 5642, 5643, 5, 44, 0, 0, 5643, 5644, 3, 552, 276, 0, 5644, 5645, 5, 116, 0, 0, 5645, 5646, 3, 576, 288, 0, 5646, 5736, 1, 0, 0, 0, 5647, 5648, 5, 327, 0, 0, 5648, 5650, 5, 246, 0, 0, 5649, 5651, 3, 574, 287, 0, 5650, 5649, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5652, 1, 0, 0, 0, 5652, 5653, 5, 80, 0, 0, 5653, 5654, 3, 546, 273, 0, 5654, 5655, 5, 116, 0, 0, 5655, 5656, 3, 576, 288, 0, 5656, 5736, 1, 0, 0, 0, 5657, 5658, 5, 327, 0, 0, 5658, 5660, 5, 246, 0, 0, 5659, 5661, 3, 574, 287, 0, 5660, 5659, 1, 0, 0, 0, 5660, 5661, 1, 0, 0, 0, 5661, 5662, 1, 0, 0, 0, 5662, 5663, 5, 80, 0, 0, 5663, 5664, 5, 360, 0, 0, 5664, 5665, 3, 1170, 585, 0, 5665, 5666, 5, 116, 0, 0, 5666, 5667, 3, 576, 288, 0, 5667, 5736, 1, 0, 0, 0, 5668, 5669, 5, 327, 0, 0, 5669, 5671, 5, 246, 0, 0, 5670, 5672, 3, 574, 287, 0, 5671, 5670, 1, 0, 0, 0, 5671, 5672, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5674, 5, 80, 0, 0, 5674, 5675, 5, 189, 0, 0, 5675, 5676, 3, 1170, 585, 0, 5676, 5677, 5, 116, 0, 0, 5677, 5678, 3, 576, 288, 0, 5678, 5736, 1, 0, 0, 0, 5679, 5680, 5, 327, 0, 0, 5680, 5682, 5, 246, 0, 0, 5681, 5683, 3, 574, 287, 0, 5682, 5681, 1, 0, 0, 0, 5682, 5683, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5685, 5, 80, 0, 0, 5685, 5686, 5, 136, 0, 0, 5686, 5687, 3, 698, 349, 0, 5687, 5688, 5, 116, 0, 0, 5688, 5689, 3, 576, 288, 0, 5689, 5736, 1, 0, 0, 0, 5690, 5691, 5, 327, 0, 0, 5691, 5693, 5, 246, 0, 0, 5692, 5694, 3, 574, 287, 0, 5693, 5692, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5695, 1, 0, 0, 0, 5695, 5696, 5, 80, 0, 0, 5696, 5697, 5, 211, 0, 0, 5697, 5698, 3, 674, 337, 0, 5698, 5699, 5, 116, 0, 0, 5699, 5700, 3, 576, 288, 0, 5700, 5736, 1, 0, 0, 0, 5701, 5702, 5, 327, 0, 0, 5702, 5704, 5, 246, 0, 0, 5703, 5705, 3, 574, 287, 0, 5704, 5703, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 5707, 5, 80, 0, 0, 5707, 5708, 5, 248, 0, 0, 5708, 5709, 5, 274, 0, 0, 5709, 5710, 3, 320, 160, 0, 5710, 5711, 5, 116, 0, 0, 5711, 5712, 3, 576, 288, 0, 5712, 5736, 1, 0, 0, 0, 5713, 5714, 5, 327, 0, 0, 5714, 5716, 5, 246, 0, 0, 5715, 5717, 3, 574, 287, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5719, 5, 80, 0, 0, 5719, 5720, 5, 296, 0, 0, 5720, 5721, 3, 670, 335, 0, 5721, 5722, 5, 116, 0, 0, 5722, 5723, 3, 576, 288, 0, 5723, 5736, 1, 0, 0, 0, 5724, 5725, 5, 327, 0, 0, 5725, 5727, 5, 246, 0, 0, 5726, 5728, 3, 574, 287, 0, 5727, 5726, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5730, 5, 80, 0, 0, 5730, 5731, 5, 442, 0, 0, 5731, 5732, 3, 666, 333, 0, 5732, 5733, 5, 116, 0, 0, 5733, 5734, 3, 576, 288, 0, 5734, 5736, 1, 0, 0, 0, 5735, 5626, 1, 0, 0, 0, 5735, 5636, 1, 0, 0, 0, 5735, 5647, 1, 0, 0, 0, 5735, 5657, 1, 0, 0, 0, 5735, 5668, 1, 0, 0, 0, 5735, 5679, 1, 0, 0, 0, 5735, 5690, 1, 0, 0, 0, 5735, 5701, 1, 0, 0, 0, 5735, 5713, 1, 0, 0, 0, 5735, 5724, 1, 0, 0, 0, 5736, 573, 1, 0, 0, 0, 5737, 5738, 5, 62, 0, 0, 5738, 5739, 3, 80, 40, 0, 5739, 575, 1, 0, 0, 0, 5740, 5743, 3, 1460, 730, 0, 5741, 5743, 5, 78, 0, 0, 5742, 5740, 1, 0, 0, 0, 5742, 5741, 1, 0, 0, 0, 5743, 577, 1, 0, 0, 0, 5744, 5745, 5, 61, 0, 0, 5745, 5749, 3, 580, 290, 0, 5746, 5747, 5, 265, 0, 0, 5747, 5749, 3, 580, 290, 0, 5748, 5744, 1, 0, 0, 0, 5748, 5746, 1, 0, 0, 0, 5749, 579, 1, 0, 0, 0, 5750, 5836, 3, 996, 498, 0, 5751, 5752, 3, 582, 291, 0, 5752, 5753, 3, 996, 498, 0, 5753, 5836, 1, 0, 0, 0, 5754, 5756, 5, 268, 0, 0, 5755, 5757, 3, 584, 292, 0, 5756, 5755, 1, 0, 0, 0, 5756, 5757, 1, 0, 0, 0, 5757, 5758, 1, 0, 0, 0, 5758, 5836, 3, 996, 498, 0, 5759, 5761, 5, 293, 0, 0, 5760, 5762, 3, 584, 292, 0, 5761, 5760, 1, 0, 0, 0, 5761, 5762, 1, 0, 0, 0, 5762, 5763, 1, 0, 0, 0, 5763, 5836, 3, 996, 498, 0, 5764, 5766, 5, 207, 0, 0, 5765, 5767, 3, 584, 292, 0, 5766, 5765, 1, 0, 0, 0, 5766, 5767, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 5836, 3, 996, 498, 0, 5769, 5771, 5, 249, 0, 0, 5770, 5772, 3, 584, 292, 0, 5771, 5770, 1, 0, 0, 0, 5771, 5772, 1, 0, 0, 0, 5772, 5773, 1, 0, 0, 0, 5773, 5836, 3, 996, 498, 0, 5774, 5775, 5, 130, 0, 0, 5775, 5777, 3, 1466, 733, 0, 5776, 5778, 3, 584, 292, 0, 5777, 5776, 1, 0, 0, 0, 5777, 5778, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 5780, 3, 996, 498, 0, 5780, 5836, 1, 0, 0, 0, 5781, 5782, 5, 307, 0, 0, 5782, 5784, 3, 1466, 733, 0, 5783, 5785, 3, 584, 292, 0, 5784, 5783, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 5786, 1, 0, 0, 0, 5786, 5787, 3, 996, 498, 0, 5787, 5836, 1, 0, 0, 0, 5788, 5790, 3, 1466, 733, 0, 5789, 5791, 3, 584, 292, 0, 5790, 5789, 1, 0, 0, 0, 5790, 5791, 1, 0, 0, 0, 5791, 5792, 1, 0, 0, 0, 5792, 5793, 3, 996, 498, 0, 5793, 5836, 1, 0, 0, 0, 5794, 5796, 5, 30, 0, 0, 5795, 5797, 3, 584, 292, 0, 5796, 5795, 1, 0, 0, 0, 5796, 5797, 1, 0, 0, 0, 5797, 5798, 1, 0, 0, 0, 5798, 5836, 3, 996, 498, 0, 5799, 5801, 5, 210, 0, 0, 5800, 5802, 3, 584, 292, 0, 5801, 5800, 1, 0, 0, 0, 5801, 5802, 1, 0, 0, 0, 5802, 5803, 1, 0, 0, 0, 5803, 5836, 3, 996, 498, 0, 5804, 5805, 5, 210, 0, 0, 5805, 5807, 3, 1466, 733, 0, 5806, 5808, 3, 584, 292, 0, 5807, 5806, 1, 0, 0, 0, 5807, 5808, 1, 0, 0, 0, 5808, 5809, 1, 0, 0, 0, 5809, 5810, 3, 996, 498, 0, 5810, 5836, 1, 0, 0, 0, 5811, 5812, 5, 210, 0, 0, 5812, 5814, 5, 30, 0, 0, 5813, 5815, 3, 584, 292, 0, 5814, 5813, 1, 0, 0, 0, 5814, 5815, 1, 0, 0, 0, 5815, 5816, 1, 0, 0, 0, 5816, 5836, 3, 996, 498, 0, 5817, 5819, 5, 144, 0, 0, 5818, 5820, 3, 584, 292, 0, 5819, 5818, 1, 0, 0, 0, 5819, 5820, 1, 0, 0, 0, 5820, 5821, 1, 0, 0, 0, 5821, 5836, 3, 996, 498, 0, 5822, 5823, 5, 144, 0, 0, 5823, 5825, 3, 1466, 733, 0, 5824, 5826, 3, 584, 292, 0, 5825, 5824, 1, 0, 0, 0, 5825, 5826, 1, 0, 0, 0, 5826, 5827, 1, 0, 0, 0, 5827, 5828, 3, 996, 498, 0, 5828, 5836, 1, 0, 0, 0, 5829, 5830, 5, 144, 0, 0, 5830, 5832, 5, 30, 0, 0, 5831, 5833, 3, 584, 292, 0, 5832, 5831, 1, 0, 0, 0, 5832, 5833, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5836, 3, 996, 498, 0, 5835, 5750, 1, 0, 0, 0, 5835, 5751, 1, 0, 0, 0, 5835, 5754, 1, 0, 0, 0, 5835, 5759, 1, 0, 0, 0, 5835, 5764, 1, 0, 0, 0, 5835, 5769, 1, 0, 0, 0, 5835, 5774, 1, 0, 0, 0, 5835, 5781, 1, 0, 0, 0, 5835, 5788, 1, 0, 0, 0, 5835, 5794, 1, 0, 0, 0, 5835, 5799, 1, 0, 0, 0, 5835, 5804, 1, 0, 0, 0, 5835, 5811, 1, 0, 0, 0, 5835, 5817, 1, 0, 0, 0, 5835, 5822, 1, 0, 0, 0, 5835, 5829, 1, 0, 0, 0, 5836, 581, 1, 0, 0, 0, 5837, 5838, 7, 35, 0, 0, 5838, 583, 1, 0, 0, 0, 5839, 5840, 3, 582, 291, 0, 5840, 585, 1, 0, 0, 0, 5841, 5842, 5, 65, 0, 0, 5842, 5843, 3, 590, 295, 0, 5843, 5844, 5, 80, 0, 0, 5844, 5845, 3, 600, 300, 0, 5845, 5846, 5, 94, 0, 0, 5846, 5848, 3, 602, 301, 0, 5847, 5849, 3, 606, 303, 0, 5848, 5847, 1, 0, 0, 0, 5848, 5849, 1, 0, 0, 0, 5849, 587, 1, 0, 0, 0, 5850, 5851, 5, 317, 0, 0, 5851, 5852, 3, 590, 295, 0, 5852, 5853, 5, 80, 0, 0, 5853, 5854, 3, 600, 300, 0, 5854, 5855, 5, 64, 0, 0, 5855, 5857, 3, 602, 301, 0, 5856, 5858, 3, 124, 62, 0, 5857, 5856, 1, 0, 0, 0, 5857, 5858, 1, 0, 0, 0, 5858, 5872, 1, 0, 0, 0, 5859, 5860, 5, 317, 0, 0, 5860, 5861, 5, 65, 0, 0, 5861, 5862, 5, 279, 0, 0, 5862, 5863, 5, 62, 0, 0, 5863, 5864, 3, 590, 295, 0, 5864, 5865, 5, 80, 0, 0, 5865, 5866, 3, 600, 300, 0, 5866, 5867, 5, 64, 0, 0, 5867, 5869, 3, 602, 301, 0, 5868, 5870, 3, 124, 62, 0, 5869, 5868, 1, 0, 0, 0, 5869, 5870, 1, 0, 0, 0, 5870, 5872, 1, 0, 0, 0, 5871, 5850, 1, 0, 0, 0, 5871, 5859, 1, 0, 0, 0, 5872, 589, 1, 0, 0, 0, 5873, 5890, 3, 596, 298, 0, 5874, 5890, 5, 30, 0, 0, 5875, 5876, 5, 30, 0, 0, 5876, 5890, 5, 294, 0, 0, 5877, 5878, 5, 30, 0, 0, 5878, 5879, 5, 2, 0, 0, 5879, 5880, 3, 244, 122, 0, 5880, 5881, 5, 3, 0, 0, 5881, 5890, 1, 0, 0, 0, 5882, 5883, 5, 30, 0, 0, 5883, 5884, 5, 294, 0, 0, 5884, 5885, 5, 2, 0, 0, 5885, 5886, 3, 244, 122, 0, 5886, 5887, 5, 3, 0, 0, 5887, 5890, 1, 0, 0, 0, 5888, 5890, 3, 592, 296, 0, 5889, 5873, 1, 0, 0, 0, 5889, 5874, 1, 0, 0, 0, 5889, 5875, 1, 0, 0, 0, 5889, 5877, 1, 0, 0, 0, 5889, 5882, 1, 0, 0, 0, 5889, 5888, 1, 0, 0, 0, 5890, 591, 1, 0, 0, 0, 5891, 5896, 3, 594, 297, 0, 5892, 5893, 5, 6, 0, 0, 5893, 5895, 3, 594, 297, 0, 5894, 5892, 1, 0, 0, 0, 5895, 5898, 1, 0, 0, 0, 5896, 5894, 1, 0, 0, 0, 5896, 5897, 1, 0, 0, 0, 5897, 593, 1, 0, 0, 0, 5898, 5896, 1, 0, 0, 0, 5899, 5900, 7, 36, 0, 0, 5900, 595, 1, 0, 0, 0, 5901, 5906, 3, 598, 299, 0, 5902, 5903, 5, 6, 0, 0, 5903, 5905, 3, 598, 299, 0, 5904, 5902, 1, 0, 0, 0, 5905, 5908, 1, 0, 0, 0, 5906, 5904, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 597, 1, 0, 0, 0, 5908, 5906, 1, 0, 0, 0, 5909, 5911, 5, 88, 0, 0, 5910, 5912, 3, 242, 121, 0, 5911, 5910, 1, 0, 0, 0, 5911, 5912, 1, 0, 0, 0, 5912, 5926, 1, 0, 0, 0, 5913, 5915, 5, 86, 0, 0, 5914, 5916, 3, 242, 121, 0, 5915, 5914, 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 5926, 1, 0, 0, 0, 5917, 5919, 5, 46, 0, 0, 5918, 5920, 3, 242, 121, 0, 5919, 5918, 1, 0, 0, 0, 5919, 5920, 1, 0, 0, 0, 5920, 5926, 1, 0, 0, 0, 5921, 5923, 3, 1476, 738, 0, 5922, 5924, 3, 242, 121, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 5926, 1, 0, 0, 0, 5925, 5909, 1, 0, 0, 0, 5925, 5913, 1, 0, 0, 0, 5925, 5917, 1, 0, 0, 0, 5925, 5921, 1, 0, 0, 0, 5926, 599, 1, 0, 0, 0, 5927, 5986, 3, 1392, 696, 0, 5928, 5929, 5, 92, 0, 0, 5929, 5986, 3, 1394, 697, 0, 5930, 5931, 5, 328, 0, 0, 5931, 5986, 3, 1392, 696, 0, 5932, 5933, 5, 63, 0, 0, 5933, 5934, 5, 174, 0, 0, 5934, 5935, 5, 381, 0, 0, 5935, 5986, 3, 1418, 709, 0, 5936, 5937, 5, 63, 0, 0, 5937, 5938, 5, 331, 0, 0, 5938, 5986, 3, 1418, 709, 0, 5939, 5940, 5, 211, 0, 0, 5940, 5986, 3, 672, 336, 0, 5941, 5942, 5, 296, 0, 0, 5942, 5986, 3, 668, 334, 0, 5943, 5944, 5, 442, 0, 0, 5944, 5986, 3, 664, 332, 0, 5945, 5946, 5, 175, 0, 0, 5946, 5986, 3, 1398, 699, 0, 5947, 5948, 5, 189, 0, 0, 5948, 5986, 3, 550, 275, 0, 5949, 5950, 5, 247, 0, 0, 5950, 5986, 3, 1418, 709, 0, 5951, 5952, 5, 248, 0, 0, 5952, 5953, 5, 274, 0, 0, 5953, 5986, 3, 322, 161, 0, 5954, 5955, 5, 323, 0, 0, 5955, 5986, 3, 1396, 698, 0, 5956, 5957, 5, 351, 0, 0, 5957, 5986, 3, 1416, 708, 0, 5958, 5959, 5, 360, 0, 0, 5959, 5986, 3, 550, 275, 0, 5960, 5961, 5, 30, 0, 0, 5961, 5962, 5, 350, 0, 0, 5962, 5963, 5, 68, 0, 0, 5963, 5964, 5, 323, 0, 0, 5964, 5986, 3, 1396, 698, 0, 5965, 5966, 5, 30, 0, 0, 5966, 5967, 5, 329, 0, 0, 5967, 5968, 5, 68, 0, 0, 5968, 5969, 5, 323, 0, 0, 5969, 5986, 3, 1396, 698, 0, 5970, 5971, 5, 30, 0, 0, 5971, 5972, 5, 212, 0, 0, 5972, 5973, 5, 68, 0, 0, 5973, 5974, 5, 323, 0, 0, 5974, 5986, 3, 1396, 698, 0, 5975, 5976, 5, 30, 0, 0, 5976, 5977, 5, 457, 0, 0, 5977, 5978, 5, 68, 0, 0, 5978, 5979, 5, 323, 0, 0, 5979, 5986, 3, 1396, 698, 0, 5980, 5981, 5, 30, 0, 0, 5981, 5982, 5, 455, 0, 0, 5982, 5983, 5, 68, 0, 0, 5983, 5984, 5, 323, 0, 0, 5984, 5986, 3, 1396, 698, 0, 5985, 5927, 1, 0, 0, 0, 5985, 5928, 1, 0, 0, 0, 5985, 5930, 1, 0, 0, 0, 5985, 5932, 1, 0, 0, 0, 5985, 5936, 1, 0, 0, 0, 5985, 5939, 1, 0, 0, 0, 5985, 5941, 1, 0, 0, 0, 5985, 5943, 1, 0, 0, 0, 5985, 5945, 1, 0, 0, 0, 5985, 5947, 1, 0, 0, 0, 5985, 5949, 1, 0, 0, 0, 5985, 5951, 1, 0, 0, 0, 5985, 5954, 1, 0, 0, 0, 5985, 5956, 1, 0, 0, 0, 5985, 5958, 1, 0, 0, 0, 5985, 5960, 1, 0, 0, 0, 5985, 5965, 1, 0, 0, 0, 5985, 5970, 1, 0, 0, 0, 5985, 5975, 1, 0, 0, 0, 5985, 5980, 1, 0, 0, 0, 5986, 601, 1, 0, 0, 0, 5987, 5992, 3, 604, 302, 0, 5988, 5989, 5, 6, 0, 0, 5989, 5991, 3, 604, 302, 0, 5990, 5988, 1, 0, 0, 0, 5991, 5994, 1, 0, 0, 0, 5992, 5990, 1, 0, 0, 0, 5992, 5993, 1, 0, 0, 0, 5993, 603, 1, 0, 0, 0, 5994, 5992, 1, 0, 0, 0, 5995, 5999, 3, 1472, 736, 0, 5996, 5997, 5, 66, 0, 0, 5997, 5999, 3, 1472, 736, 0, 5998, 5995, 1, 0, 0, 0, 5998, 5996, 1, 0, 0, 0, 5999, 605, 1, 0, 0, 0, 6000, 6001, 5, 105, 0, 0, 6001, 6002, 5, 65, 0, 0, 6002, 6003, 5, 279, 0, 0, 6003, 607, 1, 0, 0, 0, 6004, 6005, 5, 65, 0, 0, 6005, 6006, 3, 596, 298, 0, 6006, 6007, 5, 94, 0, 0, 6007, 6009, 3, 1474, 737, 0, 6008, 6010, 3, 612, 306, 0, 6009, 6008, 1, 0, 0, 0, 6009, 6010, 1, 0, 0, 0, 6010, 6012, 1, 0, 0, 0, 6011, 6013, 3, 614, 307, 0, 6012, 6011, 1, 0, 0, 0, 6012, 6013, 1, 0, 0, 0, 6013, 609, 1, 0, 0, 0, 6014, 6015, 5, 317, 0, 0, 6015, 6016, 3, 596, 298, 0, 6016, 6017, 5, 64, 0, 0, 6017, 6019, 3, 1474, 737, 0, 6018, 6020, 3, 614, 307, 0, 6019, 6018, 1, 0, 0, 0, 6019, 6020, 1, 0, 0, 0, 6020, 6022, 1, 0, 0, 0, 6021, 6023, 3, 124, 62, 0, 6022, 6021, 1, 0, 0, 0, 6022, 6023, 1, 0, 0, 0, 6023, 6038, 1, 0, 0, 0, 6024, 6025, 5, 317, 0, 0, 6025, 6026, 5, 134, 0, 0, 6026, 6027, 5, 279, 0, 0, 6027, 6028, 5, 62, 0, 0, 6028, 6029, 3, 596, 298, 0, 6029, 6030, 5, 64, 0, 0, 6030, 6032, 3, 1474, 737, 0, 6031, 6033, 3, 614, 307, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6035, 1, 0, 0, 0, 6034, 6036, 3, 124, 62, 0, 6035, 6034, 1, 0, 0, 0, 6035, 6036, 1, 0, 0, 0, 6036, 6038, 1, 0, 0, 0, 6037, 6014, 1, 0, 0, 0, 6037, 6024, 1, 0, 0, 0, 6038, 611, 1, 0, 0, 0, 6039, 6040, 5, 105, 0, 0, 6040, 6041, 5, 134, 0, 0, 6041, 6042, 5, 279, 0, 0, 6042, 613, 1, 0, 0, 0, 6043, 6044, 5, 214, 0, 0, 6044, 6045, 5, 147, 0, 0, 6045, 6046, 3, 1472, 736, 0, 6046, 615, 1, 0, 0, 0, 6047, 6048, 5, 138, 0, 0, 6048, 6049, 5, 53, 0, 0, 6049, 6050, 5, 294, 0, 0, 6050, 6051, 3, 618, 309, 0, 6051, 6052, 3, 622, 311, 0, 6052, 617, 1, 0, 0, 0, 6053, 6055, 3, 620, 310, 0, 6054, 6053, 1, 0, 0, 0, 6055, 6058, 1, 0, 0, 0, 6056, 6054, 1, 0, 0, 0, 6056, 6057, 1, 0, 0, 0, 6057, 619, 1, 0, 0, 0, 6058, 6056, 1, 0, 0, 0, 6059, 6060, 5, 68, 0, 0, 6060, 6061, 5, 323, 0, 0, 6061, 6069, 3, 1396, 698, 0, 6062, 6063, 5, 62, 0, 0, 6063, 6064, 5, 318, 0, 0, 6064, 6069, 3, 1474, 737, 0, 6065, 6066, 5, 62, 0, 0, 6066, 6067, 5, 99, 0, 0, 6067, 6069, 3, 1474, 737, 0, 6068, 6059, 1, 0, 0, 0, 6068, 6062, 1, 0, 0, 0, 6068, 6065, 1, 0, 0, 0, 6069, 621, 1, 0, 0, 0, 6070, 6071, 5, 65, 0, 0, 6071, 6072, 3, 590, 295, 0, 6072, 6073, 5, 80, 0, 0, 6073, 6074, 3, 624, 312, 0, 6074, 6075, 5, 94, 0, 0, 6075, 6077, 3, 602, 301, 0, 6076, 6078, 3, 606, 303, 0, 6077, 6076, 1, 0, 0, 0, 6077, 6078, 1, 0, 0, 0, 6078, 6101, 1, 0, 0, 0, 6079, 6080, 5, 317, 0, 0, 6080, 6081, 3, 590, 295, 0, 6081, 6082, 5, 80, 0, 0, 6082, 6083, 3, 624, 312, 0, 6083, 6084, 5, 64, 0, 0, 6084, 6086, 3, 602, 301, 0, 6085, 6087, 3, 124, 62, 0, 6086, 6085, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6101, 1, 0, 0, 0, 6088, 6089, 5, 317, 0, 0, 6089, 6090, 5, 65, 0, 0, 6090, 6091, 5, 279, 0, 0, 6091, 6092, 5, 62, 0, 0, 6092, 6093, 3, 590, 295, 0, 6093, 6094, 5, 80, 0, 0, 6094, 6095, 3, 624, 312, 0, 6095, 6096, 5, 64, 0, 0, 6096, 6098, 3, 602, 301, 0, 6097, 6099, 3, 124, 62, 0, 6098, 6097, 1, 0, 0, 0, 6098, 6099, 1, 0, 0, 0, 6099, 6101, 1, 0, 0, 0, 6100, 6070, 1, 0, 0, 0, 6100, 6079, 1, 0, 0, 0, 6100, 6088, 1, 0, 0, 0, 6101, 623, 1, 0, 0, 0, 6102, 6103, 7, 37, 0, 0, 6103, 625, 1, 0, 0, 0, 6104, 6106, 5, 46, 0, 0, 6105, 6107, 3, 628, 314, 0, 6106, 6105, 1, 0, 0, 0, 6106, 6107, 1, 0, 0, 0, 6107, 6108, 1, 0, 0, 0, 6108, 6110, 5, 226, 0, 0, 6109, 6111, 3, 630, 315, 0, 6110, 6109, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 6113, 1, 0, 0, 0, 6112, 6114, 3, 514, 257, 0, 6113, 6112, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 6116, 1, 0, 0, 0, 6115, 6117, 3, 632, 316, 0, 6116, 6115, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 6119, 5, 80, 0, 0, 6119, 6121, 3, 1120, 560, 0, 6120, 6122, 3, 634, 317, 0, 6121, 6120, 1, 0, 0, 0, 6121, 6122, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 6124, 5, 2, 0, 0, 6124, 6125, 3, 636, 318, 0, 6125, 6127, 5, 3, 0, 0, 6126, 6128, 3, 642, 321, 0, 6127, 6126, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6130, 1, 0, 0, 0, 6129, 6131, 3, 222, 111, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 6133, 1, 0, 0, 0, 6132, 6134, 3, 134, 67, 0, 6133, 6132, 1, 0, 0, 0, 6133, 6134, 1, 0, 0, 0, 6134, 6136, 1, 0, 0, 0, 6135, 6137, 3, 280, 140, 0, 6136, 6135, 1, 0, 0, 0, 6136, 6137, 1, 0, 0, 0, 6137, 6139, 1, 0, 0, 0, 6138, 6140, 3, 1146, 573, 0, 6139, 6138, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 627, 1, 0, 0, 0, 6141, 6142, 5, 98, 0, 0, 6142, 629, 1, 0, 0, 0, 6143, 6144, 5, 109, 0, 0, 6144, 631, 1, 0, 0, 0, 6145, 6146, 3, 1438, 719, 0, 6146, 633, 1, 0, 0, 0, 6147, 6148, 5, 100, 0, 0, 6148, 6149, 3, 1438, 719, 0, 6149, 635, 1, 0, 0, 0, 6150, 6155, 3, 640, 320, 0, 6151, 6152, 5, 6, 0, 0, 6152, 6154, 3, 640, 320, 0, 6153, 6151, 1, 0, 0, 0, 6154, 6157, 1, 0, 0, 0, 6155, 6153, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 637, 1, 0, 0, 0, 6157, 6155, 1, 0, 0, 0, 6158, 6160, 3, 646, 323, 0, 6159, 6158, 1, 0, 0, 0, 6159, 6160, 1, 0, 0, 0, 6160, 6162, 1, 0, 0, 0, 6161, 6163, 3, 648, 324, 0, 6162, 6161, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 6165, 1, 0, 0, 0, 6164, 6166, 3, 650, 325, 0, 6165, 6164, 1, 0, 0, 0, 6165, 6166, 1, 0, 0, 0, 6166, 6168, 1, 0, 0, 0, 6167, 6169, 3, 652, 326, 0, 6168, 6167, 1, 0, 0, 0, 6168, 6169, 1, 0, 0, 0, 6169, 6182, 1, 0, 0, 0, 6170, 6172, 3, 646, 323, 0, 6171, 6170, 1, 0, 0, 0, 6171, 6172, 1, 0, 0, 0, 6172, 6173, 1, 0, 0, 0, 6173, 6174, 3, 558, 279, 0, 6174, 6176, 3, 132, 66, 0, 6175, 6177, 3, 650, 325, 0, 6176, 6175, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6179, 1, 0, 0, 0, 6178, 6180, 3, 652, 326, 0, 6179, 6178, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6182, 1, 0, 0, 0, 6181, 6159, 1, 0, 0, 0, 6181, 6171, 1, 0, 0, 0, 6182, 639, 1, 0, 0, 0, 6183, 6184, 3, 1434, 717, 0, 6184, 6185, 3, 638, 319, 0, 6185, 6195, 1, 0, 0, 0, 6186, 6187, 3, 1264, 632, 0, 6187, 6188, 3, 638, 319, 0, 6188, 6195, 1, 0, 0, 0, 6189, 6190, 5, 2, 0, 0, 6190, 6191, 3, 1214, 607, 0, 6191, 6192, 5, 3, 0, 0, 6192, 6193, 3, 638, 319, 0, 6193, 6195, 1, 0, 0, 0, 6194, 6183, 1, 0, 0, 0, 6194, 6186, 1, 0, 0, 0, 6194, 6189, 1, 0, 0, 0, 6195, 641, 1, 0, 0, 0, 6196, 6197, 5, 441, 0, 0, 6197, 6198, 5, 2, 0, 0, 6198, 6199, 3, 644, 322, 0, 6199, 6200, 5, 3, 0, 0, 6200, 643, 1, 0, 0, 0, 6201, 6206, 3, 640, 320, 0, 6202, 6203, 5, 6, 0, 0, 6203, 6205, 3, 640, 320, 0, 6204, 6202, 1, 0, 0, 0, 6205, 6208, 1, 0, 0, 0, 6206, 6204, 1, 0, 0, 0, 6206, 6207, 1, 0, 0, 0, 6207, 645, 1, 0, 0, 0, 6208, 6206, 1, 0, 0, 0, 6209, 6210, 5, 43, 0, 0, 6210, 6211, 3, 558, 279, 0, 6211, 647, 1, 0, 0, 0, 6212, 6213, 3, 558, 279, 0, 6213, 649, 1, 0, 0, 0, 6214, 6215, 7, 38, 0, 0, 6215, 651, 1, 0, 0, 0, 6216, 6217, 5, 273, 0, 0, 6217, 6221, 5, 207, 0, 0, 6218, 6219, 5, 273, 0, 0, 6219, 6221, 5, 249, 0, 0, 6220, 6216, 1, 0, 0, 0, 6220, 6218, 1, 0, 0, 0, 6221, 653, 1, 0, 0, 0, 6222, 6224, 5, 46, 0, 0, 6223, 6225, 3, 658, 329, 0, 6224, 6223, 1, 0, 0, 0, 6224, 6225, 1, 0, 0, 0, 6225, 6230, 1, 0, 0, 0, 6226, 6227, 5, 211, 0, 0, 6227, 6231, 3, 1444, 722, 0, 6228, 6229, 5, 296, 0, 0, 6229, 6231, 3, 1432, 716, 0, 6230, 6226, 1, 0, 0, 0, 6230, 6228, 1, 0, 0, 0, 6231, 6232, 1, 0, 0, 0, 6232, 6242, 3, 676, 338, 0, 6233, 6240, 5, 316, 0, 0, 6234, 6241, 3, 686, 343, 0, 6235, 6236, 5, 92, 0, 0, 6236, 6237, 5, 2, 0, 0, 6237, 6238, 3, 714, 357, 0, 6238, 6239, 5, 3, 0, 0, 6239, 6241, 1, 0, 0, 0, 6240, 6234, 1, 0, 0, 0, 6240, 6235, 1, 0, 0, 0, 6241, 6243, 1, 0, 0, 0, 6242, 6233, 1, 0, 0, 0, 6242, 6243, 1, 0, 0, 0, 6243, 6244, 1, 0, 0, 0, 6244, 6247, 3, 702, 351, 0, 6245, 6246, 5, 105, 0, 0, 6246, 6248, 3, 656, 328, 0, 6247, 6245, 1, 0, 0, 0, 6247, 6248, 1, 0, 0, 0, 6248, 655, 1, 0, 0, 0, 6249, 6250, 5, 2, 0, 0, 6250, 6255, 3, 1476, 738, 0, 6251, 6252, 5, 6, 0, 0, 6252, 6254, 3, 1476, 738, 0, 6253, 6251, 1, 0, 0, 0, 6254, 6257, 1, 0, 0, 0, 6255, 6253, 1, 0, 0, 0, 6255, 6256, 1, 0, 0, 0, 6256, 6258, 1, 0, 0, 0, 6257, 6255, 1, 0, 0, 0, 6258, 6259, 5, 3, 0, 0, 6259, 657, 1, 0, 0, 0, 6260, 6261, 5, 82, 0, 0, 6261, 6262, 5, 311, 0, 0, 6262, 659, 1, 0, 0, 0, 6263, 6265, 5, 2, 0, 0, 6264, 6266, 3, 662, 331, 0, 6265, 6264, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6267, 1, 0, 0, 0, 6267, 6268, 5, 3, 0, 0, 6268, 661, 1, 0, 0, 0, 6269, 6274, 3, 680, 340, 0, 6270, 6271, 5, 6, 0, 0, 6271, 6273, 3, 680, 340, 0, 6272, 6270, 1, 0, 0, 0, 6273, 6276, 1, 0, 0, 0, 6274, 6272, 1, 0, 0, 0, 6274, 6275, 1, 0, 0, 0, 6275, 663, 1, 0, 0, 0, 6276, 6274, 1, 0, 0, 0, 6277, 6282, 3, 666, 333, 0, 6278, 6279, 5, 6, 0, 0, 6279, 6281, 3, 666, 333, 0, 6280, 6278, 1, 0, 0, 0, 6281, 6284, 1, 0, 0, 0, 6282, 6280, 1, 0, 0, 0, 6282, 6283, 1, 0, 0, 0, 6283, 665, 1, 0, 0, 0, 6284, 6282, 1, 0, 0, 0, 6285, 6286, 3, 1428, 714, 0, 6286, 6287, 3, 660, 330, 0, 6287, 6294, 1, 0, 0, 0, 6288, 6294, 3, 1502, 751, 0, 6289, 6291, 3, 1476, 738, 0, 6290, 6292, 3, 1382, 691, 0, 6291, 6290, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 6294, 1, 0, 0, 0, 6293, 6285, 1, 0, 0, 0, 6293, 6288, 1, 0, 0, 0, 6293, 6289, 1, 0, 0, 0, 6294, 667, 1, 0, 0, 0, 6295, 6300, 3, 670, 335, 0, 6296, 6297, 5, 6, 0, 0, 6297, 6299, 3, 670, 335, 0, 6298, 6296, 1, 0, 0, 0, 6299, 6302, 1, 0, 0, 0, 6300, 6298, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 669, 1, 0, 0, 0, 6302, 6300, 1, 0, 0, 0, 6303, 6304, 3, 1430, 715, 0, 6304, 6305, 3, 660, 330, 0, 6305, 6312, 1, 0, 0, 0, 6306, 6312, 3, 1502, 751, 0, 6307, 6309, 3, 1476, 738, 0, 6308, 6310, 3, 1382, 691, 0, 6309, 6308, 1, 0, 0, 0, 6309, 6310, 1, 0, 0, 0, 6310, 6312, 1, 0, 0, 0, 6311, 6303, 1, 0, 0, 0, 6311, 6306, 1, 0, 0, 0, 6311, 6307, 1, 0, 0, 0, 6312, 671, 1, 0, 0, 0, 6313, 6318, 3, 674, 337, 0, 6314, 6315, 5, 6, 0, 0, 6315, 6317, 3, 674, 337, 0, 6316, 6314, 1, 0, 0, 0, 6317, 6320, 1, 0, 0, 0, 6318, 6316, 1, 0, 0, 0, 6318, 6319, 1, 0, 0, 0, 6319, 673, 1, 0, 0, 0, 6320, 6318, 1, 0, 0, 0, 6321, 6322, 3, 1446, 723, 0, 6322, 6323, 3, 660, 330, 0, 6323, 6330, 1, 0, 0, 0, 6324, 6330, 3, 1502, 751, 0, 6325, 6327, 3, 1476, 738, 0, 6326, 6328, 3, 1382, 691, 0, 6327, 6326, 1, 0, 0, 0, 6327, 6328, 1, 0, 0, 0, 6328, 6330, 1, 0, 0, 0, 6329, 6321, 1, 0, 0, 0, 6329, 6324, 1, 0, 0, 0, 6329, 6325, 1, 0, 0, 0, 6330, 675, 1, 0, 0, 0, 6331, 6333, 5, 2, 0, 0, 6332, 6334, 3, 678, 339, 0, 6333, 6332, 1, 0, 0, 0, 6333, 6334, 1, 0, 0, 0, 6334, 6335, 1, 0, 0, 0, 6335, 6336, 5, 3, 0, 0, 6336, 677, 1, 0, 0, 0, 6337, 6342, 3, 690, 345, 0, 6338, 6339, 5, 6, 0, 0, 6339, 6341, 3, 690, 345, 0, 6340, 6338, 1, 0, 0, 0, 6341, 6344, 1, 0, 0, 0, 6342, 6340, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 679, 1, 0, 0, 0, 6344, 6342, 1, 0, 0, 0, 6345, 6347, 3, 682, 341, 0, 6346, 6348, 3, 684, 342, 0, 6347, 6346, 1, 0, 0, 0, 6347, 6348, 1, 0, 0, 0, 6348, 6349, 1, 0, 0, 0, 6349, 6350, 3, 688, 344, 0, 6350, 6359, 1, 0, 0, 0, 6351, 6353, 3, 684, 342, 0, 6352, 6354, 3, 682, 341, 0, 6353, 6352, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 6355, 1, 0, 0, 0, 6355, 6356, 3, 688, 344, 0, 6356, 6359, 1, 0, 0, 0, 6357, 6359, 3, 688, 344, 0, 6358, 6345, 1, 0, 0, 0, 6358, 6351, 1, 0, 0, 0, 6358, 6357, 1, 0, 0, 0, 6359, 681, 1, 0, 0, 0, 6360, 6362, 5, 68, 0, 0, 6361, 6363, 5, 453, 0, 0, 6362, 6361, 1, 0, 0, 0, 6362, 6363, 1, 0, 0, 0, 6363, 6368, 1, 0, 0, 0, 6364, 6368, 5, 453, 0, 0, 6365, 6368, 5, 400, 0, 0, 6366, 6368, 5, 101, 0, 0, 6367, 6360, 1, 0, 0, 0, 6367, 6364, 1, 0, 0, 0, 6367, 6365, 1, 0, 0, 0, 6367, 6366, 1, 0, 0, 0, 6368, 683, 1, 0, 0, 0, 6369, 6370, 3, 1484, 742, 0, 6370, 685, 1, 0, 0, 0, 6371, 6372, 3, 688, 344, 0, 6372, 687, 1, 0, 0, 0, 6373, 6386, 3, 1170, 585, 0, 6374, 6375, 3, 1484, 742, 0, 6375, 6376, 3, 560, 280, 0, 6376, 6377, 5, 27, 0, 0, 6377, 6378, 5, 360, 0, 0, 6378, 6386, 1, 0, 0, 0, 6379, 6380, 5, 415, 0, 0, 6380, 6381, 3, 1484, 742, 0, 6381, 6382, 3, 560, 280, 0, 6382, 6383, 5, 27, 0, 0, 6383, 6384, 5, 360, 0, 0, 6384, 6386, 1, 0, 0, 0, 6385, 6373, 1, 0, 0, 0, 6385, 6374, 1, 0, 0, 0, 6385, 6379, 1, 0, 0, 0, 6386, 689, 1, 0, 0, 0, 6387, 6390, 3, 680, 340, 0, 6388, 6389, 7, 39, 0, 0, 6389, 6391, 3, 1214, 607, 0, 6390, 6388, 1, 0, 0, 0, 6390, 6391, 1, 0, 0, 0, 6391, 691, 1, 0, 0, 0, 6392, 6393, 3, 680, 340, 0, 6393, 693, 1, 0, 0, 0, 6394, 6405, 5, 2, 0, 0, 6395, 6406, 5, 9, 0, 0, 6396, 6406, 3, 696, 348, 0, 6397, 6398, 5, 83, 0, 0, 6398, 6399, 5, 147, 0, 0, 6399, 6406, 3, 696, 348, 0, 6400, 6401, 3, 696, 348, 0, 6401, 6402, 5, 83, 0, 0, 6402, 6403, 5, 147, 0, 0, 6403, 6404, 3, 696, 348, 0, 6404, 6406, 1, 0, 0, 0, 6405, 6395, 1, 0, 0, 0, 6405, 6396, 1, 0, 0, 0, 6405, 6397, 1, 0, 0, 0, 6405, 6400, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6408, 5, 3, 0, 0, 6408, 695, 1, 0, 0, 0, 6409, 6414, 3, 692, 346, 0, 6410, 6411, 5, 6, 0, 0, 6411, 6413, 3, 692, 346, 0, 6412, 6410, 1, 0, 0, 0, 6413, 6416, 1, 0, 0, 0, 6414, 6412, 1, 0, 0, 0, 6414, 6415, 1, 0, 0, 0, 6415, 697, 1, 0, 0, 0, 6416, 6414, 1, 0, 0, 0, 6417, 6418, 3, 1446, 723, 0, 6418, 6419, 3, 694, 347, 0, 6419, 699, 1, 0, 0, 0, 6420, 6425, 3, 698, 349, 0, 6421, 6422, 5, 6, 0, 0, 6422, 6424, 3, 698, 349, 0, 6423, 6421, 1, 0, 0, 0, 6424, 6427, 1, 0, 0, 0, 6425, 6423, 1, 0, 0, 0, 6425, 6426, 1, 0, 0, 0, 6426, 701, 1, 0, 0, 0, 6427, 6425, 1, 0, 0, 0, 6428, 6430, 3, 706, 353, 0, 6429, 6428, 1, 0, 0, 0, 6430, 6431, 1, 0, 0, 0, 6431, 6429, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 703, 1, 0, 0, 0, 6433, 6434, 5, 149, 0, 0, 6434, 6435, 5, 80, 0, 0, 6435, 6436, 5, 78, 0, 0, 6436, 6469, 5, 458, 0, 0, 6437, 6438, 5, 316, 0, 0, 6438, 6439, 5, 78, 0, 0, 6439, 6440, 5, 80, 0, 0, 6440, 6441, 5, 78, 0, 0, 6441, 6469, 5, 458, 0, 0, 6442, 6469, 5, 346, 0, 0, 6443, 6469, 5, 222, 0, 0, 6444, 6469, 5, 338, 0, 0, 6445, 6469, 5, 377, 0, 0, 6446, 6447, 5, 205, 0, 0, 6447, 6448, 5, 327, 0, 0, 6448, 6469, 5, 181, 0, 0, 6449, 6450, 5, 205, 0, 0, 6450, 6451, 5, 327, 0, 0, 6451, 6469, 5, 243, 0, 0, 6452, 6453, 5, 327, 0, 0, 6453, 6469, 5, 181, 0, 0, 6454, 6455, 5, 327, 0, 0, 6455, 6469, 5, 243, 0, 0, 6456, 6469, 5, 250, 0, 0, 6457, 6458, 5, 77, 0, 0, 6458, 6469, 5, 250, 0, 0, 6459, 6460, 5, 170, 0, 0, 6460, 6469, 3, 320, 160, 0, 6461, 6462, 5, 320, 0, 0, 6462, 6469, 3, 320, 160, 0, 6463, 6464, 5, 459, 0, 0, 6464, 6469, 3, 558, 279, 0, 6465, 6469, 3, 90, 45, 0, 6466, 6467, 5, 460, 0, 0, 6467, 6469, 3, 1476, 738, 0, 6468, 6433, 1, 0, 0, 0, 6468, 6437, 1, 0, 0, 0, 6468, 6442, 1, 0, 0, 0, 6468, 6443, 1, 0, 0, 0, 6468, 6444, 1, 0, 0, 0, 6468, 6445, 1, 0, 0, 0, 6468, 6446, 1, 0, 0, 0, 6468, 6449, 1, 0, 0, 0, 6468, 6452, 1, 0, 0, 0, 6468, 6454, 1, 0, 0, 0, 6468, 6456, 1, 0, 0, 0, 6468, 6457, 1, 0, 0, 0, 6468, 6459, 1, 0, 0, 0, 6468, 6461, 1, 0, 0, 0, 6468, 6463, 1, 0, 0, 0, 6468, 6465, 1, 0, 0, 0, 6468, 6466, 1, 0, 0, 0, 6469, 705, 1, 0, 0, 0, 6470, 6471, 5, 36, 0, 0, 6471, 6472, 3, 1460, 730, 0, 6472, 6473, 5, 6, 0, 0, 6473, 6474, 3, 1460, 730, 0, 6474, 6496, 1, 0, 0, 0, 6475, 6476, 5, 247, 0, 0, 6476, 6496, 3, 80, 40, 0, 6477, 6478, 5, 443, 0, 0, 6478, 6496, 3, 708, 354, 0, 6479, 6496, 5, 104, 0, 0, 6480, 6481, 5, 333, 0, 0, 6481, 6488, 3, 1476, 738, 0, 6482, 6483, 5, 94, 0, 0, 6483, 6489, 3, 1476, 738, 0, 6484, 6485, 5, 10, 0, 0, 6485, 6489, 3, 1476, 738, 0, 6486, 6487, 5, 64, 0, 0, 6487, 6489, 5, 434, 0, 0, 6488, 6482, 1, 0, 0, 0, 6488, 6484, 1, 0, 0, 0, 6488, 6486, 1, 0, 0, 0, 6489, 6496, 1, 0, 0, 0, 6490, 6491, 5, 36, 0, 0, 6491, 6496, 3, 1476, 738, 0, 6492, 6496, 3, 6, 3, 0, 6493, 6496, 3, 704, 352, 0, 6494, 6496, 3, 1476, 738, 0, 6495, 6470, 1, 0, 0, 0, 6495, 6475, 1, 0, 0, 0, 6495, 6477, 1, 0, 0, 0, 6495, 6479, 1, 0, 0, 0, 6495, 6480, 1, 0, 0, 0, 6495, 6490, 1, 0, 0, 0, 6495, 6492, 1, 0, 0, 0, 6495, 6493, 1, 0, 0, 0, 6495, 6494, 1, 0, 0, 0, 6496, 707, 1, 0, 0, 0, 6497, 6498, 5, 62, 0, 0, 6498, 6499, 5, 360, 0, 0, 6499, 6506, 3, 1170, 585, 0, 6500, 6501, 5, 6, 0, 0, 6501, 6502, 5, 62, 0, 0, 6502, 6503, 5, 360, 0, 0, 6503, 6505, 3, 1170, 585, 0, 6504, 6500, 1, 0, 0, 0, 6505, 6508, 1, 0, 0, 0, 6506, 6504, 1, 0, 0, 0, 6506, 6507, 1, 0, 0, 0, 6507, 709, 1, 0, 0, 0, 6508, 6506, 1, 0, 0, 0, 6509, 6510, 5, 105, 0, 0, 6510, 6511, 3, 494, 247, 0, 6511, 711, 1, 0, 0, 0, 6512, 6513, 3, 1434, 717, 0, 6513, 6514, 3, 688, 344, 0, 6514, 713, 1, 0, 0, 0, 6515, 6520, 3, 712, 356, 0, 6516, 6517, 5, 6, 0, 0, 6517, 6519, 3, 712, 356, 0, 6518, 6516, 1, 0, 0, 0, 6519, 6522, 1, 0, 0, 0, 6520, 6518, 1, 0, 0, 0, 6520, 6521, 1, 0, 0, 0, 6521, 715, 1, 0, 0, 0, 6522, 6520, 1, 0, 0, 0, 6523, 6524, 5, 138, 0, 0, 6524, 6525, 3, 718, 359, 0, 6525, 6527, 3, 720, 360, 0, 6526, 6528, 3, 722, 361, 0, 6527, 6526, 1, 0, 0, 0, 6527, 6528, 1, 0, 0, 0, 6528, 717, 1, 0, 0, 0, 6529, 6530, 5, 211, 0, 0, 6530, 6536, 3, 674, 337, 0, 6531, 6532, 5, 296, 0, 0, 6532, 6536, 3, 670, 335, 0, 6533, 6534, 5, 442, 0, 0, 6534, 6536, 3, 666, 333, 0, 6535, 6529, 1, 0, 0, 0, 6535, 6531, 1, 0, 0, 0, 6535, 6533, 1, 0, 0, 0, 6536, 719, 1, 0, 0, 0, 6537, 6539, 3, 704, 352, 0, 6538, 6537, 1, 0, 0, 0, 6539, 6540, 1, 0, 0, 0, 6540, 6538, 1, 0, 0, 0, 6540, 6541, 1, 0, 0, 0, 6541, 721, 1, 0, 0, 0, 6542, 6543, 5, 315, 0, 0, 6543, 723, 1, 0, 0, 0, 6544, 6545, 5, 191, 0, 0, 6545, 6547, 5, 211, 0, 0, 6546, 6548, 3, 748, 374, 0, 6547, 6546, 1, 0, 0, 0, 6547, 6548, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 6551, 3, 672, 336, 0, 6550, 6552, 3, 124, 62, 0, 6551, 6550, 1, 0, 0, 0, 6551, 6552, 1, 0, 0, 0, 6552, 6572, 1, 0, 0, 0, 6553, 6554, 5, 191, 0, 0, 6554, 6556, 5, 296, 0, 0, 6555, 6557, 3, 748, 374, 0, 6556, 6555, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 6560, 3, 668, 334, 0, 6559, 6561, 3, 124, 62, 0, 6560, 6559, 1, 0, 0, 0, 6560, 6561, 1, 0, 0, 0, 6561, 6572, 1, 0, 0, 0, 6562, 6563, 5, 191, 0, 0, 6563, 6565, 5, 442, 0, 0, 6564, 6566, 3, 748, 374, 0, 6565, 6564, 1, 0, 0, 0, 6565, 6566, 1, 0, 0, 0, 6566, 6567, 1, 0, 0, 0, 6567, 6569, 3, 664, 332, 0, 6568, 6570, 3, 124, 62, 0, 6569, 6568, 1, 0, 0, 0, 6569, 6570, 1, 0, 0, 0, 6570, 6572, 1, 0, 0, 0, 6571, 6544, 1, 0, 0, 0, 6571, 6553, 1, 0, 0, 0, 6571, 6562, 1, 0, 0, 0, 6572, 725, 1, 0, 0, 0, 6573, 6574, 5, 191, 0, 0, 6574, 6576, 5, 136, 0, 0, 6575, 6577, 3, 748, 374, 0, 6576, 6575, 1, 0, 0, 0, 6576, 6577, 1, 0, 0, 0, 6577, 6578, 1, 0, 0, 0, 6578, 6580, 3, 700, 350, 0, 6579, 6581, 3, 124, 62, 0, 6580, 6579, 1, 0, 0, 0, 6580, 6581, 1, 0, 0, 0, 6581, 727, 1, 0, 0, 0, 6582, 6583, 5, 191, 0, 0, 6583, 6585, 5, 278, 0, 0, 6584, 6586, 3, 748, 374, 0, 6585, 6584, 1, 0, 0, 0, 6585, 6586, 1, 0, 0, 0, 6586, 6587, 1, 0, 0, 0, 6587, 6589, 3, 734, 367, 0, 6588, 6590, 3, 124, 62, 0, 6589, 6588, 1, 0, 0, 0, 6589, 6590, 1, 0, 0, 0, 6590, 729, 1, 0, 0, 0, 6591, 6592, 5, 2, 0, 0, 6592, 6593, 3, 1170, 585, 0, 6593, 6594, 5, 3, 0, 0, 6594, 6614, 1, 0, 0, 0, 6595, 6596, 5, 2, 0, 0, 6596, 6597, 3, 1170, 585, 0, 6597, 6598, 5, 6, 0, 0, 6598, 6599, 3, 1170, 585, 0, 6599, 6600, 5, 3, 0, 0, 6600, 6614, 1, 0, 0, 0, 6601, 6602, 5, 2, 0, 0, 6602, 6603, 5, 407, 0, 0, 6603, 6604, 5, 6, 0, 0, 6604, 6605, 3, 1170, 585, 0, 6605, 6606, 5, 3, 0, 0, 6606, 6614, 1, 0, 0, 0, 6607, 6608, 5, 2, 0, 0, 6608, 6609, 3, 1170, 585, 0, 6609, 6610, 5, 6, 0, 0, 6610, 6611, 5, 407, 0, 0, 6611, 6612, 5, 3, 0, 0, 6612, 6614, 1, 0, 0, 0, 6613, 6591, 1, 0, 0, 0, 6613, 6595, 1, 0, 0, 0, 6613, 6601, 1, 0, 0, 0, 6613, 6607, 1, 0, 0, 0, 6614, 731, 1, 0, 0, 0, 6615, 6616, 3, 1476, 738, 0, 6616, 6617, 5, 11, 0, 0, 6617, 6619, 1, 0, 0, 0, 6618, 6615, 1, 0, 0, 0, 6619, 6622, 1, 0, 0, 0, 6620, 6618, 1, 0, 0, 0, 6620, 6621, 1, 0, 0, 0, 6621, 6623, 1, 0, 0, 0, 6622, 6620, 1, 0, 0, 0, 6623, 6624, 3, 1320, 660, 0, 6624, 733, 1, 0, 0, 0, 6625, 6630, 3, 736, 368, 0, 6626, 6627, 5, 6, 0, 0, 6627, 6629, 3, 736, 368, 0, 6628, 6626, 1, 0, 0, 0, 6629, 6632, 1, 0, 0, 0, 6630, 6628, 1, 0, 0, 0, 6630, 6631, 1, 0, 0, 0, 6631, 735, 1, 0, 0, 0, 6632, 6630, 1, 0, 0, 0, 6633, 6634, 3, 732, 366, 0, 6634, 6635, 3, 730, 365, 0, 6635, 737, 1, 0, 0, 0, 6636, 6637, 5, 57, 0, 0, 6637, 6638, 3, 740, 370, 0, 6638, 739, 1, 0, 0, 0, 6639, 6641, 3, 742, 371, 0, 6640, 6639, 1, 0, 0, 0, 6641, 6642, 1, 0, 0, 0, 6642, 6640, 1, 0, 0, 0, 6642, 6643, 1, 0, 0, 0, 6643, 741, 1, 0, 0, 0, 6644, 6648, 3, 1460, 730, 0, 6645, 6646, 5, 247, 0, 0, 6646, 6648, 3, 80, 40, 0, 6647, 6644, 1, 0, 0, 0, 6647, 6645, 1, 0, 0, 0, 6648, 743, 1, 0, 0, 0, 6649, 6650, 5, 46, 0, 0, 6650, 6651, 5, 41, 0, 0, 6651, 6652, 5, 2, 0, 0, 6652, 6653, 3, 1170, 585, 0, 6653, 6654, 5, 36, 0, 0, 6654, 6655, 3, 1170, 585, 0, 6655, 6656, 5, 3, 0, 0, 6656, 6657, 5, 105, 0, 0, 6657, 6658, 5, 211, 0, 0, 6658, 6660, 3, 674, 337, 0, 6659, 6661, 3, 746, 373, 0, 6660, 6659, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6687, 1, 0, 0, 0, 6662, 6663, 5, 46, 0, 0, 6663, 6664, 5, 41, 0, 0, 6664, 6665, 5, 2, 0, 0, 6665, 6666, 3, 1170, 585, 0, 6666, 6667, 5, 36, 0, 0, 6667, 6668, 3, 1170, 585, 0, 6668, 6669, 5, 3, 0, 0, 6669, 6670, 5, 379, 0, 0, 6670, 6672, 5, 211, 0, 0, 6671, 6673, 3, 746, 373, 0, 6672, 6671, 1, 0, 0, 0, 6672, 6673, 1, 0, 0, 0, 6673, 6687, 1, 0, 0, 0, 6674, 6675, 5, 46, 0, 0, 6675, 6676, 5, 41, 0, 0, 6676, 6677, 5, 2, 0, 0, 6677, 6678, 3, 1170, 585, 0, 6678, 6679, 5, 36, 0, 0, 6679, 6680, 3, 1170, 585, 0, 6680, 6681, 5, 3, 0, 0, 6681, 6682, 5, 105, 0, 0, 6682, 6684, 5, 400, 0, 0, 6683, 6685, 3, 746, 373, 0, 6684, 6683, 1, 0, 0, 0, 6684, 6685, 1, 0, 0, 0, 6685, 6687, 1, 0, 0, 0, 6686, 6649, 1, 0, 0, 0, 6686, 6662, 1, 0, 0, 0, 6686, 6674, 1, 0, 0, 0, 6687, 745, 1, 0, 0, 0, 6688, 6689, 5, 36, 0, 0, 6689, 6693, 5, 223, 0, 0, 6690, 6691, 5, 36, 0, 0, 6691, 6693, 5, 141, 0, 0, 6692, 6688, 1, 0, 0, 0, 6692, 6690, 1, 0, 0, 0, 6693, 747, 1, 0, 0, 0, 6694, 6695, 5, 220, 0, 0, 6695, 6696, 5, 396, 0, 0, 6696, 749, 1, 0, 0, 0, 6697, 6699, 5, 46, 0, 0, 6698, 6700, 3, 658, 329, 0, 6699, 6698, 1, 0, 0, 0, 6699, 6700, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 6702, 5, 443, 0, 0, 6702, 6703, 5, 62, 0, 0, 6703, 6704, 3, 1170, 585, 0, 6704, 6705, 5, 247, 0, 0, 6705, 6706, 3, 1438, 719, 0, 6706, 6707, 5, 2, 0, 0, 6707, 6708, 3, 752, 376, 0, 6708, 6709, 5, 3, 0, 0, 6709, 751, 1, 0, 0, 0, 6710, 6711, 5, 64, 0, 0, 6711, 6712, 5, 461, 0, 0, 6712, 6713, 5, 105, 0, 0, 6713, 6714, 5, 211, 0, 0, 6714, 6715, 3, 674, 337, 0, 6715, 6716, 5, 6, 0, 0, 6716, 6717, 5, 94, 0, 0, 6717, 6718, 5, 461, 0, 0, 6718, 6719, 5, 105, 0, 0, 6719, 6720, 5, 211, 0, 0, 6720, 6721, 3, 674, 337, 0, 6721, 6745, 1, 0, 0, 0, 6722, 6723, 5, 94, 0, 0, 6723, 6724, 5, 461, 0, 0, 6724, 6725, 5, 105, 0, 0, 6725, 6726, 5, 211, 0, 0, 6726, 6727, 3, 674, 337, 0, 6727, 6728, 5, 6, 0, 0, 6728, 6729, 5, 64, 0, 0, 6729, 6730, 5, 461, 0, 0, 6730, 6731, 5, 105, 0, 0, 6731, 6732, 5, 211, 0, 0, 6732, 6733, 3, 674, 337, 0, 6733, 6745, 1, 0, 0, 0, 6734, 6735, 5, 64, 0, 0, 6735, 6736, 5, 461, 0, 0, 6736, 6737, 5, 105, 0, 0, 6737, 6738, 5, 211, 0, 0, 6738, 6745, 3, 674, 337, 0, 6739, 6740, 5, 94, 0, 0, 6740, 6741, 5, 461, 0, 0, 6741, 6742, 5, 105, 0, 0, 6742, 6743, 5, 211, 0, 0, 6743, 6745, 3, 674, 337, 0, 6744, 6710, 1, 0, 0, 0, 6744, 6722, 1, 0, 0, 0, 6744, 6734, 1, 0, 0, 0, 6744, 6739, 1, 0, 0, 0, 6745, 753, 1, 0, 0, 0, 6746, 6747, 5, 306, 0, 0, 6747, 6763, 3, 756, 378, 0, 6748, 6749, 5, 306, 0, 0, 6749, 6763, 3, 758, 379, 0, 6750, 6751, 5, 306, 0, 0, 6751, 6752, 5, 2, 0, 0, 6752, 6753, 3, 760, 380, 0, 6753, 6754, 5, 3, 0, 0, 6754, 6755, 3, 756, 378, 0, 6755, 6763, 1, 0, 0, 0, 6756, 6757, 5, 306, 0, 0, 6757, 6758, 5, 2, 0, 0, 6758, 6759, 3, 760, 380, 0, 6759, 6760, 5, 3, 0, 0, 6760, 6761, 3, 758, 379, 0, 6761, 6763, 1, 0, 0, 0, 6762, 6746, 1, 0, 0, 0, 6762, 6748, 1, 0, 0, 0, 6762, 6750, 1, 0, 0, 0, 6762, 6756, 1, 0, 0, 0, 6763, 755, 1, 0, 0, 0, 6764, 6766, 5, 226, 0, 0, 6765, 6767, 3, 630, 315, 0, 6766, 6765, 1, 0, 0, 0, 6766, 6767, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6775, 3, 1414, 707, 0, 6769, 6771, 5, 92, 0, 0, 6770, 6772, 3, 630, 315, 0, 6771, 6770, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 6773, 1, 0, 0, 0, 6773, 6775, 3, 1408, 704, 0, 6774, 6764, 1, 0, 0, 0, 6774, 6769, 1, 0, 0, 0, 6775, 757, 1, 0, 0, 0, 6776, 6778, 5, 323, 0, 0, 6777, 6779, 3, 630, 315, 0, 6778, 6777, 1, 0, 0, 0, 6778, 6779, 1, 0, 0, 0, 6779, 6780, 1, 0, 0, 0, 6780, 6792, 3, 1424, 712, 0, 6781, 6783, 5, 349, 0, 0, 6782, 6784, 3, 630, 315, 0, 6783, 6782, 1, 0, 0, 0, 6783, 6784, 1, 0, 0, 0, 6784, 6785, 1, 0, 0, 0, 6785, 6792, 3, 1438, 719, 0, 6786, 6788, 5, 175, 0, 0, 6787, 6789, 3, 630, 315, 0, 6788, 6787, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 6792, 3, 1422, 711, 0, 6791, 6776, 1, 0, 0, 0, 6791, 6781, 1, 0, 0, 0, 6791, 6786, 1, 0, 0, 0, 6792, 759, 1, 0, 0, 0, 6793, 6798, 3, 762, 381, 0, 6794, 6795, 5, 6, 0, 0, 6795, 6797, 3, 762, 381, 0, 6796, 6794, 1, 0, 0, 0, 6797, 6800, 1, 0, 0, 0, 6798, 6796, 1, 0, 0, 0, 6798, 6799, 1, 0, 0, 0, 6799, 761, 1, 0, 0, 0, 6800, 6798, 1, 0, 0, 0, 6801, 6802, 5, 128, 0, 0, 6802, 763, 1, 0, 0, 0, 6803, 6804, 5, 138, 0, 0, 6804, 6805, 5, 351, 0, 0, 6805, 6806, 3, 1404, 702, 0, 6806, 6807, 5, 333, 0, 0, 6807, 6808, 3, 132, 66, 0, 6808, 6816, 1, 0, 0, 0, 6809, 6810, 5, 138, 0, 0, 6810, 6811, 5, 351, 0, 0, 6811, 6812, 3, 1404, 702, 0, 6812, 6813, 5, 313, 0, 0, 6813, 6814, 3, 132, 66, 0, 6814, 6816, 1, 0, 0, 0, 6815, 6803, 1, 0, 0, 0, 6815, 6809, 1, 0, 0, 0, 6816, 765, 1, 0, 0, 0, 6817, 6818, 5, 138, 0, 0, 6818, 6819, 5, 136, 0, 0, 6819, 6820, 3, 698, 349, 0, 6820, 6821, 5, 309, 0, 0, 6821, 6822, 5, 94, 0, 0, 6822, 6823, 3, 1438, 719, 0, 6823, 7209, 1, 0, 0, 0, 6824, 6825, 5, 138, 0, 0, 6825, 6826, 5, 108, 0, 0, 6826, 6827, 3, 558, 279, 0, 6827, 6828, 5, 309, 0, 0, 6828, 6829, 5, 94, 0, 0, 6829, 6830, 3, 1438, 719, 0, 6830, 7209, 1, 0, 0, 0, 6831, 6832, 5, 138, 0, 0, 6832, 6833, 5, 168, 0, 0, 6833, 6834, 3, 558, 279, 0, 6834, 6835, 5, 309, 0, 0, 6835, 6836, 5, 94, 0, 0, 6836, 6837, 3, 1438, 719, 0, 6837, 7209, 1, 0, 0, 0, 6838, 6839, 5, 138, 0, 0, 6839, 6840, 5, 175, 0, 0, 6840, 6841, 3, 1422, 711, 0, 6841, 6842, 5, 309, 0, 0, 6842, 6843, 5, 94, 0, 0, 6843, 6844, 3, 1420, 710, 0, 6844, 7209, 1, 0, 0, 0, 6845, 6846, 5, 138, 0, 0, 6846, 6847, 5, 189, 0, 0, 6847, 6848, 3, 558, 279, 0, 6848, 6849, 5, 309, 0, 0, 6849, 6850, 5, 94, 0, 0, 6850, 6851, 3, 1438, 719, 0, 6851, 7209, 1, 0, 0, 0, 6852, 6853, 5, 138, 0, 0, 6853, 6854, 5, 189, 0, 0, 6854, 6855, 3, 558, 279, 0, 6855, 6856, 5, 309, 0, 0, 6856, 6857, 5, 45, 0, 0, 6857, 6858, 3, 1438, 719, 0, 6858, 6859, 5, 94, 0, 0, 6859, 6860, 3, 1438, 719, 0, 6860, 7209, 1, 0, 0, 0, 6861, 6862, 5, 138, 0, 0, 6862, 6863, 5, 63, 0, 0, 6863, 6864, 5, 174, 0, 0, 6864, 6865, 5, 381, 0, 0, 6865, 6866, 3, 1438, 719, 0, 6866, 6867, 5, 309, 0, 0, 6867, 6868, 5, 94, 0, 0, 6868, 6869, 3, 1438, 719, 0, 6869, 7209, 1, 0, 0, 0, 6870, 6871, 5, 138, 0, 0, 6871, 6872, 5, 211, 0, 0, 6872, 6873, 3, 674, 337, 0, 6873, 6874, 5, 309, 0, 0, 6874, 6875, 5, 94, 0, 0, 6875, 6876, 3, 1444, 722, 0, 6876, 7209, 1, 0, 0, 0, 6877, 6878, 5, 138, 0, 0, 6878, 6879, 5, 66, 0, 0, 6879, 6880, 3, 1470, 735, 0, 6880, 6881, 5, 309, 0, 0, 6881, 6882, 5, 94, 0, 0, 6882, 6883, 3, 1470, 735, 0, 6883, 7209, 1, 0, 0, 0, 6884, 6886, 5, 138, 0, 0, 6885, 6887, 3, 336, 168, 0, 6886, 6885, 1, 0, 0, 0, 6886, 6887, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 6889, 5, 247, 0, 0, 6889, 6890, 3, 1438, 719, 0, 6890, 6891, 5, 309, 0, 0, 6891, 6892, 5, 94, 0, 0, 6892, 6893, 3, 1438, 719, 0, 6893, 7209, 1, 0, 0, 0, 6894, 6895, 5, 138, 0, 0, 6895, 6896, 5, 278, 0, 0, 6896, 6897, 5, 156, 0, 0, 6897, 6898, 3, 558, 279, 0, 6898, 6899, 5, 100, 0, 0, 6899, 6900, 3, 1438, 719, 0, 6900, 6901, 5, 309, 0, 0, 6901, 6902, 5, 94, 0, 0, 6902, 6903, 3, 1438, 719, 0, 6903, 7209, 1, 0, 0, 0, 6904, 6905, 5, 138, 0, 0, 6905, 6906, 5, 278, 0, 0, 6906, 6907, 5, 206, 0, 0, 6907, 6908, 3, 558, 279, 0, 6908, 6909, 5, 100, 0, 0, 6909, 6910, 3, 1438, 719, 0, 6910, 6911, 5, 309, 0, 0, 6911, 6912, 5, 94, 0, 0, 6912, 6913, 3, 1438, 719, 0, 6913, 7209, 1, 0, 0, 0, 6914, 6915, 5, 138, 0, 0, 6915, 6917, 5, 445, 0, 0, 6916, 6918, 3, 748, 374, 0, 6917, 6916, 1, 0, 0, 0, 6917, 6918, 1, 0, 0, 0, 6918, 6919, 1, 0, 0, 0, 6919, 6920, 3, 1438, 719, 0, 6920, 6921, 5, 80, 0, 0, 6921, 6922, 3, 1414, 707, 0, 6922, 6923, 5, 309, 0, 0, 6923, 6924, 5, 94, 0, 0, 6924, 6925, 3, 1438, 719, 0, 6925, 7209, 1, 0, 0, 0, 6926, 6927, 5, 138, 0, 0, 6927, 6928, 5, 296, 0, 0, 6928, 6929, 3, 670, 335, 0, 6929, 6930, 5, 309, 0, 0, 6930, 6931, 5, 94, 0, 0, 6931, 6932, 3, 1432, 716, 0, 6932, 7209, 1, 0, 0, 0, 6933, 6934, 5, 138, 0, 0, 6934, 6935, 5, 452, 0, 0, 6935, 6936, 3, 1438, 719, 0, 6936, 6937, 5, 309, 0, 0, 6937, 6938, 5, 94, 0, 0, 6938, 6939, 3, 1438, 719, 0, 6939, 7209, 1, 0, 0, 0, 6940, 6941, 5, 138, 0, 0, 6941, 6942, 5, 442, 0, 0, 6942, 6943, 3, 666, 333, 0, 6943, 6944, 5, 309, 0, 0, 6944, 6945, 5, 94, 0, 0, 6945, 6946, 3, 1438, 719, 0, 6946, 7209, 1, 0, 0, 0, 6947, 6948, 5, 138, 0, 0, 6948, 6949, 5, 323, 0, 0, 6949, 6950, 3, 1424, 712, 0, 6950, 6951, 5, 309, 0, 0, 6951, 6952, 5, 94, 0, 0, 6952, 6953, 3, 48, 24, 0, 6953, 7209, 1, 0, 0, 0, 6954, 6955, 5, 138, 0, 0, 6955, 6956, 5, 331, 0, 0, 6956, 6957, 3, 1438, 719, 0, 6957, 6958, 5, 309, 0, 0, 6958, 6959, 5, 94, 0, 0, 6959, 6960, 3, 1438, 719, 0, 6960, 7209, 1, 0, 0, 0, 6961, 6962, 5, 138, 0, 0, 6962, 6963, 5, 451, 0, 0, 6963, 6964, 3, 1438, 719, 0, 6964, 6965, 5, 309, 0, 0, 6965, 6966, 5, 94, 0, 0, 6966, 6967, 3, 1438, 719, 0, 6967, 7209, 1, 0, 0, 0, 6968, 6969, 5, 138, 0, 0, 6969, 6971, 5, 92, 0, 0, 6970, 6972, 3, 748, 374, 0, 6971, 6970, 1, 0, 0, 0, 6971, 6972, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6974, 3, 1120, 560, 0, 6974, 6975, 5, 309, 0, 0, 6975, 6976, 5, 94, 0, 0, 6976, 6977, 3, 1406, 703, 0, 6977, 7209, 1, 0, 0, 0, 6978, 6979, 5, 138, 0, 0, 6979, 6981, 5, 328, 0, 0, 6980, 6982, 3, 748, 374, 0, 6981, 6980, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 6983, 1, 0, 0, 0, 6983, 6984, 3, 1414, 707, 0, 6984, 6985, 5, 309, 0, 0, 6985, 6986, 5, 94, 0, 0, 6986, 6987, 3, 1438, 719, 0, 6987, 7209, 1, 0, 0, 0, 6988, 6989, 5, 138, 0, 0, 6989, 6991, 5, 376, 0, 0, 6990, 6992, 3, 748, 374, 0, 6991, 6990, 1, 0, 0, 0, 6991, 6992, 1, 0, 0, 0, 6992, 6993, 1, 0, 0, 0, 6993, 6994, 3, 1412, 706, 0, 6994, 6995, 5, 309, 0, 0, 6995, 6996, 5, 94, 0, 0, 6996, 6997, 3, 1410, 705, 0, 6997, 7209, 1, 0, 0, 0, 6998, 6999, 5, 138, 0, 0, 6999, 7000, 5, 259, 0, 0, 7000, 7002, 5, 376, 0, 0, 7001, 7003, 3, 748, 374, 0, 7002, 7001, 1, 0, 0, 0, 7002, 7003, 1, 0, 0, 0, 7003, 7004, 1, 0, 0, 0, 7004, 7005, 3, 1412, 706, 0, 7005, 7006, 5, 309, 0, 0, 7006, 7007, 5, 94, 0, 0, 7007, 7008, 3, 1410, 705, 0, 7008, 7209, 1, 0, 0, 0, 7009, 7010, 5, 138, 0, 0, 7010, 7012, 5, 226, 0, 0, 7011, 7013, 3, 748, 374, 0, 7012, 7011, 1, 0, 0, 0, 7012, 7013, 1, 0, 0, 0, 7013, 7014, 1, 0, 0, 0, 7014, 7015, 3, 1414, 707, 0, 7015, 7016, 5, 309, 0, 0, 7016, 7017, 5, 94, 0, 0, 7017, 7018, 3, 1438, 719, 0, 7018, 7209, 1, 0, 0, 0, 7019, 7020, 5, 138, 0, 0, 7020, 7021, 5, 63, 0, 0, 7021, 7023, 5, 92, 0, 0, 7022, 7024, 3, 748, 374, 0, 7023, 7022, 1, 0, 0, 0, 7023, 7024, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 7026, 3, 1120, 560, 0, 7026, 7027, 5, 309, 0, 0, 7027, 7028, 5, 94, 0, 0, 7028, 7029, 3, 1406, 703, 0, 7029, 7209, 1, 0, 0, 0, 7030, 7031, 5, 138, 0, 0, 7031, 7033, 5, 92, 0, 0, 7032, 7034, 3, 748, 374, 0, 7033, 7032, 1, 0, 0, 0, 7033, 7034, 1, 0, 0, 0, 7034, 7035, 1, 0, 0, 0, 7035, 7036, 3, 1120, 560, 0, 7036, 7038, 5, 309, 0, 0, 7037, 7039, 3, 768, 384, 0, 7038, 7037, 1, 0, 0, 0, 7038, 7039, 1, 0, 0, 0, 7039, 7040, 1, 0, 0, 0, 7040, 7041, 3, 1434, 717, 0, 7041, 7042, 5, 94, 0, 0, 7042, 7043, 3, 1436, 718, 0, 7043, 7209, 1, 0, 0, 0, 7044, 7045, 5, 138, 0, 0, 7045, 7047, 5, 376, 0, 0, 7046, 7048, 3, 748, 374, 0, 7047, 7046, 1, 0, 0, 0, 7047, 7048, 1, 0, 0, 0, 7048, 7049, 1, 0, 0, 0, 7049, 7050, 3, 1412, 706, 0, 7050, 7052, 5, 309, 0, 0, 7051, 7053, 3, 768, 384, 0, 7052, 7051, 1, 0, 0, 0, 7052, 7053, 1, 0, 0, 0, 7053, 7054, 1, 0, 0, 0, 7054, 7055, 3, 1434, 717, 0, 7055, 7056, 5, 94, 0, 0, 7056, 7057, 3, 1436, 718, 0, 7057, 7209, 1, 0, 0, 0, 7058, 7059, 5, 138, 0, 0, 7059, 7060, 5, 259, 0, 0, 7060, 7062, 5, 376, 0, 0, 7061, 7063, 3, 748, 374, 0, 7062, 7061, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7065, 3, 1412, 706, 0, 7065, 7067, 5, 309, 0, 0, 7066, 7068, 3, 768, 384, 0, 7067, 7066, 1, 0, 0, 0, 7067, 7068, 1, 0, 0, 0, 7068, 7069, 1, 0, 0, 0, 7069, 7070, 3, 1434, 717, 0, 7070, 7071, 5, 94, 0, 0, 7071, 7072, 3, 1436, 718, 0, 7072, 7209, 1, 0, 0, 0, 7073, 7074, 5, 138, 0, 0, 7074, 7076, 5, 92, 0, 0, 7075, 7077, 3, 748, 374, 0, 7076, 7075, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7078, 1, 0, 0, 0, 7078, 7079, 3, 1120, 560, 0, 7079, 7080, 5, 309, 0, 0, 7080, 7081, 5, 45, 0, 0, 7081, 7082, 3, 1438, 719, 0, 7082, 7083, 5, 94, 0, 0, 7083, 7084, 3, 1438, 719, 0, 7084, 7209, 1, 0, 0, 0, 7085, 7086, 5, 138, 0, 0, 7086, 7087, 5, 63, 0, 0, 7087, 7089, 5, 92, 0, 0, 7088, 7090, 3, 748, 374, 0, 7089, 7088, 1, 0, 0, 0, 7089, 7090, 1, 0, 0, 0, 7090, 7091, 1, 0, 0, 0, 7091, 7092, 3, 1120, 560, 0, 7092, 7094, 5, 309, 0, 0, 7093, 7095, 3, 768, 384, 0, 7094, 7093, 1, 0, 0, 0, 7094, 7095, 1, 0, 0, 0, 7095, 7096, 1, 0, 0, 0, 7096, 7097, 3, 1434, 717, 0, 7097, 7098, 5, 94, 0, 0, 7098, 7099, 3, 1436, 718, 0, 7099, 7209, 1, 0, 0, 0, 7100, 7101, 5, 138, 0, 0, 7101, 7102, 5, 321, 0, 0, 7102, 7103, 3, 1438, 719, 0, 7103, 7104, 5, 80, 0, 0, 7104, 7105, 3, 1414, 707, 0, 7105, 7106, 5, 309, 0, 0, 7106, 7107, 5, 94, 0, 0, 7107, 7108, 3, 1438, 719, 0, 7108, 7209, 1, 0, 0, 0, 7109, 7110, 5, 138, 0, 0, 7110, 7111, 5, 357, 0, 0, 7111, 7112, 3, 1438, 719, 0, 7112, 7113, 5, 80, 0, 0, 7113, 7114, 3, 1414, 707, 0, 7114, 7115, 5, 309, 0, 0, 7115, 7116, 5, 94, 0, 0, 7116, 7117, 3, 1438, 719, 0, 7117, 7209, 1, 0, 0, 0, 7118, 7119, 5, 138, 0, 0, 7119, 7120, 5, 198, 0, 0, 7120, 7121, 5, 357, 0, 0, 7121, 7122, 3, 1438, 719, 0, 7122, 7123, 5, 309, 0, 0, 7123, 7124, 5, 94, 0, 0, 7124, 7125, 3, 1438, 719, 0, 7125, 7209, 1, 0, 0, 0, 7126, 7127, 5, 138, 0, 0, 7127, 7128, 5, 318, 0, 0, 7128, 7129, 3, 1470, 735, 0, 7129, 7130, 5, 309, 0, 0, 7130, 7131, 5, 94, 0, 0, 7131, 7132, 3, 1470, 735, 0, 7132, 7209, 1, 0, 0, 0, 7133, 7134, 5, 138, 0, 0, 7134, 7135, 5, 99, 0, 0, 7135, 7136, 3, 1470, 735, 0, 7136, 7137, 5, 309, 0, 0, 7137, 7138, 5, 94, 0, 0, 7138, 7139, 3, 1470, 735, 0, 7139, 7209, 1, 0, 0, 0, 7140, 7141, 5, 138, 0, 0, 7141, 7142, 5, 351, 0, 0, 7142, 7143, 3, 1404, 702, 0, 7143, 7144, 5, 309, 0, 0, 7144, 7145, 5, 94, 0, 0, 7145, 7146, 3, 1402, 701, 0, 7146, 7209, 1, 0, 0, 0, 7147, 7148, 5, 138, 0, 0, 7148, 7149, 5, 342, 0, 0, 7149, 7150, 3, 558, 279, 0, 7150, 7151, 5, 309, 0, 0, 7151, 7152, 5, 94, 0, 0, 7152, 7153, 3, 1438, 719, 0, 7153, 7209, 1, 0, 0, 0, 7154, 7155, 5, 138, 0, 0, 7155, 7156, 5, 355, 0, 0, 7156, 7157, 5, 325, 0, 0, 7157, 7158, 5, 283, 0, 0, 7158, 7159, 3, 558, 279, 0, 7159, 7160, 5, 309, 0, 0, 7160, 7161, 5, 94, 0, 0, 7161, 7162, 3, 1438, 719, 0, 7162, 7209, 1, 0, 0, 0, 7163, 7164, 5, 138, 0, 0, 7164, 7165, 5, 355, 0, 0, 7165, 7166, 5, 325, 0, 0, 7166, 7167, 5, 185, 0, 0, 7167, 7168, 3, 558, 279, 0, 7168, 7169, 5, 309, 0, 0, 7169, 7170, 5, 94, 0, 0, 7170, 7171, 3, 1438, 719, 0, 7171, 7209, 1, 0, 0, 0, 7172, 7173, 5, 138, 0, 0, 7173, 7174, 5, 355, 0, 0, 7174, 7175, 5, 325, 0, 0, 7175, 7176, 5, 353, 0, 0, 7176, 7177, 3, 558, 279, 0, 7177, 7178, 5, 309, 0, 0, 7178, 7179, 5, 94, 0, 0, 7179, 7180, 3, 1438, 719, 0, 7180, 7209, 1, 0, 0, 0, 7181, 7182, 5, 138, 0, 0, 7182, 7183, 5, 355, 0, 0, 7183, 7184, 5, 325, 0, 0, 7184, 7185, 5, 163, 0, 0, 7185, 7186, 3, 558, 279, 0, 7186, 7187, 5, 309, 0, 0, 7187, 7188, 5, 94, 0, 0, 7188, 7189, 3, 1438, 719, 0, 7189, 7209, 1, 0, 0, 0, 7190, 7191, 5, 138, 0, 0, 7191, 7192, 5, 360, 0, 0, 7192, 7193, 3, 558, 279, 0, 7193, 7194, 5, 309, 0, 0, 7194, 7195, 5, 94, 0, 0, 7195, 7196, 3, 1438, 719, 0, 7196, 7209, 1, 0, 0, 0, 7197, 7198, 5, 138, 0, 0, 7198, 7199, 5, 360, 0, 0, 7199, 7200, 3, 558, 279, 0, 7200, 7201, 5, 309, 0, 0, 7201, 7202, 5, 143, 0, 0, 7202, 7203, 3, 1438, 719, 0, 7203, 7204, 5, 94, 0, 0, 7204, 7206, 3, 1438, 719, 0, 7205, 7207, 3, 124, 62, 0, 7206, 7205, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7209, 1, 0, 0, 0, 7208, 6817, 1, 0, 0, 0, 7208, 6824, 1, 0, 0, 0, 7208, 6831, 1, 0, 0, 0, 7208, 6838, 1, 0, 0, 0, 7208, 6845, 1, 0, 0, 0, 7208, 6852, 1, 0, 0, 0, 7208, 6861, 1, 0, 0, 0, 7208, 6870, 1, 0, 0, 0, 7208, 6877, 1, 0, 0, 0, 7208, 6884, 1, 0, 0, 0, 7208, 6894, 1, 0, 0, 0, 7208, 6904, 1, 0, 0, 0, 7208, 6914, 1, 0, 0, 0, 7208, 6926, 1, 0, 0, 0, 7208, 6933, 1, 0, 0, 0, 7208, 6940, 1, 0, 0, 0, 7208, 6947, 1, 0, 0, 0, 7208, 6954, 1, 0, 0, 0, 7208, 6961, 1, 0, 0, 0, 7208, 6968, 1, 0, 0, 0, 7208, 6978, 1, 0, 0, 0, 7208, 6988, 1, 0, 0, 0, 7208, 6998, 1, 0, 0, 0, 7208, 7009, 1, 0, 0, 0, 7208, 7019, 1, 0, 0, 0, 7208, 7030, 1, 0, 0, 0, 7208, 7044, 1, 0, 0, 0, 7208, 7058, 1, 0, 0, 0, 7208, 7073, 1, 0, 0, 0, 7208, 7085, 1, 0, 0, 0, 7208, 7100, 1, 0, 0, 0, 7208, 7109, 1, 0, 0, 0, 7208, 7118, 1, 0, 0, 0, 7208, 7126, 1, 0, 0, 0, 7208, 7133, 1, 0, 0, 0, 7208, 7140, 1, 0, 0, 0, 7208, 7147, 1, 0, 0, 0, 7208, 7154, 1, 0, 0, 0, 7208, 7163, 1, 0, 0, 0, 7208, 7172, 1, 0, 0, 0, 7208, 7181, 1, 0, 0, 0, 7208, 7190, 1, 0, 0, 0, 7208, 7197, 1, 0, 0, 0, 7209, 767, 1, 0, 0, 0, 7210, 7211, 5, 44, 0, 0, 7211, 769, 1, 0, 0, 0, 7212, 7213, 5, 333, 0, 0, 7213, 7214, 5, 174, 0, 0, 7214, 771, 1, 0, 0, 0, 7215, 7216, 5, 138, 0, 0, 7216, 7217, 5, 211, 0, 0, 7217, 7219, 3, 674, 337, 0, 7218, 7220, 3, 774, 387, 0, 7219, 7218, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 7221, 1, 0, 0, 0, 7221, 7222, 5, 462, 0, 0, 7222, 7223, 5, 80, 0, 0, 7223, 7224, 5, 204, 0, 0, 7224, 7225, 3, 1438, 719, 0, 7225, 7285, 1, 0, 0, 0, 7226, 7227, 5, 138, 0, 0, 7227, 7228, 5, 296, 0, 0, 7228, 7230, 3, 670, 335, 0, 7229, 7231, 3, 774, 387, 0, 7230, 7229, 1, 0, 0, 0, 7230, 7231, 1, 0, 0, 0, 7231, 7232, 1, 0, 0, 0, 7232, 7233, 5, 462, 0, 0, 7233, 7234, 5, 80, 0, 0, 7234, 7235, 5, 204, 0, 0, 7235, 7236, 3, 1438, 719, 0, 7236, 7285, 1, 0, 0, 0, 7237, 7238, 5, 138, 0, 0, 7238, 7239, 5, 442, 0, 0, 7239, 7241, 3, 666, 333, 0, 7240, 7242, 3, 774, 387, 0, 7241, 7240, 1, 0, 0, 0, 7241, 7242, 1, 0, 0, 0, 7242, 7243, 1, 0, 0, 0, 7243, 7244, 5, 462, 0, 0, 7244, 7245, 5, 80, 0, 0, 7245, 7246, 5, 204, 0, 0, 7246, 7247, 3, 1438, 719, 0, 7247, 7285, 1, 0, 0, 0, 7248, 7249, 5, 138, 0, 0, 7249, 7250, 5, 357, 0, 0, 7250, 7251, 3, 1438, 719, 0, 7251, 7252, 5, 80, 0, 0, 7252, 7254, 3, 1414, 707, 0, 7253, 7255, 3, 774, 387, 0, 7254, 7253, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 7257, 5, 462, 0, 0, 7257, 7258, 5, 80, 0, 0, 7258, 7259, 5, 204, 0, 0, 7259, 7260, 3, 1438, 719, 0, 7260, 7285, 1, 0, 0, 0, 7261, 7262, 5, 138, 0, 0, 7262, 7263, 5, 259, 0, 0, 7263, 7264, 5, 376, 0, 0, 7264, 7266, 3, 1412, 706, 0, 7265, 7267, 3, 774, 387, 0, 7266, 7265, 1, 0, 0, 0, 7266, 7267, 1, 0, 0, 0, 7267, 7268, 1, 0, 0, 0, 7268, 7269, 5, 462, 0, 0, 7269, 7270, 5, 80, 0, 0, 7270, 7271, 5, 204, 0, 0, 7271, 7272, 3, 1438, 719, 0, 7272, 7285, 1, 0, 0, 0, 7273, 7274, 5, 138, 0, 0, 7274, 7275, 5, 226, 0, 0, 7275, 7277, 3, 1414, 707, 0, 7276, 7278, 3, 774, 387, 0, 7277, 7276, 1, 0, 0, 0, 7277, 7278, 1, 0, 0, 0, 7278, 7279, 1, 0, 0, 0, 7279, 7280, 5, 462, 0, 0, 7280, 7281, 5, 80, 0, 0, 7281, 7282, 5, 204, 0, 0, 7282, 7283, 3, 1438, 719, 0, 7283, 7285, 1, 0, 0, 0, 7284, 7215, 1, 0, 0, 0, 7284, 7226, 1, 0, 0, 0, 7284, 7237, 1, 0, 0, 0, 7284, 7248, 1, 0, 0, 0, 7284, 7261, 1, 0, 0, 0, 7284, 7273, 1, 0, 0, 0, 7285, 773, 1, 0, 0, 0, 7286, 7287, 5, 269, 0, 0, 7287, 775, 1, 0, 0, 0, 7288, 7289, 5, 138, 0, 0, 7289, 7290, 5, 136, 0, 0, 7290, 7291, 3, 698, 349, 0, 7291, 7292, 5, 333, 0, 0, 7292, 7293, 5, 323, 0, 0, 7293, 7294, 3, 48, 24, 0, 7294, 7474, 1, 0, 0, 0, 7295, 7296, 5, 138, 0, 0, 7296, 7297, 5, 108, 0, 0, 7297, 7298, 3, 558, 279, 0, 7298, 7299, 5, 333, 0, 0, 7299, 7300, 5, 323, 0, 0, 7300, 7301, 3, 48, 24, 0, 7301, 7474, 1, 0, 0, 0, 7302, 7303, 5, 138, 0, 0, 7303, 7304, 5, 168, 0, 0, 7304, 7305, 3, 558, 279, 0, 7305, 7306, 5, 333, 0, 0, 7306, 7307, 5, 323, 0, 0, 7307, 7308, 3, 48, 24, 0, 7308, 7474, 1, 0, 0, 0, 7309, 7310, 5, 138, 0, 0, 7310, 7311, 5, 189, 0, 0, 7311, 7312, 3, 558, 279, 0, 7312, 7313, 5, 333, 0, 0, 7313, 7314, 5, 323, 0, 0, 7314, 7315, 3, 48, 24, 0, 7315, 7474, 1, 0, 0, 0, 7316, 7317, 5, 138, 0, 0, 7317, 7318, 5, 204, 0, 0, 7318, 7319, 3, 1438, 719, 0, 7319, 7320, 5, 333, 0, 0, 7320, 7321, 5, 323, 0, 0, 7321, 7322, 3, 48, 24, 0, 7322, 7474, 1, 0, 0, 0, 7323, 7324, 5, 138, 0, 0, 7324, 7325, 5, 211, 0, 0, 7325, 7326, 3, 674, 337, 0, 7326, 7327, 5, 333, 0, 0, 7327, 7328, 5, 323, 0, 0, 7328, 7329, 3, 48, 24, 0, 7329, 7474, 1, 0, 0, 0, 7330, 7331, 5, 138, 0, 0, 7331, 7332, 5, 278, 0, 0, 7332, 7333, 3, 736, 368, 0, 7333, 7334, 5, 333, 0, 0, 7334, 7335, 5, 323, 0, 0, 7335, 7336, 3, 48, 24, 0, 7336, 7474, 1, 0, 0, 0, 7337, 7338, 5, 138, 0, 0, 7338, 7339, 5, 278, 0, 0, 7339, 7340, 5, 156, 0, 0, 7340, 7341, 3, 558, 279, 0, 7341, 7342, 5, 100, 0, 0, 7342, 7343, 3, 1438, 719, 0, 7343, 7344, 5, 333, 0, 0, 7344, 7345, 5, 323, 0, 0, 7345, 7346, 3, 48, 24, 0, 7346, 7474, 1, 0, 0, 0, 7347, 7348, 5, 138, 0, 0, 7348, 7349, 5, 278, 0, 0, 7349, 7350, 5, 206, 0, 0, 7350, 7351, 3, 558, 279, 0, 7351, 7352, 5, 100, 0, 0, 7352, 7353, 3, 1438, 719, 0, 7353, 7354, 5, 333, 0, 0, 7354, 7355, 5, 323, 0, 0, 7355, 7356, 3, 48, 24, 0, 7356, 7474, 1, 0, 0, 0, 7357, 7358, 5, 138, 0, 0, 7358, 7359, 5, 296, 0, 0, 7359, 7360, 3, 670, 335, 0, 7360, 7361, 5, 333, 0, 0, 7361, 7362, 5, 323, 0, 0, 7362, 7363, 3, 48, 24, 0, 7363, 7474, 1, 0, 0, 0, 7364, 7365, 5, 138, 0, 0, 7365, 7366, 5, 442, 0, 0, 7366, 7367, 3, 666, 333, 0, 7367, 7368, 5, 333, 0, 0, 7368, 7369, 5, 323, 0, 0, 7369, 7370, 3, 48, 24, 0, 7370, 7474, 1, 0, 0, 0, 7371, 7372, 5, 138, 0, 0, 7372, 7374, 5, 92, 0, 0, 7373, 7375, 3, 748, 374, 0, 7374, 7373, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 7376, 1, 0, 0, 0, 7376, 7377, 3, 1120, 560, 0, 7377, 7378, 5, 333, 0, 0, 7378, 7379, 5, 323, 0, 0, 7379, 7380, 3, 48, 24, 0, 7380, 7474, 1, 0, 0, 0, 7381, 7382, 5, 138, 0, 0, 7382, 7383, 5, 342, 0, 0, 7383, 7384, 3, 558, 279, 0, 7384, 7385, 5, 333, 0, 0, 7385, 7386, 5, 323, 0, 0, 7386, 7387, 3, 48, 24, 0, 7387, 7474, 1, 0, 0, 0, 7388, 7389, 5, 138, 0, 0, 7389, 7390, 5, 355, 0, 0, 7390, 7391, 5, 325, 0, 0, 7391, 7392, 5, 283, 0, 0, 7392, 7393, 3, 558, 279, 0, 7393, 7394, 5, 333, 0, 0, 7394, 7395, 5, 323, 0, 0, 7395, 7396, 3, 48, 24, 0, 7396, 7474, 1, 0, 0, 0, 7397, 7398, 5, 138, 0, 0, 7398, 7399, 5, 355, 0, 0, 7399, 7400, 5, 325, 0, 0, 7400, 7401, 5, 185, 0, 0, 7401, 7402, 3, 558, 279, 0, 7402, 7403, 5, 333, 0, 0, 7403, 7404, 5, 323, 0, 0, 7404, 7405, 3, 48, 24, 0, 7405, 7474, 1, 0, 0, 0, 7406, 7407, 5, 138, 0, 0, 7407, 7408, 5, 355, 0, 0, 7408, 7409, 5, 325, 0, 0, 7409, 7410, 5, 353, 0, 0, 7410, 7411, 3, 558, 279, 0, 7411, 7412, 5, 333, 0, 0, 7412, 7413, 5, 323, 0, 0, 7413, 7414, 3, 48, 24, 0, 7414, 7474, 1, 0, 0, 0, 7415, 7416, 5, 138, 0, 0, 7416, 7417, 5, 355, 0, 0, 7417, 7418, 5, 325, 0, 0, 7418, 7419, 5, 163, 0, 0, 7419, 7420, 3, 558, 279, 0, 7420, 7421, 5, 333, 0, 0, 7421, 7422, 5, 323, 0, 0, 7422, 7423, 3, 48, 24, 0, 7423, 7474, 1, 0, 0, 0, 7424, 7425, 5, 138, 0, 0, 7425, 7427, 5, 328, 0, 0, 7426, 7428, 3, 748, 374, 0, 7427, 7426, 1, 0, 0, 0, 7427, 7428, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 7430, 3, 1414, 707, 0, 7430, 7431, 5, 333, 0, 0, 7431, 7432, 5, 323, 0, 0, 7432, 7433, 3, 48, 24, 0, 7433, 7474, 1, 0, 0, 0, 7434, 7435, 5, 138, 0, 0, 7435, 7437, 5, 376, 0, 0, 7436, 7438, 3, 748, 374, 0, 7437, 7436, 1, 0, 0, 0, 7437, 7438, 1, 0, 0, 0, 7438, 7439, 1, 0, 0, 0, 7439, 7440, 3, 1412, 706, 0, 7440, 7441, 5, 333, 0, 0, 7441, 7442, 5, 323, 0, 0, 7442, 7443, 3, 48, 24, 0, 7443, 7474, 1, 0, 0, 0, 7444, 7445, 5, 138, 0, 0, 7445, 7446, 5, 259, 0, 0, 7446, 7448, 5, 376, 0, 0, 7447, 7449, 3, 748, 374, 0, 7448, 7447, 1, 0, 0, 0, 7448, 7449, 1, 0, 0, 0, 7449, 7450, 1, 0, 0, 0, 7450, 7451, 3, 1412, 706, 0, 7451, 7452, 5, 333, 0, 0, 7452, 7453, 5, 323, 0, 0, 7453, 7454, 3, 48, 24, 0, 7454, 7474, 1, 0, 0, 0, 7455, 7456, 5, 138, 0, 0, 7456, 7457, 5, 63, 0, 0, 7457, 7459, 5, 92, 0, 0, 7458, 7460, 3, 748, 374, 0, 7459, 7458, 1, 0, 0, 0, 7459, 7460, 1, 0, 0, 0, 7460, 7461, 1, 0, 0, 0, 7461, 7462, 3, 1120, 560, 0, 7462, 7463, 5, 333, 0, 0, 7463, 7464, 5, 323, 0, 0, 7464, 7465, 3, 48, 24, 0, 7465, 7474, 1, 0, 0, 0, 7466, 7467, 5, 138, 0, 0, 7467, 7468, 5, 360, 0, 0, 7468, 7469, 3, 558, 279, 0, 7469, 7470, 5, 333, 0, 0, 7470, 7471, 5, 323, 0, 0, 7471, 7472, 3, 48, 24, 0, 7472, 7474, 1, 0, 0, 0, 7473, 7288, 1, 0, 0, 0, 7473, 7295, 1, 0, 0, 0, 7473, 7302, 1, 0, 0, 0, 7473, 7309, 1, 0, 0, 0, 7473, 7316, 1, 0, 0, 0, 7473, 7323, 1, 0, 0, 0, 7473, 7330, 1, 0, 0, 0, 7473, 7337, 1, 0, 0, 0, 7473, 7347, 1, 0, 0, 0, 7473, 7357, 1, 0, 0, 0, 7473, 7364, 1, 0, 0, 0, 7473, 7371, 1, 0, 0, 0, 7473, 7381, 1, 0, 0, 0, 7473, 7388, 1, 0, 0, 0, 7473, 7397, 1, 0, 0, 0, 7473, 7406, 1, 0, 0, 0, 7473, 7415, 1, 0, 0, 0, 7473, 7424, 1, 0, 0, 0, 7473, 7434, 1, 0, 0, 0, 7473, 7444, 1, 0, 0, 0, 7473, 7455, 1, 0, 0, 0, 7473, 7466, 1, 0, 0, 0, 7474, 777, 1, 0, 0, 0, 7475, 7476, 5, 138, 0, 0, 7476, 7477, 5, 278, 0, 0, 7477, 7478, 3, 736, 368, 0, 7478, 7479, 5, 333, 0, 0, 7479, 7480, 5, 2, 0, 0, 7480, 7481, 3, 780, 390, 0, 7481, 7482, 5, 3, 0, 0, 7482, 779, 1, 0, 0, 0, 7483, 7488, 3, 782, 391, 0, 7484, 7485, 5, 6, 0, 0, 7485, 7487, 3, 782, 391, 0, 7486, 7484, 1, 0, 0, 0, 7487, 7490, 1, 0, 0, 0, 7488, 7486, 1, 0, 0, 0, 7488, 7489, 1, 0, 0, 0, 7489, 781, 1, 0, 0, 0, 7490, 7488, 1, 0, 0, 0, 7491, 7492, 3, 1492, 746, 0, 7492, 7493, 5, 10, 0, 0, 7493, 7494, 5, 407, 0, 0, 7494, 7500, 1, 0, 0, 0, 7495, 7496, 3, 1492, 746, 0, 7496, 7497, 5, 10, 0, 0, 7497, 7498, 3, 784, 392, 0, 7498, 7500, 1, 0, 0, 0, 7499, 7491, 1, 0, 0, 0, 7499, 7495, 1, 0, 0, 0, 7500, 783, 1, 0, 0, 0, 7501, 7507, 3, 688, 344, 0, 7502, 7507, 3, 1504, 752, 0, 7503, 7507, 3, 1326, 663, 0, 7504, 7507, 3, 320, 160, 0, 7505, 7507, 3, 1460, 730, 0, 7506, 7501, 1, 0, 0, 0, 7506, 7502, 1, 0, 0, 0, 7506, 7503, 1, 0, 0, 0, 7506, 7504, 1, 0, 0, 0, 7506, 7505, 1, 0, 0, 0, 7507, 785, 1, 0, 0, 0, 7508, 7509, 5, 138, 0, 0, 7509, 7510, 5, 360, 0, 0, 7510, 7511, 3, 558, 279, 0, 7511, 7512, 5, 333, 0, 0, 7512, 7513, 5, 2, 0, 0, 7513, 7514, 3, 780, 390, 0, 7514, 7515, 5, 3, 0, 0, 7515, 787, 1, 0, 0, 0, 7516, 7517, 5, 138, 0, 0, 7517, 7518, 5, 136, 0, 0, 7518, 7519, 3, 698, 349, 0, 7519, 7520, 5, 282, 0, 0, 7520, 7521, 5, 94, 0, 0, 7521, 7522, 3, 1472, 736, 0, 7522, 7702, 1, 0, 0, 0, 7523, 7524, 5, 138, 0, 0, 7524, 7525, 5, 108, 0, 0, 7525, 7526, 3, 558, 279, 0, 7526, 7527, 5, 282, 0, 0, 7527, 7528, 5, 94, 0, 0, 7528, 7529, 3, 1472, 736, 0, 7529, 7702, 1, 0, 0, 0, 7530, 7531, 5, 138, 0, 0, 7531, 7532, 5, 168, 0, 0, 7532, 7533, 3, 558, 279, 0, 7533, 7534, 5, 282, 0, 0, 7534, 7535, 5, 94, 0, 0, 7535, 7536, 3, 1472, 736, 0, 7536, 7702, 1, 0, 0, 0, 7537, 7538, 5, 138, 0, 0, 7538, 7539, 5, 175, 0, 0, 7539, 7540, 3, 1422, 711, 0, 7540, 7541, 5, 282, 0, 0, 7541, 7542, 5, 94, 0, 0, 7542, 7543, 3, 1472, 736, 0, 7543, 7702, 1, 0, 0, 0, 7544, 7545, 5, 138, 0, 0, 7545, 7546, 5, 189, 0, 0, 7546, 7547, 3, 558, 279, 0, 7547, 7548, 5, 282, 0, 0, 7548, 7549, 5, 94, 0, 0, 7549, 7550, 3, 1472, 736, 0, 7550, 7702, 1, 0, 0, 0, 7551, 7552, 5, 138, 0, 0, 7552, 7553, 5, 211, 0, 0, 7553, 7554, 3, 674, 337, 0, 7554, 7555, 5, 282, 0, 0, 7555, 7556, 5, 94, 0, 0, 7556, 7557, 3, 1472, 736, 0, 7557, 7702, 1, 0, 0, 0, 7558, 7560, 5, 138, 0, 0, 7559, 7561, 3, 336, 168, 0, 7560, 7559, 1, 0, 0, 0, 7560, 7561, 1, 0, 0, 0, 7561, 7562, 1, 0, 0, 0, 7562, 7563, 5, 247, 0, 0, 7563, 7564, 3, 1438, 719, 0, 7564, 7565, 5, 282, 0, 0, 7565, 7566, 5, 94, 0, 0, 7566, 7567, 3, 1472, 736, 0, 7567, 7702, 1, 0, 0, 0, 7568, 7569, 5, 138, 0, 0, 7569, 7570, 5, 248, 0, 0, 7570, 7571, 5, 274, 0, 0, 7571, 7572, 3, 320, 160, 0, 7572, 7573, 5, 282, 0, 0, 7573, 7574, 5, 94, 0, 0, 7574, 7575, 3, 1472, 736, 0, 7575, 7702, 1, 0, 0, 0, 7576, 7577, 5, 138, 0, 0, 7577, 7578, 5, 278, 0, 0, 7578, 7579, 3, 736, 368, 0, 7579, 7580, 5, 282, 0, 0, 7580, 7581, 5, 94, 0, 0, 7581, 7582, 3, 1472, 736, 0, 7582, 7702, 1, 0, 0, 0, 7583, 7584, 5, 138, 0, 0, 7584, 7585, 5, 278, 0, 0, 7585, 7586, 5, 156, 0, 0, 7586, 7587, 3, 558, 279, 0, 7587, 7588, 5, 100, 0, 0, 7588, 7589, 3, 1438, 719, 0, 7589, 7590, 5, 282, 0, 0, 7590, 7591, 5, 94, 0, 0, 7591, 7592, 3, 1472, 736, 0, 7592, 7702, 1, 0, 0, 0, 7593, 7594, 5, 138, 0, 0, 7594, 7595, 5, 278, 0, 0, 7595, 7596, 5, 206, 0, 0, 7596, 7597, 3, 558, 279, 0, 7597, 7598, 5, 100, 0, 0, 7598, 7599, 3, 1438, 719, 0, 7599, 7600, 5, 282, 0, 0, 7600, 7601, 5, 94, 0, 0, 7601, 7602, 3, 1472, 736, 0, 7602, 7702, 1, 0, 0, 0, 7603, 7604, 5, 138, 0, 0, 7604, 7605, 5, 296, 0, 0, 7605, 7606, 3, 670, 335, 0, 7606, 7607, 5, 282, 0, 0, 7607, 7608, 5, 94, 0, 0, 7608, 7609, 3, 1472, 736, 0, 7609, 7702, 1, 0, 0, 0, 7610, 7611, 5, 138, 0, 0, 7611, 7612, 5, 442, 0, 0, 7612, 7613, 3, 666, 333, 0, 7613, 7614, 5, 282, 0, 0, 7614, 7615, 5, 94, 0, 0, 7615, 7616, 3, 1472, 736, 0, 7616, 7702, 1, 0, 0, 0, 7617, 7618, 5, 138, 0, 0, 7618, 7619, 5, 323, 0, 0, 7619, 7620, 3, 1424, 712, 0, 7620, 7621, 5, 282, 0, 0, 7621, 7622, 5, 94, 0, 0, 7622, 7623, 3, 1472, 736, 0, 7623, 7702, 1, 0, 0, 0, 7624, 7625, 5, 138, 0, 0, 7625, 7626, 5, 360, 0, 0, 7626, 7627, 3, 558, 279, 0, 7627, 7628, 5, 282, 0, 0, 7628, 7629, 5, 94, 0, 0, 7629, 7630, 3, 1472, 736, 0, 7630, 7702, 1, 0, 0, 0, 7631, 7632, 5, 138, 0, 0, 7632, 7633, 5, 351, 0, 0, 7633, 7634, 3, 1404, 702, 0, 7634, 7635, 5, 282, 0, 0, 7635, 7636, 5, 94, 0, 0, 7636, 7637, 3, 1472, 736, 0, 7637, 7702, 1, 0, 0, 0, 7638, 7639, 5, 138, 0, 0, 7639, 7640, 5, 342, 0, 0, 7640, 7641, 3, 558, 279, 0, 7641, 7642, 5, 282, 0, 0, 7642, 7643, 5, 94, 0, 0, 7643, 7644, 3, 1472, 736, 0, 7644, 7702, 1, 0, 0, 0, 7645, 7646, 5, 138, 0, 0, 7646, 7647, 5, 355, 0, 0, 7647, 7648, 5, 325, 0, 0, 7648, 7649, 5, 185, 0, 0, 7649, 7650, 3, 558, 279, 0, 7650, 7651, 5, 282, 0, 0, 7651, 7652, 5, 94, 0, 0, 7652, 7653, 3, 1472, 736, 0, 7653, 7702, 1, 0, 0, 0, 7654, 7655, 5, 138, 0, 0, 7655, 7656, 5, 355, 0, 0, 7656, 7657, 5, 325, 0, 0, 7657, 7658, 5, 163, 0, 0, 7658, 7659, 3, 558, 279, 0, 7659, 7660, 5, 282, 0, 0, 7660, 7661, 5, 94, 0, 0, 7661, 7662, 3, 1472, 736, 0, 7662, 7702, 1, 0, 0, 0, 7663, 7664, 5, 138, 0, 0, 7664, 7665, 5, 63, 0, 0, 7665, 7666, 5, 174, 0, 0, 7666, 7667, 5, 381, 0, 0, 7667, 7668, 3, 1438, 719, 0, 7668, 7669, 5, 282, 0, 0, 7669, 7670, 5, 94, 0, 0, 7670, 7671, 3, 1472, 736, 0, 7671, 7702, 1, 0, 0, 0, 7672, 7673, 5, 138, 0, 0, 7673, 7674, 5, 331, 0, 0, 7674, 7675, 3, 1438, 719, 0, 7675, 7676, 5, 282, 0, 0, 7676, 7677, 5, 94, 0, 0, 7677, 7678, 3, 1472, 736, 0, 7678, 7702, 1, 0, 0, 0, 7679, 7680, 5, 138, 0, 0, 7680, 7681, 5, 198, 0, 0, 7681, 7682, 5, 357, 0, 0, 7682, 7683, 3, 1438, 719, 0, 7683, 7684, 5, 282, 0, 0, 7684, 7685, 5, 94, 0, 0, 7685, 7686, 3, 1472, 736, 0, 7686, 7702, 1, 0, 0, 0, 7687, 7688, 5, 138, 0, 0, 7688, 7689, 5, 452, 0, 0, 7689, 7690, 3, 1438, 719, 0, 7690, 7691, 5, 282, 0, 0, 7691, 7692, 5, 94, 0, 0, 7692, 7693, 3, 1472, 736, 0, 7693, 7702, 1, 0, 0, 0, 7694, 7695, 5, 138, 0, 0, 7695, 7696, 5, 451, 0, 0, 7696, 7697, 3, 1438, 719, 0, 7697, 7698, 5, 282, 0, 0, 7698, 7699, 5, 94, 0, 0, 7699, 7700, 3, 1472, 736, 0, 7700, 7702, 1, 0, 0, 0, 7701, 7516, 1, 0, 0, 0, 7701, 7523, 1, 0, 0, 0, 7701, 7530, 1, 0, 0, 0, 7701, 7537, 1, 0, 0, 0, 7701, 7544, 1, 0, 0, 0, 7701, 7551, 1, 0, 0, 0, 7701, 7558, 1, 0, 0, 0, 7701, 7568, 1, 0, 0, 0, 7701, 7576, 1, 0, 0, 0, 7701, 7583, 1, 0, 0, 0, 7701, 7593, 1, 0, 0, 0, 7701, 7603, 1, 0, 0, 0, 7701, 7610, 1, 0, 0, 0, 7701, 7617, 1, 0, 0, 0, 7701, 7624, 1, 0, 0, 0, 7701, 7631, 1, 0, 0, 0, 7701, 7638, 1, 0, 0, 0, 7701, 7645, 1, 0, 0, 0, 7701, 7654, 1, 0, 0, 0, 7701, 7663, 1, 0, 0, 0, 7701, 7672, 1, 0, 0, 0, 7701, 7679, 1, 0, 0, 0, 7701, 7687, 1, 0, 0, 0, 7701, 7694, 1, 0, 0, 0, 7702, 789, 1, 0, 0, 0, 7703, 7704, 5, 46, 0, 0, 7704, 7705, 5, 452, 0, 0, 7705, 7707, 3, 1438, 719, 0, 7706, 7708, 3, 792, 396, 0, 7707, 7706, 1, 0, 0, 0, 7707, 7708, 1, 0, 0, 0, 7708, 7710, 1, 0, 0, 0, 7709, 7711, 3, 710, 355, 0, 7710, 7709, 1, 0, 0, 0, 7710, 7711, 1, 0, 0, 0, 7711, 791, 1, 0, 0, 0, 7712, 7713, 3, 794, 397, 0, 7713, 793, 1, 0, 0, 0, 7714, 7715, 5, 62, 0, 0, 7715, 7716, 5, 92, 0, 0, 7716, 7721, 3, 1126, 563, 0, 7717, 7718, 5, 62, 0, 0, 7718, 7719, 5, 30, 0, 0, 7719, 7721, 5, 350, 0, 0, 7720, 7714, 1, 0, 0, 0, 7720, 7717, 1, 0, 0, 0, 7721, 795, 1, 0, 0, 0, 7722, 7723, 5, 138, 0, 0, 7723, 7724, 5, 452, 0, 0, 7724, 7725, 3, 1438, 719, 0, 7725, 7726, 5, 333, 0, 0, 7726, 7727, 3, 494, 247, 0, 7727, 7761, 1, 0, 0, 0, 7728, 7729, 5, 138, 0, 0, 7729, 7730, 5, 452, 0, 0, 7730, 7731, 3, 1438, 719, 0, 7731, 7732, 5, 133, 0, 0, 7732, 7733, 3, 1128, 564, 0, 7733, 7761, 1, 0, 0, 0, 7734, 7735, 5, 138, 0, 0, 7735, 7736, 5, 452, 0, 0, 7736, 7737, 3, 1438, 719, 0, 7737, 7738, 5, 333, 0, 0, 7738, 7739, 3, 1128, 564, 0, 7739, 7761, 1, 0, 0, 0, 7740, 7741, 5, 138, 0, 0, 7741, 7742, 5, 452, 0, 0, 7742, 7743, 3, 1438, 719, 0, 7743, 7744, 5, 191, 0, 0, 7744, 7745, 3, 1128, 564, 0, 7745, 7761, 1, 0, 0, 0, 7746, 7747, 5, 138, 0, 0, 7747, 7748, 5, 452, 0, 0, 7748, 7749, 3, 1438, 719, 0, 7749, 7750, 5, 282, 0, 0, 7750, 7751, 5, 94, 0, 0, 7751, 7752, 3, 1472, 736, 0, 7752, 7761, 1, 0, 0, 0, 7753, 7754, 5, 138, 0, 0, 7754, 7755, 5, 452, 0, 0, 7755, 7756, 3, 1438, 719, 0, 7756, 7757, 5, 309, 0, 0, 7757, 7758, 5, 94, 0, 0, 7758, 7759, 3, 1438, 719, 0, 7759, 7761, 1, 0, 0, 0, 7760, 7722, 1, 0, 0, 0, 7760, 7728, 1, 0, 0, 0, 7760, 7734, 1, 0, 0, 0, 7760, 7740, 1, 0, 0, 0, 7760, 7746, 1, 0, 0, 0, 7760, 7753, 1, 0, 0, 0, 7761, 797, 1, 0, 0, 0, 7762, 7763, 5, 46, 0, 0, 7763, 7764, 5, 451, 0, 0, 7764, 7765, 3, 1438, 719, 0, 7765, 7766, 5, 164, 0, 0, 7766, 7767, 3, 1460, 730, 0, 7767, 7768, 5, 452, 0, 0, 7768, 7770, 3, 800, 400, 0, 7769, 7771, 3, 710, 355, 0, 7770, 7769, 1, 0, 0, 0, 7770, 7771, 1, 0, 0, 0, 7771, 799, 1, 0, 0, 0, 7772, 7777, 3, 802, 401, 0, 7773, 7774, 5, 6, 0, 0, 7774, 7776, 3, 802, 401, 0, 7775, 7773, 1, 0, 0, 0, 7776, 7779, 1, 0, 0, 0, 7777, 7775, 1, 0, 0, 0, 7777, 7778, 1, 0, 0, 0, 7778, 801, 1, 0, 0, 0, 7779, 7777, 1, 0, 0, 0, 7780, 7781, 3, 1492, 746, 0, 7781, 803, 1, 0, 0, 0, 7782, 7783, 5, 138, 0, 0, 7783, 7784, 5, 451, 0, 0, 7784, 7785, 3, 1438, 719, 0, 7785, 7786, 5, 333, 0, 0, 7786, 7787, 3, 494, 247, 0, 7787, 7861, 1, 0, 0, 0, 7788, 7789, 5, 138, 0, 0, 7789, 7790, 5, 451, 0, 0, 7790, 7791, 3, 1438, 719, 0, 7791, 7792, 5, 164, 0, 0, 7792, 7793, 3, 1460, 730, 0, 7793, 7861, 1, 0, 0, 0, 7794, 7795, 5, 138, 0, 0, 7795, 7796, 5, 451, 0, 0, 7796, 7797, 3, 1438, 719, 0, 7797, 7798, 5, 305, 0, 0, 7798, 7800, 5, 452, 0, 0, 7799, 7801, 3, 710, 355, 0, 7800, 7799, 1, 0, 0, 0, 7800, 7801, 1, 0, 0, 0, 7801, 7861, 1, 0, 0, 0, 7802, 7803, 5, 138, 0, 0, 7803, 7804, 5, 451, 0, 0, 7804, 7805, 3, 1438, 719, 0, 7805, 7806, 5, 333, 0, 0, 7806, 7807, 5, 452, 0, 0, 7807, 7809, 3, 800, 400, 0, 7808, 7810, 3, 710, 355, 0, 7809, 7808, 1, 0, 0, 0, 7809, 7810, 1, 0, 0, 0, 7810, 7861, 1, 0, 0, 0, 7811, 7812, 5, 138, 0, 0, 7812, 7813, 5, 451, 0, 0, 7813, 7814, 3, 1438, 719, 0, 7814, 7815, 5, 133, 0, 0, 7815, 7816, 5, 452, 0, 0, 7816, 7818, 3, 800, 400, 0, 7817, 7819, 3, 710, 355, 0, 7818, 7817, 1, 0, 0, 0, 7818, 7819, 1, 0, 0, 0, 7819, 7861, 1, 0, 0, 0, 7820, 7821, 5, 138, 0, 0, 7821, 7822, 5, 451, 0, 0, 7822, 7823, 3, 1438, 719, 0, 7823, 7824, 5, 191, 0, 0, 7824, 7825, 5, 452, 0, 0, 7825, 7827, 3, 800, 400, 0, 7826, 7828, 3, 710, 355, 0, 7827, 7826, 1, 0, 0, 0, 7827, 7828, 1, 0, 0, 0, 7828, 7861, 1, 0, 0, 0, 7829, 7830, 5, 138, 0, 0, 7830, 7831, 5, 451, 0, 0, 7831, 7832, 3, 1438, 719, 0, 7832, 7833, 5, 193, 0, 0, 7833, 7861, 1, 0, 0, 0, 7834, 7835, 5, 138, 0, 0, 7835, 7836, 5, 451, 0, 0, 7836, 7837, 3, 1438, 719, 0, 7837, 7838, 5, 186, 0, 0, 7838, 7861, 1, 0, 0, 0, 7839, 7840, 5, 138, 0, 0, 7840, 7841, 5, 451, 0, 0, 7841, 7842, 3, 1438, 719, 0, 7842, 7843, 5, 333, 0, 0, 7843, 7844, 3, 494, 247, 0, 7844, 7861, 1, 0, 0, 0, 7845, 7846, 5, 138, 0, 0, 7846, 7847, 5, 451, 0, 0, 7847, 7848, 3, 1438, 719, 0, 7848, 7849, 5, 465, 0, 0, 7849, 7850, 5, 2, 0, 0, 7850, 7851, 3, 506, 253, 0, 7851, 7852, 5, 3, 0, 0, 7852, 7861, 1, 0, 0, 0, 7853, 7854, 5, 138, 0, 0, 7854, 7855, 5, 451, 0, 0, 7855, 7856, 3, 1438, 719, 0, 7856, 7857, 5, 282, 0, 0, 7857, 7858, 5, 94, 0, 0, 7858, 7859, 3, 1472, 736, 0, 7859, 7861, 1, 0, 0, 0, 7860, 7782, 1, 0, 0, 0, 7860, 7788, 1, 0, 0, 0, 7860, 7794, 1, 0, 0, 0, 7860, 7802, 1, 0, 0, 0, 7860, 7811, 1, 0, 0, 0, 7860, 7820, 1, 0, 0, 0, 7860, 7829, 1, 0, 0, 0, 7860, 7834, 1, 0, 0, 0, 7860, 7839, 1, 0, 0, 0, 7860, 7845, 1, 0, 0, 0, 7860, 7853, 1, 0, 0, 0, 7861, 805, 1, 0, 0, 0, 7862, 7864, 5, 46, 0, 0, 7863, 7865, 3, 658, 329, 0, 7864, 7863, 1, 0, 0, 0, 7864, 7865, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7867, 5, 321, 0, 0, 7867, 7868, 3, 1438, 719, 0, 7868, 7869, 5, 36, 0, 0, 7869, 7870, 5, 80, 0, 0, 7870, 7871, 3, 816, 408, 0, 7871, 7872, 5, 94, 0, 0, 7872, 7874, 3, 1414, 707, 0, 7873, 7875, 3, 1146, 573, 0, 7874, 7873, 1, 0, 0, 0, 7874, 7875, 1, 0, 0, 0, 7875, 7876, 1, 0, 0, 0, 7876, 7878, 5, 57, 0, 0, 7877, 7879, 3, 818, 409, 0, 7878, 7877, 1, 0, 0, 0, 7878, 7879, 1, 0, 0, 0, 7879, 7880, 1, 0, 0, 0, 7880, 7881, 3, 808, 404, 0, 7881, 807, 1, 0, 0, 0, 7882, 7889, 5, 270, 0, 0, 7883, 7889, 3, 812, 406, 0, 7884, 7885, 5, 2, 0, 0, 7885, 7886, 3, 810, 405, 0, 7886, 7887, 5, 3, 0, 0, 7887, 7889, 1, 0, 0, 0, 7888, 7882, 1, 0, 0, 0, 7888, 7883, 1, 0, 0, 0, 7888, 7884, 1, 0, 0, 0, 7889, 809, 1, 0, 0, 0, 7890, 7892, 3, 814, 407, 0, 7891, 7890, 1, 0, 0, 0, 7891, 7892, 1, 0, 0, 0, 7892, 7899, 1, 0, 0, 0, 7893, 7895, 5, 7, 0, 0, 7894, 7896, 3, 814, 407, 0, 7895, 7894, 1, 0, 0, 0, 7895, 7896, 1, 0, 0, 0, 7896, 7898, 1, 0, 0, 0, 7897, 7893, 1, 0, 0, 0, 7898, 7901, 1, 0, 0, 0, 7899, 7897, 1, 0, 0, 0, 7899, 7900, 1, 0, 0, 0, 7900, 811, 1, 0, 0, 0, 7901, 7899, 1, 0, 0, 0, 7902, 7908, 3, 1002, 501, 0, 7903, 7908, 3, 952, 476, 0, 7904, 7908, 3, 984, 492, 0, 7905, 7908, 3, 970, 485, 0, 7906, 7908, 3, 820, 410, 0, 7907, 7902, 1, 0, 0, 0, 7907, 7903, 1, 0, 0, 0, 7907, 7904, 1, 0, 0, 0, 7907, 7905, 1, 0, 0, 0, 7907, 7906, 1, 0, 0, 0, 7908, 813, 1, 0, 0, 0, 7909, 7910, 3, 812, 406, 0, 7910, 815, 1, 0, 0, 0, 7911, 7912, 7, 40, 0, 0, 7912, 817, 1, 0, 0, 0, 7913, 7914, 7, 41, 0, 0, 7914, 819, 1, 0, 0, 0, 7915, 7916, 5, 271, 0, 0, 7916, 7918, 3, 1476, 738, 0, 7917, 7919, 3, 822, 411, 0, 7918, 7917, 1, 0, 0, 0, 7918, 7919, 1, 0, 0, 0, 7919, 821, 1, 0, 0, 0, 7920, 7921, 5, 6, 0, 0, 7921, 7922, 3, 1460, 730, 0, 7922, 823, 1, 0, 0, 0, 7923, 7924, 5, 252, 0, 0, 7924, 7925, 3, 1476, 738, 0, 7925, 825, 1, 0, 0, 0, 7926, 7927, 5, 366, 0, 0, 7927, 7931, 3, 1476, 738, 0, 7928, 7929, 5, 366, 0, 0, 7929, 7931, 5, 9, 0, 0, 7930, 7926, 1, 0, 0, 0, 7930, 7928, 1, 0, 0, 0, 7931, 827, 1, 0, 0, 0, 7932, 7934, 5, 129, 0, 0, 7933, 7935, 3, 830, 415, 0, 7934, 7933, 1, 0, 0, 0, 7934, 7935, 1, 0, 0, 0, 7935, 7937, 1, 0, 0, 0, 7936, 7938, 3, 838, 419, 0, 7937, 7936, 1, 0, 0, 0, 7937, 7938, 1, 0, 0, 0, 7938, 8002, 1, 0, 0, 0, 7939, 7941, 5, 146, 0, 0, 7940, 7942, 3, 830, 415, 0, 7941, 7940, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7944, 1, 0, 0, 0, 7943, 7945, 3, 836, 418, 0, 7944, 7943, 1, 0, 0, 0, 7944, 7945, 1, 0, 0, 0, 7945, 8002, 1, 0, 0, 0, 7946, 7947, 5, 340, 0, 0, 7947, 7949, 5, 356, 0, 0, 7948, 7950, 3, 836, 418, 0, 7949, 7948, 1, 0, 0, 0, 7949, 7950, 1, 0, 0, 0, 7950, 8002, 1, 0, 0, 0, 7951, 7953, 5, 161, 0, 0, 7952, 7954, 3, 830, 415, 0, 7953, 7952, 1, 0, 0, 0, 7953, 7954, 1, 0, 0, 0, 7954, 7956, 1, 0, 0, 0, 7955, 7957, 3, 838, 419, 0, 7956, 7955, 1, 0, 0, 0, 7956, 7957, 1, 0, 0, 0, 7957, 8002, 1, 0, 0, 0, 7958, 7960, 5, 454, 0, 0, 7959, 7961, 3, 830, 415, 0, 7960, 7959, 1, 0, 0, 0, 7960, 7961, 1, 0, 0, 0, 7961, 7963, 1, 0, 0, 0, 7962, 7964, 3, 838, 419, 0, 7963, 7962, 1, 0, 0, 0, 7963, 7964, 1, 0, 0, 0, 7964, 8002, 1, 0, 0, 0, 7965, 7967, 5, 319, 0, 0, 7966, 7968, 3, 830, 415, 0, 7967, 7966, 1, 0, 0, 0, 7967, 7968, 1, 0, 0, 0, 7968, 7970, 1, 0, 0, 0, 7969, 7971, 3, 838, 419, 0, 7970, 7969, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 8002, 1, 0, 0, 0, 7972, 7973, 5, 322, 0, 0, 7973, 8002, 3, 1476, 738, 0, 7974, 7975, 5, 308, 0, 0, 7975, 7976, 5, 322, 0, 0, 7976, 8002, 3, 1476, 738, 0, 7977, 7978, 5, 308, 0, 0, 7978, 8002, 3, 1476, 738, 0, 7979, 7981, 5, 319, 0, 0, 7980, 7982, 3, 830, 415, 0, 7981, 7980, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7984, 5, 94, 0, 0, 7984, 7985, 5, 322, 0, 0, 7985, 8002, 3, 1476, 738, 0, 7986, 7988, 5, 319, 0, 0, 7987, 7989, 3, 830, 415, 0, 7988, 7987, 1, 0, 0, 0, 7988, 7989, 1, 0, 0, 0, 7989, 7990, 1, 0, 0, 0, 7990, 7991, 5, 94, 0, 0, 7991, 8002, 3, 1476, 738, 0, 7992, 7993, 5, 290, 0, 0, 7993, 7994, 5, 356, 0, 0, 7994, 8002, 3, 1460, 730, 0, 7995, 7996, 5, 161, 0, 0, 7996, 7997, 5, 291, 0, 0, 7997, 8002, 3, 1460, 730, 0, 7998, 7999, 5, 319, 0, 0, 7999, 8000, 5, 291, 0, 0, 8000, 8002, 3, 1460, 730, 0, 8001, 7932, 1, 0, 0, 0, 8001, 7939, 1, 0, 0, 0, 8001, 7946, 1, 0, 0, 0, 8001, 7951, 1, 0, 0, 0, 8001, 7958, 1, 0, 0, 0, 8001, 7965, 1, 0, 0, 0, 8001, 7972, 1, 0, 0, 0, 8001, 7974, 1, 0, 0, 0, 8001, 7977, 1, 0, 0, 0, 8001, 7979, 1, 0, 0, 0, 8001, 7986, 1, 0, 0, 0, 8001, 7992, 1, 0, 0, 0, 8001, 7995, 1, 0, 0, 0, 8001, 7998, 1, 0, 0, 0, 8002, 829, 1, 0, 0, 0, 8003, 8004, 7, 42, 0, 0, 8004, 831, 1, 0, 0, 0, 8005, 8006, 5, 244, 0, 0, 8006, 8007, 5, 251, 0, 0, 8007, 8016, 3, 68, 34, 0, 8008, 8009, 5, 300, 0, 0, 8009, 8016, 5, 81, 0, 0, 8010, 8011, 5, 300, 0, 0, 8011, 8016, 5, 382, 0, 0, 8012, 8016, 5, 54, 0, 0, 8013, 8014, 5, 77, 0, 0, 8014, 8016, 5, 54, 0, 0, 8015, 8005, 1, 0, 0, 0, 8015, 8008, 1, 0, 0, 0, 8015, 8010, 1, 0, 0, 0, 8015, 8012, 1, 0, 0, 0, 8015, 8013, 1, 0, 0, 0, 8016, 833, 1, 0, 0, 0, 8017, 8024, 3, 832, 416, 0, 8018, 8020, 5, 6, 0, 0, 8019, 8018, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 8021, 1, 0, 0, 0, 8021, 8023, 3, 832, 416, 0, 8022, 8019, 1, 0, 0, 0, 8023, 8026, 1, 0, 0, 0, 8024, 8022, 1, 0, 0, 0, 8024, 8025, 1, 0, 0, 0, 8025, 835, 1, 0, 0, 0, 8026, 8024, 1, 0, 0, 0, 8027, 8028, 3, 834, 417, 0, 8028, 837, 1, 0, 0, 0, 8029, 8031, 5, 33, 0, 0, 8030, 8032, 5, 269, 0, 0, 8031, 8030, 1, 0, 0, 0, 8031, 8032, 1, 0, 0, 0, 8032, 8033, 1, 0, 0, 0, 8033, 8034, 5, 153, 0, 0, 8034, 839, 1, 0, 0, 0, 8035, 8038, 5, 46, 0, 0, 8036, 8037, 5, 82, 0, 0, 8037, 8039, 5, 311, 0, 0, 8038, 8036, 1, 0, 0, 0, 8038, 8039, 1, 0, 0, 0, 8039, 8041, 1, 0, 0, 0, 8040, 8042, 3, 190, 95, 0, 8041, 8040, 1, 0, 0, 0, 8041, 8042, 1, 0, 0, 0, 8042, 8060, 1, 0, 0, 0, 8043, 8044, 5, 376, 0, 0, 8044, 8046, 3, 1410, 705, 0, 8045, 8047, 3, 242, 121, 0, 8046, 8045, 1, 0, 0, 0, 8046, 8047, 1, 0, 0, 0, 8047, 8049, 1, 0, 0, 0, 8048, 8050, 3, 134, 67, 0, 8049, 8048, 1, 0, 0, 0, 8049, 8050, 1, 0, 0, 0, 8050, 8061, 1, 0, 0, 0, 8051, 8052, 5, 303, 0, 0, 8052, 8053, 5, 376, 0, 0, 8053, 8054, 3, 1410, 705, 0, 8054, 8055, 5, 2, 0, 0, 8055, 8056, 3, 244, 122, 0, 8056, 8058, 5, 3, 0, 0, 8057, 8059, 3, 134, 67, 0, 8058, 8057, 1, 0, 0, 0, 8058, 8059, 1, 0, 0, 0, 8059, 8061, 1, 0, 0, 0, 8060, 8043, 1, 0, 0, 0, 8060, 8051, 1, 0, 0, 0, 8061, 8062, 1, 0, 0, 0, 8062, 8063, 5, 36, 0, 0, 8063, 8065, 3, 1002, 501, 0, 8064, 8066, 3, 842, 421, 0, 8065, 8064, 1, 0, 0, 0, 8065, 8066, 1, 0, 0, 0, 8066, 841, 1, 0, 0, 0, 8067, 8069, 5, 105, 0, 0, 8068, 8070, 7, 43, 0, 0, 8069, 8068, 1, 0, 0, 0, 8069, 8070, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8072, 5, 42, 0, 0, 8072, 8073, 5, 279, 0, 0, 8073, 843, 1, 0, 0, 0, 8074, 8075, 5, 253, 0, 0, 8075, 8076, 3, 1442, 721, 0, 8076, 845, 1, 0, 0, 0, 8077, 8078, 5, 46, 0, 0, 8078, 8079, 5, 175, 0, 0, 8079, 8081, 3, 1420, 710, 0, 8080, 8082, 3, 14, 7, 0, 8081, 8080, 1, 0, 0, 0, 8081, 8082, 1, 0, 0, 0, 8082, 8084, 1, 0, 0, 0, 8083, 8085, 3, 848, 424, 0, 8084, 8083, 1, 0, 0, 0, 8084, 8085, 1, 0, 0, 0, 8085, 847, 1, 0, 0, 0, 8086, 8087, 3, 850, 425, 0, 8087, 849, 1, 0, 0, 0, 8088, 8090, 3, 852, 426, 0, 8089, 8088, 1, 0, 0, 0, 8090, 8091, 1, 0, 0, 0, 8091, 8089, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 851, 1, 0, 0, 0, 8093, 8095, 3, 854, 427, 0, 8094, 8096, 3, 856, 428, 0, 8095, 8094, 1, 0, 0, 0, 8095, 8096, 1, 0, 0, 0, 8096, 8100, 1, 0, 0, 0, 8097, 8101, 3, 1466, 733, 0, 8098, 8101, 3, 72, 36, 0, 8099, 8101, 5, 53, 0, 0, 8100, 8097, 1, 0, 0, 0, 8100, 8098, 1, 0, 0, 0, 8100, 8099, 1, 0, 0, 0, 8101, 853, 1, 0, 0, 0, 8102, 8111, 3, 1494, 747, 0, 8103, 8104, 5, 164, 0, 0, 8104, 8111, 5, 74, 0, 0, 8105, 8111, 5, 194, 0, 0, 8106, 8111, 5, 255, 0, 0, 8107, 8111, 5, 282, 0, 0, 8108, 8111, 5, 351, 0, 0, 8109, 8111, 5, 353, 0, 0, 8110, 8102, 1, 0, 0, 0, 8110, 8103, 1, 0, 0, 0, 8110, 8105, 1, 0, 0, 0, 8110, 8106, 1, 0, 0, 0, 8110, 8107, 1, 0, 0, 0, 8110, 8108, 1, 0, 0, 0, 8110, 8109, 1, 0, 0, 0, 8111, 855, 1, 0, 0, 0, 8112, 8113, 5, 10, 0, 0, 8113, 857, 1, 0, 0, 0, 8114, 8115, 5, 138, 0, 0, 8115, 8116, 5, 175, 0, 0, 8116, 8131, 3, 1422, 711, 0, 8117, 8119, 5, 105, 0, 0, 8118, 8117, 1, 0, 0, 0, 8118, 8119, 1, 0, 0, 0, 8119, 8120, 1, 0, 0, 0, 8120, 8122, 3, 848, 424, 0, 8121, 8118, 1, 0, 0, 0, 8121, 8122, 1, 0, 0, 0, 8122, 8132, 1, 0, 0, 0, 8123, 8125, 3, 848, 424, 0, 8124, 8123, 1, 0, 0, 0, 8124, 8125, 1, 0, 0, 0, 8125, 8132, 1, 0, 0, 0, 8126, 8127, 5, 333, 0, 0, 8127, 8128, 5, 351, 0, 0, 8128, 8130, 3, 1402, 701, 0, 8129, 8126, 1, 0, 0, 0, 8129, 8130, 1, 0, 0, 0, 8130, 8132, 1, 0, 0, 0, 8131, 8121, 1, 0, 0, 0, 8131, 8124, 1, 0, 0, 0, 8131, 8129, 1, 0, 0, 0, 8132, 859, 1, 0, 0, 0, 8133, 8134, 5, 138, 0, 0, 8134, 8135, 5, 175, 0, 0, 8135, 8137, 3, 1422, 711, 0, 8136, 8138, 3, 88, 44, 0, 8137, 8136, 1, 0, 0, 0, 8137, 8138, 1, 0, 0, 0, 8138, 861, 1, 0, 0, 0, 8139, 8144, 3, 864, 432, 0, 8140, 8141, 5, 6, 0, 0, 8141, 8143, 3, 864, 432, 0, 8142, 8140, 1, 0, 0, 0, 8143, 8146, 1, 0, 0, 0, 8144, 8142, 1, 0, 0, 0, 8144, 8145, 1, 0, 0, 0, 8145, 863, 1, 0, 0, 0, 8146, 8144, 1, 0, 0, 0, 8147, 8148, 5, 209, 0, 0, 8148, 865, 1, 0, 0, 0, 8149, 8150, 5, 138, 0, 0, 8150, 8151, 5, 108, 0, 0, 8151, 8152, 3, 558, 279, 0, 8152, 8153, 5, 305, 0, 0, 8153, 8154, 5, 375, 0, 0, 8154, 867, 1, 0, 0, 0, 8155, 8156, 5, 138, 0, 0, 8156, 8157, 5, 349, 0, 0, 8157, 8158, 7, 44, 0, 0, 8158, 8159, 3, 58, 29, 0, 8159, 869, 1, 0, 0, 0, 8160, 8161, 5, 46, 0, 0, 8161, 8162, 5, 189, 0, 0, 8162, 8164, 3, 558, 279, 0, 8163, 8165, 3, 874, 437, 0, 8164, 8163, 1, 0, 0, 0, 8164, 8165, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8167, 3, 1170, 585, 0, 8167, 8168, 3, 216, 108, 0, 8168, 871, 1, 0, 0, 0, 8169, 8170, 5, 138, 0, 0, 8170, 8171, 5, 189, 0, 0, 8171, 8193, 3, 558, 279, 0, 8172, 8194, 3, 122, 61, 0, 8173, 8174, 5, 191, 0, 0, 8174, 8175, 5, 77, 0, 0, 8175, 8194, 5, 78, 0, 0, 8176, 8177, 5, 333, 0, 0, 8177, 8178, 5, 77, 0, 0, 8178, 8194, 5, 78, 0, 0, 8179, 8180, 5, 133, 0, 0, 8180, 8194, 3, 236, 118, 0, 8181, 8182, 5, 191, 0, 0, 8182, 8184, 5, 45, 0, 0, 8183, 8185, 3, 748, 374, 0, 8184, 8183, 1, 0, 0, 0, 8184, 8185, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8188, 3, 1438, 719, 0, 8187, 8189, 3, 124, 62, 0, 8188, 8187, 1, 0, 0, 0, 8188, 8189, 1, 0, 0, 0, 8189, 8194, 1, 0, 0, 0, 8190, 8191, 5, 372, 0, 0, 8191, 8192, 5, 45, 0, 0, 8192, 8194, 3, 1438, 719, 0, 8193, 8172, 1, 0, 0, 0, 8193, 8173, 1, 0, 0, 0, 8193, 8176, 1, 0, 0, 0, 8193, 8179, 1, 0, 0, 0, 8193, 8181, 1, 0, 0, 0, 8193, 8190, 1, 0, 0, 0, 8194, 873, 1, 0, 0, 0, 8195, 8196, 5, 36, 0, 0, 8196, 875, 1, 0, 0, 0, 8197, 8198, 5, 138, 0, 0, 8198, 8199, 5, 355, 0, 0, 8199, 8200, 5, 325, 0, 0, 8200, 8201, 5, 185, 0, 0, 8201, 8202, 3, 558, 279, 0, 8202, 8203, 3, 494, 247, 0, 8203, 877, 1, 0, 0, 0, 8204, 8205, 5, 138, 0, 0, 8205, 8206, 5, 355, 0, 0, 8206, 8207, 5, 325, 0, 0, 8207, 8208, 5, 163, 0, 0, 8208, 8209, 3, 558, 279, 0, 8209, 8210, 5, 133, 0, 0, 8210, 8211, 5, 257, 0, 0, 8211, 8212, 5, 62, 0, 0, 8212, 8213, 3, 1418, 709, 0, 8213, 8214, 3, 880, 440, 0, 8214, 8215, 3, 550, 275, 0, 8215, 8268, 1, 0, 0, 0, 8216, 8217, 5, 138, 0, 0, 8217, 8218, 5, 355, 0, 0, 8218, 8219, 5, 325, 0, 0, 8219, 8220, 5, 163, 0, 0, 8220, 8221, 3, 558, 279, 0, 8221, 8222, 5, 138, 0, 0, 8222, 8223, 5, 257, 0, 0, 8223, 8224, 5, 62, 0, 0, 8224, 8225, 3, 1418, 709, 0, 8225, 8226, 3, 880, 440, 0, 8226, 8227, 3, 550, 275, 0, 8227, 8268, 1, 0, 0, 0, 8228, 8229, 5, 138, 0, 0, 8229, 8230, 5, 355, 0, 0, 8230, 8231, 5, 325, 0, 0, 8231, 8232, 5, 163, 0, 0, 8232, 8233, 3, 558, 279, 0, 8233, 8234, 5, 138, 0, 0, 8234, 8235, 5, 257, 0, 0, 8235, 8236, 5, 311, 0, 0, 8236, 8237, 3, 558, 279, 0, 8237, 8238, 3, 880, 440, 0, 8238, 8239, 3, 558, 279, 0, 8239, 8268, 1, 0, 0, 0, 8240, 8241, 5, 138, 0, 0, 8241, 8242, 5, 355, 0, 0, 8242, 8243, 5, 325, 0, 0, 8243, 8244, 5, 163, 0, 0, 8244, 8245, 3, 558, 279, 0, 8245, 8246, 5, 138, 0, 0, 8246, 8247, 5, 257, 0, 0, 8247, 8248, 5, 62, 0, 0, 8248, 8249, 3, 1418, 709, 0, 8249, 8250, 5, 311, 0, 0, 8250, 8251, 3, 558, 279, 0, 8251, 8252, 3, 880, 440, 0, 8252, 8253, 3, 558, 279, 0, 8253, 8268, 1, 0, 0, 0, 8254, 8255, 5, 138, 0, 0, 8255, 8256, 5, 355, 0, 0, 8256, 8257, 5, 325, 0, 0, 8257, 8258, 5, 163, 0, 0, 8258, 8259, 3, 558, 279, 0, 8259, 8260, 5, 191, 0, 0, 8260, 8262, 5, 257, 0, 0, 8261, 8263, 3, 748, 374, 0, 8262, 8261, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8265, 5, 62, 0, 0, 8265, 8266, 3, 1418, 709, 0, 8266, 8268, 1, 0, 0, 0, 8267, 8204, 1, 0, 0, 0, 8267, 8216, 1, 0, 0, 0, 8267, 8228, 1, 0, 0, 0, 8267, 8240, 1, 0, 0, 0, 8267, 8254, 1, 0, 0, 0, 8268, 879, 1, 0, 0, 0, 8269, 8270, 5, 105, 0, 0, 8270, 881, 1, 0, 0, 0, 8271, 8273, 5, 46, 0, 0, 8272, 8274, 3, 522, 261, 0, 8273, 8272, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, 0, 8274, 8275, 1, 0, 0, 0, 8275, 8276, 5, 168, 0, 0, 8276, 8277, 3, 558, 279, 0, 8277, 8278, 5, 62, 0, 0, 8278, 8279, 3, 1460, 730, 0, 8279, 8280, 5, 94, 0, 0, 8280, 8281, 3, 1460, 730, 0, 8281, 8282, 5, 64, 0, 0, 8282, 8283, 3, 558, 279, 0, 8283, 883, 1, 0, 0, 0, 8284, 8286, 5, 158, 0, 0, 8285, 8287, 3, 910, 455, 0, 8286, 8285, 1, 0, 0, 0, 8286, 8287, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 8290, 3, 1408, 704, 0, 8289, 8291, 3, 888, 444, 0, 8290, 8289, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8303, 1, 0, 0, 0, 8292, 8294, 5, 158, 0, 0, 8293, 8295, 3, 910, 455, 0, 8294, 8293, 1, 0, 0, 0, 8294, 8295, 1, 0, 0, 0, 8295, 8303, 1, 0, 0, 0, 8296, 8297, 5, 158, 0, 0, 8297, 8298, 3, 886, 443, 0, 8298, 8300, 3, 1408, 704, 0, 8299, 8301, 3, 888, 444, 0, 8300, 8299, 1, 0, 0, 0, 8300, 8301, 1, 0, 0, 0, 8301, 8303, 1, 0, 0, 0, 8302, 8284, 1, 0, 0, 0, 8302, 8292, 1, 0, 0, 0, 8302, 8296, 1, 0, 0, 0, 8303, 885, 1, 0, 0, 0, 8304, 8305, 5, 2, 0, 0, 8305, 8310, 3, 910, 455, 0, 8306, 8307, 5, 6, 0, 0, 8307, 8309, 3, 910, 455, 0, 8308, 8306, 1, 0, 0, 0, 8309, 8312, 1, 0, 0, 0, 8310, 8308, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8313, 1, 0, 0, 0, 8312, 8310, 1, 0, 0, 0, 8313, 8314, 5, 3, 0, 0, 8314, 887, 1, 0, 0, 0, 8315, 8316, 5, 100, 0, 0, 8316, 8317, 3, 1438, 719, 0, 8317, 889, 1, 0, 0, 0, 8318, 8320, 5, 370, 0, 0, 8319, 8321, 3, 916, 458, 0, 8320, 8319, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8323, 1, 0, 0, 0, 8322, 8324, 3, 918, 459, 0, 8323, 8322, 1, 0, 0, 0, 8323, 8324, 1, 0, 0, 0, 8324, 8326, 1, 0, 0, 0, 8325, 8327, 3, 910, 455, 0, 8326, 8325, 1, 0, 0, 0, 8326, 8327, 1, 0, 0, 0, 8327, 8329, 1, 0, 0, 0, 8328, 8330, 3, 904, 452, 0, 8329, 8328, 1, 0, 0, 0, 8329, 8330, 1, 0, 0, 0, 8330, 8332, 1, 0, 0, 0, 8331, 8333, 3, 926, 463, 0, 8332, 8331, 1, 0, 0, 0, 8332, 8333, 1, 0, 0, 0, 8333, 8345, 1, 0, 0, 0, 8334, 8339, 5, 370, 0, 0, 8335, 8336, 5, 2, 0, 0, 8336, 8337, 3, 894, 447, 0, 8337, 8338, 5, 3, 0, 0, 8338, 8340, 1, 0, 0, 0, 8339, 8335, 1, 0, 0, 0, 8339, 8340, 1, 0, 0, 0, 8340, 8342, 1, 0, 0, 0, 8341, 8343, 3, 926, 463, 0, 8342, 8341, 1, 0, 0, 0, 8342, 8343, 1, 0, 0, 0, 8343, 8345, 1, 0, 0, 0, 8344, 8318, 1, 0, 0, 0, 8344, 8334, 1, 0, 0, 0, 8345, 891, 1, 0, 0, 0, 8346, 8348, 3, 896, 448, 0, 8347, 8349, 3, 910, 455, 0, 8348, 8347, 1, 0, 0, 0, 8348, 8349, 1, 0, 0, 0, 8349, 8351, 1, 0, 0, 0, 8350, 8352, 3, 926, 463, 0, 8351, 8350, 1, 0, 0, 0, 8351, 8352, 1, 0, 0, 0, 8352, 8361, 1, 0, 0, 0, 8353, 8354, 3, 896, 448, 0, 8354, 8355, 5, 2, 0, 0, 8355, 8356, 3, 906, 453, 0, 8356, 8358, 5, 3, 0, 0, 8357, 8359, 3, 926, 463, 0, 8358, 8357, 1, 0, 0, 0, 8358, 8359, 1, 0, 0, 0, 8359, 8361, 1, 0, 0, 0, 8360, 8346, 1, 0, 0, 0, 8360, 8353, 1, 0, 0, 0, 8361, 893, 1, 0, 0, 0, 8362, 8367, 3, 898, 449, 0, 8363, 8364, 5, 6, 0, 0, 8364, 8366, 3, 898, 449, 0, 8365, 8363, 1, 0, 0, 0, 8366, 8369, 1, 0, 0, 0, 8367, 8365, 1, 0, 0, 0, 8367, 8368, 1, 0, 0, 0, 8368, 895, 1, 0, 0, 0, 8369, 8367, 1, 0, 0, 0, 8370, 8371, 7, 45, 0, 0, 8371, 897, 1, 0, 0, 0, 8372, 8374, 3, 900, 450, 0, 8373, 8375, 3, 902, 451, 0, 8374, 8373, 1, 0, 0, 0, 8374, 8375, 1, 0, 0, 0, 8375, 899, 1, 0, 0, 0, 8376, 8379, 3, 1490, 745, 0, 8377, 8379, 3, 896, 448, 0, 8378, 8376, 1, 0, 0, 0, 8378, 8377, 1, 0, 0, 0, 8379, 901, 1, 0, 0, 0, 8380, 8383, 3, 72, 36, 0, 8381, 8383, 3, 320, 160, 0, 8382, 8380, 1, 0, 0, 0, 8382, 8381, 1, 0, 0, 0, 8383, 903, 1, 0, 0, 0, 8384, 8385, 3, 896, 448, 0, 8385, 905, 1, 0, 0, 0, 8386, 8391, 3, 908, 454, 0, 8387, 8388, 5, 6, 0, 0, 8388, 8390, 3, 908, 454, 0, 8389, 8387, 1, 0, 0, 0, 8390, 8393, 1, 0, 0, 0, 8391, 8389, 1, 0, 0, 0, 8391, 8392, 1, 0, 0, 0, 8392, 907, 1, 0, 0, 0, 8393, 8391, 1, 0, 0, 0, 8394, 8398, 3, 910, 455, 0, 8395, 8398, 3, 912, 456, 0, 8396, 8398, 3, 914, 457, 0, 8397, 8394, 1, 0, 0, 0, 8397, 8395, 1, 0, 0, 0, 8397, 8396, 1, 0, 0, 0, 8398, 909, 1, 0, 0, 0, 8399, 8401, 5, 128, 0, 0, 8400, 8402, 7, 46, 0, 0, 8401, 8400, 1, 0, 0, 0, 8401, 8402, 1, 0, 0, 0, 8402, 911, 1, 0, 0, 0, 8403, 8405, 5, 547, 0, 0, 8404, 8406, 7, 46, 0, 0, 8405, 8404, 1, 0, 0, 0, 8405, 8406, 1, 0, 0, 0, 8406, 913, 1, 0, 0, 0, 8407, 8410, 5, 548, 0, 0, 8408, 8411, 3, 320, 160, 0, 8409, 8411, 3, 1460, 730, 0, 8410, 8408, 1, 0, 0, 0, 8410, 8409, 1, 0, 0, 0, 8411, 915, 1, 0, 0, 0, 8412, 8413, 5, 113, 0, 0, 8413, 917, 1, 0, 0, 0, 8414, 8415, 5, 112, 0, 0, 8415, 919, 1, 0, 0, 0, 8416, 8417, 5, 2, 0, 0, 8417, 8418, 3, 244, 122, 0, 8418, 8419, 5, 3, 0, 0, 8419, 921, 1, 0, 0, 0, 8420, 8422, 3, 1408, 704, 0, 8421, 8423, 3, 920, 460, 0, 8422, 8421, 1, 0, 0, 0, 8422, 8423, 1, 0, 0, 0, 8423, 923, 1, 0, 0, 0, 8424, 8429, 3, 922, 461, 0, 8425, 8426, 5, 6, 0, 0, 8426, 8428, 3, 922, 461, 0, 8427, 8425, 1, 0, 0, 0, 8428, 8431, 1, 0, 0, 0, 8429, 8427, 1, 0, 0, 0, 8429, 8430, 1, 0, 0, 0, 8430, 925, 1, 0, 0, 0, 8431, 8429, 1, 0, 0, 0, 8432, 8433, 3, 924, 462, 0, 8433, 927, 1, 0, 0, 0, 8434, 8435, 5, 203, 0, 0, 8435, 8453, 3, 930, 465, 0, 8436, 8437, 5, 203, 0, 0, 8437, 8439, 3, 896, 448, 0, 8438, 8440, 3, 910, 455, 0, 8439, 8438, 1, 0, 0, 0, 8439, 8440, 1, 0, 0, 0, 8440, 8441, 1, 0, 0, 0, 8441, 8442, 3, 930, 465, 0, 8442, 8453, 1, 0, 0, 0, 8443, 8444, 5, 203, 0, 0, 8444, 8445, 5, 128, 0, 0, 8445, 8453, 3, 930, 465, 0, 8446, 8447, 5, 203, 0, 0, 8447, 8448, 5, 2, 0, 0, 8448, 8449, 3, 932, 466, 0, 8449, 8450, 5, 3, 0, 0, 8450, 8451, 3, 930, 465, 0, 8451, 8453, 1, 0, 0, 0, 8452, 8434, 1, 0, 0, 0, 8452, 8436, 1, 0, 0, 0, 8452, 8443, 1, 0, 0, 0, 8452, 8446, 1, 0, 0, 0, 8453, 929, 1, 0, 0, 0, 8454, 8464, 3, 1002, 501, 0, 8455, 8464, 3, 952, 476, 0, 8456, 8464, 3, 984, 492, 0, 8457, 8464, 3, 970, 485, 0, 8458, 8464, 3, 994, 497, 0, 8459, 8464, 3, 292, 146, 0, 8460, 8464, 3, 298, 149, 0, 8461, 8464, 3, 304, 152, 0, 8462, 8464, 3, 946, 473, 0, 8463, 8454, 1, 0, 0, 0, 8463, 8455, 1, 0, 0, 0, 8463, 8456, 1, 0, 0, 0, 8463, 8457, 1, 0, 0, 0, 8463, 8458, 1, 0, 0, 0, 8463, 8459, 1, 0, 0, 0, 8463, 8460, 1, 0, 0, 0, 8463, 8461, 1, 0, 0, 0, 8463, 8462, 1, 0, 0, 0, 8464, 931, 1, 0, 0, 0, 8465, 8470, 3, 934, 467, 0, 8466, 8467, 5, 6, 0, 0, 8467, 8469, 3, 934, 467, 0, 8468, 8466, 1, 0, 0, 0, 8469, 8472, 1, 0, 0, 0, 8470, 8468, 1, 0, 0, 0, 8470, 8471, 1, 0, 0, 0, 8471, 933, 1, 0, 0, 0, 8472, 8470, 1, 0, 0, 0, 8473, 8475, 3, 936, 468, 0, 8474, 8476, 3, 938, 469, 0, 8475, 8474, 1, 0, 0, 0, 8475, 8476, 1, 0, 0, 0, 8476, 935, 1, 0, 0, 0, 8477, 8480, 3, 1490, 745, 0, 8478, 8480, 3, 896, 448, 0, 8479, 8477, 1, 0, 0, 0, 8479, 8478, 1, 0, 0, 0, 8480, 937, 1, 0, 0, 0, 8481, 8484, 3, 72, 36, 0, 8482, 8484, 3, 320, 160, 0, 8483, 8481, 1, 0, 0, 0, 8483, 8482, 1, 0, 0, 0, 8484, 939, 1, 0, 0, 0, 8485, 8486, 5, 290, 0, 0, 8486, 8488, 3, 1438, 719, 0, 8487, 8489, 3, 942, 471, 0, 8488, 8487, 1, 0, 0, 0, 8488, 8489, 1, 0, 0, 0, 8489, 8490, 1, 0, 0, 0, 8490, 8491, 5, 36, 0, 0, 8491, 8492, 3, 944, 472, 0, 8492, 941, 1, 0, 0, 0, 8493, 8494, 5, 2, 0, 0, 8494, 8495, 3, 1344, 672, 0, 8495, 8496, 5, 3, 0, 0, 8496, 943, 1, 0, 0, 0, 8497, 8502, 3, 1002, 501, 0, 8498, 8502, 3, 952, 476, 0, 8499, 8502, 3, 984, 492, 0, 8500, 8502, 3, 970, 485, 0, 8501, 8497, 1, 0, 0, 0, 8501, 8498, 1, 0, 0, 0, 8501, 8499, 1, 0, 0, 0, 8501, 8500, 1, 0, 0, 0, 8502, 945, 1, 0, 0, 0, 8503, 8504, 5, 202, 0, 0, 8504, 8506, 3, 1438, 719, 0, 8505, 8507, 3, 948, 474, 0, 8506, 8505, 1, 0, 0, 0, 8506, 8507, 1, 0, 0, 0, 8507, 8527, 1, 0, 0, 0, 8508, 8510, 5, 46, 0, 0, 8509, 8511, 3, 190, 95, 0, 8510, 8509, 1, 0, 0, 0, 8510, 8511, 1, 0, 0, 0, 8511, 8512, 1, 0, 0, 0, 8512, 8514, 5, 92, 0, 0, 8513, 8515, 3, 514, 257, 0, 8514, 8513, 1, 0, 0, 0, 8514, 8515, 1, 0, 0, 0, 8515, 8516, 1, 0, 0, 0, 8516, 8517, 3, 294, 147, 0, 8517, 8518, 5, 36, 0, 0, 8518, 8519, 5, 202, 0, 0, 8519, 8521, 3, 1438, 719, 0, 8520, 8522, 3, 948, 474, 0, 8521, 8520, 1, 0, 0, 0, 8521, 8522, 1, 0, 0, 0, 8522, 8524, 1, 0, 0, 0, 8523, 8525, 3, 296, 148, 0, 8524, 8523, 1, 0, 0, 0, 8524, 8525, 1, 0, 0, 0, 8525, 8527, 1, 0, 0, 0, 8526, 8503, 1, 0, 0, 0, 8526, 8508, 1, 0, 0, 0, 8527, 947, 1, 0, 0, 0, 8528, 8529, 5, 2, 0, 0, 8529, 8530, 3, 1330, 665, 0, 8530, 8531, 5, 3, 0, 0, 8531, 949, 1, 0, 0, 0, 8532, 8533, 5, 177, 0, 0, 8533, 8543, 3, 1438, 719, 0, 8534, 8535, 5, 177, 0, 0, 8535, 8536, 5, 290, 0, 0, 8536, 8543, 3, 1438, 719, 0, 8537, 8538, 5, 177, 0, 0, 8538, 8543, 5, 30, 0, 0, 8539, 8540, 5, 177, 0, 0, 8540, 8541, 5, 290, 0, 0, 8541, 8543, 5, 30, 0, 0, 8542, 8532, 1, 0, 0, 0, 8542, 8534, 1, 0, 0, 0, 8542, 8537, 1, 0, 0, 0, 8542, 8539, 1, 0, 0, 0, 8543, 951, 1, 0, 0, 0, 8544, 8546, 3, 1028, 514, 0, 8545, 8544, 1, 0, 0, 0, 8545, 8546, 1, 0, 0, 0, 8546, 8547, 1, 0, 0, 0, 8547, 8548, 5, 241, 0, 0, 8548, 8549, 5, 71, 0, 0, 8549, 8550, 3, 954, 477, 0, 8550, 8552, 3, 956, 478, 0, 8551, 8553, 3, 964, 482, 0, 8552, 8551, 1, 0, 0, 0, 8552, 8553, 1, 0, 0, 0, 8553, 8555, 1, 0, 0, 0, 8554, 8556, 3, 968, 484, 0, 8555, 8554, 1, 0, 0, 0, 8555, 8556, 1, 0, 0, 0, 8556, 953, 1, 0, 0, 0, 8557, 8560, 3, 1408, 704, 0, 8558, 8559, 5, 36, 0, 0, 8559, 8561, 3, 1476, 738, 0, 8560, 8558, 1, 0, 0, 0, 8560, 8561, 1, 0, 0, 0, 8561, 955, 1, 0, 0, 0, 8562, 8563, 5, 2, 0, 0, 8563, 8564, 3, 960, 480, 0, 8564, 8565, 5, 3, 0, 0, 8565, 8567, 1, 0, 0, 0, 8566, 8562, 1, 0, 0, 0, 8566, 8567, 1, 0, 0, 0, 8567, 8572, 1, 0, 0, 0, 8568, 8569, 5, 463, 0, 0, 8569, 8570, 3, 958, 479, 0, 8570, 8571, 5, 450, 0, 0, 8571, 8573, 1, 0, 0, 0, 8572, 8568, 1, 0, 0, 0, 8572, 8573, 1, 0, 0, 0, 8573, 8576, 1, 0, 0, 0, 8574, 8577, 3, 1696, 848, 0, 8575, 8577, 3, 1002, 501, 0, 8576, 8574, 1, 0, 0, 0, 8576, 8575, 1, 0, 0, 0, 8577, 957, 1, 0, 0, 0, 8578, 8579, 7, 47, 0, 0, 8579, 959, 1, 0, 0, 0, 8580, 8585, 3, 962, 481, 0, 8581, 8582, 5, 6, 0, 0, 8582, 8584, 3, 962, 481, 0, 8583, 8581, 1, 0, 0, 0, 8584, 8587, 1, 0, 0, 0, 8585, 8583, 1, 0, 0, 0, 8585, 8586, 1, 0, 0, 0, 8586, 961, 1, 0, 0, 0, 8587, 8585, 1, 0, 0, 0, 8588, 8589, 3, 1434, 717, 0, 8589, 8590, 3, 1384, 692, 0, 8590, 963, 1, 0, 0, 0, 8591, 8592, 5, 80, 0, 0, 8592, 8594, 5, 464, 0, 0, 8593, 8595, 3, 966, 483, 0, 8594, 8593, 1, 0, 0, 0, 8594, 8595, 1, 0, 0, 0, 8595, 8596, 1, 0, 0, 0, 8596, 8604, 5, 57, 0, 0, 8597, 8598, 5, 369, 0, 0, 8598, 8599, 5, 333, 0, 0, 8599, 8601, 3, 986, 493, 0, 8600, 8602, 3, 1146, 573, 0, 8601, 8600, 1, 0, 0, 0, 8601, 8602, 1, 0, 0, 0, 8602, 8605, 1, 0, 0, 0, 8603, 8605, 5, 270, 0, 0, 8604, 8597, 1, 0, 0, 0, 8604, 8603, 1, 0, 0, 0, 8605, 965, 1, 0, 0, 0, 8606, 8607, 5, 2, 0, 0, 8607, 8608, 3, 636, 318, 0, 8608, 8610, 5, 3, 0, 0, 8609, 8611, 3, 1146, 573, 0, 8610, 8609, 1, 0, 0, 0, 8610, 8611, 1, 0, 0, 0, 8611, 8616, 1, 0, 0, 0, 8612, 8613, 5, 80, 0, 0, 8613, 8614, 5, 45, 0, 0, 8614, 8616, 3, 1438, 719, 0, 8615, 8606, 1, 0, 0, 0, 8615, 8612, 1, 0, 0, 0, 8616, 967, 1, 0, 0, 0, 8617, 8618, 5, 87, 0, 0, 8618, 8619, 3, 1388, 694, 0, 8619, 969, 1, 0, 0, 0, 8620, 8622, 3, 1028, 514, 0, 8621, 8620, 1, 0, 0, 0, 8621, 8622, 1, 0, 0, 0, 8622, 8623, 1, 0, 0, 0, 8623, 8624, 5, 182, 0, 0, 8624, 8625, 5, 64, 0, 0, 8625, 8627, 3, 1130, 565, 0, 8626, 8628, 3, 972, 486, 0, 8627, 8626, 1, 0, 0, 0, 8627, 8628, 1, 0, 0, 0, 8628, 8630, 1, 0, 0, 0, 8629, 8631, 3, 1148, 574, 0, 8630, 8629, 1, 0, 0, 0, 8630, 8631, 1, 0, 0, 0, 8631, 8633, 1, 0, 0, 0, 8632, 8634, 3, 968, 484, 0, 8633, 8632, 1, 0, 0, 0, 8633, 8634, 1, 0, 0, 0, 8634, 971, 1, 0, 0, 0, 8635, 8636, 5, 100, 0, 0, 8636, 8637, 3, 1106, 553, 0, 8637, 973, 1, 0, 0, 0, 8638, 8640, 5, 256, 0, 0, 8639, 8641, 3, 1036, 518, 0, 8640, 8639, 1, 0, 0, 0, 8640, 8641, 1, 0, 0, 0, 8641, 8642, 1, 0, 0, 0, 8642, 8644, 3, 1126, 563, 0, 8643, 8645, 3, 976, 488, 0, 8644, 8643, 1, 0, 0, 0, 8644, 8645, 1, 0, 0, 0, 8645, 8647, 1, 0, 0, 0, 8646, 8648, 3, 980, 490, 0, 8647, 8646, 1, 0, 0, 0, 8647, 8648, 1, 0, 0, 0, 8648, 975, 1, 0, 0, 0, 8649, 8650, 5, 68, 0, 0, 8650, 8651, 3, 978, 489, 0, 8651, 8652, 5, 263, 0, 0, 8652, 977, 1, 0, 0, 0, 8653, 8654, 5, 131, 0, 0, 8654, 8666, 7, 48, 0, 0, 8655, 8656, 5, 414, 0, 0, 8656, 8666, 7, 48, 0, 0, 8657, 8662, 5, 334, 0, 0, 8658, 8659, 5, 369, 0, 0, 8659, 8663, 5, 201, 0, 0, 8660, 8661, 5, 414, 0, 0, 8661, 8663, 5, 201, 0, 0, 8662, 8658, 1, 0, 0, 0, 8662, 8660, 1, 0, 0, 0, 8662, 8663, 1, 0, 0, 0, 8663, 8666, 1, 0, 0, 0, 8664, 8666, 5, 201, 0, 0, 8665, 8653, 1, 0, 0, 0, 8665, 8655, 1, 0, 0, 0, 8665, 8657, 1, 0, 0, 0, 8665, 8664, 1, 0, 0, 0, 8666, 979, 1, 0, 0, 0, 8667, 8668, 5, 272, 0, 0, 8668, 981, 1, 0, 0, 0, 8669, 8673, 5, 272, 0, 0, 8670, 8671, 5, 465, 0, 0, 8671, 8673, 5, 466, 0, 0, 8672, 8669, 1, 0, 0, 0, 8672, 8670, 1, 0, 0, 0, 8673, 983, 1, 0, 0, 0, 8674, 8676, 3, 1028, 514, 0, 8675, 8674, 1, 0, 0, 0, 8675, 8676, 1, 0, 0, 0, 8676, 8677, 1, 0, 0, 0, 8677, 8678, 5, 369, 0, 0, 8678, 8679, 3, 1130, 565, 0, 8679, 8680, 5, 333, 0, 0, 8680, 8682, 3, 986, 493, 0, 8681, 8683, 3, 1104, 552, 0, 8682, 8681, 1, 0, 0, 0, 8682, 8683, 1, 0, 0, 0, 8683, 8685, 1, 0, 0, 0, 8684, 8686, 3, 1148, 574, 0, 8685, 8684, 1, 0, 0, 0, 8685, 8686, 1, 0, 0, 0, 8686, 8688, 1, 0, 0, 0, 8687, 8689, 3, 968, 484, 0, 8688, 8687, 1, 0, 0, 0, 8688, 8689, 1, 0, 0, 0, 8689, 985, 1, 0, 0, 0, 8690, 8695, 3, 988, 494, 0, 8691, 8692, 5, 6, 0, 0, 8692, 8694, 3, 988, 494, 0, 8693, 8691, 1, 0, 0, 0, 8694, 8697, 1, 0, 0, 0, 8695, 8693, 1, 0, 0, 0, 8695, 8696, 1, 0, 0, 0, 8696, 987, 1, 0, 0, 0, 8697, 8695, 1, 0, 0, 0, 8698, 8699, 3, 990, 495, 0, 8699, 8700, 5, 10, 0, 0, 8700, 8701, 3, 1214, 607, 0, 8701, 8717, 1, 0, 0, 0, 8702, 8703, 5, 2, 0, 0, 8703, 8704, 3, 992, 496, 0, 8704, 8705, 5, 3, 0, 0, 8705, 8714, 5, 10, 0, 0, 8706, 8708, 5, 414, 0, 0, 8707, 8706, 1, 0, 0, 0, 8707, 8708, 1, 0, 0, 0, 8708, 8709, 1, 0, 0, 0, 8709, 8715, 3, 1214, 607, 0, 8710, 8711, 5, 2, 0, 0, 8711, 8712, 3, 1008, 504, 0, 8712, 8713, 5, 3, 0, 0, 8713, 8715, 1, 0, 0, 0, 8714, 8707, 1, 0, 0, 0, 8714, 8710, 1, 0, 0, 0, 8715, 8717, 1, 0, 0, 0, 8716, 8698, 1, 0, 0, 0, 8716, 8702, 1, 0, 0, 0, 8717, 989, 1, 0, 0, 0, 8718, 8719, 3, 1434, 717, 0, 8719, 8720, 3, 1384, 692, 0, 8720, 991, 1, 0, 0, 0, 8721, 8726, 3, 990, 495, 0, 8722, 8723, 5, 6, 0, 0, 8723, 8725, 3, 990, 495, 0, 8724, 8722, 1, 0, 0, 0, 8725, 8728, 1, 0, 0, 0, 8726, 8724, 1, 0, 0, 0, 8726, 8727, 1, 0, 0, 0, 8727, 993, 1, 0, 0, 0, 8728, 8726, 1, 0, 0, 0, 8729, 8730, 5, 178, 0, 0, 8730, 8731, 3, 996, 498, 0, 8731, 8732, 3, 998, 499, 0, 8732, 8733, 5, 172, 0, 0, 8733, 8734, 3, 1000, 500, 0, 8734, 8735, 5, 62, 0, 0, 8735, 8736, 3, 1002, 501, 0, 8736, 995, 1, 0, 0, 0, 8737, 8738, 3, 1438, 719, 0, 8738, 997, 1, 0, 0, 0, 8739, 8740, 5, 269, 0, 0, 8740, 8745, 5, 324, 0, 0, 8741, 8745, 5, 324, 0, 0, 8742, 8745, 5, 107, 0, 0, 8743, 8745, 5, 240, 0, 0, 8744, 8739, 1, 0, 0, 0, 8744, 8741, 1, 0, 0, 0, 8744, 8742, 1, 0, 0, 0, 8744, 8743, 1, 0, 0, 0, 8745, 8748, 1, 0, 0, 0, 8746, 8744, 1, 0, 0, 0, 8746, 8747, 1, 0, 0, 0, 8747, 999, 1, 0, 0, 0, 8748, 8746, 1, 0, 0, 0, 8749, 8755, 1, 0, 0, 0, 8750, 8751, 5, 105, 0, 0, 8751, 8755, 5, 217, 0, 0, 8752, 8753, 5, 379, 0, 0, 8753, 8755, 5, 217, 0, 0, 8754, 8749, 1, 0, 0, 0, 8754, 8750, 1, 0, 0, 0, 8754, 8752, 1, 0, 0, 0, 8755, 1001, 1, 0, 0, 0, 8756, 8759, 3, 1006, 503, 0, 8757, 8759, 3, 1004, 502, 0, 8758, 8756, 1, 0, 0, 0, 8758, 8757, 1, 0, 0, 0, 8759, 1003, 1, 0, 0, 0, 8760, 8761, 5, 2, 0, 0, 8761, 8762, 3, 1006, 503, 0, 8762, 8763, 5, 3, 0, 0, 8763, 8769, 1, 0, 0, 0, 8764, 8765, 5, 2, 0, 0, 8765, 8766, 3, 1004, 502, 0, 8766, 8767, 5, 3, 0, 0, 8767, 8769, 1, 0, 0, 0, 8768, 8760, 1, 0, 0, 0, 8768, 8764, 1, 0, 0, 0, 8769, 1005, 1, 0, 0, 0, 8770, 8772, 3, 1008, 504, 0, 8771, 8773, 3, 1044, 522, 0, 8772, 8771, 1, 0, 0, 0, 8772, 8773, 1, 0, 0, 0, 8773, 8782, 1, 0, 0, 0, 8774, 8776, 3, 1090, 545, 0, 8775, 8777, 3, 1054, 527, 0, 8776, 8775, 1, 0, 0, 0, 8776, 8777, 1, 0, 0, 0, 8777, 8783, 1, 0, 0, 0, 8778, 8780, 3, 1052, 526, 0, 8779, 8781, 3, 1092, 546, 0, 8780, 8779, 1, 0, 0, 0, 8780, 8781, 1, 0, 0, 0, 8781, 8783, 1, 0, 0, 0, 8782, 8774, 1, 0, 0, 0, 8782, 8778, 1, 0, 0, 0, 8782, 8783, 1, 0, 0, 0, 8783, 8800, 1, 0, 0, 0, 8784, 8785, 3, 1016, 508, 0, 8785, 8787, 3, 1008, 504, 0, 8786, 8788, 3, 1044, 522, 0, 8787, 8786, 1, 0, 0, 0, 8787, 8788, 1, 0, 0, 0, 8788, 8797, 1, 0, 0, 0, 8789, 8791, 3, 1090, 545, 0, 8790, 8792, 3, 1054, 527, 0, 8791, 8790, 1, 0, 0, 0, 8791, 8792, 1, 0, 0, 0, 8792, 8798, 1, 0, 0, 0, 8793, 8795, 3, 1052, 526, 0, 8794, 8796, 3, 1092, 546, 0, 8795, 8794, 1, 0, 0, 0, 8795, 8796, 1, 0, 0, 0, 8796, 8798, 1, 0, 0, 0, 8797, 8789, 1, 0, 0, 0, 8797, 8793, 1, 0, 0, 0, 8797, 8798, 1, 0, 0, 0, 8798, 8800, 1, 0, 0, 0, 8799, 8770, 1, 0, 0, 0, 8799, 8784, 1, 0, 0, 0, 8800, 1007, 1, 0, 0, 0, 8801, 8804, 3, 1010, 505, 0, 8802, 8804, 3, 1004, 502, 0, 8803, 8801, 1, 0, 0, 0, 8803, 8802, 1, 0, 0, 0, 8804, 1009, 1, 0, 0, 0, 8805, 8821, 5, 88, 0, 0, 8806, 8808, 3, 1042, 521, 0, 8807, 8806, 1, 0, 0, 0, 8807, 8808, 1, 0, 0, 0, 8808, 8810, 1, 0, 0, 0, 8809, 8811, 3, 1030, 515, 0, 8810, 8809, 1, 0, 0, 0, 8810, 8811, 1, 0, 0, 0, 8811, 8813, 1, 0, 0, 0, 8812, 8814, 3, 1386, 693, 0, 8813, 8812, 1, 0, 0, 0, 8813, 8814, 1, 0, 0, 0, 8814, 8822, 1, 0, 0, 0, 8815, 8817, 3, 1040, 520, 0, 8816, 8815, 1, 0, 0, 0, 8816, 8817, 1, 0, 0, 0, 8817, 8819, 1, 0, 0, 0, 8818, 8820, 3, 1388, 694, 0, 8819, 8818, 1, 0, 0, 0, 8819, 8820, 1, 0, 0, 0, 8820, 8822, 1, 0, 0, 0, 8821, 8807, 1, 0, 0, 0, 8821, 8816, 1, 0, 0, 0, 8822, 8824, 1, 0, 0, 0, 8823, 8825, 3, 1030, 515, 0, 8824, 8823, 1, 0, 0, 0, 8824, 8825, 1, 0, 0, 0, 8825, 8827, 1, 0, 0, 0, 8826, 8828, 3, 1104, 552, 0, 8827, 8826, 1, 0, 0, 0, 8827, 8828, 1, 0, 0, 0, 8828, 8830, 1, 0, 0, 0, 8829, 8831, 3, 1146, 573, 0, 8830, 8829, 1, 0, 0, 0, 8830, 8831, 1, 0, 0, 0, 8831, 8833, 1, 0, 0, 0, 8832, 8834, 3, 1074, 537, 0, 8833, 8832, 1, 0, 0, 0, 8833, 8834, 1, 0, 0, 0, 8834, 8836, 1, 0, 0, 0, 8835, 8837, 3, 1088, 544, 0, 8836, 8835, 1, 0, 0, 0, 8836, 8837, 1, 0, 0, 0, 8837, 8839, 1, 0, 0, 0, 8838, 8840, 3, 1290, 645, 0, 8839, 8838, 1, 0, 0, 0, 8839, 8840, 1, 0, 0, 0, 8840, 8851, 1, 0, 0, 0, 8841, 8851, 3, 1102, 551, 0, 8842, 8843, 5, 92, 0, 0, 8843, 8851, 3, 1120, 560, 0, 8844, 8845, 3, 1004, 502, 0, 8845, 8848, 3, 1014, 507, 0, 8846, 8849, 3, 1010, 505, 0, 8847, 8849, 3, 1004, 502, 0, 8848, 8846, 1, 0, 0, 0, 8848, 8847, 1, 0, 0, 0, 8849, 8851, 1, 0, 0, 0, 8850, 8805, 1, 0, 0, 0, 8850, 8841, 1, 0, 0, 0, 8850, 8842, 1, 0, 0, 0, 8850, 8844, 1, 0, 0, 0, 8851, 8859, 1, 0, 0, 0, 8852, 8855, 3, 1014, 507, 0, 8853, 8856, 3, 1010, 505, 0, 8854, 8856, 3, 1004, 502, 0, 8855, 8853, 1, 0, 0, 0, 8855, 8854, 1, 0, 0, 0, 8856, 8858, 1, 0, 0, 0, 8857, 8852, 1, 0, 0, 0, 8858, 8861, 1, 0, 0, 0, 8859, 8857, 1, 0, 0, 0, 8859, 8860, 1, 0, 0, 0, 8860, 1011, 1, 0, 0, 0, 8861, 8859, 1, 0, 0, 0, 8862, 8866, 5, 97, 0, 0, 8863, 8866, 5, 70, 0, 0, 8864, 8866, 5, 59, 0, 0, 8865, 8862, 1, 0, 0, 0, 8865, 8863, 1, 0, 0, 0, 8865, 8864, 1, 0, 0, 0, 8866, 1013, 1, 0, 0, 0, 8867, 8869, 3, 1012, 506, 0, 8868, 8870, 3, 1038, 519, 0, 8869, 8868, 1, 0, 0, 0, 8869, 8870, 1, 0, 0, 0, 8870, 1015, 1, 0, 0, 0, 8871, 8873, 5, 105, 0, 0, 8872, 8874, 5, 303, 0, 0, 8873, 8872, 1, 0, 0, 0, 8873, 8874, 1, 0, 0, 0, 8874, 8875, 1, 0, 0, 0, 8875, 8876, 3, 1018, 509, 0, 8876, 1017, 1, 0, 0, 0, 8877, 8882, 3, 1020, 510, 0, 8878, 8879, 5, 6, 0, 0, 8879, 8881, 3, 1020, 510, 0, 8880, 8878, 1, 0, 0, 0, 8881, 8884, 1, 0, 0, 0, 8882, 8880, 1, 0, 0, 0, 8882, 8883, 1, 0, 0, 0, 8883, 1019, 1, 0, 0, 0, 8884, 8882, 1, 0, 0, 0, 8885, 8887, 3, 1438, 719, 0, 8886, 8888, 3, 920, 460, 0, 8887, 8886, 1, 0, 0, 0, 8887, 8888, 1, 0, 0, 0, 8888, 8889, 1, 0, 0, 0, 8889, 8891, 5, 36, 0, 0, 8890, 8892, 3, 1026, 513, 0, 8891, 8890, 1, 0, 0, 0, 8891, 8892, 1, 0, 0, 0, 8892, 8893, 1, 0, 0, 0, 8893, 8894, 5, 2, 0, 0, 8894, 8895, 3, 944, 472, 0, 8895, 8897, 5, 3, 0, 0, 8896, 8898, 3, 1022, 511, 0, 8897, 8896, 1, 0, 0, 0, 8897, 8898, 1, 0, 0, 0, 8898, 8900, 1, 0, 0, 0, 8899, 8901, 3, 1024, 512, 0, 8900, 8899, 1, 0, 0, 0, 8900, 8901, 1, 0, 0, 0, 8901, 1021, 1, 0, 0, 0, 8902, 8903, 5, 325, 0, 0, 8903, 8904, 7, 49, 0, 0, 8904, 8905, 5, 207, 0, 0, 8905, 8906, 5, 147, 0, 0, 8906, 8907, 3, 244, 122, 0, 8907, 8908, 5, 333, 0, 0, 8908, 8909, 3, 1434, 717, 0, 8909, 1023, 1, 0, 0, 0, 8910, 8911, 5, 173, 0, 0, 8911, 8912, 3, 244, 122, 0, 8912, 8913, 5, 333, 0, 0, 8913, 8919, 3, 1434, 717, 0, 8914, 8915, 5, 94, 0, 0, 8915, 8916, 3, 1438, 719, 0, 8916, 8917, 5, 53, 0, 0, 8917, 8918, 3, 1438, 719, 0, 8918, 8920, 1, 0, 0, 0, 8919, 8914, 1, 0, 0, 0, 8919, 8920, 1, 0, 0, 0, 8920, 8921, 1, 0, 0, 0, 8921, 8922, 5, 100, 0, 0, 8922, 8923, 3, 1434, 717, 0, 8923, 1025, 1, 0, 0, 0, 8924, 8928, 5, 259, 0, 0, 8925, 8926, 5, 77, 0, 0, 8926, 8928, 5, 259, 0, 0, 8927, 8924, 1, 0, 0, 0, 8927, 8925, 1, 0, 0, 0, 8928, 1027, 1, 0, 0, 0, 8929, 8930, 3, 1016, 508, 0, 8930, 1029, 1, 0, 0, 0, 8931, 8936, 5, 71, 0, 0, 8932, 8933, 3, 1032, 516, 0, 8933, 8934, 3, 1034, 517, 0, 8934, 8937, 1, 0, 0, 0, 8935, 8937, 3, 1676, 838, 0, 8936, 8932, 1, 0, 0, 0, 8936, 8935, 1, 0, 0, 0, 8937, 1031, 1, 0, 0, 0, 8938, 8941, 1, 0, 0, 0, 8939, 8941, 5, 346, 0, 0, 8940, 8938, 1, 0, 0, 0, 8940, 8939, 1, 0, 0, 0, 8941, 1033, 1, 0, 0, 0, 8942, 8944, 7, 50, 0, 0, 8943, 8942, 1, 0, 0, 0, 8943, 8944, 1, 0, 0, 0, 8944, 8945, 1, 0, 0, 0, 8945, 8947, 7, 21, 0, 0, 8946, 8948, 3, 1036, 518, 0, 8947, 8946, 1, 0, 0, 0, 8947, 8948, 1, 0, 0, 0, 8948, 8949, 1, 0, 0, 0, 8949, 8959, 3, 1406, 703, 0, 8950, 8952, 5, 367, 0, 0, 8951, 8953, 3, 1036, 518, 0, 8952, 8951, 1, 0, 0, 0, 8952, 8953, 1, 0, 0, 0, 8953, 8954, 1, 0, 0, 0, 8954, 8959, 3, 1406, 703, 0, 8955, 8956, 5, 92, 0, 0, 8956, 8959, 3, 1406, 703, 0, 8957, 8959, 3, 1406, 703, 0, 8958, 8943, 1, 0, 0, 0, 8958, 8950, 1, 0, 0, 0, 8958, 8955, 1, 0, 0, 0, 8958, 8957, 1, 0, 0, 0, 8959, 1035, 1, 0, 0, 0, 8960, 8961, 5, 92, 0, 0, 8961, 1037, 1, 0, 0, 0, 8962, 8963, 7, 51, 0, 0, 8963, 1039, 1, 0, 0, 0, 8964, 8970, 5, 56, 0, 0, 8965, 8966, 5, 80, 0, 0, 8966, 8967, 5, 2, 0, 0, 8967, 8968, 3, 1330, 665, 0, 8968, 8969, 5, 3, 0, 0, 8969, 8971, 1, 0, 0, 0, 8970, 8965, 1, 0, 0, 0, 8970, 8971, 1, 0, 0, 0, 8971, 1041, 1, 0, 0, 0, 8972, 8973, 5, 30, 0, 0, 8973, 1043, 1, 0, 0, 0, 8974, 8975, 3, 1046, 523, 0, 8975, 1045, 1, 0, 0, 0, 8976, 8977, 5, 83, 0, 0, 8977, 8978, 5, 147, 0, 0, 8978, 8979, 3, 1048, 524, 0, 8979, 1047, 1, 0, 0, 0, 8980, 8985, 3, 1050, 525, 0, 8981, 8982, 5, 6, 0, 0, 8982, 8984, 3, 1050, 525, 0, 8983, 8981, 1, 0, 0, 0, 8984, 8987, 1, 0, 0, 0, 8985, 8983, 1, 0, 0, 0, 8985, 8986, 1, 0, 0, 0, 8986, 1049, 1, 0, 0, 0, 8987, 8985, 1, 0, 0, 0, 8988, 8992, 3, 1338, 669, 0, 8989, 8990, 5, 100, 0, 0, 8990, 8993, 3, 1326, 663, 0, 8991, 8993, 3, 650, 325, 0, 8992, 8989, 1, 0, 0, 0, 8992, 8991, 1, 0, 0, 0, 8992, 8993, 1, 0, 0, 0, 8993, 8995, 1, 0, 0, 0, 8994, 8996, 3, 652, 326, 0, 8995, 8994, 1, 0, 0, 0, 8995, 8996, 1, 0, 0, 0, 8996, 1051, 1, 0, 0, 0, 8997, 8999, 3, 1056, 528, 0, 8998, 9000, 3, 1060, 530, 0, 8999, 8998, 1, 0, 0, 0, 8999, 9000, 1, 0, 0, 0, 9000, 9010, 1, 0, 0, 0, 9001, 9003, 3, 1060, 530, 0, 9002, 9004, 3, 1058, 529, 0, 9003, 9002, 1, 0, 0, 0, 9003, 9004, 1, 0, 0, 0, 9004, 9010, 1, 0, 0, 0, 9005, 9007, 3, 1058, 529, 0, 9006, 9008, 3, 1060, 530, 0, 9007, 9006, 1, 0, 0, 0, 9007, 9008, 1, 0, 0, 0, 9008, 9010, 1, 0, 0, 0, 9009, 8997, 1, 0, 0, 0, 9009, 9001, 1, 0, 0, 0, 9009, 9005, 1, 0, 0, 0, 9010, 1053, 1, 0, 0, 0, 9011, 9012, 3, 1052, 526, 0, 9012, 1055, 1, 0, 0, 0, 9013, 9014, 5, 74, 0, 0, 9014, 9017, 3, 1062, 531, 0, 9015, 9016, 5, 6, 0, 0, 9016, 9018, 3, 1064, 532, 0, 9017, 9015, 1, 0, 0, 0, 9017, 9018, 1, 0, 0, 0, 9018, 1057, 1, 0, 0, 0, 9019, 9020, 5, 61, 0, 0, 9020, 9034, 3, 1072, 536, 0, 9021, 9022, 3, 1066, 533, 0, 9022, 9026, 3, 1070, 535, 0, 9023, 9027, 5, 81, 0, 0, 9024, 9025, 5, 105, 0, 0, 9025, 9027, 5, 467, 0, 0, 9026, 9023, 1, 0, 0, 0, 9026, 9024, 1, 0, 0, 0, 9027, 9035, 1, 0, 0, 0, 9028, 9032, 3, 1070, 535, 0, 9029, 9033, 5, 81, 0, 0, 9030, 9031, 5, 105, 0, 0, 9031, 9033, 5, 467, 0, 0, 9032, 9029, 1, 0, 0, 0, 9032, 9030, 1, 0, 0, 0, 9033, 9035, 1, 0, 0, 0, 9034, 9021, 1, 0, 0, 0, 9034, 9028, 1, 0, 0, 0, 9035, 1059, 1, 0, 0, 0, 9036, 9041, 5, 79, 0, 0, 9037, 9042, 3, 1064, 532, 0, 9038, 9039, 3, 1066, 533, 0, 9039, 9040, 3, 1070, 535, 0, 9040, 9042, 1, 0, 0, 0, 9041, 9037, 1, 0, 0, 0, 9041, 9038, 1, 0, 0, 0, 9042, 1061, 1, 0, 0, 0, 9043, 9046, 3, 1214, 607, 0, 9044, 9046, 5, 30, 0, 0, 9045, 9043, 1, 0, 0, 0, 9045, 9044, 1, 0, 0, 0, 9046, 1063, 1, 0, 0, 0, 9047, 9048, 3, 1214, 607, 0, 9048, 1065, 1, 0, 0, 0, 9049, 9055, 3, 1256, 628, 0, 9050, 9051, 5, 12, 0, 0, 9051, 9055, 3, 1068, 534, 0, 9052, 9053, 5, 13, 0, 0, 9053, 9055, 3, 1068, 534, 0, 9054, 9049, 1, 0, 0, 0, 9054, 9050, 1, 0, 0, 0, 9054, 9052, 1, 0, 0, 0, 9055, 1067, 1, 0, 0, 0, 9056, 9059, 3, 1458, 729, 0, 9057, 9059, 3, 1456, 728, 0, 9058, 9056, 1, 0, 0, 0, 9058, 9057, 1, 0, 0, 0, 9059, 1069, 1, 0, 0, 0, 9060, 9061, 7, 52, 0, 0, 9061, 1071, 1, 0, 0, 0, 9062, 9063, 7, 53, 0, 0, 9063, 1073, 1, 0, 0, 0, 9064, 9065, 5, 66, 0, 0, 9065, 9067, 5, 147, 0, 0, 9066, 9068, 3, 1038, 519, 0, 9067, 9066, 1, 0, 0, 0, 9067, 9068, 1, 0, 0, 0, 9068, 9069, 1, 0, 0, 0, 9069, 9070, 3, 1076, 538, 0, 9070, 1075, 1, 0, 0, 0, 9071, 9076, 3, 1078, 539, 0, 9072, 9073, 5, 6, 0, 0, 9073, 9075, 3, 1078, 539, 0, 9074, 9072, 1, 0, 0, 0, 9075, 9078, 1, 0, 0, 0, 9076, 9074, 1, 0, 0, 0, 9076, 9077, 1, 0, 0, 0, 9077, 1077, 1, 0, 0, 0, 9078, 9076, 1, 0, 0, 0, 9079, 9089, 3, 1338, 669, 0, 9080, 9089, 3, 1080, 540, 0, 9081, 9089, 3, 1084, 542, 0, 9082, 9089, 3, 1082, 541, 0, 9083, 9089, 3, 1086, 543, 0, 9084, 9085, 5, 2, 0, 0, 9085, 9086, 3, 1332, 666, 0, 9086, 9087, 5, 3, 0, 0, 9087, 9089, 1, 0, 0, 0, 9088, 9079, 1, 0, 0, 0, 9088, 9080, 1, 0, 0, 0, 9088, 9081, 1, 0, 0, 0, 9088, 9082, 1, 0, 0, 0, 9088, 9083, 1, 0, 0, 0, 9088, 9084, 1, 0, 0, 0, 9089, 1079, 1, 0, 0, 0, 9090, 9091, 5, 2, 0, 0, 9091, 9092, 5, 3, 0, 0, 9092, 1081, 1, 0, 0, 0, 9093, 9094, 5, 468, 0, 0, 9094, 9095, 5, 2, 0, 0, 9095, 9096, 3, 1332, 666, 0, 9096, 9097, 5, 3, 0, 0, 9097, 1083, 1, 0, 0, 0, 9098, 9099, 5, 469, 0, 0, 9099, 9100, 5, 2, 0, 0, 9100, 9101, 3, 1332, 666, 0, 9101, 9102, 5, 3, 0, 0, 9102, 1085, 1, 0, 0, 0, 9103, 9104, 5, 470, 0, 0, 9104, 9105, 5, 471, 0, 0, 9105, 9106, 5, 2, 0, 0, 9106, 9107, 3, 1076, 538, 0, 9107, 9108, 5, 3, 0, 0, 9108, 1087, 1, 0, 0, 0, 9109, 9110, 5, 67, 0, 0, 9110, 9111, 3, 1214, 607, 0, 9111, 1089, 1, 0, 0, 0, 9112, 9117, 3, 1094, 547, 0, 9113, 9114, 5, 62, 0, 0, 9114, 9115, 5, 300, 0, 0, 9115, 9117, 5, 81, 0, 0, 9116, 9112, 1, 0, 0, 0, 9116, 9113, 1, 0, 0, 0, 9117, 1091, 1, 0, 0, 0, 9118, 9119, 3, 1090, 545, 0, 9119, 1093, 1, 0, 0, 0, 9120, 9122, 3, 1096, 548, 0, 9121, 9120, 1, 0, 0, 0, 9122, 9123, 1, 0, 0, 0, 9123, 9121, 1, 0, 0, 0, 9123, 9124, 1, 0, 0, 0, 9124, 1095, 1, 0, 0, 0, 9125, 9127, 3, 1098, 549, 0, 9126, 9128, 3, 1100, 550, 0, 9127, 9126, 1, 0, 0, 0, 9127, 9128, 1, 0, 0, 0, 9128, 9130, 1, 0, 0, 0, 9129, 9131, 3, 982, 491, 0, 9130, 9129, 1, 0, 0, 0, 9130, 9131, 1, 0, 0, 0, 9131, 1097, 1, 0, 0, 0, 9132, 9142, 5, 62, 0, 0, 9133, 9134, 5, 269, 0, 0, 9134, 9136, 5, 245, 0, 0, 9135, 9133, 1, 0, 0, 0, 9135, 9136, 1, 0, 0, 0, 9136, 9137, 1, 0, 0, 0, 9137, 9143, 5, 369, 0, 0, 9138, 9140, 5, 245, 0, 0, 9139, 9138, 1, 0, 0, 0, 9139, 9140, 1, 0, 0, 0, 9140, 9141, 1, 0, 0, 0, 9141, 9143, 5, 334, 0, 0, 9142, 9135, 1, 0, 0, 0, 9142, 9139, 1, 0, 0, 0, 9143, 1099, 1, 0, 0, 0, 9144, 9145, 5, 275, 0, 0, 9145, 9146, 3, 1392, 696, 0, 9146, 1101, 1, 0, 0, 0, 9147, 9148, 5, 422, 0, 0, 9148, 9149, 5, 2, 0, 0, 9149, 9150, 3, 1330, 665, 0, 9150, 9158, 5, 3, 0, 0, 9151, 9152, 5, 6, 0, 0, 9152, 9153, 5, 2, 0, 0, 9153, 9154, 3, 1330, 665, 0, 9154, 9155, 5, 3, 0, 0, 9155, 9157, 1, 0, 0, 0, 9156, 9151, 1, 0, 0, 0, 9157, 9160, 1, 0, 0, 0, 9158, 9156, 1, 0, 0, 0, 9158, 9159, 1, 0, 0, 0, 9159, 1103, 1, 0, 0, 0, 9160, 9158, 1, 0, 0, 0, 9161, 9162, 5, 64, 0, 0, 9162, 9163, 3, 1106, 553, 0, 9163, 1105, 1, 0, 0, 0, 9164, 9169, 3, 1108, 554, 0, 9165, 9166, 5, 6, 0, 0, 9166, 9168, 3, 1108, 554, 0, 9167, 9165, 1, 0, 0, 0, 9168, 9171, 1, 0, 0, 0, 9169, 9167, 1, 0, 0, 0, 9169, 9170, 1, 0, 0, 0, 9170, 1107, 1, 0, 0, 0, 9171, 9169, 1, 0, 0, 0, 9172, 9175, 3, 1120, 560, 0, 9173, 9175, 3, 1122, 561, 0, 9174, 9172, 1, 0, 0, 0, 9174, 9173, 1, 0, 0, 0, 9175, 9177, 1, 0, 0, 0, 9176, 9178, 3, 1112, 556, 0, 9177, 9176, 1, 0, 0, 0, 9177, 9178, 1, 0, 0, 0, 9178, 9180, 1, 0, 0, 0, 9179, 9181, 3, 1132, 566, 0, 9180, 9179, 1, 0, 0, 0, 9180, 9181, 1, 0, 0, 0, 9181, 9234, 1, 0, 0, 0, 9182, 9184, 3, 1136, 568, 0, 9183, 9185, 3, 1114, 557, 0, 9184, 9183, 1, 0, 0, 0, 9184, 9185, 1, 0, 0, 0, 9185, 9234, 1, 0, 0, 0, 9186, 9188, 3, 1156, 578, 0, 9187, 9189, 3, 1112, 556, 0, 9188, 9187, 1, 0, 0, 0, 9188, 9189, 1, 0, 0, 0, 9189, 9234, 1, 0, 0, 0, 9190, 9192, 3, 1004, 502, 0, 9191, 9193, 3, 1112, 556, 0, 9192, 9191, 1, 0, 0, 0, 9192, 9193, 1, 0, 0, 0, 9193, 9234, 1, 0, 0, 0, 9194, 9207, 5, 72, 0, 0, 9195, 9197, 3, 1156, 578, 0, 9196, 9198, 3, 1112, 556, 0, 9197, 9196, 1, 0, 0, 0, 9197, 9198, 1, 0, 0, 0, 9198, 9208, 1, 0, 0, 0, 9199, 9201, 3, 1136, 568, 0, 9200, 9202, 3, 1114, 557, 0, 9201, 9200, 1, 0, 0, 0, 9201, 9202, 1, 0, 0, 0, 9202, 9208, 1, 0, 0, 0, 9203, 9205, 3, 1004, 502, 0, 9204, 9206, 3, 1112, 556, 0, 9205, 9204, 1, 0, 0, 0, 9205, 9206, 1, 0, 0, 0, 9206, 9208, 1, 0, 0, 0, 9207, 9195, 1, 0, 0, 0, 9207, 9199, 1, 0, 0, 0, 9207, 9203, 1, 0, 0, 0, 9208, 9234, 1, 0, 0, 0, 9209, 9210, 5, 2, 0, 0, 9210, 9227, 3, 1108, 554, 0, 9211, 9212, 5, 110, 0, 0, 9212, 9213, 5, 118, 0, 0, 9213, 9228, 3, 1108, 554, 0, 9214, 9216, 5, 121, 0, 0, 9215, 9217, 3, 1116, 558, 0, 9216, 9215, 1, 0, 0, 0, 9216, 9217, 1, 0, 0, 0, 9217, 9218, 1, 0, 0, 0, 9218, 9219, 5, 118, 0, 0, 9219, 9228, 3, 1108, 554, 0, 9220, 9222, 3, 1116, 558, 0, 9221, 9220, 1, 0, 0, 0, 9221, 9222, 1, 0, 0, 0, 9222, 9223, 1, 0, 0, 0, 9223, 9224, 5, 118, 0, 0, 9224, 9225, 3, 1108, 554, 0, 9225, 9226, 3, 1118, 559, 0, 9226, 9228, 1, 0, 0, 0, 9227, 9211, 1, 0, 0, 0, 9227, 9214, 1, 0, 0, 0, 9227, 9221, 1, 0, 0, 0, 9227, 9228, 1, 0, 0, 0, 9228, 9229, 1, 0, 0, 0, 9229, 9231, 5, 3, 0, 0, 9230, 9232, 3, 1112, 556, 0, 9231, 9230, 1, 0, 0, 0, 9231, 9232, 1, 0, 0, 0, 9232, 9234, 1, 0, 0, 0, 9233, 9174, 1, 0, 0, 0, 9233, 9182, 1, 0, 0, 0, 9233, 9186, 1, 0, 0, 0, 9233, 9190, 1, 0, 0, 0, 9233, 9194, 1, 0, 0, 0, 9233, 9209, 1, 0, 0, 0, 9234, 9253, 1, 0, 0, 0, 9235, 9236, 5, 110, 0, 0, 9236, 9237, 5, 118, 0, 0, 9237, 9252, 3, 1108, 554, 0, 9238, 9240, 5, 121, 0, 0, 9239, 9241, 3, 1116, 558, 0, 9240, 9239, 1, 0, 0, 0, 9240, 9241, 1, 0, 0, 0, 9241, 9242, 1, 0, 0, 0, 9242, 9243, 5, 118, 0, 0, 9243, 9252, 3, 1108, 554, 0, 9244, 9246, 3, 1116, 558, 0, 9245, 9244, 1, 0, 0, 0, 9245, 9246, 1, 0, 0, 0, 9246, 9247, 1, 0, 0, 0, 9247, 9248, 5, 118, 0, 0, 9248, 9249, 3, 1108, 554, 0, 9249, 9250, 3, 1118, 559, 0, 9250, 9252, 1, 0, 0, 0, 9251, 9235, 1, 0, 0, 0, 9251, 9238, 1, 0, 0, 0, 9251, 9245, 1, 0, 0, 0, 9252, 9255, 1, 0, 0, 0, 9253, 9251, 1, 0, 0, 0, 9253, 9254, 1, 0, 0, 0, 9254, 1109, 1, 0, 0, 0, 9255, 9253, 1, 0, 0, 0, 9256, 9258, 5, 36, 0, 0, 9257, 9256, 1, 0, 0, 0, 9257, 9258, 1, 0, 0, 0, 9258, 9259, 1, 0, 0, 0, 9259, 9264, 3, 1476, 738, 0, 9260, 9261, 5, 2, 0, 0, 9261, 9262, 3, 1418, 709, 0, 9262, 9263, 5, 3, 0, 0, 9263, 9265, 1, 0, 0, 0, 9264, 9260, 1, 0, 0, 0, 9264, 9265, 1, 0, 0, 0, 9265, 1111, 1, 0, 0, 0, 9266, 9267, 3, 1110, 555, 0, 9267, 1113, 1, 0, 0, 0, 9268, 9281, 3, 1110, 555, 0, 9269, 9271, 5, 36, 0, 0, 9270, 9272, 3, 1476, 738, 0, 9271, 9270, 1, 0, 0, 0, 9271, 9272, 1, 0, 0, 0, 9272, 9275, 1, 0, 0, 0, 9273, 9275, 3, 1476, 738, 0, 9274, 9269, 1, 0, 0, 0, 9274, 9273, 1, 0, 0, 0, 9275, 9276, 1, 0, 0, 0, 9276, 9277, 5, 2, 0, 0, 9277, 9278, 3, 1152, 576, 0, 9278, 9279, 5, 3, 0, 0, 9279, 9281, 1, 0, 0, 0, 9280, 9268, 1, 0, 0, 0, 9280, 9274, 1, 0, 0, 0, 9281, 1115, 1, 0, 0, 0, 9282, 9284, 7, 54, 0, 0, 9283, 9285, 5, 123, 0, 0, 9284, 9283, 1, 0, 0, 0, 9284, 9285, 1, 0, 0, 0, 9285, 1117, 1, 0, 0, 0, 9286, 9287, 5, 100, 0, 0, 9287, 9288, 5, 2, 0, 0, 9288, 9289, 3, 244, 122, 0, 9289, 9290, 5, 3, 0, 0, 9290, 9294, 1, 0, 0, 0, 9291, 9292, 5, 80, 0, 0, 9292, 9294, 3, 1214, 607, 0, 9293, 9286, 1, 0, 0, 0, 9293, 9291, 1, 0, 0, 0, 9294, 1119, 1, 0, 0, 0, 9295, 9297, 5, 81, 0, 0, 9296, 9295, 1, 0, 0, 0, 9296, 9297, 1, 0, 0, 0, 9297, 9298, 1, 0, 0, 0, 9298, 9300, 3, 1408, 704, 0, 9299, 9301, 5, 9, 0, 0, 9300, 9299, 1, 0, 0, 0, 9300, 9301, 1, 0, 0, 0, 9301, 9303, 1, 0, 0, 0, 9302, 9304, 3, 244, 122, 0, 9303, 9302, 1, 0, 0, 0, 9303, 9304, 1, 0, 0, 0, 9304, 9306, 1, 0, 0, 0, 9305, 9307, 3, 1146, 573, 0, 9306, 9305, 1, 0, 0, 0, 9306, 9307, 1, 0, 0, 0, 9307, 9323, 1, 0, 0, 0, 9308, 9314, 5, 81, 0, 0, 9309, 9315, 3, 1408, 704, 0, 9310, 9311, 5, 2, 0, 0, 9311, 9312, 3, 1408, 704, 0, 9312, 9313, 5, 3, 0, 0, 9313, 9315, 1, 0, 0, 0, 9314, 9309, 1, 0, 0, 0, 9314, 9310, 1, 0, 0, 0, 9315, 9323, 1, 0, 0, 0, 9316, 9317, 5, 68, 0, 0, 9317, 9320, 5, 323, 0, 0, 9318, 9321, 3, 1424, 712, 0, 9319, 9321, 5, 111, 0, 0, 9320, 9318, 1, 0, 0, 0, 9320, 9319, 1, 0, 0, 0, 9321, 9323, 1, 0, 0, 0, 9322, 9296, 1, 0, 0, 0, 9322, 9308, 1, 0, 0, 0, 9322, 9316, 1, 0, 0, 0, 9323, 1121, 1, 0, 0, 0, 9324, 9326, 5, 81, 0, 0, 9325, 9324, 1, 0, 0, 0, 9325, 9326, 1, 0, 0, 0, 9326, 9327, 1, 0, 0, 0, 9327, 9329, 3, 1412, 706, 0, 9328, 9330, 5, 9, 0, 0, 9329, 9328, 1, 0, 0, 0, 9329, 9330, 1, 0, 0, 0, 9330, 9332, 1, 0, 0, 0, 9331, 9333, 3, 244, 122, 0, 9332, 9331, 1, 0, 0, 0, 9332, 9333, 1, 0, 0, 0, 9333, 9335, 1, 0, 0, 0, 9334, 9336, 3, 1146, 573, 0, 9335, 9334, 1, 0, 0, 0, 9335, 9336, 1, 0, 0, 0, 9336, 1123, 1, 0, 0, 0, 9337, 9339, 5, 92, 0, 0, 9338, 9340, 5, 81, 0, 0, 9339, 9338, 1, 0, 0, 0, 9339, 9340, 1, 0, 0, 0, 9340, 9341, 1, 0, 0, 0, 9341, 9343, 3, 1408, 704, 0, 9342, 9344, 5, 9, 0, 0, 9343, 9342, 1, 0, 0, 0, 9343, 9344, 1, 0, 0, 0, 9344, 9349, 1, 0, 0, 0, 9345, 9346, 5, 2, 0, 0, 9346, 9347, 3, 244, 122, 0, 9347, 9348, 5, 3, 0, 0, 9348, 9350, 1, 0, 0, 0, 9349, 9345, 1, 0, 0, 0, 9349, 9350, 1, 0, 0, 0, 9350, 9352, 1, 0, 0, 0, 9351, 9353, 3, 1146, 573, 0, 9352, 9351, 1, 0, 0, 0, 9352, 9353, 1, 0, 0, 0, 9353, 9371, 1, 0, 0, 0, 9354, 9355, 5, 92, 0, 0, 9355, 9361, 5, 81, 0, 0, 9356, 9362, 3, 1408, 704, 0, 9357, 9358, 5, 2, 0, 0, 9358, 9359, 3, 1408, 704, 0, 9359, 9360, 5, 3, 0, 0, 9360, 9362, 1, 0, 0, 0, 9361, 9356, 1, 0, 0, 0, 9361, 9357, 1, 0, 0, 0, 9362, 9371, 1, 0, 0, 0, 9363, 9364, 5, 350, 0, 0, 9364, 9365, 5, 68, 0, 0, 9365, 9368, 5, 323, 0, 0, 9366, 9369, 3, 1424, 712, 0, 9367, 9369, 5, 111, 0, 0, 9368, 9366, 1, 0, 0, 0, 9368, 9367, 1, 0, 0, 0, 9369, 9371, 1, 0, 0, 0, 9370, 9337, 1, 0, 0, 0, 9370, 9354, 1, 0, 0, 0, 9370, 9363, 1, 0, 0, 0, 9371, 1125, 1, 0, 0, 0, 9372, 9377, 3, 1120, 560, 0, 9373, 9374, 5, 6, 0, 0, 9374, 9376, 3, 1120, 560, 0, 9375, 9373, 1, 0, 0, 0, 9376, 9379, 1, 0, 0, 0, 9377, 9375, 1, 0, 0, 0, 9377, 9378, 1, 0, 0, 0, 9378, 1127, 1, 0, 0, 0, 9379, 9377, 1, 0, 0, 0, 9380, 9385, 3, 1124, 562, 0, 9381, 9382, 5, 6, 0, 0, 9382, 9384, 3, 1124, 562, 0, 9383, 9381, 1, 0, 0, 0, 9384, 9387, 1, 0, 0, 0, 9385, 9383, 1, 0, 0, 0, 9385, 9386, 1, 0, 0, 0, 9386, 1129, 1, 0, 0, 0, 9387, 9385, 1, 0, 0, 0, 9388, 9393, 3, 1120, 560, 0, 9389, 9391, 5, 36, 0, 0, 9390, 9389, 1, 0, 0, 0, 9390, 9391, 1, 0, 0, 0, 9391, 9392, 1, 0, 0, 0, 9392, 9394, 3, 1476, 738, 0, 9393, 9390, 1, 0, 0, 0, 9393, 9394, 1, 0, 0, 0, 9394, 1131, 1, 0, 0, 0, 9395, 9396, 5, 472, 0, 0, 9396, 9397, 3, 1446, 723, 0, 9397, 9398, 5, 2, 0, 0, 9398, 9399, 3, 1330, 665, 0, 9399, 9401, 5, 3, 0, 0, 9400, 9402, 3, 1134, 567, 0, 9401, 9400, 1, 0, 0, 0, 9401, 9402, 1, 0, 0, 0, 9402, 1133, 1, 0, 0, 0, 9403, 9404, 5, 310, 0, 0, 9404, 9405, 5, 2, 0, 0, 9405, 9406, 3, 1214, 607, 0, 9406, 9407, 5, 3, 0, 0, 9407, 1135, 1, 0, 0, 0, 9408, 9410, 3, 1264, 632, 0, 9409, 9411, 3, 1144, 572, 0, 9410, 9409, 1, 0, 0, 0, 9410, 9411, 1, 0, 0, 0, 9411, 9421, 1, 0, 0, 0, 9412, 9413, 5, 320, 0, 0, 9413, 9414, 5, 64, 0, 0, 9414, 9415, 5, 2, 0, 0, 9415, 9416, 3, 1140, 570, 0, 9416, 9418, 5, 3, 0, 0, 9417, 9419, 3, 1144, 572, 0, 9418, 9417, 1, 0, 0, 0, 9418, 9419, 1, 0, 0, 0, 9419, 9421, 1, 0, 0, 0, 9420, 9408, 1, 0, 0, 0, 9420, 9412, 1, 0, 0, 0, 9421, 1137, 1, 0, 0, 0, 9422, 9424, 3, 1264, 632, 0, 9423, 9425, 3, 1142, 571, 0, 9424, 9423, 1, 0, 0, 0, 9424, 9425, 1, 0, 0, 0, 9425, 1139, 1, 0, 0, 0, 9426, 9431, 3, 1138, 569, 0, 9427, 9428, 5, 6, 0, 0, 9428, 9430, 3, 1138, 569, 0, 9429, 9427, 1, 0, 0, 0, 9430, 9433, 1, 0, 0, 0, 9431, 9429, 1, 0, 0, 0, 9431, 9432, 1, 0, 0, 0, 9432, 1141, 1, 0, 0, 0, 9433, 9431, 1, 0, 0, 0, 9434, 9435, 5, 36, 0, 0, 9435, 9436, 5, 2, 0, 0, 9436, 9437, 3, 1152, 576, 0, 9437, 9438, 5, 3, 0, 0, 9438, 1143, 1, 0, 0, 0, 9439, 9440, 5, 105, 0, 0, 9440, 9441, 5, 473, 0, 0, 9441, 1145, 1, 0, 0, 0, 9442, 9443, 5, 103, 0, 0, 9443, 9444, 3, 1338, 669, 0, 9444, 1147, 1, 0, 0, 0, 9445, 9450, 5, 103, 0, 0, 9446, 9447, 5, 434, 0, 0, 9447, 9448, 5, 275, 0, 0, 9448, 9451, 3, 996, 498, 0, 9449, 9451, 3, 1214, 607, 0, 9450, 9446, 1, 0, 0, 0, 9450, 9449, 1, 0, 0, 0, 9451, 1149, 1, 0, 0, 0, 9452, 9453, 3, 1152, 576, 0, 9453, 1151, 1, 0, 0, 0, 9454, 9459, 3, 1154, 577, 0, 9455, 9456, 5, 6, 0, 0, 9456, 9458, 3, 1154, 577, 0, 9457, 9455, 1, 0, 0, 0, 9458, 9461, 1, 0, 0, 0, 9459, 9457, 1, 0, 0, 0, 9459, 9460, 1, 0, 0, 0, 9460, 1153, 1, 0, 0, 0, 9461, 9459, 1, 0, 0, 0, 9462, 9463, 3, 1476, 738, 0, 9463, 9465, 3, 1170, 585, 0, 9464, 9466, 3, 126, 63, 0, 9465, 9464, 1, 0, 0, 0, 9465, 9466, 1, 0, 0, 0, 9466, 1155, 1, 0, 0, 0, 9467, 9468, 5, 474, 0, 0, 9468, 9484, 5, 2, 0, 0, 9469, 9470, 3, 1256, 628, 0, 9470, 9471, 3, 1282, 641, 0, 9471, 9472, 5, 475, 0, 0, 9472, 9473, 3, 1158, 579, 0, 9473, 9485, 1, 0, 0, 0, 9474, 9475, 5, 476, 0, 0, 9475, 9476, 5, 2, 0, 0, 9476, 9477, 3, 1166, 583, 0, 9477, 9478, 5, 3, 0, 0, 9478, 9479, 5, 6, 0, 0, 9479, 9480, 3, 1256, 628, 0, 9480, 9481, 3, 1282, 641, 0, 9481, 9482, 5, 475, 0, 0, 9482, 9483, 3, 1158, 579, 0, 9483, 9485, 1, 0, 0, 0, 9484, 9469, 1, 0, 0, 0, 9484, 9474, 1, 0, 0, 0, 9485, 9486, 1, 0, 0, 0, 9486, 9487, 5, 3, 0, 0, 9487, 1157, 1, 0, 0, 0, 9488, 9493, 3, 1160, 580, 0, 9489, 9490, 5, 6, 0, 0, 9490, 9492, 3, 1160, 580, 0, 9491, 9489, 1, 0, 0, 0, 9492, 9495, 1, 0, 0, 0, 9493, 9491, 1, 0, 0, 0, 9493, 9494, 1, 0, 0, 0, 9494, 1159, 1, 0, 0, 0, 9495, 9493, 1, 0, 0, 0, 9496, 9503, 3, 1476, 738, 0, 9497, 9499, 3, 1170, 585, 0, 9498, 9500, 3, 1162, 581, 0, 9499, 9498, 1, 0, 0, 0, 9499, 9500, 1, 0, 0, 0, 9500, 9504, 1, 0, 0, 0, 9501, 9502, 5, 62, 0, 0, 9502, 9504, 5, 473, 0, 0, 9503, 9497, 1, 0, 0, 0, 9503, 9501, 1, 0, 0, 0, 9504, 1161, 1, 0, 0, 0, 9505, 9507, 3, 1164, 582, 0, 9506, 9505, 1, 0, 0, 0, 9507, 9508, 1, 0, 0, 0, 9508, 9506, 1, 0, 0, 0, 9508, 9509, 1, 0, 0, 0, 9509, 1163, 1, 0, 0, 0, 9510, 9511, 5, 53, 0, 0, 9511, 9519, 3, 1214, 607, 0, 9512, 9513, 3, 1494, 747, 0, 9513, 9514, 3, 1214, 607, 0, 9514, 9519, 1, 0, 0, 0, 9515, 9516, 5, 77, 0, 0, 9516, 9519, 5, 78, 0, 0, 9517, 9519, 5, 78, 0, 0, 9518, 9510, 1, 0, 0, 0, 9518, 9512, 1, 0, 0, 0, 9518, 9515, 1, 0, 0, 0, 9518, 9517, 1, 0, 0, 0, 9519, 1165, 1, 0, 0, 0, 9520, 9525, 3, 1168, 584, 0, 9521, 9522, 5, 6, 0, 0, 9522, 9524, 3, 1168, 584, 0, 9523, 9521, 1, 0, 0, 0, 9524, 9527, 1, 0, 0, 0, 9525, 9523, 1, 0, 0, 0, 9525, 9526, 1, 0, 0, 0, 9526, 1167, 1, 0, 0, 0, 9527, 9525, 1, 0, 0, 0, 9528, 9529, 3, 1254, 627, 0, 9529, 9530, 5, 36, 0, 0, 9530, 9531, 3, 1492, 746, 0, 9531, 9535, 1, 0, 0, 0, 9532, 9533, 5, 53, 0, 0, 9533, 9535, 3, 1254, 627, 0, 9534, 9528, 1, 0, 0, 0, 9534, 9532, 1, 0, 0, 0, 9535, 1169, 1, 0, 0, 0, 9536, 9538, 5, 415, 0, 0, 9537, 9536, 1, 0, 0, 0, 9537, 9538, 1, 0, 0, 0, 9538, 9539, 1, 0, 0, 0, 9539, 9548, 3, 1174, 587, 0, 9540, 9549, 3, 1172, 586, 0, 9541, 9546, 5, 35, 0, 0, 9542, 9543, 5, 4, 0, 0, 9543, 9544, 3, 1458, 729, 0, 9544, 9545, 5, 5, 0, 0, 9545, 9547, 1, 0, 0, 0, 9546, 9542, 1, 0, 0, 0, 9546, 9547, 1, 0, 0, 0, 9547, 9549, 1, 0, 0, 0, 9548, 9540, 1, 0, 0, 0, 9548, 9541, 1, 0, 0, 0, 9549, 9555, 1, 0, 0, 0, 9550, 9551, 3, 1414, 707, 0, 9551, 9552, 5, 27, 0, 0, 9552, 9553, 7, 55, 0, 0, 9553, 9555, 1, 0, 0, 0, 9554, 9537, 1, 0, 0, 0, 9554, 9550, 1, 0, 0, 0, 9555, 1171, 1, 0, 0, 0, 9556, 9558, 5, 4, 0, 0, 9557, 9559, 3, 1458, 729, 0, 9558, 9557, 1, 0, 0, 0, 9558, 9559, 1, 0, 0, 0, 9559, 9560, 1, 0, 0, 0, 9560, 9562, 5, 5, 0, 0, 9561, 9556, 1, 0, 0, 0, 9562, 9565, 1, 0, 0, 0, 9563, 9561, 1, 0, 0, 0, 9563, 9564, 1, 0, 0, 0, 9564, 1173, 1, 0, 0, 0, 9565, 9563, 1, 0, 0, 0, 9566, 9582, 3, 1178, 589, 0, 9567, 9582, 3, 1182, 591, 0, 9568, 9582, 3, 1186, 593, 0, 9569, 9582, 3, 1194, 597, 0, 9570, 9582, 3, 1202, 601, 0, 9571, 9579, 3, 1204, 602, 0, 9572, 9574, 3, 1208, 604, 0, 9573, 9572, 1, 0, 0, 0, 9573, 9574, 1, 0, 0, 0, 9574, 9580, 1, 0, 0, 0, 9575, 9576, 5, 2, 0, 0, 9576, 9577, 3, 1458, 729, 0, 9577, 9578, 5, 3, 0, 0, 9578, 9580, 1, 0, 0, 0, 9579, 9573, 1, 0, 0, 0, 9579, 9575, 1, 0, 0, 0, 9580, 9582, 1, 0, 0, 0, 9581, 9566, 1, 0, 0, 0, 9581, 9567, 1, 0, 0, 0, 9581, 9568, 1, 0, 0, 0, 9581, 9569, 1, 0, 0, 0, 9581, 9570, 1, 0, 0, 0, 9581, 9571, 1, 0, 0, 0, 9582, 1175, 1, 0, 0, 0, 9583, 9588, 3, 1182, 591, 0, 9584, 9588, 3, 1188, 594, 0, 9585, 9588, 3, 1196, 598, 0, 9586, 9588, 3, 1202, 601, 0, 9587, 9583, 1, 0, 0, 0, 9587, 9584, 1, 0, 0, 0, 9587, 9585, 1, 0, 0, 0, 9587, 9586, 1, 0, 0, 0, 9588, 1177, 1, 0, 0, 0, 9589, 9591, 3, 1484, 742, 0, 9590, 9592, 3, 560, 280, 0, 9591, 9590, 1, 0, 0, 0, 9591, 9592, 1, 0, 0, 0, 9592, 9594, 1, 0, 0, 0, 9593, 9595, 3, 1180, 590, 0, 9594, 9593, 1, 0, 0, 0, 9594, 9595, 1, 0, 0, 0, 9595, 1179, 1, 0, 0, 0, 9596, 9597, 5, 2, 0, 0, 9597, 9598, 3, 1330, 665, 0, 9598, 9599, 5, 3, 0, 0, 9599, 1181, 1, 0, 0, 0, 9600, 9625, 5, 401, 0, 0, 9601, 9625, 5, 402, 0, 0, 9602, 9625, 5, 416, 0, 0, 9603, 9625, 5, 388, 0, 0, 9604, 9625, 5, 413, 0, 0, 9605, 9607, 5, 398, 0, 0, 9606, 9608, 3, 1184, 592, 0, 9607, 9606, 1, 0, 0, 0, 9607, 9608, 1, 0, 0, 0, 9608, 9625, 1, 0, 0, 0, 9609, 9610, 5, 190, 0, 0, 9610, 9625, 5, 412, 0, 0, 9611, 9613, 5, 395, 0, 0, 9612, 9614, 3, 1180, 590, 0, 9613, 9612, 1, 0, 0, 0, 9613, 9614, 1, 0, 0, 0, 9614, 9625, 1, 0, 0, 0, 9615, 9617, 5, 394, 0, 0, 9616, 9618, 3, 1180, 590, 0, 9617, 9616, 1, 0, 0, 0, 9617, 9618, 1, 0, 0, 0, 9618, 9625, 1, 0, 0, 0, 9619, 9621, 5, 409, 0, 0, 9620, 9622, 3, 1180, 590, 0, 9621, 9620, 1, 0, 0, 0, 9621, 9622, 1, 0, 0, 0, 9622, 9625, 1, 0, 0, 0, 9623, 9625, 5, 390, 0, 0, 9624, 9600, 1, 0, 0, 0, 9624, 9601, 1, 0, 0, 0, 9624, 9602, 1, 0, 0, 0, 9624, 9603, 1, 0, 0, 0, 9624, 9604, 1, 0, 0, 0, 9624, 9605, 1, 0, 0, 0, 9624, 9609, 1, 0, 0, 0, 9624, 9611, 1, 0, 0, 0, 9624, 9615, 1, 0, 0, 0, 9624, 9619, 1, 0, 0, 0, 9624, 9623, 1, 0, 0, 0, 9625, 1183, 1, 0, 0, 0, 9626, 9627, 5, 2, 0, 0, 9627, 9628, 3, 1458, 729, 0, 9628, 9629, 5, 3, 0, 0, 9629, 1185, 1, 0, 0, 0, 9630, 9633, 3, 1190, 595, 0, 9631, 9633, 3, 1192, 596, 0, 9632, 9630, 1, 0, 0, 0, 9632, 9631, 1, 0, 0, 0, 9633, 1187, 1, 0, 0, 0, 9634, 9637, 3, 1190, 595, 0, 9635, 9637, 3, 1192, 596, 0, 9636, 9634, 1, 0, 0, 0, 9636, 9635, 1, 0, 0, 0, 9637, 1189, 1, 0, 0, 0, 9638, 9640, 5, 389, 0, 0, 9639, 9641, 3, 1200, 600, 0, 9640, 9639, 1, 0, 0, 0, 9640, 9641, 1, 0, 0, 0, 9641, 9642, 1, 0, 0, 0, 9642, 9643, 5, 2, 0, 0, 9643, 9644, 3, 1330, 665, 0, 9644, 9645, 5, 3, 0, 0, 9645, 1191, 1, 0, 0, 0, 9646, 9648, 5, 389, 0, 0, 9647, 9649, 3, 1200, 600, 0, 9648, 9647, 1, 0, 0, 0, 9648, 9649, 1, 0, 0, 0, 9649, 1193, 1, 0, 0, 0, 9650, 9655, 3, 1198, 599, 0, 9651, 9652, 5, 2, 0, 0, 9652, 9653, 3, 1458, 729, 0, 9653, 9654, 5, 3, 0, 0, 9654, 9656, 1, 0, 0, 0, 9655, 9651, 1, 0, 0, 0, 9655, 9656, 1, 0, 0, 0, 9656, 1195, 1, 0, 0, 0, 9657, 9662, 3, 1198, 599, 0, 9658, 9659, 5, 2, 0, 0, 9659, 9660, 3, 1458, 729, 0, 9660, 9661, 5, 3, 0, 0, 9661, 9663, 1, 0, 0, 0, 9662, 9658, 1, 0, 0, 0, 9662, 9663, 1, 0, 0, 0, 9663, 1197, 1, 0, 0, 0, 9664, 9666, 7, 56, 0, 0, 9665, 9667, 3, 1200, 600, 0, 9666, 9665, 1, 0, 0, 0, 9666, 9667, 1, 0, 0, 0, 9667, 9675, 1, 0, 0, 0, 9668, 9675, 5, 423, 0, 0, 9669, 9670, 5, 405, 0, 0, 9670, 9672, 7, 57, 0, 0, 9671, 9673, 3, 1200, 600, 0, 9672, 9671, 1, 0, 0, 0, 9672, 9673, 1, 0, 0, 0, 9673, 9675, 1, 0, 0, 0, 9674, 9664, 1, 0, 0, 0, 9674, 9668, 1, 0, 0, 0, 9674, 9669, 1, 0, 0, 0, 9675, 1199, 1, 0, 0, 0, 9676, 9677, 5, 374, 0, 0, 9677, 1201, 1, 0, 0, 0, 9678, 9683, 7, 58, 0, 0, 9679, 9680, 5, 2, 0, 0, 9680, 9681, 3, 1458, 729, 0, 9681, 9682, 5, 3, 0, 0, 9682, 9684, 1, 0, 0, 0, 9683, 9679, 1, 0, 0, 0, 9683, 9684, 1, 0, 0, 0, 9684, 9686, 1, 0, 0, 0, 9685, 9687, 3, 1206, 603, 0, 9686, 9685, 1, 0, 0, 0, 9686, 9687, 1, 0, 0, 0, 9687, 1203, 1, 0, 0, 0, 9688, 9689, 5, 403, 0, 0, 9689, 1205, 1, 0, 0, 0, 9690, 9691, 5, 105, 0, 0, 9691, 9692, 5, 418, 0, 0, 9692, 9697, 5, 386, 0, 0, 9693, 9694, 5, 379, 0, 0, 9694, 9695, 5, 418, 0, 0, 9695, 9697, 5, 386, 0, 0, 9696, 9690, 1, 0, 0, 0, 9696, 9693, 1, 0, 0, 0, 9697, 1207, 1, 0, 0, 0, 9698, 9724, 5, 384, 0, 0, 9699, 9724, 5, 264, 0, 0, 9700, 9724, 5, 176, 0, 0, 9701, 9724, 5, 218, 0, 0, 9702, 9724, 5, 261, 0, 0, 9703, 9724, 3, 1210, 605, 0, 9704, 9705, 5, 384, 0, 0, 9705, 9706, 5, 94, 0, 0, 9706, 9724, 5, 264, 0, 0, 9707, 9708, 5, 176, 0, 0, 9708, 9712, 5, 94, 0, 0, 9709, 9713, 5, 218, 0, 0, 9710, 9713, 5, 261, 0, 0, 9711, 9713, 3, 1210, 605, 0, 9712, 9709, 1, 0, 0, 0, 9712, 9710, 1, 0, 0, 0, 9712, 9711, 1, 0, 0, 0, 9713, 9724, 1, 0, 0, 0, 9714, 9715, 5, 218, 0, 0, 9715, 9718, 5, 94, 0, 0, 9716, 9719, 5, 261, 0, 0, 9717, 9719, 3, 1210, 605, 0, 9718, 9716, 1, 0, 0, 0, 9718, 9717, 1, 0, 0, 0, 9719, 9724, 1, 0, 0, 0, 9720, 9721, 5, 261, 0, 0, 9721, 9722, 5, 94, 0, 0, 9722, 9724, 3, 1210, 605, 0, 9723, 9698, 1, 0, 0, 0, 9723, 9699, 1, 0, 0, 0, 9723, 9700, 1, 0, 0, 0, 9723, 9701, 1, 0, 0, 0, 9723, 9702, 1, 0, 0, 0, 9723, 9703, 1, 0, 0, 0, 9723, 9704, 1, 0, 0, 0, 9723, 9707, 1, 0, 0, 0, 9723, 9714, 1, 0, 0, 0, 9723, 9720, 1, 0, 0, 0, 9724, 1209, 1, 0, 0, 0, 9725, 9730, 5, 326, 0, 0, 9726, 9727, 5, 2, 0, 0, 9727, 9728, 3, 1458, 729, 0, 9728, 9729, 5, 3, 0, 0, 9729, 9731, 1, 0, 0, 0, 9730, 9726, 1, 0, 0, 0, 9730, 9731, 1, 0, 0, 0, 9731, 1211, 1, 0, 0, 0, 9732, 9733, 5, 197, 0, 0, 9733, 9734, 3, 1214, 607, 0, 9734, 1213, 1, 0, 0, 0, 9735, 9736, 3, 1216, 608, 0, 9736, 1215, 1, 0, 0, 0, 9737, 9739, 3, 1218, 609, 0, 9738, 9740, 3, 1324, 662, 0, 9739, 9738, 1, 0, 0, 0, 9739, 9740, 1, 0, 0, 0, 9740, 1217, 1, 0, 0, 0, 9741, 9746, 3, 1220, 610, 0, 9742, 9743, 7, 59, 0, 0, 9743, 9745, 3, 1220, 610, 0, 9744, 9742, 1, 0, 0, 0, 9745, 9748, 1, 0, 0, 0, 9746, 9744, 1, 0, 0, 0, 9746, 9747, 1, 0, 0, 0, 9747, 1219, 1, 0, 0, 0, 9748, 9746, 1, 0, 0, 0, 9749, 9754, 3, 1222, 611, 0, 9750, 9751, 5, 82, 0, 0, 9751, 9753, 3, 1222, 611, 0, 9752, 9750, 1, 0, 0, 0, 9753, 9756, 1, 0, 0, 0, 9754, 9752, 1, 0, 0, 0, 9754, 9755, 1, 0, 0, 0, 9755, 1221, 1, 0, 0, 0, 9756, 9754, 1, 0, 0, 0, 9757, 9762, 3, 1224, 612, 0, 9758, 9759, 5, 33, 0, 0, 9759, 9761, 3, 1224, 612, 0, 9760, 9758, 1, 0, 0, 0, 9761, 9764, 1, 0, 0, 0, 9762, 9760, 1, 0, 0, 0, 9762, 9763, 1, 0, 0, 0, 9763, 1223, 1, 0, 0, 0, 9764, 9762, 1, 0, 0, 0, 9765, 9771, 3, 1226, 613, 0, 9766, 9768, 5, 77, 0, 0, 9767, 9766, 1, 0, 0, 0, 9767, 9768, 1, 0, 0, 0, 9768, 9769, 1, 0, 0, 0, 9769, 9770, 5, 68, 0, 0, 9770, 9772, 3, 1364, 682, 0, 9771, 9767, 1, 0, 0, 0, 9771, 9772, 1, 0, 0, 0, 9772, 1225, 1, 0, 0, 0, 9773, 9775, 5, 77, 0, 0, 9774, 9773, 1, 0, 0, 0, 9774, 9775, 1, 0, 0, 0, 9775, 9776, 1, 0, 0, 0, 9776, 9777, 3, 1228, 614, 0, 9777, 1227, 1, 0, 0, 0, 9778, 9780, 3, 1230, 615, 0, 9779, 9781, 7, 60, 0, 0, 9780, 9779, 1, 0, 0, 0, 9780, 9781, 1, 0, 0, 0, 9781, 1229, 1, 0, 0, 0, 9782, 9806, 3, 1232, 616, 0, 9783, 9785, 5, 116, 0, 0, 9784, 9786, 5, 77, 0, 0, 9785, 9784, 1, 0, 0, 0, 9785, 9786, 1, 0, 0, 0, 9786, 9804, 1, 0, 0, 0, 9787, 9805, 5, 78, 0, 0, 9788, 9805, 5, 96, 0, 0, 9789, 9805, 5, 60, 0, 0, 9790, 9805, 5, 365, 0, 0, 9791, 9792, 5, 56, 0, 0, 9792, 9793, 5, 64, 0, 0, 9793, 9805, 3, 1214, 607, 0, 9794, 9795, 5, 275, 0, 0, 9795, 9796, 5, 2, 0, 0, 9796, 9797, 3, 1344, 672, 0, 9797, 9798, 5, 3, 0, 0, 9798, 9805, 1, 0, 0, 0, 9799, 9805, 5, 188, 0, 0, 9800, 9802, 3, 1354, 677, 0, 9801, 9800, 1, 0, 0, 0, 9801, 9802, 1, 0, 0, 0, 9802, 9803, 1, 0, 0, 0, 9803, 9805, 5, 478, 0, 0, 9804, 9787, 1, 0, 0, 0, 9804, 9788, 1, 0, 0, 0, 9804, 9789, 1, 0, 0, 0, 9804, 9790, 1, 0, 0, 0, 9804, 9791, 1, 0, 0, 0, 9804, 9794, 1, 0, 0, 0, 9804, 9799, 1, 0, 0, 0, 9804, 9801, 1, 0, 0, 0, 9805, 9807, 1, 0, 0, 0, 9806, 9783, 1, 0, 0, 0, 9806, 9807, 1, 0, 0, 0, 9807, 1231, 1, 0, 0, 0, 9808, 9820, 3, 1234, 617, 0, 9809, 9810, 7, 61, 0, 0, 9810, 9821, 3, 1234, 617, 0, 9811, 9812, 3, 1328, 664, 0, 9812, 9818, 3, 1318, 659, 0, 9813, 9819, 3, 1004, 502, 0, 9814, 9815, 5, 2, 0, 0, 9815, 9816, 3, 1214, 607, 0, 9816, 9817, 5, 3, 0, 0, 9817, 9819, 1, 0, 0, 0, 9818, 9813, 1, 0, 0, 0, 9818, 9814, 1, 0, 0, 0, 9819, 9821, 1, 0, 0, 0, 9820, 9809, 1, 0, 0, 0, 9820, 9811, 1, 0, 0, 0, 9820, 9821, 1, 0, 0, 0, 9821, 1233, 1, 0, 0, 0, 9822, 9840, 3, 1236, 618, 0, 9823, 9825, 5, 77, 0, 0, 9824, 9823, 1, 0, 0, 0, 9824, 9825, 1, 0, 0, 0, 9825, 9834, 1, 0, 0, 0, 9826, 9835, 5, 120, 0, 0, 9827, 9835, 5, 114, 0, 0, 9828, 9829, 5, 127, 0, 0, 9829, 9835, 5, 94, 0, 0, 9830, 9832, 5, 387, 0, 0, 9831, 9833, 5, 91, 0, 0, 9832, 9831, 1, 0, 0, 0, 9832, 9833, 1, 0, 0, 0, 9833, 9835, 1, 0, 0, 0, 9834, 9826, 1, 0, 0, 0, 9834, 9827, 1, 0, 0, 0, 9834, 9828, 1, 0, 0, 0, 9834, 9830, 1, 0, 0, 0, 9835, 9836, 1, 0, 0, 0, 9836, 9838, 3, 1236, 618, 0, 9837, 9839, 3, 1212, 606, 0, 9838, 9837, 1, 0, 0, 0, 9838, 9839, 1, 0, 0, 0, 9839, 9841, 1, 0, 0, 0, 9840, 9824, 1, 0, 0, 0, 9840, 9841, 1, 0, 0, 0, 9841, 1235, 1, 0, 0, 0, 9842, 9848, 3, 1238, 619, 0, 9843, 9844, 3, 1324, 662, 0, 9844, 9845, 3, 1238, 619, 0, 9845, 9847, 1, 0, 0, 0, 9846, 9843, 1, 0, 0, 0, 9847, 9850, 1, 0, 0, 0, 9848, 9846, 1, 0, 0, 0, 9848, 9849, 1, 0, 0, 0, 9849, 1237, 1, 0, 0, 0, 9850, 9848, 1, 0, 0, 0, 9851, 9853, 3, 1324, 662, 0, 9852, 9851, 1, 0, 0, 0, 9852, 9853, 1, 0, 0, 0, 9853, 9854, 1, 0, 0, 0, 9854, 9855, 3, 1240, 620, 0, 9855, 1239, 1, 0, 0, 0, 9856, 9861, 3, 1242, 621, 0, 9857, 9858, 7, 62, 0, 0, 9858, 9860, 3, 1242, 621, 0, 9859, 9857, 1, 0, 0, 0, 9860, 9863, 1, 0, 0, 0, 9861, 9859, 1, 0, 0, 0, 9861, 9862, 1, 0, 0, 0, 9862, 1241, 1, 0, 0, 0, 9863, 9861, 1, 0, 0, 0, 9864, 9869, 3, 1244, 622, 0, 9865, 9866, 7, 63, 0, 0, 9866, 9868, 3, 1244, 622, 0, 9867, 9865, 1, 0, 0, 0, 9868, 9871, 1, 0, 0, 0, 9869, 9867, 1, 0, 0, 0, 9869, 9870, 1, 0, 0, 0, 9870, 1243, 1, 0, 0, 0, 9871, 9869, 1, 0, 0, 0, 9872, 9875, 3, 1246, 623, 0, 9873, 9874, 5, 15, 0, 0, 9874, 9876, 3, 1214, 607, 0, 9875, 9873, 1, 0, 0, 0, 9875, 9876, 1, 0, 0, 0, 9876, 1245, 1, 0, 0, 0, 9877, 9879, 7, 62, 0, 0, 9878, 9877, 1, 0, 0, 0, 9878, 9879, 1, 0, 0, 0, 9879, 9880, 1, 0, 0, 0, 9880, 9881, 3, 1248, 624, 0, 9881, 1247, 1, 0, 0, 0, 9882, 9887, 3, 1250, 625, 0, 9883, 9884, 5, 142, 0, 0, 9884, 9885, 5, 418, 0, 0, 9885, 9886, 5, 386, 0, 0, 9886, 9888, 3, 1214, 607, 0, 9887, 9883, 1, 0, 0, 0, 9887, 9888, 1, 0, 0, 0, 9888, 1249, 1, 0, 0, 0, 9889, 9892, 3, 1252, 626, 0, 9890, 9891, 5, 43, 0, 0, 9891, 9893, 3, 558, 279, 0, 9892, 9890, 1, 0, 0, 0, 9892, 9893, 1, 0, 0, 0, 9893, 1251, 1, 0, 0, 0, 9894, 9899, 3, 1256, 628, 0, 9895, 9896, 5, 26, 0, 0, 9896, 9898, 3, 1170, 585, 0, 9897, 9895, 1, 0, 0, 0, 9898, 9901, 1, 0, 0, 0, 9899, 9897, 1, 0, 0, 0, 9899, 9900, 1, 0, 0, 0, 9900, 1253, 1, 0, 0, 0, 9901, 9899, 1, 0, 0, 0, 9902, 9903, 6, 627, -1, 0, 9903, 9910, 3, 1256, 628, 0, 9904, 9905, 7, 62, 0, 0, 9905, 9910, 3, 1254, 627, 9, 9906, 9907, 3, 1324, 662, 0, 9907, 9908, 3, 1254, 627, 3, 9908, 9910, 1, 0, 0, 0, 9909, 9902, 1, 0, 0, 0, 9909, 9904, 1, 0, 0, 0, 9909, 9906, 1, 0, 0, 0, 9910, 9950, 1, 0, 0, 0, 9911, 9912, 10, 8, 0, 0, 9912, 9913, 5, 15, 0, 0, 9913, 9949, 3, 1254, 627, 9, 9914, 9915, 10, 7, 0, 0, 9915, 9916, 7, 63, 0, 0, 9916, 9949, 3, 1254, 627, 8, 9917, 9918, 10, 6, 0, 0, 9918, 9919, 7, 62, 0, 0, 9919, 9949, 3, 1254, 627, 7, 9920, 9921, 10, 5, 0, 0, 9921, 9922, 3, 1324, 662, 0, 9922, 9923, 3, 1254, 627, 6, 9923, 9949, 1, 0, 0, 0, 9924, 9925, 10, 4, 0, 0, 9925, 9926, 7, 61, 0, 0, 9926, 9949, 3, 1254, 627, 5, 9927, 9928, 10, 10, 0, 0, 9928, 9929, 5, 26, 0, 0, 9929, 9949, 3, 1170, 585, 0, 9930, 9931, 10, 2, 0, 0, 9931, 9949, 3, 1324, 662, 0, 9932, 9933, 10, 1, 0, 0, 9933, 9935, 5, 116, 0, 0, 9934, 9936, 5, 77, 0, 0, 9935, 9934, 1, 0, 0, 0, 9935, 9936, 1, 0, 0, 0, 9936, 9946, 1, 0, 0, 0, 9937, 9938, 5, 56, 0, 0, 9938, 9939, 5, 64, 0, 0, 9939, 9947, 3, 1254, 627, 0, 9940, 9941, 5, 275, 0, 0, 9941, 9942, 5, 2, 0, 0, 9942, 9943, 3, 1344, 672, 0, 9943, 9944, 5, 3, 0, 0, 9944, 9947, 1, 0, 0, 0, 9945, 9947, 5, 188, 0, 0, 9946, 9937, 1, 0, 0, 0, 9946, 9940, 1, 0, 0, 0, 9946, 9945, 1, 0, 0, 0, 9947, 9949, 1, 0, 0, 0, 9948, 9911, 1, 0, 0, 0, 9948, 9914, 1, 0, 0, 0, 9948, 9917, 1, 0, 0, 0, 9948, 9920, 1, 0, 0, 0, 9948, 9924, 1, 0, 0, 0, 9948, 9927, 1, 0, 0, 0, 9948, 9930, 1, 0, 0, 0, 9948, 9932, 1, 0, 0, 0, 9949, 9952, 1, 0, 0, 0, 9950, 9948, 1, 0, 0, 0, 9950, 9951, 1, 0, 0, 0, 9951, 1255, 1, 0, 0, 0, 9952, 9950, 1, 0, 0, 0, 9953, 9954, 5, 396, 0, 0, 9954, 9990, 3, 1004, 502, 0, 9955, 9958, 5, 35, 0, 0, 9956, 9959, 3, 1004, 502, 0, 9957, 9959, 3, 1346, 673, 0, 9958, 9956, 1, 0, 0, 0, 9958, 9957, 1, 0, 0, 0, 9959, 9990, 1, 0, 0, 0, 9960, 9961, 5, 28, 0, 0, 9961, 9990, 3, 1384, 692, 0, 9962, 9963, 5, 470, 0, 0, 9963, 9964, 5, 2, 0, 0, 9964, 9965, 3, 1330, 665, 0, 9965, 9966, 5, 3, 0, 0, 9966, 9990, 1, 0, 0, 0, 9967, 9968, 5, 98, 0, 0, 9968, 9990, 3, 1004, 502, 0, 9969, 9990, 3, 1376, 688, 0, 9970, 9990, 3, 1450, 725, 0, 9971, 9990, 3, 1258, 629, 0, 9972, 9973, 5, 2, 0, 0, 9973, 9974, 3, 1214, 607, 0, 9974, 9975, 5, 3, 0, 0, 9975, 9976, 3, 1384, 692, 0, 9976, 9990, 1, 0, 0, 0, 9977, 9990, 3, 1366, 683, 0, 9978, 9990, 3, 1262, 631, 0, 9979, 9981, 3, 1004, 502, 0, 9980, 9982, 3, 1382, 691, 0, 9981, 9980, 1, 0, 0, 0, 9981, 9982, 1, 0, 0, 0, 9982, 9990, 1, 0, 0, 0, 9983, 9990, 3, 1314, 657, 0, 9984, 9990, 3, 1316, 658, 0, 9985, 9986, 3, 1312, 656, 0, 9986, 9987, 5, 125, 0, 0, 9987, 9988, 3, 1312, 656, 0, 9988, 9990, 1, 0, 0, 0, 9989, 9953, 1, 0, 0, 0, 9989, 9955, 1, 0, 0, 0, 9989, 9960, 1, 0, 0, 0, 9989, 9962, 1, 0, 0, 0, 9989, 9967, 1, 0, 0, 0, 9989, 9969, 1, 0, 0, 0, 9989, 9970, 1, 0, 0, 0, 9989, 9971, 1, 0, 0, 0, 9989, 9972, 1, 0, 0, 0, 9989, 9977, 1, 0, 0, 0, 9989, 9978, 1, 0, 0, 0, 9989, 9979, 1, 0, 0, 0, 9989, 9983, 1, 0, 0, 0, 9989, 9984, 1, 0, 0, 0, 9989, 9985, 1, 0, 0, 0, 9990, 1257, 1, 0, 0, 0, 9991, 9992, 5, 574, 0, 0, 9992, 1259, 1, 0, 0, 0, 9993, 10019, 3, 1446, 723, 0, 9994, 10016, 5, 2, 0, 0, 9995, 9999, 3, 1340, 670, 0, 9996, 9997, 5, 6, 0, 0, 9997, 9998, 5, 101, 0, 0, 9998, 10000, 3, 1342, 671, 0, 9999, 9996, 1, 0, 0, 0, 9999, 10000, 1, 0, 0, 0, 10000, 10002, 1, 0, 0, 0, 10001, 10003, 3, 1044, 522, 0, 10002, 10001, 1, 0, 0, 0, 10002, 10003, 1, 0, 0, 0, 10003, 10017, 1, 0, 0, 0, 10004, 10005, 5, 101, 0, 0, 10005, 10007, 3, 1342, 671, 0, 10006, 10008, 3, 1044, 522, 0, 10007, 10006, 1, 0, 0, 0, 10007, 10008, 1, 0, 0, 0, 10008, 10017, 1, 0, 0, 0, 10009, 10010, 7, 51, 0, 0, 10010, 10012, 3, 1340, 670, 0, 10011, 10013, 3, 1044, 522, 0, 10012, 10011, 1, 0, 0, 0, 10012, 10013, 1, 0, 0, 0, 10013, 10017, 1, 0, 0, 0, 10014, 10017, 5, 9, 0, 0, 10015, 10017, 1, 0, 0, 0, 10016, 9995, 1, 0, 0, 0, 10016, 10004, 1, 0, 0, 0, 10016, 10009, 1, 0, 0, 0, 10016, 10014, 1, 0, 0, 0, 10016, 10015, 1, 0, 0, 0, 10017, 10018, 1, 0, 0, 0, 10018, 10020, 5, 3, 0, 0, 10019, 9994, 1, 0, 0, 0, 10019, 10020, 1, 0, 0, 0, 10020, 1261, 1, 0, 0, 0, 10021, 10023, 3, 1260, 630, 0, 10022, 10024, 3, 1286, 643, 0, 10023, 10022, 1, 0, 0, 0, 10023, 10024, 1, 0, 0, 0, 10024, 10026, 1, 0, 0, 0, 10025, 10027, 3, 1288, 644, 0, 10026, 10025, 1, 0, 0, 0, 10026, 10027, 1, 0, 0, 0, 10027, 10029, 1, 0, 0, 0, 10028, 10030, 3, 1296, 648, 0, 10029, 10028, 1, 0, 0, 0, 10029, 10030, 1, 0, 0, 0, 10030, 10033, 1, 0, 0, 0, 10031, 10033, 3, 1266, 633, 0, 10032, 10021, 1, 0, 0, 0, 10032, 10031, 1, 0, 0, 0, 10033, 1263, 1, 0, 0, 0, 10034, 10037, 3, 1260, 630, 0, 10035, 10037, 3, 1266, 633, 0, 10036, 10034, 1, 0, 0, 0, 10036, 10035, 1, 0, 0, 0, 10037, 1265, 1, 0, 0, 0, 10038, 10039, 5, 108, 0, 0, 10039, 10040, 5, 62, 0, 0, 10040, 10041, 5, 2, 0, 0, 10041, 10042, 3, 1214, 607, 0, 10042, 10043, 5, 3, 0, 0, 10043, 10223, 1, 0, 0, 0, 10044, 10223, 5, 48, 0, 0, 10045, 10050, 5, 50, 0, 0, 10046, 10047, 5, 2, 0, 0, 10047, 10048, 3, 1458, 729, 0, 10048, 10049, 5, 3, 0, 0, 10049, 10051, 1, 0, 0, 0, 10050, 10046, 1, 0, 0, 0, 10050, 10051, 1, 0, 0, 0, 10051, 10223, 1, 0, 0, 0, 10052, 10057, 5, 51, 0, 0, 10053, 10054, 5, 2, 0, 0, 10054, 10055, 3, 1458, 729, 0, 10055, 10056, 5, 3, 0, 0, 10056, 10058, 1, 0, 0, 0, 10057, 10053, 1, 0, 0, 0, 10057, 10058, 1, 0, 0, 0, 10058, 10223, 1, 0, 0, 0, 10059, 10064, 5, 75, 0, 0, 10060, 10061, 5, 2, 0, 0, 10061, 10062, 3, 1458, 729, 0, 10062, 10063, 5, 3, 0, 0, 10063, 10065, 1, 0, 0, 0, 10064, 10060, 1, 0, 0, 0, 10064, 10065, 1, 0, 0, 0, 10065, 10223, 1, 0, 0, 0, 10066, 10071, 5, 76, 0, 0, 10067, 10068, 5, 2, 0, 0, 10068, 10069, 3, 1458, 729, 0, 10069, 10070, 5, 3, 0, 0, 10070, 10072, 1, 0, 0, 0, 10071, 10067, 1, 0, 0, 0, 10071, 10072, 1, 0, 0, 0, 10072, 10223, 1, 0, 0, 0, 10073, 10223, 5, 49, 0, 0, 10074, 10223, 5, 52, 0, 0, 10075, 10223, 5, 89, 0, 0, 10076, 10223, 5, 99, 0, 0, 10077, 10223, 5, 47, 0, 0, 10078, 10223, 5, 111, 0, 0, 10079, 10080, 5, 41, 0, 0, 10080, 10081, 5, 2, 0, 0, 10081, 10082, 3, 1214, 607, 0, 10082, 10083, 5, 36, 0, 0, 10083, 10084, 3, 1170, 585, 0, 10084, 10085, 5, 3, 0, 0, 10085, 10223, 1, 0, 0, 0, 10086, 10087, 5, 397, 0, 0, 10087, 10089, 5, 2, 0, 0, 10088, 10090, 3, 1350, 675, 0, 10089, 10088, 1, 0, 0, 0, 10089, 10090, 1, 0, 0, 0, 10090, 10091, 1, 0, 0, 0, 10091, 10223, 5, 3, 0, 0, 10092, 10093, 5, 489, 0, 0, 10093, 10094, 5, 2, 0, 0, 10094, 10097, 3, 1214, 607, 0, 10095, 10096, 5, 6, 0, 0, 10096, 10098, 3, 1354, 677, 0, 10097, 10095, 1, 0, 0, 0, 10097, 10098, 1, 0, 0, 0, 10098, 10099, 1, 0, 0, 0, 10099, 10100, 5, 3, 0, 0, 10100, 10223, 1, 0, 0, 0, 10101, 10102, 5, 410, 0, 0, 10102, 10103, 5, 2, 0, 0, 10103, 10104, 3, 1356, 678, 0, 10104, 10105, 5, 3, 0, 0, 10105, 10223, 1, 0, 0, 0, 10106, 10107, 5, 411, 0, 0, 10107, 10109, 5, 2, 0, 0, 10108, 10110, 3, 1358, 679, 0, 10109, 10108, 1, 0, 0, 0, 10109, 10110, 1, 0, 0, 0, 10110, 10111, 1, 0, 0, 0, 10111, 10223, 5, 3, 0, 0, 10112, 10113, 5, 417, 0, 0, 10113, 10115, 5, 2, 0, 0, 10114, 10116, 3, 1360, 680, 0, 10115, 10114, 1, 0, 0, 0, 10115, 10116, 1, 0, 0, 0, 10116, 10117, 1, 0, 0, 0, 10117, 10223, 5, 3, 0, 0, 10118, 10119, 5, 420, 0, 0, 10119, 10120, 5, 2, 0, 0, 10120, 10121, 3, 1214, 607, 0, 10121, 10122, 5, 36, 0, 0, 10122, 10123, 3, 1170, 585, 0, 10123, 10124, 5, 3, 0, 0, 10124, 10223, 1, 0, 0, 0, 10125, 10126, 5, 421, 0, 0, 10126, 10128, 5, 2, 0, 0, 10127, 10129, 7, 64, 0, 0, 10128, 10127, 1, 0, 0, 0, 10128, 10129, 1, 0, 0, 0, 10129, 10130, 1, 0, 0, 0, 10130, 10131, 3, 1362, 681, 0, 10131, 10132, 5, 3, 0, 0, 10132, 10223, 1, 0, 0, 0, 10133, 10134, 5, 408, 0, 0, 10134, 10135, 5, 2, 0, 0, 10135, 10136, 3, 1214, 607, 0, 10136, 10137, 5, 6, 0, 0, 10137, 10138, 3, 1214, 607, 0, 10138, 10139, 5, 3, 0, 0, 10139, 10223, 1, 0, 0, 0, 10140, 10141, 5, 393, 0, 0, 10141, 10142, 5, 2, 0, 0, 10142, 10143, 3, 1330, 665, 0, 10143, 10144, 5, 3, 0, 0, 10144, 10223, 1, 0, 0, 0, 10145, 10146, 5, 399, 0, 0, 10146, 10147, 5, 2, 0, 0, 10147, 10148, 3, 1330, 665, 0, 10148, 10149, 5, 3, 0, 0, 10149, 10223, 1, 0, 0, 0, 10150, 10151, 5, 404, 0, 0, 10151, 10152, 5, 2, 0, 0, 10152, 10153, 3, 1330, 665, 0, 10153, 10154, 5, 3, 0, 0, 10154, 10223, 1, 0, 0, 0, 10155, 10156, 5, 425, 0, 0, 10156, 10157, 5, 2, 0, 0, 10157, 10158, 3, 1330, 665, 0, 10158, 10159, 5, 3, 0, 0, 10159, 10223, 1, 0, 0, 0, 10160, 10161, 5, 426, 0, 0, 10161, 10162, 5, 2, 0, 0, 10162, 10163, 5, 266, 0, 0, 10163, 10169, 3, 1492, 746, 0, 10164, 10167, 5, 6, 0, 0, 10165, 10168, 3, 1272, 636, 0, 10166, 10168, 3, 1330, 665, 0, 10167, 10165, 1, 0, 0, 0, 10167, 10166, 1, 0, 0, 0, 10168, 10170, 1, 0, 0, 0, 10169, 10164, 1, 0, 0, 0, 10169, 10170, 1, 0, 0, 0, 10170, 10171, 1, 0, 0, 0, 10171, 10172, 5, 3, 0, 0, 10172, 10223, 1, 0, 0, 0, 10173, 10174, 5, 427, 0, 0, 10174, 10175, 5, 2, 0, 0, 10175, 10176, 3, 1256, 628, 0, 10176, 10177, 3, 1282, 641, 0, 10177, 10178, 5, 3, 0, 0, 10178, 10223, 1, 0, 0, 0, 10179, 10180, 5, 428, 0, 0, 10180, 10181, 5, 2, 0, 0, 10181, 10182, 3, 1274, 637, 0, 10182, 10183, 5, 3, 0, 0, 10183, 10223, 1, 0, 0, 0, 10184, 10185, 5, 429, 0, 0, 10185, 10186, 5, 2, 0, 0, 10186, 10187, 3, 1278, 639, 0, 10187, 10189, 3, 1214, 607, 0, 10188, 10190, 3, 1280, 640, 0, 10189, 10188, 1, 0, 0, 0, 10189, 10190, 1, 0, 0, 0, 10190, 10191, 1, 0, 0, 0, 10191, 10192, 5, 3, 0, 0, 10192, 10223, 1, 0, 0, 0, 10193, 10194, 5, 430, 0, 0, 10194, 10195, 5, 2, 0, 0, 10195, 10196, 5, 266, 0, 0, 10196, 10199, 3, 1492, 746, 0, 10197, 10198, 5, 6, 0, 0, 10198, 10200, 3, 1214, 607, 0, 10199, 10197, 1, 0, 0, 0, 10199, 10200, 1, 0, 0, 0, 10200, 10201, 1, 0, 0, 0, 10201, 10202, 5, 3, 0, 0, 10202, 10223, 1, 0, 0, 0, 10203, 10204, 5, 431, 0, 0, 10204, 10205, 5, 2, 0, 0, 10205, 10206, 5, 383, 0, 0, 10206, 10207, 3, 1214, 607, 0, 10207, 10208, 5, 6, 0, 0, 10208, 10210, 3, 1268, 634, 0, 10209, 10211, 3, 1270, 635, 0, 10210, 10209, 1, 0, 0, 0, 10210, 10211, 1, 0, 0, 0, 10211, 10212, 1, 0, 0, 0, 10212, 10213, 5, 3, 0, 0, 10213, 10223, 1, 0, 0, 0, 10214, 10215, 5, 432, 0, 0, 10215, 10216, 5, 2, 0, 0, 10216, 10217, 3, 1278, 639, 0, 10217, 10218, 3, 1214, 607, 0, 10218, 10219, 5, 36, 0, 0, 10219, 10220, 3, 1174, 587, 0, 10220, 10221, 5, 3, 0, 0, 10221, 10223, 1, 0, 0, 0, 10222, 10038, 1, 0, 0, 0, 10222, 10044, 1, 0, 0, 0, 10222, 10045, 1, 0, 0, 0, 10222, 10052, 1, 0, 0, 0, 10222, 10059, 1, 0, 0, 0, 10222, 10066, 1, 0, 0, 0, 10222, 10073, 1, 0, 0, 0, 10222, 10074, 1, 0, 0, 0, 10222, 10075, 1, 0, 0, 0, 10222, 10076, 1, 0, 0, 0, 10222, 10077, 1, 0, 0, 0, 10222, 10078, 1, 0, 0, 0, 10222, 10079, 1, 0, 0, 0, 10222, 10086, 1, 0, 0, 0, 10222, 10092, 1, 0, 0, 0, 10222, 10101, 1, 0, 0, 0, 10222, 10106, 1, 0, 0, 0, 10222, 10112, 1, 0, 0, 0, 10222, 10118, 1, 0, 0, 0, 10222, 10125, 1, 0, 0, 0, 10222, 10133, 1, 0, 0, 0, 10222, 10140, 1, 0, 0, 0, 10222, 10145, 1, 0, 0, 0, 10222, 10150, 1, 0, 0, 0, 10222, 10155, 1, 0, 0, 0, 10222, 10160, 1, 0, 0, 0, 10222, 10173, 1, 0, 0, 0, 10222, 10179, 1, 0, 0, 0, 10222, 10184, 1, 0, 0, 0, 10222, 10193, 1, 0, 0, 0, 10222, 10203, 1, 0, 0, 0, 10222, 10214, 1, 0, 0, 0, 10223, 1267, 1, 0, 0, 0, 10224, 10225, 5, 375, 0, 0, 10225, 10230, 3, 1214, 607, 0, 10226, 10227, 5, 375, 0, 0, 10227, 10228, 5, 269, 0, 0, 10228, 10230, 5, 450, 0, 0, 10229, 10224, 1, 0, 0, 0, 10229, 10226, 1, 0, 0, 0, 10230, 1269, 1, 0, 0, 0, 10231, 10232, 5, 6, 0, 0, 10232, 10233, 5, 339, 0, 0, 10233, 10242, 5, 385, 0, 0, 10234, 10235, 5, 6, 0, 0, 10235, 10236, 5, 339, 0, 0, 10236, 10242, 5, 269, 0, 0, 10237, 10238, 5, 6, 0, 0, 10238, 10239, 5, 339, 0, 0, 10239, 10240, 5, 269, 0, 0, 10240, 10242, 5, 450, 0, 0, 10241, 10231, 1, 0, 0, 0, 10241, 10234, 1, 0, 0, 0, 10241, 10237, 1, 0, 0, 0, 10242, 1271, 1, 0, 0, 0, 10243, 10244, 5, 424, 0, 0, 10244, 10245, 5, 2, 0, 0, 10245, 10246, 3, 1274, 637, 0, 10246, 10247, 5, 3, 0, 0, 10247, 1273, 1, 0, 0, 0, 10248, 10253, 3, 1276, 638, 0, 10249, 10250, 5, 6, 0, 0, 10250, 10252, 3, 1276, 638, 0, 10251, 10249, 1, 0, 0, 0, 10252, 10255, 1, 0, 0, 0, 10253, 10251, 1, 0, 0, 0, 10253, 10254, 1, 0, 0, 0, 10254, 1275, 1, 0, 0, 0, 10255, 10253, 1, 0, 0, 0, 10256, 10259, 3, 1214, 607, 0, 10257, 10258, 5, 36, 0, 0, 10258, 10260, 3, 1492, 746, 0, 10259, 10257, 1, 0, 0, 0, 10259, 10260, 1, 0, 0, 0, 10260, 1277, 1, 0, 0, 0, 10261, 10262, 7, 65, 0, 0, 10262, 1279, 1, 0, 0, 0, 10263, 10264, 5, 292, 0, 0, 10264, 10268, 5, 378, 0, 0, 10265, 10266, 5, 347, 0, 0, 10266, 10268, 5, 378, 0, 0, 10267, 10263, 1, 0, 0, 0, 10267, 10265, 1, 0, 0, 0, 10268, 1281, 1, 0, 0, 0, 10269, 10270, 5, 286, 0, 0, 10270, 10285, 3, 1256, 628, 0, 10271, 10272, 5, 286, 0, 0, 10272, 10273, 3, 1256, 628, 0, 10273, 10274, 3, 1284, 642, 0, 10274, 10285, 1, 0, 0, 0, 10275, 10276, 5, 286, 0, 0, 10276, 10277, 3, 1284, 642, 0, 10277, 10278, 3, 1256, 628, 0, 10278, 10285, 1, 0, 0, 0, 10279, 10280, 5, 286, 0, 0, 10280, 10281, 3, 1284, 642, 0, 10281, 10282, 3, 1256, 628, 0, 10282, 10283, 3, 1284, 642, 0, 10283, 10285, 1, 0, 0, 0, 10284, 10269, 1, 0, 0, 0, 10284, 10271, 1, 0, 0, 0, 10284, 10275, 1, 0, 0, 0, 10284, 10279, 1, 0, 0, 0, 10285, 1283, 1, 0, 0, 0, 10286, 10287, 5, 147, 0, 0, 10287, 10288, 7, 66, 0, 0, 10288, 1285, 1, 0, 0, 0, 10289, 10290, 5, 479, 0, 0, 10290, 10291, 5, 66, 0, 0, 10291, 10292, 5, 2, 0, 0, 10292, 10293, 3, 1046, 523, 0, 10293, 10294, 5, 3, 0, 0, 10294, 1287, 1, 0, 0, 0, 10295, 10296, 5, 480, 0, 0, 10296, 10297, 5, 2, 0, 0, 10297, 10298, 5, 103, 0, 0, 10298, 10299, 3, 1214, 607, 0, 10299, 10300, 5, 3, 0, 0, 10300, 1289, 1, 0, 0, 0, 10301, 10302, 5, 104, 0, 0, 10302, 10303, 3, 1292, 646, 0, 10303, 1291, 1, 0, 0, 0, 10304, 10309, 3, 1294, 647, 0, 10305, 10306, 5, 6, 0, 0, 10306, 10308, 3, 1294, 647, 0, 10307, 10305, 1, 0, 0, 0, 10308, 10311, 1, 0, 0, 0, 10309, 10307, 1, 0, 0, 0, 10309, 10310, 1, 0, 0, 0, 10310, 1293, 1, 0, 0, 0, 10311, 10309, 1, 0, 0, 0, 10312, 10313, 3, 1476, 738, 0, 10313, 10314, 5, 36, 0, 0, 10314, 10315, 3, 1298, 649, 0, 10315, 1295, 1, 0, 0, 0, 10316, 10319, 5, 124, 0, 0, 10317, 10320, 3, 1298, 649, 0, 10318, 10320, 3, 1476, 738, 0, 10319, 10317, 1, 0, 0, 0, 10319, 10318, 1, 0, 0, 0, 10320, 1297, 1, 0, 0, 0, 10321, 10323, 5, 2, 0, 0, 10322, 10324, 3, 1300, 650, 0, 10323, 10322, 1, 0, 0, 0, 10323, 10324, 1, 0, 0, 0, 10324, 10326, 1, 0, 0, 0, 10325, 10327, 3, 1302, 651, 0, 10326, 10325, 1, 0, 0, 0, 10326, 10327, 1, 0, 0, 0, 10327, 10329, 1, 0, 0, 0, 10328, 10330, 3, 1044, 522, 0, 10329, 10328, 1, 0, 0, 0, 10329, 10330, 1, 0, 0, 0, 10330, 10332, 1, 0, 0, 0, 10331, 10333, 3, 1304, 652, 0, 10332, 10331, 1, 0, 0, 0, 10332, 10333, 1, 0, 0, 0, 10333, 10334, 1, 0, 0, 0, 10334, 10335, 5, 3, 0, 0, 10335, 1299, 1, 0, 0, 0, 10336, 10337, 3, 1476, 738, 0, 10337, 1301, 1, 0, 0, 0, 10338, 10339, 5, 285, 0, 0, 10339, 10340, 5, 147, 0, 0, 10340, 10341, 3, 1330, 665, 0, 10341, 1303, 1, 0, 0, 0, 10342, 10343, 5, 299, 0, 0, 10343, 10345, 3, 1306, 653, 0, 10344, 10346, 3, 1310, 655, 0, 10345, 10344, 1, 0, 0, 0, 10345, 10346, 1, 0, 0, 0, 10346, 10358, 1, 0, 0, 0, 10347, 10348, 5, 320, 0, 0, 10348, 10350, 3, 1306, 653, 0, 10349, 10351, 3, 1310, 655, 0, 10350, 10349, 1, 0, 0, 0, 10350, 10351, 1, 0, 0, 0, 10351, 10358, 1, 0, 0, 0, 10352, 10353, 5, 481, 0, 0, 10353, 10355, 3, 1306, 653, 0, 10354, 10356, 3, 1310, 655, 0, 10355, 10354, 1, 0, 0, 0, 10355, 10356, 1, 0, 0, 0, 10356, 10358, 1, 0, 0, 0, 10357, 10342, 1, 0, 0, 0, 10357, 10347, 1, 0, 0, 0, 10357, 10352, 1, 0, 0, 0, 10358, 1305, 1, 0, 0, 0, 10359, 10366, 3, 1308, 654, 0, 10360, 10361, 5, 387, 0, 0, 10361, 10362, 3, 1308, 654, 0, 10362, 10363, 5, 33, 0, 0, 10363, 10364, 3, 1308, 654, 0, 10364, 10366, 1, 0, 0, 0, 10365, 10359, 1, 0, 0, 0, 10365, 10360, 1, 0, 0, 0, 10366, 1307, 1, 0, 0, 0, 10367, 10368, 5, 362, 0, 0, 10368, 10375, 7, 67, 0, 0, 10369, 10370, 5, 434, 0, 0, 10370, 10375, 5, 414, 0, 0, 10371, 10372, 3, 1214, 607, 0, 10372, 10373, 7, 67, 0, 0, 10373, 10375, 1, 0, 0, 0, 10374, 10367, 1, 0, 0, 0, 10374, 10369, 1, 0, 0, 0, 10374, 10371, 1, 0, 0, 0, 10375, 1309, 1, 0, 0, 0, 10376, 10383, 5, 199, 0, 0, 10377, 10378, 5, 434, 0, 0, 10378, 10384, 5, 414, 0, 0, 10379, 10384, 5, 66, 0, 0, 10380, 10384, 5, 467, 0, 0, 10381, 10382, 5, 269, 0, 0, 10382, 10384, 5, 482, 0, 0, 10383, 10377, 1, 0, 0, 0, 10383, 10379, 1, 0, 0, 0, 10383, 10380, 1, 0, 0, 0, 10383, 10381, 1, 0, 0, 0, 10384, 1311, 1, 0, 0, 0, 10385, 10386, 5, 414, 0, 0, 10386, 10388, 5, 2, 0, 0, 10387, 10389, 3, 1330, 665, 0, 10388, 10387, 1, 0, 0, 0, 10388, 10389, 1, 0, 0, 0, 10389, 10390, 1, 0, 0, 0, 10390, 10398, 5, 3, 0, 0, 10391, 10392, 5, 2, 0, 0, 10392, 10393, 3, 1330, 665, 0, 10393, 10394, 5, 6, 0, 0, 10394, 10395, 3, 1214, 607, 0, 10395, 10396, 5, 3, 0, 0, 10396, 10398, 1, 0, 0, 0, 10397, 10385, 1, 0, 0, 0, 10397, 10391, 1, 0, 0, 0, 10398, 1313, 1, 0, 0, 0, 10399, 10400, 5, 414, 0, 0, 10400, 10402, 5, 2, 0, 0, 10401, 10403, 3, 1330, 665, 0, 10402, 10401, 1, 0, 0, 0, 10402, 10403, 1, 0, 0, 0, 10403, 10404, 1, 0, 0, 0, 10404, 10405, 5, 3, 0, 0, 10405, 1315, 1, 0, 0, 0, 10406, 10407, 5, 2, 0, 0, 10407, 10408, 3, 1330, 665, 0, 10408, 10409, 5, 6, 0, 0, 10409, 10410, 3, 1214, 607, 0, 10410, 10411, 5, 3, 0, 0, 10411, 1317, 1, 0, 0, 0, 10412, 10413, 7, 68, 0, 0, 10413, 1319, 1, 0, 0, 0, 10414, 10417, 5, 29, 0, 0, 10415, 10417, 3, 1322, 661, 0, 10416, 10414, 1, 0, 0, 0, 10416, 10415, 1, 0, 0, 0, 10417, 1321, 1, 0, 0, 0, 10418, 10419, 7, 69, 0, 0, 10419, 1323, 1, 0, 0, 0, 10420, 10427, 5, 29, 0, 0, 10421, 10422, 5, 278, 0, 0, 10422, 10423, 5, 2, 0, 0, 10423, 10424, 3, 732, 366, 0, 10424, 10425, 5, 3, 0, 0, 10425, 10427, 1, 0, 0, 0, 10426, 10420, 1, 0, 0, 0, 10426, 10421, 1, 0, 0, 0, 10427, 1325, 1, 0, 0, 0, 10428, 10435, 3, 1320, 660, 0, 10429, 10430, 5, 278, 0, 0, 10430, 10431, 5, 2, 0, 0, 10431, 10432, 3, 732, 366, 0, 10432, 10433, 5, 3, 0, 0, 10433, 10435, 1, 0, 0, 0, 10434, 10428, 1, 0, 0, 0, 10434, 10429, 1, 0, 0, 0, 10435, 1327, 1, 0, 0, 0, 10436, 10449, 3, 1320, 660, 0, 10437, 10438, 5, 278, 0, 0, 10438, 10439, 5, 2, 0, 0, 10439, 10440, 3, 732, 366, 0, 10440, 10441, 5, 3, 0, 0, 10441, 10449, 1, 0, 0, 0, 10442, 10449, 5, 120, 0, 0, 10443, 10444, 5, 77, 0, 0, 10444, 10449, 5, 120, 0, 0, 10445, 10449, 5, 114, 0, 0, 10446, 10447, 5, 77, 0, 0, 10447, 10449, 5, 114, 0, 0, 10448, 10436, 1, 0, 0, 0, 10448, 10437, 1, 0, 0, 0, 10448, 10442, 1, 0, 0, 0, 10448, 10443, 1, 0, 0, 0, 10448, 10445, 1, 0, 0, 0, 10448, 10446, 1, 0, 0, 0, 10449, 1329, 1, 0, 0, 0, 10450, 10455, 3, 1214, 607, 0, 10451, 10452, 5, 6, 0, 0, 10452, 10454, 3, 1214, 607, 0, 10453, 10451, 1, 0, 0, 0, 10454, 10457, 1, 0, 0, 0, 10455, 10453, 1, 0, 0, 0, 10455, 10456, 1, 0, 0, 0, 10456, 1331, 1, 0, 0, 0, 10457, 10455, 1, 0, 0, 0, 10458, 10463, 3, 1338, 669, 0, 10459, 10460, 5, 6, 0, 0, 10460, 10462, 3, 1338, 669, 0, 10461, 10459, 1, 0, 0, 0, 10462, 10465, 1, 0, 0, 0, 10463, 10461, 1, 0, 0, 0, 10463, 10464, 1, 0, 0, 0, 10464, 1333, 1, 0, 0, 0, 10465, 10463, 1, 0, 0, 0, 10466, 10471, 3, 1336, 668, 0, 10467, 10468, 5, 6, 0, 0, 10468, 10470, 3, 1336, 668, 0, 10469, 10467, 1, 0, 0, 0, 10470, 10473, 1, 0, 0, 0, 10471, 10469, 1, 0, 0, 0, 10471, 10472, 1, 0, 0, 0, 10472, 1335, 1, 0, 0, 0, 10473, 10471, 1, 0, 0, 0, 10474, 10480, 3, 1434, 717, 0, 10475, 10476, 5, 2, 0, 0, 10476, 10477, 3, 1214, 607, 0, 10477, 10478, 5, 3, 0, 0, 10478, 10480, 1, 0, 0, 0, 10479, 10474, 1, 0, 0, 0, 10479, 10475, 1, 0, 0, 0, 10480, 1337, 1, 0, 0, 0, 10481, 10484, 3, 1434, 717, 0, 10482, 10484, 3, 1214, 607, 0, 10483, 10481, 1, 0, 0, 0, 10483, 10482, 1, 0, 0, 0, 10484, 1339, 1, 0, 0, 0, 10485, 10490, 3, 1342, 671, 0, 10486, 10487, 5, 6, 0, 0, 10487, 10489, 3, 1342, 671, 0, 10488, 10486, 1, 0, 0, 0, 10489, 10492, 1, 0, 0, 0, 10490, 10488, 1, 0, 0, 0, 10490, 10491, 1, 0, 0, 0, 10491, 1341, 1, 0, 0, 0, 10492, 10490, 1, 0, 0, 0, 10493, 10499, 3, 1214, 607, 0, 10494, 10495, 3, 684, 342, 0, 10495, 10496, 7, 70, 0, 0, 10496, 10497, 3, 1214, 607, 0, 10497, 10499, 1, 0, 0, 0, 10498, 10493, 1, 0, 0, 0, 10498, 10494, 1, 0, 0, 0, 10499, 1343, 1, 0, 0, 0, 10500, 10505, 3, 1170, 585, 0, 10501, 10502, 5, 6, 0, 0, 10502, 10504, 3, 1170, 585, 0, 10503, 10501, 1, 0, 0, 0, 10504, 10507, 1, 0, 0, 0, 10505, 10503, 1, 0, 0, 0, 10505, 10506, 1, 0, 0, 0, 10506, 1345, 1, 0, 0, 0, 10507, 10505, 1, 0, 0, 0, 10508, 10511, 5, 4, 0, 0, 10509, 10512, 3, 1330, 665, 0, 10510, 10512, 3, 1348, 674, 0, 10511, 10509, 1, 0, 0, 0, 10511, 10510, 1, 0, 0, 0, 10511, 10512, 1, 0, 0, 0, 10512, 10513, 1, 0, 0, 0, 10513, 10514, 5, 5, 0, 0, 10514, 1347, 1, 0, 0, 0, 10515, 10520, 3, 1346, 673, 0, 10516, 10517, 5, 6, 0, 0, 10517, 10519, 3, 1346, 673, 0, 10518, 10516, 1, 0, 0, 0, 10519, 10522, 1, 0, 0, 0, 10520, 10518, 1, 0, 0, 0, 10520, 10521, 1, 0, 0, 0, 10521, 1349, 1, 0, 0, 0, 10522, 10520, 1, 0, 0, 0, 10523, 10524, 3, 1352, 676, 0, 10524, 10525, 5, 64, 0, 0, 10525, 10526, 3, 1214, 607, 0, 10526, 1351, 1, 0, 0, 0, 10527, 10536, 3, 1494, 747, 0, 10528, 10536, 5, 384, 0, 0, 10529, 10536, 5, 264, 0, 0, 10530, 10536, 5, 176, 0, 0, 10531, 10536, 5, 218, 0, 0, 10532, 10536, 5, 261, 0, 0, 10533, 10536, 5, 326, 0, 0, 10534, 10536, 3, 1460, 730, 0, 10535, 10527, 1, 0, 0, 0, 10535, 10528, 1, 0, 0, 0, 10535, 10529, 1, 0, 0, 0, 10535, 10530, 1, 0, 0, 0, 10535, 10531, 1, 0, 0, 0, 10535, 10532, 1, 0, 0, 0, 10535, 10533, 1, 0, 0, 0, 10535, 10534, 1, 0, 0, 0, 10536, 1353, 1, 0, 0, 0, 10537, 10538, 7, 71, 0, 0, 10538, 1355, 1, 0, 0, 0, 10539, 10540, 3, 1214, 607, 0, 10540, 10541, 5, 84, 0, 0, 10541, 10542, 3, 1214, 607, 0, 10542, 10543, 5, 64, 0, 0, 10543, 10546, 3, 1214, 607, 0, 10544, 10545, 5, 62, 0, 0, 10545, 10547, 3, 1214, 607, 0, 10546, 10544, 1, 0, 0, 0, 10546, 10547, 1, 0, 0, 0, 10547, 1357, 1, 0, 0, 0, 10548, 10549, 3, 1254, 627, 0, 10549, 10550, 5, 68, 0, 0, 10550, 10551, 3, 1254, 627, 0, 10551, 1359, 1, 0, 0, 0, 10552, 10553, 3, 1214, 607, 0, 10553, 10554, 5, 64, 0, 0, 10554, 10555, 3, 1214, 607, 0, 10555, 10556, 5, 62, 0, 0, 10556, 10557, 3, 1214, 607, 0, 10557, 10580, 1, 0, 0, 0, 10558, 10559, 3, 1214, 607, 0, 10559, 10560, 5, 62, 0, 0, 10560, 10561, 3, 1214, 607, 0, 10561, 10562, 5, 64, 0, 0, 10562, 10563, 3, 1214, 607, 0, 10563, 10580, 1, 0, 0, 0, 10564, 10565, 3, 1214, 607, 0, 10565, 10566, 5, 64, 0, 0, 10566, 10567, 3, 1214, 607, 0, 10567, 10580, 1, 0, 0, 0, 10568, 10569, 3, 1214, 607, 0, 10569, 10570, 5, 62, 0, 0, 10570, 10571, 3, 1214, 607, 0, 10571, 10580, 1, 0, 0, 0, 10572, 10573, 3, 1214, 607, 0, 10573, 10574, 5, 127, 0, 0, 10574, 10575, 3, 1214, 607, 0, 10575, 10576, 5, 197, 0, 0, 10576, 10577, 3, 1214, 607, 0, 10577, 10580, 1, 0, 0, 0, 10578, 10580, 3, 1330, 665, 0, 10579, 10552, 1, 0, 0, 0, 10579, 10558, 1, 0, 0, 0, 10579, 10564, 1, 0, 0, 0, 10579, 10568, 1, 0, 0, 0, 10579, 10572, 1, 0, 0, 0, 10579, 10578, 1, 0, 0, 0, 10580, 1361, 1, 0, 0, 0, 10581, 10582, 3, 1214, 607, 0, 10582, 10583, 5, 64, 0, 0, 10583, 10584, 3, 1330, 665, 0, 10584, 10589, 1, 0, 0, 0, 10585, 10586, 5, 64, 0, 0, 10586, 10589, 3, 1330, 665, 0, 10587, 10589, 3, 1330, 665, 0, 10588, 10581, 1, 0, 0, 0, 10588, 10585, 1, 0, 0, 0, 10588, 10587, 1, 0, 0, 0, 10589, 1363, 1, 0, 0, 0, 10590, 10596, 3, 1004, 502, 0, 10591, 10592, 5, 2, 0, 0, 10592, 10593, 3, 1330, 665, 0, 10593, 10594, 5, 3, 0, 0, 10594, 10596, 1, 0, 0, 0, 10595, 10590, 1, 0, 0, 0, 10595, 10591, 1, 0, 0, 0, 10596, 1365, 1, 0, 0, 0, 10597, 10599, 5, 40, 0, 0, 10598, 10600, 3, 1374, 687, 0, 10599, 10598, 1, 0, 0, 0, 10599, 10600, 1, 0, 0, 0, 10600, 10601, 1, 0, 0, 0, 10601, 10603, 3, 1368, 684, 0, 10602, 10604, 3, 1372, 686, 0, 10603, 10602, 1, 0, 0, 0, 10603, 10604, 1, 0, 0, 0, 10604, 10605, 1, 0, 0, 0, 10605, 10606, 5, 454, 0, 0, 10606, 1367, 1, 0, 0, 0, 10607, 10609, 3, 1370, 685, 0, 10608, 10607, 1, 0, 0, 0, 10609, 10610, 1, 0, 0, 0, 10610, 10608, 1, 0, 0, 0, 10610, 10611, 1, 0, 0, 0, 10611, 1369, 1, 0, 0, 0, 10612, 10613, 5, 102, 0, 0, 10613, 10614, 3, 1214, 607, 0, 10614, 10615, 5, 93, 0, 0, 10615, 10616, 3, 1214, 607, 0, 10616, 1371, 1, 0, 0, 0, 10617, 10618, 5, 58, 0, 0, 10618, 10619, 3, 1214, 607, 0, 10619, 1373, 1, 0, 0, 0, 10620, 10621, 3, 1214, 607, 0, 10621, 1375, 1, 0, 0, 0, 10622, 10624, 3, 1476, 738, 0, 10623, 10625, 3, 1382, 691, 0, 10624, 10623, 1, 0, 0, 0, 10624, 10625, 1, 0, 0, 0, 10625, 1377, 1, 0, 0, 0, 10626, 10629, 5, 11, 0, 0, 10627, 10630, 3, 1440, 720, 0, 10628, 10630, 5, 9, 0, 0, 10629, 10627, 1, 0, 0, 0, 10629, 10628, 1, 0, 0, 0, 10630, 10644, 1, 0, 0, 0, 10631, 10640, 5, 4, 0, 0, 10632, 10641, 3, 1214, 607, 0, 10633, 10635, 3, 1380, 690, 0, 10634, 10633, 1, 0, 0, 0, 10634, 10635, 1, 0, 0, 0, 10635, 10636, 1, 0, 0, 0, 10636, 10638, 5, 8, 0, 0, 10637, 10639, 3, 1380, 690, 0, 10638, 10637, 1, 0, 0, 0, 10638, 10639, 1, 0, 0, 0, 10639, 10641, 1, 0, 0, 0, 10640, 10632, 1, 0, 0, 0, 10640, 10634, 1, 0, 0, 0, 10641, 10642, 1, 0, 0, 0, 10642, 10644, 5, 5, 0, 0, 10643, 10626, 1, 0, 0, 0, 10643, 10631, 1, 0, 0, 0, 10644, 1379, 1, 0, 0, 0, 10645, 10646, 3, 1214, 607, 0, 10646, 1381, 1, 0, 0, 0, 10647, 10649, 3, 1378, 689, 0, 10648, 10647, 1, 0, 0, 0, 10649, 10650, 1, 0, 0, 0, 10650, 10648, 1, 0, 0, 0, 10650, 10651, 1, 0, 0, 0, 10651, 1383, 1, 0, 0, 0, 10652, 10654, 3, 1378, 689, 0, 10653, 10652, 1, 0, 0, 0, 10654, 10657, 1, 0, 0, 0, 10655, 10653, 1, 0, 0, 0, 10655, 10656, 1, 0, 0, 0, 10656, 1385, 1, 0, 0, 0, 10657, 10655, 1, 0, 0, 0, 10658, 10659, 3, 1388, 694, 0, 10659, 1387, 1, 0, 0, 0, 10660, 10665, 3, 1390, 695, 0, 10661, 10662, 5, 6, 0, 0, 10662, 10664, 3, 1390, 695, 0, 10663, 10661, 1, 0, 0, 0, 10664, 10667, 1, 0, 0, 0, 10665, 10663, 1, 0, 0, 0, 10665, 10666, 1, 0, 0, 0, 10666, 1389, 1, 0, 0, 0, 10667, 10665, 1, 0, 0, 0, 10668, 10673, 3, 1338, 669, 0, 10669, 10670, 5, 36, 0, 0, 10670, 10674, 3, 1492, 746, 0, 10671, 10674, 3, 1494, 747, 0, 10672, 10674, 1, 0, 0, 0, 10673, 10669, 1, 0, 0, 0, 10673, 10671, 1, 0, 0, 0, 10673, 10672, 1, 0, 0, 0, 10674, 10677, 1, 0, 0, 0, 10675, 10677, 5, 9, 0, 0, 10676, 10668, 1, 0, 0, 0, 10676, 10675, 1, 0, 0, 0, 10677, 1391, 1, 0, 0, 0, 10678, 10683, 3, 1414, 707, 0, 10679, 10680, 5, 6, 0, 0, 10680, 10682, 3, 1414, 707, 0, 10681, 10679, 1, 0, 0, 0, 10682, 10685, 1, 0, 0, 0, 10683, 10681, 1, 0, 0, 0, 10683, 10684, 1, 0, 0, 0, 10684, 1393, 1, 0, 0, 0, 10685, 10683, 1, 0, 0, 0, 10686, 10691, 3, 1408, 704, 0, 10687, 10688, 5, 6, 0, 0, 10688, 10690, 3, 1408, 704, 0, 10689, 10687, 1, 0, 0, 0, 10690, 10693, 1, 0, 0, 0, 10691, 10689, 1, 0, 0, 0, 10691, 10692, 1, 0, 0, 0, 10692, 1395, 1, 0, 0, 0, 10693, 10691, 1, 0, 0, 0, 10694, 10699, 3, 1424, 712, 0, 10695, 10696, 5, 6, 0, 0, 10696, 10698, 3, 1424, 712, 0, 10697, 10695, 1, 0, 0, 0, 10698, 10701, 1, 0, 0, 0, 10699, 10697, 1, 0, 0, 0, 10699, 10700, 1, 0, 0, 0, 10700, 1397, 1, 0, 0, 0, 10701, 10699, 1, 0, 0, 0, 10702, 10707, 3, 1422, 711, 0, 10703, 10704, 5, 6, 0, 0, 10704, 10706, 3, 1422, 711, 0, 10705, 10703, 1, 0, 0, 0, 10706, 10709, 1, 0, 0, 0, 10707, 10705, 1, 0, 0, 0, 10707, 10708, 1, 0, 0, 0, 10708, 1399, 1, 0, 0, 0, 10709, 10707, 1, 0, 0, 0, 10710, 10715, 3, 1430, 715, 0, 10711, 10712, 5, 6, 0, 0, 10712, 10714, 3, 1430, 715, 0, 10713, 10711, 1, 0, 0, 0, 10714, 10717, 1, 0, 0, 0, 10715, 10713, 1, 0, 0, 0, 10715, 10716, 1, 0, 0, 0, 10716, 1401, 1, 0, 0, 0, 10717, 10715, 1, 0, 0, 0, 10718, 10720, 3, 1476, 738, 0, 10719, 10721, 3, 1382, 691, 0, 10720, 10719, 1, 0, 0, 0, 10720, 10721, 1, 0, 0, 0, 10721, 1403, 1, 0, 0, 0, 10722, 10724, 3, 1476, 738, 0, 10723, 10725, 3, 1382, 691, 0, 10724, 10723, 1, 0, 0, 0, 10724, 10725, 1, 0, 0, 0, 10725, 1405, 1, 0, 0, 0, 10726, 10728, 3, 1476, 738, 0, 10727, 10729, 3, 1382, 691, 0, 10728, 10727, 1, 0, 0, 0, 10728, 10729, 1, 0, 0, 0, 10729, 1407, 1, 0, 0, 0, 10730, 10732, 3, 1476, 738, 0, 10731, 10733, 3, 1382, 691, 0, 10732, 10731, 1, 0, 0, 0, 10732, 10733, 1, 0, 0, 0, 10733, 1409, 1, 0, 0, 0, 10734, 10736, 3, 1476, 738, 0, 10735, 10737, 3, 1382, 691, 0, 10736, 10735, 1, 0, 0, 0, 10736, 10737, 1, 0, 0, 0, 10737, 1411, 1, 0, 0, 0, 10738, 10740, 3, 1476, 738, 0, 10739, 10741, 3, 560, 280, 0, 10740, 10739, 1, 0, 0, 0, 10740, 10741, 1, 0, 0, 0, 10741, 1413, 1, 0, 0, 0, 10742, 10744, 3, 1476, 738, 0, 10743, 10745, 3, 1382, 691, 0, 10744, 10743, 1, 0, 0, 0, 10744, 10745, 1, 0, 0, 0, 10745, 1415, 1, 0, 0, 0, 10746, 10751, 3, 1404, 702, 0, 10747, 10748, 5, 6, 0, 0, 10748, 10750, 3, 1404, 702, 0, 10749, 10747, 1, 0, 0, 0, 10750, 10753, 1, 0, 0, 0, 10751, 10749, 1, 0, 0, 0, 10751, 10752, 1, 0, 0, 0, 10752, 1417, 1, 0, 0, 0, 10753, 10751, 1, 0, 0, 0, 10754, 10759, 3, 1438, 719, 0, 10755, 10756, 5, 6, 0, 0, 10756, 10758, 3, 1438, 719, 0, 10757, 10755, 1, 0, 0, 0, 10758, 10761, 1, 0, 0, 0, 10759, 10757, 1, 0, 0, 0, 10759, 10760, 1, 0, 0, 0, 10760, 1419, 1, 0, 0, 0, 10761, 10759, 1, 0, 0, 0, 10762, 10764, 3, 1476, 738, 0, 10763, 10765, 3, 560, 280, 0, 10764, 10763, 1, 0, 0, 0, 10764, 10765, 1, 0, 0, 0, 10765, 1421, 1, 0, 0, 0, 10766, 10768, 3, 1476, 738, 0, 10767, 10769, 3, 560, 280, 0, 10768, 10767, 1, 0, 0, 0, 10768, 10769, 1, 0, 0, 0, 10769, 1423, 1, 0, 0, 0, 10770, 10772, 3, 1476, 738, 0, 10771, 10773, 3, 560, 280, 0, 10772, 10771, 1, 0, 0, 0, 10772, 10773, 1, 0, 0, 0, 10773, 1425, 1, 0, 0, 0, 10774, 10775, 3, 1476, 738, 0, 10775, 1427, 1, 0, 0, 0, 10776, 10777, 3, 1476, 738, 0, 10777, 1429, 1, 0, 0, 0, 10778, 10783, 3, 1484, 742, 0, 10779, 10780, 3, 1476, 738, 0, 10780, 10781, 3, 1382, 691, 0, 10781, 10783, 1, 0, 0, 0, 10782, 10778, 1, 0, 0, 0, 10782, 10779, 1, 0, 0, 0, 10783, 1431, 1, 0, 0, 0, 10784, 10789, 3, 1484, 742, 0, 10785, 10786, 3, 1476, 738, 0, 10786, 10787, 3, 1382, 691, 0, 10787, 10789, 1, 0, 0, 0, 10788, 10784, 1, 0, 0, 0, 10788, 10785, 1, 0, 0, 0, 10789, 1433, 1, 0, 0, 0, 10790, 10791, 3, 1476, 738, 0, 10791, 1435, 1, 0, 0, 0, 10792, 10793, 3, 1476, 738, 0, 10793, 1437, 1, 0, 0, 0, 10794, 10795, 3, 1476, 738, 0, 10795, 1439, 1, 0, 0, 0, 10796, 10797, 3, 1492, 746, 0, 10797, 1441, 1, 0, 0, 0, 10798, 10799, 3, 1460, 730, 0, 10799, 1443, 1, 0, 0, 0, 10800, 10805, 3, 1484, 742, 0, 10801, 10802, 3, 1476, 738, 0, 10802, 10803, 3, 1382, 691, 0, 10803, 10805, 1, 0, 0, 0, 10804, 10800, 1, 0, 0, 0, 10804, 10801, 1, 0, 0, 0, 10805, 1445, 1, 0, 0, 0, 10806, 10811, 3, 1484, 742, 0, 10807, 10808, 3, 1476, 738, 0, 10808, 10809, 3, 1382, 691, 0, 10809, 10811, 1, 0, 0, 0, 10810, 10806, 1, 0, 0, 0, 10810, 10807, 1, 0, 0, 0, 10811, 1447, 1, 0, 0, 0, 10812, 10817, 3, 1486, 743, 0, 10813, 10814, 3, 1476, 738, 0, 10814, 10815, 3, 1382, 691, 0, 10815, 10817, 1, 0, 0, 0, 10816, 10812, 1, 0, 0, 0, 10816, 10813, 1, 0, 0, 0, 10817, 1449, 1, 0, 0, 0, 10818, 10854, 3, 1458, 729, 0, 10819, 10854, 3, 1456, 728, 0, 10820, 10854, 3, 1460, 730, 0, 10821, 10854, 3, 1454, 727, 0, 10822, 10854, 3, 1452, 726, 0, 10823, 10833, 3, 1446, 723, 0, 10824, 10834, 3, 1460, 730, 0, 10825, 10826, 5, 2, 0, 0, 10826, 10828, 3, 1340, 670, 0, 10827, 10829, 3, 1044, 522, 0, 10828, 10827, 1, 0, 0, 0, 10828, 10829, 1, 0, 0, 0, 10829, 10830, 1, 0, 0, 0, 10830, 10831, 5, 3, 0, 0, 10831, 10832, 3, 1460, 730, 0, 10832, 10834, 1, 0, 0, 0, 10833, 10824, 1, 0, 0, 0, 10833, 10825, 1, 0, 0, 0, 10834, 10854, 1, 0, 0, 0, 10835, 10836, 3, 1176, 588, 0, 10836, 10837, 3, 1460, 730, 0, 10837, 10854, 1, 0, 0, 0, 10838, 10848, 3, 1204, 602, 0, 10839, 10841, 3, 1460, 730, 0, 10840, 10842, 3, 1208, 604, 0, 10841, 10840, 1, 0, 0, 0, 10841, 10842, 1, 0, 0, 0, 10842, 10849, 1, 0, 0, 0, 10843, 10844, 5, 2, 0, 0, 10844, 10845, 3, 1458, 729, 0, 10845, 10846, 5, 3, 0, 0, 10846, 10847, 3, 1460, 730, 0, 10847, 10849, 1, 0, 0, 0, 10848, 10839, 1, 0, 0, 0, 10848, 10843, 1, 0, 0, 0, 10849, 10854, 1, 0, 0, 0, 10850, 10854, 5, 96, 0, 0, 10851, 10854, 5, 60, 0, 0, 10852, 10854, 5, 78, 0, 0, 10853, 10818, 1, 0, 0, 0, 10853, 10819, 1, 0, 0, 0, 10853, 10820, 1, 0, 0, 0, 10853, 10821, 1, 0, 0, 0, 10853, 10822, 1, 0, 0, 0, 10853, 10823, 1, 0, 0, 0, 10853, 10835, 1, 0, 0, 0, 10853, 10838, 1, 0, 0, 0, 10853, 10850, 1, 0, 0, 0, 10853, 10851, 1, 0, 0, 0, 10853, 10852, 1, 0, 0, 0, 10854, 1451, 1, 0, 0, 0, 10855, 10856, 5, 567, 0, 0, 10856, 1453, 1, 0, 0, 0, 10857, 10858, 5, 563, 0, 0, 10858, 1455, 1, 0, 0, 0, 10859, 10860, 5, 573, 0, 0, 10860, 1457, 1, 0, 0, 0, 10861, 10862, 5, 571, 0, 0, 10862, 1459, 1, 0, 0, 0, 10863, 10865, 3, 1462, 731, 0, 10864, 10866, 3, 1464, 732, 0, 10865, 10864, 1, 0, 0, 0, 10865, 10866, 1, 0, 0, 0, 10866, 1461, 1, 0, 0, 0, 10867, 10879, 5, 558, 0, 0, 10868, 10879, 5, 560, 0, 0, 10869, 10873, 5, 562, 0, 0, 10870, 10872, 5, 588, 0, 0, 10871, 10870, 1, 0, 0, 0, 10872, 10875, 1, 0, 0, 0, 10873, 10871, 1, 0, 0, 0, 10873, 10874, 1, 0, 0, 0, 10874, 10876, 1, 0, 0, 0, 10875, 10873, 1, 0, 0, 0, 10876, 10879, 5, 589, 0, 0, 10877, 10879, 5, 584, 0, 0, 10878, 10867, 1, 0, 0, 0, 10878, 10868, 1, 0, 0, 0, 10878, 10869, 1, 0, 0, 0, 10878, 10877, 1, 0, 0, 0, 10879, 1463, 1, 0, 0, 0, 10880, 10881, 5, 487, 0, 0, 10881, 10882, 3, 1462, 731, 0, 10882, 1465, 1, 0, 0, 0, 10883, 10889, 3, 1458, 729, 0, 10884, 10885, 5, 12, 0, 0, 10885, 10889, 3, 1458, 729, 0, 10886, 10887, 5, 13, 0, 0, 10887, 10889, 3, 1458, 729, 0, 10888, 10883, 1, 0, 0, 0, 10888, 10884, 1, 0, 0, 0, 10888, 10886, 1, 0, 0, 0, 10889, 1467, 1, 0, 0, 0, 10890, 10891, 3, 1472, 736, 0, 10891, 1469, 1, 0, 0, 0, 10892, 10893, 3, 1472, 736, 0, 10893, 1471, 1, 0, 0, 0, 10894, 10900, 3, 1490, 745, 0, 10895, 10900, 5, 52, 0, 0, 10896, 10900, 5, 49, 0, 0, 10897, 10900, 5, 89, 0, 0, 10898, 10900, 5, 524, 0, 0, 10899, 10894, 1, 0, 0, 0, 10899, 10895, 1, 0, 0, 0, 10899, 10896, 1, 0, 0, 0, 10899, 10897, 1, 0, 0, 0, 10899, 10898, 1, 0, 0, 0, 10900, 1473, 1, 0, 0, 0, 10901, 10906, 3, 1472, 736, 0, 10902, 10903, 5, 6, 0, 0, 10903, 10905, 3, 1472, 736, 0, 10904, 10902, 1, 0, 0, 0, 10905, 10908, 1, 0, 0, 0, 10906, 10904, 1, 0, 0, 0, 10906, 10907, 1, 0, 0, 0, 10907, 1475, 1, 0, 0, 0, 10908, 10906, 1, 0, 0, 0, 10909, 10914, 3, 1494, 747, 0, 10910, 10914, 3, 1498, 749, 0, 10911, 10914, 3, 1500, 750, 0, 10912, 10914, 3, 1736, 868, 0, 10913, 10909, 1, 0, 0, 0, 10913, 10910, 1, 0, 0, 0, 10913, 10911, 1, 0, 0, 0, 10913, 10912, 1, 0, 0, 0, 10914, 1477, 1, 0, 0, 0, 10915, 10916, 3, 1494, 747, 0, 10916, 1479, 1, 0, 0, 0, 10917, 10930, 3, 710, 355, 0, 10918, 10919, 5, 2, 0, 0, 10919, 10920, 3, 1214, 607, 0, 10920, 10921, 5, 3, 0, 0, 10921, 10922, 1, 0, 0, 0, 10922, 10924, 3, 1494, 747, 0, 10923, 10925, 3, 650, 325, 0, 10924, 10923, 1, 0, 0, 0, 10924, 10925, 1, 0, 0, 0, 10925, 10927, 1, 0, 0, 0, 10926, 10928, 3, 652, 326, 0, 10927, 10926, 1, 0, 0, 0, 10927, 10928, 1, 0, 0, 0, 10928, 10930, 1, 0, 0, 0, 10929, 10917, 1, 0, 0, 0, 10929, 10918, 1, 0, 0, 0, 10930, 1481, 1, 0, 0, 0, 10931, 10932, 5, 105, 0, 0, 10932, 10934, 3, 132, 66, 0, 10933, 10931, 1, 0, 0, 0, 10933, 10934, 1, 0, 0, 0, 10934, 10936, 1, 0, 0, 0, 10935, 10937, 3, 284, 142, 0, 10936, 10935, 1, 0, 0, 0, 10936, 10937, 1, 0, 0, 0, 10937, 1483, 1, 0, 0, 0, 10938, 10943, 3, 1494, 747, 0, 10939, 10943, 3, 1498, 749, 0, 10940, 10943, 3, 1736, 868, 0, 10941, 10943, 3, 1502, 751, 0, 10942, 10938, 1, 0, 0, 0, 10942, 10939, 1, 0, 0, 0, 10942, 10940, 1, 0, 0, 0, 10942, 10941, 1, 0, 0, 0, 10943, 1485, 1, 0, 0, 0, 10944, 10949, 3, 1494, 747, 0, 10945, 10949, 3, 1498, 749, 0, 10946, 10949, 3, 1736, 868, 0, 10947, 10949, 3, 1502, 751, 0, 10948, 10944, 1, 0, 0, 0, 10948, 10945, 1, 0, 0, 0, 10948, 10946, 1, 0, 0, 0, 10948, 10947, 1, 0, 0, 0, 10949, 1487, 1, 0, 0, 0, 10950, 10953, 3, 1434, 717, 0, 10951, 10953, 3, 1502, 751, 0, 10952, 10950, 1, 0, 0, 0, 10952, 10951, 1, 0, 0, 0, 10953, 1489, 1, 0, 0, 0, 10954, 10959, 3, 1494, 747, 0, 10955, 10959, 3, 1498, 749, 0, 10956, 10959, 3, 1500, 750, 0, 10957, 10959, 3, 1502, 751, 0, 10958, 10954, 1, 0, 0, 0, 10958, 10955, 1, 0, 0, 0, 10958, 10956, 1, 0, 0, 0, 10958, 10957, 1, 0, 0, 0, 10959, 1491, 1, 0, 0, 0, 10960, 10967, 3, 1494, 747, 0, 10961, 10967, 3, 1736, 868, 0, 10962, 10967, 3, 1498, 749, 0, 10963, 10967, 3, 1500, 750, 0, 10964, 10967, 3, 1502, 751, 0, 10965, 10967, 3, 1504, 752, 0, 10966, 10960, 1, 0, 0, 0, 10966, 10961, 1, 0, 0, 0, 10966, 10962, 1, 0, 0, 0, 10966, 10963, 1, 0, 0, 0, 10966, 10964, 1, 0, 0, 0, 10966, 10965, 1, 0, 0, 0, 10967, 1493, 1, 0, 0, 0, 10968, 10970, 5, 549, 0, 0, 10969, 10971, 3, 1464, 732, 0, 10970, 10969, 1, 0, 0, 0, 10970, 10971, 1, 0, 0, 0, 10971, 10979, 1, 0, 0, 0, 10972, 10979, 3, 1460, 730, 0, 10973, 10979, 5, 550, 0, 0, 10974, 10979, 5, 554, 0, 0, 10975, 10979, 3, 1258, 629, 0, 10976, 10979, 3, 1496, 748, 0, 10977, 10979, 3, 1736, 868, 0, 10978, 10968, 1, 0, 0, 0, 10978, 10972, 1, 0, 0, 0, 10978, 10973, 1, 0, 0, 0, 10978, 10974, 1, 0, 0, 0, 10978, 10975, 1, 0, 0, 0, 10978, 10976, 1, 0, 0, 0, 10978, 10977, 1, 0, 0, 0, 10979, 1495, 1, 0, 0, 0, 10980, 10981, 5, 575, 0, 0, 10981, 1497, 1, 0, 0, 0, 10982, 10983, 7, 72, 0, 0, 10983, 1499, 1, 0, 0, 0, 10984, 11036, 5, 387, 0, 0, 10985, 11036, 5, 388, 0, 0, 10986, 11036, 3, 1186, 593, 0, 10987, 11036, 5, 390, 0, 0, 10988, 11036, 5, 391, 0, 0, 10989, 11036, 3, 1194, 597, 0, 10990, 11036, 5, 393, 0, 0, 10991, 11036, 5, 394, 0, 0, 10992, 11036, 5, 395, 0, 0, 10993, 11036, 5, 396, 0, 0, 10994, 11036, 5, 397, 0, 0, 10995, 11036, 5, 398, 0, 0, 10996, 11036, 5, 399, 0, 0, 10997, 11036, 5, 470, 0, 0, 10998, 11036, 5, 400, 0, 0, 10999, 11036, 5, 401, 0, 0, 11000, 11036, 5, 402, 0, 0, 11001, 11036, 5, 403, 0, 0, 11002, 11036, 5, 404, 0, 0, 11003, 11036, 5, 405, 0, 0, 11004, 11036, 5, 406, 0, 0, 11005, 11036, 5, 407, 0, 0, 11006, 11036, 5, 489, 0, 0, 11007, 11036, 5, 408, 0, 0, 11008, 11036, 3, 1182, 591, 0, 11009, 11036, 5, 453, 0, 0, 11010, 11036, 5, 410, 0, 0, 11011, 11036, 5, 411, 0, 0, 11012, 11036, 5, 412, 0, 0, 11013, 11036, 5, 413, 0, 0, 11014, 11036, 5, 414, 0, 0, 11015, 11036, 5, 415, 0, 0, 11016, 11036, 5, 416, 0, 0, 11017, 11036, 5, 417, 0, 0, 11018, 11036, 5, 418, 0, 0, 11019, 11036, 5, 419, 0, 0, 11020, 11036, 5, 420, 0, 0, 11021, 11036, 5, 421, 0, 0, 11022, 11036, 5, 422, 0, 0, 11023, 11036, 5, 423, 0, 0, 11024, 11036, 5, 424, 0, 0, 11025, 11036, 5, 425, 0, 0, 11026, 11036, 5, 426, 0, 0, 11027, 11036, 5, 427, 0, 0, 11028, 11036, 5, 428, 0, 0, 11029, 11036, 5, 476, 0, 0, 11030, 11036, 5, 429, 0, 0, 11031, 11036, 5, 430, 0, 0, 11032, 11036, 5, 431, 0, 0, 11033, 11036, 5, 432, 0, 0, 11034, 11036, 5, 474, 0, 0, 11035, 10984, 1, 0, 0, 0, 11035, 10985, 1, 0, 0, 0, 11035, 10986, 1, 0, 0, 0, 11035, 10987, 1, 0, 0, 0, 11035, 10988, 1, 0, 0, 0, 11035, 10989, 1, 0, 0, 0, 11035, 10990, 1, 0, 0, 0, 11035, 10991, 1, 0, 0, 0, 11035, 10992, 1, 0, 0, 0, 11035, 10993, 1, 0, 0, 0, 11035, 10994, 1, 0, 0, 0, 11035, 10995, 1, 0, 0, 0, 11035, 10996, 1, 0, 0, 0, 11035, 10997, 1, 0, 0, 0, 11035, 10998, 1, 0, 0, 0, 11035, 10999, 1, 0, 0, 0, 11035, 11000, 1, 0, 0, 0, 11035, 11001, 1, 0, 0, 0, 11035, 11002, 1, 0, 0, 0, 11035, 11003, 1, 0, 0, 0, 11035, 11004, 1, 0, 0, 0, 11035, 11005, 1, 0, 0, 0, 11035, 11006, 1, 0, 0, 0, 11035, 11007, 1, 0, 0, 0, 11035, 11008, 1, 0, 0, 0, 11035, 11009, 1, 0, 0, 0, 11035, 11010, 1, 0, 0, 0, 11035, 11011, 1, 0, 0, 0, 11035, 11012, 1, 0, 0, 0, 11035, 11013, 1, 0, 0, 0, 11035, 11014, 1, 0, 0, 0, 11035, 11015, 1, 0, 0, 0, 11035, 11016, 1, 0, 0, 0, 11035, 11017, 1, 0, 0, 0, 11035, 11018, 1, 0, 0, 0, 11035, 11019, 1, 0, 0, 0, 11035, 11020, 1, 0, 0, 0, 11035, 11021, 1, 0, 0, 0, 11035, 11022, 1, 0, 0, 0, 11035, 11023, 1, 0, 0, 0, 11035, 11024, 1, 0, 0, 0, 11035, 11025, 1, 0, 0, 0, 11035, 11026, 1, 0, 0, 0, 11035, 11027, 1, 0, 0, 0, 11035, 11028, 1, 0, 0, 0, 11035, 11029, 1, 0, 0, 0, 11035, 11030, 1, 0, 0, 0, 11035, 11031, 1, 0, 0, 0, 11035, 11032, 1, 0, 0, 0, 11035, 11033, 1, 0, 0, 0, 11035, 11034, 1, 0, 0, 0, 11036, 1501, 1, 0, 0, 0, 11037, 11038, 7, 73, 0, 0, 11038, 1503, 1, 0, 0, 0, 11039, 11040, 7, 74, 0, 0, 11040, 1505, 1, 0, 0, 0, 11041, 11042, 3, 1508, 754, 0, 11042, 11043, 3, 1518, 759, 0, 11043, 11044, 3, 1516, 758, 0, 11044, 1507, 1, 0, 0, 0, 11045, 11047, 3, 1510, 755, 0, 11046, 11045, 1, 0, 0, 0, 11047, 11050, 1, 0, 0, 0, 11048, 11046, 1, 0, 0, 0, 11048, 11049, 1, 0, 0, 0, 11049, 1509, 1, 0, 0, 0, 11050, 11048, 1, 0, 0, 0, 11051, 11052, 3, 1512, 756, 0, 11052, 11053, 5, 279, 0, 0, 11053, 11054, 5, 490, 0, 0, 11054, 11072, 1, 0, 0, 0, 11055, 11056, 3, 1512, 756, 0, 11056, 11057, 5, 491, 0, 0, 11057, 11058, 3, 1514, 757, 0, 11058, 11072, 1, 0, 0, 0, 11059, 11060, 3, 1512, 756, 0, 11060, 11061, 5, 492, 0, 0, 11061, 11062, 5, 493, 0, 0, 11062, 11072, 1, 0, 0, 0, 11063, 11064, 3, 1512, 756, 0, 11064, 11065, 5, 492, 0, 0, 11065, 11066, 5, 494, 0, 0, 11066, 11072, 1, 0, 0, 0, 11067, 11068, 3, 1512, 756, 0, 11068, 11069, 5, 492, 0, 0, 11069, 11070, 5, 495, 0, 0, 11070, 11072, 1, 0, 0, 0, 11071, 11051, 1, 0, 0, 0, 11071, 11055, 1, 0, 0, 0, 11071, 11059, 1, 0, 0, 0, 11071, 11063, 1, 0, 0, 0, 11071, 11067, 1, 0, 0, 0, 11072, 1511, 1, 0, 0, 0, 11073, 11074, 5, 29, 0, 0, 11074, 1513, 1, 0, 0, 0, 11075, 11080, 3, 1460, 730, 0, 11076, 11080, 3, 1504, 752, 0, 11077, 11080, 3, 1736, 868, 0, 11078, 11080, 3, 1498, 749, 0, 11079, 11075, 1, 0, 0, 0, 11079, 11076, 1, 0, 0, 0, 11079, 11077, 1, 0, 0, 0, 11079, 11078, 1, 0, 0, 0, 11080, 1515, 1, 0, 0, 0, 11081, 11084, 1, 0, 0, 0, 11082, 11084, 5, 7, 0, 0, 11083, 11081, 1, 0, 0, 0, 11083, 11082, 1, 0, 0, 0, 11084, 1517, 1, 0, 0, 0, 11085, 11086, 3, 1520, 760, 0, 11086, 11087, 5, 146, 0, 0, 11087, 11088, 3, 1562, 781, 0, 11088, 11089, 3, 1716, 858, 0, 11089, 11090, 5, 454, 0, 0, 11090, 11091, 3, 1730, 865, 0, 11091, 1519, 1, 0, 0, 0, 11092, 11097, 3, 1726, 863, 0, 11093, 11095, 3, 1522, 761, 0, 11094, 11096, 3, 1524, 762, 0, 11095, 11094, 1, 0, 0, 0, 11095, 11096, 1, 0, 0, 0, 11096, 11098, 1, 0, 0, 0, 11097, 11093, 1, 0, 0, 0, 11097, 11098, 1, 0, 0, 0, 11098, 1521, 1, 0, 0, 0, 11099, 11100, 5, 178, 0, 0, 11100, 1523, 1, 0, 0, 0, 11101, 11103, 3, 1528, 764, 0, 11102, 11101, 1, 0, 0, 0, 11103, 11104, 1, 0, 0, 0, 11104, 11102, 1, 0, 0, 0, 11104, 11105, 1, 0, 0, 0, 11105, 1525, 1, 0, 0, 0, 11106, 11107, 5, 18, 0, 0, 11107, 11108, 3, 1734, 867, 0, 11108, 11109, 5, 19, 0, 0, 11109, 1527, 1, 0, 0, 0, 11110, 11114, 3, 1530, 765, 0, 11111, 11114, 5, 178, 0, 0, 11112, 11114, 3, 1526, 763, 0, 11113, 11110, 1, 0, 0, 0, 11113, 11111, 1, 0, 0, 0, 11113, 11112, 1, 0, 0, 0, 11114, 1529, 1, 0, 0, 0, 11115, 11131, 3, 1546, 773, 0, 11116, 11117, 5, 496, 0, 0, 11117, 11118, 5, 62, 0, 0, 11118, 11132, 3, 1544, 772, 0, 11119, 11120, 3, 1548, 774, 0, 11120, 11121, 3, 1550, 775, 0, 11121, 11122, 3, 1552, 776, 0, 11122, 11123, 3, 1554, 777, 0, 11123, 11124, 3, 1556, 778, 0, 11124, 11132, 1, 0, 0, 0, 11125, 11126, 3, 1532, 766, 0, 11126, 11127, 5, 172, 0, 0, 11127, 11128, 3, 1536, 768, 0, 11128, 11129, 3, 1542, 771, 0, 11129, 11130, 3, 1534, 767, 0, 11130, 11132, 1, 0, 0, 0, 11131, 11116, 1, 0, 0, 0, 11131, 11119, 1, 0, 0, 0, 11131, 11125, 1, 0, 0, 0, 11132, 11133, 1, 0, 0, 0, 11133, 11134, 5, 7, 0, 0, 11134, 1531, 1, 0, 0, 0, 11135, 11140, 1, 0, 0, 0, 11136, 11137, 5, 269, 0, 0, 11137, 11140, 5, 324, 0, 0, 11138, 11140, 5, 324, 0, 0, 11139, 11135, 1, 0, 0, 0, 11139, 11136, 1, 0, 0, 0, 11139, 11138, 1, 0, 0, 0, 11140, 1533, 1, 0, 0, 0, 11141, 11142, 3, 1002, 501, 0, 11142, 1535, 1, 0, 0, 0, 11143, 11149, 1, 0, 0, 0, 11144, 11145, 5, 2, 0, 0, 11145, 11146, 3, 1538, 769, 0, 11146, 11147, 5, 3, 0, 0, 11147, 11149, 1, 0, 0, 0, 11148, 11143, 1, 0, 0, 0, 11148, 11144, 1, 0, 0, 0, 11149, 1537, 1, 0, 0, 0, 11150, 11155, 3, 1540, 770, 0, 11151, 11152, 5, 6, 0, 0, 11152, 11154, 3, 1540, 770, 0, 11153, 11151, 1, 0, 0, 0, 11154, 11157, 1, 0, 0, 0, 11155, 11153, 1, 0, 0, 0, 11155, 11156, 1, 0, 0, 0, 11156, 1539, 1, 0, 0, 0, 11157, 11155, 1, 0, 0, 0, 11158, 11159, 3, 1546, 773, 0, 11159, 11160, 3, 1550, 775, 0, 11160, 1541, 1, 0, 0, 0, 11161, 11162, 7, 75, 0, 0, 11162, 1543, 1, 0, 0, 0, 11163, 11166, 5, 28, 0, 0, 11164, 11166, 3, 1476, 738, 0, 11165, 11163, 1, 0, 0, 0, 11165, 11164, 1, 0, 0, 0, 11166, 1545, 1, 0, 0, 0, 11167, 11168, 3, 1734, 867, 0, 11168, 1547, 1, 0, 0, 0, 11169, 11172, 1, 0, 0, 0, 11170, 11172, 5, 497, 0, 0, 11171, 11169, 1, 0, 0, 0, 11171, 11170, 1, 0, 0, 0, 11172, 1549, 1, 0, 0, 0, 11173, 11174, 3, 1170, 585, 0, 11174, 1551, 1, 0, 0, 0, 11175, 11179, 1, 0, 0, 0, 11176, 11177, 5, 43, 0, 0, 11177, 11179, 3, 558, 279, 0, 11178, 11175, 1, 0, 0, 0, 11178, 11176, 1, 0, 0, 0, 11179, 1553, 1, 0, 0, 0, 11180, 11184, 1, 0, 0, 0, 11181, 11182, 5, 77, 0, 0, 11182, 11184, 5, 78, 0, 0, 11183, 11180, 1, 0, 0, 0, 11183, 11181, 1, 0, 0, 0, 11184, 1555, 1, 0, 0, 0, 11185, 11190, 1, 0, 0, 0, 11186, 11187, 3, 1558, 779, 0, 11187, 11188, 3, 1738, 869, 0, 11188, 11190, 1, 0, 0, 0, 11189, 11185, 1, 0, 0, 0, 11189, 11186, 1, 0, 0, 0, 11190, 1557, 1, 0, 0, 0, 11191, 11194, 3, 1560, 780, 0, 11192, 11194, 5, 53, 0, 0, 11193, 11191, 1, 0, 0, 0, 11193, 11192, 1, 0, 0, 0, 11194, 1559, 1, 0, 0, 0, 11195, 11196, 7, 76, 0, 0, 11196, 1561, 1, 0, 0, 0, 11197, 11199, 3, 1564, 782, 0, 11198, 11197, 1, 0, 0, 0, 11199, 11202, 1, 0, 0, 0, 11200, 11198, 1, 0, 0, 0, 11200, 11201, 1, 0, 0, 0, 11201, 1563, 1, 0, 0, 0, 11202, 11200, 1, 0, 0, 0, 11203, 11204, 3, 1518, 759, 0, 11204, 11205, 5, 7, 0, 0, 11205, 11231, 1, 0, 0, 0, 11206, 11231, 3, 1630, 815, 0, 11207, 11231, 3, 1634, 817, 0, 11208, 11231, 3, 1572, 786, 0, 11209, 11231, 3, 1588, 794, 0, 11210, 11231, 3, 1594, 797, 0, 11211, 11231, 3, 1604, 802, 0, 11212, 11231, 3, 1606, 803, 0, 11213, 11231, 3, 1608, 804, 0, 11214, 11231, 3, 1622, 811, 0, 11215, 11231, 3, 1626, 813, 0, 11216, 11231, 3, 1646, 823, 0, 11217, 11231, 3, 1652, 826, 0, 11218, 11231, 3, 1654, 827, 0, 11219, 11231, 3, 1566, 783, 0, 11220, 11231, 3, 1568, 784, 0, 11221, 11231, 3, 1574, 787, 0, 11222, 11231, 3, 1662, 831, 0, 11223, 11231, 3, 1674, 837, 0, 11224, 11231, 3, 1682, 841, 0, 11225, 11231, 3, 1702, 851, 0, 11226, 11231, 3, 1704, 852, 0, 11227, 11231, 3, 1706, 853, 0, 11228, 11231, 3, 1708, 854, 0, 11229, 11231, 3, 1712, 856, 0, 11230, 11203, 1, 0, 0, 0, 11230, 11206, 1, 0, 0, 0, 11230, 11207, 1, 0, 0, 0, 11230, 11208, 1, 0, 0, 0, 11230, 11209, 1, 0, 0, 0, 11230, 11210, 1, 0, 0, 0, 11230, 11211, 1, 0, 0, 0, 11230, 11212, 1, 0, 0, 0, 11230, 11213, 1, 0, 0, 0, 11230, 11214, 1, 0, 0, 0, 11230, 11215, 1, 0, 0, 0, 11230, 11216, 1, 0, 0, 0, 11230, 11217, 1, 0, 0, 0, 11230, 11218, 1, 0, 0, 0, 11230, 11219, 1, 0, 0, 0, 11230, 11220, 1, 0, 0, 0, 11230, 11221, 1, 0, 0, 0, 11230, 11222, 1, 0, 0, 0, 11230, 11223, 1, 0, 0, 0, 11230, 11224, 1, 0, 0, 0, 11230, 11225, 1, 0, 0, 0, 11230, 11226, 1, 0, 0, 0, 11230, 11227, 1, 0, 0, 0, 11230, 11228, 1, 0, 0, 0, 11230, 11229, 1, 0, 0, 0, 11231, 1565, 1, 0, 0, 0, 11232, 11233, 5, 498, 0, 0, 11233, 11234, 3, 1742, 871, 0, 11234, 11235, 5, 7, 0, 0, 11235, 1567, 1, 0, 0, 0, 11236, 11237, 5, 433, 0, 0, 11237, 11243, 3, 1734, 867, 0, 11238, 11239, 5, 2, 0, 0, 11239, 11240, 3, 1570, 785, 0, 11240, 11241, 5, 3, 0, 0, 11241, 11242, 5, 7, 0, 0, 11242, 11244, 1, 0, 0, 0, 11243, 11238, 1, 0, 0, 0, 11243, 11244, 1, 0, 0, 0, 11244, 11253, 1, 0, 0, 0, 11245, 11246, 5, 57, 0, 0, 11246, 11247, 3, 1734, 867, 0, 11247, 11248, 5, 2, 0, 0, 11248, 11249, 3, 1570, 785, 0, 11249, 11250, 5, 3, 0, 0, 11250, 11251, 5, 7, 0, 0, 11251, 11253, 1, 0, 0, 0, 11252, 11236, 1, 0, 0, 0, 11252, 11245, 1, 0, 0, 0, 11253, 1569, 1, 0, 0, 0, 11254, 11257, 1, 0, 0, 0, 11255, 11257, 3, 1330, 665, 0, 11256, 11254, 1, 0, 0, 0, 11256, 11255, 1, 0, 0, 0, 11257, 1571, 1, 0, 0, 0, 11258, 11259, 3, 1586, 793, 0, 11259, 11260, 3, 1560, 780, 0, 11260, 11261, 3, 1738, 869, 0, 11261, 11262, 5, 7, 0, 0, 11262, 1573, 1, 0, 0, 0, 11263, 11264, 5, 499, 0, 0, 11264, 11265, 3, 1576, 788, 0, 11265, 11266, 5, 500, 0, 0, 11266, 11267, 3, 1578, 789, 0, 11267, 11268, 5, 7, 0, 0, 11268, 1575, 1, 0, 0, 0, 11269, 11273, 1, 0, 0, 0, 11270, 11273, 5, 434, 0, 0, 11271, 11273, 5, 501, 0, 0, 11272, 11269, 1, 0, 0, 0, 11272, 11270, 1, 0, 0, 0, 11272, 11271, 1, 0, 0, 0, 11273, 1577, 1, 0, 0, 0, 11274, 11279, 3, 1580, 790, 0, 11275, 11276, 5, 6, 0, 0, 11276, 11278, 3, 1580, 790, 0, 11277, 11275, 1, 0, 0, 0, 11278, 11281, 1, 0, 0, 0, 11279, 11277, 1, 0, 0, 0, 11279, 11280, 1, 0, 0, 0, 11280, 1579, 1, 0, 0, 0, 11281, 11279, 1, 0, 0, 0, 11282, 11283, 3, 1584, 792, 0, 11283, 11284, 3, 1560, 780, 0, 11284, 11285, 3, 1582, 791, 0, 11285, 1581, 1, 0, 0, 0, 11286, 11287, 3, 1476, 738, 0, 11287, 1583, 1, 0, 0, 0, 11288, 11289, 3, 1586, 793, 0, 11289, 1585, 1, 0, 0, 0, 11290, 11293, 3, 558, 279, 0, 11291, 11293, 5, 28, 0, 0, 11292, 11290, 1, 0, 0, 0, 11292, 11291, 1, 0, 0, 0, 11293, 11300, 1, 0, 0, 0, 11294, 11295, 5, 4, 0, 0, 11295, 11296, 3, 1744, 872, 0, 11296, 11297, 5, 5, 0, 0, 11297, 11299, 1, 0, 0, 0, 11298, 11294, 1, 0, 0, 0, 11299, 11302, 1, 0, 0, 0, 11300, 11298, 1, 0, 0, 0, 11300, 11301, 1, 0, 0, 0, 11301, 1587, 1, 0, 0, 0, 11302, 11300, 1, 0, 0, 0, 11303, 11304, 5, 220, 0, 0, 11304, 11305, 3, 1740, 870, 0, 11305, 11306, 5, 93, 0, 0, 11306, 11307, 3, 1562, 781, 0, 11307, 11308, 3, 1590, 795, 0, 11308, 11309, 3, 1592, 796, 0, 11309, 11310, 5, 454, 0, 0, 11310, 11311, 5, 220, 0, 0, 11311, 11312, 5, 7, 0, 0, 11312, 1589, 1, 0, 0, 0, 11313, 11314, 5, 502, 0, 0, 11314, 11315, 3, 1214, 607, 0, 11315, 11316, 5, 93, 0, 0, 11316, 11317, 3, 1562, 781, 0, 11317, 11319, 1, 0, 0, 0, 11318, 11313, 1, 0, 0, 0, 11319, 11322, 1, 0, 0, 0, 11320, 11318, 1, 0, 0, 0, 11320, 11321, 1, 0, 0, 0, 11321, 1591, 1, 0, 0, 0, 11322, 11320, 1, 0, 0, 0, 11323, 11327, 1, 0, 0, 0, 11324, 11325, 5, 58, 0, 0, 11325, 11327, 3, 1562, 781, 0, 11326, 11323, 1, 0, 0, 0, 11326, 11324, 1, 0, 0, 0, 11327, 1593, 1, 0, 0, 0, 11328, 11329, 5, 40, 0, 0, 11329, 11330, 3, 1596, 798, 0, 11330, 11331, 3, 1598, 799, 0, 11331, 11332, 3, 1602, 801, 0, 11332, 11333, 5, 454, 0, 0, 11333, 11334, 5, 40, 0, 0, 11334, 11335, 5, 7, 0, 0, 11335, 1595, 1, 0, 0, 0, 11336, 11339, 1, 0, 0, 0, 11337, 11339, 3, 1738, 869, 0, 11338, 11336, 1, 0, 0, 0, 11338, 11337, 1, 0, 0, 0, 11339, 1597, 1, 0, 0, 0, 11340, 11342, 3, 1600, 800, 0, 11341, 11340, 1, 0, 0, 0, 11342, 11343, 1, 0, 0, 0, 11343, 11341, 1, 0, 0, 0, 11343, 11344, 1, 0, 0, 0, 11344, 1599, 1, 0, 0, 0, 11345, 11346, 5, 102, 0, 0, 11346, 11347, 3, 1330, 665, 0, 11347, 11348, 5, 93, 0, 0, 11348, 11349, 3, 1562, 781, 0, 11349, 1601, 1, 0, 0, 0, 11350, 11354, 1, 0, 0, 0, 11351, 11352, 5, 58, 0, 0, 11352, 11354, 3, 1562, 781, 0, 11353, 11350, 1, 0, 0, 0, 11353, 11351, 1, 0, 0, 0, 11354, 1603, 1, 0, 0, 0, 11355, 11356, 3, 1728, 864, 0, 11356, 11357, 3, 1650, 825, 0, 11357, 1605, 1, 0, 0, 0, 11358, 11359, 3, 1728, 864, 0, 11359, 11360, 5, 503, 0, 0, 11360, 11361, 3, 1746, 873, 0, 11361, 11362, 3, 1650, 825, 0, 11362, 1607, 1, 0, 0, 0, 11363, 11364, 3, 1728, 864, 0, 11364, 11365, 5, 62, 0, 0, 11365, 11366, 3, 1610, 805, 0, 11366, 11367, 3, 1650, 825, 0, 11367, 1609, 1, 0, 0, 0, 11368, 11369, 3, 1620, 810, 0, 11369, 11385, 5, 68, 0, 0, 11370, 11371, 3, 996, 498, 0, 11371, 11372, 3, 1614, 807, 0, 11372, 11386, 1, 0, 0, 0, 11373, 11386, 3, 1002, 501, 0, 11374, 11386, 3, 928, 464, 0, 11375, 11376, 5, 202, 0, 0, 11376, 11377, 3, 1214, 607, 0, 11377, 11378, 3, 1612, 806, 0, 11378, 11386, 1, 0, 0, 0, 11379, 11380, 3, 1616, 808, 0, 11380, 11381, 3, 1214, 607, 0, 11381, 11382, 5, 24, 0, 0, 11382, 11383, 3, 1214, 607, 0, 11383, 11384, 3, 1618, 809, 0, 11384, 11386, 1, 0, 0, 0, 11385, 11370, 1, 0, 0, 0, 11385, 11373, 1, 0, 0, 0, 11385, 11374, 1, 0, 0, 0, 11385, 11375, 1, 0, 0, 0, 11385, 11379, 1, 0, 0, 0, 11386, 1611, 1, 0, 0, 0, 11387, 11391, 1, 0, 0, 0, 11388, 11389, 5, 100, 0, 0, 11389, 11391, 3, 1330, 665, 0, 11390, 11387, 1, 0, 0, 0, 11390, 11388, 1, 0, 0, 0, 11391, 1613, 1, 0, 0, 0, 11392, 11405, 1, 0, 0, 0, 11393, 11394, 5, 2, 0, 0, 11394, 11399, 3, 1214, 607, 0, 11395, 11396, 5, 6, 0, 0, 11396, 11398, 3, 1214, 607, 0, 11397, 11395, 1, 0, 0, 0, 11398, 11401, 1, 0, 0, 0, 11399, 11397, 1, 0, 0, 0, 11399, 11400, 1, 0, 0, 0, 11400, 11402, 1, 0, 0, 0, 11401, 11399, 1, 0, 0, 0, 11402, 11403, 5, 3, 0, 0, 11403, 11405, 1, 0, 0, 0, 11404, 11392, 1, 0, 0, 0, 11404, 11393, 1, 0, 0, 0, 11405, 1615, 1, 0, 0, 0, 11406, 11409, 1, 0, 0, 0, 11407, 11409, 5, 504, 0, 0, 11408, 11406, 1, 0, 0, 0, 11408, 11407, 1, 0, 0, 0, 11409, 1617, 1, 0, 0, 0, 11410, 11414, 1, 0, 0, 0, 11411, 11412, 5, 147, 0, 0, 11412, 11414, 3, 1214, 607, 0, 11413, 11410, 1, 0, 0, 0, 11413, 11411, 1, 0, 0, 0, 11414, 1619, 1, 0, 0, 0, 11415, 11416, 3, 550, 275, 0, 11416, 1621, 1, 0, 0, 0, 11417, 11418, 3, 1728, 864, 0, 11418, 11419, 5, 505, 0, 0, 11419, 11420, 3, 1620, 810, 0, 11420, 11421, 3, 1624, 812, 0, 11421, 11422, 5, 68, 0, 0, 11422, 11423, 5, 35, 0, 0, 11423, 11424, 3, 1214, 607, 0, 11424, 11425, 3, 1650, 825, 0, 11425, 1623, 1, 0, 0, 0, 11426, 11430, 1, 0, 0, 0, 11427, 11428, 5, 506, 0, 0, 11428, 11430, 3, 1458, 729, 0, 11429, 11426, 1, 0, 0, 0, 11429, 11427, 1, 0, 0, 0, 11430, 1625, 1, 0, 0, 0, 11431, 11432, 3, 1628, 814, 0, 11432, 11434, 3, 1730, 865, 0, 11433, 11435, 3, 1732, 866, 0, 11434, 11433, 1, 0, 0, 0, 11434, 11435, 1, 0, 0, 0, 11435, 11436, 1, 0, 0, 0, 11436, 11437, 5, 7, 0, 0, 11437, 1627, 1, 0, 0, 0, 11438, 11439, 7, 77, 0, 0, 11439, 1629, 1, 0, 0, 0, 11440, 11452, 5, 508, 0, 0, 11441, 11442, 5, 268, 0, 0, 11442, 11453, 3, 1738, 869, 0, 11443, 11449, 5, 509, 0, 0, 11444, 11445, 5, 202, 0, 0, 11445, 11446, 3, 1214, 607, 0, 11446, 11447, 3, 1612, 806, 0, 11447, 11450, 1, 0, 0, 0, 11448, 11450, 3, 1002, 501, 0, 11449, 11444, 1, 0, 0, 0, 11449, 11448, 1, 0, 0, 0, 11450, 11453, 1, 0, 0, 0, 11451, 11453, 3, 1632, 816, 0, 11452, 11441, 1, 0, 0, 0, 11452, 11443, 1, 0, 0, 0, 11452, 11451, 1, 0, 0, 0, 11453, 11454, 1, 0, 0, 0, 11454, 11455, 5, 7, 0, 0, 11455, 1631, 1, 0, 0, 0, 11456, 11459, 1, 0, 0, 0, 11457, 11459, 3, 1738, 869, 0, 11458, 11456, 1, 0, 0, 0, 11458, 11457, 1, 0, 0, 0, 11459, 1633, 1, 0, 0, 0, 11460, 11462, 5, 510, 0, 0, 11461, 11463, 3, 1636, 818, 0, 11462, 11461, 1, 0, 0, 0, 11462, 11463, 1, 0, 0, 0, 11463, 11464, 1, 0, 0, 0, 11464, 11465, 3, 1460, 730, 0, 11465, 11466, 3, 1638, 819, 0, 11466, 11467, 3, 1640, 820, 0, 11467, 11468, 5, 7, 0, 0, 11468, 11495, 1, 0, 0, 0, 11469, 11471, 5, 510, 0, 0, 11470, 11472, 3, 1636, 818, 0, 11471, 11470, 1, 0, 0, 0, 11471, 11472, 1, 0, 0, 0, 11472, 11473, 1, 0, 0, 0, 11473, 11474, 3, 1494, 747, 0, 11474, 11475, 3, 1640, 820, 0, 11475, 11476, 5, 7, 0, 0, 11476, 11495, 1, 0, 0, 0, 11477, 11479, 5, 510, 0, 0, 11478, 11480, 3, 1636, 818, 0, 11479, 11478, 1, 0, 0, 0, 11479, 11480, 1, 0, 0, 0, 11480, 11481, 1, 0, 0, 0, 11481, 11482, 5, 511, 0, 0, 11482, 11483, 3, 1460, 730, 0, 11483, 11484, 3, 1640, 820, 0, 11484, 11485, 5, 7, 0, 0, 11485, 11495, 1, 0, 0, 0, 11486, 11488, 5, 510, 0, 0, 11487, 11489, 3, 1636, 818, 0, 11488, 11487, 1, 0, 0, 0, 11488, 11489, 1, 0, 0, 0, 11489, 11490, 1, 0, 0, 0, 11490, 11491, 3, 1640, 820, 0, 11491, 11492, 5, 7, 0, 0, 11492, 11495, 1, 0, 0, 0, 11493, 11495, 5, 510, 0, 0, 11494, 11460, 1, 0, 0, 0, 11494, 11469, 1, 0, 0, 0, 11494, 11477, 1, 0, 0, 0, 11494, 11486, 1, 0, 0, 0, 11494, 11493, 1, 0, 0, 0, 11495, 1635, 1, 0, 0, 0, 11496, 11497, 7, 78, 0, 0, 11497, 1637, 1, 0, 0, 0, 11498, 11506, 1, 0, 0, 0, 11499, 11500, 5, 6, 0, 0, 11500, 11502, 3, 1214, 607, 0, 11501, 11499, 1, 0, 0, 0, 11502, 11503, 1, 0, 0, 0, 11503, 11501, 1, 0, 0, 0, 11503, 11504, 1, 0, 0, 0, 11504, 11506, 1, 0, 0, 0, 11505, 11498, 1, 0, 0, 0, 11505, 11501, 1, 0, 0, 0, 11506, 1639, 1, 0, 0, 0, 11507, 11511, 1, 0, 0, 0, 11508, 11509, 5, 100, 0, 0, 11509, 11511, 3, 1644, 822, 0, 11510, 11507, 1, 0, 0, 0, 11510, 11508, 1, 0, 0, 0, 11511, 1641, 1, 0, 0, 0, 11512, 11513, 3, 1494, 747, 0, 11513, 11514, 5, 10, 0, 0, 11514, 11515, 3, 1214, 607, 0, 11515, 1643, 1, 0, 0, 0, 11516, 11521, 3, 1642, 821, 0, 11517, 11518, 5, 6, 0, 0, 11518, 11520, 3, 1642, 821, 0, 11519, 11517, 1, 0, 0, 0, 11520, 11523, 1, 0, 0, 0, 11521, 11519, 1, 0, 0, 0, 11521, 11522, 1, 0, 0, 0, 11522, 1645, 1, 0, 0, 0, 11523, 11521, 1, 0, 0, 0, 11524, 11525, 5, 518, 0, 0, 11525, 11526, 3, 1738, 869, 0, 11526, 11527, 3, 1648, 824, 0, 11527, 11528, 5, 7, 0, 0, 11528, 1647, 1, 0, 0, 0, 11529, 11533, 1, 0, 0, 0, 11530, 11531, 5, 6, 0, 0, 11531, 11533, 3, 1738, 869, 0, 11532, 11529, 1, 0, 0, 0, 11532, 11530, 1, 0, 0, 0, 11533, 1649, 1, 0, 0, 0, 11534, 11535, 5, 519, 0, 0, 11535, 11536, 3, 1562, 781, 0, 11536, 11537, 5, 454, 0, 0, 11537, 11538, 5, 519, 0, 0, 11538, 11539, 3, 1730, 865, 0, 11539, 11540, 5, 7, 0, 0, 11540, 1651, 1, 0, 0, 0, 11541, 11542, 3, 1748, 874, 0, 11542, 11543, 5, 7, 0, 0, 11543, 1653, 1, 0, 0, 0, 11544, 11545, 5, 202, 0, 0, 11545, 11553, 3, 1214, 607, 0, 11546, 11547, 3, 1660, 830, 0, 11547, 11548, 3, 1656, 828, 0, 11548, 11554, 1, 0, 0, 0, 11549, 11550, 3, 1656, 828, 0, 11550, 11551, 3, 1660, 830, 0, 11551, 11554, 1, 0, 0, 0, 11552, 11554, 1, 0, 0, 0, 11553, 11546, 1, 0, 0, 0, 11553, 11549, 1, 0, 0, 0, 11553, 11552, 1, 0, 0, 0, 11554, 11555, 1, 0, 0, 0, 11555, 11556, 5, 7, 0, 0, 11556, 1655, 1, 0, 0, 0, 11557, 11561, 1, 0, 0, 0, 11558, 11559, 5, 100, 0, 0, 11559, 11561, 3, 1658, 829, 0, 11560, 11557, 1, 0, 0, 0, 11560, 11558, 1, 0, 0, 0, 11561, 1657, 1, 0, 0, 0, 11562, 11567, 3, 1214, 607, 0, 11563, 11564, 5, 6, 0, 0, 11564, 11566, 3, 1214, 607, 0, 11565, 11563, 1, 0, 0, 0, 11566, 11569, 1, 0, 0, 0, 11567, 11565, 1, 0, 0, 0, 11567, 11568, 1, 0, 0, 0, 11568, 1659, 1, 0, 0, 0, 11569, 11567, 1, 0, 0, 0, 11570, 11577, 1, 0, 0, 0, 11571, 11573, 5, 71, 0, 0, 11572, 11574, 5, 346, 0, 0, 11573, 11572, 1, 0, 0, 0, 11573, 11574, 1, 0, 0, 0, 11574, 11575, 1, 0, 0, 0, 11575, 11577, 3, 1676, 838, 0, 11576, 11570, 1, 0, 0, 0, 11576, 11571, 1, 0, 0, 0, 11577, 1661, 1, 0, 0, 0, 11578, 11596, 5, 520, 0, 0, 11579, 11580, 3, 1714, 857, 0, 11580, 11581, 3, 1670, 835, 0, 11581, 11587, 5, 62, 0, 0, 11582, 11588, 3, 1002, 501, 0, 11583, 11584, 5, 202, 0, 0, 11584, 11585, 3, 1738, 869, 0, 11585, 11586, 3, 1668, 834, 0, 11586, 11588, 1, 0, 0, 0, 11587, 11582, 1, 0, 0, 0, 11587, 11583, 1, 0, 0, 0, 11588, 11597, 1, 0, 0, 0, 11589, 11594, 3, 1476, 738, 0, 11590, 11591, 5, 2, 0, 0, 11591, 11592, 3, 1666, 833, 0, 11592, 11593, 5, 3, 0, 0, 11593, 11595, 1, 0, 0, 0, 11594, 11590, 1, 0, 0, 0, 11594, 11595, 1, 0, 0, 0, 11595, 11597, 1, 0, 0, 0, 11596, 11579, 1, 0, 0, 0, 11596, 11589, 1, 0, 0, 0, 11597, 11598, 1, 0, 0, 0, 11598, 11599, 5, 7, 0, 0, 11599, 1663, 1, 0, 0, 0, 11600, 11601, 3, 1476, 738, 0, 11601, 11602, 5, 20, 0, 0, 11602, 11603, 3, 1214, 607, 0, 11603, 11606, 1, 0, 0, 0, 11604, 11606, 3, 1214, 607, 0, 11605, 11600, 1, 0, 0, 0, 11605, 11604, 1, 0, 0, 0, 11606, 1665, 1, 0, 0, 0, 11607, 11612, 3, 1664, 832, 0, 11608, 11609, 5, 6, 0, 0, 11609, 11611, 3, 1664, 832, 0, 11610, 11608, 1, 0, 0, 0, 11611, 11614, 1, 0, 0, 0, 11612, 11610, 1, 0, 0, 0, 11612, 11613, 1, 0, 0, 0, 11613, 1667, 1, 0, 0, 0, 11614, 11612, 1, 0, 0, 0, 11615, 11619, 1, 0, 0, 0, 11616, 11617, 5, 100, 0, 0, 11617, 11619, 3, 1330, 665, 0, 11618, 11615, 1, 0, 0, 0, 11618, 11616, 1, 0, 0, 0, 11619, 1669, 1, 0, 0, 0, 11620, 11625, 1, 0, 0, 0, 11621, 11622, 3, 1672, 836, 0, 11622, 11623, 5, 324, 0, 0, 11623, 11625, 1, 0, 0, 0, 11624, 11620, 1, 0, 0, 0, 11624, 11621, 1, 0, 0, 0, 11625, 1671, 1, 0, 0, 0, 11626, 11629, 1, 0, 0, 0, 11627, 11629, 5, 269, 0, 0, 11628, 11626, 1, 0, 0, 0, 11628, 11627, 1, 0, 0, 0, 11629, 1673, 1, 0, 0, 0, 11630, 11632, 5, 61, 0, 0, 11631, 11633, 3, 1680, 840, 0, 11632, 11631, 1, 0, 0, 0, 11632, 11633, 1, 0, 0, 0, 11633, 11634, 1, 0, 0, 0, 11634, 11635, 3, 1678, 839, 0, 11635, 11636, 3, 1714, 857, 0, 11636, 11637, 5, 71, 0, 0, 11637, 11638, 3, 1676, 838, 0, 11638, 11639, 5, 7, 0, 0, 11639, 1675, 1, 0, 0, 0, 11640, 11641, 3, 1330, 665, 0, 11641, 1677, 1, 0, 0, 0, 11642, 11646, 1, 0, 0, 0, 11643, 11646, 5, 64, 0, 0, 11644, 11646, 5, 68, 0, 0, 11645, 11642, 1, 0, 0, 0, 11645, 11643, 1, 0, 0, 0, 11645, 11644, 1, 0, 0, 0, 11646, 1679, 1, 0, 0, 0, 11647, 11663, 5, 268, 0, 0, 11648, 11663, 5, 293, 0, 0, 11649, 11663, 5, 207, 0, 0, 11650, 11663, 5, 249, 0, 0, 11651, 11652, 5, 130, 0, 0, 11652, 11663, 3, 1214, 607, 0, 11653, 11654, 5, 307, 0, 0, 11654, 11663, 3, 1214, 607, 0, 11655, 11663, 3, 1214, 607, 0, 11656, 11663, 5, 30, 0, 0, 11657, 11660, 7, 79, 0, 0, 11658, 11661, 3, 1214, 607, 0, 11659, 11661, 5, 30, 0, 0, 11660, 11658, 1, 0, 0, 0, 11660, 11659, 1, 0, 0, 0, 11660, 11661, 1, 0, 0, 0, 11661, 11663, 1, 0, 0, 0, 11662, 11647, 1, 0, 0, 0, 11662, 11648, 1, 0, 0, 0, 11662, 11649, 1, 0, 0, 0, 11662, 11650, 1, 0, 0, 0, 11662, 11651, 1, 0, 0, 0, 11662, 11653, 1, 0, 0, 0, 11662, 11655, 1, 0, 0, 0, 11662, 11656, 1, 0, 0, 0, 11662, 11657, 1, 0, 0, 0, 11663, 1681, 1, 0, 0, 0, 11664, 11666, 5, 265, 0, 0, 11665, 11667, 3, 1680, 840, 0, 11666, 11665, 1, 0, 0, 0, 11666, 11667, 1, 0, 0, 0, 11667, 11668, 1, 0, 0, 0, 11668, 11669, 3, 1714, 857, 0, 11669, 11670, 5, 7, 0, 0, 11670, 1683, 1, 0, 0, 0, 11671, 11673, 3, 1016, 508, 0, 11672, 11671, 1, 0, 0, 0, 11672, 11673, 1, 0, 0, 0, 11673, 11674, 1, 0, 0, 0, 11674, 11675, 5, 525, 0, 0, 11675, 11677, 5, 71, 0, 0, 11676, 11678, 5, 81, 0, 0, 11677, 11676, 1, 0, 0, 0, 11677, 11678, 1, 0, 0, 0, 11678, 11679, 1, 0, 0, 0, 11679, 11681, 3, 1408, 704, 0, 11680, 11682, 5, 9, 0, 0, 11681, 11680, 1, 0, 0, 0, 11681, 11682, 1, 0, 0, 0, 11682, 11687, 1, 0, 0, 0, 11683, 11685, 5, 36, 0, 0, 11684, 11683, 1, 0, 0, 0, 11684, 11685, 1, 0, 0, 0, 11685, 11686, 1, 0, 0, 0, 11686, 11688, 3, 1476, 738, 0, 11687, 11684, 1, 0, 0, 0, 11687, 11688, 1, 0, 0, 0, 11688, 11689, 1, 0, 0, 0, 11689, 11690, 5, 100, 0, 0, 11690, 11691, 3, 1686, 843, 0, 11691, 11692, 5, 80, 0, 0, 11692, 11694, 3, 1688, 844, 0, 11693, 11695, 3, 1690, 845, 0, 11694, 11693, 1, 0, 0, 0, 11695, 11696, 1, 0, 0, 0, 11696, 11694, 1, 0, 0, 0, 11696, 11697, 1, 0, 0, 0, 11697, 1685, 1, 0, 0, 0, 11698, 11700, 5, 81, 0, 0, 11699, 11698, 1, 0, 0, 0, 11699, 11700, 1, 0, 0, 0, 11700, 11701, 1, 0, 0, 0, 11701, 11703, 3, 1408, 704, 0, 11702, 11704, 5, 9, 0, 0, 11703, 11702, 1, 0, 0, 0, 11703, 11704, 1, 0, 0, 0, 11704, 11710, 1, 0, 0, 0, 11705, 11708, 3, 1006, 503, 0, 11706, 11708, 3, 1102, 551, 0, 11707, 11705, 1, 0, 0, 0, 11707, 11706, 1, 0, 0, 0, 11708, 11710, 1, 0, 0, 0, 11709, 11699, 1, 0, 0, 0, 11709, 11707, 1, 0, 0, 0, 11710, 11715, 1, 0, 0, 0, 11711, 11713, 5, 36, 0, 0, 11712, 11711, 1, 0, 0, 0, 11712, 11713, 1, 0, 0, 0, 11713, 11714, 1, 0, 0, 0, 11714, 11716, 3, 1476, 738, 0, 11715, 11712, 1, 0, 0, 0, 11715, 11716, 1, 0, 0, 0, 11716, 1687, 1, 0, 0, 0, 11717, 11718, 3, 1214, 607, 0, 11718, 1689, 1, 0, 0, 0, 11719, 11720, 5, 102, 0, 0, 11720, 11723, 5, 526, 0, 0, 11721, 11722, 5, 33, 0, 0, 11722, 11724, 3, 1214, 607, 0, 11723, 11721, 1, 0, 0, 0, 11723, 11724, 1, 0, 0, 0, 11724, 11725, 1, 0, 0, 0, 11725, 11730, 5, 93, 0, 0, 11726, 11731, 3, 1694, 847, 0, 11727, 11731, 5, 182, 0, 0, 11728, 11729, 5, 57, 0, 0, 11729, 11731, 5, 270, 0, 0, 11730, 11726, 1, 0, 0, 0, 11730, 11727, 1, 0, 0, 0, 11730, 11728, 1, 0, 0, 0, 11731, 11746, 1, 0, 0, 0, 11732, 11733, 5, 102, 0, 0, 11733, 11734, 5, 77, 0, 0, 11734, 11737, 5, 526, 0, 0, 11735, 11736, 5, 33, 0, 0, 11736, 11738, 3, 1214, 607, 0, 11737, 11735, 1, 0, 0, 0, 11737, 11738, 1, 0, 0, 0, 11738, 11739, 1, 0, 0, 0, 11739, 11743, 5, 93, 0, 0, 11740, 11744, 3, 1692, 846, 0, 11741, 11742, 5, 57, 0, 0, 11742, 11744, 5, 270, 0, 0, 11743, 11740, 1, 0, 0, 0, 11743, 11741, 1, 0, 0, 0, 11744, 11746, 1, 0, 0, 0, 11745, 11719, 1, 0, 0, 0, 11745, 11732, 1, 0, 0, 0, 11746, 1691, 1, 0, 0, 0, 11747, 11752, 5, 241, 0, 0, 11748, 11749, 5, 2, 0, 0, 11749, 11750, 3, 244, 122, 0, 11750, 11751, 5, 3, 0, 0, 11751, 11753, 1, 0, 0, 0, 11752, 11748, 1, 0, 0, 0, 11752, 11753, 1, 0, 0, 0, 11753, 11757, 1, 0, 0, 0, 11754, 11755, 5, 463, 0, 0, 11755, 11756, 7, 47, 0, 0, 11756, 11758, 5, 450, 0, 0, 11757, 11754, 1, 0, 0, 0, 11757, 11758, 1, 0, 0, 0, 11758, 11759, 1, 0, 0, 0, 11759, 11760, 3, 1696, 848, 0, 11760, 1693, 1, 0, 0, 0, 11761, 11762, 5, 369, 0, 0, 11762, 11775, 5, 333, 0, 0, 11763, 11764, 3, 1434, 717, 0, 11764, 11765, 5, 10, 0, 0, 11765, 11766, 3, 1700, 850, 0, 11766, 11776, 1, 0, 0, 0, 11767, 11768, 5, 2, 0, 0, 11768, 11769, 3, 244, 122, 0, 11769, 11770, 5, 3, 0, 0, 11770, 11771, 5, 10, 0, 0, 11771, 11772, 5, 2, 0, 0, 11772, 11773, 3, 1698, 849, 0, 11773, 11774, 5, 3, 0, 0, 11774, 11776, 1, 0, 0, 0, 11775, 11763, 1, 0, 0, 0, 11775, 11767, 1, 0, 0, 0, 11776, 11777, 1, 0, 0, 0, 11777, 11775, 1, 0, 0, 0, 11777, 11778, 1, 0, 0, 0, 11778, 1695, 1, 0, 0, 0, 11779, 11780, 5, 422, 0, 0, 11780, 11784, 3, 1698, 849, 0, 11781, 11782, 5, 53, 0, 0, 11782, 11784, 5, 422, 0, 0, 11783, 11779, 1, 0, 0, 0, 11783, 11781, 1, 0, 0, 0, 11784, 1697, 1, 0, 0, 0, 11785, 11786, 5, 2, 0, 0, 11786, 11791, 3, 1700, 850, 0, 11787, 11788, 5, 6, 0, 0, 11788, 11790, 3, 1700, 850, 0, 11789, 11787, 1, 0, 0, 0, 11790, 11793, 1, 0, 0, 0, 11791, 11789, 1, 0, 0, 0, 11791, 11792, 1, 0, 0, 0, 11792, 11794, 1, 0, 0, 0, 11793, 11791, 1, 0, 0, 0, 11794, 11795, 5, 3, 0, 0, 11795, 1699, 1, 0, 0, 0, 11796, 11799, 3, 1050, 525, 0, 11797, 11799, 5, 53, 0, 0, 11798, 11796, 1, 0, 0, 0, 11798, 11797, 1, 0, 0, 0, 11799, 1701, 1, 0, 0, 0, 11800, 11801, 5, 157, 0, 0, 11801, 11802, 3, 1714, 857, 0, 11802, 11803, 5, 7, 0, 0, 11803, 1703, 1, 0, 0, 0, 11804, 11805, 5, 78, 0, 0, 11805, 11806, 5, 7, 0, 0, 11806, 1705, 1, 0, 0, 0, 11807, 11809, 5, 161, 0, 0, 11808, 11810, 3, 1710, 855, 0, 11809, 11808, 1, 0, 0, 0, 11809, 11810, 1, 0, 0, 0, 11810, 11811, 1, 0, 0, 0, 11811, 11812, 5, 7, 0, 0, 11812, 1707, 1, 0, 0, 0, 11813, 11815, 5, 319, 0, 0, 11814, 11816, 3, 1710, 855, 0, 11815, 11814, 1, 0, 0, 0, 11815, 11816, 1, 0, 0, 0, 11816, 11817, 1, 0, 0, 0, 11817, 11818, 5, 7, 0, 0, 11818, 1709, 1, 0, 0, 0, 11819, 11821, 5, 33, 0, 0, 11820, 11822, 5, 269, 0, 0, 11821, 11820, 1, 0, 0, 0, 11821, 11822, 1, 0, 0, 0, 11822, 11823, 1, 0, 0, 0, 11823, 11824, 5, 153, 0, 0, 11824, 1711, 1, 0, 0, 0, 11825, 11826, 5, 333, 0, 0, 11826, 11827, 3, 558, 279, 0, 11827, 11828, 5, 94, 0, 0, 11828, 11829, 5, 53, 0, 0, 11829, 11830, 5, 7, 0, 0, 11830, 11838, 1, 0, 0, 0, 11831, 11834, 5, 313, 0, 0, 11832, 11835, 3, 558, 279, 0, 11833, 11835, 5, 30, 0, 0, 11834, 11832, 1, 0, 0, 0, 11834, 11833, 1, 0, 0, 0, 11835, 11836, 1, 0, 0, 0, 11836, 11838, 5, 7, 0, 0, 11837, 11825, 1, 0, 0, 0, 11837, 11831, 1, 0, 0, 0, 11838, 1713, 1, 0, 0, 0, 11839, 11842, 3, 1476, 738, 0, 11840, 11842, 5, 28, 0, 0, 11841, 11839, 1, 0, 0, 0, 11841, 11840, 1, 0, 0, 0, 11842, 1715, 1, 0, 0, 0, 11843, 11847, 1, 0, 0, 0, 11844, 11845, 5, 517, 0, 0, 11845, 11847, 3, 1718, 859, 0, 11846, 11843, 1, 0, 0, 0, 11846, 11844, 1, 0, 0, 0, 11847, 1717, 1, 0, 0, 0, 11848, 11850, 3, 1720, 860, 0, 11849, 11848, 1, 0, 0, 0, 11850, 11851, 1, 0, 0, 0, 11851, 11849, 1, 0, 0, 0, 11851, 11852, 1, 0, 0, 0, 11852, 1719, 1, 0, 0, 0, 11853, 11854, 5, 102, 0, 0, 11854, 11855, 3, 1722, 861, 0, 11855, 11856, 5, 93, 0, 0, 11856, 11857, 3, 1562, 781, 0, 11857, 1721, 1, 0, 0, 0, 11858, 11863, 3, 1724, 862, 0, 11859, 11860, 5, 82, 0, 0, 11860, 11862, 3, 1724, 862, 0, 11861, 11859, 1, 0, 0, 0, 11862, 11865, 1, 0, 0, 0, 11863, 11861, 1, 0, 0, 0, 11863, 11864, 1, 0, 0, 0, 11864, 1723, 1, 0, 0, 0, 11865, 11863, 1, 0, 0, 0, 11866, 11870, 3, 1734, 867, 0, 11867, 11868, 5, 511, 0, 0, 11868, 11870, 3, 1460, 730, 0, 11869, 11866, 1, 0, 0, 0, 11869, 11867, 1, 0, 0, 0, 11870, 1725, 1, 0, 0, 0, 11871, 11874, 1, 0, 0, 0, 11872, 11874, 3, 1526, 763, 0, 11873, 11871, 1, 0, 0, 0, 11873, 11872, 1, 0, 0, 0, 11874, 1727, 1, 0, 0, 0, 11875, 11878, 1, 0, 0, 0, 11876, 11878, 3, 1526, 763, 0, 11877, 11875, 1, 0, 0, 0, 11877, 11876, 1, 0, 0, 0, 11878, 1729, 1, 0, 0, 0, 11879, 11882, 1, 0, 0, 0, 11880, 11882, 3, 1734, 867, 0, 11881, 11879, 1, 0, 0, 0, 11881, 11880, 1, 0, 0, 0, 11882, 1731, 1, 0, 0, 0, 11883, 11884, 5, 102, 0, 0, 11884, 11885, 3, 1742, 871, 0, 11885, 1733, 1, 0, 0, 0, 11886, 11889, 3, 1476, 738, 0, 11887, 11889, 3, 1736, 868, 0, 11888, 11886, 1, 0, 0, 0, 11888, 11887, 1, 0, 0, 0, 11889, 1735, 1, 0, 0, 0, 11890, 11891, 7, 80, 0, 0, 11891, 1737, 1, 0, 0, 0, 11892, 11894, 3, 1386, 693, 0, 11893, 11892, 1, 0, 0, 0, 11893, 11894, 1, 0, 0, 0, 11894, 11896, 1, 0, 0, 0, 11895, 11897, 3, 1030, 515, 0, 11896, 11895, 1, 0, 0, 0, 11896, 11897, 1, 0, 0, 0, 11897, 11899, 1, 0, 0, 0, 11898, 11900, 3, 1104, 552, 0, 11899, 11898, 1, 0, 0, 0, 11899, 11900, 1, 0, 0, 0, 11900, 11902, 1, 0, 0, 0, 11901, 11903, 3, 1146, 573, 0, 11902, 11901, 1, 0, 0, 0, 11902, 11903, 1, 0, 0, 0, 11903, 11905, 1, 0, 0, 0, 11904, 11906, 3, 1074, 537, 0, 11905, 11904, 1, 0, 0, 0, 11905, 11906, 1, 0, 0, 0, 11906, 11908, 1, 0, 0, 0, 11907, 11909, 3, 1088, 544, 0, 11908, 11907, 1, 0, 0, 0, 11908, 11909, 1, 0, 0, 0, 11909, 11911, 1, 0, 0, 0, 11910, 11912, 3, 1290, 645, 0, 11911, 11910, 1, 0, 0, 0, 11911, 11912, 1, 0, 0, 0, 11912, 1739, 1, 0, 0, 0, 11913, 11914, 3, 1738, 869, 0, 11914, 1741, 1, 0, 0, 0, 11915, 11916, 3, 1738, 869, 0, 11916, 1743, 1, 0, 0, 0, 11917, 11918, 3, 1214, 607, 0, 11918, 1745, 1, 0, 0, 0, 11919, 11920, 3, 1214, 607, 0, 11920, 1747, 1, 0, 0, 0, 11921, 11923, 3, 6, 3, 0, 11922, 11924, 3, 1750, 875, 0, 11923, 11922, 1, 0, 0, 0, 11923, 11924, 1, 0, 0, 0, 11924, 1749, 1, 0, 0, 0, 11925, 11926, 5, 71, 0, 0, 11926, 11927, 3, 1032, 516, 0, 11927, 11928, 3, 1676, 838, 0, 11928, 1751, 1, 0, 0, 0, 1280, 1755, 1764, 1883, 1887, 1896, 1905, 1911, 1917, 1949, 1961, 1967, 1975, 1983, 1989, 1998, 2004, 2016, 2022, 2028, 2035, 2039, 2044, 2048, 2061, 2072, 2078, 2094, 2097, 2102, 2108, 2113, 2122, 2126, 2138, 2142, 2145, 2149, 2165, 2178, 2185, 2193, 2198, 2205, 2211, 2217, 2224, 2235, 2239, 2243, 2247, 2260, 2264, 2269, 2274, 2286, 2295, 2307, 2312, 2323, 2329, 2334, 2344, 2349, 2356, 2361, 2366, 2377, 2383, 2388, 2396, 2405, 2420, 2426, 2432, 2437, 2444, 2456, 2464, 2472, 2490, 2498, 2501, 2506, 2513, 2522, 2531, 2537, 2541, 2550, 2559, 2567, 2575, 2584, 2593, 2597, 2604, 2610, 2614, 2617, 2621, 2625, 2629, 2634, 2637, 2641, 2659, 2663, 2758, 2765, 2781, 2795, 2805, 2807, 2812, 2816, 2819, 2825, 2827, 2855, 2865, 2878, 2885, 2890, 2894, 2900, 2905, 2908, 2910, 2915, 2919, 2923, 2927, 2931, 2934, 2938, 2946, 2950, 2954, 2963, 2970, 2975, 2982, 2987, 2994, 2999, 3017, 3022, 3034, 3039, 3048, 3055, 3062, 3066, 3071, 3075, 3078, 3081, 3084, 3087, 3090, 3095, 3098, 3101, 3104, 3107, 3110, 3116, 3120, 3123, 3126, 3129, 3132, 3134, 3143, 3158, 3166, 3172, 3176, 3181, 3184, 3187, 3191, 3195, 3202, 3205, 3208, 3212, 3216, 3230, 3235, 3242, 3247, 3251, 3254, 3258, 3261, 3263, 3270, 3273, 3277, 3283, 3286, 3293, 3302, 3309, 3314, 3317, 3320, 3323, 3327, 3334, 3339, 3352, 3362, 3375, 3378, 3381, 3388, 3396, 3399, 3402, 3409, 3413, 3419, 3422, 3425, 3428, 3440, 3443, 3446, 3450, 3464, 3480, 3491, 3506, 3523, 3525, 3546, 3551, 3554, 3558, 3561, 3567, 3570, 3572, 3583, 3592, 3598, 3601, 3604, 3618, 3621, 3624, 3629, 3637, 3646, 3650, 3656, 3660, 3663, 3666, 3669, 3672, 3678, 3682, 3687, 3693, 3697, 3700, 3703, 3706, 3714, 3718, 3722, 3726, 3730, 3735, 3749, 3758, 3775, 3780, 3783, 3785, 3795, 3802, 3807, 3810, 3813, 3820, 3823, 3825, 3831, 3840, 3850, 3855, 3863, 3867, 3874, 3884, 3895, 4003, 4011, 4014, 4024, 4029, 4039, 4050, 4062, 4075, 4085, 4097, 4101, 4104, 4111, 4119, 4129, 4131, 4137, 4142, 4146, 4151, 4157, 4164, 4170, 4172, 4179, 4187, 4192, 4203, 4210, 4214, 4231, 4234, 4237, 4240, 4243, 4251, 4254, 4257, 4263, 4271, 4275, 4287, 4293, 4296, 4301, 4305, 4312, 4323, 4346, 4366, 4375, 4378, 4381, 4391, 4394, 4403, 4407, 4410, 4418, 4424, 4428, 4439, 4449, 4457, 4462, 4474, 4491, 4495, 4501, 4508, 4516, 4530, 4556, 4563, 4577, 4592, 4605, 4614, 4639, 4650, 4692, 4700, 4706, 4717, 4723, 4731, 4742, 4756, 4765, 4775, 4787, 4802, 4813, 4821, 4831, 4838, 4841, 4847, 4850, 4865, 4878, 4907, 4914, 4929, 4941, 4945, 4950, 4954, 4959, 4963, 4969, 4973, 4978, 4982, 4988, 4992, 4997, 5001, 5006, 5010, 5015, 5019, 5026, 5030, 5037, 5041, 5048, 5052, 5059, 5063, 5069, 5073, 5079, 5083, 5088, 5092, 5099, 5103, 5107, 5111, 5115, 5120, 5124, 5129, 5133, 5138, 5142, 5147, 5153, 5158, 5164, 5169, 5175, 5180, 5184, 5189, 5193, 5199, 5203, 5208, 5216, 5222, 5228, 5234, 5240, 5247, 5252, 5256, 5261, 5265, 5270, 5276, 5283, 5288, 5295, 5305, 5309, 5315, 5317, 5324, 5363, 5378, 5396, 5405, 5418, 5422, 5428, 5435, 5440, 5444, 5447, 5453, 5524, 5620, 5624, 5629, 5639, 5650, 5660, 5671, 5682, 5693, 5704, 5716, 5727, 5735, 5742, 5748, 5756, 5761, 5766, 5771, 5777, 5784, 5790, 5796, 5801, 5807, 5814, 5819, 5825, 5832, 5835, 5848, 5857, 5869, 5871, 5889, 5896, 5906, 5911, 5915, 5919, 5923, 5925, 5985, 5992, 5998, 6009, 6012, 6019, 6022, 6032, 6035, 6037, 6056, 6068, 6077, 6086, 6098, 6100, 6106, 6110, 6113, 6116, 6121, 6127, 6130, 6133, 6136, 6139, 6155, 6159, 6162, 6165, 6168, 6171, 6176, 6179, 6181, 6194, 6206, 6220, 6224, 6230, 6240, 6242, 6247, 6255, 6265, 6274, 6282, 6291, 6293, 6300, 6309, 6311, 6318, 6327, 6329, 6333, 6342, 6347, 6353, 6358, 6362, 6367, 6385, 6390, 6405, 6414, 6425, 6431, 6468, 6488, 6495, 6506, 6520, 6527, 6535, 6540, 6547, 6551, 6556, 6560, 6565, 6569, 6571, 6576, 6580, 6585, 6589, 6613, 6620, 6630, 6642, 6647, 6660, 6672, 6684, 6686, 6692, 6699, 6744, 6762, 6766, 6771, 6774, 6778, 6783, 6788, 6791, 6798, 6815, 6886, 6917, 6971, 6981, 6991, 7002, 7012, 7023, 7033, 7038, 7047, 7052, 7062, 7067, 7076, 7089, 7094, 7206, 7208, 7219, 7230, 7241, 7254, 7266, 7277, 7284, 7374, 7427, 7437, 7448, 7459, 7473, 7488, 7499, 7506, 7560, 7701, 7707, 7710, 7720, 7760, 7770, 7777, 7800, 7809, 7818, 7827, 7860, 7864, 7874, 7878, 7888, 7891, 7895, 7899, 7907, 7918, 7930, 7934, 7937, 7941, 7944, 7949, 7953, 7956, 7960, 7963, 7967, 7970, 7981, 7988, 8001, 8015, 8019, 8024, 8031, 8038, 8041, 8046, 8049, 8058, 8060, 8065, 8069, 8081, 8084, 8091, 8095, 8100, 8110, 8118, 8121, 8124, 8129, 8131, 8137, 8144, 8164, 8184, 8188, 8193, 8262, 8267, 8273, 8286, 8290, 8294, 8300, 8302, 8310, 8320, 8323, 8326, 8329, 8332, 8339, 8342, 8344, 8348, 8351, 8358, 8360, 8367, 8374, 8378, 8382, 8391, 8397, 8401, 8405, 8410, 8422, 8429, 8439, 8452, 8463, 8470, 8475, 8479, 8483, 8488, 8501, 8506, 8510, 8514, 8521, 8524, 8526, 8542, 8545, 8552, 8555, 8560, 8566, 8572, 8576, 8585, 8594, 8601, 8604, 8610, 8615, 8621, 8627, 8630, 8633, 8640, 8644, 8647, 8662, 8665, 8672, 8675, 8682, 8685, 8688, 8695, 8707, 8714, 8716, 8726, 8744, 8746, 8754, 8758, 8768, 8772, 8776, 8780, 8782, 8787, 8791, 8795, 8797, 8799, 8803, 8807, 8810, 8813, 8816, 8819, 8821, 8824, 8827, 8830, 8833, 8836, 8839, 8848, 8850, 8855, 8859, 8865, 8869, 8873, 8882, 8887, 8891, 8897, 8900, 8919, 8927, 8936, 8940, 8943, 8947, 8952, 8958, 8970, 8985, 8992, 8995, 8999, 9003, 9007, 9009, 9017, 9026, 9032, 9034, 9041, 9045, 9054, 9058, 9067, 9076, 9088, 9116, 9123, 9127, 9130, 9135, 9139, 9142, 9158, 9169, 9174, 9177, 9180, 9184, 9188, 9192, 9197, 9201, 9205, 9207, 9216, 9221, 9227, 9231, 9233, 9240, 9245, 9251, 9253, 9257, 9264, 9271, 9274, 9280, 9284, 9293, 9296, 9300, 9303, 9306, 9314, 9320, 9322, 9325, 9329, 9332, 9335, 9339, 9343, 9349, 9352, 9361, 9368, 9370, 9377, 9385, 9390, 9393, 9401, 9410, 9418, 9420, 9424, 9431, 9450, 9459, 9465, 9484, 9493, 9499, 9503, 9508, 9518, 9525, 9534, 9537, 9546, 9548, 9554, 9558, 9563, 9573, 9579, 9581, 9587, 9591, 9594, 9607, 9613, 9617, 9621, 9624, 9632, 9636, 9640, 9648, 9655, 9662, 9666, 9672, 9674, 9683, 9686, 9696, 9712, 9718, 9723, 9730, 9739, 9746, 9754, 9762, 9767, 9771, 9774, 9780, 9785, 9801, 9804, 9806, 9818, 9820, 9824, 9832, 9834, 9838, 9840, 9848, 9852, 9861, 9869, 9875, 9878, 9887, 9892, 9899, 9909, 9935, 9946, 9948, 9950, 9958, 9981, 9989, 9999, 10002, 10007, 10012, 10016, 10019, 10023, 10026, 10029, 10032, 10036, 10050, 10057, 10064, 10071, 10089, 10097, 10109, 10115, 10128, 10167, 10169, 10189, 10199, 10210, 10222, 10229, 10241, 10253, 10259, 10267, 10284, 10309, 10319, 10323, 10326, 10329, 10332, 10345, 10350, 10355, 10357, 10365, 10374, 10383, 10388, 10397, 10402, 10416, 10426, 10434, 10448, 10455, 10463, 10471, 10479, 10483, 10490, 10498, 10505, 10511, 10520, 10535, 10546, 10579, 10588, 10595, 10599, 10603, 10610, 10624, 10629, 10634, 10638, 10640, 10643, 10650, 10655, 10665, 10673, 10676, 10683, 10691, 10699, 10707, 10715, 10720, 10724, 10728, 10732, 10736, 10740, 10744, 10751, 10759, 10764, 10768, 10772, 10782, 10788, 10804, 10810, 10816, 10828, 10833, 10841, 10848, 10853, 10865, 10873, 10878, 10888, 10899, 10906, 10913, 10924, 10927, 10929, 10933, 10936, 10942, 10948, 10952, 10958, 10966, 10970, 10978, 11035, 11048, 11071, 11079, 11083, 11095, 11097, 11104, 11113, 11131, 11139, 11148, 11155, 11165, 11171, 11178, 11183, 11189, 11193, 11200, 11230, 11243, 11252, 11256, 11272, 11279, 11292, 11300, 11320, 11326, 11338, 11343, 11353, 11385, 11390, 11399, 11404, 11408, 11413, 11429, 11434, 11449, 11452, 11458, 11462, 11471, 11479, 11488, 11494, 11503, 11505, 11510, 11521, 11532, 11553, 11560, 11567, 11573, 11576, 11587, 11594, 11596, 11605, 11612, 11618, 11624, 11628, 11632, 11645, 11660, 11662, 11666, 11672, 11677, 11681, 11684, 11687, 11696, 11699, 11703, 11707, 11709, 11712, 11715, 11723, 11730, 11737, 11743, 11745, 11752, 11757, 11775, 11777, 11783, 11791, 11798, 11809, 11815, 11821, 11834, 11837, 11841, 11846, 11851, 11863, 11869, 11873, 11877, 11881, 11888, 11893, 11896, 11899, 11902, 11905, 11908, 11911, 11923] \ No newline at end of file +[4, 1, 590, 11832, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 2, 554, 7, 554, 2, 555, 7, 555, 2, 556, 7, 556, 2, 557, 7, 557, 2, 558, 7, 558, 2, 559, 7, 559, 2, 560, 7, 560, 2, 561, 7, 561, 2, 562, 7, 562, 2, 563, 7, 563, 2, 564, 7, 564, 2, 565, 7, 565, 2, 566, 7, 566, 2, 567, 7, 567, 2, 568, 7, 568, 2, 569, 7, 569, 2, 570, 7, 570, 2, 571, 7, 571, 2, 572, 7, 572, 2, 573, 7, 573, 2, 574, 7, 574, 2, 575, 7, 575, 2, 576, 7, 576, 2, 577, 7, 577, 2, 578, 7, 578, 2, 579, 7, 579, 2, 580, 7, 580, 2, 581, 7, 581, 2, 582, 7, 582, 2, 583, 7, 583, 2, 584, 7, 584, 2, 585, 7, 585, 2, 586, 7, 586, 2, 587, 7, 587, 2, 588, 7, 588, 2, 589, 7, 589, 2, 590, 7, 590, 2, 591, 7, 591, 2, 592, 7, 592, 2, 593, 7, 593, 2, 594, 7, 594, 2, 595, 7, 595, 2, 596, 7, 596, 2, 597, 7, 597, 2, 598, 7, 598, 2, 599, 7, 599, 2, 600, 7, 600, 2, 601, 7, 601, 2, 602, 7, 602, 2, 603, 7, 603, 2, 604, 7, 604, 2, 605, 7, 605, 2, 606, 7, 606, 2, 607, 7, 607, 2, 608, 7, 608, 2, 609, 7, 609, 2, 610, 7, 610, 2, 611, 7, 611, 2, 612, 7, 612, 2, 613, 7, 613, 2, 614, 7, 614, 2, 615, 7, 615, 2, 616, 7, 616, 2, 617, 7, 617, 2, 618, 7, 618, 2, 619, 7, 619, 2, 620, 7, 620, 2, 621, 7, 621, 2, 622, 7, 622, 2, 623, 7, 623, 2, 624, 7, 624, 2, 625, 7, 625, 2, 626, 7, 626, 2, 627, 7, 627, 2, 628, 7, 628, 2, 629, 7, 629, 2, 630, 7, 630, 2, 631, 7, 631, 2, 632, 7, 632, 2, 633, 7, 633, 2, 634, 7, 634, 2, 635, 7, 635, 2, 636, 7, 636, 2, 637, 7, 637, 2, 638, 7, 638, 2, 639, 7, 639, 2, 640, 7, 640, 2, 641, 7, 641, 2, 642, 7, 642, 2, 643, 7, 643, 2, 644, 7, 644, 2, 645, 7, 645, 2, 646, 7, 646, 2, 647, 7, 647, 2, 648, 7, 648, 2, 649, 7, 649, 2, 650, 7, 650, 2, 651, 7, 651, 2, 652, 7, 652, 2, 653, 7, 653, 2, 654, 7, 654, 2, 655, 7, 655, 2, 656, 7, 656, 2, 657, 7, 657, 2, 658, 7, 658, 2, 659, 7, 659, 2, 660, 7, 660, 2, 661, 7, 661, 2, 662, 7, 662, 2, 663, 7, 663, 2, 664, 7, 664, 2, 665, 7, 665, 2, 666, 7, 666, 2, 667, 7, 667, 2, 668, 7, 668, 2, 669, 7, 669, 2, 670, 7, 670, 2, 671, 7, 671, 2, 672, 7, 672, 2, 673, 7, 673, 2, 674, 7, 674, 2, 675, 7, 675, 2, 676, 7, 676, 2, 677, 7, 677, 2, 678, 7, 678, 2, 679, 7, 679, 2, 680, 7, 680, 2, 681, 7, 681, 2, 682, 7, 682, 2, 683, 7, 683, 2, 684, 7, 684, 2, 685, 7, 685, 2, 686, 7, 686, 2, 687, 7, 687, 2, 688, 7, 688, 2, 689, 7, 689, 2, 690, 7, 690, 2, 691, 7, 691, 2, 692, 7, 692, 2, 693, 7, 693, 2, 694, 7, 694, 2, 695, 7, 695, 2, 696, 7, 696, 2, 697, 7, 697, 2, 698, 7, 698, 2, 699, 7, 699, 2, 700, 7, 700, 2, 701, 7, 701, 2, 702, 7, 702, 2, 703, 7, 703, 2, 704, 7, 704, 2, 705, 7, 705, 2, 706, 7, 706, 2, 707, 7, 707, 2, 708, 7, 708, 2, 709, 7, 709, 2, 710, 7, 710, 2, 711, 7, 711, 2, 712, 7, 712, 2, 713, 7, 713, 2, 714, 7, 714, 2, 715, 7, 715, 2, 716, 7, 716, 2, 717, 7, 717, 2, 718, 7, 718, 2, 719, 7, 719, 2, 720, 7, 720, 2, 721, 7, 721, 2, 722, 7, 722, 2, 723, 7, 723, 2, 724, 7, 724, 2, 725, 7, 725, 2, 726, 7, 726, 2, 727, 7, 727, 2, 728, 7, 728, 2, 729, 7, 729, 2, 730, 7, 730, 2, 731, 7, 731, 2, 732, 7, 732, 2, 733, 7, 733, 2, 734, 7, 734, 2, 735, 7, 735, 2, 736, 7, 736, 2, 737, 7, 737, 2, 738, 7, 738, 2, 739, 7, 739, 2, 740, 7, 740, 2, 741, 7, 741, 2, 742, 7, 742, 2, 743, 7, 743, 2, 744, 7, 744, 2, 745, 7, 745, 2, 746, 7, 746, 2, 747, 7, 747, 2, 748, 7, 748, 2, 749, 7, 749, 2, 750, 7, 750, 2, 751, 7, 751, 2, 752, 7, 752, 2, 753, 7, 753, 2, 754, 7, 754, 2, 755, 7, 755, 2, 756, 7, 756, 2, 757, 7, 757, 2, 758, 7, 758, 2, 759, 7, 759, 2, 760, 7, 760, 2, 761, 7, 761, 2, 762, 7, 762, 2, 763, 7, 763, 2, 764, 7, 764, 2, 765, 7, 765, 2, 766, 7, 766, 2, 767, 7, 767, 2, 768, 7, 768, 2, 769, 7, 769, 2, 770, 7, 770, 2, 771, 7, 771, 2, 772, 7, 772, 2, 773, 7, 773, 2, 774, 7, 774, 2, 775, 7, 775, 2, 776, 7, 776, 2, 777, 7, 777, 2, 778, 7, 778, 2, 779, 7, 779, 2, 780, 7, 780, 2, 781, 7, 781, 2, 782, 7, 782, 2, 783, 7, 783, 2, 784, 7, 784, 2, 785, 7, 785, 2, 786, 7, 786, 2, 787, 7, 787, 2, 788, 7, 788, 2, 789, 7, 789, 2, 790, 7, 790, 2, 791, 7, 791, 2, 792, 7, 792, 2, 793, 7, 793, 2, 794, 7, 794, 2, 795, 7, 795, 2, 796, 7, 796, 2, 797, 7, 797, 2, 798, 7, 798, 2, 799, 7, 799, 2, 800, 7, 800, 2, 801, 7, 801, 2, 802, 7, 802, 2, 803, 7, 803, 2, 804, 7, 804, 2, 805, 7, 805, 2, 806, 7, 806, 2, 807, 7, 807, 2, 808, 7, 808, 2, 809, 7, 809, 2, 810, 7, 810, 2, 811, 7, 811, 2, 812, 7, 812, 2, 813, 7, 813, 2, 814, 7, 814, 2, 815, 7, 815, 2, 816, 7, 816, 2, 817, 7, 817, 2, 818, 7, 818, 2, 819, 7, 819, 2, 820, 7, 820, 2, 821, 7, 821, 2, 822, 7, 822, 2, 823, 7, 823, 2, 824, 7, 824, 2, 825, 7, 825, 2, 826, 7, 826, 2, 827, 7, 827, 2, 828, 7, 828, 2, 829, 7, 829, 2, 830, 7, 830, 2, 831, 7, 831, 2, 832, 7, 832, 2, 833, 7, 833, 2, 834, 7, 834, 2, 835, 7, 835, 2, 836, 7, 836, 2, 837, 7, 837, 2, 838, 7, 838, 2, 839, 7, 839, 2, 840, 7, 840, 2, 841, 7, 841, 2, 842, 7, 842, 2, 843, 7, 843, 2, 844, 7, 844, 2, 845, 7, 845, 2, 846, 7, 846, 2, 847, 7, 847, 2, 848, 7, 848, 2, 849, 7, 849, 2, 850, 7, 850, 2, 851, 7, 851, 2, 852, 7, 852, 2, 853, 7, 853, 2, 854, 7, 854, 2, 855, 7, 855, 2, 856, 7, 856, 2, 857, 7, 857, 2, 858, 7, 858, 2, 859, 7, 859, 2, 860, 7, 860, 2, 861, 7, 861, 2, 862, 7, 862, 2, 863, 7, 863, 2, 864, 7, 864, 2, 865, 7, 865, 2, 866, 7, 866, 2, 867, 7, 867, 2, 868, 7, 868, 2, 869, 7, 869, 2, 870, 7, 870, 2, 871, 7, 871, 2, 872, 7, 872, 2, 873, 7, 873, 1, 0, 5, 0, 1750, 8, 0, 10, 0, 12, 0, 1753, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 1761, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1880, 8, 3, 1, 4, 1, 4, 3, 4, 1884, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1893, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 5, 8, 1900, 8, 8, 10, 8, 12, 8, 1903, 9, 8, 1, 9, 5, 9, 1906, 8, 9, 10, 9, 12, 9, 1909, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1914, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1946, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1958, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1964, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1972, 8, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1980, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1986, 8, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1995, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 2001, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2013, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 2019, 8, 17, 1, 18, 1, 18, 5, 18, 2023, 8, 18, 10, 18, 12, 18, 2026, 9, 18, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2032, 8, 19, 1, 19, 1, 19, 3, 19, 2036, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2041, 8, 19, 1, 19, 1, 19, 3, 19, 2045, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2058, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 2069, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 2075, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 2091, 8, 23, 1, 23, 3, 23, 2094, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 2099, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 2105, 8, 24, 1, 25, 5, 25, 2108, 8, 25, 10, 25, 12, 25, 2111, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 2119, 8, 26, 1, 27, 1, 27, 3, 27, 2123, 8, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 2135, 8, 28, 1, 29, 1, 29, 3, 29, 2139, 8, 29, 1, 29, 3, 29, 2142, 8, 29, 1, 29, 1, 29, 3, 29, 2146, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2157, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 2175, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 2180, 8, 31, 10, 31, 12, 31, 2183, 9, 31, 1, 32, 1, 32, 1, 32, 5, 32, 2188, 8, 32, 10, 32, 12, 32, 2191, 9, 32, 1, 33, 1, 33, 3, 33, 2195, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 2202, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 2208, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 2214, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2221, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 2232, 8, 37, 1, 38, 1, 38, 3, 38, 2236, 8, 38, 1, 39, 1, 39, 3, 39, 2240, 8, 39, 1, 40, 1, 40, 3, 40, 2244, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 2257, 8, 42, 1, 43, 1, 43, 3, 43, 2261, 8, 43, 1, 44, 1, 44, 1, 44, 3, 44, 2266, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 2271, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 2283, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 2292, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 2304, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2309, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2320, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2326, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2331, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2341, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2346, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2353, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2358, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2363, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2374, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2380, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2385, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2393, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2402, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2417, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2423, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2429, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2434, 8, 52, 1, 53, 1, 53, 1, 53, 5, 53, 2439, 8, 53, 10, 53, 12, 53, 2442, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2453, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2459, 8, 55, 10, 55, 12, 55, 2462, 9, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 2469, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2487, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2496, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2510, 8, 60, 1, 60, 1, 60, 3, 60, 2514, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2529, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2537, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2547, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2587, 8, 60, 1, 60, 3, 60, 2590, 8, 60, 1, 60, 1, 60, 3, 60, 2594, 8, 60, 1, 60, 1, 60, 3, 60, 2598, 8, 60, 1, 60, 3, 60, 2601, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2606, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2613, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2622, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2628, 8, 60, 1, 60, 1, 60, 3, 60, 2632, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2641, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2649, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2658, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2667, 8, 60, 1, 60, 1, 60, 3, 60, 2671, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2678, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2684, 8, 60, 1, 60, 1, 60, 3, 60, 2688, 8, 60, 1, 60, 1, 60, 3, 60, 2692, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2697, 8, 60, 1, 60, 3, 60, 2700, 8, 60, 1, 60, 1, 60, 3, 60, 2704, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2710, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2717, 8, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2733, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 5, 68, 2745, 8, 68, 10, 68, 12, 68, 2748, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2757, 8, 69, 3, 69, 2759, 8, 69, 1, 70, 4, 70, 2762, 8, 70, 11, 70, 12, 70, 2763, 1, 71, 1, 71, 3, 71, 2768, 8, 71, 1, 71, 3, 71, 2771, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2777, 8, 71, 3, 71, 2779, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2807, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2815, 8, 74, 10, 74, 12, 74, 2818, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 5, 76, 2828, 8, 76, 10, 76, 12, 76, 2831, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2837, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2842, 8, 77, 1, 77, 1, 77, 3, 77, 2846, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2852, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2857, 8, 77, 1, 77, 3, 77, 2860, 8, 77, 3, 77, 2862, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2867, 8, 78, 1, 79, 1, 79, 3, 79, 2871, 8, 79, 1, 79, 1, 79, 3, 79, 2875, 8, 79, 1, 79, 1, 79, 3, 79, 2879, 8, 79, 1, 79, 1, 79, 3, 79, 2883, 8, 79, 1, 79, 3, 79, 2886, 8, 79, 1, 79, 1, 79, 3, 79, 2890, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2898, 8, 79, 1, 79, 1, 79, 3, 79, 2902, 8, 79, 1, 79, 1, 79, 3, 79, 2906, 8, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2915, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2922, 8, 83, 1, 84, 5, 84, 2925, 8, 84, 10, 84, 12, 84, 2928, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2934, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2939, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2946, 8, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2951, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2969, 8, 85, 1, 86, 1, 86, 1, 87, 3, 87, 2974, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2984, 8, 89, 10, 89, 12, 89, 2987, 9, 89, 1, 90, 1, 90, 3, 90, 2991, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 3000, 8, 91, 1, 92, 1, 92, 1, 92, 5, 92, 3005, 8, 92, 10, 92, 12, 92, 3008, 9, 92, 1, 93, 1, 93, 1, 94, 1, 94, 3, 94, 3014, 8, 94, 1, 94, 1, 94, 3, 94, 3018, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3023, 8, 94, 1, 94, 1, 94, 3, 94, 3027, 8, 94, 1, 94, 3, 94, 3030, 8, 94, 1, 94, 3, 94, 3033, 8, 94, 1, 94, 3, 94, 3036, 8, 94, 1, 94, 3, 94, 3039, 8, 94, 1, 94, 3, 94, 3042, 8, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3047, 8, 94, 1, 94, 3, 94, 3050, 8, 94, 1, 94, 3, 94, 3053, 8, 94, 1, 94, 3, 94, 3056, 8, 94, 1, 94, 3, 94, 3059, 8, 94, 1, 94, 3, 94, 3062, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 3068, 8, 94, 1, 94, 1, 94, 3, 94, 3072, 8, 94, 1, 94, 3, 94, 3075, 8, 94, 1, 94, 3, 94, 3078, 8, 94, 1, 94, 3, 94, 3081, 8, 94, 1, 94, 3, 94, 3084, 8, 94, 3, 94, 3086, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3095, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 5, 99, 3108, 8, 99, 10, 99, 12, 99, 3111, 9, 99, 1, 100, 1, 100, 1, 100, 5, 100, 3116, 8, 100, 10, 100, 12, 100, 3119, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3124, 8, 101, 1, 102, 1, 102, 3, 102, 3128, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3133, 8, 103, 1, 103, 3, 103, 3136, 8, 103, 1, 103, 3, 103, 3139, 8, 103, 1, 103, 1, 103, 3, 103, 3143, 8, 103, 1, 103, 1, 103, 3, 103, 3147, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 3, 104, 3154, 8, 104, 1, 104, 3, 104, 3157, 8, 104, 1, 104, 3, 104, 3160, 8, 104, 1, 104, 1, 104, 3, 104, 3164, 8, 104, 1, 104, 1, 104, 3, 104, 3168, 8, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3182, 8, 106, 1, 107, 1, 107, 1, 107, 3, 107, 3187, 8, 107, 1, 107, 1, 107, 1, 108, 5, 108, 3192, 8, 108, 10, 108, 12, 108, 3195, 9, 108, 1, 109, 1, 109, 3, 109, 3199, 8, 109, 1, 109, 1, 109, 3, 109, 3203, 8, 109, 1, 109, 3, 109, 3206, 8, 109, 1, 109, 1, 109, 3, 109, 3210, 8, 109, 1, 109, 3, 109, 3213, 8, 109, 3, 109, 3215, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3222, 8, 110, 1, 110, 3, 110, 3225, 8, 110, 1, 110, 1, 110, 3, 110, 3229, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3235, 8, 110, 1, 110, 3, 110, 3238, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3245, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3254, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3261, 8, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3266, 8, 110, 1, 110, 3, 110, 3269, 8, 110, 1, 110, 3, 110, 3272, 8, 110, 1, 110, 3, 110, 3275, 8, 110, 1, 111, 1, 111, 3, 111, 3279, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 3, 112, 3286, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3291, 8, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 5, 116, 3302, 8, 116, 10, 116, 12, 116, 3305, 9, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3314, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3327, 8, 119, 1, 119, 3, 119, 3330, 8, 119, 1, 119, 3, 119, 3333, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3340, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3348, 8, 119, 1, 119, 3, 119, 3351, 8, 119, 1, 119, 3, 119, 3354, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3361, 8, 119, 1, 119, 1, 119, 3, 119, 3365, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3371, 8, 119, 1, 119, 3, 119, 3374, 8, 119, 1, 119, 3, 119, 3377, 8, 119, 1, 119, 3, 119, 3380, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3392, 8, 119, 1, 119, 3, 119, 3395, 8, 119, 1, 119, 3, 119, 3398, 8, 119, 1, 119, 1, 119, 3, 119, 3402, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 5, 122, 3414, 8, 122, 10, 122, 12, 122, 3417, 9, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 5, 125, 3430, 8, 125, 10, 125, 12, 125, 3433, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3443, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3458, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3475, 8, 131, 3, 131, 3477, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 5, 135, 3496, 8, 135, 10, 135, 12, 135, 3499, 9, 135, 1, 136, 1, 136, 3, 136, 3503, 8, 136, 1, 136, 3, 136, 3506, 8, 136, 1, 136, 1, 136, 3, 136, 3510, 8, 136, 1, 136, 3, 136, 3513, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3519, 8, 136, 1, 136, 3, 136, 3522, 8, 136, 3, 136, 3524, 8, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3535, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3544, 8, 139, 1, 140, 1, 140, 1, 140, 1, 141, 3, 141, 3550, 8, 141, 1, 141, 3, 141, 3553, 8, 141, 1, 141, 3, 141, 3556, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 3, 144, 3570, 8, 144, 1, 144, 3, 144, 3573, 8, 144, 1, 144, 3, 144, 3576, 8, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3581, 8, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 3, 145, 3589, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 3, 146, 3598, 8, 146, 1, 146, 1, 146, 3, 146, 3602, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3608, 8, 146, 1, 147, 1, 147, 3, 147, 3612, 8, 147, 1, 147, 3, 147, 3615, 8, 147, 1, 147, 3, 147, 3618, 8, 147, 1, 147, 3, 147, 3621, 8, 147, 1, 147, 3, 147, 3624, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3630, 8, 148, 1, 149, 1, 149, 3, 149, 3634, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3639, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3645, 8, 149, 1, 150, 1, 150, 3, 150, 3649, 8, 150, 1, 150, 3, 150, 3652, 8, 150, 1, 150, 3, 150, 3655, 8, 150, 1, 150, 3, 150, 3658, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3666, 8, 152, 1, 152, 1, 152, 3, 152, 3670, 8, 152, 1, 153, 1, 153, 3, 153, 3674, 8, 153, 1, 153, 1, 153, 3, 153, 3678, 8, 153, 1, 153, 1, 153, 3, 153, 3682, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 3687, 8, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 4, 157, 3699, 8, 157, 11, 157, 12, 157, 3700, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3710, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3727, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3732, 8, 158, 1, 158, 3, 158, 3735, 8, 158, 3, 158, 3737, 8, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3747, 8, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3752, 8, 161, 10, 161, 12, 161, 3755, 9, 161, 1, 162, 1, 162, 3, 162, 3759, 8, 162, 1, 162, 3, 162, 3762, 8, 162, 1, 162, 3, 162, 3765, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3772, 8, 162, 1, 162, 3, 162, 3775, 8, 162, 3, 162, 3777, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 3, 164, 3783, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3792, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3802, 8, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3807, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 3, 171, 3815, 8, 171, 1, 171, 1, 171, 3, 171, 3819, 8, 171, 1, 171, 1, 171, 1, 172, 5, 172, 3824, 8, 172, 10, 172, 12, 172, 3827, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3836, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 5, 175, 3845, 8, 175, 10, 175, 12, 175, 3848, 9, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 3955, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3963, 8, 178, 1, 178, 3, 178, 3966, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3976, 8, 179, 1, 180, 4, 180, 3979, 8, 180, 11, 180, 12, 180, 3980, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3991, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4002, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 4012, 8, 184, 10, 184, 12, 184, 4015, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 5, 186, 4025, 8, 186, 10, 186, 12, 186, 4028, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4037, 8, 187, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 3, 191, 4049, 8, 191, 1, 191, 1, 191, 3, 191, 4053, 8, 191, 1, 191, 3, 191, 4056, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4063, 8, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4071, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4081, 8, 195, 3, 195, 4083, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4089, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4094, 8, 196, 1, 196, 1, 196, 3, 196, 4098, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4103, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4109, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4116, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4122, 8, 196, 3, 196, 4124, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4131, 8, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 4139, 8, 197, 1, 198, 1, 198, 1, 198, 3, 198, 4144, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4155, 8, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4162, 8, 200, 1, 201, 1, 201, 3, 201, 4166, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4183, 8, 203, 1, 203, 3, 203, 4186, 8, 203, 1, 203, 3, 203, 4189, 8, 203, 1, 203, 3, 203, 4192, 8, 203, 1, 203, 3, 203, 4195, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4203, 8, 204, 1, 204, 3, 204, 4206, 8, 204, 1, 204, 3, 204, 4209, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4215, 8, 205, 1, 205, 1, 205, 1, 206, 1, 206, 5, 206, 4221, 8, 206, 10, 206, 12, 206, 4224, 9, 206, 1, 206, 3, 206, 4227, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4239, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4245, 8, 206, 1, 207, 3, 207, 4248, 8, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4253, 8, 207, 1, 207, 1, 207, 3, 207, 4257, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4264, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4275, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4298, 8, 212, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 3, 217, 4318, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4327, 8, 217, 1, 217, 3, 217, 4330, 8, 217, 1, 217, 3, 217, 4333, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4343, 8, 217, 1, 217, 3, 217, 4346, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4355, 8, 217, 1, 217, 1, 217, 3, 217, 4359, 8, 217, 1, 217, 3, 217, 4362, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 4370, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 4376, 8, 218, 1, 219, 1, 219, 3, 219, 4380, 8, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 5, 221, 4389, 8, 221, 10, 221, 12, 221, 4392, 9, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4401, 8, 222, 1, 223, 1, 223, 1, 223, 1, 224, 4, 224, 4407, 8, 224, 11, 224, 12, 224, 4408, 1, 225, 1, 225, 1, 225, 3, 225, 4414, 8, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 3, 229, 4426, 8, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 4443, 8, 233, 1, 234, 1, 234, 3, 234, 4447, 8, 234, 1, 234, 1, 234, 5, 234, 4451, 8, 234, 10, 234, 12, 234, 4454, 9, 234, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 4460, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 5, 237, 4466, 8, 237, 10, 237, 12, 237, 4469, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 4482, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 4508, 8, 239, 1, 240, 1, 240, 1, 240, 5, 240, 4513, 8, 240, 10, 240, 12, 240, 4516, 9, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 5, 242, 4527, 8, 242, 10, 242, 12, 242, 4530, 9, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 3, 244, 4540, 8, 244, 1, 244, 3, 244, 4543, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 4556, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4565, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4590, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4601, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4643, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4651, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 4657, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 5, 248, 4666, 8, 248, 10, 248, 12, 248, 4669, 9, 248, 1, 249, 1, 249, 1, 249, 3, 249, 4674, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4682, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 5, 252, 4691, 8, 252, 10, 252, 12, 252, 4694, 9, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 5, 255, 4705, 8, 255, 10, 255, 12, 255, 4708, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4716, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4721, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 4732, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4743, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4751, 8, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 5, 259, 4759, 8, 259, 10, 259, 12, 259, 4762, 9, 259, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4768, 8, 260, 1, 260, 3, 260, 4771, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4777, 8, 260, 1, 260, 3, 260, 4780, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4795, 8, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 4808, 8, 263, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 4837, 8, 266, 1, 267, 1, 267, 1, 267, 5, 267, 4842, 8, 267, 10, 267, 12, 267, 4845, 9, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 4859, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 3, 270, 4871, 8, 270, 1, 270, 1, 270, 3, 270, 4875, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4880, 8, 270, 1, 270, 1, 270, 3, 270, 4884, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4889, 8, 270, 1, 270, 1, 270, 3, 270, 4893, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4899, 8, 270, 1, 270, 1, 270, 3, 270, 4903, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4908, 8, 270, 1, 270, 1, 270, 3, 270, 4912, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4918, 8, 270, 1, 270, 1, 270, 3, 270, 4922, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4927, 8, 270, 1, 270, 1, 270, 3, 270, 4931, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4936, 8, 270, 1, 270, 1, 270, 3, 270, 4940, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4945, 8, 270, 1, 270, 1, 270, 3, 270, 4949, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4956, 8, 270, 1, 270, 1, 270, 3, 270, 4960, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4967, 8, 270, 1, 270, 1, 270, 3, 270, 4971, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4978, 8, 270, 1, 270, 1, 270, 3, 270, 4982, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4989, 8, 270, 1, 270, 1, 270, 3, 270, 4993, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 4999, 8, 270, 1, 270, 1, 270, 3, 270, 5003, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5009, 8, 270, 1, 270, 1, 270, 3, 270, 5013, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5018, 8, 270, 1, 270, 1, 270, 3, 270, 5022, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5029, 8, 270, 1, 270, 1, 270, 3, 270, 5033, 8, 270, 1, 270, 1, 270, 3, 270, 5037, 8, 270, 1, 270, 1, 270, 3, 270, 5041, 8, 270, 1, 270, 1, 270, 3, 270, 5045, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5050, 8, 270, 1, 270, 1, 270, 3, 270, 5054, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5059, 8, 270, 1, 270, 1, 270, 3, 270, 5063, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5068, 8, 270, 1, 270, 1, 270, 3, 270, 5072, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5077, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5083, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5088, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5094, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5099, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5105, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5110, 8, 270, 1, 270, 1, 270, 3, 270, 5114, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5119, 8, 270, 1, 270, 1, 270, 3, 270, 5123, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5129, 8, 270, 1, 270, 1, 270, 3, 270, 5133, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5138, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5146, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5152, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5158, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5164, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5170, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5177, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5182, 8, 270, 1, 270, 1, 270, 3, 270, 5186, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5191, 8, 270, 1, 270, 1, 270, 3, 270, 5195, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5200, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5206, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5213, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5218, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5225, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5235, 8, 270, 1, 270, 1, 270, 3, 270, 5239, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5245, 8, 270, 3, 270, 5247, 8, 270, 1, 271, 1, 271, 1, 271, 5, 271, 5252, 8, 271, 10, 271, 12, 271, 5255, 9, 271, 1, 272, 3, 272, 5258, 8, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5263, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5281, 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5296, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5314, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 5, 275, 5321, 8, 275, 10, 275, 12, 275, 5324, 9, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 5332, 8, 277, 1, 278, 1, 278, 3, 278, 5336, 8, 278, 1, 279, 1, 279, 4, 279, 5340, 8, 279, 11, 279, 12, 279, 5341, 1, 280, 1, 280, 1, 280, 5, 280, 5347, 8, 280, 10, 280, 12, 280, 5350, 9, 280, 1, 281, 1, 281, 3, 281, 5354, 8, 281, 1, 281, 1, 281, 1, 281, 5, 281, 5359, 8, 281, 10, 281, 12, 281, 5362, 9, 281, 1, 281, 1, 281, 3, 281, 5366, 8, 281, 1, 281, 3, 281, 5369, 8, 281, 1, 282, 3, 282, 5372, 8, 282, 1, 282, 1, 282, 3, 282, 5376, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5447, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5543, 8, 283, 1, 284, 1, 284, 3, 284, 5547, 8, 284, 1, 285, 1, 285, 1, 285, 3, 285, 5552, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5563, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5574, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5585, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5596, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5607, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5619, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5630, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5641, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5651, 8, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 5658, 8, 285, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 5665, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5671, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5679, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5684, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5689, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5694, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5700, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5707, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5713, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5719, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5724, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5730, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5737, 8, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5742, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5748, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5755, 8, 289, 1, 289, 3, 289, 5758, 8, 289, 1, 290, 1, 290, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 5771, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5780, 8, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 5792, 8, 293, 3, 293, 5794, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 5812, 8, 294, 1, 295, 1, 295, 1, 295, 5, 295, 5817, 8, 295, 10, 295, 12, 295, 5820, 9, 295, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 5, 297, 5827, 8, 297, 10, 297, 12, 297, 5830, 9, 297, 1, 298, 1, 298, 3, 298, 5834, 8, 298, 1, 298, 1, 298, 3, 298, 5838, 8, 298, 1, 298, 1, 298, 3, 298, 5842, 8, 298, 1, 298, 1, 298, 3, 298, 5846, 8, 298, 3, 298, 5848, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 5908, 8, 299, 1, 300, 1, 300, 1, 300, 5, 300, 5913, 8, 300, 10, 300, 12, 300, 5916, 9, 300, 1, 301, 1, 301, 1, 301, 3, 301, 5921, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5932, 8, 303, 1, 303, 3, 303, 5935, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 5942, 8, 304, 1, 304, 3, 304, 5945, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 5955, 8, 304, 1, 304, 3, 304, 5958, 8, 304, 3, 304, 5960, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 5, 308, 5977, 8, 308, 10, 308, 12, 308, 5980, 9, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 5991, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6000, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6009, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6021, 8, 310, 3, 310, 6023, 8, 310, 1, 311, 1, 311, 1, 312, 1, 312, 3, 312, 6029, 8, 312, 1, 312, 1, 312, 3, 312, 6033, 8, 312, 1, 312, 3, 312, 6036, 8, 312, 1, 312, 3, 312, 6039, 8, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6044, 8, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6050, 8, 312, 1, 312, 3, 312, 6053, 8, 312, 1, 312, 3, 312, 6056, 8, 312, 1, 312, 3, 312, 6059, 8, 312, 1, 312, 3, 312, 6062, 8, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 5, 317, 6076, 8, 317, 10, 317, 12, 317, 6079, 9, 317, 1, 318, 3, 318, 6082, 8, 318, 1, 318, 3, 318, 6085, 8, 318, 1, 318, 3, 318, 6088, 8, 318, 1, 318, 3, 318, 6091, 8, 318, 1, 318, 3, 318, 6094, 8, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6099, 8, 318, 1, 318, 3, 318, 6102, 8, 318, 3, 318, 6104, 8, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 3, 319, 6117, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 5, 321, 6127, 8, 321, 10, 321, 12, 321, 6130, 9, 321, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6143, 8, 325, 1, 326, 1, 326, 3, 326, 6147, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6153, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6163, 8, 326, 3, 326, 6165, 8, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6170, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 5, 327, 6176, 8, 327, 10, 327, 12, 327, 6179, 9, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 6188, 8, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6195, 8, 330, 10, 330, 12, 330, 6198, 9, 330, 1, 331, 1, 331, 1, 331, 5, 331, 6203, 8, 331, 10, 331, 12, 331, 6206, 9, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6214, 8, 332, 3, 332, 6216, 8, 332, 1, 333, 1, 333, 1, 333, 5, 333, 6221, 8, 333, 10, 333, 12, 333, 6224, 9, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6232, 8, 334, 3, 334, 6234, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6239, 8, 335, 10, 335, 12, 335, 6242, 9, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 6250, 8, 336, 3, 336, 6252, 8, 336, 1, 337, 1, 337, 3, 337, 6256, 8, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 5, 338, 6263, 8, 338, 10, 338, 12, 338, 6266, 9, 338, 1, 339, 1, 339, 3, 339, 6270, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6276, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6281, 8, 339, 1, 340, 1, 340, 3, 340, 6285, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6290, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 6308, 8, 343, 1, 344, 1, 344, 1, 344, 3, 344, 6313, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 6328, 8, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 5, 347, 6335, 8, 347, 10, 347, 12, 347, 6338, 9, 347, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 5, 349, 6346, 8, 349, 10, 349, 12, 349, 6349, 9, 349, 1, 350, 4, 350, 6352, 8, 350, 11, 350, 12, 350, 6353, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 6391, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6411, 8, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 6418, 8, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 5, 353, 6427, 8, 353, 10, 353, 12, 353, 6430, 9, 353, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 5, 356, 6441, 8, 356, 10, 356, 12, 356, 6444, 9, 356, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 6450, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6458, 8, 358, 1, 359, 4, 359, 6461, 8, 359, 11, 359, 12, 359, 6462, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 3, 361, 6470, 8, 361, 1, 361, 1, 361, 3, 361, 6474, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 6479, 8, 361, 1, 361, 1, 361, 3, 361, 6483, 8, 361, 1, 361, 1, 361, 1, 361, 3, 361, 6488, 8, 361, 1, 361, 1, 361, 3, 361, 6492, 8, 361, 3, 361, 6494, 8, 361, 1, 362, 1, 362, 1, 362, 3, 362, 6499, 8, 362, 1, 362, 1, 362, 3, 362, 6503, 8, 362, 1, 363, 1, 363, 1, 363, 3, 363, 6508, 8, 363, 1, 363, 1, 363, 3, 363, 6512, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6536, 8, 364, 1, 365, 1, 365, 1, 365, 5, 365, 6541, 8, 365, 10, 365, 12, 365, 6544, 9, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 5, 366, 6551, 8, 366, 10, 366, 12, 366, 6554, 9, 366, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 369, 4, 369, 6563, 8, 369, 11, 369, 12, 369, 6564, 1, 370, 1, 370, 1, 370, 3, 370, 6570, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 6583, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 6595, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 6607, 8, 371, 3, 371, 6609, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 6615, 8, 372, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 3, 374, 6622, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 3, 375, 6667, 8, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 6685, 8, 376, 1, 377, 1, 377, 3, 377, 6689, 8, 377, 1, 377, 1, 377, 1, 377, 3, 377, 6694, 8, 377, 1, 377, 3, 377, 6697, 8, 377, 1, 378, 1, 378, 3, 378, 6701, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 6706, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 6711, 8, 378, 1, 378, 3, 378, 6714, 8, 378, 1, 379, 1, 379, 1, 379, 5, 379, 6719, 8, 379, 10, 379, 12, 379, 6722, 9, 379, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 6738, 8, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6809, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6840, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6894, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6904, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6914, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6925, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6935, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6946, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6956, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6961, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6970, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6975, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6985, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6990, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 6999, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7012, 8, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7017, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7129, 8, 382, 3, 382, 7131, 8, 382, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7140, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7151, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7162, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7175, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7187, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7198, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7205, 8, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7295, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7348, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7358, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7369, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7380, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7394, 8, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 5, 388, 7407, 8, 388, 10, 388, 12, 388, 7410, 9, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7420, 8, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7427, 8, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7481, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7622, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7628, 8, 393, 1, 393, 3, 393, 7631, 8, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7641, 8, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7681, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7691, 8, 397, 1, 398, 1, 398, 1, 398, 5, 398, 7696, 8, 398, 10, 398, 12, 398, 7699, 9, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7721, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7730, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7739, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7748, 8, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7781, 8, 400, 1, 401, 1, 401, 3, 401, 7785, 8, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7795, 8, 401, 1, 401, 1, 401, 3, 401, 7799, 8, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7809, 8, 402, 1, 403, 3, 403, 7812, 8, 403, 1, 403, 1, 403, 3, 403, 7816, 8, 403, 5, 403, 7818, 8, 403, 10, 403, 12, 403, 7821, 9, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7828, 8, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7839, 8, 408, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7851, 8, 411, 1, 412, 1, 412, 3, 412, 7855, 8, 412, 1, 412, 3, 412, 7858, 8, 412, 1, 412, 1, 412, 3, 412, 7862, 8, 412, 1, 412, 3, 412, 7865, 8, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7870, 8, 412, 1, 412, 1, 412, 3, 412, 7874, 8, 412, 1, 412, 3, 412, 7877, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7883, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7894, 8, 412, 1, 412, 3, 412, 7897, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7904, 8, 412, 1, 412, 1, 412, 3, 412, 7908, 8, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7913, 8, 412, 1, 412, 3, 412, 7916, 8, 412, 3, 412, 7918, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7932, 8, 414, 1, 415, 1, 415, 3, 415, 7936, 8, 415, 1, 415, 5, 415, 7939, 8, 415, 10, 415, 12, 415, 7942, 9, 415, 1, 416, 1, 416, 1, 417, 1, 417, 3, 417, 7948, 8, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 3, 418, 7955, 8, 418, 1, 418, 3, 418, 7958, 8, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7963, 8, 418, 1, 418, 3, 418, 7966, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7975, 8, 418, 3, 418, 7977, 8, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7982, 8, 418, 1, 419, 1, 419, 3, 419, 7986, 8, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 3, 421, 7998, 8, 421, 1, 421, 3, 421, 8001, 8, 421, 1, 422, 1, 422, 1, 423, 4, 423, 8006, 8, 423, 11, 423, 12, 423, 8007, 1, 424, 1, 424, 3, 424, 8012, 8, 424, 1, 424, 1, 424, 1, 424, 3, 424, 8017, 8, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 8027, 8, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 3, 427, 8037, 8, 427, 1, 427, 3, 427, 8040, 8, 427, 1, 427, 3, 427, 8043, 8, 427, 3, 427, 8045, 8, 427, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 8051, 8, 428, 1, 429, 1, 429, 1, 429, 5, 429, 8056, 8, 429, 10, 429, 12, 429, 8059, 9, 429, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8078, 8, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8098, 8, 434, 1, 434, 1, 434, 3, 434, 8102, 8, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8107, 8, 434, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8176, 8, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8181, 8, 437, 1, 438, 1, 438, 1, 439, 1, 439, 3, 439, 8187, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 8200, 8, 440, 1, 440, 1, 440, 3, 440, 8204, 8, 440, 1, 440, 1, 440, 3, 440, 8208, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8214, 8, 440, 3, 440, 8216, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 5, 441, 8222, 8, 441, 10, 441, 12, 441, 8225, 9, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8234, 8, 443, 1, 443, 3, 443, 8237, 8, 443, 1, 443, 3, 443, 8240, 8, 443, 1, 443, 3, 443, 8243, 8, 443, 1, 443, 3, 443, 8246, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 8253, 8, 443, 1, 443, 3, 443, 8256, 8, 443, 3, 443, 8258, 8, 443, 1, 444, 1, 444, 3, 444, 8262, 8, 444, 1, 444, 3, 444, 8265, 8, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8272, 8, 444, 3, 444, 8274, 8, 444, 1, 445, 1, 445, 1, 445, 5, 445, 8279, 8, 445, 10, 445, 12, 445, 8282, 9, 445, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8288, 8, 447, 1, 448, 1, 448, 3, 448, 8292, 8, 448, 1, 449, 1, 449, 3, 449, 8296, 8, 449, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 5, 451, 8303, 8, 451, 10, 451, 12, 451, 8306, 9, 451, 1, 452, 1, 452, 1, 452, 3, 452, 8311, 8, 452, 1, 453, 1, 453, 3, 453, 8315, 8, 453, 1, 454, 1, 454, 3, 454, 8319, 8, 454, 1, 455, 1, 455, 1, 455, 3, 455, 8324, 8, 455, 1, 456, 1, 456, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 3, 459, 8336, 8, 459, 1, 460, 1, 460, 1, 460, 5, 460, 8341, 8, 460, 10, 460, 12, 460, 8344, 9, 460, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 3, 462, 8353, 8, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 3, 462, 8366, 8, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 3, 463, 8377, 8, 463, 1, 464, 1, 464, 1, 464, 5, 464, 8382, 8, 464, 10, 464, 12, 464, 8385, 9, 464, 1, 465, 1, 465, 3, 465, 8389, 8, 465, 1, 466, 1, 466, 3, 466, 8393, 8, 466, 1, 467, 1, 467, 3, 467, 8397, 8, 467, 1, 468, 1, 468, 1, 468, 3, 468, 8402, 8, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 3, 470, 8415, 8, 470, 1, 471, 1, 471, 1, 471, 3, 471, 8420, 8, 471, 1, 471, 1, 471, 3, 471, 8424, 8, 471, 1, 471, 1, 471, 3, 471, 8428, 8, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 3, 471, 8435, 8, 471, 1, 471, 3, 471, 8438, 8, 471, 3, 471, 8440, 8, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 3, 473, 8448, 8, 473, 1, 473, 1, 473, 3, 473, 8452, 8, 473, 1, 474, 3, 474, 8455, 8, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 3, 474, 8462, 8, 474, 1, 474, 3, 474, 8465, 8, 474, 1, 475, 1, 475, 1, 475, 3, 475, 8470, 8, 475, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8476, 8, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 8482, 8, 476, 1, 476, 1, 476, 3, 476, 8486, 8, 476, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 5, 478, 8493, 8, 478, 10, 478, 12, 478, 8496, 9, 478, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 3, 480, 8504, 8, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 3, 480, 8511, 8, 480, 1, 480, 3, 480, 8514, 8, 480, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 8520, 8, 481, 1, 481, 1, 481, 1, 481, 3, 481, 8525, 8, 481, 1, 482, 1, 482, 1, 482, 1, 483, 3, 483, 8531, 8, 483, 1, 483, 1, 483, 1, 483, 1, 483, 3, 483, 8537, 8, 483, 1, 483, 3, 483, 8540, 8, 483, 1, 483, 3, 483, 8543, 8, 483, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 3, 485, 8550, 8, 485, 1, 485, 1, 485, 3, 485, 8554, 8, 485, 1, 485, 3, 485, 8557, 8, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 3, 487, 8572, 8, 487, 1, 487, 3, 487, 8575, 8, 487, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 3, 489, 8582, 8, 489, 1, 490, 3, 490, 8585, 8, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 3, 490, 8592, 8, 490, 1, 490, 3, 490, 8595, 8, 490, 1, 490, 3, 490, 8598, 8, 490, 1, 491, 1, 491, 1, 491, 5, 491, 8603, 8, 491, 10, 491, 12, 491, 8606, 9, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 3, 492, 8617, 8, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 3, 492, 8624, 8, 492, 3, 492, 8626, 8, 492, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 5, 494, 8634, 8, 494, 10, 494, 12, 494, 8637, 9, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 5, 497, 8654, 8, 497, 10, 497, 12, 497, 8657, 9, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 3, 498, 8664, 8, 498, 1, 499, 1, 499, 3, 499, 8668, 8, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 3, 500, 8678, 8, 500, 1, 501, 1, 501, 3, 501, 8682, 8, 501, 1, 501, 1, 501, 3, 501, 8686, 8, 501, 1, 501, 1, 501, 3, 501, 8690, 8, 501, 3, 501, 8692, 8, 501, 1, 501, 1, 501, 1, 501, 3, 501, 8697, 8, 501, 1, 501, 1, 501, 3, 501, 8701, 8, 501, 1, 501, 1, 501, 3, 501, 8705, 8, 501, 3, 501, 8707, 8, 501, 3, 501, 8709, 8, 501, 1, 502, 1, 502, 3, 502, 8713, 8, 502, 1, 503, 1, 503, 3, 503, 8717, 8, 503, 1, 503, 3, 503, 8720, 8, 503, 1, 503, 3, 503, 8723, 8, 503, 1, 503, 3, 503, 8726, 8, 503, 1, 503, 3, 503, 8729, 8, 503, 3, 503, 8731, 8, 503, 1, 503, 3, 503, 8734, 8, 503, 1, 503, 3, 503, 8737, 8, 503, 1, 503, 3, 503, 8740, 8, 503, 1, 503, 3, 503, 8743, 8, 503, 1, 503, 3, 503, 8746, 8, 503, 1, 503, 3, 503, 8749, 8, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8758, 8, 503, 3, 503, 8760, 8, 503, 1, 503, 1, 503, 1, 503, 3, 503, 8765, 8, 503, 5, 503, 8767, 8, 503, 10, 503, 12, 503, 8770, 9, 503, 1, 504, 1, 504, 1, 504, 3, 504, 8775, 8, 504, 1, 505, 1, 505, 3, 505, 8779, 8, 505, 1, 506, 1, 506, 3, 506, 8783, 8, 506, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 5, 507, 8790, 8, 507, 10, 507, 12, 507, 8793, 9, 507, 1, 508, 1, 508, 3, 508, 8797, 8, 508, 1, 508, 1, 508, 3, 508, 8801, 8, 508, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 8807, 8, 508, 1, 508, 3, 508, 8810, 8, 508, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 3, 510, 8829, 8, 510, 1, 510, 1, 510, 1, 510, 1, 511, 1, 511, 1, 511, 3, 511, 8837, 8, 511, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 3, 513, 8846, 8, 513, 1, 514, 1, 514, 3, 514, 8850, 8, 514, 1, 515, 3, 515, 8853, 8, 515, 1, 515, 1, 515, 3, 515, 8857, 8, 515, 1, 515, 1, 515, 1, 515, 3, 515, 8862, 8, 515, 1, 515, 1, 515, 1, 515, 1, 515, 3, 515, 8868, 8, 515, 1, 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 3, 518, 8880, 8, 518, 1, 519, 1, 519, 1, 520, 1, 520, 1, 521, 1, 521, 1, 521, 1, 521, 1, 522, 1, 522, 1, 522, 5, 522, 8893, 8, 522, 10, 522, 12, 522, 8896, 9, 522, 1, 523, 1, 523, 1, 523, 1, 523, 3, 523, 8902, 8, 523, 1, 523, 3, 523, 8905, 8, 523, 1, 524, 1, 524, 3, 524, 8909, 8, 524, 1, 524, 1, 524, 3, 524, 8913, 8, 524, 1, 524, 1, 524, 3, 524, 8917, 8, 524, 3, 524, 8919, 8, 524, 1, 525, 1, 525, 1, 526, 1, 526, 1, 526, 1, 526, 3, 526, 8927, 8, 526, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 1, 527, 3, 527, 8936, 8, 527, 1, 527, 1, 527, 1, 527, 1, 527, 3, 527, 8942, 8, 527, 3, 527, 8944, 8, 527, 1, 528, 1, 528, 1, 528, 1, 528, 1, 528, 3, 528, 8951, 8, 528, 1, 529, 1, 529, 3, 529, 8955, 8, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 531, 1, 531, 1, 531, 3, 531, 8964, 8, 531, 1, 532, 1, 532, 3, 532, 8968, 8, 532, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 535, 3, 535, 8977, 8, 535, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 5, 536, 8984, 8, 536, 10, 536, 12, 536, 8987, 9, 536, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 3, 537, 8998, 8, 537, 1, 538, 1, 538, 1, 538, 1, 539, 1, 539, 1, 539, 1, 539, 1, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 543, 1, 543, 1, 543, 1, 543, 3, 543, 9026, 8, 543, 1, 544, 1, 544, 1, 545, 4, 545, 9031, 8, 545, 11, 545, 12, 545, 9032, 1, 546, 1, 546, 3, 546, 9037, 8, 546, 1, 546, 3, 546, 9040, 8, 546, 1, 547, 1, 547, 1, 547, 3, 547, 9045, 8, 547, 1, 547, 1, 547, 3, 547, 9049, 8, 547, 1, 547, 3, 547, 9052, 8, 547, 1, 548, 1, 548, 1, 548, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 5, 549, 9066, 8, 549, 10, 549, 12, 549, 9069, 9, 549, 1, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 5, 551, 9077, 8, 551, 10, 551, 12, 551, 9080, 9, 551, 1, 552, 1, 552, 3, 552, 9084, 8, 552, 1, 552, 3, 552, 9087, 8, 552, 1, 552, 3, 552, 9090, 8, 552, 1, 552, 1, 552, 3, 552, 9094, 8, 552, 1, 552, 1, 552, 3, 552, 9098, 8, 552, 1, 552, 1, 552, 3, 552, 9102, 8, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9107, 8, 552, 1, 552, 1, 552, 3, 552, 9111, 8, 552, 1, 552, 1, 552, 3, 552, 9115, 8, 552, 3, 552, 9117, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9126, 8, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9131, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9137, 8, 552, 1, 552, 1, 552, 3, 552, 9141, 8, 552, 3, 552, 9143, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9150, 8, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9155, 8, 552, 1, 552, 1, 552, 1, 552, 1, 552, 5, 552, 9161, 8, 552, 10, 552, 12, 552, 9164, 9, 552, 1, 553, 3, 553, 9167, 8, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 3, 553, 9174, 8, 553, 1, 554, 1, 554, 1, 555, 1, 555, 1, 555, 3, 555, 9181, 8, 555, 1, 555, 3, 555, 9184, 8, 555, 1, 555, 1, 555, 1, 555, 1, 555, 3, 555, 9190, 8, 555, 1, 556, 1, 556, 3, 556, 9194, 8, 556, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 1, 557, 3, 557, 9203, 8, 557, 1, 558, 3, 558, 9206, 8, 558, 1, 558, 1, 558, 3, 558, 9210, 8, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 9218, 8, 558, 1, 558, 1, 558, 1, 558, 1, 558, 3, 558, 9224, 8, 558, 3, 558, 9226, 8, 558, 1, 559, 3, 559, 9229, 8, 559, 1, 559, 1, 559, 3, 559, 9233, 8, 559, 1, 560, 1, 560, 3, 560, 9237, 8, 560, 1, 560, 1, 560, 3, 560, 9241, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9247, 8, 560, 1, 560, 3, 560, 9250, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9259, 8, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 3, 560, 9266, 8, 560, 3, 560, 9268, 8, 560, 1, 561, 1, 561, 1, 561, 5, 561, 9273, 8, 561, 10, 561, 12, 561, 9276, 9, 561, 1, 562, 1, 562, 1, 562, 5, 562, 9281, 8, 562, 10, 562, 12, 562, 9284, 9, 562, 1, 563, 1, 563, 3, 563, 9288, 8, 563, 1, 563, 3, 563, 9291, 8, 563, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 1, 564, 3, 564, 9299, 8, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, 565, 1, 566, 1, 566, 3, 566, 9308, 8, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 1, 566, 3, 566, 9316, 8, 566, 3, 566, 9318, 8, 566, 1, 567, 1, 567, 3, 567, 9322, 8, 567, 1, 568, 1, 568, 1, 568, 5, 568, 9327, 8, 568, 10, 568, 12, 568, 9330, 9, 568, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, 570, 1, 570, 1, 570, 1, 571, 1, 571, 1, 571, 1, 572, 1, 572, 1, 572, 1, 572, 1, 572, 3, 572, 9348, 8, 572, 1, 573, 1, 573, 1, 574, 1, 574, 1, 574, 5, 574, 9355, 8, 574, 10, 574, 12, 574, 9358, 9, 574, 1, 575, 1, 575, 1, 575, 3, 575, 9363, 8, 575, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 3, 576, 9382, 8, 576, 1, 576, 1, 576, 1, 577, 1, 577, 1, 577, 5, 577, 9389, 8, 577, 10, 577, 12, 577, 9392, 9, 577, 1, 578, 1, 578, 1, 578, 3, 578, 9397, 8, 578, 1, 578, 1, 578, 3, 578, 9401, 8, 578, 1, 579, 4, 579, 9404, 8, 579, 11, 579, 12, 579, 9405, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 1, 580, 3, 580, 9416, 8, 580, 1, 581, 1, 581, 1, 581, 5, 581, 9421, 8, 581, 10, 581, 12, 581, 9424, 9, 581, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 3, 582, 9432, 8, 582, 1, 583, 3, 583, 9435, 8, 583, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, 3, 583, 9444, 8, 583, 3, 583, 9446, 8, 583, 1, 583, 1, 583, 1, 583, 1, 583, 3, 583, 9452, 8, 583, 1, 584, 1, 584, 3, 584, 9456, 8, 584, 1, 584, 5, 584, 9459, 8, 584, 10, 584, 12, 584, 9462, 9, 584, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 1, 585, 3, 585, 9471, 8, 585, 1, 585, 1, 585, 1, 585, 1, 585, 3, 585, 9477, 8, 585, 3, 585, 9479, 8, 585, 1, 586, 1, 586, 1, 586, 1, 586, 3, 586, 9485, 8, 586, 1, 587, 1, 587, 3, 587, 9489, 8, 587, 1, 587, 3, 587, 9492, 8, 587, 1, 588, 1, 588, 1, 588, 1, 588, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 1, 589, 3, 589, 9505, 8, 589, 1, 589, 1, 589, 1, 589, 1, 589, 3, 589, 9511, 8, 589, 1, 589, 1, 589, 3, 589, 9515, 8, 589, 1, 589, 1, 589, 3, 589, 9519, 8, 589, 1, 589, 3, 589, 9522, 8, 589, 1, 590, 1, 590, 1, 590, 1, 590, 1, 591, 1, 591, 3, 591, 9530, 8, 591, 1, 592, 1, 592, 3, 592, 9534, 8, 592, 1, 593, 1, 593, 3, 593, 9538, 8, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 594, 1, 594, 3, 594, 9546, 8, 594, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 3, 595, 9553, 8, 595, 1, 596, 1, 596, 1, 596, 1, 596, 1, 596, 3, 596, 9560, 8, 596, 1, 597, 1, 597, 3, 597, 9564, 8, 597, 1, 597, 1, 597, 1, 597, 1, 597, 3, 597, 9570, 8, 597, 3, 597, 9572, 8, 597, 1, 598, 1, 598, 1, 599, 1, 599, 1, 599, 1, 599, 1, 599, 3, 599, 9581, 8, 599, 1, 599, 3, 599, 9584, 8, 599, 1, 600, 1, 600, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 1, 601, 3, 601, 9594, 8, 601, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9610, 8, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9616, 8, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9621, 8, 602, 1, 603, 1, 603, 1, 603, 1, 603, 1, 603, 3, 603, 9628, 8, 603, 1, 604, 1, 604, 1, 604, 1, 605, 1, 605, 1, 606, 1, 606, 3, 606, 9637, 8, 606, 1, 607, 1, 607, 1, 607, 5, 607, 9642, 8, 607, 10, 607, 12, 607, 9645, 9, 607, 1, 608, 1, 608, 1, 608, 5, 608, 9650, 8, 608, 10, 608, 12, 608, 9653, 9, 608, 1, 609, 1, 609, 1, 609, 5, 609, 9658, 8, 609, 10, 609, 12, 609, 9661, 9, 609, 1, 610, 1, 610, 3, 610, 9665, 8, 610, 1, 610, 1, 610, 3, 610, 9669, 8, 610, 1, 611, 3, 611, 9672, 8, 611, 1, 611, 1, 611, 1, 612, 1, 612, 3, 612, 9678, 8, 612, 1, 613, 1, 613, 1, 613, 3, 613, 9683, 8, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 1, 613, 3, 613, 9699, 8, 613, 1, 613, 3, 613, 9702, 8, 613, 3, 613, 9704, 8, 613, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9716, 8, 614, 3, 614, 9718, 8, 614, 1, 615, 1, 615, 3, 615, 9722, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9730, 8, 615, 3, 615, 9732, 8, 615, 1, 615, 1, 615, 3, 615, 9736, 8, 615, 3, 615, 9738, 8, 615, 1, 616, 1, 616, 1, 616, 1, 616, 5, 616, 9744, 8, 616, 10, 616, 12, 616, 9747, 9, 616, 1, 617, 3, 617, 9750, 8, 617, 1, 617, 1, 617, 1, 618, 1, 618, 1, 618, 5, 618, 9757, 8, 618, 10, 618, 12, 618, 9760, 9, 618, 1, 619, 1, 619, 1, 619, 5, 619, 9765, 8, 619, 10, 619, 12, 619, 9768, 9, 619, 1, 620, 1, 620, 1, 620, 3, 620, 9773, 8, 620, 1, 621, 3, 621, 9776, 8, 621, 1, 621, 1, 621, 1, 622, 1, 622, 1, 622, 1, 622, 1, 622, 3, 622, 9785, 8, 622, 1, 623, 1, 623, 1, 623, 3, 623, 9790, 8, 623, 1, 624, 1, 624, 1, 624, 5, 624, 9795, 8, 624, 10, 624, 12, 624, 9798, 9, 624, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 3, 625, 9807, 8, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 3, 625, 9833, 8, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 1, 625, 3, 625, 9844, 8, 625, 5, 625, 9846, 8, 625, 10, 625, 12, 625, 9849, 9, 625, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9856, 8, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9878, 8, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 1, 626, 3, 626, 9887, 8, 626, 1, 627, 1, 627, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9897, 8, 628, 1, 628, 3, 628, 9900, 8, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9905, 8, 628, 1, 628, 1, 628, 1, 628, 3, 628, 9910, 8, 628, 1, 628, 1, 628, 3, 628, 9914, 8, 628, 1, 628, 3, 628, 9917, 8, 628, 1, 629, 1, 629, 3, 629, 9921, 8, 629, 1, 629, 3, 629, 9924, 8, 629, 1, 629, 3, 629, 9927, 8, 629, 1, 629, 3, 629, 9930, 8, 629, 1, 630, 1, 630, 3, 630, 9934, 8, 630, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9948, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9955, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9962, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9969, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9987, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 9995, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10007, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10013, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10026, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10065, 8, 631, 3, 631, 10067, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10087, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10097, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10108, 8, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 3, 631, 10120, 8, 631, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10127, 8, 632, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10139, 8, 633, 1, 634, 1, 634, 1, 634, 1, 634, 1, 634, 1, 635, 1, 635, 1, 635, 5, 635, 10149, 8, 635, 10, 635, 12, 635, 10152, 9, 635, 1, 636, 1, 636, 1, 636, 3, 636, 10157, 8, 636, 1, 637, 1, 637, 1, 638, 1, 638, 1, 638, 1, 638, 3, 638, 10165, 8, 638, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 1, 639, 3, 639, 10182, 8, 639, 1, 640, 1, 640, 1, 640, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 643, 1, 643, 1, 643, 1, 644, 1, 644, 1, 644, 5, 644, 10205, 8, 644, 10, 644, 12, 644, 10208, 9, 644, 1, 645, 1, 645, 1, 645, 1, 645, 1, 646, 1, 646, 1, 646, 3, 646, 10217, 8, 646, 1, 647, 1, 647, 3, 647, 10221, 8, 647, 1, 647, 3, 647, 10224, 8, 647, 1, 647, 3, 647, 10227, 8, 647, 1, 647, 3, 647, 10230, 8, 647, 1, 647, 1, 647, 1, 648, 1, 648, 1, 649, 1, 649, 1, 649, 1, 649, 1, 650, 1, 650, 1, 650, 3, 650, 10243, 8, 650, 1, 650, 1, 650, 1, 650, 3, 650, 10248, 8, 650, 1, 650, 1, 650, 1, 650, 3, 650, 10253, 8, 650, 3, 650, 10255, 8, 650, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 1, 651, 3, 651, 10263, 8, 651, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 1, 652, 3, 652, 10272, 8, 652, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 1, 653, 3, 653, 10281, 8, 653, 1, 654, 1, 654, 1, 654, 3, 654, 10286, 8, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 1, 654, 3, 654, 10295, 8, 654, 1, 655, 1, 655, 1, 655, 3, 655, 10300, 8, 655, 1, 655, 1, 655, 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 1, 657, 1, 657, 1, 658, 1, 658, 3, 658, 10314, 8, 658, 1, 659, 1, 659, 1, 660, 1, 660, 1, 660, 1, 660, 1, 660, 1, 660, 3, 660, 10324, 8, 660, 1, 661, 1, 661, 1, 661, 1, 661, 1, 661, 1, 661, 3, 661, 10332, 8, 661, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 3, 662, 10346, 8, 662, 1, 663, 1, 663, 1, 663, 5, 663, 10351, 8, 663, 10, 663, 12, 663, 10354, 9, 663, 1, 664, 1, 664, 1, 664, 5, 664, 10359, 8, 664, 10, 664, 12, 664, 10362, 9, 664, 1, 665, 1, 665, 1, 665, 5, 665, 10367, 8, 665, 10, 665, 12, 665, 10370, 9, 665, 1, 666, 1, 666, 1, 666, 1, 666, 1, 666, 3, 666, 10377, 8, 666, 1, 667, 1, 667, 3, 667, 10381, 8, 667, 1, 668, 1, 668, 1, 668, 5, 668, 10386, 8, 668, 10, 668, 12, 668, 10389, 9, 668, 1, 669, 1, 669, 1, 669, 1, 669, 1, 669, 3, 669, 10396, 8, 669, 1, 670, 1, 670, 1, 670, 5, 670, 10401, 8, 670, 10, 670, 12, 670, 10404, 9, 670, 1, 671, 1, 671, 1, 671, 3, 671, 10409, 8, 671, 1, 671, 1, 671, 1, 672, 1, 672, 1, 672, 5, 672, 10416, 8, 672, 10, 672, 12, 672, 10419, 9, 672, 1, 673, 1, 673, 1, 673, 1, 673, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 3, 674, 10433, 8, 674, 1, 675, 1, 675, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 3, 676, 10444, 8, 676, 1, 677, 1, 677, 1, 677, 1, 677, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 3, 678, 10477, 8, 678, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 3, 679, 10486, 8, 679, 1, 680, 1, 680, 1, 680, 1, 680, 1, 680, 3, 680, 10493, 8, 680, 1, 681, 1, 681, 3, 681, 10497, 8, 681, 1, 681, 1, 681, 3, 681, 10501, 8, 681, 1, 681, 1, 681, 1, 682, 4, 682, 10506, 8, 682, 11, 682, 12, 682, 10507, 1, 683, 1, 683, 1, 683, 1, 683, 1, 683, 1, 684, 1, 684, 1, 684, 1, 685, 1, 685, 1, 686, 1, 686, 3, 686, 10522, 8, 686, 1, 687, 1, 687, 1, 687, 3, 687, 10527, 8, 687, 1, 687, 1, 687, 1, 687, 3, 687, 10532, 8, 687, 1, 687, 1, 687, 3, 687, 10536, 8, 687, 3, 687, 10538, 8, 687, 1, 687, 3, 687, 10541, 8, 687, 1, 688, 1, 688, 1, 689, 4, 689, 10546, 8, 689, 11, 689, 12, 689, 10547, 1, 690, 5, 690, 10551, 8, 690, 10, 690, 12, 690, 10554, 9, 690, 1, 691, 1, 691, 1, 692, 1, 692, 1, 692, 5, 692, 10561, 8, 692, 10, 692, 12, 692, 10564, 9, 692, 1, 693, 1, 693, 1, 693, 1, 693, 1, 693, 3, 693, 10571, 8, 693, 1, 693, 3, 693, 10574, 8, 693, 1, 694, 1, 694, 1, 694, 5, 694, 10579, 8, 694, 10, 694, 12, 694, 10582, 9, 694, 1, 695, 1, 695, 1, 695, 5, 695, 10587, 8, 695, 10, 695, 12, 695, 10590, 9, 695, 1, 696, 1, 696, 1, 696, 5, 696, 10595, 8, 696, 10, 696, 12, 696, 10598, 9, 696, 1, 697, 1, 697, 1, 697, 5, 697, 10603, 8, 697, 10, 697, 12, 697, 10606, 9, 697, 1, 698, 1, 698, 1, 698, 5, 698, 10611, 8, 698, 10, 698, 12, 698, 10614, 9, 698, 1, 699, 1, 699, 3, 699, 10618, 8, 699, 1, 700, 1, 700, 3, 700, 10622, 8, 700, 1, 701, 1, 701, 3, 701, 10626, 8, 701, 1, 702, 1, 702, 3, 702, 10630, 8, 702, 1, 703, 1, 703, 3, 703, 10634, 8, 703, 1, 704, 1, 704, 3, 704, 10638, 8, 704, 1, 705, 1, 705, 3, 705, 10642, 8, 705, 1, 706, 1, 706, 1, 706, 5, 706, 10647, 8, 706, 10, 706, 12, 706, 10650, 9, 706, 1, 707, 1, 707, 1, 707, 5, 707, 10655, 8, 707, 10, 707, 12, 707, 10658, 9, 707, 1, 708, 1, 708, 3, 708, 10662, 8, 708, 1, 709, 1, 709, 3, 709, 10666, 8, 709, 1, 710, 1, 710, 3, 710, 10670, 8, 710, 1, 711, 1, 711, 1, 712, 1, 712, 1, 713, 1, 713, 1, 713, 1, 713, 3, 713, 10680, 8, 713, 1, 714, 1, 714, 1, 714, 1, 714, 3, 714, 10686, 8, 714, 1, 715, 1, 715, 5, 715, 10690, 8, 715, 10, 715, 12, 715, 10693, 9, 715, 1, 716, 1, 716, 1, 717, 1, 717, 1, 718, 1, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 720, 1, 720, 3, 720, 10707, 8, 720, 1, 721, 1, 721, 1, 721, 1, 721, 3, 721, 10713, 8, 721, 1, 722, 1, 722, 1, 722, 1, 722, 3, 722, 10719, 8, 722, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10731, 8, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10736, 8, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10744, 8, 723, 1, 723, 1, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10751, 8, 723, 1, 723, 1, 723, 1, 723, 3, 723, 10756, 8, 723, 1, 724, 1, 724, 1, 725, 1, 725, 1, 726, 1, 726, 1, 727, 1, 727, 1, 728, 1, 728, 3, 728, 10768, 8, 728, 1, 729, 1, 729, 1, 729, 1, 729, 5, 729, 10774, 8, 729, 10, 729, 12, 729, 10777, 9, 729, 1, 729, 1, 729, 3, 729, 10781, 8, 729, 1, 730, 1, 730, 1, 730, 1, 731, 1, 731, 1, 731, 1, 731, 1, 731, 3, 731, 10791, 8, 731, 1, 732, 1, 732, 1, 733, 1, 733, 1, 734, 1, 734, 1, 734, 1, 734, 1, 734, 3, 734, 10802, 8, 734, 1, 735, 1, 735, 1, 735, 5, 735, 10807, 8, 735, 10, 735, 12, 735, 10810, 9, 735, 1, 736, 1, 736, 1, 736, 1, 736, 3, 736, 10816, 8, 736, 1, 737, 1, 737, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 1, 738, 3, 738, 10827, 8, 738, 1, 738, 3, 738, 10830, 8, 738, 3, 738, 10832, 8, 738, 1, 739, 1, 739, 3, 739, 10836, 8, 739, 1, 739, 3, 739, 10839, 8, 739, 1, 740, 1, 740, 1, 740, 1, 740, 3, 740, 10845, 8, 740, 1, 741, 1, 741, 1, 741, 1, 741, 3, 741, 10851, 8, 741, 1, 742, 1, 742, 3, 742, 10855, 8, 742, 1, 743, 1, 743, 1, 743, 1, 743, 3, 743, 10861, 8, 743, 1, 744, 1, 744, 1, 744, 1, 744, 1, 744, 1, 744, 3, 744, 10869, 8, 744, 1, 745, 1, 745, 3, 745, 10873, 8, 745, 1, 745, 1, 745, 1, 745, 1, 745, 1, 745, 1, 745, 3, 745, 10881, 8, 745, 1, 746, 1, 746, 1, 747, 1, 747, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 1, 748, 3, 748, 10938, 8, 748, 1, 749, 1, 749, 1, 750, 1, 750, 1, 751, 1, 751, 1, 751, 1, 751, 1, 752, 5, 752, 10949, 8, 752, 10, 752, 12, 752, 10952, 9, 752, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 3, 753, 10974, 8, 753, 1, 754, 1, 754, 1, 755, 1, 755, 1, 755, 1, 755, 3, 755, 10982, 8, 755, 1, 756, 1, 756, 3, 756, 10986, 8, 756, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 758, 1, 758, 1, 758, 3, 758, 10998, 8, 758, 3, 758, 11000, 8, 758, 1, 759, 1, 759, 1, 760, 4, 760, 11005, 8, 760, 11, 760, 12, 760, 11006, 1, 761, 1, 761, 1, 761, 1, 761, 1, 762, 1, 762, 1, 762, 3, 762, 11016, 8, 762, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 1, 763, 3, 763, 11034, 8, 763, 1, 763, 1, 763, 1, 764, 1, 764, 1, 764, 1, 764, 3, 764, 11042, 8, 764, 1, 765, 1, 765, 1, 766, 1, 766, 1, 766, 1, 766, 1, 766, 3, 766, 11051, 8, 766, 1, 767, 1, 767, 1, 767, 5, 767, 11056, 8, 767, 10, 767, 12, 767, 11059, 9, 767, 1, 768, 1, 768, 1, 768, 1, 769, 1, 769, 1, 770, 1, 770, 3, 770, 11068, 8, 770, 1, 771, 1, 771, 1, 772, 1, 772, 3, 772, 11074, 8, 772, 1, 773, 1, 773, 1, 774, 1, 774, 1, 774, 3, 774, 11081, 8, 774, 1, 775, 1, 775, 1, 775, 3, 775, 11086, 8, 775, 1, 776, 1, 776, 1, 776, 1, 776, 3, 776, 11092, 8, 776, 1, 777, 1, 777, 3, 777, 11096, 8, 777, 1, 778, 1, 778, 1, 779, 5, 779, 11101, 8, 779, 10, 779, 12, 779, 11104, 9, 779, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 1, 780, 3, 780, 11133, 8, 780, 1, 781, 1, 781, 1, 781, 1, 781, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 3, 782, 11146, 8, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, 782, 3, 782, 11155, 8, 782, 1, 783, 1, 783, 3, 783, 11159, 8, 783, 1, 784, 1, 784, 1, 784, 1, 784, 1, 784, 1, 785, 1, 785, 1, 785, 1, 785, 1, 785, 1, 785, 1, 786, 1, 786, 1, 786, 3, 786, 11175, 8, 786, 1, 787, 1, 787, 1, 787, 5, 787, 11180, 8, 787, 10, 787, 12, 787, 11183, 9, 787, 1, 788, 1, 788, 1, 788, 1, 788, 1, 789, 1, 789, 1, 790, 1, 790, 1, 791, 1, 791, 3, 791, 11195, 8, 791, 1, 791, 1, 791, 1, 791, 1, 791, 5, 791, 11201, 8, 791, 10, 791, 12, 791, 11204, 9, 791, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 792, 1, 793, 1, 793, 1, 793, 1, 793, 1, 793, 5, 793, 11221, 8, 793, 10, 793, 12, 793, 11224, 9, 793, 1, 794, 1, 794, 1, 794, 3, 794, 11229, 8, 794, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 795, 1, 796, 1, 796, 3, 796, 11241, 8, 796, 1, 797, 4, 797, 11244, 8, 797, 11, 797, 12, 797, 11245, 1, 798, 1, 798, 1, 798, 1, 798, 1, 798, 1, 799, 1, 799, 1, 799, 3, 799, 11256, 8, 799, 1, 800, 1, 800, 1, 800, 1, 801, 1, 801, 1, 801, 1, 801, 1, 801, 1, 802, 1, 802, 1, 802, 1, 802, 1, 802, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 3, 803, 11288, 8, 803, 1, 804, 1, 804, 1, 804, 3, 804, 11293, 8, 804, 1, 805, 1, 805, 1, 805, 1, 805, 1, 805, 5, 805, 11300, 8, 805, 10, 805, 12, 805, 11303, 9, 805, 1, 805, 1, 805, 3, 805, 11307, 8, 805, 1, 806, 1, 806, 3, 806, 11311, 8, 806, 1, 807, 1, 807, 1, 807, 3, 807, 11316, 8, 807, 1, 808, 1, 808, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 810, 1, 810, 1, 810, 3, 810, 11332, 8, 810, 1, 811, 1, 811, 1, 811, 3, 811, 11337, 8, 811, 1, 811, 1, 811, 1, 812, 1, 812, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 1, 813, 3, 813, 11352, 8, 813, 1, 813, 3, 813, 11355, 8, 813, 1, 813, 1, 813, 1, 814, 1, 814, 3, 814, 11361, 8, 814, 1, 815, 1, 815, 3, 815, 11365, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11374, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11382, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11391, 8, 815, 1, 815, 1, 815, 1, 815, 1, 815, 3, 815, 11397, 8, 815, 1, 816, 1, 816, 1, 817, 1, 817, 1, 817, 4, 817, 11404, 8, 817, 11, 817, 12, 817, 11405, 3, 817, 11408, 8, 817, 1, 818, 1, 818, 1, 818, 3, 818, 11413, 8, 818, 1, 819, 1, 819, 1, 819, 1, 819, 1, 820, 1, 820, 1, 820, 5, 820, 11422, 8, 820, 10, 820, 12, 820, 11425, 9, 820, 1, 821, 1, 821, 1, 821, 1, 821, 1, 821, 1, 822, 1, 822, 1, 822, 3, 822, 11435, 8, 822, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 824, 1, 824, 1, 824, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 1, 825, 3, 825, 11456, 8, 825, 1, 825, 1, 825, 1, 826, 1, 826, 1, 826, 3, 826, 11463, 8, 826, 1, 827, 1, 827, 1, 827, 5, 827, 11468, 8, 827, 10, 827, 12, 827, 11471, 9, 827, 1, 828, 1, 828, 1, 828, 3, 828, 11476, 8, 828, 1, 828, 3, 828, 11479, 8, 828, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 3, 829, 11490, 8, 829, 1, 829, 1, 829, 1, 829, 1, 829, 1, 829, 3, 829, 11497, 8, 829, 3, 829, 11499, 8, 829, 1, 829, 1, 829, 1, 830, 1, 830, 1, 830, 1, 830, 1, 830, 3, 830, 11508, 8, 830, 1, 831, 1, 831, 1, 831, 5, 831, 11513, 8, 831, 10, 831, 12, 831, 11516, 9, 831, 1, 832, 1, 832, 1, 832, 3, 832, 11521, 8, 832, 1, 833, 1, 833, 1, 833, 1, 833, 3, 833, 11527, 8, 833, 1, 834, 1, 834, 3, 834, 11531, 8, 834, 1, 835, 1, 835, 3, 835, 11535, 8, 835, 1, 835, 1, 835, 1, 835, 1, 835, 1, 835, 1, 835, 1, 836, 1, 836, 1, 837, 1, 837, 1, 837, 3, 837, 11548, 8, 837, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 1, 838, 3, 838, 11563, 8, 838, 3, 838, 11565, 8, 838, 1, 839, 1, 839, 3, 839, 11569, 8, 839, 1, 839, 1, 839, 1, 839, 1, 840, 3, 840, 11575, 8, 840, 1, 840, 1, 840, 1, 840, 3, 840, 11580, 8, 840, 1, 840, 1, 840, 3, 840, 11584, 8, 840, 1, 840, 3, 840, 11587, 8, 840, 1, 840, 3, 840, 11590, 8, 840, 1, 840, 1, 840, 1, 840, 1, 840, 1, 840, 4, 840, 11597, 8, 840, 11, 840, 12, 840, 11598, 1, 841, 3, 841, 11602, 8, 841, 1, 841, 1, 841, 3, 841, 11606, 8, 841, 1, 841, 1, 841, 3, 841, 11610, 8, 841, 3, 841, 11612, 8, 841, 1, 841, 3, 841, 11615, 8, 841, 1, 841, 3, 841, 11618, 8, 841, 1, 842, 1, 842, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11626, 8, 843, 1, 843, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11633, 8, 843, 1, 843, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11640, 8, 843, 1, 843, 1, 843, 1, 843, 1, 843, 3, 843, 11646, 8, 843, 3, 843, 11648, 8, 843, 1, 844, 1, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11655, 8, 844, 1, 844, 1, 844, 1, 844, 3, 844, 11660, 8, 844, 1, 844, 1, 844, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 1, 845, 4, 845, 11678, 8, 845, 11, 845, 12, 845, 11679, 1, 846, 1, 846, 1, 846, 1, 846, 3, 846, 11686, 8, 846, 1, 847, 1, 847, 1, 847, 1, 847, 5, 847, 11692, 8, 847, 10, 847, 12, 847, 11695, 9, 847, 1, 847, 1, 847, 1, 848, 1, 848, 3, 848, 11701, 8, 848, 1, 849, 1, 849, 1, 849, 1, 849, 1, 850, 1, 850, 1, 850, 1, 851, 1, 851, 3, 851, 11712, 8, 851, 1, 851, 1, 851, 1, 852, 1, 852, 3, 852, 11718, 8, 852, 1, 852, 1, 852, 1, 853, 1, 853, 3, 853, 11724, 8, 853, 1, 853, 1, 853, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 1, 854, 3, 854, 11737, 8, 854, 1, 854, 3, 854, 11740, 8, 854, 1, 855, 1, 855, 3, 855, 11744, 8, 855, 1, 856, 1, 856, 1, 856, 3, 856, 11749, 8, 856, 1, 857, 4, 857, 11752, 8, 857, 11, 857, 12, 857, 11753, 1, 858, 1, 858, 1, 858, 1, 858, 1, 858, 1, 859, 1, 859, 1, 859, 5, 859, 11764, 8, 859, 10, 859, 12, 859, 11767, 9, 859, 1, 860, 1, 860, 1, 860, 3, 860, 11772, 8, 860, 1, 861, 1, 861, 3, 861, 11776, 8, 861, 1, 862, 1, 862, 3, 862, 11780, 8, 862, 1, 863, 1, 863, 3, 863, 11784, 8, 863, 1, 864, 1, 864, 1, 864, 1, 865, 1, 865, 3, 865, 11791, 8, 865, 1, 866, 1, 866, 1, 867, 3, 867, 11796, 8, 867, 1, 867, 3, 867, 11799, 8, 867, 1, 867, 3, 867, 11802, 8, 867, 1, 867, 3, 867, 11805, 8, 867, 1, 867, 3, 867, 11808, 8, 867, 1, 867, 3, 867, 11811, 8, 867, 1, 867, 3, 867, 11814, 8, 867, 1, 868, 1, 868, 1, 869, 1, 869, 1, 870, 1, 870, 1, 871, 1, 871, 1, 872, 1, 872, 3, 872, 11826, 8, 872, 1, 873, 1, 873, 1, 873, 1, 873, 1, 873, 0, 1, 1250, 874, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1592, 1594, 1596, 1598, 1600, 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, 1632, 1634, 1636, 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, 1682, 1684, 1686, 1688, 1690, 1692, 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 1726, 1728, 1730, 1732, 1734, 1736, 1738, 1740, 1742, 1744, 1746, 0, 87, 2, 0, 195, 195, 364, 364, 1, 0, 228, 229, 1, 0, 236, 237, 1, 0, 234, 235, 1, 0, 232, 233, 1, 0, 230, 231, 1, 0, 535, 536, 1, 0, 537, 538, 1, 0, 539, 540, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 3, 0, 173, 173, 260, 260, 262, 262, 2, 0, 9, 9, 94, 94, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 92, 92, 226, 226, 2, 0, 341, 341, 414, 414, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 135, 135, 145, 145, 3, 0, 66, 66, 99, 99, 318, 318, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 3, 0, 321, 321, 357, 357, 445, 445, 2, 0, 167, 167, 314, 314, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 10, 10, 53, 53, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 356, 356, 380, 380, 2, 0, 151, 151, 254, 254, 1, 0, 31, 32, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 201, 201, 334, 334, 1, 0, 527, 528, 2, 0, 213, 213, 254, 254, 2, 0, 30, 30, 56, 56, 2, 0, 320, 320, 414, 414, 2, 0, 207, 207, 268, 268, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 1, 0, 18, 19, 2, 0, 117, 117, 122, 122, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 3, 0, 39, 39, 73, 73, 95, 95, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 10, 0, 124, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 478, 488, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 37, 0, 33, 33, 35, 35, 43, 43, 45, 45, 53, 53, 57, 57, 61, 61, 92, 92, 116, 116, 123, 123, 130, 130, 144, 144, 153, 153, 157, 157, 161, 161, 167, 167, 172, 172, 207, 207, 210, 210, 241, 241, 249, 249, 265, 265, 268, 269, 279, 279, 293, 293, 307, 307, 313, 313, 319, 319, 323, 324, 333, 333, 360, 360, 433, 434, 477, 477, 490, 502, 504, 504, 506, 518, 520, 520, 13157, 0, 1751, 1, 0, 0, 0, 2, 1756, 1, 0, 0, 0, 4, 1758, 1, 0, 0, 0, 6, 1879, 1, 0, 0, 0, 8, 1881, 1, 0, 0, 0, 10, 1885, 1, 0, 0, 0, 12, 1888, 1, 0, 0, 0, 14, 1896, 1, 0, 0, 0, 16, 1901, 1, 0, 0, 0, 18, 1907, 1, 0, 0, 0, 20, 1945, 1, 0, 0, 0, 22, 1957, 1, 0, 0, 0, 24, 1959, 1, 0, 0, 0, 26, 1967, 1, 0, 0, 0, 28, 1979, 1, 0, 0, 0, 30, 1981, 1, 0, 0, 0, 32, 1990, 1, 0, 0, 0, 34, 2018, 1, 0, 0, 0, 36, 2020, 1, 0, 0, 0, 38, 2068, 1, 0, 0, 0, 40, 2070, 1, 0, 0, 0, 42, 2078, 1, 0, 0, 0, 44, 2085, 1, 0, 0, 0, 46, 2087, 1, 0, 0, 0, 48, 2102, 1, 0, 0, 0, 50, 2109, 1, 0, 0, 0, 52, 2118, 1, 0, 0, 0, 54, 2120, 1, 0, 0, 0, 56, 2134, 1, 0, 0, 0, 58, 2138, 1, 0, 0, 0, 60, 2174, 1, 0, 0, 0, 62, 2176, 1, 0, 0, 0, 64, 2184, 1, 0, 0, 0, 66, 2194, 1, 0, 0, 0, 68, 2201, 1, 0, 0, 0, 70, 2207, 1, 0, 0, 0, 72, 2213, 1, 0, 0, 0, 74, 2231, 1, 0, 0, 0, 76, 2235, 1, 0, 0, 0, 78, 2239, 1, 0, 0, 0, 80, 2243, 1, 0, 0, 0, 82, 2245, 1, 0, 0, 0, 84, 2256, 1, 0, 0, 0, 86, 2260, 1, 0, 0, 0, 88, 2265, 1, 0, 0, 0, 90, 2270, 1, 0, 0, 0, 92, 2272, 1, 0, 0, 0, 94, 2284, 1, 0, 0, 0, 96, 2291, 1, 0, 0, 0, 98, 2293, 1, 0, 0, 0, 100, 2295, 1, 0, 0, 0, 102, 2297, 1, 0, 0, 0, 104, 2433, 1, 0, 0, 0, 106, 2435, 1, 0, 0, 0, 108, 2452, 1, 0, 0, 0, 110, 2454, 1, 0, 0, 0, 112, 2468, 1, 0, 0, 0, 114, 2470, 1, 0, 0, 0, 116, 2486, 1, 0, 0, 0, 118, 2488, 1, 0, 0, 0, 120, 2709, 1, 0, 0, 0, 122, 2716, 1, 0, 0, 0, 124, 2718, 1, 0, 0, 0, 126, 2720, 1, 0, 0, 0, 128, 2723, 1, 0, 0, 0, 130, 2732, 1, 0, 0, 0, 132, 2734, 1, 0, 0, 0, 134, 2738, 1, 0, 0, 0, 136, 2741, 1, 0, 0, 0, 138, 2749, 1, 0, 0, 0, 140, 2761, 1, 0, 0, 0, 142, 2778, 1, 0, 0, 0, 144, 2806, 1, 0, 0, 0, 146, 2808, 1, 0, 0, 0, 148, 2811, 1, 0, 0, 0, 150, 2819, 1, 0, 0, 0, 152, 2824, 1, 0, 0, 0, 154, 2861, 1, 0, 0, 0, 156, 2863, 1, 0, 0, 0, 158, 2905, 1, 0, 0, 0, 160, 2907, 1, 0, 0, 0, 162, 2909, 1, 0, 0, 0, 164, 2914, 1, 0, 0, 0, 166, 2921, 1, 0, 0, 0, 168, 2926, 1, 0, 0, 0, 170, 2968, 1, 0, 0, 0, 172, 2970, 1, 0, 0, 0, 174, 2973, 1, 0, 0, 0, 176, 2978, 1, 0, 0, 0, 178, 2980, 1, 0, 0, 0, 180, 2988, 1, 0, 0, 0, 182, 2999, 1, 0, 0, 0, 184, 3001, 1, 0, 0, 0, 186, 3009, 1, 0, 0, 0, 188, 3011, 1, 0, 0, 0, 190, 3094, 1, 0, 0, 0, 192, 3096, 1, 0, 0, 0, 194, 3098, 1, 0, 0, 0, 196, 3100, 1, 0, 0, 0, 198, 3104, 1, 0, 0, 0, 200, 3112, 1, 0, 0, 0, 202, 3123, 1, 0, 0, 0, 204, 3127, 1, 0, 0, 0, 206, 3129, 1, 0, 0, 0, 208, 3150, 1, 0, 0, 0, 210, 3171, 1, 0, 0, 0, 212, 3174, 1, 0, 0, 0, 214, 3183, 1, 0, 0, 0, 216, 3193, 1, 0, 0, 0, 218, 3214, 1, 0, 0, 0, 220, 3274, 1, 0, 0, 0, 222, 3276, 1, 0, 0, 0, 224, 3285, 1, 0, 0, 0, 226, 3290, 1, 0, 0, 0, 228, 3292, 1, 0, 0, 0, 230, 3295, 1, 0, 0, 0, 232, 3303, 1, 0, 0, 0, 234, 3306, 1, 0, 0, 0, 236, 3313, 1, 0, 0, 0, 238, 3401, 1, 0, 0, 0, 240, 3403, 1, 0, 0, 0, 242, 3406, 1, 0, 0, 0, 244, 3410, 1, 0, 0, 0, 246, 3418, 1, 0, 0, 0, 248, 3423, 1, 0, 0, 0, 250, 3426, 1, 0, 0, 0, 252, 3434, 1, 0, 0, 0, 254, 3444, 1, 0, 0, 0, 256, 3457, 1, 0, 0, 0, 258, 3459, 1, 0, 0, 0, 260, 3463, 1, 0, 0, 0, 262, 3476, 1, 0, 0, 0, 264, 3478, 1, 0, 0, 0, 266, 3483, 1, 0, 0, 0, 268, 3485, 1, 0, 0, 0, 270, 3492, 1, 0, 0, 0, 272, 3523, 1, 0, 0, 0, 274, 3525, 1, 0, 0, 0, 276, 3534, 1, 0, 0, 0, 278, 3536, 1, 0, 0, 0, 280, 3545, 1, 0, 0, 0, 282, 3549, 1, 0, 0, 0, 284, 3557, 1, 0, 0, 0, 286, 3562, 1, 0, 0, 0, 288, 3566, 1, 0, 0, 0, 290, 3585, 1, 0, 0, 0, 292, 3595, 1, 0, 0, 0, 294, 3609, 1, 0, 0, 0, 296, 3625, 1, 0, 0, 0, 298, 3631, 1, 0, 0, 0, 300, 3646, 1, 0, 0, 0, 302, 3659, 1, 0, 0, 0, 304, 3661, 1, 0, 0, 0, 306, 3671, 1, 0, 0, 0, 308, 3683, 1, 0, 0, 0, 310, 3691, 1, 0, 0, 0, 312, 3693, 1, 0, 0, 0, 314, 3698, 1, 0, 0, 0, 316, 3736, 1, 0, 0, 0, 318, 3738, 1, 0, 0, 0, 320, 3746, 1, 0, 0, 0, 322, 3748, 1, 0, 0, 0, 324, 3756, 1, 0, 0, 0, 326, 3778, 1, 0, 0, 0, 328, 3780, 1, 0, 0, 0, 330, 3784, 1, 0, 0, 0, 332, 3791, 1, 0, 0, 0, 334, 3793, 1, 0, 0, 0, 336, 3795, 1, 0, 0, 0, 338, 3797, 1, 0, 0, 0, 340, 3808, 1, 0, 0, 0, 342, 3811, 1, 0, 0, 0, 344, 3825, 1, 0, 0, 0, 346, 3835, 1, 0, 0, 0, 348, 3837, 1, 0, 0, 0, 350, 3846, 1, 0, 0, 0, 352, 3849, 1, 0, 0, 0, 354, 3954, 1, 0, 0, 0, 356, 3956, 1, 0, 0, 0, 358, 3975, 1, 0, 0, 0, 360, 3978, 1, 0, 0, 0, 362, 3982, 1, 0, 0, 0, 364, 4001, 1, 0, 0, 0, 366, 4003, 1, 0, 0, 0, 368, 4008, 1, 0, 0, 0, 370, 4016, 1, 0, 0, 0, 372, 4021, 1, 0, 0, 0, 374, 4036, 1, 0, 0, 0, 376, 4038, 1, 0, 0, 0, 378, 4041, 1, 0, 0, 0, 380, 4043, 1, 0, 0, 0, 382, 4045, 1, 0, 0, 0, 384, 4064, 1, 0, 0, 0, 386, 4067, 1, 0, 0, 0, 388, 4072, 1, 0, 0, 0, 390, 4074, 1, 0, 0, 0, 392, 4123, 1, 0, 0, 0, 394, 4125, 1, 0, 0, 0, 396, 4143, 1, 0, 0, 0, 398, 4145, 1, 0, 0, 0, 400, 4150, 1, 0, 0, 0, 402, 4165, 1, 0, 0, 0, 404, 4167, 1, 0, 0, 0, 406, 4176, 1, 0, 0, 0, 408, 4196, 1, 0, 0, 0, 410, 4210, 1, 0, 0, 0, 412, 4244, 1, 0, 0, 0, 414, 4274, 1, 0, 0, 0, 416, 4276, 1, 0, 0, 0, 418, 4281, 1, 0, 0, 0, 420, 4287, 1, 0, 0, 0, 422, 4290, 1, 0, 0, 0, 424, 4293, 1, 0, 0, 0, 426, 4299, 1, 0, 0, 0, 428, 4302, 1, 0, 0, 0, 430, 4304, 1, 0, 0, 0, 432, 4313, 1, 0, 0, 0, 434, 4369, 1, 0, 0, 0, 436, 4375, 1, 0, 0, 0, 438, 4377, 1, 0, 0, 0, 440, 4383, 1, 0, 0, 0, 442, 4385, 1, 0, 0, 0, 444, 4400, 1, 0, 0, 0, 446, 4402, 1, 0, 0, 0, 448, 4406, 1, 0, 0, 0, 450, 4410, 1, 0, 0, 0, 452, 4417, 1, 0, 0, 0, 454, 4419, 1, 0, 0, 0, 456, 4421, 1, 0, 0, 0, 458, 4423, 1, 0, 0, 0, 460, 4429, 1, 0, 0, 0, 462, 4431, 1, 0, 0, 0, 464, 4433, 1, 0, 0, 0, 466, 4442, 1, 0, 0, 0, 468, 4446, 1, 0, 0, 0, 470, 4459, 1, 0, 0, 0, 472, 4461, 1, 0, 0, 0, 474, 4467, 1, 0, 0, 0, 476, 4481, 1, 0, 0, 0, 478, 4507, 1, 0, 0, 0, 480, 4509, 1, 0, 0, 0, 482, 4517, 1, 0, 0, 0, 484, 4523, 1, 0, 0, 0, 486, 4531, 1, 0, 0, 0, 488, 4542, 1, 0, 0, 0, 490, 4544, 1, 0, 0, 0, 492, 4656, 1, 0, 0, 0, 494, 4658, 1, 0, 0, 0, 496, 4662, 1, 0, 0, 0, 498, 4670, 1, 0, 0, 0, 500, 4681, 1, 0, 0, 0, 502, 4683, 1, 0, 0, 0, 504, 4687, 1, 0, 0, 0, 506, 4695, 1, 0, 0, 0, 508, 4699, 1, 0, 0, 0, 510, 4701, 1, 0, 0, 0, 512, 4731, 1, 0, 0, 0, 514, 4733, 1, 0, 0, 0, 516, 4737, 1, 0, 0, 0, 518, 4755, 1, 0, 0, 0, 520, 4794, 1, 0, 0, 0, 522, 4796, 1, 0, 0, 0, 524, 4798, 1, 0, 0, 0, 526, 4807, 1, 0, 0, 0, 528, 4809, 1, 0, 0, 0, 530, 4811, 1, 0, 0, 0, 532, 4836, 1, 0, 0, 0, 534, 4838, 1, 0, 0, 0, 536, 4858, 1, 0, 0, 0, 538, 4860, 1, 0, 0, 0, 540, 5246, 1, 0, 0, 0, 542, 5248, 1, 0, 0, 0, 544, 5280, 1, 0, 0, 0, 546, 5313, 1, 0, 0, 0, 548, 5315, 1, 0, 0, 0, 550, 5317, 1, 0, 0, 0, 552, 5325, 1, 0, 0, 0, 554, 5329, 1, 0, 0, 0, 556, 5333, 1, 0, 0, 0, 558, 5339, 1, 0, 0, 0, 560, 5343, 1, 0, 0, 0, 562, 5351, 1, 0, 0, 0, 564, 5371, 1, 0, 0, 0, 566, 5542, 1, 0, 0, 0, 568, 5546, 1, 0, 0, 0, 570, 5657, 1, 0, 0, 0, 572, 5659, 1, 0, 0, 0, 574, 5664, 1, 0, 0, 0, 576, 5670, 1, 0, 0, 0, 578, 5757, 1, 0, 0, 0, 580, 5759, 1, 0, 0, 0, 582, 5761, 1, 0, 0, 0, 584, 5763, 1, 0, 0, 0, 586, 5793, 1, 0, 0, 0, 588, 5811, 1, 0, 0, 0, 590, 5813, 1, 0, 0, 0, 592, 5821, 1, 0, 0, 0, 594, 5823, 1, 0, 0, 0, 596, 5847, 1, 0, 0, 0, 598, 5907, 1, 0, 0, 0, 600, 5909, 1, 0, 0, 0, 602, 5920, 1, 0, 0, 0, 604, 5922, 1, 0, 0, 0, 606, 5926, 1, 0, 0, 0, 608, 5959, 1, 0, 0, 0, 610, 5961, 1, 0, 0, 0, 612, 5965, 1, 0, 0, 0, 614, 5969, 1, 0, 0, 0, 616, 5978, 1, 0, 0, 0, 618, 5990, 1, 0, 0, 0, 620, 6022, 1, 0, 0, 0, 622, 6024, 1, 0, 0, 0, 624, 6026, 1, 0, 0, 0, 626, 6063, 1, 0, 0, 0, 628, 6065, 1, 0, 0, 0, 630, 6067, 1, 0, 0, 0, 632, 6069, 1, 0, 0, 0, 634, 6072, 1, 0, 0, 0, 636, 6103, 1, 0, 0, 0, 638, 6116, 1, 0, 0, 0, 640, 6118, 1, 0, 0, 0, 642, 6123, 1, 0, 0, 0, 644, 6131, 1, 0, 0, 0, 646, 6134, 1, 0, 0, 0, 648, 6136, 1, 0, 0, 0, 650, 6142, 1, 0, 0, 0, 652, 6144, 1, 0, 0, 0, 654, 6171, 1, 0, 0, 0, 656, 6182, 1, 0, 0, 0, 658, 6185, 1, 0, 0, 0, 660, 6191, 1, 0, 0, 0, 662, 6199, 1, 0, 0, 0, 664, 6215, 1, 0, 0, 0, 666, 6217, 1, 0, 0, 0, 668, 6233, 1, 0, 0, 0, 670, 6235, 1, 0, 0, 0, 672, 6251, 1, 0, 0, 0, 674, 6253, 1, 0, 0, 0, 676, 6259, 1, 0, 0, 0, 678, 6280, 1, 0, 0, 0, 680, 6289, 1, 0, 0, 0, 682, 6291, 1, 0, 0, 0, 684, 6293, 1, 0, 0, 0, 686, 6307, 1, 0, 0, 0, 688, 6309, 1, 0, 0, 0, 690, 6314, 1, 0, 0, 0, 692, 6316, 1, 0, 0, 0, 694, 6331, 1, 0, 0, 0, 696, 6339, 1, 0, 0, 0, 698, 6342, 1, 0, 0, 0, 700, 6351, 1, 0, 0, 0, 702, 6390, 1, 0, 0, 0, 704, 6417, 1, 0, 0, 0, 706, 6419, 1, 0, 0, 0, 708, 6431, 1, 0, 0, 0, 710, 6434, 1, 0, 0, 0, 712, 6437, 1, 0, 0, 0, 714, 6445, 1, 0, 0, 0, 716, 6457, 1, 0, 0, 0, 718, 6460, 1, 0, 0, 0, 720, 6464, 1, 0, 0, 0, 722, 6493, 1, 0, 0, 0, 724, 6495, 1, 0, 0, 0, 726, 6504, 1, 0, 0, 0, 728, 6535, 1, 0, 0, 0, 730, 6542, 1, 0, 0, 0, 732, 6547, 1, 0, 0, 0, 734, 6555, 1, 0, 0, 0, 736, 6558, 1, 0, 0, 0, 738, 6562, 1, 0, 0, 0, 740, 6569, 1, 0, 0, 0, 742, 6608, 1, 0, 0, 0, 744, 6614, 1, 0, 0, 0, 746, 6616, 1, 0, 0, 0, 748, 6619, 1, 0, 0, 0, 750, 6666, 1, 0, 0, 0, 752, 6684, 1, 0, 0, 0, 754, 6696, 1, 0, 0, 0, 756, 6713, 1, 0, 0, 0, 758, 6715, 1, 0, 0, 0, 760, 6723, 1, 0, 0, 0, 762, 6737, 1, 0, 0, 0, 764, 7130, 1, 0, 0, 0, 766, 7132, 1, 0, 0, 0, 768, 7204, 1, 0, 0, 0, 770, 7206, 1, 0, 0, 0, 772, 7393, 1, 0, 0, 0, 774, 7395, 1, 0, 0, 0, 776, 7403, 1, 0, 0, 0, 778, 7419, 1, 0, 0, 0, 780, 7426, 1, 0, 0, 0, 782, 7428, 1, 0, 0, 0, 784, 7621, 1, 0, 0, 0, 786, 7623, 1, 0, 0, 0, 788, 7632, 1, 0, 0, 0, 790, 7640, 1, 0, 0, 0, 792, 7680, 1, 0, 0, 0, 794, 7682, 1, 0, 0, 0, 796, 7692, 1, 0, 0, 0, 798, 7700, 1, 0, 0, 0, 800, 7780, 1, 0, 0, 0, 802, 7782, 1, 0, 0, 0, 804, 7808, 1, 0, 0, 0, 806, 7811, 1, 0, 0, 0, 808, 7827, 1, 0, 0, 0, 810, 7829, 1, 0, 0, 0, 812, 7831, 1, 0, 0, 0, 814, 7833, 1, 0, 0, 0, 816, 7835, 1, 0, 0, 0, 818, 7840, 1, 0, 0, 0, 820, 7843, 1, 0, 0, 0, 822, 7850, 1, 0, 0, 0, 824, 7917, 1, 0, 0, 0, 826, 7919, 1, 0, 0, 0, 828, 7931, 1, 0, 0, 0, 830, 7933, 1, 0, 0, 0, 832, 7943, 1, 0, 0, 0, 834, 7945, 1, 0, 0, 0, 836, 7951, 1, 0, 0, 0, 838, 7983, 1, 0, 0, 0, 840, 7990, 1, 0, 0, 0, 842, 7993, 1, 0, 0, 0, 844, 8002, 1, 0, 0, 0, 846, 8005, 1, 0, 0, 0, 848, 8009, 1, 0, 0, 0, 850, 8026, 1, 0, 0, 0, 852, 8028, 1, 0, 0, 0, 854, 8030, 1, 0, 0, 0, 856, 8046, 1, 0, 0, 0, 858, 8052, 1, 0, 0, 0, 860, 8060, 1, 0, 0, 0, 862, 8062, 1, 0, 0, 0, 864, 8068, 1, 0, 0, 0, 866, 8073, 1, 0, 0, 0, 868, 8082, 1, 0, 0, 0, 870, 8108, 1, 0, 0, 0, 872, 8110, 1, 0, 0, 0, 874, 8180, 1, 0, 0, 0, 876, 8182, 1, 0, 0, 0, 878, 8184, 1, 0, 0, 0, 880, 8215, 1, 0, 0, 0, 882, 8217, 1, 0, 0, 0, 884, 8228, 1, 0, 0, 0, 886, 8257, 1, 0, 0, 0, 888, 8273, 1, 0, 0, 0, 890, 8275, 1, 0, 0, 0, 892, 8283, 1, 0, 0, 0, 894, 8285, 1, 0, 0, 0, 896, 8291, 1, 0, 0, 0, 898, 8295, 1, 0, 0, 0, 900, 8297, 1, 0, 0, 0, 902, 8299, 1, 0, 0, 0, 904, 8310, 1, 0, 0, 0, 906, 8312, 1, 0, 0, 0, 908, 8316, 1, 0, 0, 0, 910, 8320, 1, 0, 0, 0, 912, 8325, 1, 0, 0, 0, 914, 8327, 1, 0, 0, 0, 916, 8329, 1, 0, 0, 0, 918, 8333, 1, 0, 0, 0, 920, 8337, 1, 0, 0, 0, 922, 8345, 1, 0, 0, 0, 924, 8365, 1, 0, 0, 0, 926, 8376, 1, 0, 0, 0, 928, 8378, 1, 0, 0, 0, 930, 8386, 1, 0, 0, 0, 932, 8392, 1, 0, 0, 0, 934, 8396, 1, 0, 0, 0, 936, 8398, 1, 0, 0, 0, 938, 8406, 1, 0, 0, 0, 940, 8414, 1, 0, 0, 0, 942, 8439, 1, 0, 0, 0, 944, 8441, 1, 0, 0, 0, 946, 8445, 1, 0, 0, 0, 948, 8454, 1, 0, 0, 0, 950, 8466, 1, 0, 0, 0, 952, 8475, 1, 0, 0, 0, 954, 8487, 1, 0, 0, 0, 956, 8489, 1, 0, 0, 0, 958, 8497, 1, 0, 0, 0, 960, 8500, 1, 0, 0, 0, 962, 8524, 1, 0, 0, 0, 964, 8526, 1, 0, 0, 0, 966, 8530, 1, 0, 0, 0, 968, 8544, 1, 0, 0, 0, 970, 8547, 1, 0, 0, 0, 972, 8558, 1, 0, 0, 0, 974, 8574, 1, 0, 0, 0, 976, 8576, 1, 0, 0, 0, 978, 8581, 1, 0, 0, 0, 980, 8584, 1, 0, 0, 0, 982, 8599, 1, 0, 0, 0, 984, 8625, 1, 0, 0, 0, 986, 8627, 1, 0, 0, 0, 988, 8630, 1, 0, 0, 0, 990, 8638, 1, 0, 0, 0, 992, 8646, 1, 0, 0, 0, 994, 8655, 1, 0, 0, 0, 996, 8663, 1, 0, 0, 0, 998, 8667, 1, 0, 0, 0, 1000, 8677, 1, 0, 0, 0, 1002, 8708, 1, 0, 0, 0, 1004, 8712, 1, 0, 0, 0, 1006, 8759, 1, 0, 0, 0, 1008, 8774, 1, 0, 0, 0, 1010, 8776, 1, 0, 0, 0, 1012, 8780, 1, 0, 0, 0, 1014, 8786, 1, 0, 0, 0, 1016, 8794, 1, 0, 0, 0, 1018, 8811, 1, 0, 0, 0, 1020, 8819, 1, 0, 0, 0, 1022, 8836, 1, 0, 0, 0, 1024, 8838, 1, 0, 0, 0, 1026, 8840, 1, 0, 0, 0, 1028, 8849, 1, 0, 0, 0, 1030, 8867, 1, 0, 0, 0, 1032, 8869, 1, 0, 0, 0, 1034, 8871, 1, 0, 0, 0, 1036, 8873, 1, 0, 0, 0, 1038, 8881, 1, 0, 0, 0, 1040, 8883, 1, 0, 0, 0, 1042, 8885, 1, 0, 0, 0, 1044, 8889, 1, 0, 0, 0, 1046, 8897, 1, 0, 0, 0, 1048, 8918, 1, 0, 0, 0, 1050, 8920, 1, 0, 0, 0, 1052, 8922, 1, 0, 0, 0, 1054, 8928, 1, 0, 0, 0, 1056, 8945, 1, 0, 0, 0, 1058, 8954, 1, 0, 0, 0, 1060, 8956, 1, 0, 0, 0, 1062, 8963, 1, 0, 0, 0, 1064, 8967, 1, 0, 0, 0, 1066, 8969, 1, 0, 0, 0, 1068, 8971, 1, 0, 0, 0, 1070, 8973, 1, 0, 0, 0, 1072, 8980, 1, 0, 0, 0, 1074, 8997, 1, 0, 0, 0, 1076, 8999, 1, 0, 0, 0, 1078, 9002, 1, 0, 0, 0, 1080, 9007, 1, 0, 0, 0, 1082, 9012, 1, 0, 0, 0, 1084, 9018, 1, 0, 0, 0, 1086, 9025, 1, 0, 0, 0, 1088, 9027, 1, 0, 0, 0, 1090, 9030, 1, 0, 0, 0, 1092, 9034, 1, 0, 0, 0, 1094, 9041, 1, 0, 0, 0, 1096, 9053, 1, 0, 0, 0, 1098, 9056, 1, 0, 0, 0, 1100, 9070, 1, 0, 0, 0, 1102, 9073, 1, 0, 0, 0, 1104, 9142, 1, 0, 0, 0, 1106, 9166, 1, 0, 0, 0, 1108, 9175, 1, 0, 0, 0, 1110, 9189, 1, 0, 0, 0, 1112, 9191, 1, 0, 0, 0, 1114, 9202, 1, 0, 0, 0, 1116, 9225, 1, 0, 0, 0, 1118, 9228, 1, 0, 0, 0, 1120, 9267, 1, 0, 0, 0, 1122, 9269, 1, 0, 0, 0, 1124, 9277, 1, 0, 0, 0, 1126, 9285, 1, 0, 0, 0, 1128, 9292, 1, 0, 0, 0, 1130, 9300, 1, 0, 0, 0, 1132, 9317, 1, 0, 0, 0, 1134, 9319, 1, 0, 0, 0, 1136, 9323, 1, 0, 0, 0, 1138, 9331, 1, 0, 0, 0, 1140, 9336, 1, 0, 0, 0, 1142, 9339, 1, 0, 0, 0, 1144, 9342, 1, 0, 0, 0, 1146, 9349, 1, 0, 0, 0, 1148, 9351, 1, 0, 0, 0, 1150, 9359, 1, 0, 0, 0, 1152, 9364, 1, 0, 0, 0, 1154, 9385, 1, 0, 0, 0, 1156, 9393, 1, 0, 0, 0, 1158, 9403, 1, 0, 0, 0, 1160, 9415, 1, 0, 0, 0, 1162, 9417, 1, 0, 0, 0, 1164, 9431, 1, 0, 0, 0, 1166, 9451, 1, 0, 0, 0, 1168, 9460, 1, 0, 0, 0, 1170, 9478, 1, 0, 0, 0, 1172, 9484, 1, 0, 0, 0, 1174, 9486, 1, 0, 0, 0, 1176, 9493, 1, 0, 0, 0, 1178, 9521, 1, 0, 0, 0, 1180, 9523, 1, 0, 0, 0, 1182, 9529, 1, 0, 0, 0, 1184, 9533, 1, 0, 0, 0, 1186, 9535, 1, 0, 0, 0, 1188, 9543, 1, 0, 0, 0, 1190, 9547, 1, 0, 0, 0, 1192, 9554, 1, 0, 0, 0, 1194, 9571, 1, 0, 0, 0, 1196, 9573, 1, 0, 0, 0, 1198, 9575, 1, 0, 0, 0, 1200, 9585, 1, 0, 0, 0, 1202, 9593, 1, 0, 0, 0, 1204, 9620, 1, 0, 0, 0, 1206, 9622, 1, 0, 0, 0, 1208, 9629, 1, 0, 0, 0, 1210, 9632, 1, 0, 0, 0, 1212, 9634, 1, 0, 0, 0, 1214, 9638, 1, 0, 0, 0, 1216, 9646, 1, 0, 0, 0, 1218, 9654, 1, 0, 0, 0, 1220, 9662, 1, 0, 0, 0, 1222, 9671, 1, 0, 0, 0, 1224, 9675, 1, 0, 0, 0, 1226, 9679, 1, 0, 0, 0, 1228, 9705, 1, 0, 0, 0, 1230, 9719, 1, 0, 0, 0, 1232, 9739, 1, 0, 0, 0, 1234, 9749, 1, 0, 0, 0, 1236, 9753, 1, 0, 0, 0, 1238, 9761, 1, 0, 0, 0, 1240, 9769, 1, 0, 0, 0, 1242, 9775, 1, 0, 0, 0, 1244, 9779, 1, 0, 0, 0, 1246, 9786, 1, 0, 0, 0, 1248, 9791, 1, 0, 0, 0, 1250, 9806, 1, 0, 0, 0, 1252, 9886, 1, 0, 0, 0, 1254, 9888, 1, 0, 0, 0, 1256, 9890, 1, 0, 0, 0, 1258, 9929, 1, 0, 0, 0, 1260, 9933, 1, 0, 0, 0, 1262, 10119, 1, 0, 0, 0, 1264, 10126, 1, 0, 0, 0, 1266, 10138, 1, 0, 0, 0, 1268, 10140, 1, 0, 0, 0, 1270, 10145, 1, 0, 0, 0, 1272, 10153, 1, 0, 0, 0, 1274, 10158, 1, 0, 0, 0, 1276, 10164, 1, 0, 0, 0, 1278, 10181, 1, 0, 0, 0, 1280, 10183, 1, 0, 0, 0, 1282, 10186, 1, 0, 0, 0, 1284, 10192, 1, 0, 0, 0, 1286, 10198, 1, 0, 0, 0, 1288, 10201, 1, 0, 0, 0, 1290, 10209, 1, 0, 0, 0, 1292, 10213, 1, 0, 0, 0, 1294, 10218, 1, 0, 0, 0, 1296, 10233, 1, 0, 0, 0, 1298, 10235, 1, 0, 0, 0, 1300, 10254, 1, 0, 0, 0, 1302, 10262, 1, 0, 0, 0, 1304, 10271, 1, 0, 0, 0, 1306, 10273, 1, 0, 0, 0, 1308, 10294, 1, 0, 0, 0, 1310, 10296, 1, 0, 0, 0, 1312, 10303, 1, 0, 0, 0, 1314, 10309, 1, 0, 0, 0, 1316, 10313, 1, 0, 0, 0, 1318, 10315, 1, 0, 0, 0, 1320, 10323, 1, 0, 0, 0, 1322, 10331, 1, 0, 0, 0, 1324, 10345, 1, 0, 0, 0, 1326, 10347, 1, 0, 0, 0, 1328, 10355, 1, 0, 0, 0, 1330, 10363, 1, 0, 0, 0, 1332, 10376, 1, 0, 0, 0, 1334, 10380, 1, 0, 0, 0, 1336, 10382, 1, 0, 0, 0, 1338, 10395, 1, 0, 0, 0, 1340, 10397, 1, 0, 0, 0, 1342, 10405, 1, 0, 0, 0, 1344, 10412, 1, 0, 0, 0, 1346, 10420, 1, 0, 0, 0, 1348, 10432, 1, 0, 0, 0, 1350, 10434, 1, 0, 0, 0, 1352, 10436, 1, 0, 0, 0, 1354, 10445, 1, 0, 0, 0, 1356, 10476, 1, 0, 0, 0, 1358, 10485, 1, 0, 0, 0, 1360, 10492, 1, 0, 0, 0, 1362, 10494, 1, 0, 0, 0, 1364, 10505, 1, 0, 0, 0, 1366, 10509, 1, 0, 0, 0, 1368, 10514, 1, 0, 0, 0, 1370, 10517, 1, 0, 0, 0, 1372, 10519, 1, 0, 0, 0, 1374, 10540, 1, 0, 0, 0, 1376, 10542, 1, 0, 0, 0, 1378, 10545, 1, 0, 0, 0, 1380, 10552, 1, 0, 0, 0, 1382, 10555, 1, 0, 0, 0, 1384, 10557, 1, 0, 0, 0, 1386, 10573, 1, 0, 0, 0, 1388, 10575, 1, 0, 0, 0, 1390, 10583, 1, 0, 0, 0, 1392, 10591, 1, 0, 0, 0, 1394, 10599, 1, 0, 0, 0, 1396, 10607, 1, 0, 0, 0, 1398, 10615, 1, 0, 0, 0, 1400, 10619, 1, 0, 0, 0, 1402, 10623, 1, 0, 0, 0, 1404, 10627, 1, 0, 0, 0, 1406, 10631, 1, 0, 0, 0, 1408, 10635, 1, 0, 0, 0, 1410, 10639, 1, 0, 0, 0, 1412, 10643, 1, 0, 0, 0, 1414, 10651, 1, 0, 0, 0, 1416, 10659, 1, 0, 0, 0, 1418, 10663, 1, 0, 0, 0, 1420, 10667, 1, 0, 0, 0, 1422, 10671, 1, 0, 0, 0, 1424, 10673, 1, 0, 0, 0, 1426, 10679, 1, 0, 0, 0, 1428, 10685, 1, 0, 0, 0, 1430, 10687, 1, 0, 0, 0, 1432, 10694, 1, 0, 0, 0, 1434, 10696, 1, 0, 0, 0, 1436, 10698, 1, 0, 0, 0, 1438, 10700, 1, 0, 0, 0, 1440, 10706, 1, 0, 0, 0, 1442, 10712, 1, 0, 0, 0, 1444, 10718, 1, 0, 0, 0, 1446, 10755, 1, 0, 0, 0, 1448, 10757, 1, 0, 0, 0, 1450, 10759, 1, 0, 0, 0, 1452, 10761, 1, 0, 0, 0, 1454, 10763, 1, 0, 0, 0, 1456, 10765, 1, 0, 0, 0, 1458, 10780, 1, 0, 0, 0, 1460, 10782, 1, 0, 0, 0, 1462, 10790, 1, 0, 0, 0, 1464, 10792, 1, 0, 0, 0, 1466, 10794, 1, 0, 0, 0, 1468, 10801, 1, 0, 0, 0, 1470, 10803, 1, 0, 0, 0, 1472, 10815, 1, 0, 0, 0, 1474, 10817, 1, 0, 0, 0, 1476, 10831, 1, 0, 0, 0, 1478, 10835, 1, 0, 0, 0, 1480, 10844, 1, 0, 0, 0, 1482, 10850, 1, 0, 0, 0, 1484, 10854, 1, 0, 0, 0, 1486, 10860, 1, 0, 0, 0, 1488, 10868, 1, 0, 0, 0, 1490, 10880, 1, 0, 0, 0, 1492, 10882, 1, 0, 0, 0, 1494, 10884, 1, 0, 0, 0, 1496, 10937, 1, 0, 0, 0, 1498, 10939, 1, 0, 0, 0, 1500, 10941, 1, 0, 0, 0, 1502, 10943, 1, 0, 0, 0, 1504, 10950, 1, 0, 0, 0, 1506, 10973, 1, 0, 0, 0, 1508, 10975, 1, 0, 0, 0, 1510, 10981, 1, 0, 0, 0, 1512, 10985, 1, 0, 0, 0, 1514, 10987, 1, 0, 0, 0, 1516, 10994, 1, 0, 0, 0, 1518, 11001, 1, 0, 0, 0, 1520, 11004, 1, 0, 0, 0, 1522, 11008, 1, 0, 0, 0, 1524, 11015, 1, 0, 0, 0, 1526, 11017, 1, 0, 0, 0, 1528, 11041, 1, 0, 0, 0, 1530, 11043, 1, 0, 0, 0, 1532, 11050, 1, 0, 0, 0, 1534, 11052, 1, 0, 0, 0, 1536, 11060, 1, 0, 0, 0, 1538, 11063, 1, 0, 0, 0, 1540, 11067, 1, 0, 0, 0, 1542, 11069, 1, 0, 0, 0, 1544, 11073, 1, 0, 0, 0, 1546, 11075, 1, 0, 0, 0, 1548, 11080, 1, 0, 0, 0, 1550, 11085, 1, 0, 0, 0, 1552, 11091, 1, 0, 0, 0, 1554, 11095, 1, 0, 0, 0, 1556, 11097, 1, 0, 0, 0, 1558, 11102, 1, 0, 0, 0, 1560, 11132, 1, 0, 0, 0, 1562, 11134, 1, 0, 0, 0, 1564, 11154, 1, 0, 0, 0, 1566, 11158, 1, 0, 0, 0, 1568, 11160, 1, 0, 0, 0, 1570, 11165, 1, 0, 0, 0, 1572, 11174, 1, 0, 0, 0, 1574, 11176, 1, 0, 0, 0, 1576, 11184, 1, 0, 0, 0, 1578, 11188, 1, 0, 0, 0, 1580, 11190, 1, 0, 0, 0, 1582, 11194, 1, 0, 0, 0, 1584, 11205, 1, 0, 0, 0, 1586, 11222, 1, 0, 0, 0, 1588, 11228, 1, 0, 0, 0, 1590, 11230, 1, 0, 0, 0, 1592, 11240, 1, 0, 0, 0, 1594, 11243, 1, 0, 0, 0, 1596, 11247, 1, 0, 0, 0, 1598, 11255, 1, 0, 0, 0, 1600, 11257, 1, 0, 0, 0, 1602, 11260, 1, 0, 0, 0, 1604, 11265, 1, 0, 0, 0, 1606, 11270, 1, 0, 0, 0, 1608, 11292, 1, 0, 0, 0, 1610, 11306, 1, 0, 0, 0, 1612, 11310, 1, 0, 0, 0, 1614, 11315, 1, 0, 0, 0, 1616, 11317, 1, 0, 0, 0, 1618, 11319, 1, 0, 0, 0, 1620, 11331, 1, 0, 0, 0, 1622, 11333, 1, 0, 0, 0, 1624, 11340, 1, 0, 0, 0, 1626, 11342, 1, 0, 0, 0, 1628, 11360, 1, 0, 0, 0, 1630, 11396, 1, 0, 0, 0, 1632, 11398, 1, 0, 0, 0, 1634, 11407, 1, 0, 0, 0, 1636, 11412, 1, 0, 0, 0, 1638, 11414, 1, 0, 0, 0, 1640, 11418, 1, 0, 0, 0, 1642, 11426, 1, 0, 0, 0, 1644, 11434, 1, 0, 0, 0, 1646, 11436, 1, 0, 0, 0, 1648, 11443, 1, 0, 0, 0, 1650, 11446, 1, 0, 0, 0, 1652, 11462, 1, 0, 0, 0, 1654, 11464, 1, 0, 0, 0, 1656, 11478, 1, 0, 0, 0, 1658, 11480, 1, 0, 0, 0, 1660, 11507, 1, 0, 0, 0, 1662, 11509, 1, 0, 0, 0, 1664, 11520, 1, 0, 0, 0, 1666, 11526, 1, 0, 0, 0, 1668, 11530, 1, 0, 0, 0, 1670, 11532, 1, 0, 0, 0, 1672, 11542, 1, 0, 0, 0, 1674, 11547, 1, 0, 0, 0, 1676, 11564, 1, 0, 0, 0, 1678, 11566, 1, 0, 0, 0, 1680, 11574, 1, 0, 0, 0, 1682, 11611, 1, 0, 0, 0, 1684, 11619, 1, 0, 0, 0, 1686, 11647, 1, 0, 0, 0, 1688, 11649, 1, 0, 0, 0, 1690, 11663, 1, 0, 0, 0, 1692, 11685, 1, 0, 0, 0, 1694, 11687, 1, 0, 0, 0, 1696, 11700, 1, 0, 0, 0, 1698, 11702, 1, 0, 0, 0, 1700, 11706, 1, 0, 0, 0, 1702, 11709, 1, 0, 0, 0, 1704, 11715, 1, 0, 0, 0, 1706, 11721, 1, 0, 0, 0, 1708, 11739, 1, 0, 0, 0, 1710, 11743, 1, 0, 0, 0, 1712, 11748, 1, 0, 0, 0, 1714, 11751, 1, 0, 0, 0, 1716, 11755, 1, 0, 0, 0, 1718, 11760, 1, 0, 0, 0, 1720, 11771, 1, 0, 0, 0, 1722, 11775, 1, 0, 0, 0, 1724, 11779, 1, 0, 0, 0, 1726, 11783, 1, 0, 0, 0, 1728, 11785, 1, 0, 0, 0, 1730, 11790, 1, 0, 0, 0, 1732, 11792, 1, 0, 0, 0, 1734, 11795, 1, 0, 0, 0, 1736, 11815, 1, 0, 0, 0, 1738, 11817, 1, 0, 0, 0, 1740, 11819, 1, 0, 0, 0, 1742, 11821, 1, 0, 0, 0, 1744, 11823, 1, 0, 0, 0, 1746, 11827, 1, 0, 0, 0, 1748, 1750, 3, 4, 2, 0, 1749, 1748, 1, 0, 0, 0, 1750, 1753, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1754, 1755, 5, 0, 0, 1, 1755, 1, 1, 0, 0, 0, 1756, 1757, 3, 1502, 751, 0, 1757, 3, 1, 0, 0, 0, 1758, 1760, 3, 6, 3, 0, 1759, 1761, 5, 7, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 5, 1, 0, 0, 0, 1762, 1880, 3, 486, 243, 0, 1763, 1880, 3, 862, 431, 0, 1764, 1880, 3, 854, 427, 0, 1765, 1880, 3, 856, 428, 0, 1766, 1880, 3, 614, 307, 0, 1767, 1880, 3, 868, 434, 0, 1768, 1880, 3, 512, 256, 0, 1769, 1880, 3, 348, 174, 0, 1770, 1880, 3, 354, 177, 0, 1771, 1880, 3, 364, 182, 0, 1772, 1880, 3, 390, 195, 0, 1773, 1880, 3, 714, 357, 0, 1774, 1880, 3, 42, 21, 0, 1775, 1880, 3, 768, 384, 0, 1776, 1880, 3, 772, 386, 0, 1777, 1880, 3, 784, 392, 0, 1778, 1880, 3, 774, 387, 0, 1779, 1880, 3, 782, 391, 0, 1780, 1880, 3, 408, 204, 0, 1781, 1880, 3, 410, 205, 0, 1782, 1880, 3, 308, 154, 0, 1783, 1880, 3, 864, 432, 0, 1784, 1880, 3, 104, 52, 0, 1785, 1880, 3, 762, 381, 0, 1786, 1880, 3, 150, 75, 0, 1787, 1880, 3, 792, 396, 0, 1788, 1880, 3, 30, 15, 0, 1789, 1880, 3, 32, 16, 0, 1790, 1880, 3, 26, 13, 0, 1791, 1880, 3, 800, 400, 0, 1792, 1880, 3, 290, 145, 0, 1793, 1880, 3, 874, 437, 0, 1794, 1880, 3, 872, 436, 0, 1795, 1880, 3, 404, 202, 0, 1796, 1880, 3, 888, 444, 0, 1797, 1880, 3, 10, 5, 0, 1798, 1880, 3, 100, 50, 0, 1799, 1880, 3, 156, 78, 0, 1800, 1880, 3, 880, 440, 0, 1801, 1880, 3, 566, 283, 0, 1802, 1880, 3, 94, 47, 0, 1803, 1880, 3, 158, 79, 0, 1804, 1880, 3, 430, 215, 0, 1805, 1880, 3, 292, 146, 0, 1806, 1880, 3, 490, 245, 0, 1807, 1880, 3, 742, 371, 0, 1808, 1880, 3, 878, 439, 0, 1809, 1880, 3, 866, 433, 0, 1810, 1880, 3, 342, 171, 0, 1811, 1880, 3, 356, 178, 0, 1812, 1880, 3, 382, 191, 0, 1813, 1880, 3, 392, 196, 0, 1814, 1880, 3, 652, 326, 0, 1815, 1880, 3, 40, 20, 0, 1816, 1880, 3, 298, 149, 0, 1817, 1880, 3, 516, 258, 0, 1818, 1880, 3, 530, 265, 0, 1819, 1880, 3, 786, 393, 0, 1820, 1880, 3, 532, 266, 0, 1821, 1880, 3, 406, 203, 0, 1822, 1880, 3, 324, 162, 0, 1823, 1880, 3, 46, 23, 0, 1824, 1880, 3, 306, 153, 0, 1825, 1880, 3, 188, 94, 0, 1826, 1880, 3, 794, 397, 0, 1827, 1880, 3, 288, 144, 0, 1828, 1880, 3, 338, 169, 0, 1829, 1880, 3, 748, 374, 0, 1830, 1880, 3, 434, 217, 0, 1831, 1880, 3, 478, 239, 0, 1832, 1880, 3, 12, 6, 0, 1833, 1880, 3, 24, 12, 0, 1834, 1880, 3, 400, 200, 0, 1835, 1880, 3, 842, 421, 0, 1836, 1880, 3, 946, 473, 0, 1837, 1880, 3, 990, 495, 0, 1838, 1880, 3, 492, 246, 0, 1839, 1880, 3, 966, 483, 0, 1840, 1880, 3, 102, 51, 0, 1841, 1880, 3, 736, 368, 0, 1842, 1880, 3, 540, 270, 0, 1843, 1880, 3, 942, 471, 0, 1844, 1880, 3, 924, 462, 0, 1845, 1880, 3, 576, 288, 0, 1846, 1880, 3, 584, 292, 0, 1847, 1880, 3, 606, 303, 0, 1848, 1880, 3, 1680, 840, 0, 1849, 1880, 3, 394, 197, 0, 1850, 1880, 3, 624, 312, 0, 1851, 1880, 3, 948, 474, 0, 1852, 1880, 3, 820, 410, 0, 1853, 1880, 3, 304, 152, 0, 1854, 1880, 3, 840, 420, 0, 1855, 1880, 3, 970, 485, 0, 1856, 1880, 3, 816, 408, 0, 1857, 1880, 3, 936, 468, 0, 1858, 1880, 3, 538, 269, 0, 1859, 1880, 3, 752, 376, 0, 1860, 1880, 3, 724, 362, 0, 1861, 1880, 3, 722, 361, 0, 1862, 1880, 3, 726, 363, 0, 1863, 1880, 3, 764, 382, 0, 1864, 1880, 3, 586, 293, 0, 1865, 1880, 3, 608, 304, 0, 1866, 1880, 3, 802, 401, 0, 1867, 1880, 3, 570, 285, 0, 1868, 1880, 3, 998, 499, 0, 1869, 1880, 3, 824, 412, 0, 1870, 1880, 3, 562, 281, 0, 1871, 1880, 3, 822, 411, 0, 1872, 1880, 3, 980, 490, 0, 1873, 1880, 3, 886, 443, 0, 1874, 1880, 3, 82, 41, 0, 1875, 1880, 3, 54, 27, 0, 1876, 1880, 3, 92, 46, 0, 1877, 1880, 3, 836, 418, 0, 1878, 1880, 3, 8, 4, 0, 1879, 1762, 1, 0, 0, 0, 1879, 1763, 1, 0, 0, 0, 1879, 1764, 1, 0, 0, 0, 1879, 1765, 1, 0, 0, 0, 1879, 1766, 1, 0, 0, 0, 1879, 1767, 1, 0, 0, 0, 1879, 1768, 1, 0, 0, 0, 1879, 1769, 1, 0, 0, 0, 1879, 1770, 1, 0, 0, 0, 1879, 1771, 1, 0, 0, 0, 1879, 1772, 1, 0, 0, 0, 1879, 1773, 1, 0, 0, 0, 1879, 1774, 1, 0, 0, 0, 1879, 1775, 1, 0, 0, 0, 1879, 1776, 1, 0, 0, 0, 1879, 1777, 1, 0, 0, 0, 1879, 1778, 1, 0, 0, 0, 1879, 1779, 1, 0, 0, 0, 1879, 1780, 1, 0, 0, 0, 1879, 1781, 1, 0, 0, 0, 1879, 1782, 1, 0, 0, 0, 1879, 1783, 1, 0, 0, 0, 1879, 1784, 1, 0, 0, 0, 1879, 1785, 1, 0, 0, 0, 1879, 1786, 1, 0, 0, 0, 1879, 1787, 1, 0, 0, 0, 1879, 1788, 1, 0, 0, 0, 1879, 1789, 1, 0, 0, 0, 1879, 1790, 1, 0, 0, 0, 1879, 1791, 1, 0, 0, 0, 1879, 1792, 1, 0, 0, 0, 1879, 1793, 1, 0, 0, 0, 1879, 1794, 1, 0, 0, 0, 1879, 1795, 1, 0, 0, 0, 1879, 1796, 1, 0, 0, 0, 1879, 1797, 1, 0, 0, 0, 1879, 1798, 1, 0, 0, 0, 1879, 1799, 1, 0, 0, 0, 1879, 1800, 1, 0, 0, 0, 1879, 1801, 1, 0, 0, 0, 1879, 1802, 1, 0, 0, 0, 1879, 1803, 1, 0, 0, 0, 1879, 1804, 1, 0, 0, 0, 1879, 1805, 1, 0, 0, 0, 1879, 1806, 1, 0, 0, 0, 1879, 1807, 1, 0, 0, 0, 1879, 1808, 1, 0, 0, 0, 1879, 1809, 1, 0, 0, 0, 1879, 1810, 1, 0, 0, 0, 1879, 1811, 1, 0, 0, 0, 1879, 1812, 1, 0, 0, 0, 1879, 1813, 1, 0, 0, 0, 1879, 1814, 1, 0, 0, 0, 1879, 1815, 1, 0, 0, 0, 1879, 1816, 1, 0, 0, 0, 1879, 1817, 1, 0, 0, 0, 1879, 1818, 1, 0, 0, 0, 1879, 1819, 1, 0, 0, 0, 1879, 1820, 1, 0, 0, 0, 1879, 1821, 1, 0, 0, 0, 1879, 1822, 1, 0, 0, 0, 1879, 1823, 1, 0, 0, 0, 1879, 1824, 1, 0, 0, 0, 1879, 1825, 1, 0, 0, 0, 1879, 1826, 1, 0, 0, 0, 1879, 1827, 1, 0, 0, 0, 1879, 1828, 1, 0, 0, 0, 1879, 1829, 1, 0, 0, 0, 1879, 1830, 1, 0, 0, 0, 1879, 1831, 1, 0, 0, 0, 1879, 1832, 1, 0, 0, 0, 1879, 1833, 1, 0, 0, 0, 1879, 1834, 1, 0, 0, 0, 1879, 1835, 1, 0, 0, 0, 1879, 1836, 1, 0, 0, 0, 1879, 1837, 1, 0, 0, 0, 1879, 1838, 1, 0, 0, 0, 1879, 1839, 1, 0, 0, 0, 1879, 1840, 1, 0, 0, 0, 1879, 1841, 1, 0, 0, 0, 1879, 1842, 1, 0, 0, 0, 1879, 1843, 1, 0, 0, 0, 1879, 1844, 1, 0, 0, 0, 1879, 1845, 1, 0, 0, 0, 1879, 1846, 1, 0, 0, 0, 1879, 1847, 1, 0, 0, 0, 1879, 1848, 1, 0, 0, 0, 1879, 1849, 1, 0, 0, 0, 1879, 1850, 1, 0, 0, 0, 1879, 1851, 1, 0, 0, 0, 1879, 1852, 1, 0, 0, 0, 1879, 1853, 1, 0, 0, 0, 1879, 1854, 1, 0, 0, 0, 1879, 1855, 1, 0, 0, 0, 1879, 1856, 1, 0, 0, 0, 1879, 1857, 1, 0, 0, 0, 1879, 1858, 1, 0, 0, 0, 1879, 1859, 1, 0, 0, 0, 1879, 1860, 1, 0, 0, 0, 1879, 1861, 1, 0, 0, 0, 1879, 1862, 1, 0, 0, 0, 1879, 1863, 1, 0, 0, 0, 1879, 1864, 1, 0, 0, 0, 1879, 1865, 1, 0, 0, 0, 1879, 1866, 1, 0, 0, 0, 1879, 1867, 1, 0, 0, 0, 1879, 1868, 1, 0, 0, 0, 1879, 1869, 1, 0, 0, 0, 1879, 1870, 1, 0, 0, 0, 1879, 1871, 1, 0, 0, 0, 1879, 1872, 1, 0, 0, 0, 1879, 1873, 1, 0, 0, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1875, 1, 0, 0, 0, 1879, 1876, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1878, 1, 0, 0, 0, 1880, 7, 1, 0, 0, 0, 1881, 1883, 5, 581, 0, 0, 1882, 1884, 5, 582, 0, 0, 1883, 1882, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 9, 1, 0, 0, 0, 1885, 1886, 5, 433, 0, 0, 1886, 1887, 3, 1256, 628, 0, 1887, 11, 1, 0, 0, 0, 1888, 1889, 5, 46, 0, 0, 1889, 1890, 5, 318, 0, 0, 1890, 1892, 3, 1466, 733, 0, 1891, 1893, 3, 14, 7, 0, 1892, 1891, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 3, 16, 8, 0, 1895, 13, 1, 0, 0, 0, 1896, 1897, 5, 105, 0, 0, 1897, 15, 1, 0, 0, 0, 1898, 1900, 3, 22, 11, 0, 1899, 1898, 1, 0, 0, 0, 1900, 1903, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 17, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1904, 1906, 3, 20, 10, 0, 1905, 1904, 1, 0, 0, 0, 1906, 1909, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 19, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 5, 287, 0, 0, 1911, 1914, 3, 1456, 728, 0, 1912, 1914, 5, 78, 0, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1912, 1, 0, 0, 0, 1914, 1946, 1, 0, 0, 0, 1915, 1916, 7, 0, 0, 0, 1916, 1917, 5, 287, 0, 0, 1917, 1946, 3, 1456, 728, 0, 1918, 1946, 7, 1, 0, 0, 1919, 1946, 7, 2, 0, 0, 1920, 1946, 7, 3, 0, 0, 1921, 1946, 7, 4, 0, 0, 1922, 1946, 7, 5, 0, 0, 1923, 1946, 7, 6, 0, 0, 1924, 1946, 7, 7, 0, 0, 1925, 1946, 7, 8, 0, 0, 1926, 1927, 5, 164, 0, 0, 1927, 1928, 5, 74, 0, 0, 1928, 1946, 3, 1462, 731, 0, 1929, 1930, 5, 371, 0, 0, 1930, 1931, 5, 368, 0, 0, 1931, 1946, 3, 1456, 728, 0, 1932, 1933, 5, 68, 0, 0, 1933, 1934, 5, 318, 0, 0, 1934, 1946, 3, 1414, 707, 0, 1935, 1936, 5, 68, 0, 0, 1936, 1937, 5, 66, 0, 0, 1937, 1946, 3, 1414, 707, 0, 1938, 1939, 5, 318, 0, 0, 1939, 1946, 3, 1470, 735, 0, 1940, 1941, 5, 134, 0, 0, 1941, 1946, 3, 1414, 707, 0, 1942, 1943, 5, 99, 0, 0, 1943, 1946, 3, 1470, 735, 0, 1944, 1946, 3, 1490, 745, 0, 1945, 1910, 1, 0, 0, 0, 1945, 1915, 1, 0, 0, 0, 1945, 1918, 1, 0, 0, 0, 1945, 1919, 1, 0, 0, 0, 1945, 1920, 1, 0, 0, 0, 1945, 1921, 1, 0, 0, 0, 1945, 1922, 1, 0, 0, 0, 1945, 1923, 1, 0, 0, 0, 1945, 1924, 1, 0, 0, 0, 1945, 1925, 1, 0, 0, 0, 1945, 1926, 1, 0, 0, 0, 1945, 1929, 1, 0, 0, 0, 1945, 1932, 1, 0, 0, 0, 1945, 1935, 1, 0, 0, 0, 1945, 1938, 1, 0, 0, 0, 1945, 1940, 1, 0, 0, 0, 1945, 1942, 1, 0, 0, 0, 1945, 1944, 1, 0, 0, 0, 1946, 21, 1, 0, 0, 0, 1947, 1958, 3, 20, 10, 0, 1948, 1949, 5, 348, 0, 0, 1949, 1958, 3, 1454, 727, 0, 1950, 1951, 5, 134, 0, 0, 1951, 1958, 3, 1470, 735, 0, 1952, 1953, 5, 318, 0, 0, 1953, 1958, 3, 1470, 735, 0, 1954, 1955, 5, 68, 0, 0, 1955, 1956, 7, 9, 0, 0, 1956, 1958, 3, 1470, 735, 0, 1957, 1947, 1, 0, 0, 0, 1957, 1948, 1, 0, 0, 0, 1957, 1950, 1, 0, 0, 0, 1957, 1952, 1, 0, 0, 0, 1957, 1954, 1, 0, 0, 0, 1958, 23, 1, 0, 0, 0, 1959, 1960, 5, 46, 0, 0, 1960, 1961, 5, 99, 0, 0, 1961, 1963, 3, 1466, 733, 0, 1962, 1964, 3, 14, 7, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 3, 16, 8, 0, 1966, 25, 1, 0, 0, 0, 1967, 1968, 5, 138, 0, 0, 1968, 1969, 7, 10, 0, 0, 1969, 1971, 3, 1468, 734, 0, 1970, 1972, 3, 14, 7, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 3, 18, 9, 0, 1974, 27, 1, 0, 0, 0, 1975, 1980, 1, 0, 0, 0, 1976, 1977, 5, 68, 0, 0, 1977, 1978, 5, 175, 0, 0, 1978, 1980, 3, 1418, 709, 0, 1979, 1975, 1, 0, 0, 0, 1979, 1976, 1, 0, 0, 0, 1980, 29, 1, 0, 0, 0, 1981, 1982, 5, 138, 0, 0, 1982, 1985, 7, 10, 0, 0, 1983, 1986, 5, 30, 0, 0, 1984, 1986, 3, 1468, 734, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1988, 3, 28, 14, 0, 1988, 1989, 3, 88, 44, 0, 1989, 31, 1, 0, 0, 0, 1990, 1991, 5, 138, 0, 0, 1991, 1992, 5, 442, 0, 0, 1992, 1994, 3, 1424, 712, 0, 1993, 1995, 3, 658, 329, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 3, 34, 17, 0, 1997, 33, 1, 0, 0, 0, 1998, 2000, 3, 36, 18, 0, 1999, 2001, 5, 315, 0, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2019, 1, 0, 0, 0, 2002, 2003, 5, 309, 0, 0, 2003, 2004, 5, 94, 0, 0, 2004, 2019, 3, 1422, 711, 0, 2005, 2006, 5, 282, 0, 0, 2006, 2007, 5, 94, 0, 0, 2007, 2019, 3, 1468, 734, 0, 2008, 2009, 5, 333, 0, 0, 2009, 2010, 5, 323, 0, 0, 2010, 2019, 3, 48, 24, 0, 2011, 2013, 5, 269, 0, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 5, 462, 0, 0, 2015, 2016, 5, 80, 0, 0, 2016, 2017, 5, 204, 0, 0, 2017, 2019, 3, 1434, 717, 0, 2018, 1998, 1, 0, 0, 0, 2018, 2002, 1, 0, 0, 0, 2018, 2005, 1, 0, 0, 0, 2018, 2008, 1, 0, 0, 0, 2018, 2012, 1, 0, 0, 0, 2019, 35, 1, 0, 0, 0, 2020, 2024, 3, 38, 19, 0, 2021, 2023, 3, 38, 19, 0, 2022, 2021, 1, 0, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 37, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2069, 5, 222, 0, 0, 2028, 2069, 5, 338, 0, 0, 2029, 2069, 5, 377, 0, 0, 2030, 2032, 5, 77, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2069, 5, 250, 0, 0, 2034, 2036, 5, 205, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2038, 5, 327, 0, 0, 2038, 2045, 5, 243, 0, 0, 2039, 2041, 5, 205, 0, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2043, 5, 327, 0, 0, 2043, 2045, 5, 181, 0, 0, 2044, 2035, 1, 0, 0, 0, 2044, 2040, 1, 0, 0, 0, 2045, 2069, 1, 0, 0, 0, 2046, 2047, 5, 460, 0, 0, 2047, 2069, 7, 11, 0, 0, 2048, 2049, 5, 170, 0, 0, 2049, 2069, 3, 1436, 718, 0, 2050, 2051, 5, 320, 0, 0, 2051, 2069, 3, 1434, 717, 0, 2052, 2053, 5, 333, 0, 0, 2053, 2054, 3, 1434, 717, 0, 2054, 2057, 7, 12, 0, 0, 2055, 2058, 3, 1434, 717, 0, 2056, 2058, 5, 53, 0, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2056, 1, 0, 0, 0, 2058, 2069, 1, 0, 0, 0, 2059, 2060, 5, 333, 0, 0, 2060, 2061, 3, 1434, 717, 0, 2061, 2062, 5, 64, 0, 0, 2062, 2063, 5, 434, 0, 0, 2063, 2069, 1, 0, 0, 0, 2064, 2065, 5, 313, 0, 0, 2065, 2069, 3, 1434, 717, 0, 2066, 2067, 5, 313, 0, 0, 2067, 2069, 5, 30, 0, 0, 2068, 2027, 1, 0, 0, 0, 2068, 2028, 1, 0, 0, 0, 2068, 2029, 1, 0, 0, 0, 2068, 2031, 1, 0, 0, 0, 2068, 2044, 1, 0, 0, 0, 2068, 2046, 1, 0, 0, 0, 2068, 2048, 1, 0, 0, 0, 2068, 2050, 1, 0, 0, 0, 2068, 2052, 1, 0, 0, 0, 2068, 2059, 1, 0, 0, 0, 2068, 2064, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2069, 39, 1, 0, 0, 0, 2070, 2071, 5, 46, 0, 0, 2071, 2072, 5, 66, 0, 0, 2072, 2074, 3, 1464, 732, 0, 2073, 2075, 3, 14, 7, 0, 2074, 2073, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2077, 3, 16, 8, 0, 2077, 41, 1, 0, 0, 0, 2078, 2079, 5, 138, 0, 0, 2079, 2080, 5, 66, 0, 0, 2080, 2081, 3, 1468, 734, 0, 2081, 2082, 3, 44, 22, 0, 2082, 2083, 5, 99, 0, 0, 2083, 2084, 3, 1470, 735, 0, 2084, 43, 1, 0, 0, 0, 2085, 2086, 7, 13, 0, 0, 2086, 45, 1, 0, 0, 0, 2087, 2088, 5, 46, 0, 0, 2088, 2090, 5, 323, 0, 0, 2089, 2091, 3, 514, 257, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2098, 1, 0, 0, 0, 2092, 2094, 3, 48, 24, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 5, 106, 0, 0, 2096, 2099, 3, 1468, 734, 0, 2097, 2099, 3, 48, 24, 0, 2098, 2093, 1, 0, 0, 0, 2098, 2097, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2101, 3, 50, 25, 0, 2101, 47, 1, 0, 0, 0, 2102, 2104, 3, 1472, 736, 0, 2103, 2105, 3, 558, 279, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 49, 1, 0, 0, 0, 2106, 2108, 3, 52, 26, 0, 2107, 2106, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 51, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2119, 3, 188, 94, 0, 2113, 2119, 3, 624, 312, 0, 2114, 2119, 3, 306, 153, 0, 2115, 2119, 3, 434, 217, 0, 2116, 2119, 3, 584, 292, 0, 2117, 2119, 3, 836, 418, 0, 2118, 2112, 1, 0, 0, 0, 2118, 2113, 1, 0, 0, 0, 2118, 2114, 1, 0, 0, 0, 2118, 2115, 1, 0, 0, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2117, 1, 0, 0, 0, 2119, 53, 1, 0, 0, 0, 2120, 2122, 5, 333, 0, 0, 2121, 2123, 7, 14, 0, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2125, 3, 56, 28, 0, 2125, 55, 1, 0, 0, 0, 2126, 2127, 5, 356, 0, 0, 2127, 2135, 3, 830, 415, 0, 2128, 2129, 5, 332, 0, 0, 2129, 2130, 5, 154, 0, 0, 2130, 2131, 5, 36, 0, 0, 2131, 2132, 5, 356, 0, 0, 2132, 2135, 3, 830, 415, 0, 2133, 2135, 3, 60, 30, 0, 2134, 2126, 1, 0, 0, 0, 2134, 2128, 1, 0, 0, 0, 2134, 2133, 1, 0, 0, 0, 2135, 57, 1, 0, 0, 0, 2136, 2139, 5, 30, 0, 0, 2137, 2139, 3, 62, 31, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2137, 1, 0, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2142, 7, 12, 0, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2145, 1, 0, 0, 0, 2143, 2146, 5, 53, 0, 0, 2144, 2146, 3, 64, 32, 0, 2145, 2143, 1, 0, 0, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 59, 1, 0, 0, 0, 2147, 2148, 5, 418, 0, 0, 2148, 2149, 5, 386, 0, 0, 2149, 2175, 3, 74, 37, 0, 2150, 2151, 5, 152, 0, 0, 2151, 2175, 3, 1456, 728, 0, 2152, 2153, 5, 323, 0, 0, 2153, 2175, 3, 1420, 710, 0, 2154, 2156, 5, 267, 0, 0, 2155, 2157, 3, 76, 38, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2175, 1, 0, 0, 0, 2158, 2159, 5, 318, 0, 0, 2159, 2175, 3, 80, 40, 0, 2160, 2161, 5, 332, 0, 0, 2161, 2162, 5, 106, 0, 0, 2162, 2175, 3, 80, 40, 0, 2163, 2164, 5, 383, 0, 0, 2164, 2165, 5, 279, 0, 0, 2165, 2175, 3, 1274, 637, 0, 2166, 2167, 5, 356, 0, 0, 2167, 2168, 5, 337, 0, 0, 2168, 2175, 3, 1456, 728, 0, 2169, 2170, 3, 62, 31, 0, 2170, 2171, 5, 64, 0, 0, 2171, 2172, 5, 434, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2175, 3, 58, 29, 0, 2174, 2147, 1, 0, 0, 0, 2174, 2150, 1, 0, 0, 0, 2174, 2152, 1, 0, 0, 0, 2174, 2154, 1, 0, 0, 0, 2174, 2158, 1, 0, 0, 0, 2174, 2160, 1, 0, 0, 0, 2174, 2163, 1, 0, 0, 0, 2174, 2166, 1, 0, 0, 0, 2174, 2169, 1, 0, 0, 0, 2174, 2173, 1, 0, 0, 0, 2175, 61, 1, 0, 0, 0, 2176, 2181, 3, 1472, 736, 0, 2177, 2178, 5, 11, 0, 0, 2178, 2180, 3, 1472, 736, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2183, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 63, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2189, 3, 66, 33, 0, 2185, 2186, 5, 6, 0, 0, 2186, 2188, 3, 66, 33, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2191, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 65, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2195, 3, 72, 36, 0, 2193, 2195, 3, 320, 160, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2193, 1, 0, 0, 0, 2195, 67, 1, 0, 0, 0, 2196, 2197, 5, 300, 0, 0, 2197, 2202, 7, 15, 0, 0, 2198, 2199, 5, 310, 0, 0, 2199, 2202, 5, 300, 0, 0, 2200, 2202, 5, 330, 0, 0, 2201, 2196, 1, 0, 0, 0, 2201, 2198, 1, 0, 0, 0, 2201, 2200, 1, 0, 0, 0, 2202, 69, 1, 0, 0, 0, 2203, 2208, 5, 96, 0, 0, 2204, 2208, 5, 60, 0, 0, 2205, 2208, 5, 80, 0, 0, 2206, 2208, 3, 78, 39, 0, 2207, 2203, 1, 0, 0, 0, 2207, 2204, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2206, 1, 0, 0, 0, 2208, 71, 1, 0, 0, 0, 2209, 2214, 5, 96, 0, 0, 2210, 2214, 5, 60, 0, 0, 2211, 2214, 5, 80, 0, 0, 2212, 2214, 3, 80, 40, 0, 2213, 2209, 1, 0, 0, 0, 2213, 2210, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2213, 2212, 1, 0, 0, 0, 2214, 73, 1, 0, 0, 0, 2215, 2232, 3, 1456, 728, 0, 2216, 2232, 3, 1490, 745, 0, 2217, 2218, 3, 1200, 600, 0, 2218, 2220, 3, 1456, 728, 0, 2219, 2221, 3, 1204, 602, 0, 2220, 2219, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2232, 1, 0, 0, 0, 2222, 2223, 3, 1200, 600, 0, 2223, 2224, 5, 2, 0, 0, 2224, 2225, 3, 1454, 727, 0, 2225, 2226, 5, 3, 0, 0, 2226, 2227, 3, 1456, 728, 0, 2227, 2232, 1, 0, 0, 0, 2228, 2232, 3, 320, 160, 0, 2229, 2232, 5, 53, 0, 0, 2230, 2232, 5, 254, 0, 0, 2231, 2215, 1, 0, 0, 0, 2231, 2216, 1, 0, 0, 0, 2231, 2217, 1, 0, 0, 0, 2231, 2222, 1, 0, 0, 0, 2231, 2228, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2231, 2230, 1, 0, 0, 0, 2232, 75, 1, 0, 0, 0, 2233, 2236, 3, 1456, 728, 0, 2234, 2236, 5, 53, 0, 0, 2235, 2233, 1, 0, 0, 0, 2235, 2234, 1, 0, 0, 0, 2236, 77, 1, 0, 0, 0, 2237, 2240, 3, 1484, 742, 0, 2238, 2240, 3, 1456, 728, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2238, 1, 0, 0, 0, 2240, 79, 1, 0, 0, 0, 2241, 2244, 3, 1486, 743, 0, 2242, 2244, 3, 1456, 728, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2242, 1, 0, 0, 0, 2244, 81, 1, 0, 0, 0, 2245, 2246, 5, 313, 0, 0, 2246, 2247, 3, 84, 42, 0, 2247, 83, 1, 0, 0, 0, 2248, 2249, 5, 418, 0, 0, 2249, 2257, 5, 386, 0, 0, 2250, 2251, 5, 356, 0, 0, 2251, 2252, 5, 244, 0, 0, 2252, 2257, 5, 251, 0, 0, 2253, 2254, 5, 332, 0, 0, 2254, 2257, 5, 106, 0, 0, 2255, 2257, 3, 86, 43, 0, 2256, 2248, 1, 0, 0, 0, 2256, 2250, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2256, 2255, 1, 0, 0, 0, 2257, 85, 1, 0, 0, 0, 2258, 2261, 5, 30, 0, 0, 2259, 2261, 3, 62, 31, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2259, 1, 0, 0, 0, 2261, 87, 1, 0, 0, 0, 2262, 2263, 5, 333, 0, 0, 2263, 2266, 3, 56, 28, 0, 2264, 2266, 3, 82, 41, 0, 2265, 2262, 1, 0, 0, 0, 2265, 2264, 1, 0, 0, 0, 2266, 89, 1, 0, 0, 0, 2267, 2268, 5, 333, 0, 0, 2268, 2271, 3, 60, 30, 0, 2269, 2271, 3, 82, 41, 0, 2270, 2267, 1, 0, 0, 0, 2270, 2269, 1, 0, 0, 0, 2271, 91, 1, 0, 0, 0, 2272, 2282, 5, 335, 0, 0, 2273, 2283, 3, 62, 31, 0, 2274, 2275, 5, 418, 0, 0, 2275, 2283, 5, 386, 0, 0, 2276, 2277, 5, 356, 0, 0, 2277, 2278, 5, 244, 0, 0, 2278, 2283, 5, 251, 0, 0, 2279, 2280, 5, 332, 0, 0, 2280, 2283, 5, 106, 0, 0, 2281, 2283, 5, 30, 0, 0, 2282, 2273, 1, 0, 0, 0, 2282, 2274, 1, 0, 0, 0, 2282, 2276, 1, 0, 0, 0, 2282, 2279, 1, 0, 0, 0, 2282, 2281, 1, 0, 0, 0, 2283, 93, 1, 0, 0, 0, 2284, 2285, 5, 333, 0, 0, 2285, 2286, 5, 165, 0, 0, 2286, 2287, 3, 96, 48, 0, 2287, 2288, 3, 98, 49, 0, 2288, 95, 1, 0, 0, 0, 2289, 2292, 5, 30, 0, 0, 2290, 2292, 3, 1388, 694, 0, 2291, 2289, 1, 0, 0, 0, 2291, 2290, 1, 0, 0, 0, 2292, 97, 1, 0, 0, 0, 2293, 2294, 7, 16, 0, 0, 2294, 99, 1, 0, 0, 0, 2295, 2296, 5, 155, 0, 0, 2296, 101, 1, 0, 0, 0, 2297, 2298, 5, 187, 0, 0, 2298, 2299, 7, 17, 0, 0, 2299, 103, 1, 0, 0, 0, 2300, 2301, 5, 138, 0, 0, 2301, 2303, 5, 92, 0, 0, 2302, 2304, 3, 746, 373, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2308, 3, 1116, 558, 0, 2306, 2309, 3, 106, 53, 0, 2307, 2309, 3, 116, 58, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2307, 1, 0, 0, 0, 2309, 2434, 1, 0, 0, 0, 2310, 2311, 5, 138, 0, 0, 2311, 2312, 5, 92, 0, 0, 2312, 2313, 5, 30, 0, 0, 2313, 2314, 5, 68, 0, 0, 2314, 2315, 5, 351, 0, 0, 2315, 2319, 3, 1400, 700, 0, 2316, 2317, 5, 281, 0, 0, 2317, 2318, 5, 147, 0, 0, 2318, 2320, 3, 1470, 735, 0, 2319, 2316, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2322, 5, 333, 0, 0, 2322, 2323, 5, 351, 0, 0, 2323, 2325, 3, 1398, 699, 0, 2324, 2326, 3, 976, 488, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2434, 1, 0, 0, 0, 2327, 2328, 5, 138, 0, 0, 2328, 2330, 5, 92, 0, 0, 2329, 2331, 3, 746, 373, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 3, 1404, 702, 0, 2333, 2334, 5, 435, 0, 0, 2334, 2335, 5, 285, 0, 0, 2335, 2340, 3, 1410, 705, 0, 2336, 2337, 5, 62, 0, 0, 2337, 2338, 5, 422, 0, 0, 2338, 2341, 3, 108, 54, 0, 2339, 2341, 5, 53, 0, 0, 2340, 2336, 1, 0, 0, 0, 2340, 2339, 1, 0, 0, 0, 2341, 2434, 1, 0, 0, 0, 2342, 2343, 5, 138, 0, 0, 2343, 2345, 5, 92, 0, 0, 2344, 2346, 3, 746, 373, 0, 2345, 2344, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 3, 1404, 702, 0, 2348, 2349, 5, 436, 0, 0, 2349, 2350, 5, 285, 0, 0, 2350, 2352, 3, 1410, 705, 0, 2351, 2353, 7, 18, 0, 0, 2352, 2351, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2434, 1, 0, 0, 0, 2354, 2355, 5, 138, 0, 0, 2355, 2357, 5, 226, 0, 0, 2356, 2358, 3, 746, 373, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2362, 3, 1410, 705, 0, 2360, 2363, 3, 106, 53, 0, 2361, 2363, 3, 118, 59, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2361, 1, 0, 0, 0, 2363, 2434, 1, 0, 0, 0, 2364, 2365, 5, 138, 0, 0, 2365, 2366, 5, 226, 0, 0, 2366, 2367, 5, 30, 0, 0, 2367, 2368, 5, 68, 0, 0, 2368, 2369, 5, 351, 0, 0, 2369, 2373, 3, 1400, 700, 0, 2370, 2371, 5, 281, 0, 0, 2371, 2372, 5, 147, 0, 0, 2372, 2374, 3, 1470, 735, 0, 2373, 2370, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 5, 333, 0, 0, 2376, 2377, 5, 351, 0, 0, 2377, 2379, 3, 1398, 699, 0, 2378, 2380, 3, 976, 488, 0, 2379, 2378, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2434, 1, 0, 0, 0, 2381, 2382, 5, 138, 0, 0, 2382, 2384, 5, 328, 0, 0, 2383, 2385, 3, 746, 373, 0, 2384, 2383, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2387, 3, 1410, 705, 0, 2387, 2388, 3, 106, 53, 0, 2388, 2434, 1, 0, 0, 0, 2389, 2390, 5, 138, 0, 0, 2390, 2392, 5, 376, 0, 0, 2391, 2393, 3, 746, 373, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 3, 1408, 704, 0, 2395, 2396, 3, 106, 53, 0, 2396, 2434, 1, 0, 0, 0, 2397, 2398, 5, 138, 0, 0, 2398, 2399, 5, 259, 0, 0, 2399, 2401, 5, 376, 0, 0, 2400, 2402, 3, 746, 373, 0, 2401, 2400, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2404, 3, 1408, 704, 0, 2404, 2405, 3, 106, 53, 0, 2405, 2434, 1, 0, 0, 0, 2406, 2407, 5, 138, 0, 0, 2407, 2408, 5, 259, 0, 0, 2408, 2409, 5, 376, 0, 0, 2409, 2410, 5, 30, 0, 0, 2410, 2411, 5, 68, 0, 0, 2411, 2412, 5, 351, 0, 0, 2412, 2416, 3, 1400, 700, 0, 2413, 2414, 5, 281, 0, 0, 2414, 2415, 5, 147, 0, 0, 2415, 2417, 3, 1470, 735, 0, 2416, 2413, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 5, 333, 0, 0, 2419, 2420, 5, 351, 0, 0, 2420, 2422, 3, 1398, 699, 0, 2421, 2423, 3, 976, 488, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2434, 1, 0, 0, 0, 2424, 2425, 5, 138, 0, 0, 2425, 2426, 5, 63, 0, 0, 2426, 2428, 5, 92, 0, 0, 2427, 2429, 3, 746, 373, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2431, 3, 1116, 558, 0, 2431, 2432, 3, 106, 53, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2300, 1, 0, 0, 0, 2433, 2310, 1, 0, 0, 0, 2433, 2327, 1, 0, 0, 0, 2433, 2342, 1, 0, 0, 0, 2433, 2354, 1, 0, 0, 0, 2433, 2364, 1, 0, 0, 0, 2433, 2381, 1, 0, 0, 0, 2433, 2389, 1, 0, 0, 0, 2433, 2397, 1, 0, 0, 0, 2433, 2406, 1, 0, 0, 0, 2433, 2424, 1, 0, 0, 0, 2434, 105, 1, 0, 0, 0, 2435, 2440, 3, 120, 60, 0, 2436, 2437, 5, 6, 0, 0, 2437, 2439, 3, 120, 60, 0, 2438, 2436, 1, 0, 0, 0, 2439, 2442, 1, 0, 0, 0, 2440, 2438, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 107, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2443, 2444, 5, 68, 0, 0, 2444, 2453, 3, 1176, 588, 0, 2445, 2446, 5, 64, 0, 0, 2446, 2447, 3, 110, 55, 0, 2447, 2448, 5, 94, 0, 0, 2448, 2449, 3, 110, 55, 0, 2449, 2453, 1, 0, 0, 0, 2450, 2451, 5, 105, 0, 0, 2451, 2453, 3, 114, 57, 0, 2452, 2443, 1, 0, 0, 0, 2452, 2445, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2453, 109, 1, 0, 0, 0, 2454, 2455, 5, 2, 0, 0, 2455, 2460, 3, 112, 56, 0, 2456, 2457, 5, 6, 0, 0, 2457, 2459, 3, 112, 56, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2462, 1, 0, 0, 0, 2460, 2458, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2463, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2463, 2464, 5, 3, 0, 0, 2464, 111, 1, 0, 0, 0, 2465, 2469, 3, 1176, 588, 0, 2466, 2469, 5, 262, 0, 0, 2467, 2469, 5, 260, 0, 0, 2468, 2465, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2468, 2467, 1, 0, 0, 0, 2469, 113, 1, 0, 0, 0, 2470, 2471, 5, 2, 0, 0, 2471, 2472, 5, 533, 0, 0, 2472, 2473, 3, 320, 160, 0, 2473, 2474, 5, 6, 0, 0, 2474, 2475, 5, 534, 0, 0, 2475, 2476, 3, 320, 160, 0, 2476, 2477, 5, 3, 0, 0, 2477, 115, 1, 0, 0, 0, 2478, 2479, 5, 435, 0, 0, 2479, 2480, 5, 285, 0, 0, 2480, 2481, 3, 1410, 705, 0, 2481, 2482, 3, 144, 72, 0, 2482, 2487, 1, 0, 0, 0, 2483, 2484, 5, 436, 0, 0, 2484, 2485, 5, 285, 0, 0, 2485, 2487, 3, 1410, 705, 0, 2486, 2478, 1, 0, 0, 0, 2486, 2483, 1, 0, 0, 0, 2487, 117, 1, 0, 0, 0, 2488, 2489, 5, 435, 0, 0, 2489, 2490, 5, 285, 0, 0, 2490, 2491, 3, 1410, 705, 0, 2491, 119, 1, 0, 0, 0, 2492, 2495, 5, 133, 0, 0, 2493, 2494, 5, 45, 0, 0, 2494, 2496, 3, 1434, 717, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2710, 3, 238, 119, 0, 2498, 2499, 5, 138, 0, 0, 2499, 2500, 5, 45, 0, 0, 2500, 2501, 3, 1434, 717, 0, 2501, 2502, 3, 474, 237, 0, 2502, 2710, 1, 0, 0, 0, 2503, 2504, 5, 372, 0, 0, 2504, 2505, 5, 45, 0, 0, 2505, 2710, 3, 1434, 717, 0, 2506, 2507, 5, 191, 0, 0, 2507, 2509, 5, 45, 0, 0, 2508, 2510, 3, 746, 373, 0, 2509, 2508, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 3, 1434, 717, 0, 2512, 2514, 3, 124, 62, 0, 2513, 2512, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2710, 1, 0, 0, 0, 2515, 2516, 5, 333, 0, 0, 2516, 2517, 5, 379, 0, 0, 2517, 2710, 5, 277, 0, 0, 2518, 2519, 5, 158, 0, 0, 2519, 2520, 5, 80, 0, 0, 2520, 2710, 3, 1434, 717, 0, 2521, 2522, 5, 333, 0, 0, 2522, 2523, 5, 379, 0, 0, 2523, 2710, 5, 158, 0, 0, 2524, 2525, 5, 333, 0, 0, 2525, 2710, 7, 19, 0, 0, 2526, 2528, 5, 193, 0, 0, 2527, 2529, 7, 20, 0, 0, 2528, 2527, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2710, 5, 357, 0, 0, 2531, 2532, 5, 186, 0, 0, 2532, 2536, 5, 357, 0, 0, 2533, 2537, 5, 30, 0, 0, 2534, 2537, 5, 99, 0, 0, 2535, 2537, 3, 1434, 717, 0, 2536, 2533, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2535, 1, 0, 0, 0, 2537, 2710, 1, 0, 0, 0, 2538, 2539, 5, 193, 0, 0, 2539, 2540, 7, 20, 0, 0, 2540, 2541, 5, 321, 0, 0, 2541, 2710, 3, 1434, 717, 0, 2542, 2543, 5, 186, 0, 0, 2543, 2544, 5, 321, 0, 0, 2544, 2710, 3, 1434, 717, 0, 2545, 2547, 5, 269, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2549, 5, 228, 0, 0, 2549, 2710, 3, 1410, 705, 0, 2550, 2551, 5, 275, 0, 0, 2551, 2710, 3, 556, 278, 0, 2552, 2553, 5, 77, 0, 0, 2553, 2710, 5, 275, 0, 0, 2554, 2555, 5, 282, 0, 0, 2555, 2556, 5, 94, 0, 0, 2556, 2710, 3, 1468, 734, 0, 2557, 2558, 5, 333, 0, 0, 2558, 2559, 5, 351, 0, 0, 2559, 2710, 3, 1398, 699, 0, 2560, 2561, 5, 333, 0, 0, 2561, 2710, 3, 132, 66, 0, 2562, 2563, 5, 313, 0, 0, 2563, 2710, 3, 132, 66, 0, 2564, 2565, 5, 312, 0, 0, 2565, 2566, 5, 219, 0, 0, 2566, 2710, 3, 130, 65, 0, 2567, 2568, 5, 193, 0, 0, 2568, 2569, 5, 414, 0, 0, 2569, 2570, 5, 251, 0, 0, 2570, 2710, 5, 327, 0, 0, 2571, 2572, 5, 186, 0, 0, 2572, 2573, 5, 414, 0, 0, 2573, 2574, 5, 251, 0, 0, 2574, 2710, 5, 327, 0, 0, 2575, 2576, 5, 209, 0, 0, 2576, 2577, 5, 414, 0, 0, 2577, 2578, 5, 251, 0, 0, 2578, 2710, 5, 327, 0, 0, 2579, 2580, 5, 269, 0, 0, 2580, 2581, 5, 209, 0, 0, 2581, 2582, 5, 414, 0, 0, 2582, 2583, 5, 251, 0, 0, 2583, 2710, 5, 327, 0, 0, 2584, 2586, 5, 191, 0, 0, 2585, 2587, 5, 44, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 746, 373, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2593, 3, 1430, 715, 0, 2592, 2594, 3, 124, 62, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2710, 1, 0, 0, 0, 2595, 2597, 5, 133, 0, 0, 2596, 2598, 5, 44, 0, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2601, 3, 514, 257, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2710, 3, 206, 103, 0, 2603, 2605, 5, 138, 0, 0, 2604, 2606, 5, 44, 0, 0, 2605, 2604, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 3, 1430, 715, 0, 2608, 2609, 3, 122, 61, 0, 2609, 2710, 1, 0, 0, 0, 2610, 2612, 5, 138, 0, 0, 2611, 2613, 5, 44, 0, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 3, 1430, 715, 0, 2615, 2616, 7, 21, 0, 0, 2616, 2617, 5, 77, 0, 0, 2617, 2618, 5, 78, 0, 0, 2618, 2710, 1, 0, 0, 0, 2619, 2621, 5, 138, 0, 0, 2620, 2622, 5, 44, 0, 0, 2621, 2620, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 3, 1430, 715, 0, 2624, 2625, 5, 191, 0, 0, 2625, 2627, 5, 437, 0, 0, 2626, 2628, 3, 746, 373, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2710, 1, 0, 0, 0, 2629, 2631, 5, 138, 0, 0, 2630, 2632, 5, 44, 0, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 3, 1430, 715, 0, 2634, 2635, 5, 333, 0, 0, 2635, 2636, 5, 342, 0, 0, 2636, 2637, 3, 1462, 731, 0, 2637, 2710, 1, 0, 0, 0, 2638, 2640, 5, 138, 0, 0, 2639, 2641, 5, 44, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 3, 1430, 715, 0, 2643, 2644, 7, 22, 0, 0, 2644, 2645, 3, 132, 66, 0, 2645, 2710, 1, 0, 0, 0, 2646, 2648, 5, 138, 0, 0, 2647, 2649, 5, 44, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 3, 1430, 715, 0, 2651, 2652, 5, 333, 0, 0, 2652, 2653, 5, 345, 0, 0, 2653, 2654, 3, 1472, 736, 0, 2654, 2710, 1, 0, 0, 0, 2655, 2657, 5, 138, 0, 0, 2656, 2658, 5, 44, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 3, 1430, 715, 0, 2660, 2661, 5, 133, 0, 0, 2661, 2662, 5, 438, 0, 0, 2662, 2663, 3, 224, 112, 0, 2663, 2664, 5, 36, 0, 0, 2664, 2666, 5, 219, 0, 0, 2665, 2667, 3, 312, 156, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2710, 1, 0, 0, 0, 2668, 2670, 5, 138, 0, 0, 2669, 2671, 5, 44, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2673, 3, 1430, 715, 0, 2673, 2674, 3, 140, 70, 0, 2674, 2710, 1, 0, 0, 0, 2675, 2677, 5, 138, 0, 0, 2676, 2678, 5, 44, 0, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 3, 1430, 715, 0, 2680, 2681, 5, 191, 0, 0, 2681, 2683, 5, 219, 0, 0, 2682, 2684, 3, 746, 373, 0, 2683, 2682, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2710, 1, 0, 0, 0, 2685, 2687, 5, 138, 0, 0, 2686, 2688, 5, 44, 0, 0, 2687, 2686, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2691, 3, 1430, 715, 0, 2690, 2692, 3, 766, 383, 0, 2691, 2690, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 5, 360, 0, 0, 2694, 2696, 3, 1166, 583, 0, 2695, 2697, 3, 126, 63, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2699, 1, 0, 0, 0, 2698, 2700, 3, 128, 64, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2710, 1, 0, 0, 0, 2701, 2703, 5, 138, 0, 0, 2702, 2704, 5, 44, 0, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2706, 3, 1430, 715, 0, 2706, 2707, 3, 370, 185, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2710, 3, 370, 185, 0, 2709, 2492, 1, 0, 0, 0, 2709, 2498, 1, 0, 0, 0, 2709, 2503, 1, 0, 0, 0, 2709, 2506, 1, 0, 0, 0, 2709, 2515, 1, 0, 0, 0, 2709, 2518, 1, 0, 0, 0, 2709, 2521, 1, 0, 0, 0, 2709, 2524, 1, 0, 0, 0, 2709, 2526, 1, 0, 0, 0, 2709, 2531, 1, 0, 0, 0, 2709, 2538, 1, 0, 0, 0, 2709, 2542, 1, 0, 0, 0, 2709, 2546, 1, 0, 0, 0, 2709, 2550, 1, 0, 0, 0, 2709, 2552, 1, 0, 0, 0, 2709, 2554, 1, 0, 0, 0, 2709, 2557, 1, 0, 0, 0, 2709, 2560, 1, 0, 0, 0, 2709, 2562, 1, 0, 0, 0, 2709, 2564, 1, 0, 0, 0, 2709, 2567, 1, 0, 0, 0, 2709, 2571, 1, 0, 0, 0, 2709, 2575, 1, 0, 0, 0, 2709, 2579, 1, 0, 0, 0, 2709, 2584, 1, 0, 0, 0, 2709, 2595, 1, 0, 0, 0, 2709, 2603, 1, 0, 0, 0, 2709, 2610, 1, 0, 0, 0, 2709, 2619, 1, 0, 0, 0, 2709, 2629, 1, 0, 0, 0, 2709, 2638, 1, 0, 0, 0, 2709, 2646, 1, 0, 0, 0, 2709, 2655, 1, 0, 0, 0, 2709, 2668, 1, 0, 0, 0, 2709, 2675, 1, 0, 0, 0, 2709, 2685, 1, 0, 0, 0, 2709, 2701, 1, 0, 0, 0, 2709, 2708, 1, 0, 0, 0, 2710, 121, 1, 0, 0, 0, 2711, 2712, 5, 333, 0, 0, 2712, 2713, 5, 53, 0, 0, 2713, 2717, 3, 1210, 605, 0, 2714, 2715, 5, 191, 0, 0, 2715, 2717, 5, 53, 0, 0, 2716, 2711, 1, 0, 0, 0, 2716, 2714, 1, 0, 0, 0, 2717, 123, 1, 0, 0, 0, 2718, 2719, 7, 23, 0, 0, 2719, 125, 1, 0, 0, 0, 2720, 2721, 5, 43, 0, 0, 2721, 2722, 3, 556, 278, 0, 2722, 127, 1, 0, 0, 0, 2723, 2724, 5, 100, 0, 0, 2724, 2725, 3, 1210, 605, 0, 2725, 129, 1, 0, 0, 0, 2726, 2733, 5, 270, 0, 0, 2727, 2733, 5, 113, 0, 0, 2728, 2733, 5, 53, 0, 0, 2729, 2730, 5, 100, 0, 0, 2730, 2731, 5, 226, 0, 0, 2731, 2733, 3, 1434, 717, 0, 2732, 2726, 1, 0, 0, 0, 2732, 2727, 1, 0, 0, 0, 2732, 2728, 1, 0, 0, 0, 2732, 2729, 1, 0, 0, 0, 2733, 131, 1, 0, 0, 0, 2734, 2735, 5, 2, 0, 0, 2735, 2736, 3, 136, 68, 0, 2736, 2737, 5, 3, 0, 0, 2737, 133, 1, 0, 0, 0, 2738, 2739, 5, 105, 0, 0, 2739, 2740, 3, 132, 66, 0, 2740, 135, 1, 0, 0, 0, 2741, 2746, 3, 138, 69, 0, 2742, 2743, 5, 6, 0, 0, 2743, 2745, 3, 138, 69, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2748, 1, 0, 0, 0, 2746, 2744, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 137, 1, 0, 0, 0, 2748, 2746, 1, 0, 0, 0, 2749, 2758, 3, 1488, 744, 0, 2750, 2751, 5, 10, 0, 0, 2751, 2759, 3, 500, 250, 0, 2752, 2753, 5, 11, 0, 0, 2753, 2756, 3, 1488, 744, 0, 2754, 2755, 5, 10, 0, 0, 2755, 2757, 3, 500, 250, 0, 2756, 2754, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 1, 0, 0, 0, 2758, 2750, 1, 0, 0, 0, 2758, 2752, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 139, 1, 0, 0, 0, 2760, 2762, 3, 142, 71, 0, 2761, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 141, 1, 0, 0, 0, 2765, 2770, 5, 314, 0, 0, 2766, 2768, 3, 14, 7, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2771, 3, 320, 160, 0, 2770, 2767, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2779, 1, 0, 0, 0, 2772, 2776, 5, 333, 0, 0, 2773, 2777, 3, 316, 158, 0, 2774, 2775, 5, 438, 0, 0, 2775, 2777, 3, 224, 112, 0, 2776, 2773, 1, 0, 0, 0, 2776, 2774, 1, 0, 0, 0, 2777, 2779, 1, 0, 0, 0, 2778, 2765, 1, 0, 0, 0, 2778, 2772, 1, 0, 0, 0, 2779, 143, 1, 0, 0, 0, 2780, 2781, 5, 62, 0, 0, 2781, 2782, 5, 422, 0, 0, 2782, 2783, 5, 105, 0, 0, 2783, 2784, 5, 2, 0, 0, 2784, 2785, 3, 148, 74, 0, 2785, 2786, 5, 3, 0, 0, 2786, 2807, 1, 0, 0, 0, 2787, 2788, 5, 62, 0, 0, 2788, 2789, 5, 422, 0, 0, 2789, 2790, 5, 68, 0, 0, 2790, 2791, 5, 2, 0, 0, 2791, 2792, 3, 1326, 663, 0, 2792, 2793, 5, 3, 0, 0, 2793, 2807, 1, 0, 0, 0, 2794, 2795, 5, 62, 0, 0, 2795, 2796, 5, 422, 0, 0, 2796, 2797, 5, 64, 0, 0, 2797, 2798, 5, 2, 0, 0, 2798, 2799, 3, 1326, 663, 0, 2799, 2800, 5, 3, 0, 0, 2800, 2801, 5, 94, 0, 0, 2801, 2802, 5, 2, 0, 0, 2802, 2803, 3, 1326, 663, 0, 2803, 2804, 5, 3, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2807, 5, 53, 0, 0, 2806, 2780, 1, 0, 0, 0, 2806, 2787, 1, 0, 0, 0, 2806, 2794, 1, 0, 0, 0, 2806, 2805, 1, 0, 0, 0, 2807, 145, 1, 0, 0, 0, 2808, 2809, 3, 1486, 743, 0, 2809, 2810, 3, 1454, 727, 0, 2810, 147, 1, 0, 0, 0, 2811, 2816, 3, 146, 73, 0, 2812, 2813, 5, 6, 0, 0, 2813, 2815, 3, 146, 73, 0, 2814, 2812, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 149, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2819, 2820, 5, 138, 0, 0, 2820, 2821, 5, 360, 0, 0, 2821, 2822, 3, 556, 278, 0, 2822, 2823, 3, 152, 76, 0, 2823, 151, 1, 0, 0, 0, 2824, 2829, 3, 154, 77, 0, 2825, 2826, 5, 6, 0, 0, 2826, 2828, 3, 154, 77, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2831, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 153, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2832, 2833, 5, 133, 0, 0, 2833, 2834, 5, 143, 0, 0, 2834, 2836, 3, 1150, 575, 0, 2835, 2837, 3, 124, 62, 0, 2836, 2835, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 2862, 1, 0, 0, 0, 2838, 2839, 5, 191, 0, 0, 2839, 2841, 5, 143, 0, 0, 2840, 2842, 3, 746, 373, 0, 2841, 2840, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2845, 3, 1472, 736, 0, 2844, 2846, 3, 124, 62, 0, 2845, 2844, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2862, 1, 0, 0, 0, 2847, 2848, 5, 138, 0, 0, 2848, 2849, 5, 143, 0, 0, 2849, 2851, 3, 1472, 736, 0, 2850, 2852, 3, 766, 383, 0, 2851, 2850, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2854, 5, 360, 0, 0, 2854, 2856, 3, 1166, 583, 0, 2855, 2857, 3, 126, 63, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2860, 3, 124, 62, 0, 2859, 2858, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2832, 1, 0, 0, 0, 2861, 2838, 1, 0, 0, 0, 2861, 2847, 1, 0, 0, 0, 2862, 155, 1, 0, 0, 0, 2863, 2866, 5, 157, 0, 0, 2864, 2867, 3, 992, 496, 0, 2865, 2867, 5, 30, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 157, 1, 0, 0, 0, 2868, 2870, 5, 169, 0, 0, 2869, 2871, 3, 172, 86, 0, 2870, 2869, 1, 0, 0, 0, 2870, 2871, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2874, 3, 1404, 702, 0, 2873, 2875, 3, 242, 121, 0, 2874, 2873, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2878, 3, 160, 80, 0, 2877, 2879, 3, 162, 81, 0, 2878, 2877, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 2882, 3, 164, 82, 0, 2881, 2883, 3, 174, 87, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2885, 1, 0, 0, 0, 2884, 2886, 3, 14, 7, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2889, 3, 166, 83, 0, 2888, 2890, 3, 1142, 571, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2906, 1, 0, 0, 0, 2891, 2892, 5, 169, 0, 0, 2892, 2893, 5, 2, 0, 0, 2893, 2894, 3, 940, 470, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2897, 5, 94, 0, 0, 2896, 2898, 3, 162, 81, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2901, 3, 164, 82, 0, 2900, 2902, 3, 14, 7, 0, 2901, 2900, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2904, 3, 166, 83, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2868, 1, 0, 0, 0, 2905, 2891, 1, 0, 0, 0, 2906, 159, 1, 0, 0, 0, 2907, 2908, 7, 24, 0, 0, 2908, 161, 1, 0, 0, 0, 2909, 2910, 5, 297, 0, 0, 2910, 163, 1, 0, 0, 0, 2911, 2915, 3, 1456, 728, 0, 2912, 2915, 5, 343, 0, 0, 2913, 2915, 5, 344, 0, 0, 2914, 2911, 1, 0, 0, 0, 2914, 2912, 1, 0, 0, 0, 2914, 2913, 1, 0, 0, 0, 2915, 165, 1, 0, 0, 0, 2916, 2922, 3, 168, 84, 0, 2917, 2918, 5, 2, 0, 0, 2918, 2919, 3, 178, 89, 0, 2919, 2920, 5, 3, 0, 0, 2920, 2922, 1, 0, 0, 0, 2921, 2916, 1, 0, 0, 0, 2921, 2917, 1, 0, 0, 0, 2922, 167, 1, 0, 0, 0, 2923, 2925, 3, 170, 85, 0, 2924, 2923, 1, 0, 0, 0, 2925, 2928, 1, 0, 0, 0, 2926, 2924, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 169, 1, 0, 0, 0, 2928, 2926, 1, 0, 0, 0, 2929, 2969, 5, 107, 0, 0, 2930, 2969, 5, 112, 0, 0, 2931, 2933, 5, 183, 0, 0, 2932, 2934, 3, 870, 435, 0, 2933, 2932, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2969, 3, 1456, 728, 0, 2936, 2938, 5, 78, 0, 0, 2937, 2939, 3, 870, 435, 0, 2938, 2937, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2969, 3, 1456, 728, 0, 2941, 2969, 5, 171, 0, 0, 2942, 2969, 5, 216, 0, 0, 2943, 2945, 5, 298, 0, 0, 2944, 2946, 3, 870, 435, 0, 2945, 2944, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2969, 3, 1456, 728, 0, 2948, 2950, 5, 197, 0, 0, 2949, 2951, 3, 870, 435, 0, 2950, 2949, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2969, 3, 1456, 728, 0, 2953, 2954, 5, 209, 0, 0, 2954, 2955, 5, 298, 0, 0, 2955, 2969, 3, 244, 122, 0, 2956, 2957, 5, 209, 0, 0, 2957, 2958, 5, 298, 0, 0, 2958, 2969, 5, 9, 0, 0, 2959, 2960, 5, 209, 0, 0, 2960, 2961, 5, 77, 0, 0, 2961, 2962, 5, 78, 0, 0, 2962, 2969, 3, 244, 122, 0, 2963, 2964, 5, 209, 0, 0, 2964, 2965, 5, 78, 0, 0, 2965, 2969, 3, 244, 122, 0, 2966, 2967, 5, 194, 0, 0, 2967, 2969, 3, 1456, 728, 0, 2968, 2929, 1, 0, 0, 0, 2968, 2930, 1, 0, 0, 0, 2968, 2931, 1, 0, 0, 0, 2968, 2936, 1, 0, 0, 0, 2968, 2941, 1, 0, 0, 0, 2968, 2942, 1, 0, 0, 0, 2968, 2943, 1, 0, 0, 0, 2968, 2948, 1, 0, 0, 0, 2968, 2953, 1, 0, 0, 0, 2968, 2956, 1, 0, 0, 0, 2968, 2959, 1, 0, 0, 0, 2968, 2963, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2969, 171, 1, 0, 0, 0, 2970, 2971, 5, 107, 0, 0, 2971, 173, 1, 0, 0, 0, 2972, 2974, 3, 176, 88, 0, 2973, 2972, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 2976, 5, 184, 0, 0, 2976, 2977, 3, 1456, 728, 0, 2977, 175, 1, 0, 0, 0, 2978, 2979, 5, 100, 0, 0, 2979, 177, 1, 0, 0, 0, 2980, 2985, 3, 180, 90, 0, 2981, 2982, 5, 6, 0, 0, 2982, 2984, 3, 180, 90, 0, 2983, 2981, 1, 0, 0, 0, 2984, 2987, 1, 0, 0, 0, 2985, 2983, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 179, 1, 0, 0, 0, 2987, 2985, 1, 0, 0, 0, 2988, 2990, 3, 1488, 744, 0, 2989, 2991, 3, 182, 91, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 181, 1, 0, 0, 0, 2992, 3000, 3, 72, 36, 0, 2993, 3000, 3, 320, 160, 0, 2994, 3000, 5, 9, 0, 0, 2995, 2996, 5, 2, 0, 0, 2996, 2997, 3, 184, 92, 0, 2997, 2998, 5, 3, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2992, 1, 0, 0, 0, 2999, 2993, 1, 0, 0, 0, 2999, 2994, 1, 0, 0, 0, 2999, 2995, 1, 0, 0, 0, 3000, 183, 1, 0, 0, 0, 3001, 3006, 3, 186, 93, 0, 3002, 3003, 5, 6, 0, 0, 3003, 3005, 3, 186, 93, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3008, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 185, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3010, 3, 70, 35, 0, 3010, 187, 1, 0, 0, 0, 3011, 3013, 5, 46, 0, 0, 3012, 3014, 3, 190, 95, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3017, 5, 92, 0, 0, 3016, 3018, 3, 514, 257, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3085, 3, 1402, 701, 0, 3020, 3022, 5, 2, 0, 0, 3021, 3023, 3, 192, 96, 0, 3022, 3021, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3026, 5, 3, 0, 0, 3025, 3027, 3, 264, 132, 0, 3026, 3025, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3030, 3, 266, 133, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3032, 1, 0, 0, 0, 3031, 3033, 3, 274, 137, 0, 3032, 3031, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3035, 1, 0, 0, 0, 3034, 3036, 3, 276, 138, 0, 3035, 3034, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3039, 3, 278, 139, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 280, 140, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3086, 1, 0, 0, 0, 3043, 3044, 5, 275, 0, 0, 3044, 3046, 3, 556, 278, 0, 3045, 3047, 3, 196, 98, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3049, 1, 0, 0, 0, 3048, 3050, 3, 266, 133, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3052, 1, 0, 0, 0, 3051, 3053, 3, 274, 137, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3055, 1, 0, 0, 0, 3054, 3056, 3, 276, 138, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3058, 1, 0, 0, 0, 3057, 3059, 3, 278, 139, 0, 3058, 3057, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 3061, 1, 0, 0, 0, 3060, 3062, 3, 280, 140, 0, 3061, 3060, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3086, 1, 0, 0, 0, 3063, 3064, 5, 285, 0, 0, 3064, 3065, 5, 275, 0, 0, 3065, 3067, 3, 1410, 705, 0, 3066, 3068, 3, 196, 98, 0, 3067, 3066, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3071, 3, 144, 72, 0, 3070, 3072, 3, 266, 133, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3074, 1, 0, 0, 0, 3073, 3075, 3, 274, 137, 0, 3074, 3073, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3077, 1, 0, 0, 0, 3076, 3078, 3, 276, 138, 0, 3077, 3076, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3081, 3, 278, 139, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 280, 140, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3020, 1, 0, 0, 0, 3085, 3043, 1, 0, 0, 0, 3085, 3063, 1, 0, 0, 0, 3086, 189, 1, 0, 0, 0, 3087, 3095, 5, 354, 0, 0, 3088, 3095, 5, 352, 0, 0, 3089, 3090, 5, 254, 0, 0, 3090, 3095, 7, 25, 0, 0, 3091, 3092, 5, 213, 0, 0, 3092, 3095, 7, 25, 0, 0, 3093, 3095, 5, 367, 0, 0, 3094, 3087, 1, 0, 0, 0, 3094, 3088, 1, 0, 0, 0, 3094, 3089, 1, 0, 0, 0, 3094, 3091, 1, 0, 0, 0, 3094, 3093, 1, 0, 0, 0, 3095, 191, 1, 0, 0, 0, 3096, 3097, 3, 198, 99, 0, 3097, 193, 1, 0, 0, 0, 3098, 3099, 3, 198, 99, 0, 3099, 195, 1, 0, 0, 0, 3100, 3101, 5, 2, 0, 0, 3101, 3102, 3, 200, 100, 0, 3102, 3103, 5, 3, 0, 0, 3103, 197, 1, 0, 0, 0, 3104, 3109, 3, 202, 101, 0, 3105, 3106, 5, 6, 0, 0, 3106, 3108, 3, 202, 101, 0, 3107, 3105, 1, 0, 0, 0, 3108, 3111, 1, 0, 0, 0, 3109, 3107, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 199, 1, 0, 0, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3117, 3, 204, 102, 0, 3113, 3114, 5, 6, 0, 0, 3114, 3116, 3, 204, 102, 0, 3115, 3113, 1, 0, 0, 0, 3116, 3119, 1, 0, 0, 0, 3117, 3115, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 201, 1, 0, 0, 0, 3119, 3117, 1, 0, 0, 0, 3120, 3124, 3, 208, 104, 0, 3121, 3124, 3, 230, 115, 0, 3122, 3124, 3, 236, 118, 0, 3123, 3120, 1, 0, 0, 0, 3123, 3121, 1, 0, 0, 0, 3123, 3122, 1, 0, 0, 0, 3124, 203, 1, 0, 0, 0, 3125, 3128, 3, 214, 107, 0, 3126, 3128, 3, 236, 118, 0, 3127, 3125, 1, 0, 0, 0, 3127, 3126, 1, 0, 0, 0, 3128, 205, 1, 0, 0, 0, 3129, 3130, 3, 1430, 715, 0, 3130, 3132, 3, 1166, 583, 0, 3131, 3133, 3, 366, 183, 0, 3132, 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3135, 1, 0, 0, 0, 3134, 3136, 3, 212, 106, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3139, 3, 210, 105, 0, 3138, 3137, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3142, 1, 0, 0, 0, 3140, 3141, 5, 43, 0, 0, 3141, 3143, 3, 556, 278, 0, 3142, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3146, 1, 0, 0, 0, 3144, 3145, 5, 105, 0, 0, 3145, 3147, 5, 280, 0, 0, 3146, 3144, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 3, 216, 108, 0, 3149, 207, 1, 0, 0, 0, 3150, 3151, 3, 1430, 715, 0, 3151, 3153, 3, 1166, 583, 0, 3152, 3154, 3, 366, 183, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 212, 106, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3159, 1, 0, 0, 0, 3158, 3160, 3, 210, 105, 0, 3159, 3158, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3163, 1, 0, 0, 0, 3161, 3162, 5, 43, 0, 0, 3162, 3164, 3, 556, 278, 0, 3163, 3161, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3167, 1, 0, 0, 0, 3165, 3166, 5, 105, 0, 0, 3166, 3168, 5, 280, 0, 0, 3167, 3165, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 3, 216, 108, 0, 3170, 209, 1, 0, 0, 0, 3171, 3172, 5, 543, 0, 0, 3172, 3173, 3, 1472, 736, 0, 3173, 211, 1, 0, 0, 0, 3174, 3181, 5, 345, 0, 0, 3175, 3182, 5, 544, 0, 0, 3176, 3182, 5, 205, 0, 0, 3177, 3182, 5, 545, 0, 0, 3178, 3182, 5, 546, 0, 0, 3179, 3182, 5, 53, 0, 0, 3180, 3182, 3, 1472, 736, 0, 3181, 3175, 1, 0, 0, 0, 3181, 3176, 1, 0, 0, 0, 3181, 3177, 1, 0, 0, 0, 3181, 3178, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3181, 3180, 1, 0, 0, 0, 3182, 213, 1, 0, 0, 0, 3183, 3186, 3, 1430, 715, 0, 3184, 3185, 5, 105, 0, 0, 3185, 3187, 5, 280, 0, 0, 3186, 3184, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3189, 3, 216, 108, 0, 3189, 215, 1, 0, 0, 0, 3190, 3192, 3, 218, 109, 0, 3191, 3190, 1, 0, 0, 0, 3192, 3195, 1, 0, 0, 0, 3193, 3191, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 217, 1, 0, 0, 0, 3195, 3193, 1, 0, 0, 0, 3196, 3197, 5, 45, 0, 0, 3197, 3199, 3, 1434, 717, 0, 3198, 3196, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3202, 3, 220, 110, 0, 3201, 3203, 3, 226, 113, 0, 3202, 3201, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3205, 1, 0, 0, 0, 3204, 3206, 3, 228, 114, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3215, 1, 0, 0, 0, 3207, 3209, 3, 220, 110, 0, 3208, 3210, 3, 226, 113, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3213, 3, 228, 114, 0, 3212, 3211, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3215, 1, 0, 0, 0, 3214, 3198, 1, 0, 0, 0, 3214, 3207, 1, 0, 0, 0, 3215, 219, 1, 0, 0, 0, 3216, 3217, 5, 77, 0, 0, 3217, 3275, 5, 78, 0, 0, 3218, 3275, 5, 78, 0, 0, 3219, 3221, 5, 98, 0, 0, 3220, 3222, 3, 708, 354, 0, 3221, 3220, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 284, 142, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3275, 1, 0, 0, 0, 3226, 3228, 5, 98, 0, 0, 3227, 3229, 3, 222, 111, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3275, 3, 282, 141, 0, 3231, 3232, 5, 85, 0, 0, 3232, 3234, 5, 245, 0, 0, 3233, 3235, 3, 708, 354, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 284, 142, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3275, 1, 0, 0, 0, 3239, 3240, 5, 42, 0, 0, 3240, 3241, 5, 2, 0, 0, 3241, 3242, 3, 1210, 605, 0, 3242, 3244, 5, 3, 0, 0, 3243, 3245, 3, 240, 120, 0, 3244, 3243, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3275, 1, 0, 0, 0, 3246, 3247, 5, 53, 0, 0, 3247, 3275, 3, 1250, 625, 0, 3248, 3249, 5, 438, 0, 0, 3249, 3250, 3, 224, 112, 0, 3250, 3260, 5, 36, 0, 0, 3251, 3253, 5, 219, 0, 0, 3252, 3254, 3, 312, 156, 0, 3253, 3252, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3261, 1, 0, 0, 0, 3255, 3256, 5, 2, 0, 0, 3256, 3257, 3, 1210, 605, 0, 3257, 3258, 5, 3, 0, 0, 3258, 3259, 5, 440, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3251, 1, 0, 0, 0, 3260, 3255, 1, 0, 0, 0, 3261, 3275, 1, 0, 0, 0, 3262, 3263, 5, 86, 0, 0, 3263, 3265, 3, 1410, 705, 0, 3264, 3266, 3, 242, 121, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 248, 124, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3272, 3, 256, 128, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3275, 1, 0, 0, 0, 3273, 3275, 3, 644, 322, 0, 3274, 3216, 1, 0, 0, 0, 3274, 3218, 1, 0, 0, 0, 3274, 3219, 1, 0, 0, 0, 3274, 3226, 1, 0, 0, 0, 3274, 3231, 1, 0, 0, 0, 3274, 3239, 1, 0, 0, 0, 3274, 3246, 1, 0, 0, 0, 3274, 3248, 1, 0, 0, 0, 3274, 3262, 1, 0, 0, 0, 3274, 3273, 1, 0, 0, 0, 3275, 221, 1, 0, 0, 0, 3276, 3278, 5, 273, 0, 0, 3277, 3279, 5, 77, 0, 0, 3278, 3277, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 5, 56, 0, 0, 3281, 223, 1, 0, 0, 0, 3282, 3286, 5, 139, 0, 0, 3283, 3284, 5, 147, 0, 0, 3284, 3286, 5, 53, 0, 0, 3285, 3282, 1, 0, 0, 0, 3285, 3283, 1, 0, 0, 0, 3286, 225, 1, 0, 0, 0, 3287, 3291, 5, 54, 0, 0, 3288, 3289, 5, 77, 0, 0, 3289, 3291, 5, 54, 0, 0, 3290, 3287, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3291, 227, 1, 0, 0, 0, 3292, 3293, 5, 69, 0, 0, 3293, 3294, 7, 16, 0, 0, 3294, 229, 1, 0, 0, 0, 3295, 3296, 5, 120, 0, 0, 3296, 3297, 3, 1410, 705, 0, 3297, 3298, 3, 232, 116, 0, 3298, 231, 1, 0, 0, 0, 3299, 3300, 7, 26, 0, 0, 3300, 3302, 3, 234, 117, 0, 3301, 3299, 1, 0, 0, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3301, 1, 0, 0, 0, 3303, 3304, 1, 0, 0, 0, 3304, 233, 1, 0, 0, 0, 3305, 3303, 1, 0, 0, 0, 3306, 3307, 7, 27, 0, 0, 3307, 235, 1, 0, 0, 0, 3308, 3309, 5, 45, 0, 0, 3309, 3310, 3, 1434, 717, 0, 3310, 3311, 3, 238, 119, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3314, 3, 238, 119, 0, 3313, 3308, 1, 0, 0, 0, 3313, 3312, 1, 0, 0, 0, 3314, 237, 1, 0, 0, 0, 3315, 3316, 5, 42, 0, 0, 3316, 3317, 5, 2, 0, 0, 3317, 3318, 3, 1210, 605, 0, 3318, 3319, 5, 3, 0, 0, 3319, 3320, 3, 474, 237, 0, 3320, 3402, 1, 0, 0, 0, 3321, 3339, 5, 98, 0, 0, 3322, 3323, 5, 2, 0, 0, 3323, 3324, 3, 244, 122, 0, 3324, 3326, 5, 3, 0, 0, 3325, 3327, 3, 246, 123, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 708, 354, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3333, 3, 284, 142, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 3, 474, 237, 0, 3335, 3340, 1, 0, 0, 0, 3336, 3337, 3, 286, 143, 0, 3337, 3338, 3, 474, 237, 0, 3338, 3340, 1, 0, 0, 0, 3339, 3322, 1, 0, 0, 0, 3339, 3336, 1, 0, 0, 0, 3340, 3402, 1, 0, 0, 0, 3341, 3342, 5, 85, 0, 0, 3342, 3360, 5, 245, 0, 0, 3343, 3344, 5, 2, 0, 0, 3344, 3345, 3, 244, 122, 0, 3345, 3347, 5, 3, 0, 0, 3346, 3348, 3, 246, 123, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3350, 1, 0, 0, 0, 3349, 3351, 3, 708, 354, 0, 3350, 3349, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3353, 1, 0, 0, 0, 3352, 3354, 3, 284, 142, 0, 3353, 3352, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 3, 474, 237, 0, 3356, 3361, 1, 0, 0, 0, 3357, 3358, 3, 286, 143, 0, 3358, 3359, 3, 474, 237, 0, 3359, 3361, 1, 0, 0, 0, 3360, 3343, 1, 0, 0, 0, 3360, 3357, 1, 0, 0, 0, 3361, 3402, 1, 0, 0, 0, 3362, 3364, 5, 199, 0, 0, 3363, 3365, 3, 632, 316, 0, 3364, 3363, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3367, 5, 2, 0, 0, 3367, 3368, 3, 250, 125, 0, 3368, 3370, 5, 3, 0, 0, 3369, 3371, 3, 246, 123, 0, 3370, 3369, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3374, 3, 708, 354, 0, 3373, 3372, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3376, 1, 0, 0, 0, 3375, 3377, 3, 284, 142, 0, 3376, 3375, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3379, 1, 0, 0, 0, 3378, 3380, 3, 254, 127, 0, 3379, 3378, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3382, 3, 474, 237, 0, 3382, 3402, 1, 0, 0, 0, 3383, 3384, 5, 63, 0, 0, 3384, 3385, 5, 245, 0, 0, 3385, 3386, 5, 2, 0, 0, 3386, 3387, 3, 244, 122, 0, 3387, 3388, 5, 3, 0, 0, 3388, 3389, 5, 86, 0, 0, 3389, 3391, 3, 1410, 705, 0, 3390, 3392, 3, 242, 121, 0, 3391, 3390, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3394, 1, 0, 0, 0, 3393, 3395, 3, 248, 124, 0, 3394, 3393, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 3397, 1, 0, 0, 0, 3396, 3398, 3, 256, 128, 0, 3397, 3396, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 3, 474, 237, 0, 3400, 3402, 1, 0, 0, 0, 3401, 3315, 1, 0, 0, 0, 3401, 3321, 1, 0, 0, 0, 3401, 3341, 1, 0, 0, 0, 3401, 3362, 1, 0, 0, 0, 3401, 3383, 1, 0, 0, 0, 3402, 239, 1, 0, 0, 0, 3403, 3404, 5, 269, 0, 0, 3404, 3405, 5, 228, 0, 0, 3405, 241, 1, 0, 0, 0, 3406, 3407, 5, 2, 0, 0, 3407, 3408, 3, 244, 122, 0, 3408, 3409, 5, 3, 0, 0, 3409, 243, 1, 0, 0, 0, 3410, 3415, 3, 1430, 715, 0, 3411, 3412, 5, 6, 0, 0, 3412, 3414, 3, 1430, 715, 0, 3413, 3411, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 245, 1, 0, 0, 0, 3417, 3415, 1, 0, 0, 0, 3418, 3419, 5, 441, 0, 0, 3419, 3420, 5, 2, 0, 0, 3420, 3421, 3, 244, 122, 0, 3421, 3422, 5, 3, 0, 0, 3422, 247, 1, 0, 0, 0, 3423, 3424, 5, 258, 0, 0, 3424, 3425, 7, 28, 0, 0, 3425, 249, 1, 0, 0, 0, 3426, 3431, 3, 252, 126, 0, 3427, 3428, 5, 6, 0, 0, 3428, 3430, 3, 252, 126, 0, 3429, 3427, 1, 0, 0, 0, 3430, 3433, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 251, 1, 0, 0, 0, 3433, 3431, 1, 0, 0, 0, 3434, 3435, 3, 638, 319, 0, 3435, 3442, 5, 105, 0, 0, 3436, 3443, 3, 730, 365, 0, 3437, 3438, 5, 278, 0, 0, 3438, 3439, 5, 2, 0, 0, 3439, 3440, 3, 730, 365, 0, 3440, 3441, 5, 3, 0, 0, 3441, 3443, 1, 0, 0, 0, 3442, 3436, 1, 0, 0, 0, 3442, 3437, 1, 0, 0, 0, 3443, 253, 1, 0, 0, 0, 3444, 3445, 5, 103, 0, 0, 3445, 3446, 5, 2, 0, 0, 3446, 3447, 3, 1210, 605, 0, 3447, 3448, 5, 3, 0, 0, 3448, 255, 1, 0, 0, 0, 3449, 3458, 3, 258, 129, 0, 3450, 3458, 3, 260, 130, 0, 3451, 3452, 3, 258, 129, 0, 3452, 3453, 3, 260, 130, 0, 3453, 3458, 1, 0, 0, 0, 3454, 3455, 3, 260, 130, 0, 3455, 3456, 3, 258, 129, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3449, 1, 0, 0, 0, 3457, 3450, 1, 0, 0, 0, 3457, 3451, 1, 0, 0, 0, 3457, 3454, 1, 0, 0, 0, 3458, 257, 1, 0, 0, 0, 3459, 3460, 5, 80, 0, 0, 3460, 3461, 5, 369, 0, 0, 3461, 3462, 3, 262, 131, 0, 3462, 259, 1, 0, 0, 0, 3463, 3464, 5, 80, 0, 0, 3464, 3465, 5, 182, 0, 0, 3465, 3466, 3, 262, 131, 0, 3466, 261, 1, 0, 0, 0, 3467, 3468, 5, 269, 0, 0, 3468, 3477, 5, 132, 0, 0, 3469, 3477, 5, 315, 0, 0, 3470, 3477, 5, 150, 0, 0, 3471, 3472, 5, 333, 0, 0, 3472, 3474, 7, 29, 0, 0, 3473, 3475, 3, 244, 122, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3467, 1, 0, 0, 0, 3476, 3469, 1, 0, 0, 0, 3476, 3470, 1, 0, 0, 0, 3476, 3471, 1, 0, 0, 0, 3477, 263, 1, 0, 0, 0, 3478, 3479, 5, 238, 0, 0, 3479, 3480, 5, 2, 0, 0, 3480, 3481, 3, 1388, 694, 0, 3481, 3482, 5, 3, 0, 0, 3482, 265, 1, 0, 0, 0, 3483, 3484, 3, 268, 134, 0, 3484, 267, 1, 0, 0, 0, 3485, 3486, 5, 285, 0, 0, 3486, 3487, 5, 147, 0, 0, 3487, 3488, 3, 1472, 736, 0, 3488, 3489, 5, 2, 0, 0, 3489, 3490, 3, 270, 135, 0, 3490, 3491, 5, 3, 0, 0, 3491, 269, 1, 0, 0, 0, 3492, 3497, 3, 272, 136, 0, 3493, 3494, 5, 6, 0, 0, 3494, 3496, 3, 272, 136, 0, 3495, 3493, 1, 0, 0, 0, 3496, 3499, 1, 0, 0, 0, 3497, 3495, 1, 0, 0, 0, 3497, 3498, 1, 0, 0, 0, 3498, 271, 1, 0, 0, 0, 3499, 3497, 1, 0, 0, 0, 3500, 3502, 3, 1430, 715, 0, 3501, 3503, 3, 644, 322, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3506, 3, 646, 323, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3524, 1, 0, 0, 0, 3507, 3509, 3, 1260, 630, 0, 3508, 3510, 3, 644, 322, 0, 3509, 3508, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3512, 1, 0, 0, 0, 3511, 3513, 3, 646, 323, 0, 3512, 3511, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3524, 1, 0, 0, 0, 3514, 3515, 5, 2, 0, 0, 3515, 3516, 3, 1210, 605, 0, 3516, 3518, 5, 3, 0, 0, 3517, 3519, 3, 644, 322, 0, 3518, 3517, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3521, 1, 0, 0, 0, 3520, 3522, 3, 646, 323, 0, 3521, 3520, 1, 0, 0, 0, 3521, 3522, 1, 0, 0, 0, 3522, 3524, 1, 0, 0, 0, 3523, 3500, 1, 0, 0, 0, 3523, 3507, 1, 0, 0, 0, 3523, 3514, 1, 0, 0, 0, 3524, 273, 1, 0, 0, 0, 3525, 3526, 5, 100, 0, 0, 3526, 3527, 3, 1434, 717, 0, 3527, 275, 1, 0, 0, 0, 3528, 3529, 5, 105, 0, 0, 3529, 3535, 3, 132, 66, 0, 3530, 3531, 5, 379, 0, 0, 3531, 3535, 5, 277, 0, 0, 3532, 3533, 5, 105, 0, 0, 3533, 3535, 5, 277, 0, 0, 3534, 3528, 1, 0, 0, 0, 3534, 3530, 1, 0, 0, 0, 3534, 3532, 1, 0, 0, 0, 3535, 277, 1, 0, 0, 0, 3536, 3537, 5, 80, 0, 0, 3537, 3543, 5, 161, 0, 0, 3538, 3544, 5, 191, 0, 0, 3539, 3540, 5, 182, 0, 0, 3540, 3544, 5, 320, 0, 0, 3541, 3542, 5, 292, 0, 0, 3542, 3544, 5, 320, 0, 0, 3543, 3538, 1, 0, 0, 0, 3543, 3539, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 279, 1, 0, 0, 0, 3545, 3546, 5, 351, 0, 0, 3546, 3547, 3, 1400, 700, 0, 3547, 281, 1, 0, 0, 0, 3548, 3550, 3, 640, 320, 0, 3549, 3548, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3552, 1, 0, 0, 0, 3551, 3553, 3, 1012, 506, 0, 3552, 3551, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3555, 1, 0, 0, 0, 3554, 3556, 3, 284, 142, 0, 3555, 3554, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 283, 1, 0, 0, 0, 3557, 3558, 5, 100, 0, 0, 3558, 3559, 5, 226, 0, 0, 3559, 3560, 5, 351, 0, 0, 3560, 3561, 3, 1400, 700, 0, 3561, 285, 1, 0, 0, 0, 3562, 3563, 5, 100, 0, 0, 3563, 3564, 5, 226, 0, 0, 3564, 3565, 3, 1434, 717, 0, 3565, 287, 1, 0, 0, 0, 3566, 3567, 5, 46, 0, 0, 3567, 3572, 5, 342, 0, 0, 3568, 3570, 3, 514, 257, 0, 3569, 3568, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 3, 556, 278, 0, 3572, 3569, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3576, 3, 916, 458, 0, 3575, 3574, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3580, 5, 80, 0, 0, 3578, 3581, 3, 1330, 665, 0, 3579, 3581, 3, 1326, 663, 0, 3580, 3578, 1, 0, 0, 0, 3580, 3579, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3583, 5, 64, 0, 0, 3583, 3584, 3, 1102, 551, 0, 3584, 289, 1, 0, 0, 0, 3585, 3586, 5, 138, 0, 0, 3586, 3588, 5, 342, 0, 0, 3587, 3589, 3, 746, 373, 0, 3588, 3587, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 3, 556, 278, 0, 3591, 3592, 5, 333, 0, 0, 3592, 3593, 5, 342, 0, 0, 3593, 3594, 3, 1462, 731, 0, 3594, 291, 1, 0, 0, 0, 3595, 3597, 5, 46, 0, 0, 3596, 3598, 3, 190, 95, 0, 3597, 3596, 1, 0, 0, 0, 3597, 3598, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 5, 92, 0, 0, 3600, 3602, 3, 514, 257, 0, 3601, 3600, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 3, 294, 147, 0, 3604, 3605, 5, 36, 0, 0, 3605, 3607, 3, 998, 499, 0, 3606, 3608, 3, 296, 148, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 293, 1, 0, 0, 0, 3609, 3611, 3, 1402, 701, 0, 3610, 3612, 3, 242, 121, 0, 3611, 3610, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3614, 1, 0, 0, 0, 3613, 3615, 3, 274, 137, 0, 3614, 3613, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 1, 0, 0, 0, 3616, 3618, 3, 276, 138, 0, 3617, 3616, 1, 0, 0, 0, 3617, 3618, 1, 0, 0, 0, 3618, 3620, 1, 0, 0, 0, 3619, 3621, 3, 278, 139, 0, 3620, 3619, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 3623, 1, 0, 0, 0, 3622, 3624, 3, 280, 140, 0, 3623, 3622, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 295, 1, 0, 0, 0, 3625, 3629, 5, 105, 0, 0, 3626, 3630, 5, 174, 0, 0, 3627, 3628, 5, 269, 0, 0, 3628, 3630, 5, 174, 0, 0, 3629, 3626, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 297, 1, 0, 0, 0, 3631, 3633, 5, 46, 0, 0, 3632, 3634, 3, 302, 151, 0, 3633, 3632, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3636, 5, 259, 0, 0, 3636, 3638, 5, 376, 0, 0, 3637, 3639, 3, 514, 257, 0, 3638, 3637, 1, 0, 0, 0, 3638, 3639, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 3, 300, 150, 0, 3641, 3642, 5, 36, 0, 0, 3642, 3644, 3, 998, 499, 0, 3643, 3645, 3, 296, 148, 0, 3644, 3643, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 299, 1, 0, 0, 0, 3646, 3648, 3, 1406, 703, 0, 3647, 3649, 3, 242, 121, 0, 3648, 3647, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3651, 1, 0, 0, 0, 3650, 3652, 3, 274, 137, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3654, 1, 0, 0, 0, 3653, 3655, 3, 134, 67, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3657, 1, 0, 0, 0, 3656, 3658, 3, 280, 140, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 301, 1, 0, 0, 0, 3659, 3660, 5, 367, 0, 0, 3660, 303, 1, 0, 0, 0, 3661, 3662, 5, 305, 0, 0, 3662, 3663, 5, 259, 0, 0, 3663, 3665, 5, 376, 0, 0, 3664, 3666, 3, 628, 314, 0, 3665, 3664, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3669, 3, 1408, 704, 0, 3668, 3670, 3, 296, 148, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 305, 1, 0, 0, 0, 3671, 3673, 5, 46, 0, 0, 3672, 3674, 3, 190, 95, 0, 3673, 3672, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3677, 5, 328, 0, 0, 3676, 3678, 3, 514, 257, 0, 3677, 3676, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3681, 3, 1410, 705, 0, 3680, 3682, 3, 310, 155, 0, 3681, 3680, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 307, 1, 0, 0, 0, 3683, 3684, 5, 138, 0, 0, 3684, 3686, 5, 328, 0, 0, 3685, 3687, 3, 746, 373, 0, 3686, 3685, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3689, 3, 1410, 705, 0, 3689, 3690, 3, 314, 157, 0, 3690, 309, 1, 0, 0, 0, 3691, 3692, 3, 314, 157, 0, 3692, 311, 1, 0, 0, 0, 3693, 3694, 5, 2, 0, 0, 3694, 3695, 3, 314, 157, 0, 3695, 3696, 5, 3, 0, 0, 3696, 313, 1, 0, 0, 0, 3697, 3699, 3, 316, 158, 0, 3698, 3697, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 315, 1, 0, 0, 0, 3702, 3703, 5, 36, 0, 0, 3703, 3737, 3, 1170, 585, 0, 3704, 3705, 5, 148, 0, 0, 3705, 3737, 3, 320, 160, 0, 3706, 3737, 5, 173, 0, 0, 3707, 3709, 5, 225, 0, 0, 3708, 3710, 3, 318, 159, 0, 3709, 3708, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3737, 3, 320, 160, 0, 3712, 3713, 5, 260, 0, 0, 3713, 3737, 3, 320, 160, 0, 3714, 3715, 5, 262, 0, 0, 3715, 3737, 3, 320, 160, 0, 3716, 3717, 5, 269, 0, 0, 3717, 3737, 7, 30, 0, 0, 3718, 3719, 5, 281, 0, 0, 3719, 3720, 5, 147, 0, 0, 3720, 3737, 3, 1430, 715, 0, 3721, 3722, 5, 328, 0, 0, 3722, 3723, 5, 266, 0, 0, 3723, 3737, 3, 556, 278, 0, 3724, 3726, 5, 340, 0, 0, 3725, 3727, 3, 14, 7, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3737, 3, 320, 160, 0, 3729, 3731, 5, 314, 0, 0, 3730, 3732, 3, 14, 7, 0, 3731, 3730, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3734, 1, 0, 0, 0, 3733, 3735, 3, 320, 160, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3737, 1, 0, 0, 0, 3736, 3702, 1, 0, 0, 0, 3736, 3704, 1, 0, 0, 0, 3736, 3706, 1, 0, 0, 0, 3736, 3707, 1, 0, 0, 0, 3736, 3712, 1, 0, 0, 0, 3736, 3714, 1, 0, 0, 0, 3736, 3716, 1, 0, 0, 0, 3736, 3718, 1, 0, 0, 0, 3736, 3721, 1, 0, 0, 0, 3736, 3724, 1, 0, 0, 0, 3736, 3729, 1, 0, 0, 0, 3737, 317, 1, 0, 0, 0, 3738, 3739, 5, 147, 0, 0, 3739, 319, 1, 0, 0, 0, 3740, 3747, 3, 1452, 726, 0, 3741, 3742, 5, 12, 0, 0, 3742, 3747, 3, 1452, 726, 0, 3743, 3744, 5, 13, 0, 0, 3744, 3747, 3, 1452, 726, 0, 3745, 3747, 3, 1462, 731, 0, 3746, 3740, 1, 0, 0, 0, 3746, 3741, 1, 0, 0, 0, 3746, 3743, 1, 0, 0, 0, 3746, 3745, 1, 0, 0, 0, 3747, 321, 1, 0, 0, 0, 3748, 3753, 3, 320, 160, 0, 3749, 3750, 5, 6, 0, 0, 3750, 3752, 3, 320, 160, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3755, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 323, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3756, 3758, 5, 46, 0, 0, 3757, 3759, 3, 656, 328, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3761, 1, 0, 0, 0, 3760, 3762, 3, 326, 163, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3765, 3, 336, 168, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3767, 5, 247, 0, 0, 3767, 3776, 3, 1434, 717, 0, 3768, 3769, 5, 215, 0, 0, 3769, 3771, 3, 328, 164, 0, 3770, 3772, 3, 330, 165, 0, 3771, 3770, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3774, 1, 0, 0, 0, 3773, 3775, 3, 334, 167, 0, 3774, 3773, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3777, 1, 0, 0, 0, 3776, 3768, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 325, 1, 0, 0, 0, 3778, 3779, 5, 359, 0, 0, 3779, 327, 1, 0, 0, 0, 3780, 3782, 3, 1434, 717, 0, 3781, 3783, 3, 558, 279, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 329, 1, 0, 0, 0, 3784, 3785, 5, 239, 0, 0, 3785, 3786, 3, 328, 164, 0, 3786, 331, 1, 0, 0, 0, 3787, 3788, 5, 373, 0, 0, 3788, 3792, 3, 328, 164, 0, 3789, 3790, 5, 269, 0, 0, 3790, 3792, 5, 373, 0, 0, 3791, 3787, 1, 0, 0, 0, 3791, 3789, 1, 0, 0, 0, 3792, 333, 1, 0, 0, 0, 3793, 3794, 3, 332, 166, 0, 3794, 335, 1, 0, 0, 0, 3795, 3796, 5, 295, 0, 0, 3796, 337, 1, 0, 0, 0, 3797, 3798, 5, 46, 0, 0, 3798, 3799, 5, 351, 0, 0, 3799, 3801, 3, 1400, 700, 0, 3800, 3802, 3, 340, 170, 0, 3801, 3800, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3804, 5, 255, 0, 0, 3804, 3806, 3, 1456, 728, 0, 3805, 3807, 3, 134, 67, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 339, 1, 0, 0, 0, 3808, 3809, 5, 282, 0, 0, 3809, 3810, 3, 1468, 734, 0, 3810, 341, 1, 0, 0, 0, 3811, 3812, 5, 46, 0, 0, 3812, 3814, 5, 204, 0, 0, 3813, 3815, 3, 514, 257, 0, 3814, 3813, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3818, 3, 1434, 717, 0, 3817, 3819, 3, 14, 7, 0, 3818, 3817, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3821, 3, 344, 172, 0, 3821, 343, 1, 0, 0, 0, 3822, 3824, 3, 346, 173, 0, 3823, 3822, 1, 0, 0, 0, 3824, 3827, 1, 0, 0, 0, 3825, 3823, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 345, 1, 0, 0, 0, 3827, 3825, 1, 0, 0, 0, 3828, 3829, 5, 323, 0, 0, 3829, 3836, 3, 1420, 710, 0, 3830, 3831, 5, 375, 0, 0, 3831, 3836, 3, 80, 40, 0, 3832, 3833, 5, 64, 0, 0, 3833, 3836, 3, 80, 40, 0, 3834, 3836, 5, 150, 0, 0, 3835, 3828, 1, 0, 0, 0, 3835, 3830, 1, 0, 0, 0, 3835, 3832, 1, 0, 0, 0, 3835, 3834, 1, 0, 0, 0, 3836, 347, 1, 0, 0, 0, 3837, 3838, 5, 138, 0, 0, 3838, 3839, 5, 204, 0, 0, 3839, 3840, 3, 1434, 717, 0, 3840, 3841, 5, 369, 0, 0, 3841, 3842, 3, 350, 175, 0, 3842, 349, 1, 0, 0, 0, 3843, 3845, 3, 352, 176, 0, 3844, 3843, 1, 0, 0, 0, 3845, 3848, 1, 0, 0, 0, 3846, 3844, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 351, 1, 0, 0, 0, 3848, 3846, 1, 0, 0, 0, 3849, 3850, 5, 94, 0, 0, 3850, 3851, 3, 80, 40, 0, 3851, 353, 1, 0, 0, 0, 3852, 3853, 5, 138, 0, 0, 3853, 3854, 5, 204, 0, 0, 3854, 3855, 3, 1434, 717, 0, 3855, 3856, 3, 44, 22, 0, 3856, 3857, 3, 546, 273, 0, 3857, 3955, 1, 0, 0, 0, 3858, 3859, 5, 138, 0, 0, 3859, 3860, 5, 204, 0, 0, 3860, 3861, 3, 1434, 717, 0, 3861, 3862, 3, 44, 22, 0, 3862, 3863, 3, 544, 272, 0, 3863, 3955, 1, 0, 0, 0, 3864, 3865, 5, 138, 0, 0, 3865, 3866, 5, 204, 0, 0, 3866, 3867, 3, 1434, 717, 0, 3867, 3868, 3, 44, 22, 0, 3868, 3869, 5, 136, 0, 0, 3869, 3870, 3, 696, 348, 0, 3870, 3955, 1, 0, 0, 0, 3871, 3872, 5, 138, 0, 0, 3872, 3873, 5, 204, 0, 0, 3873, 3874, 3, 1434, 717, 0, 3874, 3875, 3, 44, 22, 0, 3875, 3876, 5, 41, 0, 0, 3876, 3877, 5, 2, 0, 0, 3877, 3878, 3, 1166, 583, 0, 3878, 3879, 5, 36, 0, 0, 3879, 3880, 3, 1166, 583, 0, 3880, 3881, 5, 3, 0, 0, 3881, 3955, 1, 0, 0, 0, 3882, 3883, 5, 138, 0, 0, 3883, 3884, 5, 204, 0, 0, 3884, 3885, 3, 1434, 717, 0, 3885, 3886, 3, 44, 22, 0, 3886, 3887, 5, 189, 0, 0, 3887, 3888, 3, 1166, 583, 0, 3888, 3955, 1, 0, 0, 0, 3889, 3890, 5, 138, 0, 0, 3890, 3891, 5, 204, 0, 0, 3891, 3892, 3, 1434, 717, 0, 3892, 3893, 3, 44, 22, 0, 3893, 3894, 5, 211, 0, 0, 3894, 3895, 3, 672, 336, 0, 3895, 3955, 1, 0, 0, 0, 3896, 3897, 5, 138, 0, 0, 3897, 3898, 5, 204, 0, 0, 3898, 3899, 3, 1434, 717, 0, 3899, 3900, 3, 44, 22, 0, 3900, 3901, 5, 278, 0, 0, 3901, 3902, 3, 734, 367, 0, 3902, 3955, 1, 0, 0, 0, 3903, 3904, 5, 138, 0, 0, 3904, 3905, 5, 204, 0, 0, 3905, 3906, 3, 1434, 717, 0, 3906, 3907, 3, 44, 22, 0, 3907, 3908, 5, 278, 0, 0, 3908, 3909, 5, 156, 0, 0, 3909, 3910, 3, 556, 278, 0, 3910, 3911, 5, 100, 0, 0, 3911, 3912, 3, 1434, 717, 0, 3912, 3955, 1, 0, 0, 0, 3913, 3914, 5, 138, 0, 0, 3914, 3915, 5, 204, 0, 0, 3915, 3916, 3, 1434, 717, 0, 3916, 3917, 3, 44, 22, 0, 3917, 3918, 5, 278, 0, 0, 3918, 3919, 5, 206, 0, 0, 3919, 3920, 3, 556, 278, 0, 3920, 3921, 5, 100, 0, 0, 3921, 3922, 3, 1434, 717, 0, 3922, 3955, 1, 0, 0, 0, 3923, 3924, 5, 138, 0, 0, 3924, 3925, 5, 204, 0, 0, 3925, 3926, 3, 1434, 717, 0, 3926, 3927, 3, 44, 22, 0, 3927, 3928, 5, 296, 0, 0, 3928, 3929, 3, 668, 334, 0, 3929, 3955, 1, 0, 0, 0, 3930, 3931, 5, 138, 0, 0, 3931, 3932, 5, 204, 0, 0, 3932, 3933, 3, 1434, 717, 0, 3933, 3934, 3, 44, 22, 0, 3934, 3935, 5, 442, 0, 0, 3935, 3936, 3, 664, 332, 0, 3936, 3955, 1, 0, 0, 0, 3937, 3938, 5, 138, 0, 0, 3938, 3939, 5, 204, 0, 0, 3939, 3940, 3, 1434, 717, 0, 3940, 3941, 3, 44, 22, 0, 3941, 3942, 5, 443, 0, 0, 3942, 3943, 5, 62, 0, 0, 3943, 3944, 3, 1166, 583, 0, 3944, 3945, 5, 247, 0, 0, 3945, 3946, 3, 1434, 717, 0, 3946, 3955, 1, 0, 0, 0, 3947, 3948, 5, 138, 0, 0, 3948, 3949, 5, 204, 0, 0, 3949, 3950, 3, 1434, 717, 0, 3950, 3951, 3, 44, 22, 0, 3951, 3952, 5, 360, 0, 0, 3952, 3953, 3, 1166, 583, 0, 3953, 3955, 1, 0, 0, 0, 3954, 3852, 1, 0, 0, 0, 3954, 3858, 1, 0, 0, 0, 3954, 3864, 1, 0, 0, 0, 3954, 3871, 1, 0, 0, 0, 3954, 3882, 1, 0, 0, 0, 3954, 3889, 1, 0, 0, 0, 3954, 3896, 1, 0, 0, 0, 3954, 3903, 1, 0, 0, 0, 3954, 3913, 1, 0, 0, 0, 3954, 3923, 1, 0, 0, 0, 3954, 3930, 1, 0, 0, 0, 3954, 3937, 1, 0, 0, 0, 3954, 3947, 1, 0, 0, 0, 3955, 355, 1, 0, 0, 0, 3956, 3957, 5, 46, 0, 0, 3957, 3958, 5, 63, 0, 0, 3958, 3959, 5, 174, 0, 0, 3959, 3960, 5, 381, 0, 0, 3960, 3962, 3, 1434, 717, 0, 3961, 3963, 3, 362, 181, 0, 3962, 3961, 1, 0, 0, 0, 3962, 3963, 1, 0, 0, 0, 3963, 3965, 1, 0, 0, 0, 3964, 3966, 3, 366, 183, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 357, 1, 0, 0, 0, 3967, 3968, 5, 215, 0, 0, 3968, 3976, 3, 328, 164, 0, 3969, 3970, 5, 269, 0, 0, 3970, 3976, 5, 215, 0, 0, 3971, 3972, 5, 373, 0, 0, 3972, 3976, 3, 328, 164, 0, 3973, 3974, 5, 269, 0, 0, 3974, 3976, 5, 373, 0, 0, 3975, 3967, 1, 0, 0, 0, 3975, 3969, 1, 0, 0, 0, 3975, 3971, 1, 0, 0, 0, 3975, 3973, 1, 0, 0, 0, 3976, 359, 1, 0, 0, 0, 3977, 3979, 3, 358, 179, 0, 3978, 3977, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3978, 1, 0, 0, 0, 3980, 3981, 1, 0, 0, 0, 3981, 361, 1, 0, 0, 0, 3982, 3983, 3, 360, 180, 0, 3983, 363, 1, 0, 0, 0, 3984, 3985, 5, 138, 0, 0, 3985, 3986, 5, 63, 0, 0, 3986, 3987, 5, 174, 0, 0, 3987, 3988, 5, 381, 0, 0, 3988, 3990, 3, 1434, 717, 0, 3989, 3991, 3, 362, 181, 0, 3990, 3989, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3993, 3, 370, 185, 0, 3993, 4002, 1, 0, 0, 0, 3994, 3995, 5, 138, 0, 0, 3995, 3996, 5, 63, 0, 0, 3996, 3997, 5, 174, 0, 0, 3997, 3998, 5, 381, 0, 0, 3998, 3999, 3, 1434, 717, 0, 3999, 4000, 3, 360, 180, 0, 4000, 4002, 1, 0, 0, 0, 4001, 3984, 1, 0, 0, 0, 4001, 3994, 1, 0, 0, 0, 4002, 365, 1, 0, 0, 0, 4003, 4004, 5, 280, 0, 0, 4004, 4005, 5, 2, 0, 0, 4005, 4006, 3, 368, 184, 0, 4006, 4007, 5, 3, 0, 0, 4007, 367, 1, 0, 0, 0, 4008, 4013, 3, 376, 188, 0, 4009, 4010, 5, 6, 0, 0, 4010, 4012, 3, 376, 188, 0, 4011, 4009, 1, 0, 0, 0, 4012, 4015, 1, 0, 0, 0, 4013, 4011, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 369, 1, 0, 0, 0, 4015, 4013, 1, 0, 0, 0, 4016, 4017, 5, 280, 0, 0, 4017, 4018, 5, 2, 0, 0, 4018, 4019, 3, 372, 186, 0, 4019, 4020, 5, 3, 0, 0, 4020, 371, 1, 0, 0, 0, 4021, 4026, 3, 374, 187, 0, 4022, 4023, 5, 6, 0, 0, 4023, 4025, 3, 374, 187, 0, 4024, 4022, 1, 0, 0, 0, 4025, 4028, 1, 0, 0, 0, 4026, 4024, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 373, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4029, 4037, 3, 376, 188, 0, 4030, 4031, 5, 333, 0, 0, 4031, 4037, 3, 376, 188, 0, 4032, 4033, 5, 133, 0, 0, 4033, 4037, 3, 376, 188, 0, 4034, 4035, 5, 191, 0, 0, 4035, 4037, 3, 376, 188, 0, 4036, 4029, 1, 0, 0, 0, 4036, 4030, 1, 0, 0, 0, 4036, 4032, 1, 0, 0, 0, 4036, 4034, 1, 0, 0, 0, 4037, 375, 1, 0, 0, 0, 4038, 4039, 3, 378, 189, 0, 4039, 4040, 3, 380, 190, 0, 4040, 377, 1, 0, 0, 0, 4041, 4042, 3, 1488, 744, 0, 4042, 379, 1, 0, 0, 0, 4043, 4044, 3, 1456, 728, 0, 4044, 381, 1, 0, 0, 0, 4045, 4046, 5, 46, 0, 0, 4046, 4048, 5, 331, 0, 0, 4047, 4049, 3, 514, 257, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4052, 3, 1434, 717, 0, 4051, 4053, 3, 384, 192, 0, 4052, 4051, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4055, 1, 0, 0, 0, 4054, 4056, 3, 388, 194, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4058, 5, 63, 0, 0, 4058, 4059, 5, 174, 0, 0, 4059, 4060, 5, 381, 0, 0, 4060, 4062, 3, 1434, 717, 0, 4061, 4063, 3, 366, 183, 0, 4062, 4061, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 383, 1, 0, 0, 0, 4064, 4065, 5, 360, 0, 0, 4065, 4066, 3, 1456, 728, 0, 4066, 385, 1, 0, 0, 0, 4067, 4070, 5, 375, 0, 0, 4068, 4071, 3, 1456, 728, 0, 4069, 4071, 5, 78, 0, 0, 4070, 4068, 1, 0, 0, 0, 4070, 4069, 1, 0, 0, 0, 4071, 387, 1, 0, 0, 0, 4072, 4073, 3, 386, 193, 0, 4073, 389, 1, 0, 0, 0, 4074, 4075, 5, 138, 0, 0, 4075, 4076, 5, 331, 0, 0, 4076, 4082, 3, 1434, 717, 0, 4077, 4083, 3, 370, 185, 0, 4078, 4080, 3, 386, 193, 0, 4079, 4081, 3, 370, 185, 0, 4080, 4079, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4083, 1, 0, 0, 0, 4082, 4077, 1, 0, 0, 0, 4082, 4078, 1, 0, 0, 0, 4083, 391, 1, 0, 0, 0, 4084, 4085, 5, 46, 0, 0, 4085, 4086, 5, 63, 0, 0, 4086, 4088, 5, 92, 0, 0, 4087, 4089, 3, 514, 257, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4091, 3, 1402, 701, 0, 4091, 4093, 5, 2, 0, 0, 4092, 4094, 3, 194, 97, 0, 4093, 4092, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4097, 5, 3, 0, 0, 4096, 4098, 3, 264, 132, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4100, 5, 331, 0, 0, 4100, 4102, 3, 1434, 717, 0, 4101, 4103, 3, 366, 183, 0, 4102, 4101, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4124, 1, 0, 0, 0, 4104, 4105, 5, 46, 0, 0, 4105, 4106, 5, 63, 0, 0, 4106, 4108, 5, 92, 0, 0, 4107, 4109, 3, 514, 257, 0, 4108, 4107, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4111, 3, 1402, 701, 0, 4111, 4112, 5, 285, 0, 0, 4112, 4113, 5, 275, 0, 0, 4113, 4115, 3, 1404, 702, 0, 4114, 4116, 3, 196, 98, 0, 4115, 4114, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4117, 1, 0, 0, 0, 4117, 4118, 3, 144, 72, 0, 4118, 4119, 5, 331, 0, 0, 4119, 4121, 3, 1434, 717, 0, 4120, 4122, 3, 366, 183, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4084, 1, 0, 0, 0, 4123, 4104, 1, 0, 0, 0, 4124, 393, 1, 0, 0, 0, 4125, 4126, 5, 444, 0, 0, 4126, 4127, 5, 63, 0, 0, 4127, 4128, 5, 323, 0, 0, 4128, 4130, 3, 1420, 710, 0, 4129, 4131, 3, 398, 199, 0, 4130, 4129, 1, 0, 0, 0, 4130, 4131, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4133, 5, 64, 0, 0, 4133, 4134, 5, 331, 0, 0, 4134, 4135, 3, 1434, 717, 0, 4135, 4136, 5, 71, 0, 0, 4136, 4138, 3, 1434, 717, 0, 4137, 4139, 3, 366, 183, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 395, 1, 0, 0, 0, 4140, 4141, 5, 74, 0, 0, 4141, 4144, 5, 94, 0, 0, 4142, 4144, 5, 59, 0, 0, 4143, 4140, 1, 0, 0, 0, 4143, 4142, 1, 0, 0, 0, 4144, 397, 1, 0, 0, 0, 4145, 4146, 3, 396, 198, 0, 4146, 4147, 5, 2, 0, 0, 4147, 4148, 3, 1122, 561, 0, 4148, 4149, 5, 3, 0, 0, 4149, 399, 1, 0, 0, 0, 4150, 4151, 5, 46, 0, 0, 4151, 4152, 5, 99, 0, 0, 4152, 4154, 5, 257, 0, 0, 4153, 4155, 3, 514, 257, 0, 4154, 4153, 1, 0, 0, 0, 4154, 4155, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4157, 5, 62, 0, 0, 4157, 4158, 3, 402, 201, 0, 4158, 4159, 5, 331, 0, 0, 4159, 4161, 3, 1434, 717, 0, 4160, 4162, 3, 366, 183, 0, 4161, 4160, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 401, 1, 0, 0, 0, 4163, 4166, 3, 1468, 734, 0, 4164, 4166, 5, 99, 0, 0, 4165, 4163, 1, 0, 0, 0, 4165, 4164, 1, 0, 0, 0, 4166, 403, 1, 0, 0, 0, 4167, 4168, 5, 138, 0, 0, 4168, 4169, 5, 99, 0, 0, 4169, 4170, 5, 257, 0, 0, 4170, 4171, 5, 62, 0, 0, 4171, 4172, 3, 402, 201, 0, 4172, 4173, 5, 331, 0, 0, 4173, 4174, 3, 1434, 717, 0, 4174, 4175, 3, 370, 185, 0, 4175, 405, 1, 0, 0, 0, 4176, 4177, 5, 46, 0, 0, 4177, 4178, 5, 445, 0, 0, 4178, 4179, 3, 1434, 717, 0, 4179, 4180, 5, 80, 0, 0, 4180, 4182, 3, 1410, 705, 0, 4181, 4183, 3, 424, 212, 0, 4182, 4181, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4185, 1, 0, 0, 0, 4184, 4186, 3, 426, 213, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4188, 1, 0, 0, 0, 4187, 4189, 3, 420, 210, 0, 4188, 4187, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4191, 1, 0, 0, 0, 4190, 4192, 3, 416, 208, 0, 4191, 4190, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4194, 1, 0, 0, 0, 4193, 4195, 3, 418, 209, 0, 4194, 4193, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 407, 1, 0, 0, 0, 4196, 4197, 5, 138, 0, 0, 4197, 4198, 5, 445, 0, 0, 4198, 4199, 3, 1434, 717, 0, 4199, 4200, 5, 80, 0, 0, 4200, 4202, 3, 1410, 705, 0, 4201, 4203, 3, 422, 211, 0, 4202, 4201, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4205, 1, 0, 0, 0, 4204, 4206, 3, 416, 208, 0, 4205, 4204, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4209, 3, 418, 209, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 409, 1, 0, 0, 0, 4210, 4211, 5, 138, 0, 0, 4211, 4212, 5, 296, 0, 0, 4212, 4214, 3, 1426, 713, 0, 4213, 4215, 3, 658, 329, 0, 4214, 4213, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 1, 0, 0, 0, 4216, 4217, 3, 412, 206, 0, 4217, 411, 1, 0, 0, 0, 4218, 4222, 3, 414, 207, 0, 4219, 4221, 3, 414, 207, 0, 4220, 4219, 1, 0, 0, 0, 4221, 4224, 1, 0, 0, 0, 4222, 4220, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 4226, 1, 0, 0, 0, 4224, 4222, 1, 0, 0, 0, 4225, 4227, 5, 315, 0, 0, 4226, 4225, 1, 0, 0, 0, 4226, 4227, 1, 0, 0, 0, 4227, 4245, 1, 0, 0, 0, 4228, 4229, 5, 309, 0, 0, 4229, 4230, 5, 94, 0, 0, 4230, 4245, 3, 1428, 714, 0, 4231, 4232, 5, 282, 0, 0, 4232, 4233, 5, 94, 0, 0, 4233, 4245, 3, 1468, 734, 0, 4234, 4235, 5, 333, 0, 0, 4235, 4236, 5, 323, 0, 0, 4236, 4245, 3, 48, 24, 0, 4237, 4239, 5, 269, 0, 0, 4238, 4237, 1, 0, 0, 0, 4238, 4239, 1, 0, 0, 0, 4239, 4240, 1, 0, 0, 0, 4240, 4241, 5, 462, 0, 0, 4241, 4242, 5, 80, 0, 0, 4242, 4243, 5, 204, 0, 0, 4243, 4245, 3, 1434, 717, 0, 4244, 4218, 1, 0, 0, 0, 4244, 4228, 1, 0, 0, 0, 4244, 4231, 1, 0, 0, 0, 4244, 4234, 1, 0, 0, 0, 4244, 4238, 1, 0, 0, 0, 4245, 413, 1, 0, 0, 0, 4246, 4248, 5, 205, 0, 0, 4247, 4246, 1, 0, 0, 0, 4247, 4248, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 4250, 5, 327, 0, 0, 4250, 4257, 5, 243, 0, 0, 4251, 4253, 5, 205, 0, 0, 4252, 4251, 1, 0, 0, 0, 4252, 4253, 1, 0, 0, 0, 4253, 4254, 1, 0, 0, 0, 4254, 4255, 5, 327, 0, 0, 4255, 4257, 5, 181, 0, 0, 4256, 4247, 1, 0, 0, 0, 4256, 4252, 1, 0, 0, 0, 4257, 4275, 1, 0, 0, 0, 4258, 4259, 5, 333, 0, 0, 4259, 4260, 3, 1434, 717, 0, 4260, 4263, 7, 31, 0, 0, 4261, 4264, 3, 1434, 717, 0, 4262, 4264, 5, 53, 0, 0, 4263, 4261, 1, 0, 0, 0, 4263, 4262, 1, 0, 0, 0, 4264, 4275, 1, 0, 0, 0, 4265, 4266, 5, 333, 0, 0, 4266, 4267, 3, 1434, 717, 0, 4267, 4268, 5, 64, 0, 0, 4268, 4269, 5, 434, 0, 0, 4269, 4275, 1, 0, 0, 0, 4270, 4271, 5, 313, 0, 0, 4271, 4275, 3, 1434, 717, 0, 4272, 4273, 5, 313, 0, 0, 4273, 4275, 5, 30, 0, 0, 4274, 4256, 1, 0, 0, 0, 4274, 4258, 1, 0, 0, 0, 4274, 4265, 1, 0, 0, 0, 4274, 4270, 1, 0, 0, 0, 4274, 4272, 1, 0, 0, 0, 4275, 415, 1, 0, 0, 0, 4276, 4277, 5, 100, 0, 0, 4277, 4278, 5, 2, 0, 0, 4278, 4279, 3, 1210, 605, 0, 4279, 4280, 5, 3, 0, 0, 4280, 417, 1, 0, 0, 0, 4281, 4282, 5, 105, 0, 0, 4282, 4283, 5, 42, 0, 0, 4283, 4284, 5, 2, 0, 0, 4284, 4285, 3, 1210, 605, 0, 4285, 4286, 5, 3, 0, 0, 4286, 419, 1, 0, 0, 0, 4287, 4288, 5, 94, 0, 0, 4288, 4289, 3, 1470, 735, 0, 4289, 421, 1, 0, 0, 0, 4290, 4291, 5, 94, 0, 0, 4291, 4292, 3, 1470, 735, 0, 4292, 423, 1, 0, 0, 0, 4293, 4297, 5, 36, 0, 0, 4294, 4298, 5, 541, 0, 0, 4295, 4298, 5, 542, 0, 0, 4296, 4298, 3, 1490, 745, 0, 4297, 4294, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4296, 1, 0, 0, 0, 4298, 425, 1, 0, 0, 0, 4299, 4300, 5, 62, 0, 0, 4300, 4301, 3, 428, 214, 0, 4301, 427, 1, 0, 0, 0, 4302, 4303, 7, 32, 0, 0, 4303, 429, 1, 0, 0, 0, 4304, 4305, 5, 46, 0, 0, 4305, 4306, 5, 131, 0, 0, 4306, 4307, 5, 446, 0, 0, 4307, 4308, 3, 1434, 717, 0, 4308, 4309, 5, 360, 0, 0, 4309, 4310, 3, 432, 216, 0, 4310, 4311, 5, 215, 0, 0, 4311, 4312, 3, 328, 164, 0, 4312, 431, 1, 0, 0, 0, 4313, 4314, 7, 33, 0, 0, 4314, 433, 1, 0, 0, 0, 4315, 4317, 5, 46, 0, 0, 4316, 4318, 3, 656, 328, 0, 4317, 4316, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4320, 5, 357, 0, 0, 4320, 4321, 3, 1434, 717, 0, 4321, 4322, 3, 436, 218, 0, 4322, 4323, 3, 442, 221, 0, 4323, 4324, 5, 80, 0, 0, 4324, 4326, 3, 1404, 702, 0, 4325, 4327, 3, 446, 223, 0, 4326, 4325, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, 4327, 4329, 1, 0, 0, 0, 4328, 4330, 3, 458, 229, 0, 4329, 4328, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 4332, 1, 0, 0, 0, 4331, 4333, 3, 464, 232, 0, 4332, 4331, 1, 0, 0, 0, 4332, 4333, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4335, 5, 202, 0, 0, 4335, 4336, 3, 466, 233, 0, 4336, 4337, 5, 2, 0, 0, 4337, 4338, 3, 468, 234, 0, 4338, 4339, 5, 3, 0, 0, 4339, 4370, 1, 0, 0, 0, 4340, 4342, 5, 46, 0, 0, 4341, 4343, 3, 656, 328, 0, 4342, 4341, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4346, 5, 45, 0, 0, 4345, 4344, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4348, 5, 357, 0, 0, 4348, 4349, 3, 1434, 717, 0, 4349, 4350, 3, 436, 218, 0, 4350, 4351, 3, 442, 221, 0, 4351, 4352, 5, 80, 0, 0, 4352, 4354, 3, 1404, 702, 0, 4353, 4355, 3, 472, 236, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4356, 1, 0, 0, 0, 4356, 4358, 3, 474, 237, 0, 4357, 4359, 3, 438, 219, 0, 4358, 4357, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 4361, 1, 0, 0, 0, 4360, 4362, 3, 464, 232, 0, 4361, 4360, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4363, 1, 0, 0, 0, 4363, 4364, 5, 202, 0, 0, 4364, 4365, 3, 466, 233, 0, 4365, 4366, 5, 2, 0, 0, 4366, 4367, 3, 468, 234, 0, 4367, 4368, 5, 3, 0, 0, 4368, 4370, 1, 0, 0, 0, 4369, 4315, 1, 0, 0, 0, 4369, 4340, 1, 0, 0, 0, 4370, 435, 1, 0, 0, 0, 4371, 4376, 5, 145, 0, 0, 4372, 4376, 5, 135, 0, 0, 4373, 4374, 5, 242, 0, 0, 4374, 4376, 5, 275, 0, 0, 4375, 4371, 1, 0, 0, 0, 4375, 4372, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4376, 437, 1, 0, 0, 0, 4377, 4379, 5, 62, 0, 0, 4378, 4380, 5, 192, 0, 0, 4379, 4378, 1, 0, 0, 0, 4379, 4380, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4382, 3, 440, 220, 0, 4382, 439, 1, 0, 0, 0, 4383, 4384, 7, 34, 0, 0, 4384, 441, 1, 0, 0, 0, 4385, 4390, 3, 444, 222, 0, 4386, 4387, 5, 82, 0, 0, 4387, 4389, 3, 444, 222, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4392, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 443, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4401, 5, 241, 0, 0, 4394, 4401, 5, 182, 0, 0, 4395, 4401, 5, 369, 0, 0, 4396, 4397, 5, 369, 0, 0, 4397, 4398, 5, 275, 0, 0, 4398, 4401, 3, 244, 122, 0, 4399, 4401, 5, 358, 0, 0, 4400, 4393, 1, 0, 0, 0, 4400, 4394, 1, 0, 0, 0, 4400, 4395, 1, 0, 0, 0, 4400, 4396, 1, 0, 0, 0, 4400, 4399, 1, 0, 0, 0, 4401, 445, 1, 0, 0, 0, 4402, 4403, 5, 447, 0, 0, 4403, 4404, 3, 448, 224, 0, 4404, 447, 1, 0, 0, 0, 4405, 4407, 3, 450, 225, 0, 4406, 4405, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4406, 1, 0, 0, 0, 4408, 4409, 1, 0, 0, 0, 4409, 449, 1, 0, 0, 0, 4410, 4411, 3, 452, 226, 0, 4411, 4413, 3, 454, 227, 0, 4412, 4414, 3, 870, 435, 0, 4413, 4412, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4415, 1, 0, 0, 0, 4415, 4416, 3, 456, 228, 0, 4416, 451, 1, 0, 0, 0, 4417, 4418, 7, 35, 0, 0, 4418, 453, 1, 0, 0, 0, 4419, 4420, 7, 36, 0, 0, 4420, 455, 1, 0, 0, 0, 4421, 4422, 3, 1472, 736, 0, 4422, 457, 1, 0, 0, 0, 4423, 4425, 5, 62, 0, 0, 4424, 4426, 3, 460, 230, 0, 4425, 4424, 1, 0, 0, 0, 4425, 4426, 1, 0, 0, 0, 4426, 4427, 1, 0, 0, 0, 4427, 4428, 3, 462, 231, 0, 4428, 459, 1, 0, 0, 0, 4429, 4430, 5, 192, 0, 0, 4430, 461, 1, 0, 0, 0, 4431, 4432, 7, 34, 0, 0, 4432, 463, 1, 0, 0, 0, 4433, 4434, 5, 102, 0, 0, 4434, 4435, 5, 2, 0, 0, 4435, 4436, 3, 1210, 605, 0, 4436, 4437, 5, 3, 0, 0, 4437, 465, 1, 0, 0, 0, 4438, 4439, 5, 211, 0, 0, 4439, 4443, 3, 1442, 721, 0, 4440, 4441, 5, 296, 0, 0, 4441, 4443, 3, 1426, 713, 0, 4442, 4438, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4443, 467, 1, 0, 0, 0, 4444, 4447, 3, 470, 235, 0, 4445, 4447, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4446, 4445, 1, 0, 0, 0, 4447, 4452, 1, 0, 0, 0, 4448, 4449, 5, 6, 0, 0, 4449, 4451, 3, 470, 235, 0, 4450, 4448, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 469, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4460, 3, 1454, 727, 0, 4456, 4460, 3, 1452, 726, 0, 4457, 4460, 3, 1456, 728, 0, 4458, 4460, 3, 1488, 744, 0, 4459, 4455, 1, 0, 0, 0, 4459, 4456, 1, 0, 0, 0, 4459, 4457, 1, 0, 0, 0, 4459, 4458, 1, 0, 0, 0, 4460, 471, 1, 0, 0, 0, 4461, 4462, 5, 64, 0, 0, 4462, 4463, 3, 1410, 705, 0, 4463, 473, 1, 0, 0, 0, 4464, 4466, 3, 476, 238, 0, 4465, 4464, 1, 0, 0, 0, 4466, 4469, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 475, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4471, 5, 77, 0, 0, 4471, 4482, 5, 54, 0, 0, 4472, 4482, 5, 54, 0, 0, 4473, 4474, 5, 69, 0, 0, 4474, 4482, 5, 221, 0, 0, 4475, 4476, 5, 69, 0, 0, 4476, 4482, 5, 180, 0, 0, 4477, 4478, 5, 77, 0, 0, 4478, 4482, 5, 371, 0, 0, 4479, 4480, 5, 269, 0, 0, 4480, 4482, 5, 228, 0, 0, 4481, 4470, 1, 0, 0, 0, 4481, 4472, 1, 0, 0, 0, 4481, 4473, 1, 0, 0, 0, 4481, 4475, 1, 0, 0, 0, 4481, 4477, 1, 0, 0, 0, 4481, 4479, 1, 0, 0, 0, 4482, 477, 1, 0, 0, 0, 4483, 4484, 5, 46, 0, 0, 4484, 4485, 5, 198, 0, 0, 4485, 4486, 5, 357, 0, 0, 4486, 4487, 3, 1434, 717, 0, 4487, 4488, 5, 80, 0, 0, 4488, 4489, 3, 1488, 744, 0, 4489, 4490, 5, 202, 0, 0, 4490, 4491, 3, 466, 233, 0, 4491, 4492, 5, 2, 0, 0, 4492, 4493, 5, 3, 0, 0, 4493, 4508, 1, 0, 0, 0, 4494, 4495, 5, 46, 0, 0, 4495, 4496, 5, 198, 0, 0, 4496, 4497, 5, 357, 0, 0, 4497, 4498, 3, 1434, 717, 0, 4498, 4499, 5, 80, 0, 0, 4499, 4500, 3, 1488, 744, 0, 4500, 4501, 5, 102, 0, 0, 4501, 4502, 3, 480, 240, 0, 4502, 4503, 5, 202, 0, 0, 4503, 4504, 3, 466, 233, 0, 4504, 4505, 5, 2, 0, 0, 4505, 4506, 5, 3, 0, 0, 4506, 4508, 1, 0, 0, 0, 4507, 4483, 1, 0, 0, 0, 4507, 4494, 1, 0, 0, 0, 4508, 479, 1, 0, 0, 0, 4509, 4514, 3, 482, 241, 0, 4510, 4511, 5, 33, 0, 0, 4511, 4513, 3, 482, 241, 0, 4512, 4510, 1, 0, 0, 0, 4513, 4516, 1, 0, 0, 0, 4514, 4512, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 481, 1, 0, 0, 0, 4516, 4514, 1, 0, 0, 0, 4517, 4518, 3, 1472, 736, 0, 4518, 4519, 5, 68, 0, 0, 4519, 4520, 5, 2, 0, 0, 4520, 4521, 3, 484, 242, 0, 4521, 4522, 5, 3, 0, 0, 4522, 483, 1, 0, 0, 0, 4523, 4528, 3, 1456, 728, 0, 4524, 4525, 5, 6, 0, 0, 4525, 4527, 3, 1456, 728, 0, 4526, 4524, 1, 0, 0, 0, 4527, 4530, 1, 0, 0, 0, 4528, 4526, 1, 0, 0, 0, 4528, 4529, 1, 0, 0, 0, 4529, 485, 1, 0, 0, 0, 4530, 4528, 1, 0, 0, 0, 4531, 4532, 5, 138, 0, 0, 4532, 4533, 5, 198, 0, 0, 4533, 4534, 5, 357, 0, 0, 4534, 4535, 3, 1434, 717, 0, 4535, 4536, 3, 488, 244, 0, 4536, 487, 1, 0, 0, 0, 4537, 4539, 5, 193, 0, 0, 4538, 4540, 7, 20, 0, 0, 4539, 4538, 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4543, 1, 0, 0, 0, 4541, 4543, 5, 186, 0, 0, 4542, 4537, 1, 0, 0, 0, 4542, 4541, 1, 0, 0, 0, 4543, 489, 1, 0, 0, 0, 4544, 4545, 5, 46, 0, 0, 4545, 4546, 5, 140, 0, 0, 4546, 4547, 3, 556, 278, 0, 4547, 4548, 5, 42, 0, 0, 4548, 4549, 5, 2, 0, 0, 4549, 4550, 3, 1210, 605, 0, 4550, 4551, 5, 3, 0, 0, 4551, 4552, 3, 474, 237, 0, 4552, 491, 1, 0, 0, 0, 4553, 4555, 5, 46, 0, 0, 4554, 4556, 3, 656, 328, 0, 4555, 4554, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4558, 5, 136, 0, 0, 4558, 4559, 3, 1442, 721, 0, 4559, 4560, 3, 692, 346, 0, 4560, 4561, 3, 494, 247, 0, 4561, 4657, 1, 0, 0, 0, 4562, 4564, 5, 46, 0, 0, 4563, 4565, 3, 656, 328, 0, 4564, 4563, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4567, 5, 136, 0, 0, 4567, 4568, 3, 1442, 721, 0, 4568, 4569, 3, 502, 251, 0, 4569, 4657, 1, 0, 0, 0, 4570, 4571, 5, 46, 0, 0, 4571, 4572, 5, 278, 0, 0, 4572, 4573, 3, 730, 365, 0, 4573, 4574, 3, 494, 247, 0, 4574, 4657, 1, 0, 0, 0, 4575, 4576, 5, 46, 0, 0, 4576, 4577, 5, 360, 0, 0, 4577, 4578, 3, 556, 278, 0, 4578, 4579, 3, 494, 247, 0, 4579, 4657, 1, 0, 0, 0, 4580, 4581, 5, 46, 0, 0, 4581, 4582, 5, 360, 0, 0, 4582, 4657, 3, 556, 278, 0, 4583, 4584, 5, 46, 0, 0, 4584, 4585, 5, 360, 0, 0, 4585, 4586, 3, 556, 278, 0, 4586, 4587, 5, 36, 0, 0, 4587, 4589, 5, 2, 0, 0, 4588, 4590, 3, 1146, 573, 0, 4589, 4588, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4591, 1, 0, 0, 0, 4591, 4592, 5, 3, 0, 0, 4592, 4657, 1, 0, 0, 0, 4593, 4594, 5, 46, 0, 0, 4594, 4595, 5, 360, 0, 0, 4595, 4596, 3, 556, 278, 0, 4596, 4597, 5, 36, 0, 0, 4597, 4598, 5, 196, 0, 0, 4598, 4600, 5, 2, 0, 0, 4599, 4601, 3, 508, 254, 0, 4600, 4599, 1, 0, 0, 0, 4600, 4601, 1, 0, 0, 0, 4601, 4602, 1, 0, 0, 0, 4602, 4603, 5, 3, 0, 0, 4603, 4657, 1, 0, 0, 0, 4604, 4605, 5, 46, 0, 0, 4605, 4606, 5, 360, 0, 0, 4606, 4607, 3, 556, 278, 0, 4607, 4608, 5, 36, 0, 0, 4608, 4609, 5, 299, 0, 0, 4609, 4610, 3, 494, 247, 0, 4610, 4657, 1, 0, 0, 0, 4611, 4612, 5, 46, 0, 0, 4612, 4613, 5, 355, 0, 0, 4613, 4614, 5, 325, 0, 0, 4614, 4615, 5, 283, 0, 0, 4615, 4616, 3, 556, 278, 0, 4616, 4617, 3, 494, 247, 0, 4617, 4657, 1, 0, 0, 0, 4618, 4619, 5, 46, 0, 0, 4619, 4620, 5, 355, 0, 0, 4620, 4621, 5, 325, 0, 0, 4621, 4622, 5, 185, 0, 0, 4622, 4623, 3, 556, 278, 0, 4623, 4624, 3, 494, 247, 0, 4624, 4657, 1, 0, 0, 0, 4625, 4626, 5, 46, 0, 0, 4626, 4627, 5, 355, 0, 0, 4627, 4628, 5, 325, 0, 0, 4628, 4629, 5, 353, 0, 0, 4629, 4630, 3, 556, 278, 0, 4630, 4631, 3, 494, 247, 0, 4631, 4657, 1, 0, 0, 0, 4632, 4633, 5, 46, 0, 0, 4633, 4634, 5, 355, 0, 0, 4634, 4635, 5, 325, 0, 0, 4635, 4636, 5, 163, 0, 0, 4636, 4637, 3, 556, 278, 0, 4637, 4638, 3, 494, 247, 0, 4638, 4657, 1, 0, 0, 0, 4639, 4640, 5, 46, 0, 0, 4640, 4642, 5, 108, 0, 0, 4641, 4643, 3, 514, 257, 0, 4642, 4641, 1, 0, 0, 0, 4642, 4643, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4645, 3, 556, 278, 0, 4645, 4646, 3, 494, 247, 0, 4646, 4657, 1, 0, 0, 0, 4647, 4648, 5, 46, 0, 0, 4648, 4650, 5, 108, 0, 0, 4649, 4651, 3, 514, 257, 0, 4650, 4649, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4653, 3, 556, 278, 0, 4653, 4654, 5, 64, 0, 0, 4654, 4655, 3, 556, 278, 0, 4655, 4657, 1, 0, 0, 0, 4656, 4553, 1, 0, 0, 0, 4656, 4562, 1, 0, 0, 0, 4656, 4570, 1, 0, 0, 0, 4656, 4575, 1, 0, 0, 0, 4656, 4580, 1, 0, 0, 0, 4656, 4583, 1, 0, 0, 0, 4656, 4593, 1, 0, 0, 0, 4656, 4604, 1, 0, 0, 0, 4656, 4611, 1, 0, 0, 0, 4656, 4618, 1, 0, 0, 0, 4656, 4625, 1, 0, 0, 0, 4656, 4632, 1, 0, 0, 0, 4656, 4639, 1, 0, 0, 0, 4656, 4647, 1, 0, 0, 0, 4657, 493, 1, 0, 0, 0, 4658, 4659, 5, 2, 0, 0, 4659, 4660, 3, 496, 248, 0, 4660, 4661, 5, 3, 0, 0, 4661, 495, 1, 0, 0, 0, 4662, 4667, 3, 498, 249, 0, 4663, 4664, 5, 6, 0, 0, 4664, 4666, 3, 498, 249, 0, 4665, 4663, 1, 0, 0, 0, 4666, 4669, 1, 0, 0, 0, 4667, 4665, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 497, 1, 0, 0, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4673, 3, 1488, 744, 0, 4671, 4672, 5, 10, 0, 0, 4672, 4674, 3, 500, 250, 0, 4673, 4671, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 499, 1, 0, 0, 0, 4675, 4682, 3, 686, 343, 0, 4676, 4682, 3, 1500, 750, 0, 4677, 4682, 3, 1322, 661, 0, 4678, 4682, 3, 320, 160, 0, 4679, 4682, 3, 1456, 728, 0, 4680, 4682, 5, 407, 0, 0, 4681, 4675, 1, 0, 0, 0, 4681, 4676, 1, 0, 0, 0, 4681, 4677, 1, 0, 0, 0, 4681, 4678, 1, 0, 0, 0, 4681, 4679, 1, 0, 0, 0, 4681, 4680, 1, 0, 0, 0, 4682, 501, 1, 0, 0, 0, 4683, 4684, 5, 2, 0, 0, 4684, 4685, 3, 504, 252, 0, 4685, 4686, 5, 3, 0, 0, 4686, 503, 1, 0, 0, 0, 4687, 4692, 3, 506, 253, 0, 4688, 4689, 5, 6, 0, 0, 4689, 4691, 3, 506, 253, 0, 4690, 4688, 1, 0, 0, 0, 4691, 4694, 1, 0, 0, 0, 4692, 4690, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 505, 1, 0, 0, 0, 4694, 4692, 1, 0, 0, 0, 4695, 4696, 3, 1490, 745, 0, 4696, 4697, 5, 10, 0, 0, 4697, 4698, 3, 500, 250, 0, 4698, 507, 1, 0, 0, 0, 4699, 4700, 3, 510, 255, 0, 4700, 509, 1, 0, 0, 0, 4701, 4706, 3, 1456, 728, 0, 4702, 4703, 5, 6, 0, 0, 4703, 4705, 3, 1456, 728, 0, 4704, 4702, 1, 0, 0, 0, 4705, 4708, 1, 0, 0, 0, 4706, 4704, 1, 0, 0, 0, 4706, 4707, 1, 0, 0, 0, 4707, 511, 1, 0, 0, 0, 4708, 4706, 1, 0, 0, 0, 4709, 4710, 5, 138, 0, 0, 4710, 4711, 5, 360, 0, 0, 4711, 4712, 3, 556, 278, 0, 4712, 4713, 5, 133, 0, 0, 4713, 4715, 5, 450, 0, 0, 4714, 4716, 3, 514, 257, 0, 4715, 4714, 1, 0, 0, 0, 4715, 4716, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 4720, 3, 1456, 728, 0, 4718, 4719, 7, 37, 0, 0, 4719, 4721, 3, 1456, 728, 0, 4720, 4718, 1, 0, 0, 0, 4720, 4721, 1, 0, 0, 0, 4721, 4732, 1, 0, 0, 0, 4722, 4723, 5, 138, 0, 0, 4723, 4724, 5, 360, 0, 0, 4724, 4725, 3, 556, 278, 0, 4725, 4726, 5, 309, 0, 0, 4726, 4727, 5, 450, 0, 0, 4727, 4728, 3, 1456, 728, 0, 4728, 4729, 5, 94, 0, 0, 4729, 4730, 3, 1456, 728, 0, 4730, 4732, 1, 0, 0, 0, 4731, 4709, 1, 0, 0, 0, 4731, 4722, 1, 0, 0, 0, 4732, 513, 1, 0, 0, 0, 4733, 4734, 5, 220, 0, 0, 4734, 4735, 5, 77, 0, 0, 4735, 4736, 5, 396, 0, 0, 4736, 515, 1, 0, 0, 0, 4737, 4738, 5, 46, 0, 0, 4738, 4739, 5, 278, 0, 0, 4739, 4740, 5, 156, 0, 0, 4740, 4742, 3, 556, 278, 0, 4741, 4743, 3, 522, 261, 0, 4742, 4741, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4745, 5, 62, 0, 0, 4745, 4746, 5, 360, 0, 0, 4746, 4747, 3, 1166, 583, 0, 4747, 4748, 5, 100, 0, 0, 4748, 4750, 3, 1434, 717, 0, 4749, 4751, 3, 524, 262, 0, 4750, 4749, 1, 0, 0, 0, 4750, 4751, 1, 0, 0, 0, 4751, 4752, 1, 0, 0, 0, 4752, 4753, 5, 36, 0, 0, 4753, 4754, 3, 518, 259, 0, 4754, 517, 1, 0, 0, 0, 4755, 4760, 3, 520, 260, 0, 4756, 4757, 5, 6, 0, 0, 4757, 4759, 3, 520, 260, 0, 4758, 4756, 1, 0, 0, 0, 4759, 4762, 1, 0, 0, 0, 4760, 4758, 1, 0, 0, 0, 4760, 4761, 1, 0, 0, 0, 4761, 519, 1, 0, 0, 0, 4762, 4760, 1, 0, 0, 0, 4763, 4764, 5, 278, 0, 0, 4764, 4765, 3, 1454, 727, 0, 4765, 4767, 3, 730, 365, 0, 4766, 4768, 3, 526, 263, 0, 4767, 4766, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4770, 1, 0, 0, 0, 4769, 4771, 3, 528, 264, 0, 4770, 4769, 1, 0, 0, 0, 4770, 4771, 1, 0, 0, 0, 4771, 4795, 1, 0, 0, 0, 4772, 4773, 5, 278, 0, 0, 4773, 4774, 3, 1454, 727, 0, 4774, 4776, 3, 734, 367, 0, 4775, 4777, 3, 526, 263, 0, 4776, 4775, 1, 0, 0, 0, 4776, 4777, 1, 0, 0, 0, 4777, 4779, 1, 0, 0, 0, 4778, 4780, 3, 528, 264, 0, 4779, 4778, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 4795, 1, 0, 0, 0, 4781, 4782, 5, 211, 0, 0, 4782, 4783, 3, 1454, 727, 0, 4783, 4784, 3, 672, 336, 0, 4784, 4795, 1, 0, 0, 0, 4785, 4786, 5, 211, 0, 0, 4786, 4787, 3, 1454, 727, 0, 4787, 4788, 5, 2, 0, 0, 4788, 4789, 3, 1340, 670, 0, 4789, 4790, 5, 3, 0, 0, 4790, 4791, 3, 672, 336, 0, 4791, 4795, 1, 0, 0, 0, 4792, 4793, 5, 345, 0, 0, 4793, 4795, 3, 1166, 583, 0, 4794, 4763, 1, 0, 0, 0, 4794, 4772, 1, 0, 0, 0, 4794, 4781, 1, 0, 0, 0, 4794, 4785, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4795, 521, 1, 0, 0, 0, 4796, 4797, 5, 53, 0, 0, 4797, 523, 1, 0, 0, 0, 4798, 4799, 5, 206, 0, 0, 4799, 4800, 3, 556, 278, 0, 4800, 525, 1, 0, 0, 0, 4801, 4802, 5, 62, 0, 0, 4802, 4808, 5, 325, 0, 0, 4803, 4804, 5, 62, 0, 0, 4804, 4805, 5, 83, 0, 0, 4805, 4806, 5, 147, 0, 0, 4806, 4808, 3, 556, 278, 0, 4807, 4801, 1, 0, 0, 0, 4807, 4803, 1, 0, 0, 0, 4808, 527, 1, 0, 0, 0, 4809, 4810, 5, 302, 0, 0, 4810, 529, 1, 0, 0, 0, 4811, 4812, 5, 46, 0, 0, 4812, 4813, 5, 278, 0, 0, 4813, 4814, 5, 206, 0, 0, 4814, 4815, 3, 556, 278, 0, 4815, 4816, 5, 100, 0, 0, 4816, 4817, 3, 1434, 717, 0, 4817, 531, 1, 0, 0, 0, 4818, 4819, 5, 138, 0, 0, 4819, 4820, 5, 278, 0, 0, 4820, 4821, 5, 206, 0, 0, 4821, 4822, 3, 556, 278, 0, 4822, 4823, 5, 100, 0, 0, 4823, 4824, 3, 1434, 717, 0, 4824, 4825, 5, 133, 0, 0, 4825, 4826, 3, 518, 259, 0, 4826, 4837, 1, 0, 0, 0, 4827, 4828, 5, 138, 0, 0, 4828, 4829, 5, 278, 0, 0, 4829, 4830, 5, 206, 0, 0, 4830, 4831, 3, 556, 278, 0, 4831, 4832, 5, 100, 0, 0, 4832, 4833, 3, 1434, 717, 0, 4833, 4834, 5, 191, 0, 0, 4834, 4835, 3, 534, 267, 0, 4835, 4837, 1, 0, 0, 0, 4836, 4818, 1, 0, 0, 0, 4836, 4827, 1, 0, 0, 0, 4837, 533, 1, 0, 0, 0, 4838, 4843, 3, 536, 268, 0, 4839, 4840, 5, 6, 0, 0, 4840, 4842, 3, 536, 268, 0, 4841, 4839, 1, 0, 0, 0, 4842, 4845, 1, 0, 0, 0, 4843, 4841, 1, 0, 0, 0, 4843, 4844, 1, 0, 0, 0, 4844, 535, 1, 0, 0, 0, 4845, 4843, 1, 0, 0, 0, 4846, 4847, 5, 278, 0, 0, 4847, 4848, 3, 1454, 727, 0, 4848, 4849, 5, 2, 0, 0, 4849, 4850, 3, 1340, 670, 0, 4850, 4851, 5, 3, 0, 0, 4851, 4859, 1, 0, 0, 0, 4852, 4853, 5, 211, 0, 0, 4853, 4854, 3, 1454, 727, 0, 4854, 4855, 5, 2, 0, 0, 4855, 4856, 3, 1340, 670, 0, 4856, 4857, 5, 3, 0, 0, 4857, 4859, 1, 0, 0, 0, 4858, 4846, 1, 0, 0, 0, 4858, 4852, 1, 0, 0, 0, 4859, 537, 1, 0, 0, 0, 4860, 4861, 5, 301, 0, 0, 4861, 4862, 5, 281, 0, 0, 4862, 4863, 5, 147, 0, 0, 4863, 4864, 3, 1470, 735, 0, 4864, 4865, 5, 94, 0, 0, 4865, 4866, 3, 1468, 734, 0, 4866, 539, 1, 0, 0, 0, 4867, 4868, 5, 191, 0, 0, 4868, 4870, 5, 92, 0, 0, 4869, 4871, 3, 746, 373, 0, 4870, 4869, 1, 0, 0, 0, 4870, 4871, 1, 0, 0, 0, 4871, 4872, 1, 0, 0, 0, 4872, 4874, 3, 1390, 695, 0, 4873, 4875, 3, 124, 62, 0, 4874, 4873, 1, 0, 0, 0, 4874, 4875, 1, 0, 0, 0, 4875, 5247, 1, 0, 0, 0, 4876, 4877, 5, 191, 0, 0, 4877, 4879, 5, 328, 0, 0, 4878, 4880, 3, 746, 373, 0, 4879, 4878, 1, 0, 0, 0, 4879, 4880, 1, 0, 0, 0, 4880, 4881, 1, 0, 0, 0, 4881, 4883, 3, 1414, 707, 0, 4882, 4884, 3, 124, 62, 0, 4883, 4882, 1, 0, 0, 0, 4883, 4884, 1, 0, 0, 0, 4884, 5247, 1, 0, 0, 0, 4885, 4886, 5, 191, 0, 0, 4886, 4888, 5, 376, 0, 0, 4887, 4889, 3, 746, 373, 0, 4888, 4887, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4892, 3, 542, 271, 0, 4891, 4893, 3, 124, 62, 0, 4892, 4891, 1, 0, 0, 0, 4892, 4893, 1, 0, 0, 0, 4893, 5247, 1, 0, 0, 0, 4894, 4895, 5, 191, 0, 0, 4895, 4896, 5, 259, 0, 0, 4896, 4898, 5, 376, 0, 0, 4897, 4899, 3, 746, 373, 0, 4898, 4897, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4900, 1, 0, 0, 0, 4900, 4902, 3, 542, 271, 0, 4901, 4903, 3, 124, 62, 0, 4902, 4901, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 5247, 1, 0, 0, 0, 4904, 4905, 5, 191, 0, 0, 4905, 4907, 5, 226, 0, 0, 4906, 4908, 3, 746, 373, 0, 4907, 4906, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 1, 0, 0, 0, 4909, 4911, 3, 1414, 707, 0, 4910, 4912, 3, 124, 62, 0, 4911, 4910, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 5247, 1, 0, 0, 0, 4913, 4914, 5, 191, 0, 0, 4914, 4915, 5, 63, 0, 0, 4915, 4917, 5, 92, 0, 0, 4916, 4918, 3, 746, 373, 0, 4917, 4916, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 4921, 3, 1390, 695, 0, 4920, 4922, 3, 124, 62, 0, 4921, 4920, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 5247, 1, 0, 0, 0, 4923, 4924, 5, 191, 0, 0, 4924, 4926, 5, 108, 0, 0, 4925, 4927, 3, 746, 373, 0, 4926, 4925, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4930, 3, 1414, 707, 0, 4929, 4931, 3, 124, 62, 0, 4930, 4929, 1, 0, 0, 0, 4930, 4931, 1, 0, 0, 0, 4931, 5247, 1, 0, 0, 0, 4932, 4933, 5, 191, 0, 0, 4933, 4935, 5, 168, 0, 0, 4934, 4936, 3, 746, 373, 0, 4935, 4934, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4939, 3, 1414, 707, 0, 4938, 4940, 3, 124, 62, 0, 4939, 4938, 1, 0, 0, 0, 4939, 4940, 1, 0, 0, 0, 4940, 5247, 1, 0, 0, 0, 4941, 4942, 5, 191, 0, 0, 4942, 4944, 5, 342, 0, 0, 4943, 4945, 3, 746, 373, 0, 4944, 4943, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 4948, 3, 1414, 707, 0, 4947, 4949, 3, 124, 62, 0, 4948, 4947, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 5247, 1, 0, 0, 0, 4950, 4951, 5, 191, 0, 0, 4951, 4952, 5, 355, 0, 0, 4952, 4953, 5, 325, 0, 0, 4953, 4955, 5, 283, 0, 0, 4954, 4956, 3, 746, 373, 0, 4955, 4954, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 1, 0, 0, 0, 4957, 4959, 3, 1414, 707, 0, 4958, 4960, 3, 124, 62, 0, 4959, 4958, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 5247, 1, 0, 0, 0, 4961, 4962, 5, 191, 0, 0, 4962, 4963, 5, 355, 0, 0, 4963, 4964, 5, 325, 0, 0, 4964, 4966, 5, 185, 0, 0, 4965, 4967, 3, 746, 373, 0, 4966, 4965, 1, 0, 0, 0, 4966, 4967, 1, 0, 0, 0, 4967, 4968, 1, 0, 0, 0, 4968, 4970, 3, 1414, 707, 0, 4969, 4971, 3, 124, 62, 0, 4970, 4969, 1, 0, 0, 0, 4970, 4971, 1, 0, 0, 0, 4971, 5247, 1, 0, 0, 0, 4972, 4973, 5, 191, 0, 0, 4973, 4974, 5, 355, 0, 0, 4974, 4975, 5, 325, 0, 0, 4975, 4977, 5, 353, 0, 0, 4976, 4978, 3, 746, 373, 0, 4977, 4976, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4979, 1, 0, 0, 0, 4979, 4981, 3, 1414, 707, 0, 4980, 4982, 3, 124, 62, 0, 4981, 4980, 1, 0, 0, 0, 4981, 4982, 1, 0, 0, 0, 4982, 5247, 1, 0, 0, 0, 4983, 4984, 5, 191, 0, 0, 4984, 4985, 5, 355, 0, 0, 4985, 4986, 5, 325, 0, 0, 4986, 4988, 5, 163, 0, 0, 4987, 4989, 3, 746, 373, 0, 4988, 4987, 1, 0, 0, 0, 4988, 4989, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4992, 3, 1414, 707, 0, 4991, 4993, 3, 124, 62, 0, 4992, 4991, 1, 0, 0, 0, 4992, 4993, 1, 0, 0, 0, 4993, 5247, 1, 0, 0, 0, 4994, 4995, 5, 191, 0, 0, 4995, 4996, 5, 131, 0, 0, 4996, 4998, 5, 446, 0, 0, 4997, 4999, 3, 746, 373, 0, 4998, 4997, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5000, 1, 0, 0, 0, 5000, 5002, 3, 1414, 707, 0, 5001, 5003, 3, 124, 62, 0, 5002, 5001, 1, 0, 0, 0, 5002, 5003, 1, 0, 0, 0, 5003, 5247, 1, 0, 0, 0, 5004, 5005, 5, 191, 0, 0, 5005, 5006, 5, 198, 0, 0, 5006, 5008, 5, 357, 0, 0, 5007, 5009, 3, 746, 373, 0, 5008, 5007, 1, 0, 0, 0, 5008, 5009, 1, 0, 0, 0, 5009, 5010, 1, 0, 0, 0, 5010, 5012, 3, 1414, 707, 0, 5011, 5013, 3, 124, 62, 0, 5012, 5011, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5247, 1, 0, 0, 0, 5014, 5015, 5, 191, 0, 0, 5015, 5017, 5, 204, 0, 0, 5016, 5018, 3, 746, 373, 0, 5017, 5016, 1, 0, 0, 0, 5017, 5018, 1, 0, 0, 0, 5018, 5019, 1, 0, 0, 0, 5019, 5021, 3, 1414, 707, 0, 5020, 5022, 3, 124, 62, 0, 5021, 5020, 1, 0, 0, 0, 5021, 5022, 1, 0, 0, 0, 5022, 5247, 1, 0, 0, 0, 5023, 5024, 5, 191, 0, 0, 5024, 5025, 5, 63, 0, 0, 5025, 5026, 5, 174, 0, 0, 5026, 5028, 5, 381, 0, 0, 5027, 5029, 3, 746, 373, 0, 5028, 5027, 1, 0, 0, 0, 5028, 5029, 1, 0, 0, 0, 5029, 5030, 1, 0, 0, 0, 5030, 5032, 3, 1414, 707, 0, 5031, 5033, 3, 124, 62, 0, 5032, 5031, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5247, 1, 0, 0, 0, 5034, 5036, 5, 191, 0, 0, 5035, 5037, 3, 336, 168, 0, 5036, 5035, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5038, 1, 0, 0, 0, 5038, 5040, 5, 247, 0, 0, 5039, 5041, 3, 746, 373, 0, 5040, 5039, 1, 0, 0, 0, 5040, 5041, 1, 0, 0, 0, 5041, 5042, 1, 0, 0, 0, 5042, 5044, 3, 1414, 707, 0, 5043, 5045, 3, 124, 62, 0, 5044, 5043, 1, 0, 0, 0, 5044, 5045, 1, 0, 0, 0, 5045, 5247, 1, 0, 0, 0, 5046, 5047, 5, 191, 0, 0, 5047, 5049, 5, 452, 0, 0, 5048, 5050, 3, 746, 373, 0, 5049, 5048, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5053, 3, 1414, 707, 0, 5052, 5054, 3, 124, 62, 0, 5053, 5052, 1, 0, 0, 0, 5053, 5054, 1, 0, 0, 0, 5054, 5247, 1, 0, 0, 0, 5055, 5056, 5, 191, 0, 0, 5056, 5058, 5, 331, 0, 0, 5057, 5059, 3, 746, 373, 0, 5058, 5057, 1, 0, 0, 0, 5058, 5059, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5062, 3, 1414, 707, 0, 5061, 5063, 3, 124, 62, 0, 5062, 5061, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5247, 1, 0, 0, 0, 5064, 5065, 5, 191, 0, 0, 5065, 5067, 5, 323, 0, 0, 5066, 5068, 3, 746, 373, 0, 5067, 5066, 1, 0, 0, 0, 5067, 5068, 1, 0, 0, 0, 5068, 5069, 1, 0, 0, 0, 5069, 5071, 3, 1392, 696, 0, 5070, 5072, 3, 124, 62, 0, 5071, 5070, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, 0, 5072, 5247, 1, 0, 0, 0, 5073, 5074, 5, 191, 0, 0, 5074, 5076, 5, 445, 0, 0, 5075, 5077, 3, 746, 373, 0, 5076, 5075, 1, 0, 0, 0, 5076, 5077, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 3, 1434, 717, 0, 5079, 5080, 5, 80, 0, 0, 5080, 5082, 3, 556, 278, 0, 5081, 5083, 3, 124, 62, 0, 5082, 5081, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5247, 1, 0, 0, 0, 5084, 5085, 5, 191, 0, 0, 5085, 5087, 5, 321, 0, 0, 5086, 5088, 3, 746, 373, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5090, 3, 1434, 717, 0, 5090, 5091, 5, 80, 0, 0, 5091, 5093, 3, 556, 278, 0, 5092, 5094, 3, 124, 62, 0, 5093, 5092, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5247, 1, 0, 0, 0, 5095, 5096, 5, 191, 0, 0, 5096, 5098, 5, 357, 0, 0, 5097, 5099, 3, 746, 373, 0, 5098, 5097, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 3, 1434, 717, 0, 5101, 5102, 5, 80, 0, 0, 5102, 5104, 3, 556, 278, 0, 5103, 5105, 3, 124, 62, 0, 5104, 5103, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5247, 1, 0, 0, 0, 5106, 5107, 5, 191, 0, 0, 5107, 5109, 5, 360, 0, 0, 5108, 5110, 3, 746, 373, 0, 5109, 5108, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 5113, 3, 560, 280, 0, 5112, 5114, 3, 124, 62, 0, 5113, 5112, 1, 0, 0, 0, 5113, 5114, 1, 0, 0, 0, 5114, 5247, 1, 0, 0, 0, 5115, 5116, 5, 191, 0, 0, 5116, 5118, 5, 189, 0, 0, 5117, 5119, 3, 746, 373, 0, 5118, 5117, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5120, 1, 0, 0, 0, 5120, 5122, 3, 560, 280, 0, 5121, 5123, 3, 124, 62, 0, 5122, 5121, 1, 0, 0, 0, 5122, 5123, 1, 0, 0, 0, 5123, 5247, 1, 0, 0, 0, 5124, 5125, 5, 191, 0, 0, 5125, 5126, 5, 226, 0, 0, 5126, 5128, 5, 109, 0, 0, 5127, 5129, 3, 746, 373, 0, 5128, 5127, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5130, 1, 0, 0, 0, 5130, 5132, 3, 550, 275, 0, 5131, 5133, 3, 124, 62, 0, 5132, 5131, 1, 0, 0, 0, 5132, 5133, 1, 0, 0, 0, 5133, 5247, 1, 0, 0, 0, 5134, 5135, 5, 191, 0, 0, 5135, 5137, 5, 41, 0, 0, 5136, 5138, 3, 746, 373, 0, 5137, 5136, 1, 0, 0, 0, 5137, 5138, 1, 0, 0, 0, 5138, 5139, 1, 0, 0, 0, 5139, 5140, 5, 2, 0, 0, 5140, 5141, 3, 1166, 583, 0, 5141, 5142, 5, 36, 0, 0, 5142, 5143, 3, 1166, 583, 0, 5143, 5145, 5, 3, 0, 0, 5144, 5146, 3, 124, 62, 0, 5145, 5144, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5247, 1, 0, 0, 0, 5147, 5148, 5, 191, 0, 0, 5148, 5149, 5, 278, 0, 0, 5149, 5151, 5, 156, 0, 0, 5150, 5152, 3, 746, 373, 0, 5151, 5150, 1, 0, 0, 0, 5151, 5152, 1, 0, 0, 0, 5152, 5153, 1, 0, 0, 0, 5153, 5154, 3, 556, 278, 0, 5154, 5155, 5, 100, 0, 0, 5155, 5157, 3, 1434, 717, 0, 5156, 5158, 3, 124, 62, 0, 5157, 5156, 1, 0, 0, 0, 5157, 5158, 1, 0, 0, 0, 5158, 5247, 1, 0, 0, 0, 5159, 5160, 5, 191, 0, 0, 5160, 5161, 5, 278, 0, 0, 5161, 5163, 5, 206, 0, 0, 5162, 5164, 3, 746, 373, 0, 5163, 5162, 1, 0, 0, 0, 5163, 5164, 1, 0, 0, 0, 5164, 5165, 1, 0, 0, 0, 5165, 5166, 3, 556, 278, 0, 5166, 5167, 5, 100, 0, 0, 5167, 5169, 3, 1434, 717, 0, 5168, 5170, 3, 124, 62, 0, 5169, 5168, 1, 0, 0, 0, 5169, 5170, 1, 0, 0, 0, 5170, 5247, 1, 0, 0, 0, 5171, 5172, 5, 191, 0, 0, 5172, 5173, 5, 281, 0, 0, 5173, 5174, 5, 147, 0, 0, 5174, 5176, 3, 1470, 735, 0, 5175, 5177, 3, 124, 62, 0, 5176, 5175, 1, 0, 0, 0, 5176, 5177, 1, 0, 0, 0, 5177, 5247, 1, 0, 0, 0, 5178, 5179, 5, 191, 0, 0, 5179, 5181, 5, 376, 0, 0, 5180, 5182, 3, 746, 373, 0, 5181, 5180, 1, 0, 0, 0, 5181, 5182, 1, 0, 0, 0, 5182, 5183, 1, 0, 0, 0, 5183, 5185, 3, 542, 271, 0, 5184, 5186, 3, 124, 62, 0, 5185, 5184, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5247, 1, 0, 0, 0, 5187, 5188, 5, 191, 0, 0, 5188, 5190, 5, 451, 0, 0, 5189, 5191, 3, 746, 373, 0, 5190, 5189, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5192, 1, 0, 0, 0, 5192, 5194, 3, 1434, 717, 0, 5193, 5195, 3, 124, 62, 0, 5194, 5193, 1, 0, 0, 0, 5194, 5195, 1, 0, 0, 0, 5195, 5247, 1, 0, 0, 0, 5196, 5197, 5, 191, 0, 0, 5197, 5199, 5, 351, 0, 0, 5198, 5200, 3, 746, 373, 0, 5199, 5198, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5247, 3, 1400, 700, 0, 5202, 5203, 5, 191, 0, 0, 5203, 5205, 5, 443, 0, 0, 5204, 5206, 3, 746, 373, 0, 5205, 5204, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5207, 1, 0, 0, 0, 5207, 5208, 5, 62, 0, 0, 5208, 5209, 3, 1166, 583, 0, 5209, 5210, 5, 247, 0, 0, 5210, 5212, 3, 1434, 717, 0, 5211, 5213, 3, 124, 62, 0, 5212, 5211, 1, 0, 0, 0, 5212, 5213, 1, 0, 0, 0, 5213, 5247, 1, 0, 0, 0, 5214, 5215, 5, 191, 0, 0, 5215, 5217, 7, 38, 0, 0, 5216, 5218, 3, 746, 373, 0, 5217, 5216, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5219, 1, 0, 0, 0, 5219, 5247, 3, 1470, 735, 0, 5220, 5221, 5, 191, 0, 0, 5221, 5222, 5, 99, 0, 0, 5222, 5224, 5, 257, 0, 0, 5223, 5225, 3, 746, 373, 0, 5224, 5223, 1, 0, 0, 0, 5224, 5225, 1, 0, 0, 0, 5225, 5226, 1, 0, 0, 0, 5226, 5227, 5, 62, 0, 0, 5227, 5228, 3, 402, 201, 0, 5228, 5229, 5, 331, 0, 0, 5229, 5230, 3, 1434, 717, 0, 5230, 5247, 1, 0, 0, 0, 5231, 5232, 5, 191, 0, 0, 5232, 5234, 5, 175, 0, 0, 5233, 5235, 3, 746, 373, 0, 5234, 5233, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, 5236, 1, 0, 0, 0, 5236, 5244, 3, 1418, 709, 0, 5237, 5239, 3, 14, 7, 0, 5238, 5237, 1, 0, 0, 0, 5238, 5239, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 5241, 5, 2, 0, 0, 5241, 5242, 3, 858, 429, 0, 5242, 5243, 5, 3, 0, 0, 5243, 5245, 1, 0, 0, 0, 5244, 5238, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5247, 1, 0, 0, 0, 5246, 4867, 1, 0, 0, 0, 5246, 4876, 1, 0, 0, 0, 5246, 4885, 1, 0, 0, 0, 5246, 4894, 1, 0, 0, 0, 5246, 4904, 1, 0, 0, 0, 5246, 4913, 1, 0, 0, 0, 5246, 4923, 1, 0, 0, 0, 5246, 4932, 1, 0, 0, 0, 5246, 4941, 1, 0, 0, 0, 5246, 4950, 1, 0, 0, 0, 5246, 4961, 1, 0, 0, 0, 5246, 4972, 1, 0, 0, 0, 5246, 4983, 1, 0, 0, 0, 5246, 4994, 1, 0, 0, 0, 5246, 5004, 1, 0, 0, 0, 5246, 5014, 1, 0, 0, 0, 5246, 5023, 1, 0, 0, 0, 5246, 5034, 1, 0, 0, 0, 5246, 5046, 1, 0, 0, 0, 5246, 5055, 1, 0, 0, 0, 5246, 5064, 1, 0, 0, 0, 5246, 5073, 1, 0, 0, 0, 5246, 5084, 1, 0, 0, 0, 5246, 5095, 1, 0, 0, 0, 5246, 5106, 1, 0, 0, 0, 5246, 5115, 1, 0, 0, 0, 5246, 5124, 1, 0, 0, 0, 5246, 5134, 1, 0, 0, 0, 5246, 5147, 1, 0, 0, 0, 5246, 5159, 1, 0, 0, 0, 5246, 5171, 1, 0, 0, 0, 5246, 5178, 1, 0, 0, 0, 5246, 5187, 1, 0, 0, 0, 5246, 5196, 1, 0, 0, 0, 5246, 5202, 1, 0, 0, 0, 5246, 5214, 1, 0, 0, 0, 5246, 5220, 1, 0, 0, 0, 5246, 5231, 1, 0, 0, 0, 5247, 541, 1, 0, 0, 0, 5248, 5253, 3, 1408, 704, 0, 5249, 5250, 5, 6, 0, 0, 5250, 5252, 3, 1408, 704, 0, 5251, 5249, 1, 0, 0, 0, 5252, 5255, 1, 0, 0, 0, 5253, 5251, 1, 0, 0, 0, 5253, 5254, 1, 0, 0, 0, 5254, 543, 1, 0, 0, 0, 5255, 5253, 1, 0, 0, 0, 5256, 5258, 5, 63, 0, 0, 5257, 5256, 1, 0, 0, 0, 5257, 5258, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, 0, 5259, 5260, 5, 92, 0, 0, 5260, 5281, 3, 1404, 702, 0, 5261, 5263, 5, 259, 0, 0, 5262, 5261, 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5265, 5, 376, 0, 0, 5265, 5281, 3, 1408, 704, 0, 5266, 5267, 5, 226, 0, 0, 5267, 5281, 3, 556, 278, 0, 5268, 5269, 5, 108, 0, 0, 5269, 5281, 3, 556, 278, 0, 5270, 5271, 5, 168, 0, 0, 5271, 5281, 3, 556, 278, 0, 5272, 5273, 5, 342, 0, 0, 5273, 5281, 3, 556, 278, 0, 5274, 5275, 5, 328, 0, 0, 5275, 5281, 3, 556, 278, 0, 5276, 5277, 5, 355, 0, 0, 5277, 5278, 5, 325, 0, 0, 5278, 5279, 7, 39, 0, 0, 5279, 5281, 3, 556, 278, 0, 5280, 5257, 1, 0, 0, 0, 5280, 5262, 1, 0, 0, 0, 5280, 5266, 1, 0, 0, 0, 5280, 5268, 1, 0, 0, 0, 5280, 5270, 1, 0, 0, 0, 5280, 5272, 1, 0, 0, 0, 5280, 5274, 1, 0, 0, 0, 5280, 5276, 1, 0, 0, 0, 5281, 545, 1, 0, 0, 0, 5282, 5283, 5, 131, 0, 0, 5283, 5284, 5, 446, 0, 0, 5284, 5314, 3, 1434, 717, 0, 5285, 5286, 5, 198, 0, 0, 5286, 5287, 5, 357, 0, 0, 5287, 5314, 3, 1434, 717, 0, 5288, 5289, 5, 204, 0, 0, 5289, 5314, 3, 1434, 717, 0, 5290, 5291, 5, 63, 0, 0, 5291, 5292, 5, 174, 0, 0, 5292, 5293, 5, 381, 0, 0, 5293, 5314, 3, 1434, 717, 0, 5294, 5296, 3, 336, 168, 0, 5295, 5294, 1, 0, 0, 0, 5295, 5296, 1, 0, 0, 0, 5296, 5297, 1, 0, 0, 0, 5297, 5298, 5, 247, 0, 0, 5298, 5314, 3, 1434, 717, 0, 5299, 5300, 5, 452, 0, 0, 5300, 5314, 3, 1434, 717, 0, 5301, 5302, 5, 323, 0, 0, 5302, 5314, 3, 1420, 710, 0, 5303, 5304, 5, 331, 0, 0, 5304, 5314, 3, 1434, 717, 0, 5305, 5306, 5, 175, 0, 0, 5306, 5314, 3, 1418, 709, 0, 5307, 5308, 5, 318, 0, 0, 5308, 5314, 3, 1434, 717, 0, 5309, 5310, 5, 451, 0, 0, 5310, 5314, 3, 1434, 717, 0, 5311, 5312, 5, 351, 0, 0, 5312, 5314, 3, 1400, 700, 0, 5313, 5282, 1, 0, 0, 0, 5313, 5285, 1, 0, 0, 0, 5313, 5288, 1, 0, 0, 0, 5313, 5290, 1, 0, 0, 0, 5313, 5295, 1, 0, 0, 0, 5313, 5299, 1, 0, 0, 0, 5313, 5301, 1, 0, 0, 0, 5313, 5303, 1, 0, 0, 0, 5313, 5305, 1, 0, 0, 0, 5313, 5307, 1, 0, 0, 0, 5313, 5309, 1, 0, 0, 0, 5313, 5311, 1, 0, 0, 0, 5314, 547, 1, 0, 0, 0, 5315, 5316, 7, 40, 0, 0, 5316, 549, 1, 0, 0, 0, 5317, 5322, 3, 556, 278, 0, 5318, 5319, 5, 6, 0, 0, 5319, 5321, 3, 556, 278, 0, 5320, 5318, 1, 0, 0, 0, 5321, 5324, 1, 0, 0, 0, 5322, 5320, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 551, 1, 0, 0, 0, 5324, 5322, 1, 0, 0, 0, 5325, 5326, 3, 554, 277, 0, 5326, 5327, 5, 11, 0, 0, 5327, 5328, 3, 1430, 715, 0, 5328, 553, 1, 0, 0, 0, 5329, 5331, 3, 1472, 736, 0, 5330, 5332, 3, 558, 279, 0, 5331, 5330, 1, 0, 0, 0, 5331, 5332, 1, 0, 0, 0, 5332, 555, 1, 0, 0, 0, 5333, 5335, 3, 1472, 736, 0, 5334, 5336, 3, 558, 279, 0, 5335, 5334, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 557, 1, 0, 0, 0, 5337, 5338, 5, 11, 0, 0, 5338, 5340, 3, 1436, 718, 0, 5339, 5337, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 559, 1, 0, 0, 0, 5343, 5348, 3, 1166, 583, 0, 5344, 5345, 5, 6, 0, 0, 5345, 5347, 3, 1166, 583, 0, 5346, 5344, 1, 0, 0, 0, 5347, 5350, 1, 0, 0, 0, 5348, 5346, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 561, 1, 0, 0, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5353, 5, 358, 0, 0, 5352, 5354, 5, 92, 0, 0, 5353, 5352, 1, 0, 0, 0, 5353, 5354, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5360, 3, 564, 282, 0, 5356, 5357, 5, 6, 0, 0, 5357, 5359, 3, 564, 282, 0, 5358, 5356, 1, 0, 0, 0, 5359, 5362, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5365, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5363, 5364, 7, 41, 0, 0, 5364, 5366, 5, 219, 0, 0, 5365, 5363, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 5368, 1, 0, 0, 0, 5367, 5369, 3, 124, 62, 0, 5368, 5367, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 563, 1, 0, 0, 0, 5370, 5372, 5, 81, 0, 0, 5371, 5370, 1, 0, 0, 0, 5371, 5372, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5375, 3, 1404, 702, 0, 5374, 5376, 5, 9, 0, 0, 5375, 5374, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 565, 1, 0, 0, 0, 5377, 5378, 5, 159, 0, 0, 5378, 5379, 5, 80, 0, 0, 5379, 5380, 3, 544, 272, 0, 5380, 5381, 5, 116, 0, 0, 5381, 5382, 3, 568, 284, 0, 5382, 5543, 1, 0, 0, 0, 5383, 5384, 5, 159, 0, 0, 5384, 5385, 5, 80, 0, 0, 5385, 5386, 5, 44, 0, 0, 5386, 5387, 3, 552, 276, 0, 5387, 5388, 5, 116, 0, 0, 5388, 5389, 3, 568, 284, 0, 5389, 5543, 1, 0, 0, 0, 5390, 5391, 5, 159, 0, 0, 5391, 5392, 5, 80, 0, 0, 5392, 5393, 3, 546, 273, 0, 5393, 5394, 5, 116, 0, 0, 5394, 5395, 3, 568, 284, 0, 5395, 5543, 1, 0, 0, 0, 5396, 5397, 5, 159, 0, 0, 5397, 5398, 5, 80, 0, 0, 5398, 5399, 5, 360, 0, 0, 5399, 5400, 3, 1166, 583, 0, 5400, 5401, 5, 116, 0, 0, 5401, 5402, 3, 568, 284, 0, 5402, 5543, 1, 0, 0, 0, 5403, 5404, 5, 159, 0, 0, 5404, 5405, 5, 80, 0, 0, 5405, 5406, 5, 189, 0, 0, 5406, 5407, 3, 1166, 583, 0, 5407, 5408, 5, 116, 0, 0, 5408, 5409, 3, 568, 284, 0, 5409, 5543, 1, 0, 0, 0, 5410, 5411, 5, 159, 0, 0, 5411, 5412, 5, 80, 0, 0, 5412, 5413, 5, 136, 0, 0, 5413, 5414, 3, 696, 348, 0, 5414, 5415, 5, 116, 0, 0, 5415, 5416, 3, 568, 284, 0, 5416, 5543, 1, 0, 0, 0, 5417, 5418, 5, 159, 0, 0, 5418, 5419, 5, 80, 0, 0, 5419, 5420, 5, 211, 0, 0, 5420, 5421, 3, 672, 336, 0, 5421, 5422, 5, 116, 0, 0, 5422, 5423, 3, 568, 284, 0, 5423, 5543, 1, 0, 0, 0, 5424, 5425, 5, 159, 0, 0, 5425, 5426, 5, 80, 0, 0, 5426, 5427, 5, 278, 0, 0, 5427, 5428, 3, 734, 367, 0, 5428, 5429, 5, 116, 0, 0, 5429, 5430, 3, 568, 284, 0, 5430, 5543, 1, 0, 0, 0, 5431, 5432, 5, 159, 0, 0, 5432, 5433, 5, 80, 0, 0, 5433, 5434, 5, 45, 0, 0, 5434, 5435, 3, 1434, 717, 0, 5435, 5436, 5, 80, 0, 0, 5436, 5437, 3, 1404, 702, 0, 5437, 5438, 5, 116, 0, 0, 5438, 5439, 3, 568, 284, 0, 5439, 5543, 1, 0, 0, 0, 5440, 5441, 5, 159, 0, 0, 5441, 5442, 5, 80, 0, 0, 5442, 5443, 5, 45, 0, 0, 5443, 5444, 3, 1434, 717, 0, 5444, 5446, 5, 80, 0, 0, 5445, 5447, 5, 189, 0, 0, 5446, 5445, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5448, 5449, 3, 556, 278, 0, 5449, 5450, 5, 116, 0, 0, 5450, 5451, 3, 568, 284, 0, 5451, 5543, 1, 0, 0, 0, 5452, 5453, 5, 159, 0, 0, 5453, 5454, 5, 80, 0, 0, 5454, 5455, 5, 445, 0, 0, 5455, 5456, 3, 1434, 717, 0, 5456, 5457, 5, 80, 0, 0, 5457, 5458, 3, 556, 278, 0, 5458, 5459, 5, 116, 0, 0, 5459, 5460, 3, 568, 284, 0, 5460, 5543, 1, 0, 0, 0, 5461, 5462, 5, 159, 0, 0, 5462, 5463, 5, 80, 0, 0, 5463, 5464, 5, 321, 0, 0, 5464, 5465, 3, 1434, 717, 0, 5465, 5466, 5, 80, 0, 0, 5466, 5467, 3, 556, 278, 0, 5467, 5468, 5, 116, 0, 0, 5468, 5469, 3, 568, 284, 0, 5469, 5543, 1, 0, 0, 0, 5470, 5471, 5, 159, 0, 0, 5471, 5472, 5, 80, 0, 0, 5472, 5473, 5, 357, 0, 0, 5473, 5474, 3, 1434, 717, 0, 5474, 5475, 5, 80, 0, 0, 5475, 5476, 3, 556, 278, 0, 5476, 5477, 5, 116, 0, 0, 5477, 5478, 3, 568, 284, 0, 5478, 5543, 1, 0, 0, 0, 5479, 5480, 5, 159, 0, 0, 5480, 5481, 5, 80, 0, 0, 5481, 5482, 5, 296, 0, 0, 5482, 5483, 3, 668, 334, 0, 5483, 5484, 5, 116, 0, 0, 5484, 5485, 3, 568, 284, 0, 5485, 5543, 1, 0, 0, 0, 5486, 5487, 5, 159, 0, 0, 5487, 5488, 5, 80, 0, 0, 5488, 5489, 5, 442, 0, 0, 5489, 5490, 3, 664, 332, 0, 5490, 5491, 5, 116, 0, 0, 5491, 5492, 3, 568, 284, 0, 5492, 5543, 1, 0, 0, 0, 5493, 5494, 5, 159, 0, 0, 5494, 5495, 5, 80, 0, 0, 5495, 5496, 5, 443, 0, 0, 5496, 5497, 5, 62, 0, 0, 5497, 5498, 3, 1166, 583, 0, 5498, 5499, 5, 247, 0, 0, 5499, 5500, 3, 1434, 717, 0, 5500, 5501, 5, 116, 0, 0, 5501, 5502, 3, 568, 284, 0, 5502, 5543, 1, 0, 0, 0, 5503, 5504, 5, 159, 0, 0, 5504, 5505, 5, 80, 0, 0, 5505, 5506, 5, 278, 0, 0, 5506, 5507, 5, 156, 0, 0, 5507, 5508, 3, 556, 278, 0, 5508, 5509, 5, 100, 0, 0, 5509, 5510, 3, 1434, 717, 0, 5510, 5511, 5, 116, 0, 0, 5511, 5512, 3, 568, 284, 0, 5512, 5543, 1, 0, 0, 0, 5513, 5514, 5, 159, 0, 0, 5514, 5515, 5, 80, 0, 0, 5515, 5516, 5, 278, 0, 0, 5516, 5517, 5, 206, 0, 0, 5517, 5518, 3, 556, 278, 0, 5518, 5519, 5, 100, 0, 0, 5519, 5520, 3, 1434, 717, 0, 5520, 5521, 5, 116, 0, 0, 5521, 5522, 3, 568, 284, 0, 5522, 5543, 1, 0, 0, 0, 5523, 5524, 5, 159, 0, 0, 5524, 5525, 5, 80, 0, 0, 5525, 5526, 5, 248, 0, 0, 5526, 5527, 5, 274, 0, 0, 5527, 5528, 3, 320, 160, 0, 5528, 5529, 5, 116, 0, 0, 5529, 5530, 3, 568, 284, 0, 5530, 5543, 1, 0, 0, 0, 5531, 5532, 5, 159, 0, 0, 5532, 5533, 5, 80, 0, 0, 5533, 5534, 5, 41, 0, 0, 5534, 5535, 5, 2, 0, 0, 5535, 5536, 3, 1166, 583, 0, 5536, 5537, 5, 36, 0, 0, 5537, 5538, 3, 1166, 583, 0, 5538, 5539, 5, 3, 0, 0, 5539, 5540, 5, 116, 0, 0, 5540, 5541, 3, 568, 284, 0, 5541, 5543, 1, 0, 0, 0, 5542, 5377, 1, 0, 0, 0, 5542, 5383, 1, 0, 0, 0, 5542, 5390, 1, 0, 0, 0, 5542, 5396, 1, 0, 0, 0, 5542, 5403, 1, 0, 0, 0, 5542, 5410, 1, 0, 0, 0, 5542, 5417, 1, 0, 0, 0, 5542, 5424, 1, 0, 0, 0, 5542, 5431, 1, 0, 0, 0, 5542, 5440, 1, 0, 0, 0, 5542, 5452, 1, 0, 0, 0, 5542, 5461, 1, 0, 0, 0, 5542, 5470, 1, 0, 0, 0, 5542, 5479, 1, 0, 0, 0, 5542, 5486, 1, 0, 0, 0, 5542, 5493, 1, 0, 0, 0, 5542, 5503, 1, 0, 0, 0, 5542, 5513, 1, 0, 0, 0, 5542, 5523, 1, 0, 0, 0, 5542, 5531, 1, 0, 0, 0, 5543, 567, 1, 0, 0, 0, 5544, 5547, 3, 1456, 728, 0, 5545, 5547, 5, 78, 0, 0, 5546, 5544, 1, 0, 0, 0, 5546, 5545, 1, 0, 0, 0, 5547, 569, 1, 0, 0, 0, 5548, 5549, 5, 327, 0, 0, 5549, 5551, 5, 246, 0, 0, 5550, 5552, 3, 572, 286, 0, 5551, 5550, 1, 0, 0, 0, 5551, 5552, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 5554, 5, 80, 0, 0, 5554, 5555, 5, 44, 0, 0, 5555, 5556, 3, 1430, 715, 0, 5556, 5557, 5, 116, 0, 0, 5557, 5558, 3, 574, 287, 0, 5558, 5658, 1, 0, 0, 0, 5559, 5560, 5, 327, 0, 0, 5560, 5562, 5, 246, 0, 0, 5561, 5563, 3, 572, 286, 0, 5562, 5561, 1, 0, 0, 0, 5562, 5563, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 5565, 5, 80, 0, 0, 5565, 5566, 5, 360, 0, 0, 5566, 5567, 3, 1166, 583, 0, 5567, 5568, 5, 116, 0, 0, 5568, 5569, 3, 574, 287, 0, 5569, 5658, 1, 0, 0, 0, 5570, 5571, 5, 327, 0, 0, 5571, 5573, 5, 246, 0, 0, 5572, 5574, 3, 572, 286, 0, 5573, 5572, 1, 0, 0, 0, 5573, 5574, 1, 0, 0, 0, 5574, 5575, 1, 0, 0, 0, 5575, 5576, 5, 80, 0, 0, 5576, 5577, 5, 189, 0, 0, 5577, 5578, 3, 1166, 583, 0, 5578, 5579, 5, 116, 0, 0, 5579, 5580, 3, 574, 287, 0, 5580, 5658, 1, 0, 0, 0, 5581, 5582, 5, 327, 0, 0, 5582, 5584, 5, 246, 0, 0, 5583, 5585, 3, 572, 286, 0, 5584, 5583, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5586, 1, 0, 0, 0, 5586, 5587, 5, 80, 0, 0, 5587, 5588, 5, 136, 0, 0, 5588, 5589, 3, 696, 348, 0, 5589, 5590, 5, 116, 0, 0, 5590, 5591, 3, 574, 287, 0, 5591, 5658, 1, 0, 0, 0, 5592, 5593, 5, 327, 0, 0, 5593, 5595, 5, 246, 0, 0, 5594, 5596, 3, 572, 286, 0, 5595, 5594, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 5, 80, 0, 0, 5598, 5599, 5, 211, 0, 0, 5599, 5600, 3, 672, 336, 0, 5600, 5601, 5, 116, 0, 0, 5601, 5602, 3, 574, 287, 0, 5602, 5658, 1, 0, 0, 0, 5603, 5604, 5, 327, 0, 0, 5604, 5606, 5, 246, 0, 0, 5605, 5607, 3, 572, 286, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 5, 80, 0, 0, 5609, 5610, 5, 248, 0, 0, 5610, 5611, 5, 274, 0, 0, 5611, 5612, 3, 320, 160, 0, 5612, 5613, 5, 116, 0, 0, 5613, 5614, 3, 574, 287, 0, 5614, 5658, 1, 0, 0, 0, 5615, 5616, 5, 327, 0, 0, 5616, 5618, 5, 246, 0, 0, 5617, 5619, 3, 572, 286, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5620, 1, 0, 0, 0, 5620, 5621, 5, 80, 0, 0, 5621, 5622, 5, 296, 0, 0, 5622, 5623, 3, 668, 334, 0, 5623, 5624, 5, 116, 0, 0, 5624, 5625, 3, 574, 287, 0, 5625, 5658, 1, 0, 0, 0, 5626, 5627, 5, 327, 0, 0, 5627, 5629, 5, 246, 0, 0, 5628, 5630, 3, 572, 286, 0, 5629, 5628, 1, 0, 0, 0, 5629, 5630, 1, 0, 0, 0, 5630, 5631, 1, 0, 0, 0, 5631, 5632, 5, 80, 0, 0, 5632, 5633, 5, 442, 0, 0, 5633, 5634, 3, 664, 332, 0, 5634, 5635, 5, 116, 0, 0, 5635, 5636, 3, 574, 287, 0, 5636, 5658, 1, 0, 0, 0, 5637, 5638, 5, 327, 0, 0, 5638, 5640, 5, 246, 0, 0, 5639, 5641, 3, 572, 286, 0, 5640, 5639, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5643, 5, 80, 0, 0, 5643, 5644, 3, 544, 272, 0, 5644, 5645, 5, 116, 0, 0, 5645, 5646, 3, 574, 287, 0, 5646, 5658, 1, 0, 0, 0, 5647, 5648, 5, 327, 0, 0, 5648, 5650, 5, 246, 0, 0, 5649, 5651, 3, 572, 286, 0, 5650, 5649, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5652, 1, 0, 0, 0, 5652, 5653, 5, 80, 0, 0, 5653, 5654, 3, 546, 273, 0, 5654, 5655, 5, 116, 0, 0, 5655, 5656, 3, 574, 287, 0, 5656, 5658, 1, 0, 0, 0, 5657, 5548, 1, 0, 0, 0, 5657, 5559, 1, 0, 0, 0, 5657, 5570, 1, 0, 0, 0, 5657, 5581, 1, 0, 0, 0, 5657, 5592, 1, 0, 0, 0, 5657, 5603, 1, 0, 0, 0, 5657, 5615, 1, 0, 0, 0, 5657, 5626, 1, 0, 0, 0, 5657, 5637, 1, 0, 0, 0, 5657, 5647, 1, 0, 0, 0, 5658, 571, 1, 0, 0, 0, 5659, 5660, 5, 62, 0, 0, 5660, 5661, 3, 80, 40, 0, 5661, 573, 1, 0, 0, 0, 5662, 5665, 3, 1456, 728, 0, 5663, 5665, 5, 78, 0, 0, 5664, 5662, 1, 0, 0, 0, 5664, 5663, 1, 0, 0, 0, 5665, 575, 1, 0, 0, 0, 5666, 5667, 5, 61, 0, 0, 5667, 5671, 3, 578, 289, 0, 5668, 5669, 5, 265, 0, 0, 5669, 5671, 3, 578, 289, 0, 5670, 5666, 1, 0, 0, 0, 5670, 5668, 1, 0, 0, 0, 5671, 577, 1, 0, 0, 0, 5672, 5758, 3, 992, 496, 0, 5673, 5674, 3, 580, 290, 0, 5674, 5675, 3, 992, 496, 0, 5675, 5758, 1, 0, 0, 0, 5676, 5678, 5, 268, 0, 0, 5677, 5679, 3, 582, 291, 0, 5678, 5677, 1, 0, 0, 0, 5678, 5679, 1, 0, 0, 0, 5679, 5680, 1, 0, 0, 0, 5680, 5758, 3, 992, 496, 0, 5681, 5683, 5, 293, 0, 0, 5682, 5684, 3, 582, 291, 0, 5683, 5682, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5758, 3, 992, 496, 0, 5686, 5688, 5, 207, 0, 0, 5687, 5689, 3, 582, 291, 0, 5688, 5687, 1, 0, 0, 0, 5688, 5689, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5758, 3, 992, 496, 0, 5691, 5693, 5, 249, 0, 0, 5692, 5694, 3, 582, 291, 0, 5693, 5692, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5695, 1, 0, 0, 0, 5695, 5758, 3, 992, 496, 0, 5696, 5697, 5, 130, 0, 0, 5697, 5699, 3, 1462, 731, 0, 5698, 5700, 3, 582, 291, 0, 5699, 5698, 1, 0, 0, 0, 5699, 5700, 1, 0, 0, 0, 5700, 5701, 1, 0, 0, 0, 5701, 5702, 3, 992, 496, 0, 5702, 5758, 1, 0, 0, 0, 5703, 5704, 5, 307, 0, 0, 5704, 5706, 3, 1462, 731, 0, 5705, 5707, 3, 582, 291, 0, 5706, 5705, 1, 0, 0, 0, 5706, 5707, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5709, 3, 992, 496, 0, 5709, 5758, 1, 0, 0, 0, 5710, 5712, 3, 1462, 731, 0, 5711, 5713, 3, 582, 291, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5714, 1, 0, 0, 0, 5714, 5715, 3, 992, 496, 0, 5715, 5758, 1, 0, 0, 0, 5716, 5718, 5, 30, 0, 0, 5717, 5719, 3, 582, 291, 0, 5718, 5717, 1, 0, 0, 0, 5718, 5719, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 5758, 3, 992, 496, 0, 5721, 5723, 5, 210, 0, 0, 5722, 5724, 3, 582, 291, 0, 5723, 5722, 1, 0, 0, 0, 5723, 5724, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5758, 3, 992, 496, 0, 5726, 5727, 5, 210, 0, 0, 5727, 5729, 3, 1462, 731, 0, 5728, 5730, 3, 582, 291, 0, 5729, 5728, 1, 0, 0, 0, 5729, 5730, 1, 0, 0, 0, 5730, 5731, 1, 0, 0, 0, 5731, 5732, 3, 992, 496, 0, 5732, 5758, 1, 0, 0, 0, 5733, 5734, 5, 210, 0, 0, 5734, 5736, 5, 30, 0, 0, 5735, 5737, 3, 582, 291, 0, 5736, 5735, 1, 0, 0, 0, 5736, 5737, 1, 0, 0, 0, 5737, 5738, 1, 0, 0, 0, 5738, 5758, 3, 992, 496, 0, 5739, 5741, 5, 144, 0, 0, 5740, 5742, 3, 582, 291, 0, 5741, 5740, 1, 0, 0, 0, 5741, 5742, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 5758, 3, 992, 496, 0, 5744, 5745, 5, 144, 0, 0, 5745, 5747, 3, 1462, 731, 0, 5746, 5748, 3, 582, 291, 0, 5747, 5746, 1, 0, 0, 0, 5747, 5748, 1, 0, 0, 0, 5748, 5749, 1, 0, 0, 0, 5749, 5750, 3, 992, 496, 0, 5750, 5758, 1, 0, 0, 0, 5751, 5752, 5, 144, 0, 0, 5752, 5754, 5, 30, 0, 0, 5753, 5755, 3, 582, 291, 0, 5754, 5753, 1, 0, 0, 0, 5754, 5755, 1, 0, 0, 0, 5755, 5756, 1, 0, 0, 0, 5756, 5758, 3, 992, 496, 0, 5757, 5672, 1, 0, 0, 0, 5757, 5673, 1, 0, 0, 0, 5757, 5676, 1, 0, 0, 0, 5757, 5681, 1, 0, 0, 0, 5757, 5686, 1, 0, 0, 0, 5757, 5691, 1, 0, 0, 0, 5757, 5696, 1, 0, 0, 0, 5757, 5703, 1, 0, 0, 0, 5757, 5710, 1, 0, 0, 0, 5757, 5716, 1, 0, 0, 0, 5757, 5721, 1, 0, 0, 0, 5757, 5726, 1, 0, 0, 0, 5757, 5733, 1, 0, 0, 0, 5757, 5739, 1, 0, 0, 0, 5757, 5744, 1, 0, 0, 0, 5757, 5751, 1, 0, 0, 0, 5758, 579, 1, 0, 0, 0, 5759, 5760, 7, 42, 0, 0, 5760, 581, 1, 0, 0, 0, 5761, 5762, 3, 580, 290, 0, 5762, 583, 1, 0, 0, 0, 5763, 5764, 5, 65, 0, 0, 5764, 5765, 3, 588, 294, 0, 5765, 5766, 5, 80, 0, 0, 5766, 5767, 3, 598, 299, 0, 5767, 5768, 5, 94, 0, 0, 5768, 5770, 3, 600, 300, 0, 5769, 5771, 3, 604, 302, 0, 5770, 5769, 1, 0, 0, 0, 5770, 5771, 1, 0, 0, 0, 5771, 585, 1, 0, 0, 0, 5772, 5773, 5, 317, 0, 0, 5773, 5774, 3, 588, 294, 0, 5774, 5775, 5, 80, 0, 0, 5775, 5776, 3, 598, 299, 0, 5776, 5777, 5, 64, 0, 0, 5777, 5779, 3, 600, 300, 0, 5778, 5780, 3, 124, 62, 0, 5779, 5778, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5794, 1, 0, 0, 0, 5781, 5782, 5, 317, 0, 0, 5782, 5783, 5, 65, 0, 0, 5783, 5784, 5, 279, 0, 0, 5784, 5785, 5, 62, 0, 0, 5785, 5786, 3, 588, 294, 0, 5786, 5787, 5, 80, 0, 0, 5787, 5788, 3, 598, 299, 0, 5788, 5789, 5, 64, 0, 0, 5789, 5791, 3, 600, 300, 0, 5790, 5792, 3, 124, 62, 0, 5791, 5790, 1, 0, 0, 0, 5791, 5792, 1, 0, 0, 0, 5792, 5794, 1, 0, 0, 0, 5793, 5772, 1, 0, 0, 0, 5793, 5781, 1, 0, 0, 0, 5794, 587, 1, 0, 0, 0, 5795, 5812, 3, 594, 297, 0, 5796, 5812, 5, 30, 0, 0, 5797, 5798, 5, 30, 0, 0, 5798, 5812, 5, 294, 0, 0, 5799, 5800, 5, 30, 0, 0, 5800, 5801, 5, 2, 0, 0, 5801, 5802, 3, 244, 122, 0, 5802, 5803, 5, 3, 0, 0, 5803, 5812, 1, 0, 0, 0, 5804, 5805, 5, 30, 0, 0, 5805, 5806, 5, 294, 0, 0, 5806, 5807, 5, 2, 0, 0, 5807, 5808, 3, 244, 122, 0, 5808, 5809, 5, 3, 0, 0, 5809, 5812, 1, 0, 0, 0, 5810, 5812, 3, 590, 295, 0, 5811, 5795, 1, 0, 0, 0, 5811, 5796, 1, 0, 0, 0, 5811, 5797, 1, 0, 0, 0, 5811, 5799, 1, 0, 0, 0, 5811, 5804, 1, 0, 0, 0, 5811, 5810, 1, 0, 0, 0, 5812, 589, 1, 0, 0, 0, 5813, 5818, 3, 592, 296, 0, 5814, 5815, 5, 6, 0, 0, 5815, 5817, 3, 592, 296, 0, 5816, 5814, 1, 0, 0, 0, 5817, 5820, 1, 0, 0, 0, 5818, 5816, 1, 0, 0, 0, 5818, 5819, 1, 0, 0, 0, 5819, 591, 1, 0, 0, 0, 5820, 5818, 1, 0, 0, 0, 5821, 5822, 7, 43, 0, 0, 5822, 593, 1, 0, 0, 0, 5823, 5828, 3, 596, 298, 0, 5824, 5825, 5, 6, 0, 0, 5825, 5827, 3, 596, 298, 0, 5826, 5824, 1, 0, 0, 0, 5827, 5830, 1, 0, 0, 0, 5828, 5826, 1, 0, 0, 0, 5828, 5829, 1, 0, 0, 0, 5829, 595, 1, 0, 0, 0, 5830, 5828, 1, 0, 0, 0, 5831, 5833, 5, 88, 0, 0, 5832, 5834, 3, 242, 121, 0, 5833, 5832, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5848, 1, 0, 0, 0, 5835, 5837, 5, 86, 0, 0, 5836, 5838, 3, 242, 121, 0, 5837, 5836, 1, 0, 0, 0, 5837, 5838, 1, 0, 0, 0, 5838, 5848, 1, 0, 0, 0, 5839, 5841, 5, 46, 0, 0, 5840, 5842, 3, 242, 121, 0, 5841, 5840, 1, 0, 0, 0, 5841, 5842, 1, 0, 0, 0, 5842, 5848, 1, 0, 0, 0, 5843, 5845, 3, 1472, 736, 0, 5844, 5846, 3, 242, 121, 0, 5845, 5844, 1, 0, 0, 0, 5845, 5846, 1, 0, 0, 0, 5846, 5848, 1, 0, 0, 0, 5847, 5831, 1, 0, 0, 0, 5847, 5835, 1, 0, 0, 0, 5847, 5839, 1, 0, 0, 0, 5847, 5843, 1, 0, 0, 0, 5848, 597, 1, 0, 0, 0, 5849, 5908, 3, 1388, 694, 0, 5850, 5851, 5, 92, 0, 0, 5851, 5908, 3, 1390, 695, 0, 5852, 5853, 5, 328, 0, 0, 5853, 5908, 3, 1388, 694, 0, 5854, 5855, 5, 63, 0, 0, 5855, 5856, 5, 174, 0, 0, 5856, 5857, 5, 381, 0, 0, 5857, 5908, 3, 1414, 707, 0, 5858, 5859, 5, 63, 0, 0, 5859, 5860, 5, 331, 0, 0, 5860, 5908, 3, 1414, 707, 0, 5861, 5862, 5, 211, 0, 0, 5862, 5908, 3, 670, 335, 0, 5863, 5864, 5, 296, 0, 0, 5864, 5908, 3, 666, 333, 0, 5865, 5866, 5, 442, 0, 0, 5866, 5908, 3, 662, 331, 0, 5867, 5868, 5, 175, 0, 0, 5868, 5908, 3, 1394, 697, 0, 5869, 5870, 5, 189, 0, 0, 5870, 5908, 3, 550, 275, 0, 5871, 5872, 5, 247, 0, 0, 5872, 5908, 3, 1414, 707, 0, 5873, 5874, 5, 248, 0, 0, 5874, 5875, 5, 274, 0, 0, 5875, 5908, 3, 322, 161, 0, 5876, 5877, 5, 323, 0, 0, 5877, 5908, 3, 1392, 696, 0, 5878, 5879, 5, 351, 0, 0, 5879, 5908, 3, 1412, 706, 0, 5880, 5881, 5, 360, 0, 0, 5881, 5908, 3, 550, 275, 0, 5882, 5883, 5, 30, 0, 0, 5883, 5884, 5, 350, 0, 0, 5884, 5885, 5, 68, 0, 0, 5885, 5886, 5, 323, 0, 0, 5886, 5908, 3, 1392, 696, 0, 5887, 5888, 5, 30, 0, 0, 5888, 5889, 5, 329, 0, 0, 5889, 5890, 5, 68, 0, 0, 5890, 5891, 5, 323, 0, 0, 5891, 5908, 3, 1392, 696, 0, 5892, 5893, 5, 30, 0, 0, 5893, 5894, 5, 212, 0, 0, 5894, 5895, 5, 68, 0, 0, 5895, 5896, 5, 323, 0, 0, 5896, 5908, 3, 1392, 696, 0, 5897, 5898, 5, 30, 0, 0, 5898, 5899, 5, 457, 0, 0, 5899, 5900, 5, 68, 0, 0, 5900, 5901, 5, 323, 0, 0, 5901, 5908, 3, 1392, 696, 0, 5902, 5903, 5, 30, 0, 0, 5903, 5904, 5, 455, 0, 0, 5904, 5905, 5, 68, 0, 0, 5905, 5906, 5, 323, 0, 0, 5906, 5908, 3, 1392, 696, 0, 5907, 5849, 1, 0, 0, 0, 5907, 5850, 1, 0, 0, 0, 5907, 5852, 1, 0, 0, 0, 5907, 5854, 1, 0, 0, 0, 5907, 5858, 1, 0, 0, 0, 5907, 5861, 1, 0, 0, 0, 5907, 5863, 1, 0, 0, 0, 5907, 5865, 1, 0, 0, 0, 5907, 5867, 1, 0, 0, 0, 5907, 5869, 1, 0, 0, 0, 5907, 5871, 1, 0, 0, 0, 5907, 5873, 1, 0, 0, 0, 5907, 5876, 1, 0, 0, 0, 5907, 5878, 1, 0, 0, 0, 5907, 5880, 1, 0, 0, 0, 5907, 5882, 1, 0, 0, 0, 5907, 5887, 1, 0, 0, 0, 5907, 5892, 1, 0, 0, 0, 5907, 5897, 1, 0, 0, 0, 5907, 5902, 1, 0, 0, 0, 5908, 599, 1, 0, 0, 0, 5909, 5914, 3, 602, 301, 0, 5910, 5911, 5, 6, 0, 0, 5911, 5913, 3, 602, 301, 0, 5912, 5910, 1, 0, 0, 0, 5913, 5916, 1, 0, 0, 0, 5914, 5912, 1, 0, 0, 0, 5914, 5915, 1, 0, 0, 0, 5915, 601, 1, 0, 0, 0, 5916, 5914, 1, 0, 0, 0, 5917, 5921, 3, 1468, 734, 0, 5918, 5919, 5, 66, 0, 0, 5919, 5921, 3, 1468, 734, 0, 5920, 5917, 1, 0, 0, 0, 5920, 5918, 1, 0, 0, 0, 5921, 603, 1, 0, 0, 0, 5922, 5923, 5, 105, 0, 0, 5923, 5924, 5, 65, 0, 0, 5924, 5925, 5, 279, 0, 0, 5925, 605, 1, 0, 0, 0, 5926, 5927, 5, 65, 0, 0, 5927, 5928, 3, 594, 297, 0, 5928, 5929, 5, 94, 0, 0, 5929, 5931, 3, 1470, 735, 0, 5930, 5932, 3, 610, 305, 0, 5931, 5930, 1, 0, 0, 0, 5931, 5932, 1, 0, 0, 0, 5932, 5934, 1, 0, 0, 0, 5933, 5935, 3, 612, 306, 0, 5934, 5933, 1, 0, 0, 0, 5934, 5935, 1, 0, 0, 0, 5935, 607, 1, 0, 0, 0, 5936, 5937, 5, 317, 0, 0, 5937, 5938, 3, 594, 297, 0, 5938, 5939, 5, 64, 0, 0, 5939, 5941, 3, 1470, 735, 0, 5940, 5942, 3, 612, 306, 0, 5941, 5940, 1, 0, 0, 0, 5941, 5942, 1, 0, 0, 0, 5942, 5944, 1, 0, 0, 0, 5943, 5945, 3, 124, 62, 0, 5944, 5943, 1, 0, 0, 0, 5944, 5945, 1, 0, 0, 0, 5945, 5960, 1, 0, 0, 0, 5946, 5947, 5, 317, 0, 0, 5947, 5948, 5, 134, 0, 0, 5948, 5949, 5, 279, 0, 0, 5949, 5950, 5, 62, 0, 0, 5950, 5951, 3, 594, 297, 0, 5951, 5952, 5, 64, 0, 0, 5952, 5954, 3, 1470, 735, 0, 5953, 5955, 3, 612, 306, 0, 5954, 5953, 1, 0, 0, 0, 5954, 5955, 1, 0, 0, 0, 5955, 5957, 1, 0, 0, 0, 5956, 5958, 3, 124, 62, 0, 5957, 5956, 1, 0, 0, 0, 5957, 5958, 1, 0, 0, 0, 5958, 5960, 1, 0, 0, 0, 5959, 5936, 1, 0, 0, 0, 5959, 5946, 1, 0, 0, 0, 5960, 609, 1, 0, 0, 0, 5961, 5962, 5, 105, 0, 0, 5962, 5963, 5, 134, 0, 0, 5963, 5964, 5, 279, 0, 0, 5964, 611, 1, 0, 0, 0, 5965, 5966, 5, 214, 0, 0, 5966, 5967, 5, 147, 0, 0, 5967, 5968, 3, 1468, 734, 0, 5968, 613, 1, 0, 0, 0, 5969, 5970, 5, 138, 0, 0, 5970, 5971, 5, 53, 0, 0, 5971, 5972, 5, 294, 0, 0, 5972, 5973, 3, 616, 308, 0, 5973, 5974, 3, 620, 310, 0, 5974, 615, 1, 0, 0, 0, 5975, 5977, 3, 618, 309, 0, 5976, 5975, 1, 0, 0, 0, 5977, 5980, 1, 0, 0, 0, 5978, 5976, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 617, 1, 0, 0, 0, 5980, 5978, 1, 0, 0, 0, 5981, 5982, 5, 68, 0, 0, 5982, 5983, 5, 323, 0, 0, 5983, 5991, 3, 1392, 696, 0, 5984, 5985, 5, 62, 0, 0, 5985, 5986, 5, 318, 0, 0, 5986, 5991, 3, 1470, 735, 0, 5987, 5988, 5, 62, 0, 0, 5988, 5989, 5, 99, 0, 0, 5989, 5991, 3, 1470, 735, 0, 5990, 5981, 1, 0, 0, 0, 5990, 5984, 1, 0, 0, 0, 5990, 5987, 1, 0, 0, 0, 5991, 619, 1, 0, 0, 0, 5992, 5993, 5, 65, 0, 0, 5993, 5994, 3, 588, 294, 0, 5994, 5995, 5, 80, 0, 0, 5995, 5996, 3, 622, 311, 0, 5996, 5997, 5, 94, 0, 0, 5997, 5999, 3, 600, 300, 0, 5998, 6000, 3, 604, 302, 0, 5999, 5998, 1, 0, 0, 0, 5999, 6000, 1, 0, 0, 0, 6000, 6023, 1, 0, 0, 0, 6001, 6002, 5, 317, 0, 0, 6002, 6003, 3, 588, 294, 0, 6003, 6004, 5, 80, 0, 0, 6004, 6005, 3, 622, 311, 0, 6005, 6006, 5, 64, 0, 0, 6006, 6008, 3, 600, 300, 0, 6007, 6009, 3, 124, 62, 0, 6008, 6007, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 6023, 1, 0, 0, 0, 6010, 6011, 5, 317, 0, 0, 6011, 6012, 5, 65, 0, 0, 6012, 6013, 5, 279, 0, 0, 6013, 6014, 5, 62, 0, 0, 6014, 6015, 3, 588, 294, 0, 6015, 6016, 5, 80, 0, 0, 6016, 6017, 3, 622, 311, 0, 6017, 6018, 5, 64, 0, 0, 6018, 6020, 3, 600, 300, 0, 6019, 6021, 3, 124, 62, 0, 6020, 6019, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6023, 1, 0, 0, 0, 6022, 5992, 1, 0, 0, 0, 6022, 6001, 1, 0, 0, 0, 6022, 6010, 1, 0, 0, 0, 6023, 621, 1, 0, 0, 0, 6024, 6025, 7, 44, 0, 0, 6025, 623, 1, 0, 0, 0, 6026, 6028, 5, 46, 0, 0, 6027, 6029, 3, 626, 313, 0, 6028, 6027, 1, 0, 0, 0, 6028, 6029, 1, 0, 0, 0, 6029, 6030, 1, 0, 0, 0, 6030, 6032, 5, 226, 0, 0, 6031, 6033, 3, 628, 314, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6035, 1, 0, 0, 0, 6034, 6036, 3, 514, 257, 0, 6035, 6034, 1, 0, 0, 0, 6035, 6036, 1, 0, 0, 0, 6036, 6038, 1, 0, 0, 0, 6037, 6039, 3, 630, 315, 0, 6038, 6037, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6040, 1, 0, 0, 0, 6040, 6041, 5, 80, 0, 0, 6041, 6043, 3, 1116, 558, 0, 6042, 6044, 3, 632, 316, 0, 6043, 6042, 1, 0, 0, 0, 6043, 6044, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6046, 5, 2, 0, 0, 6046, 6047, 3, 634, 317, 0, 6047, 6049, 5, 3, 0, 0, 6048, 6050, 3, 640, 320, 0, 6049, 6048, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6052, 1, 0, 0, 0, 6051, 6053, 3, 222, 111, 0, 6052, 6051, 1, 0, 0, 0, 6052, 6053, 1, 0, 0, 0, 6053, 6055, 1, 0, 0, 0, 6054, 6056, 3, 134, 67, 0, 6055, 6054, 1, 0, 0, 0, 6055, 6056, 1, 0, 0, 0, 6056, 6058, 1, 0, 0, 0, 6057, 6059, 3, 280, 140, 0, 6058, 6057, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6061, 1, 0, 0, 0, 6060, 6062, 3, 1142, 571, 0, 6061, 6060, 1, 0, 0, 0, 6061, 6062, 1, 0, 0, 0, 6062, 625, 1, 0, 0, 0, 6063, 6064, 5, 98, 0, 0, 6064, 627, 1, 0, 0, 0, 6065, 6066, 5, 109, 0, 0, 6066, 629, 1, 0, 0, 0, 6067, 6068, 3, 1434, 717, 0, 6068, 631, 1, 0, 0, 0, 6069, 6070, 5, 100, 0, 0, 6070, 6071, 3, 1434, 717, 0, 6071, 633, 1, 0, 0, 0, 6072, 6077, 3, 638, 319, 0, 6073, 6074, 5, 6, 0, 0, 6074, 6076, 3, 638, 319, 0, 6075, 6073, 1, 0, 0, 0, 6076, 6079, 1, 0, 0, 0, 6077, 6075, 1, 0, 0, 0, 6077, 6078, 1, 0, 0, 0, 6078, 635, 1, 0, 0, 0, 6079, 6077, 1, 0, 0, 0, 6080, 6082, 3, 644, 322, 0, 6081, 6080, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, 6084, 1, 0, 0, 0, 6083, 6085, 3, 646, 323, 0, 6084, 6083, 1, 0, 0, 0, 6084, 6085, 1, 0, 0, 0, 6085, 6087, 1, 0, 0, 0, 6086, 6088, 3, 648, 324, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 6090, 1, 0, 0, 0, 6089, 6091, 3, 650, 325, 0, 6090, 6089, 1, 0, 0, 0, 6090, 6091, 1, 0, 0, 0, 6091, 6104, 1, 0, 0, 0, 6092, 6094, 3, 644, 322, 0, 6093, 6092, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6095, 1, 0, 0, 0, 6095, 6096, 3, 556, 278, 0, 6096, 6098, 3, 132, 66, 0, 6097, 6099, 3, 648, 324, 0, 6098, 6097, 1, 0, 0, 0, 6098, 6099, 1, 0, 0, 0, 6099, 6101, 1, 0, 0, 0, 6100, 6102, 3, 650, 325, 0, 6101, 6100, 1, 0, 0, 0, 6101, 6102, 1, 0, 0, 0, 6102, 6104, 1, 0, 0, 0, 6103, 6081, 1, 0, 0, 0, 6103, 6093, 1, 0, 0, 0, 6104, 637, 1, 0, 0, 0, 6105, 6106, 3, 1430, 715, 0, 6106, 6107, 3, 636, 318, 0, 6107, 6117, 1, 0, 0, 0, 6108, 6109, 3, 1260, 630, 0, 6109, 6110, 3, 636, 318, 0, 6110, 6117, 1, 0, 0, 0, 6111, 6112, 5, 2, 0, 0, 6112, 6113, 3, 1210, 605, 0, 6113, 6114, 5, 3, 0, 0, 6114, 6115, 3, 636, 318, 0, 6115, 6117, 1, 0, 0, 0, 6116, 6105, 1, 0, 0, 0, 6116, 6108, 1, 0, 0, 0, 6116, 6111, 1, 0, 0, 0, 6117, 639, 1, 0, 0, 0, 6118, 6119, 5, 441, 0, 0, 6119, 6120, 5, 2, 0, 0, 6120, 6121, 3, 642, 321, 0, 6121, 6122, 5, 3, 0, 0, 6122, 641, 1, 0, 0, 0, 6123, 6128, 3, 638, 319, 0, 6124, 6125, 5, 6, 0, 0, 6125, 6127, 3, 638, 319, 0, 6126, 6124, 1, 0, 0, 0, 6127, 6130, 1, 0, 0, 0, 6128, 6126, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, 643, 1, 0, 0, 0, 6130, 6128, 1, 0, 0, 0, 6131, 6132, 5, 43, 0, 0, 6132, 6133, 3, 556, 278, 0, 6133, 645, 1, 0, 0, 0, 6134, 6135, 3, 556, 278, 0, 6135, 647, 1, 0, 0, 0, 6136, 6137, 7, 45, 0, 0, 6137, 649, 1, 0, 0, 0, 6138, 6139, 5, 273, 0, 0, 6139, 6143, 5, 207, 0, 0, 6140, 6141, 5, 273, 0, 0, 6141, 6143, 5, 249, 0, 0, 6142, 6138, 1, 0, 0, 0, 6142, 6140, 1, 0, 0, 0, 6143, 651, 1, 0, 0, 0, 6144, 6146, 5, 46, 0, 0, 6145, 6147, 3, 656, 328, 0, 6146, 6145, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6152, 1, 0, 0, 0, 6148, 6149, 5, 211, 0, 0, 6149, 6153, 3, 1440, 720, 0, 6150, 6151, 5, 296, 0, 0, 6151, 6153, 3, 1428, 714, 0, 6152, 6148, 1, 0, 0, 0, 6152, 6150, 1, 0, 0, 0, 6153, 6154, 1, 0, 0, 0, 6154, 6164, 3, 674, 337, 0, 6155, 6162, 5, 316, 0, 0, 6156, 6163, 3, 684, 342, 0, 6157, 6158, 5, 92, 0, 0, 6158, 6159, 5, 2, 0, 0, 6159, 6160, 3, 712, 356, 0, 6160, 6161, 5, 3, 0, 0, 6161, 6163, 1, 0, 0, 0, 6162, 6156, 1, 0, 0, 0, 6162, 6157, 1, 0, 0, 0, 6163, 6165, 1, 0, 0, 0, 6164, 6155, 1, 0, 0, 0, 6164, 6165, 1, 0, 0, 0, 6165, 6166, 1, 0, 0, 0, 6166, 6169, 3, 700, 350, 0, 6167, 6168, 5, 105, 0, 0, 6168, 6170, 3, 654, 327, 0, 6169, 6167, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 653, 1, 0, 0, 0, 6171, 6172, 5, 2, 0, 0, 6172, 6177, 3, 1472, 736, 0, 6173, 6174, 5, 6, 0, 0, 6174, 6176, 3, 1472, 736, 0, 6175, 6173, 1, 0, 0, 0, 6176, 6179, 1, 0, 0, 0, 6177, 6175, 1, 0, 0, 0, 6177, 6178, 1, 0, 0, 0, 6178, 6180, 1, 0, 0, 0, 6179, 6177, 1, 0, 0, 0, 6180, 6181, 5, 3, 0, 0, 6181, 655, 1, 0, 0, 0, 6182, 6183, 5, 82, 0, 0, 6183, 6184, 5, 311, 0, 0, 6184, 657, 1, 0, 0, 0, 6185, 6187, 5, 2, 0, 0, 6186, 6188, 3, 660, 330, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6190, 5, 3, 0, 0, 6190, 659, 1, 0, 0, 0, 6191, 6196, 3, 678, 339, 0, 6192, 6193, 5, 6, 0, 0, 6193, 6195, 3, 678, 339, 0, 6194, 6192, 1, 0, 0, 0, 6195, 6198, 1, 0, 0, 0, 6196, 6194, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 661, 1, 0, 0, 0, 6198, 6196, 1, 0, 0, 0, 6199, 6204, 3, 664, 332, 0, 6200, 6201, 5, 6, 0, 0, 6201, 6203, 3, 664, 332, 0, 6202, 6200, 1, 0, 0, 0, 6203, 6206, 1, 0, 0, 0, 6204, 6202, 1, 0, 0, 0, 6204, 6205, 1, 0, 0, 0, 6205, 663, 1, 0, 0, 0, 6206, 6204, 1, 0, 0, 0, 6207, 6208, 3, 1424, 712, 0, 6208, 6209, 3, 658, 329, 0, 6209, 6216, 1, 0, 0, 0, 6210, 6216, 3, 1498, 749, 0, 6211, 6213, 3, 1472, 736, 0, 6212, 6214, 3, 1378, 689, 0, 6213, 6212, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 6216, 1, 0, 0, 0, 6215, 6207, 1, 0, 0, 0, 6215, 6210, 1, 0, 0, 0, 6215, 6211, 1, 0, 0, 0, 6216, 665, 1, 0, 0, 0, 6217, 6222, 3, 668, 334, 0, 6218, 6219, 5, 6, 0, 0, 6219, 6221, 3, 668, 334, 0, 6220, 6218, 1, 0, 0, 0, 6221, 6224, 1, 0, 0, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6223, 1, 0, 0, 0, 6223, 667, 1, 0, 0, 0, 6224, 6222, 1, 0, 0, 0, 6225, 6226, 3, 1426, 713, 0, 6226, 6227, 3, 658, 329, 0, 6227, 6234, 1, 0, 0, 0, 6228, 6234, 3, 1498, 749, 0, 6229, 6231, 3, 1472, 736, 0, 6230, 6232, 3, 1378, 689, 0, 6231, 6230, 1, 0, 0, 0, 6231, 6232, 1, 0, 0, 0, 6232, 6234, 1, 0, 0, 0, 6233, 6225, 1, 0, 0, 0, 6233, 6228, 1, 0, 0, 0, 6233, 6229, 1, 0, 0, 0, 6234, 669, 1, 0, 0, 0, 6235, 6240, 3, 672, 336, 0, 6236, 6237, 5, 6, 0, 0, 6237, 6239, 3, 672, 336, 0, 6238, 6236, 1, 0, 0, 0, 6239, 6242, 1, 0, 0, 0, 6240, 6238, 1, 0, 0, 0, 6240, 6241, 1, 0, 0, 0, 6241, 671, 1, 0, 0, 0, 6242, 6240, 1, 0, 0, 0, 6243, 6244, 3, 1442, 721, 0, 6244, 6245, 3, 658, 329, 0, 6245, 6252, 1, 0, 0, 0, 6246, 6252, 3, 1498, 749, 0, 6247, 6249, 3, 1472, 736, 0, 6248, 6250, 3, 1378, 689, 0, 6249, 6248, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6252, 1, 0, 0, 0, 6251, 6243, 1, 0, 0, 0, 6251, 6246, 1, 0, 0, 0, 6251, 6247, 1, 0, 0, 0, 6252, 673, 1, 0, 0, 0, 6253, 6255, 5, 2, 0, 0, 6254, 6256, 3, 676, 338, 0, 6255, 6254, 1, 0, 0, 0, 6255, 6256, 1, 0, 0, 0, 6256, 6257, 1, 0, 0, 0, 6257, 6258, 5, 3, 0, 0, 6258, 675, 1, 0, 0, 0, 6259, 6264, 3, 688, 344, 0, 6260, 6261, 5, 6, 0, 0, 6261, 6263, 3, 688, 344, 0, 6262, 6260, 1, 0, 0, 0, 6263, 6266, 1, 0, 0, 0, 6264, 6262, 1, 0, 0, 0, 6264, 6265, 1, 0, 0, 0, 6265, 677, 1, 0, 0, 0, 6266, 6264, 1, 0, 0, 0, 6267, 6269, 3, 680, 340, 0, 6268, 6270, 3, 682, 341, 0, 6269, 6268, 1, 0, 0, 0, 6269, 6270, 1, 0, 0, 0, 6270, 6271, 1, 0, 0, 0, 6271, 6272, 3, 686, 343, 0, 6272, 6281, 1, 0, 0, 0, 6273, 6275, 3, 682, 341, 0, 6274, 6276, 3, 680, 340, 0, 6275, 6274, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6277, 1, 0, 0, 0, 6277, 6278, 3, 686, 343, 0, 6278, 6281, 1, 0, 0, 0, 6279, 6281, 3, 686, 343, 0, 6280, 6267, 1, 0, 0, 0, 6280, 6273, 1, 0, 0, 0, 6280, 6279, 1, 0, 0, 0, 6281, 679, 1, 0, 0, 0, 6282, 6284, 5, 68, 0, 0, 6283, 6285, 5, 453, 0, 0, 6284, 6283, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6290, 1, 0, 0, 0, 6286, 6290, 5, 453, 0, 0, 6287, 6290, 5, 400, 0, 0, 6288, 6290, 5, 101, 0, 0, 6289, 6282, 1, 0, 0, 0, 6289, 6286, 1, 0, 0, 0, 6289, 6287, 1, 0, 0, 0, 6289, 6288, 1, 0, 0, 0, 6290, 681, 1, 0, 0, 0, 6291, 6292, 3, 1480, 740, 0, 6292, 683, 1, 0, 0, 0, 6293, 6294, 3, 686, 343, 0, 6294, 685, 1, 0, 0, 0, 6295, 6308, 3, 1166, 583, 0, 6296, 6297, 3, 1480, 740, 0, 6297, 6298, 3, 558, 279, 0, 6298, 6299, 5, 27, 0, 0, 6299, 6300, 5, 360, 0, 0, 6300, 6308, 1, 0, 0, 0, 6301, 6302, 5, 415, 0, 0, 6302, 6303, 3, 1480, 740, 0, 6303, 6304, 3, 558, 279, 0, 6304, 6305, 5, 27, 0, 0, 6305, 6306, 5, 360, 0, 0, 6306, 6308, 1, 0, 0, 0, 6307, 6295, 1, 0, 0, 0, 6307, 6296, 1, 0, 0, 0, 6307, 6301, 1, 0, 0, 0, 6308, 687, 1, 0, 0, 0, 6309, 6312, 3, 678, 339, 0, 6310, 6311, 7, 46, 0, 0, 6311, 6313, 3, 1210, 605, 0, 6312, 6310, 1, 0, 0, 0, 6312, 6313, 1, 0, 0, 0, 6313, 689, 1, 0, 0, 0, 6314, 6315, 3, 678, 339, 0, 6315, 691, 1, 0, 0, 0, 6316, 6327, 5, 2, 0, 0, 6317, 6328, 5, 9, 0, 0, 6318, 6328, 3, 694, 347, 0, 6319, 6320, 5, 83, 0, 0, 6320, 6321, 5, 147, 0, 0, 6321, 6328, 3, 694, 347, 0, 6322, 6323, 3, 694, 347, 0, 6323, 6324, 5, 83, 0, 0, 6324, 6325, 5, 147, 0, 0, 6325, 6326, 3, 694, 347, 0, 6326, 6328, 1, 0, 0, 0, 6327, 6317, 1, 0, 0, 0, 6327, 6318, 1, 0, 0, 0, 6327, 6319, 1, 0, 0, 0, 6327, 6322, 1, 0, 0, 0, 6328, 6329, 1, 0, 0, 0, 6329, 6330, 5, 3, 0, 0, 6330, 693, 1, 0, 0, 0, 6331, 6336, 3, 690, 345, 0, 6332, 6333, 5, 6, 0, 0, 6333, 6335, 3, 690, 345, 0, 6334, 6332, 1, 0, 0, 0, 6335, 6338, 1, 0, 0, 0, 6336, 6334, 1, 0, 0, 0, 6336, 6337, 1, 0, 0, 0, 6337, 695, 1, 0, 0, 0, 6338, 6336, 1, 0, 0, 0, 6339, 6340, 3, 1442, 721, 0, 6340, 6341, 3, 692, 346, 0, 6341, 697, 1, 0, 0, 0, 6342, 6347, 3, 696, 348, 0, 6343, 6344, 5, 6, 0, 0, 6344, 6346, 3, 696, 348, 0, 6345, 6343, 1, 0, 0, 0, 6346, 6349, 1, 0, 0, 0, 6347, 6345, 1, 0, 0, 0, 6347, 6348, 1, 0, 0, 0, 6348, 699, 1, 0, 0, 0, 6349, 6347, 1, 0, 0, 0, 6350, 6352, 3, 704, 352, 0, 6351, 6350, 1, 0, 0, 0, 6352, 6353, 1, 0, 0, 0, 6353, 6351, 1, 0, 0, 0, 6353, 6354, 1, 0, 0, 0, 6354, 701, 1, 0, 0, 0, 6355, 6356, 5, 149, 0, 0, 6356, 6357, 5, 80, 0, 0, 6357, 6358, 5, 78, 0, 0, 6358, 6391, 5, 458, 0, 0, 6359, 6360, 5, 316, 0, 0, 6360, 6361, 5, 78, 0, 0, 6361, 6362, 5, 80, 0, 0, 6362, 6363, 5, 78, 0, 0, 6363, 6391, 5, 458, 0, 0, 6364, 6391, 5, 346, 0, 0, 6365, 6391, 5, 222, 0, 0, 6366, 6391, 5, 338, 0, 0, 6367, 6391, 5, 377, 0, 0, 6368, 6369, 5, 205, 0, 0, 6369, 6370, 5, 327, 0, 0, 6370, 6391, 5, 181, 0, 0, 6371, 6372, 5, 205, 0, 0, 6372, 6373, 5, 327, 0, 0, 6373, 6391, 5, 243, 0, 0, 6374, 6375, 5, 327, 0, 0, 6375, 6391, 5, 181, 0, 0, 6376, 6377, 5, 327, 0, 0, 6377, 6391, 5, 243, 0, 0, 6378, 6391, 5, 250, 0, 0, 6379, 6380, 5, 77, 0, 0, 6380, 6391, 5, 250, 0, 0, 6381, 6382, 5, 170, 0, 0, 6382, 6391, 3, 320, 160, 0, 6383, 6384, 5, 320, 0, 0, 6384, 6391, 3, 320, 160, 0, 6385, 6386, 5, 459, 0, 0, 6386, 6391, 3, 556, 278, 0, 6387, 6391, 3, 90, 45, 0, 6388, 6389, 5, 460, 0, 0, 6389, 6391, 3, 1472, 736, 0, 6390, 6355, 1, 0, 0, 0, 6390, 6359, 1, 0, 0, 0, 6390, 6364, 1, 0, 0, 0, 6390, 6365, 1, 0, 0, 0, 6390, 6366, 1, 0, 0, 0, 6390, 6367, 1, 0, 0, 0, 6390, 6368, 1, 0, 0, 0, 6390, 6371, 1, 0, 0, 0, 6390, 6374, 1, 0, 0, 0, 6390, 6376, 1, 0, 0, 0, 6390, 6378, 1, 0, 0, 0, 6390, 6379, 1, 0, 0, 0, 6390, 6381, 1, 0, 0, 0, 6390, 6383, 1, 0, 0, 0, 6390, 6385, 1, 0, 0, 0, 6390, 6387, 1, 0, 0, 0, 6390, 6388, 1, 0, 0, 0, 6391, 703, 1, 0, 0, 0, 6392, 6393, 5, 36, 0, 0, 6393, 6394, 3, 1456, 728, 0, 6394, 6395, 5, 6, 0, 0, 6395, 6396, 3, 1456, 728, 0, 6396, 6418, 1, 0, 0, 0, 6397, 6398, 5, 247, 0, 0, 6398, 6418, 3, 80, 40, 0, 6399, 6400, 5, 443, 0, 0, 6400, 6418, 3, 706, 353, 0, 6401, 6418, 5, 104, 0, 0, 6402, 6403, 5, 333, 0, 0, 6403, 6410, 3, 1472, 736, 0, 6404, 6405, 5, 94, 0, 0, 6405, 6411, 3, 1472, 736, 0, 6406, 6407, 5, 10, 0, 0, 6407, 6411, 3, 1472, 736, 0, 6408, 6409, 5, 64, 0, 0, 6409, 6411, 5, 434, 0, 0, 6410, 6404, 1, 0, 0, 0, 6410, 6406, 1, 0, 0, 0, 6410, 6408, 1, 0, 0, 0, 6411, 6418, 1, 0, 0, 0, 6412, 6413, 5, 36, 0, 0, 6413, 6418, 3, 1472, 736, 0, 6414, 6418, 3, 6, 3, 0, 6415, 6418, 3, 702, 351, 0, 6416, 6418, 3, 1472, 736, 0, 6417, 6392, 1, 0, 0, 0, 6417, 6397, 1, 0, 0, 0, 6417, 6399, 1, 0, 0, 0, 6417, 6401, 1, 0, 0, 0, 6417, 6402, 1, 0, 0, 0, 6417, 6412, 1, 0, 0, 0, 6417, 6414, 1, 0, 0, 0, 6417, 6415, 1, 0, 0, 0, 6417, 6416, 1, 0, 0, 0, 6418, 705, 1, 0, 0, 0, 6419, 6420, 5, 62, 0, 0, 6420, 6421, 5, 360, 0, 0, 6421, 6428, 3, 1166, 583, 0, 6422, 6423, 5, 6, 0, 0, 6423, 6424, 5, 62, 0, 0, 6424, 6425, 5, 360, 0, 0, 6425, 6427, 3, 1166, 583, 0, 6426, 6422, 1, 0, 0, 0, 6427, 6430, 1, 0, 0, 0, 6428, 6426, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 707, 1, 0, 0, 0, 6430, 6428, 1, 0, 0, 0, 6431, 6432, 5, 105, 0, 0, 6432, 6433, 3, 494, 247, 0, 6433, 709, 1, 0, 0, 0, 6434, 6435, 3, 1430, 715, 0, 6435, 6436, 3, 686, 343, 0, 6436, 711, 1, 0, 0, 0, 6437, 6442, 3, 710, 355, 0, 6438, 6439, 5, 6, 0, 0, 6439, 6441, 3, 710, 355, 0, 6440, 6438, 1, 0, 0, 0, 6441, 6444, 1, 0, 0, 0, 6442, 6440, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 713, 1, 0, 0, 0, 6444, 6442, 1, 0, 0, 0, 6445, 6446, 5, 138, 0, 0, 6446, 6447, 3, 716, 358, 0, 6447, 6449, 3, 718, 359, 0, 6448, 6450, 3, 720, 360, 0, 6449, 6448, 1, 0, 0, 0, 6449, 6450, 1, 0, 0, 0, 6450, 715, 1, 0, 0, 0, 6451, 6452, 5, 211, 0, 0, 6452, 6458, 3, 672, 336, 0, 6453, 6454, 5, 296, 0, 0, 6454, 6458, 3, 668, 334, 0, 6455, 6456, 5, 442, 0, 0, 6456, 6458, 3, 664, 332, 0, 6457, 6451, 1, 0, 0, 0, 6457, 6453, 1, 0, 0, 0, 6457, 6455, 1, 0, 0, 0, 6458, 717, 1, 0, 0, 0, 6459, 6461, 3, 702, 351, 0, 6460, 6459, 1, 0, 0, 0, 6461, 6462, 1, 0, 0, 0, 6462, 6460, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 719, 1, 0, 0, 0, 6464, 6465, 5, 315, 0, 0, 6465, 721, 1, 0, 0, 0, 6466, 6467, 5, 191, 0, 0, 6467, 6469, 5, 211, 0, 0, 6468, 6470, 3, 746, 373, 0, 6469, 6468, 1, 0, 0, 0, 6469, 6470, 1, 0, 0, 0, 6470, 6471, 1, 0, 0, 0, 6471, 6473, 3, 670, 335, 0, 6472, 6474, 3, 124, 62, 0, 6473, 6472, 1, 0, 0, 0, 6473, 6474, 1, 0, 0, 0, 6474, 6494, 1, 0, 0, 0, 6475, 6476, 5, 191, 0, 0, 6476, 6478, 5, 296, 0, 0, 6477, 6479, 3, 746, 373, 0, 6478, 6477, 1, 0, 0, 0, 6478, 6479, 1, 0, 0, 0, 6479, 6480, 1, 0, 0, 0, 6480, 6482, 3, 666, 333, 0, 6481, 6483, 3, 124, 62, 0, 6482, 6481, 1, 0, 0, 0, 6482, 6483, 1, 0, 0, 0, 6483, 6494, 1, 0, 0, 0, 6484, 6485, 5, 191, 0, 0, 6485, 6487, 5, 442, 0, 0, 6486, 6488, 3, 746, 373, 0, 6487, 6486, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6489, 1, 0, 0, 0, 6489, 6491, 3, 662, 331, 0, 6490, 6492, 3, 124, 62, 0, 6491, 6490, 1, 0, 0, 0, 6491, 6492, 1, 0, 0, 0, 6492, 6494, 1, 0, 0, 0, 6493, 6466, 1, 0, 0, 0, 6493, 6475, 1, 0, 0, 0, 6493, 6484, 1, 0, 0, 0, 6494, 723, 1, 0, 0, 0, 6495, 6496, 5, 191, 0, 0, 6496, 6498, 5, 136, 0, 0, 6497, 6499, 3, 746, 373, 0, 6498, 6497, 1, 0, 0, 0, 6498, 6499, 1, 0, 0, 0, 6499, 6500, 1, 0, 0, 0, 6500, 6502, 3, 698, 349, 0, 6501, 6503, 3, 124, 62, 0, 6502, 6501, 1, 0, 0, 0, 6502, 6503, 1, 0, 0, 0, 6503, 725, 1, 0, 0, 0, 6504, 6505, 5, 191, 0, 0, 6505, 6507, 5, 278, 0, 0, 6506, 6508, 3, 746, 373, 0, 6507, 6506, 1, 0, 0, 0, 6507, 6508, 1, 0, 0, 0, 6508, 6509, 1, 0, 0, 0, 6509, 6511, 3, 732, 366, 0, 6510, 6512, 3, 124, 62, 0, 6511, 6510, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 727, 1, 0, 0, 0, 6513, 6514, 5, 2, 0, 0, 6514, 6515, 3, 1166, 583, 0, 6515, 6516, 5, 3, 0, 0, 6516, 6536, 1, 0, 0, 0, 6517, 6518, 5, 2, 0, 0, 6518, 6519, 3, 1166, 583, 0, 6519, 6520, 5, 6, 0, 0, 6520, 6521, 3, 1166, 583, 0, 6521, 6522, 5, 3, 0, 0, 6522, 6536, 1, 0, 0, 0, 6523, 6524, 5, 2, 0, 0, 6524, 6525, 5, 407, 0, 0, 6525, 6526, 5, 6, 0, 0, 6526, 6527, 3, 1166, 583, 0, 6527, 6528, 5, 3, 0, 0, 6528, 6536, 1, 0, 0, 0, 6529, 6530, 5, 2, 0, 0, 6530, 6531, 3, 1166, 583, 0, 6531, 6532, 5, 6, 0, 0, 6532, 6533, 5, 407, 0, 0, 6533, 6534, 5, 3, 0, 0, 6534, 6536, 1, 0, 0, 0, 6535, 6513, 1, 0, 0, 0, 6535, 6517, 1, 0, 0, 0, 6535, 6523, 1, 0, 0, 0, 6535, 6529, 1, 0, 0, 0, 6536, 729, 1, 0, 0, 0, 6537, 6538, 3, 1472, 736, 0, 6538, 6539, 5, 11, 0, 0, 6539, 6541, 1, 0, 0, 0, 6540, 6537, 1, 0, 0, 0, 6541, 6544, 1, 0, 0, 0, 6542, 6540, 1, 0, 0, 0, 6542, 6543, 1, 0, 0, 0, 6543, 6545, 1, 0, 0, 0, 6544, 6542, 1, 0, 0, 0, 6545, 6546, 3, 1316, 658, 0, 6546, 731, 1, 0, 0, 0, 6547, 6552, 3, 734, 367, 0, 6548, 6549, 5, 6, 0, 0, 6549, 6551, 3, 734, 367, 0, 6550, 6548, 1, 0, 0, 0, 6551, 6554, 1, 0, 0, 0, 6552, 6550, 1, 0, 0, 0, 6552, 6553, 1, 0, 0, 0, 6553, 733, 1, 0, 0, 0, 6554, 6552, 1, 0, 0, 0, 6555, 6556, 3, 730, 365, 0, 6556, 6557, 3, 728, 364, 0, 6557, 735, 1, 0, 0, 0, 6558, 6559, 5, 57, 0, 0, 6559, 6560, 3, 738, 369, 0, 6560, 737, 1, 0, 0, 0, 6561, 6563, 3, 740, 370, 0, 6562, 6561, 1, 0, 0, 0, 6563, 6564, 1, 0, 0, 0, 6564, 6562, 1, 0, 0, 0, 6564, 6565, 1, 0, 0, 0, 6565, 739, 1, 0, 0, 0, 6566, 6570, 3, 1456, 728, 0, 6567, 6568, 5, 247, 0, 0, 6568, 6570, 3, 80, 40, 0, 6569, 6566, 1, 0, 0, 0, 6569, 6567, 1, 0, 0, 0, 6570, 741, 1, 0, 0, 0, 6571, 6572, 5, 46, 0, 0, 6572, 6573, 5, 41, 0, 0, 6573, 6574, 5, 2, 0, 0, 6574, 6575, 3, 1166, 583, 0, 6575, 6576, 5, 36, 0, 0, 6576, 6577, 3, 1166, 583, 0, 6577, 6578, 5, 3, 0, 0, 6578, 6579, 5, 105, 0, 0, 6579, 6580, 5, 211, 0, 0, 6580, 6582, 3, 672, 336, 0, 6581, 6583, 3, 744, 372, 0, 6582, 6581, 1, 0, 0, 0, 6582, 6583, 1, 0, 0, 0, 6583, 6609, 1, 0, 0, 0, 6584, 6585, 5, 46, 0, 0, 6585, 6586, 5, 41, 0, 0, 6586, 6587, 5, 2, 0, 0, 6587, 6588, 3, 1166, 583, 0, 6588, 6589, 5, 36, 0, 0, 6589, 6590, 3, 1166, 583, 0, 6590, 6591, 5, 3, 0, 0, 6591, 6592, 5, 379, 0, 0, 6592, 6594, 5, 211, 0, 0, 6593, 6595, 3, 744, 372, 0, 6594, 6593, 1, 0, 0, 0, 6594, 6595, 1, 0, 0, 0, 6595, 6609, 1, 0, 0, 0, 6596, 6597, 5, 46, 0, 0, 6597, 6598, 5, 41, 0, 0, 6598, 6599, 5, 2, 0, 0, 6599, 6600, 3, 1166, 583, 0, 6600, 6601, 5, 36, 0, 0, 6601, 6602, 3, 1166, 583, 0, 6602, 6603, 5, 3, 0, 0, 6603, 6604, 5, 105, 0, 0, 6604, 6606, 5, 400, 0, 0, 6605, 6607, 3, 744, 372, 0, 6606, 6605, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 6609, 1, 0, 0, 0, 6608, 6571, 1, 0, 0, 0, 6608, 6584, 1, 0, 0, 0, 6608, 6596, 1, 0, 0, 0, 6609, 743, 1, 0, 0, 0, 6610, 6611, 5, 36, 0, 0, 6611, 6615, 5, 223, 0, 0, 6612, 6613, 5, 36, 0, 0, 6613, 6615, 5, 141, 0, 0, 6614, 6610, 1, 0, 0, 0, 6614, 6612, 1, 0, 0, 0, 6615, 745, 1, 0, 0, 0, 6616, 6617, 5, 220, 0, 0, 6617, 6618, 5, 396, 0, 0, 6618, 747, 1, 0, 0, 0, 6619, 6621, 5, 46, 0, 0, 6620, 6622, 3, 656, 328, 0, 6621, 6620, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 6623, 1, 0, 0, 0, 6623, 6624, 5, 443, 0, 0, 6624, 6625, 5, 62, 0, 0, 6625, 6626, 3, 1166, 583, 0, 6626, 6627, 5, 247, 0, 0, 6627, 6628, 3, 1434, 717, 0, 6628, 6629, 5, 2, 0, 0, 6629, 6630, 3, 750, 375, 0, 6630, 6631, 5, 3, 0, 0, 6631, 749, 1, 0, 0, 0, 6632, 6633, 5, 64, 0, 0, 6633, 6634, 5, 461, 0, 0, 6634, 6635, 5, 105, 0, 0, 6635, 6636, 5, 211, 0, 0, 6636, 6637, 3, 672, 336, 0, 6637, 6638, 5, 6, 0, 0, 6638, 6639, 5, 94, 0, 0, 6639, 6640, 5, 461, 0, 0, 6640, 6641, 5, 105, 0, 0, 6641, 6642, 5, 211, 0, 0, 6642, 6643, 3, 672, 336, 0, 6643, 6667, 1, 0, 0, 0, 6644, 6645, 5, 94, 0, 0, 6645, 6646, 5, 461, 0, 0, 6646, 6647, 5, 105, 0, 0, 6647, 6648, 5, 211, 0, 0, 6648, 6649, 3, 672, 336, 0, 6649, 6650, 5, 6, 0, 0, 6650, 6651, 5, 64, 0, 0, 6651, 6652, 5, 461, 0, 0, 6652, 6653, 5, 105, 0, 0, 6653, 6654, 5, 211, 0, 0, 6654, 6655, 3, 672, 336, 0, 6655, 6667, 1, 0, 0, 0, 6656, 6657, 5, 64, 0, 0, 6657, 6658, 5, 461, 0, 0, 6658, 6659, 5, 105, 0, 0, 6659, 6660, 5, 211, 0, 0, 6660, 6667, 3, 672, 336, 0, 6661, 6662, 5, 94, 0, 0, 6662, 6663, 5, 461, 0, 0, 6663, 6664, 5, 105, 0, 0, 6664, 6665, 5, 211, 0, 0, 6665, 6667, 3, 672, 336, 0, 6666, 6632, 1, 0, 0, 0, 6666, 6644, 1, 0, 0, 0, 6666, 6656, 1, 0, 0, 0, 6666, 6661, 1, 0, 0, 0, 6667, 751, 1, 0, 0, 0, 6668, 6669, 5, 306, 0, 0, 6669, 6685, 3, 754, 377, 0, 6670, 6671, 5, 306, 0, 0, 6671, 6685, 3, 756, 378, 0, 6672, 6673, 5, 306, 0, 0, 6673, 6674, 5, 2, 0, 0, 6674, 6675, 3, 758, 379, 0, 6675, 6676, 5, 3, 0, 0, 6676, 6677, 3, 754, 377, 0, 6677, 6685, 1, 0, 0, 0, 6678, 6679, 5, 306, 0, 0, 6679, 6680, 5, 2, 0, 0, 6680, 6681, 3, 758, 379, 0, 6681, 6682, 5, 3, 0, 0, 6682, 6683, 3, 756, 378, 0, 6683, 6685, 1, 0, 0, 0, 6684, 6668, 1, 0, 0, 0, 6684, 6670, 1, 0, 0, 0, 6684, 6672, 1, 0, 0, 0, 6684, 6678, 1, 0, 0, 0, 6685, 753, 1, 0, 0, 0, 6686, 6688, 5, 226, 0, 0, 6687, 6689, 3, 628, 314, 0, 6688, 6687, 1, 0, 0, 0, 6688, 6689, 1, 0, 0, 0, 6689, 6690, 1, 0, 0, 0, 6690, 6697, 3, 1410, 705, 0, 6691, 6693, 5, 92, 0, 0, 6692, 6694, 3, 628, 314, 0, 6693, 6692, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6695, 1, 0, 0, 0, 6695, 6697, 3, 1404, 702, 0, 6696, 6686, 1, 0, 0, 0, 6696, 6691, 1, 0, 0, 0, 6697, 755, 1, 0, 0, 0, 6698, 6700, 5, 323, 0, 0, 6699, 6701, 3, 628, 314, 0, 6700, 6699, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 6702, 1, 0, 0, 0, 6702, 6714, 3, 1420, 710, 0, 6703, 6705, 5, 349, 0, 0, 6704, 6706, 3, 628, 314, 0, 6705, 6704, 1, 0, 0, 0, 6705, 6706, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6714, 3, 1434, 717, 0, 6708, 6710, 5, 175, 0, 0, 6709, 6711, 3, 628, 314, 0, 6710, 6709, 1, 0, 0, 0, 6710, 6711, 1, 0, 0, 0, 6711, 6712, 1, 0, 0, 0, 6712, 6714, 3, 1418, 709, 0, 6713, 6698, 1, 0, 0, 0, 6713, 6703, 1, 0, 0, 0, 6713, 6708, 1, 0, 0, 0, 6714, 757, 1, 0, 0, 0, 6715, 6720, 3, 760, 380, 0, 6716, 6717, 5, 6, 0, 0, 6717, 6719, 3, 760, 380, 0, 6718, 6716, 1, 0, 0, 0, 6719, 6722, 1, 0, 0, 0, 6720, 6718, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 759, 1, 0, 0, 0, 6722, 6720, 1, 0, 0, 0, 6723, 6724, 5, 128, 0, 0, 6724, 761, 1, 0, 0, 0, 6725, 6726, 5, 138, 0, 0, 6726, 6727, 5, 351, 0, 0, 6727, 6728, 3, 1400, 700, 0, 6728, 6729, 5, 333, 0, 0, 6729, 6730, 3, 132, 66, 0, 6730, 6738, 1, 0, 0, 0, 6731, 6732, 5, 138, 0, 0, 6732, 6733, 5, 351, 0, 0, 6733, 6734, 3, 1400, 700, 0, 6734, 6735, 5, 313, 0, 0, 6735, 6736, 3, 132, 66, 0, 6736, 6738, 1, 0, 0, 0, 6737, 6725, 1, 0, 0, 0, 6737, 6731, 1, 0, 0, 0, 6738, 763, 1, 0, 0, 0, 6739, 6740, 5, 138, 0, 0, 6740, 6741, 5, 136, 0, 0, 6741, 6742, 3, 696, 348, 0, 6742, 6743, 5, 309, 0, 0, 6743, 6744, 5, 94, 0, 0, 6744, 6745, 3, 1434, 717, 0, 6745, 7131, 1, 0, 0, 0, 6746, 6747, 5, 138, 0, 0, 6747, 6748, 5, 108, 0, 0, 6748, 6749, 3, 556, 278, 0, 6749, 6750, 5, 309, 0, 0, 6750, 6751, 5, 94, 0, 0, 6751, 6752, 3, 1434, 717, 0, 6752, 7131, 1, 0, 0, 0, 6753, 6754, 5, 138, 0, 0, 6754, 6755, 5, 168, 0, 0, 6755, 6756, 3, 556, 278, 0, 6756, 6757, 5, 309, 0, 0, 6757, 6758, 5, 94, 0, 0, 6758, 6759, 3, 1434, 717, 0, 6759, 7131, 1, 0, 0, 0, 6760, 6761, 5, 138, 0, 0, 6761, 6762, 5, 175, 0, 0, 6762, 6763, 3, 1418, 709, 0, 6763, 6764, 5, 309, 0, 0, 6764, 6765, 5, 94, 0, 0, 6765, 6766, 3, 1416, 708, 0, 6766, 7131, 1, 0, 0, 0, 6767, 6768, 5, 138, 0, 0, 6768, 6769, 5, 189, 0, 0, 6769, 6770, 3, 556, 278, 0, 6770, 6771, 5, 309, 0, 0, 6771, 6772, 5, 94, 0, 0, 6772, 6773, 3, 1434, 717, 0, 6773, 7131, 1, 0, 0, 0, 6774, 6775, 5, 138, 0, 0, 6775, 6776, 5, 189, 0, 0, 6776, 6777, 3, 556, 278, 0, 6777, 6778, 5, 309, 0, 0, 6778, 6779, 5, 45, 0, 0, 6779, 6780, 3, 1434, 717, 0, 6780, 6781, 5, 94, 0, 0, 6781, 6782, 3, 1434, 717, 0, 6782, 7131, 1, 0, 0, 0, 6783, 6784, 5, 138, 0, 0, 6784, 6785, 5, 63, 0, 0, 6785, 6786, 5, 174, 0, 0, 6786, 6787, 5, 381, 0, 0, 6787, 6788, 3, 1434, 717, 0, 6788, 6789, 5, 309, 0, 0, 6789, 6790, 5, 94, 0, 0, 6790, 6791, 3, 1434, 717, 0, 6791, 7131, 1, 0, 0, 0, 6792, 6793, 5, 138, 0, 0, 6793, 6794, 5, 211, 0, 0, 6794, 6795, 3, 672, 336, 0, 6795, 6796, 5, 309, 0, 0, 6796, 6797, 5, 94, 0, 0, 6797, 6798, 3, 1440, 720, 0, 6798, 7131, 1, 0, 0, 0, 6799, 6800, 5, 138, 0, 0, 6800, 6801, 5, 66, 0, 0, 6801, 6802, 3, 1466, 733, 0, 6802, 6803, 5, 309, 0, 0, 6803, 6804, 5, 94, 0, 0, 6804, 6805, 3, 1466, 733, 0, 6805, 7131, 1, 0, 0, 0, 6806, 6808, 5, 138, 0, 0, 6807, 6809, 3, 336, 168, 0, 6808, 6807, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 6810, 1, 0, 0, 0, 6810, 6811, 5, 247, 0, 0, 6811, 6812, 3, 1434, 717, 0, 6812, 6813, 5, 309, 0, 0, 6813, 6814, 5, 94, 0, 0, 6814, 6815, 3, 1434, 717, 0, 6815, 7131, 1, 0, 0, 0, 6816, 6817, 5, 138, 0, 0, 6817, 6818, 5, 278, 0, 0, 6818, 6819, 5, 156, 0, 0, 6819, 6820, 3, 556, 278, 0, 6820, 6821, 5, 100, 0, 0, 6821, 6822, 3, 1434, 717, 0, 6822, 6823, 5, 309, 0, 0, 6823, 6824, 5, 94, 0, 0, 6824, 6825, 3, 1434, 717, 0, 6825, 7131, 1, 0, 0, 0, 6826, 6827, 5, 138, 0, 0, 6827, 6828, 5, 278, 0, 0, 6828, 6829, 5, 206, 0, 0, 6829, 6830, 3, 556, 278, 0, 6830, 6831, 5, 100, 0, 0, 6831, 6832, 3, 1434, 717, 0, 6832, 6833, 5, 309, 0, 0, 6833, 6834, 5, 94, 0, 0, 6834, 6835, 3, 1434, 717, 0, 6835, 7131, 1, 0, 0, 0, 6836, 6837, 5, 138, 0, 0, 6837, 6839, 5, 445, 0, 0, 6838, 6840, 3, 746, 373, 0, 6839, 6838, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, 6841, 1, 0, 0, 0, 6841, 6842, 3, 1434, 717, 0, 6842, 6843, 5, 80, 0, 0, 6843, 6844, 3, 1410, 705, 0, 6844, 6845, 5, 309, 0, 0, 6845, 6846, 5, 94, 0, 0, 6846, 6847, 3, 1434, 717, 0, 6847, 7131, 1, 0, 0, 0, 6848, 6849, 5, 138, 0, 0, 6849, 6850, 5, 296, 0, 0, 6850, 6851, 3, 668, 334, 0, 6851, 6852, 5, 309, 0, 0, 6852, 6853, 5, 94, 0, 0, 6853, 6854, 3, 1428, 714, 0, 6854, 7131, 1, 0, 0, 0, 6855, 6856, 5, 138, 0, 0, 6856, 6857, 5, 452, 0, 0, 6857, 6858, 3, 1434, 717, 0, 6858, 6859, 5, 309, 0, 0, 6859, 6860, 5, 94, 0, 0, 6860, 6861, 3, 1434, 717, 0, 6861, 7131, 1, 0, 0, 0, 6862, 6863, 5, 138, 0, 0, 6863, 6864, 5, 442, 0, 0, 6864, 6865, 3, 664, 332, 0, 6865, 6866, 5, 309, 0, 0, 6866, 6867, 5, 94, 0, 0, 6867, 6868, 3, 1434, 717, 0, 6868, 7131, 1, 0, 0, 0, 6869, 6870, 5, 138, 0, 0, 6870, 6871, 5, 323, 0, 0, 6871, 6872, 3, 1420, 710, 0, 6872, 6873, 5, 309, 0, 0, 6873, 6874, 5, 94, 0, 0, 6874, 6875, 3, 48, 24, 0, 6875, 7131, 1, 0, 0, 0, 6876, 6877, 5, 138, 0, 0, 6877, 6878, 5, 331, 0, 0, 6878, 6879, 3, 1434, 717, 0, 6879, 6880, 5, 309, 0, 0, 6880, 6881, 5, 94, 0, 0, 6881, 6882, 3, 1434, 717, 0, 6882, 7131, 1, 0, 0, 0, 6883, 6884, 5, 138, 0, 0, 6884, 6885, 5, 451, 0, 0, 6885, 6886, 3, 1434, 717, 0, 6886, 6887, 5, 309, 0, 0, 6887, 6888, 5, 94, 0, 0, 6888, 6889, 3, 1434, 717, 0, 6889, 7131, 1, 0, 0, 0, 6890, 6891, 5, 138, 0, 0, 6891, 6893, 5, 92, 0, 0, 6892, 6894, 3, 746, 373, 0, 6893, 6892, 1, 0, 0, 0, 6893, 6894, 1, 0, 0, 0, 6894, 6895, 1, 0, 0, 0, 6895, 6896, 3, 1116, 558, 0, 6896, 6897, 5, 309, 0, 0, 6897, 6898, 5, 94, 0, 0, 6898, 6899, 3, 1402, 701, 0, 6899, 7131, 1, 0, 0, 0, 6900, 6901, 5, 138, 0, 0, 6901, 6903, 5, 328, 0, 0, 6902, 6904, 3, 746, 373, 0, 6903, 6902, 1, 0, 0, 0, 6903, 6904, 1, 0, 0, 0, 6904, 6905, 1, 0, 0, 0, 6905, 6906, 3, 1410, 705, 0, 6906, 6907, 5, 309, 0, 0, 6907, 6908, 5, 94, 0, 0, 6908, 6909, 3, 1434, 717, 0, 6909, 7131, 1, 0, 0, 0, 6910, 6911, 5, 138, 0, 0, 6911, 6913, 5, 376, 0, 0, 6912, 6914, 3, 746, 373, 0, 6913, 6912, 1, 0, 0, 0, 6913, 6914, 1, 0, 0, 0, 6914, 6915, 1, 0, 0, 0, 6915, 6916, 3, 1408, 704, 0, 6916, 6917, 5, 309, 0, 0, 6917, 6918, 5, 94, 0, 0, 6918, 6919, 3, 1406, 703, 0, 6919, 7131, 1, 0, 0, 0, 6920, 6921, 5, 138, 0, 0, 6921, 6922, 5, 259, 0, 0, 6922, 6924, 5, 376, 0, 0, 6923, 6925, 3, 746, 373, 0, 6924, 6923, 1, 0, 0, 0, 6924, 6925, 1, 0, 0, 0, 6925, 6926, 1, 0, 0, 0, 6926, 6927, 3, 1408, 704, 0, 6927, 6928, 5, 309, 0, 0, 6928, 6929, 5, 94, 0, 0, 6929, 6930, 3, 1406, 703, 0, 6930, 7131, 1, 0, 0, 0, 6931, 6932, 5, 138, 0, 0, 6932, 6934, 5, 226, 0, 0, 6933, 6935, 3, 746, 373, 0, 6934, 6933, 1, 0, 0, 0, 6934, 6935, 1, 0, 0, 0, 6935, 6936, 1, 0, 0, 0, 6936, 6937, 3, 1410, 705, 0, 6937, 6938, 5, 309, 0, 0, 6938, 6939, 5, 94, 0, 0, 6939, 6940, 3, 1434, 717, 0, 6940, 7131, 1, 0, 0, 0, 6941, 6942, 5, 138, 0, 0, 6942, 6943, 5, 63, 0, 0, 6943, 6945, 5, 92, 0, 0, 6944, 6946, 3, 746, 373, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6947, 1, 0, 0, 0, 6947, 6948, 3, 1116, 558, 0, 6948, 6949, 5, 309, 0, 0, 6949, 6950, 5, 94, 0, 0, 6950, 6951, 3, 1402, 701, 0, 6951, 7131, 1, 0, 0, 0, 6952, 6953, 5, 138, 0, 0, 6953, 6955, 5, 92, 0, 0, 6954, 6956, 3, 746, 373, 0, 6955, 6954, 1, 0, 0, 0, 6955, 6956, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6958, 3, 1116, 558, 0, 6958, 6960, 5, 309, 0, 0, 6959, 6961, 5, 44, 0, 0, 6960, 6959, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 6962, 1, 0, 0, 0, 6962, 6963, 3, 1430, 715, 0, 6963, 6964, 5, 94, 0, 0, 6964, 6965, 3, 1432, 716, 0, 6965, 7131, 1, 0, 0, 0, 6966, 6967, 5, 138, 0, 0, 6967, 6969, 5, 376, 0, 0, 6968, 6970, 3, 746, 373, 0, 6969, 6968, 1, 0, 0, 0, 6969, 6970, 1, 0, 0, 0, 6970, 6971, 1, 0, 0, 0, 6971, 6972, 3, 1408, 704, 0, 6972, 6974, 5, 309, 0, 0, 6973, 6975, 5, 44, 0, 0, 6974, 6973, 1, 0, 0, 0, 6974, 6975, 1, 0, 0, 0, 6975, 6976, 1, 0, 0, 0, 6976, 6977, 3, 1430, 715, 0, 6977, 6978, 5, 94, 0, 0, 6978, 6979, 3, 1432, 716, 0, 6979, 7131, 1, 0, 0, 0, 6980, 6981, 5, 138, 0, 0, 6981, 6982, 5, 259, 0, 0, 6982, 6984, 5, 376, 0, 0, 6983, 6985, 3, 746, 373, 0, 6984, 6983, 1, 0, 0, 0, 6984, 6985, 1, 0, 0, 0, 6985, 6986, 1, 0, 0, 0, 6986, 6987, 3, 1408, 704, 0, 6987, 6989, 5, 309, 0, 0, 6988, 6990, 5, 44, 0, 0, 6989, 6988, 1, 0, 0, 0, 6989, 6990, 1, 0, 0, 0, 6990, 6991, 1, 0, 0, 0, 6991, 6992, 3, 1430, 715, 0, 6992, 6993, 5, 94, 0, 0, 6993, 6994, 3, 1432, 716, 0, 6994, 7131, 1, 0, 0, 0, 6995, 6996, 5, 138, 0, 0, 6996, 6998, 5, 92, 0, 0, 6997, 6999, 3, 746, 373, 0, 6998, 6997, 1, 0, 0, 0, 6998, 6999, 1, 0, 0, 0, 6999, 7000, 1, 0, 0, 0, 7000, 7001, 3, 1116, 558, 0, 7001, 7002, 5, 309, 0, 0, 7002, 7003, 5, 45, 0, 0, 7003, 7004, 3, 1434, 717, 0, 7004, 7005, 5, 94, 0, 0, 7005, 7006, 3, 1434, 717, 0, 7006, 7131, 1, 0, 0, 0, 7007, 7008, 5, 138, 0, 0, 7008, 7009, 5, 63, 0, 0, 7009, 7011, 5, 92, 0, 0, 7010, 7012, 3, 746, 373, 0, 7011, 7010, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 7013, 1, 0, 0, 0, 7013, 7014, 3, 1116, 558, 0, 7014, 7016, 5, 309, 0, 0, 7015, 7017, 5, 44, 0, 0, 7016, 7015, 1, 0, 0, 0, 7016, 7017, 1, 0, 0, 0, 7017, 7018, 1, 0, 0, 0, 7018, 7019, 3, 1430, 715, 0, 7019, 7020, 5, 94, 0, 0, 7020, 7021, 3, 1432, 716, 0, 7021, 7131, 1, 0, 0, 0, 7022, 7023, 5, 138, 0, 0, 7023, 7024, 5, 321, 0, 0, 7024, 7025, 3, 1434, 717, 0, 7025, 7026, 5, 80, 0, 0, 7026, 7027, 3, 1410, 705, 0, 7027, 7028, 5, 309, 0, 0, 7028, 7029, 5, 94, 0, 0, 7029, 7030, 3, 1434, 717, 0, 7030, 7131, 1, 0, 0, 0, 7031, 7032, 5, 138, 0, 0, 7032, 7033, 5, 357, 0, 0, 7033, 7034, 3, 1434, 717, 0, 7034, 7035, 5, 80, 0, 0, 7035, 7036, 3, 1410, 705, 0, 7036, 7037, 5, 309, 0, 0, 7037, 7038, 5, 94, 0, 0, 7038, 7039, 3, 1434, 717, 0, 7039, 7131, 1, 0, 0, 0, 7040, 7041, 5, 138, 0, 0, 7041, 7042, 5, 198, 0, 0, 7042, 7043, 5, 357, 0, 0, 7043, 7044, 3, 1434, 717, 0, 7044, 7045, 5, 309, 0, 0, 7045, 7046, 5, 94, 0, 0, 7046, 7047, 3, 1434, 717, 0, 7047, 7131, 1, 0, 0, 0, 7048, 7049, 5, 138, 0, 0, 7049, 7050, 5, 318, 0, 0, 7050, 7051, 3, 1466, 733, 0, 7051, 7052, 5, 309, 0, 0, 7052, 7053, 5, 94, 0, 0, 7053, 7054, 3, 1466, 733, 0, 7054, 7131, 1, 0, 0, 0, 7055, 7056, 5, 138, 0, 0, 7056, 7057, 5, 99, 0, 0, 7057, 7058, 3, 1466, 733, 0, 7058, 7059, 5, 309, 0, 0, 7059, 7060, 5, 94, 0, 0, 7060, 7061, 3, 1466, 733, 0, 7061, 7131, 1, 0, 0, 0, 7062, 7063, 5, 138, 0, 0, 7063, 7064, 5, 351, 0, 0, 7064, 7065, 3, 1400, 700, 0, 7065, 7066, 5, 309, 0, 0, 7066, 7067, 5, 94, 0, 0, 7067, 7068, 3, 1398, 699, 0, 7068, 7131, 1, 0, 0, 0, 7069, 7070, 5, 138, 0, 0, 7070, 7071, 5, 342, 0, 0, 7071, 7072, 3, 556, 278, 0, 7072, 7073, 5, 309, 0, 0, 7073, 7074, 5, 94, 0, 0, 7074, 7075, 3, 1434, 717, 0, 7075, 7131, 1, 0, 0, 0, 7076, 7077, 5, 138, 0, 0, 7077, 7078, 5, 355, 0, 0, 7078, 7079, 5, 325, 0, 0, 7079, 7080, 5, 283, 0, 0, 7080, 7081, 3, 556, 278, 0, 7081, 7082, 5, 309, 0, 0, 7082, 7083, 5, 94, 0, 0, 7083, 7084, 3, 1434, 717, 0, 7084, 7131, 1, 0, 0, 0, 7085, 7086, 5, 138, 0, 0, 7086, 7087, 5, 355, 0, 0, 7087, 7088, 5, 325, 0, 0, 7088, 7089, 5, 185, 0, 0, 7089, 7090, 3, 556, 278, 0, 7090, 7091, 5, 309, 0, 0, 7091, 7092, 5, 94, 0, 0, 7092, 7093, 3, 1434, 717, 0, 7093, 7131, 1, 0, 0, 0, 7094, 7095, 5, 138, 0, 0, 7095, 7096, 5, 355, 0, 0, 7096, 7097, 5, 325, 0, 0, 7097, 7098, 5, 353, 0, 0, 7098, 7099, 3, 556, 278, 0, 7099, 7100, 5, 309, 0, 0, 7100, 7101, 5, 94, 0, 0, 7101, 7102, 3, 1434, 717, 0, 7102, 7131, 1, 0, 0, 0, 7103, 7104, 5, 138, 0, 0, 7104, 7105, 5, 355, 0, 0, 7105, 7106, 5, 325, 0, 0, 7106, 7107, 5, 163, 0, 0, 7107, 7108, 3, 556, 278, 0, 7108, 7109, 5, 309, 0, 0, 7109, 7110, 5, 94, 0, 0, 7110, 7111, 3, 1434, 717, 0, 7111, 7131, 1, 0, 0, 0, 7112, 7113, 5, 138, 0, 0, 7113, 7114, 5, 360, 0, 0, 7114, 7115, 3, 556, 278, 0, 7115, 7116, 5, 309, 0, 0, 7116, 7117, 5, 94, 0, 0, 7117, 7118, 3, 1434, 717, 0, 7118, 7131, 1, 0, 0, 0, 7119, 7120, 5, 138, 0, 0, 7120, 7121, 5, 360, 0, 0, 7121, 7122, 3, 556, 278, 0, 7122, 7123, 5, 309, 0, 0, 7123, 7124, 5, 143, 0, 0, 7124, 7125, 3, 1434, 717, 0, 7125, 7126, 5, 94, 0, 0, 7126, 7128, 3, 1434, 717, 0, 7127, 7129, 3, 124, 62, 0, 7128, 7127, 1, 0, 0, 0, 7128, 7129, 1, 0, 0, 0, 7129, 7131, 1, 0, 0, 0, 7130, 6739, 1, 0, 0, 0, 7130, 6746, 1, 0, 0, 0, 7130, 6753, 1, 0, 0, 0, 7130, 6760, 1, 0, 0, 0, 7130, 6767, 1, 0, 0, 0, 7130, 6774, 1, 0, 0, 0, 7130, 6783, 1, 0, 0, 0, 7130, 6792, 1, 0, 0, 0, 7130, 6799, 1, 0, 0, 0, 7130, 6806, 1, 0, 0, 0, 7130, 6816, 1, 0, 0, 0, 7130, 6826, 1, 0, 0, 0, 7130, 6836, 1, 0, 0, 0, 7130, 6848, 1, 0, 0, 0, 7130, 6855, 1, 0, 0, 0, 7130, 6862, 1, 0, 0, 0, 7130, 6869, 1, 0, 0, 0, 7130, 6876, 1, 0, 0, 0, 7130, 6883, 1, 0, 0, 0, 7130, 6890, 1, 0, 0, 0, 7130, 6900, 1, 0, 0, 0, 7130, 6910, 1, 0, 0, 0, 7130, 6920, 1, 0, 0, 0, 7130, 6931, 1, 0, 0, 0, 7130, 6941, 1, 0, 0, 0, 7130, 6952, 1, 0, 0, 0, 7130, 6966, 1, 0, 0, 0, 7130, 6980, 1, 0, 0, 0, 7130, 6995, 1, 0, 0, 0, 7130, 7007, 1, 0, 0, 0, 7130, 7022, 1, 0, 0, 0, 7130, 7031, 1, 0, 0, 0, 7130, 7040, 1, 0, 0, 0, 7130, 7048, 1, 0, 0, 0, 7130, 7055, 1, 0, 0, 0, 7130, 7062, 1, 0, 0, 0, 7130, 7069, 1, 0, 0, 0, 7130, 7076, 1, 0, 0, 0, 7130, 7085, 1, 0, 0, 0, 7130, 7094, 1, 0, 0, 0, 7130, 7103, 1, 0, 0, 0, 7130, 7112, 1, 0, 0, 0, 7130, 7119, 1, 0, 0, 0, 7131, 765, 1, 0, 0, 0, 7132, 7133, 5, 333, 0, 0, 7133, 7134, 5, 174, 0, 0, 7134, 767, 1, 0, 0, 0, 7135, 7136, 5, 138, 0, 0, 7136, 7137, 5, 211, 0, 0, 7137, 7139, 3, 672, 336, 0, 7138, 7140, 3, 770, 385, 0, 7139, 7138, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7142, 5, 462, 0, 0, 7142, 7143, 5, 80, 0, 0, 7143, 7144, 5, 204, 0, 0, 7144, 7145, 3, 1434, 717, 0, 7145, 7205, 1, 0, 0, 0, 7146, 7147, 5, 138, 0, 0, 7147, 7148, 5, 296, 0, 0, 7148, 7150, 3, 668, 334, 0, 7149, 7151, 3, 770, 385, 0, 7150, 7149, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7153, 5, 462, 0, 0, 7153, 7154, 5, 80, 0, 0, 7154, 7155, 5, 204, 0, 0, 7155, 7156, 3, 1434, 717, 0, 7156, 7205, 1, 0, 0, 0, 7157, 7158, 5, 138, 0, 0, 7158, 7159, 5, 442, 0, 0, 7159, 7161, 3, 664, 332, 0, 7160, 7162, 3, 770, 385, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7164, 5, 462, 0, 0, 7164, 7165, 5, 80, 0, 0, 7165, 7166, 5, 204, 0, 0, 7166, 7167, 3, 1434, 717, 0, 7167, 7205, 1, 0, 0, 0, 7168, 7169, 5, 138, 0, 0, 7169, 7170, 5, 357, 0, 0, 7170, 7171, 3, 1434, 717, 0, 7171, 7172, 5, 80, 0, 0, 7172, 7174, 3, 1410, 705, 0, 7173, 7175, 3, 770, 385, 0, 7174, 7173, 1, 0, 0, 0, 7174, 7175, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7177, 5, 462, 0, 0, 7177, 7178, 5, 80, 0, 0, 7178, 7179, 5, 204, 0, 0, 7179, 7180, 3, 1434, 717, 0, 7180, 7205, 1, 0, 0, 0, 7181, 7182, 5, 138, 0, 0, 7182, 7183, 5, 259, 0, 0, 7183, 7184, 5, 376, 0, 0, 7184, 7186, 3, 1408, 704, 0, 7185, 7187, 3, 770, 385, 0, 7186, 7185, 1, 0, 0, 0, 7186, 7187, 1, 0, 0, 0, 7187, 7188, 1, 0, 0, 0, 7188, 7189, 5, 462, 0, 0, 7189, 7190, 5, 80, 0, 0, 7190, 7191, 5, 204, 0, 0, 7191, 7192, 3, 1434, 717, 0, 7192, 7205, 1, 0, 0, 0, 7193, 7194, 5, 138, 0, 0, 7194, 7195, 5, 226, 0, 0, 7195, 7197, 3, 1410, 705, 0, 7196, 7198, 3, 770, 385, 0, 7197, 7196, 1, 0, 0, 0, 7197, 7198, 1, 0, 0, 0, 7198, 7199, 1, 0, 0, 0, 7199, 7200, 5, 462, 0, 0, 7200, 7201, 5, 80, 0, 0, 7201, 7202, 5, 204, 0, 0, 7202, 7203, 3, 1434, 717, 0, 7203, 7205, 1, 0, 0, 0, 7204, 7135, 1, 0, 0, 0, 7204, 7146, 1, 0, 0, 0, 7204, 7157, 1, 0, 0, 0, 7204, 7168, 1, 0, 0, 0, 7204, 7181, 1, 0, 0, 0, 7204, 7193, 1, 0, 0, 0, 7205, 769, 1, 0, 0, 0, 7206, 7207, 5, 269, 0, 0, 7207, 771, 1, 0, 0, 0, 7208, 7209, 5, 138, 0, 0, 7209, 7210, 5, 136, 0, 0, 7210, 7211, 3, 696, 348, 0, 7211, 7212, 5, 333, 0, 0, 7212, 7213, 5, 323, 0, 0, 7213, 7214, 3, 48, 24, 0, 7214, 7394, 1, 0, 0, 0, 7215, 7216, 5, 138, 0, 0, 7216, 7217, 5, 108, 0, 0, 7217, 7218, 3, 556, 278, 0, 7218, 7219, 5, 333, 0, 0, 7219, 7220, 5, 323, 0, 0, 7220, 7221, 3, 48, 24, 0, 7221, 7394, 1, 0, 0, 0, 7222, 7223, 5, 138, 0, 0, 7223, 7224, 5, 168, 0, 0, 7224, 7225, 3, 556, 278, 0, 7225, 7226, 5, 333, 0, 0, 7226, 7227, 5, 323, 0, 0, 7227, 7228, 3, 48, 24, 0, 7228, 7394, 1, 0, 0, 0, 7229, 7230, 5, 138, 0, 0, 7230, 7231, 5, 189, 0, 0, 7231, 7232, 3, 556, 278, 0, 7232, 7233, 5, 333, 0, 0, 7233, 7234, 5, 323, 0, 0, 7234, 7235, 3, 48, 24, 0, 7235, 7394, 1, 0, 0, 0, 7236, 7237, 5, 138, 0, 0, 7237, 7238, 5, 204, 0, 0, 7238, 7239, 3, 1434, 717, 0, 7239, 7240, 5, 333, 0, 0, 7240, 7241, 5, 323, 0, 0, 7241, 7242, 3, 48, 24, 0, 7242, 7394, 1, 0, 0, 0, 7243, 7244, 5, 138, 0, 0, 7244, 7245, 5, 211, 0, 0, 7245, 7246, 3, 672, 336, 0, 7246, 7247, 5, 333, 0, 0, 7247, 7248, 5, 323, 0, 0, 7248, 7249, 3, 48, 24, 0, 7249, 7394, 1, 0, 0, 0, 7250, 7251, 5, 138, 0, 0, 7251, 7252, 5, 278, 0, 0, 7252, 7253, 3, 734, 367, 0, 7253, 7254, 5, 333, 0, 0, 7254, 7255, 5, 323, 0, 0, 7255, 7256, 3, 48, 24, 0, 7256, 7394, 1, 0, 0, 0, 7257, 7258, 5, 138, 0, 0, 7258, 7259, 5, 278, 0, 0, 7259, 7260, 5, 156, 0, 0, 7260, 7261, 3, 556, 278, 0, 7261, 7262, 5, 100, 0, 0, 7262, 7263, 3, 1434, 717, 0, 7263, 7264, 5, 333, 0, 0, 7264, 7265, 5, 323, 0, 0, 7265, 7266, 3, 48, 24, 0, 7266, 7394, 1, 0, 0, 0, 7267, 7268, 5, 138, 0, 0, 7268, 7269, 5, 278, 0, 0, 7269, 7270, 5, 206, 0, 0, 7270, 7271, 3, 556, 278, 0, 7271, 7272, 5, 100, 0, 0, 7272, 7273, 3, 1434, 717, 0, 7273, 7274, 5, 333, 0, 0, 7274, 7275, 5, 323, 0, 0, 7275, 7276, 3, 48, 24, 0, 7276, 7394, 1, 0, 0, 0, 7277, 7278, 5, 138, 0, 0, 7278, 7279, 5, 296, 0, 0, 7279, 7280, 3, 668, 334, 0, 7280, 7281, 5, 333, 0, 0, 7281, 7282, 5, 323, 0, 0, 7282, 7283, 3, 48, 24, 0, 7283, 7394, 1, 0, 0, 0, 7284, 7285, 5, 138, 0, 0, 7285, 7286, 5, 442, 0, 0, 7286, 7287, 3, 664, 332, 0, 7287, 7288, 5, 333, 0, 0, 7288, 7289, 5, 323, 0, 0, 7289, 7290, 3, 48, 24, 0, 7290, 7394, 1, 0, 0, 0, 7291, 7292, 5, 138, 0, 0, 7292, 7294, 5, 92, 0, 0, 7293, 7295, 3, 746, 373, 0, 7294, 7293, 1, 0, 0, 0, 7294, 7295, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 7297, 3, 1116, 558, 0, 7297, 7298, 5, 333, 0, 0, 7298, 7299, 5, 323, 0, 0, 7299, 7300, 3, 48, 24, 0, 7300, 7394, 1, 0, 0, 0, 7301, 7302, 5, 138, 0, 0, 7302, 7303, 5, 342, 0, 0, 7303, 7304, 3, 556, 278, 0, 7304, 7305, 5, 333, 0, 0, 7305, 7306, 5, 323, 0, 0, 7306, 7307, 3, 48, 24, 0, 7307, 7394, 1, 0, 0, 0, 7308, 7309, 5, 138, 0, 0, 7309, 7310, 5, 355, 0, 0, 7310, 7311, 5, 325, 0, 0, 7311, 7312, 5, 283, 0, 0, 7312, 7313, 3, 556, 278, 0, 7313, 7314, 5, 333, 0, 0, 7314, 7315, 5, 323, 0, 0, 7315, 7316, 3, 48, 24, 0, 7316, 7394, 1, 0, 0, 0, 7317, 7318, 5, 138, 0, 0, 7318, 7319, 5, 355, 0, 0, 7319, 7320, 5, 325, 0, 0, 7320, 7321, 5, 185, 0, 0, 7321, 7322, 3, 556, 278, 0, 7322, 7323, 5, 333, 0, 0, 7323, 7324, 5, 323, 0, 0, 7324, 7325, 3, 48, 24, 0, 7325, 7394, 1, 0, 0, 0, 7326, 7327, 5, 138, 0, 0, 7327, 7328, 5, 355, 0, 0, 7328, 7329, 5, 325, 0, 0, 7329, 7330, 5, 353, 0, 0, 7330, 7331, 3, 556, 278, 0, 7331, 7332, 5, 333, 0, 0, 7332, 7333, 5, 323, 0, 0, 7333, 7334, 3, 48, 24, 0, 7334, 7394, 1, 0, 0, 0, 7335, 7336, 5, 138, 0, 0, 7336, 7337, 5, 355, 0, 0, 7337, 7338, 5, 325, 0, 0, 7338, 7339, 5, 163, 0, 0, 7339, 7340, 3, 556, 278, 0, 7340, 7341, 5, 333, 0, 0, 7341, 7342, 5, 323, 0, 0, 7342, 7343, 3, 48, 24, 0, 7343, 7394, 1, 0, 0, 0, 7344, 7345, 5, 138, 0, 0, 7345, 7347, 5, 328, 0, 0, 7346, 7348, 3, 746, 373, 0, 7347, 7346, 1, 0, 0, 0, 7347, 7348, 1, 0, 0, 0, 7348, 7349, 1, 0, 0, 0, 7349, 7350, 3, 1410, 705, 0, 7350, 7351, 5, 333, 0, 0, 7351, 7352, 5, 323, 0, 0, 7352, 7353, 3, 48, 24, 0, 7353, 7394, 1, 0, 0, 0, 7354, 7355, 5, 138, 0, 0, 7355, 7357, 5, 376, 0, 0, 7356, 7358, 3, 746, 373, 0, 7357, 7356, 1, 0, 0, 0, 7357, 7358, 1, 0, 0, 0, 7358, 7359, 1, 0, 0, 0, 7359, 7360, 3, 1408, 704, 0, 7360, 7361, 5, 333, 0, 0, 7361, 7362, 5, 323, 0, 0, 7362, 7363, 3, 48, 24, 0, 7363, 7394, 1, 0, 0, 0, 7364, 7365, 5, 138, 0, 0, 7365, 7366, 5, 259, 0, 0, 7366, 7368, 5, 376, 0, 0, 7367, 7369, 3, 746, 373, 0, 7368, 7367, 1, 0, 0, 0, 7368, 7369, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7371, 3, 1408, 704, 0, 7371, 7372, 5, 333, 0, 0, 7372, 7373, 5, 323, 0, 0, 7373, 7374, 3, 48, 24, 0, 7374, 7394, 1, 0, 0, 0, 7375, 7376, 5, 138, 0, 0, 7376, 7377, 5, 63, 0, 0, 7377, 7379, 5, 92, 0, 0, 7378, 7380, 3, 746, 373, 0, 7379, 7378, 1, 0, 0, 0, 7379, 7380, 1, 0, 0, 0, 7380, 7381, 1, 0, 0, 0, 7381, 7382, 3, 1116, 558, 0, 7382, 7383, 5, 333, 0, 0, 7383, 7384, 5, 323, 0, 0, 7384, 7385, 3, 48, 24, 0, 7385, 7394, 1, 0, 0, 0, 7386, 7387, 5, 138, 0, 0, 7387, 7388, 5, 360, 0, 0, 7388, 7389, 3, 556, 278, 0, 7389, 7390, 5, 333, 0, 0, 7390, 7391, 5, 323, 0, 0, 7391, 7392, 3, 48, 24, 0, 7392, 7394, 1, 0, 0, 0, 7393, 7208, 1, 0, 0, 0, 7393, 7215, 1, 0, 0, 0, 7393, 7222, 1, 0, 0, 0, 7393, 7229, 1, 0, 0, 0, 7393, 7236, 1, 0, 0, 0, 7393, 7243, 1, 0, 0, 0, 7393, 7250, 1, 0, 0, 0, 7393, 7257, 1, 0, 0, 0, 7393, 7267, 1, 0, 0, 0, 7393, 7277, 1, 0, 0, 0, 7393, 7284, 1, 0, 0, 0, 7393, 7291, 1, 0, 0, 0, 7393, 7301, 1, 0, 0, 0, 7393, 7308, 1, 0, 0, 0, 7393, 7317, 1, 0, 0, 0, 7393, 7326, 1, 0, 0, 0, 7393, 7335, 1, 0, 0, 0, 7393, 7344, 1, 0, 0, 0, 7393, 7354, 1, 0, 0, 0, 7393, 7364, 1, 0, 0, 0, 7393, 7375, 1, 0, 0, 0, 7393, 7386, 1, 0, 0, 0, 7394, 773, 1, 0, 0, 0, 7395, 7396, 5, 138, 0, 0, 7396, 7397, 5, 278, 0, 0, 7397, 7398, 3, 734, 367, 0, 7398, 7399, 5, 333, 0, 0, 7399, 7400, 5, 2, 0, 0, 7400, 7401, 3, 776, 388, 0, 7401, 7402, 5, 3, 0, 0, 7402, 775, 1, 0, 0, 0, 7403, 7408, 3, 778, 389, 0, 7404, 7405, 5, 6, 0, 0, 7405, 7407, 3, 778, 389, 0, 7406, 7404, 1, 0, 0, 0, 7407, 7410, 1, 0, 0, 0, 7408, 7406, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 777, 1, 0, 0, 0, 7410, 7408, 1, 0, 0, 0, 7411, 7412, 3, 1488, 744, 0, 7412, 7413, 5, 10, 0, 0, 7413, 7414, 5, 407, 0, 0, 7414, 7420, 1, 0, 0, 0, 7415, 7416, 3, 1488, 744, 0, 7416, 7417, 5, 10, 0, 0, 7417, 7418, 3, 780, 390, 0, 7418, 7420, 1, 0, 0, 0, 7419, 7411, 1, 0, 0, 0, 7419, 7415, 1, 0, 0, 0, 7420, 779, 1, 0, 0, 0, 7421, 7427, 3, 686, 343, 0, 7422, 7427, 3, 1500, 750, 0, 7423, 7427, 3, 1322, 661, 0, 7424, 7427, 3, 320, 160, 0, 7425, 7427, 3, 1456, 728, 0, 7426, 7421, 1, 0, 0, 0, 7426, 7422, 1, 0, 0, 0, 7426, 7423, 1, 0, 0, 0, 7426, 7424, 1, 0, 0, 0, 7426, 7425, 1, 0, 0, 0, 7427, 781, 1, 0, 0, 0, 7428, 7429, 5, 138, 0, 0, 7429, 7430, 5, 360, 0, 0, 7430, 7431, 3, 556, 278, 0, 7431, 7432, 5, 333, 0, 0, 7432, 7433, 5, 2, 0, 0, 7433, 7434, 3, 776, 388, 0, 7434, 7435, 5, 3, 0, 0, 7435, 783, 1, 0, 0, 0, 7436, 7437, 5, 138, 0, 0, 7437, 7438, 5, 136, 0, 0, 7438, 7439, 3, 696, 348, 0, 7439, 7440, 5, 282, 0, 0, 7440, 7441, 5, 94, 0, 0, 7441, 7442, 3, 1468, 734, 0, 7442, 7622, 1, 0, 0, 0, 7443, 7444, 5, 138, 0, 0, 7444, 7445, 5, 108, 0, 0, 7445, 7446, 3, 556, 278, 0, 7446, 7447, 5, 282, 0, 0, 7447, 7448, 5, 94, 0, 0, 7448, 7449, 3, 1468, 734, 0, 7449, 7622, 1, 0, 0, 0, 7450, 7451, 5, 138, 0, 0, 7451, 7452, 5, 168, 0, 0, 7452, 7453, 3, 556, 278, 0, 7453, 7454, 5, 282, 0, 0, 7454, 7455, 5, 94, 0, 0, 7455, 7456, 3, 1468, 734, 0, 7456, 7622, 1, 0, 0, 0, 7457, 7458, 5, 138, 0, 0, 7458, 7459, 5, 175, 0, 0, 7459, 7460, 3, 1418, 709, 0, 7460, 7461, 5, 282, 0, 0, 7461, 7462, 5, 94, 0, 0, 7462, 7463, 3, 1468, 734, 0, 7463, 7622, 1, 0, 0, 0, 7464, 7465, 5, 138, 0, 0, 7465, 7466, 5, 189, 0, 0, 7466, 7467, 3, 556, 278, 0, 7467, 7468, 5, 282, 0, 0, 7468, 7469, 5, 94, 0, 0, 7469, 7470, 3, 1468, 734, 0, 7470, 7622, 1, 0, 0, 0, 7471, 7472, 5, 138, 0, 0, 7472, 7473, 5, 211, 0, 0, 7473, 7474, 3, 672, 336, 0, 7474, 7475, 5, 282, 0, 0, 7475, 7476, 5, 94, 0, 0, 7476, 7477, 3, 1468, 734, 0, 7477, 7622, 1, 0, 0, 0, 7478, 7480, 5, 138, 0, 0, 7479, 7481, 3, 336, 168, 0, 7480, 7479, 1, 0, 0, 0, 7480, 7481, 1, 0, 0, 0, 7481, 7482, 1, 0, 0, 0, 7482, 7483, 5, 247, 0, 0, 7483, 7484, 3, 1434, 717, 0, 7484, 7485, 5, 282, 0, 0, 7485, 7486, 5, 94, 0, 0, 7486, 7487, 3, 1468, 734, 0, 7487, 7622, 1, 0, 0, 0, 7488, 7489, 5, 138, 0, 0, 7489, 7490, 5, 248, 0, 0, 7490, 7491, 5, 274, 0, 0, 7491, 7492, 3, 320, 160, 0, 7492, 7493, 5, 282, 0, 0, 7493, 7494, 5, 94, 0, 0, 7494, 7495, 3, 1468, 734, 0, 7495, 7622, 1, 0, 0, 0, 7496, 7497, 5, 138, 0, 0, 7497, 7498, 5, 278, 0, 0, 7498, 7499, 3, 734, 367, 0, 7499, 7500, 5, 282, 0, 0, 7500, 7501, 5, 94, 0, 0, 7501, 7502, 3, 1468, 734, 0, 7502, 7622, 1, 0, 0, 0, 7503, 7504, 5, 138, 0, 0, 7504, 7505, 5, 278, 0, 0, 7505, 7506, 5, 156, 0, 0, 7506, 7507, 3, 556, 278, 0, 7507, 7508, 5, 100, 0, 0, 7508, 7509, 3, 1434, 717, 0, 7509, 7510, 5, 282, 0, 0, 7510, 7511, 5, 94, 0, 0, 7511, 7512, 3, 1468, 734, 0, 7512, 7622, 1, 0, 0, 0, 7513, 7514, 5, 138, 0, 0, 7514, 7515, 5, 278, 0, 0, 7515, 7516, 5, 206, 0, 0, 7516, 7517, 3, 556, 278, 0, 7517, 7518, 5, 100, 0, 0, 7518, 7519, 3, 1434, 717, 0, 7519, 7520, 5, 282, 0, 0, 7520, 7521, 5, 94, 0, 0, 7521, 7522, 3, 1468, 734, 0, 7522, 7622, 1, 0, 0, 0, 7523, 7524, 5, 138, 0, 0, 7524, 7525, 5, 296, 0, 0, 7525, 7526, 3, 668, 334, 0, 7526, 7527, 5, 282, 0, 0, 7527, 7528, 5, 94, 0, 0, 7528, 7529, 3, 1468, 734, 0, 7529, 7622, 1, 0, 0, 0, 7530, 7531, 5, 138, 0, 0, 7531, 7532, 5, 442, 0, 0, 7532, 7533, 3, 664, 332, 0, 7533, 7534, 5, 282, 0, 0, 7534, 7535, 5, 94, 0, 0, 7535, 7536, 3, 1468, 734, 0, 7536, 7622, 1, 0, 0, 0, 7537, 7538, 5, 138, 0, 0, 7538, 7539, 5, 323, 0, 0, 7539, 7540, 3, 1420, 710, 0, 7540, 7541, 5, 282, 0, 0, 7541, 7542, 5, 94, 0, 0, 7542, 7543, 3, 1468, 734, 0, 7543, 7622, 1, 0, 0, 0, 7544, 7545, 5, 138, 0, 0, 7545, 7546, 5, 360, 0, 0, 7546, 7547, 3, 556, 278, 0, 7547, 7548, 5, 282, 0, 0, 7548, 7549, 5, 94, 0, 0, 7549, 7550, 3, 1468, 734, 0, 7550, 7622, 1, 0, 0, 0, 7551, 7552, 5, 138, 0, 0, 7552, 7553, 5, 351, 0, 0, 7553, 7554, 3, 1400, 700, 0, 7554, 7555, 5, 282, 0, 0, 7555, 7556, 5, 94, 0, 0, 7556, 7557, 3, 1468, 734, 0, 7557, 7622, 1, 0, 0, 0, 7558, 7559, 5, 138, 0, 0, 7559, 7560, 5, 342, 0, 0, 7560, 7561, 3, 556, 278, 0, 7561, 7562, 5, 282, 0, 0, 7562, 7563, 5, 94, 0, 0, 7563, 7564, 3, 1468, 734, 0, 7564, 7622, 1, 0, 0, 0, 7565, 7566, 5, 138, 0, 0, 7566, 7567, 5, 355, 0, 0, 7567, 7568, 5, 325, 0, 0, 7568, 7569, 5, 185, 0, 0, 7569, 7570, 3, 556, 278, 0, 7570, 7571, 5, 282, 0, 0, 7571, 7572, 5, 94, 0, 0, 7572, 7573, 3, 1468, 734, 0, 7573, 7622, 1, 0, 0, 0, 7574, 7575, 5, 138, 0, 0, 7575, 7576, 5, 355, 0, 0, 7576, 7577, 5, 325, 0, 0, 7577, 7578, 5, 163, 0, 0, 7578, 7579, 3, 556, 278, 0, 7579, 7580, 5, 282, 0, 0, 7580, 7581, 5, 94, 0, 0, 7581, 7582, 3, 1468, 734, 0, 7582, 7622, 1, 0, 0, 0, 7583, 7584, 5, 138, 0, 0, 7584, 7585, 5, 63, 0, 0, 7585, 7586, 5, 174, 0, 0, 7586, 7587, 5, 381, 0, 0, 7587, 7588, 3, 1434, 717, 0, 7588, 7589, 5, 282, 0, 0, 7589, 7590, 5, 94, 0, 0, 7590, 7591, 3, 1468, 734, 0, 7591, 7622, 1, 0, 0, 0, 7592, 7593, 5, 138, 0, 0, 7593, 7594, 5, 331, 0, 0, 7594, 7595, 3, 1434, 717, 0, 7595, 7596, 5, 282, 0, 0, 7596, 7597, 5, 94, 0, 0, 7597, 7598, 3, 1468, 734, 0, 7598, 7622, 1, 0, 0, 0, 7599, 7600, 5, 138, 0, 0, 7600, 7601, 5, 198, 0, 0, 7601, 7602, 5, 357, 0, 0, 7602, 7603, 3, 1434, 717, 0, 7603, 7604, 5, 282, 0, 0, 7604, 7605, 5, 94, 0, 0, 7605, 7606, 3, 1468, 734, 0, 7606, 7622, 1, 0, 0, 0, 7607, 7608, 5, 138, 0, 0, 7608, 7609, 5, 452, 0, 0, 7609, 7610, 3, 1434, 717, 0, 7610, 7611, 5, 282, 0, 0, 7611, 7612, 5, 94, 0, 0, 7612, 7613, 3, 1468, 734, 0, 7613, 7622, 1, 0, 0, 0, 7614, 7615, 5, 138, 0, 0, 7615, 7616, 5, 451, 0, 0, 7616, 7617, 3, 1434, 717, 0, 7617, 7618, 5, 282, 0, 0, 7618, 7619, 5, 94, 0, 0, 7619, 7620, 3, 1468, 734, 0, 7620, 7622, 1, 0, 0, 0, 7621, 7436, 1, 0, 0, 0, 7621, 7443, 1, 0, 0, 0, 7621, 7450, 1, 0, 0, 0, 7621, 7457, 1, 0, 0, 0, 7621, 7464, 1, 0, 0, 0, 7621, 7471, 1, 0, 0, 0, 7621, 7478, 1, 0, 0, 0, 7621, 7488, 1, 0, 0, 0, 7621, 7496, 1, 0, 0, 0, 7621, 7503, 1, 0, 0, 0, 7621, 7513, 1, 0, 0, 0, 7621, 7523, 1, 0, 0, 0, 7621, 7530, 1, 0, 0, 0, 7621, 7537, 1, 0, 0, 0, 7621, 7544, 1, 0, 0, 0, 7621, 7551, 1, 0, 0, 0, 7621, 7558, 1, 0, 0, 0, 7621, 7565, 1, 0, 0, 0, 7621, 7574, 1, 0, 0, 0, 7621, 7583, 1, 0, 0, 0, 7621, 7592, 1, 0, 0, 0, 7621, 7599, 1, 0, 0, 0, 7621, 7607, 1, 0, 0, 0, 7621, 7614, 1, 0, 0, 0, 7622, 785, 1, 0, 0, 0, 7623, 7624, 5, 46, 0, 0, 7624, 7625, 5, 452, 0, 0, 7625, 7627, 3, 1434, 717, 0, 7626, 7628, 3, 788, 394, 0, 7627, 7626, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 7630, 1, 0, 0, 0, 7629, 7631, 3, 708, 354, 0, 7630, 7629, 1, 0, 0, 0, 7630, 7631, 1, 0, 0, 0, 7631, 787, 1, 0, 0, 0, 7632, 7633, 3, 790, 395, 0, 7633, 789, 1, 0, 0, 0, 7634, 7635, 5, 62, 0, 0, 7635, 7636, 5, 92, 0, 0, 7636, 7641, 3, 1122, 561, 0, 7637, 7638, 5, 62, 0, 0, 7638, 7639, 5, 30, 0, 0, 7639, 7641, 5, 350, 0, 0, 7640, 7634, 1, 0, 0, 0, 7640, 7637, 1, 0, 0, 0, 7641, 791, 1, 0, 0, 0, 7642, 7643, 5, 138, 0, 0, 7643, 7644, 5, 452, 0, 0, 7644, 7645, 3, 1434, 717, 0, 7645, 7646, 5, 333, 0, 0, 7646, 7647, 3, 494, 247, 0, 7647, 7681, 1, 0, 0, 0, 7648, 7649, 5, 138, 0, 0, 7649, 7650, 5, 452, 0, 0, 7650, 7651, 3, 1434, 717, 0, 7651, 7652, 5, 133, 0, 0, 7652, 7653, 3, 1124, 562, 0, 7653, 7681, 1, 0, 0, 0, 7654, 7655, 5, 138, 0, 0, 7655, 7656, 5, 452, 0, 0, 7656, 7657, 3, 1434, 717, 0, 7657, 7658, 5, 333, 0, 0, 7658, 7659, 3, 1124, 562, 0, 7659, 7681, 1, 0, 0, 0, 7660, 7661, 5, 138, 0, 0, 7661, 7662, 5, 452, 0, 0, 7662, 7663, 3, 1434, 717, 0, 7663, 7664, 5, 191, 0, 0, 7664, 7665, 3, 1124, 562, 0, 7665, 7681, 1, 0, 0, 0, 7666, 7667, 5, 138, 0, 0, 7667, 7668, 5, 452, 0, 0, 7668, 7669, 3, 1434, 717, 0, 7669, 7670, 5, 282, 0, 0, 7670, 7671, 5, 94, 0, 0, 7671, 7672, 3, 1468, 734, 0, 7672, 7681, 1, 0, 0, 0, 7673, 7674, 5, 138, 0, 0, 7674, 7675, 5, 452, 0, 0, 7675, 7676, 3, 1434, 717, 0, 7676, 7677, 5, 309, 0, 0, 7677, 7678, 5, 94, 0, 0, 7678, 7679, 3, 1434, 717, 0, 7679, 7681, 1, 0, 0, 0, 7680, 7642, 1, 0, 0, 0, 7680, 7648, 1, 0, 0, 0, 7680, 7654, 1, 0, 0, 0, 7680, 7660, 1, 0, 0, 0, 7680, 7666, 1, 0, 0, 0, 7680, 7673, 1, 0, 0, 0, 7681, 793, 1, 0, 0, 0, 7682, 7683, 5, 46, 0, 0, 7683, 7684, 5, 451, 0, 0, 7684, 7685, 3, 1434, 717, 0, 7685, 7686, 5, 164, 0, 0, 7686, 7687, 3, 1456, 728, 0, 7687, 7688, 5, 452, 0, 0, 7688, 7690, 3, 796, 398, 0, 7689, 7691, 3, 708, 354, 0, 7690, 7689, 1, 0, 0, 0, 7690, 7691, 1, 0, 0, 0, 7691, 795, 1, 0, 0, 0, 7692, 7697, 3, 798, 399, 0, 7693, 7694, 5, 6, 0, 0, 7694, 7696, 3, 798, 399, 0, 7695, 7693, 1, 0, 0, 0, 7696, 7699, 1, 0, 0, 0, 7697, 7695, 1, 0, 0, 0, 7697, 7698, 1, 0, 0, 0, 7698, 797, 1, 0, 0, 0, 7699, 7697, 1, 0, 0, 0, 7700, 7701, 3, 1488, 744, 0, 7701, 799, 1, 0, 0, 0, 7702, 7703, 5, 138, 0, 0, 7703, 7704, 5, 451, 0, 0, 7704, 7705, 3, 1434, 717, 0, 7705, 7706, 5, 333, 0, 0, 7706, 7707, 3, 494, 247, 0, 7707, 7781, 1, 0, 0, 0, 7708, 7709, 5, 138, 0, 0, 7709, 7710, 5, 451, 0, 0, 7710, 7711, 3, 1434, 717, 0, 7711, 7712, 5, 164, 0, 0, 7712, 7713, 3, 1456, 728, 0, 7713, 7781, 1, 0, 0, 0, 7714, 7715, 5, 138, 0, 0, 7715, 7716, 5, 451, 0, 0, 7716, 7717, 3, 1434, 717, 0, 7717, 7718, 5, 305, 0, 0, 7718, 7720, 5, 452, 0, 0, 7719, 7721, 3, 708, 354, 0, 7720, 7719, 1, 0, 0, 0, 7720, 7721, 1, 0, 0, 0, 7721, 7781, 1, 0, 0, 0, 7722, 7723, 5, 138, 0, 0, 7723, 7724, 5, 451, 0, 0, 7724, 7725, 3, 1434, 717, 0, 7725, 7726, 5, 333, 0, 0, 7726, 7727, 5, 452, 0, 0, 7727, 7729, 3, 796, 398, 0, 7728, 7730, 3, 708, 354, 0, 7729, 7728, 1, 0, 0, 0, 7729, 7730, 1, 0, 0, 0, 7730, 7781, 1, 0, 0, 0, 7731, 7732, 5, 138, 0, 0, 7732, 7733, 5, 451, 0, 0, 7733, 7734, 3, 1434, 717, 0, 7734, 7735, 5, 133, 0, 0, 7735, 7736, 5, 452, 0, 0, 7736, 7738, 3, 796, 398, 0, 7737, 7739, 3, 708, 354, 0, 7738, 7737, 1, 0, 0, 0, 7738, 7739, 1, 0, 0, 0, 7739, 7781, 1, 0, 0, 0, 7740, 7741, 5, 138, 0, 0, 7741, 7742, 5, 451, 0, 0, 7742, 7743, 3, 1434, 717, 0, 7743, 7744, 5, 191, 0, 0, 7744, 7745, 5, 452, 0, 0, 7745, 7747, 3, 796, 398, 0, 7746, 7748, 3, 708, 354, 0, 7747, 7746, 1, 0, 0, 0, 7747, 7748, 1, 0, 0, 0, 7748, 7781, 1, 0, 0, 0, 7749, 7750, 5, 138, 0, 0, 7750, 7751, 5, 451, 0, 0, 7751, 7752, 3, 1434, 717, 0, 7752, 7753, 5, 193, 0, 0, 7753, 7781, 1, 0, 0, 0, 7754, 7755, 5, 138, 0, 0, 7755, 7756, 5, 451, 0, 0, 7756, 7757, 3, 1434, 717, 0, 7757, 7758, 5, 186, 0, 0, 7758, 7781, 1, 0, 0, 0, 7759, 7760, 5, 138, 0, 0, 7760, 7761, 5, 451, 0, 0, 7761, 7762, 3, 1434, 717, 0, 7762, 7763, 5, 333, 0, 0, 7763, 7764, 3, 494, 247, 0, 7764, 7781, 1, 0, 0, 0, 7765, 7766, 5, 138, 0, 0, 7766, 7767, 5, 451, 0, 0, 7767, 7768, 3, 1434, 717, 0, 7768, 7769, 5, 465, 0, 0, 7769, 7770, 5, 2, 0, 0, 7770, 7771, 3, 506, 253, 0, 7771, 7772, 5, 3, 0, 0, 7772, 7781, 1, 0, 0, 0, 7773, 7774, 5, 138, 0, 0, 7774, 7775, 5, 451, 0, 0, 7775, 7776, 3, 1434, 717, 0, 7776, 7777, 5, 282, 0, 0, 7777, 7778, 5, 94, 0, 0, 7778, 7779, 3, 1468, 734, 0, 7779, 7781, 1, 0, 0, 0, 7780, 7702, 1, 0, 0, 0, 7780, 7708, 1, 0, 0, 0, 7780, 7714, 1, 0, 0, 0, 7780, 7722, 1, 0, 0, 0, 7780, 7731, 1, 0, 0, 0, 7780, 7740, 1, 0, 0, 0, 7780, 7749, 1, 0, 0, 0, 7780, 7754, 1, 0, 0, 0, 7780, 7759, 1, 0, 0, 0, 7780, 7765, 1, 0, 0, 0, 7780, 7773, 1, 0, 0, 0, 7781, 801, 1, 0, 0, 0, 7782, 7784, 5, 46, 0, 0, 7783, 7785, 3, 656, 328, 0, 7784, 7783, 1, 0, 0, 0, 7784, 7785, 1, 0, 0, 0, 7785, 7786, 1, 0, 0, 0, 7786, 7787, 5, 321, 0, 0, 7787, 7788, 3, 1434, 717, 0, 7788, 7789, 5, 36, 0, 0, 7789, 7790, 5, 80, 0, 0, 7790, 7791, 3, 812, 406, 0, 7791, 7792, 5, 94, 0, 0, 7792, 7794, 3, 1410, 705, 0, 7793, 7795, 3, 1142, 571, 0, 7794, 7793, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7796, 1, 0, 0, 0, 7796, 7798, 5, 57, 0, 0, 7797, 7799, 3, 814, 407, 0, 7798, 7797, 1, 0, 0, 0, 7798, 7799, 1, 0, 0, 0, 7799, 7800, 1, 0, 0, 0, 7800, 7801, 3, 804, 402, 0, 7801, 803, 1, 0, 0, 0, 7802, 7809, 5, 270, 0, 0, 7803, 7809, 3, 808, 404, 0, 7804, 7805, 5, 2, 0, 0, 7805, 7806, 3, 806, 403, 0, 7806, 7807, 5, 3, 0, 0, 7807, 7809, 1, 0, 0, 0, 7808, 7802, 1, 0, 0, 0, 7808, 7803, 1, 0, 0, 0, 7808, 7804, 1, 0, 0, 0, 7809, 805, 1, 0, 0, 0, 7810, 7812, 3, 810, 405, 0, 7811, 7810, 1, 0, 0, 0, 7811, 7812, 1, 0, 0, 0, 7812, 7819, 1, 0, 0, 0, 7813, 7815, 5, 7, 0, 0, 7814, 7816, 3, 810, 405, 0, 7815, 7814, 1, 0, 0, 0, 7815, 7816, 1, 0, 0, 0, 7816, 7818, 1, 0, 0, 0, 7817, 7813, 1, 0, 0, 0, 7818, 7821, 1, 0, 0, 0, 7819, 7817, 1, 0, 0, 0, 7819, 7820, 1, 0, 0, 0, 7820, 807, 1, 0, 0, 0, 7821, 7819, 1, 0, 0, 0, 7822, 7828, 3, 998, 499, 0, 7823, 7828, 3, 948, 474, 0, 7824, 7828, 3, 980, 490, 0, 7825, 7828, 3, 966, 483, 0, 7826, 7828, 3, 816, 408, 0, 7827, 7822, 1, 0, 0, 0, 7827, 7823, 1, 0, 0, 0, 7827, 7824, 1, 0, 0, 0, 7827, 7825, 1, 0, 0, 0, 7827, 7826, 1, 0, 0, 0, 7828, 809, 1, 0, 0, 0, 7829, 7830, 3, 808, 404, 0, 7830, 811, 1, 0, 0, 0, 7831, 7832, 7, 47, 0, 0, 7832, 813, 1, 0, 0, 0, 7833, 7834, 7, 48, 0, 0, 7834, 815, 1, 0, 0, 0, 7835, 7836, 5, 271, 0, 0, 7836, 7838, 3, 1472, 736, 0, 7837, 7839, 3, 818, 409, 0, 7838, 7837, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 817, 1, 0, 0, 0, 7840, 7841, 5, 6, 0, 0, 7841, 7842, 3, 1456, 728, 0, 7842, 819, 1, 0, 0, 0, 7843, 7844, 5, 252, 0, 0, 7844, 7845, 3, 1472, 736, 0, 7845, 821, 1, 0, 0, 0, 7846, 7847, 5, 366, 0, 0, 7847, 7851, 3, 1472, 736, 0, 7848, 7849, 5, 366, 0, 0, 7849, 7851, 5, 9, 0, 0, 7850, 7846, 1, 0, 0, 0, 7850, 7848, 1, 0, 0, 0, 7851, 823, 1, 0, 0, 0, 7852, 7854, 5, 129, 0, 0, 7853, 7855, 3, 826, 413, 0, 7854, 7853, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 7857, 1, 0, 0, 0, 7856, 7858, 3, 834, 417, 0, 7857, 7856, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 7918, 1, 0, 0, 0, 7859, 7861, 5, 146, 0, 0, 7860, 7862, 3, 826, 413, 0, 7861, 7860, 1, 0, 0, 0, 7861, 7862, 1, 0, 0, 0, 7862, 7864, 1, 0, 0, 0, 7863, 7865, 3, 832, 416, 0, 7864, 7863, 1, 0, 0, 0, 7864, 7865, 1, 0, 0, 0, 7865, 7918, 1, 0, 0, 0, 7866, 7867, 5, 340, 0, 0, 7867, 7869, 5, 356, 0, 0, 7868, 7870, 3, 832, 416, 0, 7869, 7868, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7918, 1, 0, 0, 0, 7871, 7873, 5, 454, 0, 0, 7872, 7874, 3, 826, 413, 0, 7873, 7872, 1, 0, 0, 0, 7873, 7874, 1, 0, 0, 0, 7874, 7876, 1, 0, 0, 0, 7875, 7877, 3, 834, 417, 0, 7876, 7875, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7918, 1, 0, 0, 0, 7878, 7879, 5, 322, 0, 0, 7879, 7918, 3, 1472, 736, 0, 7880, 7882, 5, 308, 0, 0, 7881, 7883, 5, 322, 0, 0, 7882, 7881, 1, 0, 0, 0, 7882, 7883, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7918, 3, 1472, 736, 0, 7885, 7886, 5, 290, 0, 0, 7886, 7887, 5, 356, 0, 0, 7887, 7918, 3, 1456, 728, 0, 7888, 7889, 5, 161, 0, 0, 7889, 7890, 5, 291, 0, 0, 7890, 7918, 3, 1456, 728, 0, 7891, 7893, 5, 161, 0, 0, 7892, 7894, 3, 826, 413, 0, 7893, 7892, 1, 0, 0, 0, 7893, 7894, 1, 0, 0, 0, 7894, 7896, 1, 0, 0, 0, 7895, 7897, 3, 834, 417, 0, 7896, 7895, 1, 0, 0, 0, 7896, 7897, 1, 0, 0, 0, 7897, 7918, 1, 0, 0, 0, 7898, 7899, 5, 319, 0, 0, 7899, 7900, 5, 291, 0, 0, 7900, 7918, 3, 1456, 728, 0, 7901, 7903, 5, 319, 0, 0, 7902, 7904, 3, 826, 413, 0, 7903, 7902, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 1, 0, 0, 0, 7905, 7907, 5, 94, 0, 0, 7906, 7908, 5, 322, 0, 0, 7907, 7906, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7918, 3, 1472, 736, 0, 7910, 7912, 5, 319, 0, 0, 7911, 7913, 3, 826, 413, 0, 7912, 7911, 1, 0, 0, 0, 7912, 7913, 1, 0, 0, 0, 7913, 7915, 1, 0, 0, 0, 7914, 7916, 3, 834, 417, 0, 7915, 7914, 1, 0, 0, 0, 7915, 7916, 1, 0, 0, 0, 7916, 7918, 1, 0, 0, 0, 7917, 7852, 1, 0, 0, 0, 7917, 7859, 1, 0, 0, 0, 7917, 7866, 1, 0, 0, 0, 7917, 7871, 1, 0, 0, 0, 7917, 7878, 1, 0, 0, 0, 7917, 7880, 1, 0, 0, 0, 7917, 7885, 1, 0, 0, 0, 7917, 7888, 1, 0, 0, 0, 7917, 7891, 1, 0, 0, 0, 7917, 7898, 1, 0, 0, 0, 7917, 7901, 1, 0, 0, 0, 7917, 7910, 1, 0, 0, 0, 7918, 825, 1, 0, 0, 0, 7919, 7920, 7, 49, 0, 0, 7920, 827, 1, 0, 0, 0, 7921, 7922, 5, 244, 0, 0, 7922, 7923, 5, 251, 0, 0, 7923, 7932, 3, 68, 34, 0, 7924, 7925, 5, 300, 0, 0, 7925, 7932, 5, 81, 0, 0, 7926, 7927, 5, 300, 0, 0, 7927, 7932, 5, 382, 0, 0, 7928, 7932, 5, 54, 0, 0, 7929, 7930, 5, 77, 0, 0, 7930, 7932, 5, 54, 0, 0, 7931, 7921, 1, 0, 0, 0, 7931, 7924, 1, 0, 0, 0, 7931, 7926, 1, 0, 0, 0, 7931, 7928, 1, 0, 0, 0, 7931, 7929, 1, 0, 0, 0, 7932, 829, 1, 0, 0, 0, 7933, 7940, 3, 828, 414, 0, 7934, 7936, 5, 6, 0, 0, 7935, 7934, 1, 0, 0, 0, 7935, 7936, 1, 0, 0, 0, 7936, 7937, 1, 0, 0, 0, 7937, 7939, 3, 828, 414, 0, 7938, 7935, 1, 0, 0, 0, 7939, 7942, 1, 0, 0, 0, 7940, 7938, 1, 0, 0, 0, 7940, 7941, 1, 0, 0, 0, 7941, 831, 1, 0, 0, 0, 7942, 7940, 1, 0, 0, 0, 7943, 7944, 3, 830, 415, 0, 7944, 833, 1, 0, 0, 0, 7945, 7947, 5, 33, 0, 0, 7946, 7948, 5, 269, 0, 0, 7947, 7946, 1, 0, 0, 0, 7947, 7948, 1, 0, 0, 0, 7948, 7949, 1, 0, 0, 0, 7949, 7950, 5, 153, 0, 0, 7950, 835, 1, 0, 0, 0, 7951, 7954, 5, 46, 0, 0, 7952, 7953, 5, 82, 0, 0, 7953, 7955, 5, 311, 0, 0, 7954, 7952, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7957, 1, 0, 0, 0, 7956, 7958, 3, 190, 95, 0, 7957, 7956, 1, 0, 0, 0, 7957, 7958, 1, 0, 0, 0, 7958, 7976, 1, 0, 0, 0, 7959, 7960, 5, 376, 0, 0, 7960, 7962, 3, 1406, 703, 0, 7961, 7963, 3, 242, 121, 0, 7962, 7961, 1, 0, 0, 0, 7962, 7963, 1, 0, 0, 0, 7963, 7965, 1, 0, 0, 0, 7964, 7966, 3, 134, 67, 0, 7965, 7964, 1, 0, 0, 0, 7965, 7966, 1, 0, 0, 0, 7966, 7977, 1, 0, 0, 0, 7967, 7968, 5, 303, 0, 0, 7968, 7969, 5, 376, 0, 0, 7969, 7970, 3, 1406, 703, 0, 7970, 7971, 5, 2, 0, 0, 7971, 7972, 3, 244, 122, 0, 7972, 7974, 5, 3, 0, 0, 7973, 7975, 3, 134, 67, 0, 7974, 7973, 1, 0, 0, 0, 7974, 7975, 1, 0, 0, 0, 7975, 7977, 1, 0, 0, 0, 7976, 7959, 1, 0, 0, 0, 7976, 7967, 1, 0, 0, 0, 7977, 7978, 1, 0, 0, 0, 7978, 7979, 5, 36, 0, 0, 7979, 7981, 3, 998, 499, 0, 7980, 7982, 3, 838, 419, 0, 7981, 7980, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 837, 1, 0, 0, 0, 7983, 7985, 5, 105, 0, 0, 7984, 7986, 7, 50, 0, 0, 7985, 7984, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7987, 1, 0, 0, 0, 7987, 7988, 5, 42, 0, 0, 7988, 7989, 5, 279, 0, 0, 7989, 839, 1, 0, 0, 0, 7990, 7991, 5, 253, 0, 0, 7991, 7992, 3, 1438, 719, 0, 7992, 841, 1, 0, 0, 0, 7993, 7994, 5, 46, 0, 0, 7994, 7995, 5, 175, 0, 0, 7995, 7997, 3, 1416, 708, 0, 7996, 7998, 3, 14, 7, 0, 7997, 7996, 1, 0, 0, 0, 7997, 7998, 1, 0, 0, 0, 7998, 8000, 1, 0, 0, 0, 7999, 8001, 3, 844, 422, 0, 8000, 7999, 1, 0, 0, 0, 8000, 8001, 1, 0, 0, 0, 8001, 843, 1, 0, 0, 0, 8002, 8003, 3, 846, 423, 0, 8003, 845, 1, 0, 0, 0, 8004, 8006, 3, 848, 424, 0, 8005, 8004, 1, 0, 0, 0, 8006, 8007, 1, 0, 0, 0, 8007, 8005, 1, 0, 0, 0, 8007, 8008, 1, 0, 0, 0, 8008, 847, 1, 0, 0, 0, 8009, 8011, 3, 850, 425, 0, 8010, 8012, 3, 852, 426, 0, 8011, 8010, 1, 0, 0, 0, 8011, 8012, 1, 0, 0, 0, 8012, 8016, 1, 0, 0, 0, 8013, 8017, 3, 1462, 731, 0, 8014, 8017, 3, 72, 36, 0, 8015, 8017, 5, 53, 0, 0, 8016, 8013, 1, 0, 0, 0, 8016, 8014, 1, 0, 0, 0, 8016, 8015, 1, 0, 0, 0, 8017, 849, 1, 0, 0, 0, 8018, 8019, 5, 164, 0, 0, 8019, 8027, 5, 74, 0, 0, 8020, 8027, 5, 194, 0, 0, 8021, 8027, 5, 255, 0, 0, 8022, 8027, 5, 282, 0, 0, 8023, 8027, 5, 351, 0, 0, 8024, 8027, 5, 353, 0, 0, 8025, 8027, 3, 1490, 745, 0, 8026, 8018, 1, 0, 0, 0, 8026, 8020, 1, 0, 0, 0, 8026, 8021, 1, 0, 0, 0, 8026, 8022, 1, 0, 0, 0, 8026, 8023, 1, 0, 0, 0, 8026, 8024, 1, 0, 0, 0, 8026, 8025, 1, 0, 0, 0, 8027, 851, 1, 0, 0, 0, 8028, 8029, 5, 10, 0, 0, 8029, 853, 1, 0, 0, 0, 8030, 8031, 5, 138, 0, 0, 8031, 8032, 5, 175, 0, 0, 8032, 8044, 3, 1418, 709, 0, 8033, 8034, 5, 333, 0, 0, 8034, 8035, 5, 351, 0, 0, 8035, 8037, 3, 1398, 699, 0, 8036, 8033, 1, 0, 0, 0, 8036, 8037, 1, 0, 0, 0, 8037, 8045, 1, 0, 0, 0, 8038, 8040, 5, 105, 0, 0, 8039, 8038, 1, 0, 0, 0, 8039, 8040, 1, 0, 0, 0, 8040, 8041, 1, 0, 0, 0, 8041, 8043, 3, 844, 422, 0, 8042, 8039, 1, 0, 0, 0, 8042, 8043, 1, 0, 0, 0, 8043, 8045, 1, 0, 0, 0, 8044, 8036, 1, 0, 0, 0, 8044, 8042, 1, 0, 0, 0, 8045, 855, 1, 0, 0, 0, 8046, 8047, 5, 138, 0, 0, 8047, 8048, 5, 175, 0, 0, 8048, 8050, 3, 1418, 709, 0, 8049, 8051, 3, 88, 44, 0, 8050, 8049, 1, 0, 0, 0, 8050, 8051, 1, 0, 0, 0, 8051, 857, 1, 0, 0, 0, 8052, 8057, 3, 860, 430, 0, 8053, 8054, 5, 6, 0, 0, 8054, 8056, 3, 860, 430, 0, 8055, 8053, 1, 0, 0, 0, 8056, 8059, 1, 0, 0, 0, 8057, 8055, 1, 0, 0, 0, 8057, 8058, 1, 0, 0, 0, 8058, 859, 1, 0, 0, 0, 8059, 8057, 1, 0, 0, 0, 8060, 8061, 5, 209, 0, 0, 8061, 861, 1, 0, 0, 0, 8062, 8063, 5, 138, 0, 0, 8063, 8064, 5, 108, 0, 0, 8064, 8065, 3, 556, 278, 0, 8065, 8066, 5, 305, 0, 0, 8066, 8067, 5, 375, 0, 0, 8067, 863, 1, 0, 0, 0, 8068, 8069, 5, 138, 0, 0, 8069, 8070, 5, 349, 0, 0, 8070, 8071, 7, 22, 0, 0, 8071, 8072, 3, 58, 29, 0, 8072, 865, 1, 0, 0, 0, 8073, 8074, 5, 46, 0, 0, 8074, 8075, 5, 189, 0, 0, 8075, 8077, 3, 556, 278, 0, 8076, 8078, 3, 870, 435, 0, 8077, 8076, 1, 0, 0, 0, 8077, 8078, 1, 0, 0, 0, 8078, 8079, 1, 0, 0, 0, 8079, 8080, 3, 1166, 583, 0, 8080, 8081, 3, 216, 108, 0, 8081, 867, 1, 0, 0, 0, 8082, 8083, 5, 138, 0, 0, 8083, 8084, 5, 189, 0, 0, 8084, 8106, 3, 556, 278, 0, 8085, 8107, 3, 122, 61, 0, 8086, 8087, 5, 191, 0, 0, 8087, 8088, 5, 77, 0, 0, 8088, 8107, 5, 78, 0, 0, 8089, 8090, 5, 333, 0, 0, 8090, 8091, 5, 77, 0, 0, 8091, 8107, 5, 78, 0, 0, 8092, 8093, 5, 133, 0, 0, 8093, 8107, 3, 236, 118, 0, 8094, 8095, 5, 191, 0, 0, 8095, 8097, 5, 45, 0, 0, 8096, 8098, 3, 746, 373, 0, 8097, 8096, 1, 0, 0, 0, 8097, 8098, 1, 0, 0, 0, 8098, 8099, 1, 0, 0, 0, 8099, 8101, 3, 1434, 717, 0, 8100, 8102, 3, 124, 62, 0, 8101, 8100, 1, 0, 0, 0, 8101, 8102, 1, 0, 0, 0, 8102, 8107, 1, 0, 0, 0, 8103, 8104, 5, 372, 0, 0, 8104, 8105, 5, 45, 0, 0, 8105, 8107, 3, 1434, 717, 0, 8106, 8085, 1, 0, 0, 0, 8106, 8086, 1, 0, 0, 0, 8106, 8089, 1, 0, 0, 0, 8106, 8092, 1, 0, 0, 0, 8106, 8094, 1, 0, 0, 0, 8106, 8103, 1, 0, 0, 0, 8107, 869, 1, 0, 0, 0, 8108, 8109, 5, 36, 0, 0, 8109, 871, 1, 0, 0, 0, 8110, 8111, 5, 138, 0, 0, 8111, 8112, 5, 355, 0, 0, 8112, 8113, 5, 325, 0, 0, 8113, 8114, 5, 185, 0, 0, 8114, 8115, 3, 556, 278, 0, 8115, 8116, 3, 494, 247, 0, 8116, 873, 1, 0, 0, 0, 8117, 8118, 5, 138, 0, 0, 8118, 8119, 5, 355, 0, 0, 8119, 8120, 5, 325, 0, 0, 8120, 8121, 5, 163, 0, 0, 8121, 8122, 3, 556, 278, 0, 8122, 8123, 5, 133, 0, 0, 8123, 8124, 5, 257, 0, 0, 8124, 8125, 5, 62, 0, 0, 8125, 8126, 3, 1414, 707, 0, 8126, 8127, 3, 876, 438, 0, 8127, 8128, 3, 550, 275, 0, 8128, 8181, 1, 0, 0, 0, 8129, 8130, 5, 138, 0, 0, 8130, 8131, 5, 355, 0, 0, 8131, 8132, 5, 325, 0, 0, 8132, 8133, 5, 163, 0, 0, 8133, 8134, 3, 556, 278, 0, 8134, 8135, 5, 138, 0, 0, 8135, 8136, 5, 257, 0, 0, 8136, 8137, 5, 62, 0, 0, 8137, 8138, 3, 1414, 707, 0, 8138, 8139, 3, 876, 438, 0, 8139, 8140, 3, 550, 275, 0, 8140, 8181, 1, 0, 0, 0, 8141, 8142, 5, 138, 0, 0, 8142, 8143, 5, 355, 0, 0, 8143, 8144, 5, 325, 0, 0, 8144, 8145, 5, 163, 0, 0, 8145, 8146, 3, 556, 278, 0, 8146, 8147, 5, 138, 0, 0, 8147, 8148, 5, 257, 0, 0, 8148, 8149, 5, 311, 0, 0, 8149, 8150, 3, 556, 278, 0, 8150, 8151, 3, 876, 438, 0, 8151, 8152, 3, 556, 278, 0, 8152, 8181, 1, 0, 0, 0, 8153, 8154, 5, 138, 0, 0, 8154, 8155, 5, 355, 0, 0, 8155, 8156, 5, 325, 0, 0, 8156, 8157, 5, 163, 0, 0, 8157, 8158, 3, 556, 278, 0, 8158, 8159, 5, 138, 0, 0, 8159, 8160, 5, 257, 0, 0, 8160, 8161, 5, 62, 0, 0, 8161, 8162, 3, 1414, 707, 0, 8162, 8163, 5, 311, 0, 0, 8163, 8164, 3, 556, 278, 0, 8164, 8165, 3, 876, 438, 0, 8165, 8166, 3, 556, 278, 0, 8166, 8181, 1, 0, 0, 0, 8167, 8168, 5, 138, 0, 0, 8168, 8169, 5, 355, 0, 0, 8169, 8170, 5, 325, 0, 0, 8170, 8171, 5, 163, 0, 0, 8171, 8172, 3, 556, 278, 0, 8172, 8173, 5, 191, 0, 0, 8173, 8175, 5, 257, 0, 0, 8174, 8176, 3, 746, 373, 0, 8175, 8174, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8177, 1, 0, 0, 0, 8177, 8178, 5, 62, 0, 0, 8178, 8179, 3, 1414, 707, 0, 8179, 8181, 1, 0, 0, 0, 8180, 8117, 1, 0, 0, 0, 8180, 8129, 1, 0, 0, 0, 8180, 8141, 1, 0, 0, 0, 8180, 8153, 1, 0, 0, 0, 8180, 8167, 1, 0, 0, 0, 8181, 875, 1, 0, 0, 0, 8182, 8183, 5, 105, 0, 0, 8183, 877, 1, 0, 0, 0, 8184, 8186, 5, 46, 0, 0, 8185, 8187, 3, 522, 261, 0, 8186, 8185, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 1, 0, 0, 0, 8188, 8189, 5, 168, 0, 0, 8189, 8190, 3, 556, 278, 0, 8190, 8191, 5, 62, 0, 0, 8191, 8192, 3, 1456, 728, 0, 8192, 8193, 5, 94, 0, 0, 8193, 8194, 3, 1456, 728, 0, 8194, 8195, 5, 64, 0, 0, 8195, 8196, 3, 556, 278, 0, 8196, 879, 1, 0, 0, 0, 8197, 8199, 5, 158, 0, 0, 8198, 8200, 3, 906, 453, 0, 8199, 8198, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8201, 1, 0, 0, 0, 8201, 8203, 3, 1404, 702, 0, 8202, 8204, 3, 884, 442, 0, 8203, 8202, 1, 0, 0, 0, 8203, 8204, 1, 0, 0, 0, 8204, 8216, 1, 0, 0, 0, 8205, 8207, 5, 158, 0, 0, 8206, 8208, 3, 906, 453, 0, 8207, 8206, 1, 0, 0, 0, 8207, 8208, 1, 0, 0, 0, 8208, 8216, 1, 0, 0, 0, 8209, 8210, 5, 158, 0, 0, 8210, 8211, 3, 882, 441, 0, 8211, 8213, 3, 1404, 702, 0, 8212, 8214, 3, 884, 442, 0, 8213, 8212, 1, 0, 0, 0, 8213, 8214, 1, 0, 0, 0, 8214, 8216, 1, 0, 0, 0, 8215, 8197, 1, 0, 0, 0, 8215, 8205, 1, 0, 0, 0, 8215, 8209, 1, 0, 0, 0, 8216, 881, 1, 0, 0, 0, 8217, 8218, 5, 2, 0, 0, 8218, 8223, 3, 906, 453, 0, 8219, 8220, 5, 6, 0, 0, 8220, 8222, 3, 906, 453, 0, 8221, 8219, 1, 0, 0, 0, 8222, 8225, 1, 0, 0, 0, 8223, 8221, 1, 0, 0, 0, 8223, 8224, 1, 0, 0, 0, 8224, 8226, 1, 0, 0, 0, 8225, 8223, 1, 0, 0, 0, 8226, 8227, 5, 3, 0, 0, 8227, 883, 1, 0, 0, 0, 8228, 8229, 5, 100, 0, 0, 8229, 8230, 3, 1434, 717, 0, 8230, 885, 1, 0, 0, 0, 8231, 8233, 5, 370, 0, 0, 8232, 8234, 3, 912, 456, 0, 8233, 8232, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8236, 1, 0, 0, 0, 8235, 8237, 3, 914, 457, 0, 8236, 8235, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8239, 1, 0, 0, 0, 8238, 8240, 3, 906, 453, 0, 8239, 8238, 1, 0, 0, 0, 8239, 8240, 1, 0, 0, 0, 8240, 8242, 1, 0, 0, 0, 8241, 8243, 3, 900, 450, 0, 8242, 8241, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 8245, 1, 0, 0, 0, 8244, 8246, 3, 922, 461, 0, 8245, 8244, 1, 0, 0, 0, 8245, 8246, 1, 0, 0, 0, 8246, 8258, 1, 0, 0, 0, 8247, 8252, 5, 370, 0, 0, 8248, 8249, 5, 2, 0, 0, 8249, 8250, 3, 890, 445, 0, 8250, 8251, 5, 3, 0, 0, 8251, 8253, 1, 0, 0, 0, 8252, 8248, 1, 0, 0, 0, 8252, 8253, 1, 0, 0, 0, 8253, 8255, 1, 0, 0, 0, 8254, 8256, 3, 922, 461, 0, 8255, 8254, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8258, 1, 0, 0, 0, 8257, 8231, 1, 0, 0, 0, 8257, 8247, 1, 0, 0, 0, 8258, 887, 1, 0, 0, 0, 8259, 8261, 3, 892, 446, 0, 8260, 8262, 3, 906, 453, 0, 8261, 8260, 1, 0, 0, 0, 8261, 8262, 1, 0, 0, 0, 8262, 8264, 1, 0, 0, 0, 8263, 8265, 3, 922, 461, 0, 8264, 8263, 1, 0, 0, 0, 8264, 8265, 1, 0, 0, 0, 8265, 8274, 1, 0, 0, 0, 8266, 8267, 3, 892, 446, 0, 8267, 8268, 5, 2, 0, 0, 8268, 8269, 3, 902, 451, 0, 8269, 8271, 5, 3, 0, 0, 8270, 8272, 3, 922, 461, 0, 8271, 8270, 1, 0, 0, 0, 8271, 8272, 1, 0, 0, 0, 8272, 8274, 1, 0, 0, 0, 8273, 8259, 1, 0, 0, 0, 8273, 8266, 1, 0, 0, 0, 8274, 889, 1, 0, 0, 0, 8275, 8280, 3, 894, 447, 0, 8276, 8277, 5, 6, 0, 0, 8277, 8279, 3, 894, 447, 0, 8278, 8276, 1, 0, 0, 0, 8279, 8282, 1, 0, 0, 0, 8280, 8278, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 891, 1, 0, 0, 0, 8282, 8280, 1, 0, 0, 0, 8283, 8284, 7, 51, 0, 0, 8284, 893, 1, 0, 0, 0, 8285, 8287, 3, 896, 448, 0, 8286, 8288, 3, 898, 449, 0, 8287, 8286, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 895, 1, 0, 0, 0, 8289, 8292, 3, 1486, 743, 0, 8290, 8292, 3, 892, 446, 0, 8291, 8289, 1, 0, 0, 0, 8291, 8290, 1, 0, 0, 0, 8292, 897, 1, 0, 0, 0, 8293, 8296, 3, 72, 36, 0, 8294, 8296, 3, 320, 160, 0, 8295, 8293, 1, 0, 0, 0, 8295, 8294, 1, 0, 0, 0, 8296, 899, 1, 0, 0, 0, 8297, 8298, 3, 892, 446, 0, 8298, 901, 1, 0, 0, 0, 8299, 8304, 3, 904, 452, 0, 8300, 8301, 5, 6, 0, 0, 8301, 8303, 3, 904, 452, 0, 8302, 8300, 1, 0, 0, 0, 8303, 8306, 1, 0, 0, 0, 8304, 8302, 1, 0, 0, 0, 8304, 8305, 1, 0, 0, 0, 8305, 903, 1, 0, 0, 0, 8306, 8304, 1, 0, 0, 0, 8307, 8311, 3, 906, 453, 0, 8308, 8311, 3, 908, 454, 0, 8309, 8311, 3, 910, 455, 0, 8310, 8307, 1, 0, 0, 0, 8310, 8308, 1, 0, 0, 0, 8310, 8309, 1, 0, 0, 0, 8311, 905, 1, 0, 0, 0, 8312, 8314, 5, 128, 0, 0, 8313, 8315, 7, 52, 0, 0, 8314, 8313, 1, 0, 0, 0, 8314, 8315, 1, 0, 0, 0, 8315, 907, 1, 0, 0, 0, 8316, 8318, 5, 547, 0, 0, 8317, 8319, 7, 52, 0, 0, 8318, 8317, 1, 0, 0, 0, 8318, 8319, 1, 0, 0, 0, 8319, 909, 1, 0, 0, 0, 8320, 8323, 5, 548, 0, 0, 8321, 8324, 3, 320, 160, 0, 8322, 8324, 3, 1456, 728, 0, 8323, 8321, 1, 0, 0, 0, 8323, 8322, 1, 0, 0, 0, 8324, 911, 1, 0, 0, 0, 8325, 8326, 5, 113, 0, 0, 8326, 913, 1, 0, 0, 0, 8327, 8328, 5, 112, 0, 0, 8328, 915, 1, 0, 0, 0, 8329, 8330, 5, 2, 0, 0, 8330, 8331, 3, 244, 122, 0, 8331, 8332, 5, 3, 0, 0, 8332, 917, 1, 0, 0, 0, 8333, 8335, 3, 1404, 702, 0, 8334, 8336, 3, 916, 458, 0, 8335, 8334, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 919, 1, 0, 0, 0, 8337, 8342, 3, 918, 459, 0, 8338, 8339, 5, 6, 0, 0, 8339, 8341, 3, 918, 459, 0, 8340, 8338, 1, 0, 0, 0, 8341, 8344, 1, 0, 0, 0, 8342, 8340, 1, 0, 0, 0, 8342, 8343, 1, 0, 0, 0, 8343, 921, 1, 0, 0, 0, 8344, 8342, 1, 0, 0, 0, 8345, 8346, 3, 920, 460, 0, 8346, 923, 1, 0, 0, 0, 8347, 8348, 5, 203, 0, 0, 8348, 8366, 3, 926, 463, 0, 8349, 8350, 5, 203, 0, 0, 8350, 8352, 3, 892, 446, 0, 8351, 8353, 3, 906, 453, 0, 8352, 8351, 1, 0, 0, 0, 8352, 8353, 1, 0, 0, 0, 8353, 8354, 1, 0, 0, 0, 8354, 8355, 3, 926, 463, 0, 8355, 8366, 1, 0, 0, 0, 8356, 8357, 5, 203, 0, 0, 8357, 8358, 5, 128, 0, 0, 8358, 8366, 3, 926, 463, 0, 8359, 8360, 5, 203, 0, 0, 8360, 8361, 5, 2, 0, 0, 8361, 8362, 3, 928, 464, 0, 8362, 8363, 5, 3, 0, 0, 8363, 8364, 3, 926, 463, 0, 8364, 8366, 1, 0, 0, 0, 8365, 8347, 1, 0, 0, 0, 8365, 8349, 1, 0, 0, 0, 8365, 8356, 1, 0, 0, 0, 8365, 8359, 1, 0, 0, 0, 8366, 925, 1, 0, 0, 0, 8367, 8377, 3, 998, 499, 0, 8368, 8377, 3, 948, 474, 0, 8369, 8377, 3, 980, 490, 0, 8370, 8377, 3, 966, 483, 0, 8371, 8377, 3, 990, 495, 0, 8372, 8377, 3, 292, 146, 0, 8373, 8377, 3, 298, 149, 0, 8374, 8377, 3, 304, 152, 0, 8375, 8377, 3, 942, 471, 0, 8376, 8367, 1, 0, 0, 0, 8376, 8368, 1, 0, 0, 0, 8376, 8369, 1, 0, 0, 0, 8376, 8370, 1, 0, 0, 0, 8376, 8371, 1, 0, 0, 0, 8376, 8372, 1, 0, 0, 0, 8376, 8373, 1, 0, 0, 0, 8376, 8374, 1, 0, 0, 0, 8376, 8375, 1, 0, 0, 0, 8377, 927, 1, 0, 0, 0, 8378, 8383, 3, 930, 465, 0, 8379, 8380, 5, 6, 0, 0, 8380, 8382, 3, 930, 465, 0, 8381, 8379, 1, 0, 0, 0, 8382, 8385, 1, 0, 0, 0, 8383, 8381, 1, 0, 0, 0, 8383, 8384, 1, 0, 0, 0, 8384, 929, 1, 0, 0, 0, 8385, 8383, 1, 0, 0, 0, 8386, 8388, 3, 932, 466, 0, 8387, 8389, 3, 934, 467, 0, 8388, 8387, 1, 0, 0, 0, 8388, 8389, 1, 0, 0, 0, 8389, 931, 1, 0, 0, 0, 8390, 8393, 3, 1486, 743, 0, 8391, 8393, 3, 892, 446, 0, 8392, 8390, 1, 0, 0, 0, 8392, 8391, 1, 0, 0, 0, 8393, 933, 1, 0, 0, 0, 8394, 8397, 3, 72, 36, 0, 8395, 8397, 3, 320, 160, 0, 8396, 8394, 1, 0, 0, 0, 8396, 8395, 1, 0, 0, 0, 8397, 935, 1, 0, 0, 0, 8398, 8399, 5, 290, 0, 0, 8399, 8401, 3, 1434, 717, 0, 8400, 8402, 3, 938, 469, 0, 8401, 8400, 1, 0, 0, 0, 8401, 8402, 1, 0, 0, 0, 8402, 8403, 1, 0, 0, 0, 8403, 8404, 5, 36, 0, 0, 8404, 8405, 3, 940, 470, 0, 8405, 937, 1, 0, 0, 0, 8406, 8407, 5, 2, 0, 0, 8407, 8408, 3, 1340, 670, 0, 8408, 8409, 5, 3, 0, 0, 8409, 939, 1, 0, 0, 0, 8410, 8415, 3, 998, 499, 0, 8411, 8415, 3, 948, 474, 0, 8412, 8415, 3, 980, 490, 0, 8413, 8415, 3, 966, 483, 0, 8414, 8410, 1, 0, 0, 0, 8414, 8411, 1, 0, 0, 0, 8414, 8412, 1, 0, 0, 0, 8414, 8413, 1, 0, 0, 0, 8415, 941, 1, 0, 0, 0, 8416, 8417, 5, 202, 0, 0, 8417, 8419, 3, 1434, 717, 0, 8418, 8420, 3, 944, 472, 0, 8419, 8418, 1, 0, 0, 0, 8419, 8420, 1, 0, 0, 0, 8420, 8440, 1, 0, 0, 0, 8421, 8423, 5, 46, 0, 0, 8422, 8424, 3, 190, 95, 0, 8423, 8422, 1, 0, 0, 0, 8423, 8424, 1, 0, 0, 0, 8424, 8425, 1, 0, 0, 0, 8425, 8427, 5, 92, 0, 0, 8426, 8428, 3, 514, 257, 0, 8427, 8426, 1, 0, 0, 0, 8427, 8428, 1, 0, 0, 0, 8428, 8429, 1, 0, 0, 0, 8429, 8430, 3, 294, 147, 0, 8430, 8431, 5, 36, 0, 0, 8431, 8432, 5, 202, 0, 0, 8432, 8434, 3, 1434, 717, 0, 8433, 8435, 3, 944, 472, 0, 8434, 8433, 1, 0, 0, 0, 8434, 8435, 1, 0, 0, 0, 8435, 8437, 1, 0, 0, 0, 8436, 8438, 3, 296, 148, 0, 8437, 8436, 1, 0, 0, 0, 8437, 8438, 1, 0, 0, 0, 8438, 8440, 1, 0, 0, 0, 8439, 8416, 1, 0, 0, 0, 8439, 8421, 1, 0, 0, 0, 8440, 943, 1, 0, 0, 0, 8441, 8442, 5, 2, 0, 0, 8442, 8443, 3, 1326, 663, 0, 8443, 8444, 5, 3, 0, 0, 8444, 945, 1, 0, 0, 0, 8445, 8447, 5, 177, 0, 0, 8446, 8448, 5, 290, 0, 0, 8447, 8446, 1, 0, 0, 0, 8447, 8448, 1, 0, 0, 0, 8448, 8451, 1, 0, 0, 0, 8449, 8452, 3, 1434, 717, 0, 8450, 8452, 5, 30, 0, 0, 8451, 8449, 1, 0, 0, 0, 8451, 8450, 1, 0, 0, 0, 8452, 947, 1, 0, 0, 0, 8453, 8455, 3, 1024, 512, 0, 8454, 8453, 1, 0, 0, 0, 8454, 8455, 1, 0, 0, 0, 8455, 8456, 1, 0, 0, 0, 8456, 8457, 5, 241, 0, 0, 8457, 8458, 5, 71, 0, 0, 8458, 8459, 3, 950, 475, 0, 8459, 8461, 3, 952, 476, 0, 8460, 8462, 3, 960, 480, 0, 8461, 8460, 1, 0, 0, 0, 8461, 8462, 1, 0, 0, 0, 8462, 8464, 1, 0, 0, 0, 8463, 8465, 3, 964, 482, 0, 8464, 8463, 1, 0, 0, 0, 8464, 8465, 1, 0, 0, 0, 8465, 949, 1, 0, 0, 0, 8466, 8469, 3, 1404, 702, 0, 8467, 8468, 5, 36, 0, 0, 8468, 8470, 3, 1472, 736, 0, 8469, 8467, 1, 0, 0, 0, 8469, 8470, 1, 0, 0, 0, 8470, 951, 1, 0, 0, 0, 8471, 8472, 5, 2, 0, 0, 8472, 8473, 3, 956, 478, 0, 8473, 8474, 5, 3, 0, 0, 8474, 8476, 1, 0, 0, 0, 8475, 8471, 1, 0, 0, 0, 8475, 8476, 1, 0, 0, 0, 8476, 8481, 1, 0, 0, 0, 8477, 8478, 5, 463, 0, 0, 8478, 8479, 3, 954, 477, 0, 8479, 8480, 5, 450, 0, 0, 8480, 8482, 1, 0, 0, 0, 8481, 8477, 1, 0, 0, 0, 8481, 8482, 1, 0, 0, 0, 8482, 8485, 1, 0, 0, 0, 8483, 8486, 3, 1692, 846, 0, 8484, 8486, 3, 998, 499, 0, 8485, 8483, 1, 0, 0, 0, 8485, 8484, 1, 0, 0, 0, 8486, 953, 1, 0, 0, 0, 8487, 8488, 7, 53, 0, 0, 8488, 955, 1, 0, 0, 0, 8489, 8494, 3, 958, 479, 0, 8490, 8491, 5, 6, 0, 0, 8491, 8493, 3, 958, 479, 0, 8492, 8490, 1, 0, 0, 0, 8493, 8496, 1, 0, 0, 0, 8494, 8492, 1, 0, 0, 0, 8494, 8495, 1, 0, 0, 0, 8495, 957, 1, 0, 0, 0, 8496, 8494, 1, 0, 0, 0, 8497, 8498, 3, 1430, 715, 0, 8498, 8499, 3, 1380, 690, 0, 8499, 959, 1, 0, 0, 0, 8500, 8501, 5, 80, 0, 0, 8501, 8503, 5, 464, 0, 0, 8502, 8504, 3, 962, 481, 0, 8503, 8502, 1, 0, 0, 0, 8503, 8504, 1, 0, 0, 0, 8504, 8505, 1, 0, 0, 0, 8505, 8513, 5, 57, 0, 0, 8506, 8507, 5, 369, 0, 0, 8507, 8508, 5, 333, 0, 0, 8508, 8510, 3, 982, 491, 0, 8509, 8511, 3, 1142, 571, 0, 8510, 8509, 1, 0, 0, 0, 8510, 8511, 1, 0, 0, 0, 8511, 8514, 1, 0, 0, 0, 8512, 8514, 5, 270, 0, 0, 8513, 8506, 1, 0, 0, 0, 8513, 8512, 1, 0, 0, 0, 8514, 961, 1, 0, 0, 0, 8515, 8516, 5, 2, 0, 0, 8516, 8517, 3, 634, 317, 0, 8517, 8519, 5, 3, 0, 0, 8518, 8520, 3, 1142, 571, 0, 8519, 8518, 1, 0, 0, 0, 8519, 8520, 1, 0, 0, 0, 8520, 8525, 1, 0, 0, 0, 8521, 8522, 5, 80, 0, 0, 8522, 8523, 5, 45, 0, 0, 8523, 8525, 3, 1434, 717, 0, 8524, 8515, 1, 0, 0, 0, 8524, 8521, 1, 0, 0, 0, 8525, 963, 1, 0, 0, 0, 8526, 8527, 5, 87, 0, 0, 8527, 8528, 3, 1384, 692, 0, 8528, 965, 1, 0, 0, 0, 8529, 8531, 3, 1024, 512, 0, 8530, 8529, 1, 0, 0, 0, 8530, 8531, 1, 0, 0, 0, 8531, 8532, 1, 0, 0, 0, 8532, 8533, 5, 182, 0, 0, 8533, 8534, 5, 64, 0, 0, 8534, 8536, 3, 1126, 563, 0, 8535, 8537, 3, 968, 484, 0, 8536, 8535, 1, 0, 0, 0, 8536, 8537, 1, 0, 0, 0, 8537, 8539, 1, 0, 0, 0, 8538, 8540, 3, 1144, 572, 0, 8539, 8538, 1, 0, 0, 0, 8539, 8540, 1, 0, 0, 0, 8540, 8542, 1, 0, 0, 0, 8541, 8543, 3, 964, 482, 0, 8542, 8541, 1, 0, 0, 0, 8542, 8543, 1, 0, 0, 0, 8543, 967, 1, 0, 0, 0, 8544, 8545, 5, 100, 0, 0, 8545, 8546, 3, 1102, 551, 0, 8546, 969, 1, 0, 0, 0, 8547, 8549, 5, 256, 0, 0, 8548, 8550, 3, 1032, 516, 0, 8549, 8548, 1, 0, 0, 0, 8549, 8550, 1, 0, 0, 0, 8550, 8551, 1, 0, 0, 0, 8551, 8553, 3, 1122, 561, 0, 8552, 8554, 3, 972, 486, 0, 8553, 8552, 1, 0, 0, 0, 8553, 8554, 1, 0, 0, 0, 8554, 8556, 1, 0, 0, 0, 8555, 8557, 3, 976, 488, 0, 8556, 8555, 1, 0, 0, 0, 8556, 8557, 1, 0, 0, 0, 8557, 971, 1, 0, 0, 0, 8558, 8559, 5, 68, 0, 0, 8559, 8560, 3, 974, 487, 0, 8560, 8561, 5, 263, 0, 0, 8561, 973, 1, 0, 0, 0, 8562, 8563, 5, 131, 0, 0, 8563, 8575, 7, 54, 0, 0, 8564, 8565, 5, 414, 0, 0, 8565, 8575, 7, 54, 0, 0, 8566, 8571, 5, 334, 0, 0, 8567, 8568, 5, 369, 0, 0, 8568, 8572, 5, 201, 0, 0, 8569, 8570, 5, 414, 0, 0, 8570, 8572, 5, 201, 0, 0, 8571, 8567, 1, 0, 0, 0, 8571, 8569, 1, 0, 0, 0, 8571, 8572, 1, 0, 0, 0, 8572, 8575, 1, 0, 0, 0, 8573, 8575, 5, 201, 0, 0, 8574, 8562, 1, 0, 0, 0, 8574, 8564, 1, 0, 0, 0, 8574, 8566, 1, 0, 0, 0, 8574, 8573, 1, 0, 0, 0, 8575, 975, 1, 0, 0, 0, 8576, 8577, 5, 272, 0, 0, 8577, 977, 1, 0, 0, 0, 8578, 8582, 5, 272, 0, 0, 8579, 8580, 5, 465, 0, 0, 8580, 8582, 5, 466, 0, 0, 8581, 8578, 1, 0, 0, 0, 8581, 8579, 1, 0, 0, 0, 8582, 979, 1, 0, 0, 0, 8583, 8585, 3, 1024, 512, 0, 8584, 8583, 1, 0, 0, 0, 8584, 8585, 1, 0, 0, 0, 8585, 8586, 1, 0, 0, 0, 8586, 8587, 5, 369, 0, 0, 8587, 8588, 3, 1126, 563, 0, 8588, 8589, 5, 333, 0, 0, 8589, 8591, 3, 982, 491, 0, 8590, 8592, 3, 1100, 550, 0, 8591, 8590, 1, 0, 0, 0, 8591, 8592, 1, 0, 0, 0, 8592, 8594, 1, 0, 0, 0, 8593, 8595, 3, 1144, 572, 0, 8594, 8593, 1, 0, 0, 0, 8594, 8595, 1, 0, 0, 0, 8595, 8597, 1, 0, 0, 0, 8596, 8598, 3, 964, 482, 0, 8597, 8596, 1, 0, 0, 0, 8597, 8598, 1, 0, 0, 0, 8598, 981, 1, 0, 0, 0, 8599, 8604, 3, 984, 492, 0, 8600, 8601, 5, 6, 0, 0, 8601, 8603, 3, 984, 492, 0, 8602, 8600, 1, 0, 0, 0, 8603, 8606, 1, 0, 0, 0, 8604, 8602, 1, 0, 0, 0, 8604, 8605, 1, 0, 0, 0, 8605, 983, 1, 0, 0, 0, 8606, 8604, 1, 0, 0, 0, 8607, 8608, 3, 986, 493, 0, 8608, 8609, 5, 10, 0, 0, 8609, 8610, 3, 1210, 605, 0, 8610, 8626, 1, 0, 0, 0, 8611, 8612, 5, 2, 0, 0, 8612, 8613, 3, 988, 494, 0, 8613, 8614, 5, 3, 0, 0, 8614, 8623, 5, 10, 0, 0, 8615, 8617, 5, 414, 0, 0, 8616, 8615, 1, 0, 0, 0, 8616, 8617, 1, 0, 0, 0, 8617, 8618, 1, 0, 0, 0, 8618, 8624, 3, 1210, 605, 0, 8619, 8620, 5, 2, 0, 0, 8620, 8621, 3, 1004, 502, 0, 8621, 8622, 5, 3, 0, 0, 8622, 8624, 1, 0, 0, 0, 8623, 8616, 1, 0, 0, 0, 8623, 8619, 1, 0, 0, 0, 8624, 8626, 1, 0, 0, 0, 8625, 8607, 1, 0, 0, 0, 8625, 8611, 1, 0, 0, 0, 8626, 985, 1, 0, 0, 0, 8627, 8628, 3, 1430, 715, 0, 8628, 8629, 3, 1380, 690, 0, 8629, 987, 1, 0, 0, 0, 8630, 8635, 3, 986, 493, 0, 8631, 8632, 5, 6, 0, 0, 8632, 8634, 3, 986, 493, 0, 8633, 8631, 1, 0, 0, 0, 8634, 8637, 1, 0, 0, 0, 8635, 8633, 1, 0, 0, 0, 8635, 8636, 1, 0, 0, 0, 8636, 989, 1, 0, 0, 0, 8637, 8635, 1, 0, 0, 0, 8638, 8639, 5, 178, 0, 0, 8639, 8640, 3, 992, 496, 0, 8640, 8641, 3, 994, 497, 0, 8641, 8642, 5, 172, 0, 0, 8642, 8643, 3, 996, 498, 0, 8643, 8644, 5, 62, 0, 0, 8644, 8645, 3, 998, 499, 0, 8645, 991, 1, 0, 0, 0, 8646, 8647, 3, 1434, 717, 0, 8647, 993, 1, 0, 0, 0, 8648, 8649, 5, 269, 0, 0, 8649, 8654, 5, 324, 0, 0, 8650, 8654, 5, 324, 0, 0, 8651, 8654, 5, 107, 0, 0, 8652, 8654, 5, 240, 0, 0, 8653, 8648, 1, 0, 0, 0, 8653, 8650, 1, 0, 0, 0, 8653, 8651, 1, 0, 0, 0, 8653, 8652, 1, 0, 0, 0, 8654, 8657, 1, 0, 0, 0, 8655, 8653, 1, 0, 0, 0, 8655, 8656, 1, 0, 0, 0, 8656, 995, 1, 0, 0, 0, 8657, 8655, 1, 0, 0, 0, 8658, 8664, 1, 0, 0, 0, 8659, 8660, 5, 105, 0, 0, 8660, 8664, 5, 217, 0, 0, 8661, 8662, 5, 379, 0, 0, 8662, 8664, 5, 217, 0, 0, 8663, 8658, 1, 0, 0, 0, 8663, 8659, 1, 0, 0, 0, 8663, 8661, 1, 0, 0, 0, 8664, 997, 1, 0, 0, 0, 8665, 8668, 3, 1002, 501, 0, 8666, 8668, 3, 1000, 500, 0, 8667, 8665, 1, 0, 0, 0, 8667, 8666, 1, 0, 0, 0, 8668, 999, 1, 0, 0, 0, 8669, 8670, 5, 2, 0, 0, 8670, 8671, 3, 1002, 501, 0, 8671, 8672, 5, 3, 0, 0, 8672, 8678, 1, 0, 0, 0, 8673, 8674, 5, 2, 0, 0, 8674, 8675, 3, 1000, 500, 0, 8675, 8676, 5, 3, 0, 0, 8676, 8678, 1, 0, 0, 0, 8677, 8669, 1, 0, 0, 0, 8677, 8673, 1, 0, 0, 0, 8678, 1001, 1, 0, 0, 0, 8679, 8681, 3, 1004, 502, 0, 8680, 8682, 3, 1040, 520, 0, 8681, 8680, 1, 0, 0, 0, 8681, 8682, 1, 0, 0, 0, 8682, 8691, 1, 0, 0, 0, 8683, 8685, 3, 1086, 543, 0, 8684, 8686, 3, 1050, 525, 0, 8685, 8684, 1, 0, 0, 0, 8685, 8686, 1, 0, 0, 0, 8686, 8692, 1, 0, 0, 0, 8687, 8689, 3, 1048, 524, 0, 8688, 8690, 3, 1088, 544, 0, 8689, 8688, 1, 0, 0, 0, 8689, 8690, 1, 0, 0, 0, 8690, 8692, 1, 0, 0, 0, 8691, 8683, 1, 0, 0, 0, 8691, 8687, 1, 0, 0, 0, 8691, 8692, 1, 0, 0, 0, 8692, 8709, 1, 0, 0, 0, 8693, 8694, 3, 1012, 506, 0, 8694, 8696, 3, 1004, 502, 0, 8695, 8697, 3, 1040, 520, 0, 8696, 8695, 1, 0, 0, 0, 8696, 8697, 1, 0, 0, 0, 8697, 8706, 1, 0, 0, 0, 8698, 8700, 3, 1086, 543, 0, 8699, 8701, 3, 1050, 525, 0, 8700, 8699, 1, 0, 0, 0, 8700, 8701, 1, 0, 0, 0, 8701, 8707, 1, 0, 0, 0, 8702, 8704, 3, 1048, 524, 0, 8703, 8705, 3, 1088, 544, 0, 8704, 8703, 1, 0, 0, 0, 8704, 8705, 1, 0, 0, 0, 8705, 8707, 1, 0, 0, 0, 8706, 8698, 1, 0, 0, 0, 8706, 8702, 1, 0, 0, 0, 8706, 8707, 1, 0, 0, 0, 8707, 8709, 1, 0, 0, 0, 8708, 8679, 1, 0, 0, 0, 8708, 8693, 1, 0, 0, 0, 8709, 1003, 1, 0, 0, 0, 8710, 8713, 3, 1006, 503, 0, 8711, 8713, 3, 1000, 500, 0, 8712, 8710, 1, 0, 0, 0, 8712, 8711, 1, 0, 0, 0, 8713, 1005, 1, 0, 0, 0, 8714, 8730, 5, 88, 0, 0, 8715, 8717, 3, 1038, 519, 0, 8716, 8715, 1, 0, 0, 0, 8716, 8717, 1, 0, 0, 0, 8717, 8719, 1, 0, 0, 0, 8718, 8720, 3, 1026, 513, 0, 8719, 8718, 1, 0, 0, 0, 8719, 8720, 1, 0, 0, 0, 8720, 8722, 1, 0, 0, 0, 8721, 8723, 3, 1382, 691, 0, 8722, 8721, 1, 0, 0, 0, 8722, 8723, 1, 0, 0, 0, 8723, 8731, 1, 0, 0, 0, 8724, 8726, 3, 1036, 518, 0, 8725, 8724, 1, 0, 0, 0, 8725, 8726, 1, 0, 0, 0, 8726, 8728, 1, 0, 0, 0, 8727, 8729, 3, 1384, 692, 0, 8728, 8727, 1, 0, 0, 0, 8728, 8729, 1, 0, 0, 0, 8729, 8731, 1, 0, 0, 0, 8730, 8716, 1, 0, 0, 0, 8730, 8725, 1, 0, 0, 0, 8731, 8733, 1, 0, 0, 0, 8732, 8734, 3, 1026, 513, 0, 8733, 8732, 1, 0, 0, 0, 8733, 8734, 1, 0, 0, 0, 8734, 8736, 1, 0, 0, 0, 8735, 8737, 3, 1100, 550, 0, 8736, 8735, 1, 0, 0, 0, 8736, 8737, 1, 0, 0, 0, 8737, 8739, 1, 0, 0, 0, 8738, 8740, 3, 1142, 571, 0, 8739, 8738, 1, 0, 0, 0, 8739, 8740, 1, 0, 0, 0, 8740, 8742, 1, 0, 0, 0, 8741, 8743, 3, 1070, 535, 0, 8742, 8741, 1, 0, 0, 0, 8742, 8743, 1, 0, 0, 0, 8743, 8745, 1, 0, 0, 0, 8744, 8746, 3, 1084, 542, 0, 8745, 8744, 1, 0, 0, 0, 8745, 8746, 1, 0, 0, 0, 8746, 8748, 1, 0, 0, 0, 8747, 8749, 3, 1286, 643, 0, 8748, 8747, 1, 0, 0, 0, 8748, 8749, 1, 0, 0, 0, 8749, 8760, 1, 0, 0, 0, 8750, 8760, 3, 1098, 549, 0, 8751, 8752, 5, 92, 0, 0, 8752, 8760, 3, 1116, 558, 0, 8753, 8754, 3, 1000, 500, 0, 8754, 8757, 3, 1010, 505, 0, 8755, 8758, 3, 1006, 503, 0, 8756, 8758, 3, 1000, 500, 0, 8757, 8755, 1, 0, 0, 0, 8757, 8756, 1, 0, 0, 0, 8758, 8760, 1, 0, 0, 0, 8759, 8714, 1, 0, 0, 0, 8759, 8750, 1, 0, 0, 0, 8759, 8751, 1, 0, 0, 0, 8759, 8753, 1, 0, 0, 0, 8760, 8768, 1, 0, 0, 0, 8761, 8764, 3, 1010, 505, 0, 8762, 8765, 3, 1006, 503, 0, 8763, 8765, 3, 1000, 500, 0, 8764, 8762, 1, 0, 0, 0, 8764, 8763, 1, 0, 0, 0, 8765, 8767, 1, 0, 0, 0, 8766, 8761, 1, 0, 0, 0, 8767, 8770, 1, 0, 0, 0, 8768, 8766, 1, 0, 0, 0, 8768, 8769, 1, 0, 0, 0, 8769, 1007, 1, 0, 0, 0, 8770, 8768, 1, 0, 0, 0, 8771, 8775, 5, 97, 0, 0, 8772, 8775, 5, 70, 0, 0, 8773, 8775, 5, 59, 0, 0, 8774, 8771, 1, 0, 0, 0, 8774, 8772, 1, 0, 0, 0, 8774, 8773, 1, 0, 0, 0, 8775, 1009, 1, 0, 0, 0, 8776, 8778, 3, 1008, 504, 0, 8777, 8779, 3, 1034, 517, 0, 8778, 8777, 1, 0, 0, 0, 8778, 8779, 1, 0, 0, 0, 8779, 1011, 1, 0, 0, 0, 8780, 8782, 5, 105, 0, 0, 8781, 8783, 5, 303, 0, 0, 8782, 8781, 1, 0, 0, 0, 8782, 8783, 1, 0, 0, 0, 8783, 8784, 1, 0, 0, 0, 8784, 8785, 3, 1014, 507, 0, 8785, 1013, 1, 0, 0, 0, 8786, 8791, 3, 1016, 508, 0, 8787, 8788, 5, 6, 0, 0, 8788, 8790, 3, 1016, 508, 0, 8789, 8787, 1, 0, 0, 0, 8790, 8793, 1, 0, 0, 0, 8791, 8789, 1, 0, 0, 0, 8791, 8792, 1, 0, 0, 0, 8792, 1015, 1, 0, 0, 0, 8793, 8791, 1, 0, 0, 0, 8794, 8796, 3, 1434, 717, 0, 8795, 8797, 3, 916, 458, 0, 8796, 8795, 1, 0, 0, 0, 8796, 8797, 1, 0, 0, 0, 8797, 8798, 1, 0, 0, 0, 8798, 8800, 5, 36, 0, 0, 8799, 8801, 3, 1022, 511, 0, 8800, 8799, 1, 0, 0, 0, 8800, 8801, 1, 0, 0, 0, 8801, 8802, 1, 0, 0, 0, 8802, 8803, 5, 2, 0, 0, 8803, 8804, 3, 940, 470, 0, 8804, 8806, 5, 3, 0, 0, 8805, 8807, 3, 1018, 509, 0, 8806, 8805, 1, 0, 0, 0, 8806, 8807, 1, 0, 0, 0, 8807, 8809, 1, 0, 0, 0, 8808, 8810, 3, 1020, 510, 0, 8809, 8808, 1, 0, 0, 0, 8809, 8810, 1, 0, 0, 0, 8810, 1017, 1, 0, 0, 0, 8811, 8812, 5, 325, 0, 0, 8812, 8813, 7, 55, 0, 0, 8813, 8814, 5, 207, 0, 0, 8814, 8815, 5, 147, 0, 0, 8815, 8816, 3, 244, 122, 0, 8816, 8817, 5, 333, 0, 0, 8817, 8818, 3, 1430, 715, 0, 8818, 1019, 1, 0, 0, 0, 8819, 8820, 5, 173, 0, 0, 8820, 8821, 3, 244, 122, 0, 8821, 8822, 5, 333, 0, 0, 8822, 8828, 3, 1430, 715, 0, 8823, 8824, 5, 94, 0, 0, 8824, 8825, 3, 1434, 717, 0, 8825, 8826, 5, 53, 0, 0, 8826, 8827, 3, 1434, 717, 0, 8827, 8829, 1, 0, 0, 0, 8828, 8823, 1, 0, 0, 0, 8828, 8829, 1, 0, 0, 0, 8829, 8830, 1, 0, 0, 0, 8830, 8831, 5, 100, 0, 0, 8831, 8832, 3, 1430, 715, 0, 8832, 1021, 1, 0, 0, 0, 8833, 8837, 5, 259, 0, 0, 8834, 8835, 5, 77, 0, 0, 8835, 8837, 5, 259, 0, 0, 8836, 8833, 1, 0, 0, 0, 8836, 8834, 1, 0, 0, 0, 8837, 1023, 1, 0, 0, 0, 8838, 8839, 3, 1012, 506, 0, 8839, 1025, 1, 0, 0, 0, 8840, 8845, 5, 71, 0, 0, 8841, 8842, 3, 1028, 514, 0, 8842, 8843, 3, 1030, 515, 0, 8843, 8846, 1, 0, 0, 0, 8844, 8846, 3, 1672, 836, 0, 8845, 8841, 1, 0, 0, 0, 8845, 8844, 1, 0, 0, 0, 8846, 1027, 1, 0, 0, 0, 8847, 8850, 1, 0, 0, 0, 8848, 8850, 5, 346, 0, 0, 8849, 8847, 1, 0, 0, 0, 8849, 8848, 1, 0, 0, 0, 8850, 1029, 1, 0, 0, 0, 8851, 8853, 7, 56, 0, 0, 8852, 8851, 1, 0, 0, 0, 8852, 8853, 1, 0, 0, 0, 8853, 8854, 1, 0, 0, 0, 8854, 8856, 7, 25, 0, 0, 8855, 8857, 3, 1032, 516, 0, 8856, 8855, 1, 0, 0, 0, 8856, 8857, 1, 0, 0, 0, 8857, 8858, 1, 0, 0, 0, 8858, 8868, 3, 1402, 701, 0, 8859, 8861, 5, 367, 0, 0, 8860, 8862, 3, 1032, 516, 0, 8861, 8860, 1, 0, 0, 0, 8861, 8862, 1, 0, 0, 0, 8862, 8863, 1, 0, 0, 0, 8863, 8868, 3, 1402, 701, 0, 8864, 8865, 5, 92, 0, 0, 8865, 8868, 3, 1402, 701, 0, 8866, 8868, 3, 1402, 701, 0, 8867, 8852, 1, 0, 0, 0, 8867, 8859, 1, 0, 0, 0, 8867, 8864, 1, 0, 0, 0, 8867, 8866, 1, 0, 0, 0, 8868, 1031, 1, 0, 0, 0, 8869, 8870, 5, 92, 0, 0, 8870, 1033, 1, 0, 0, 0, 8871, 8872, 7, 57, 0, 0, 8872, 1035, 1, 0, 0, 0, 8873, 8879, 5, 56, 0, 0, 8874, 8875, 5, 80, 0, 0, 8875, 8876, 5, 2, 0, 0, 8876, 8877, 3, 1326, 663, 0, 8877, 8878, 5, 3, 0, 0, 8878, 8880, 1, 0, 0, 0, 8879, 8874, 1, 0, 0, 0, 8879, 8880, 1, 0, 0, 0, 8880, 1037, 1, 0, 0, 0, 8881, 8882, 5, 30, 0, 0, 8882, 1039, 1, 0, 0, 0, 8883, 8884, 3, 1042, 521, 0, 8884, 1041, 1, 0, 0, 0, 8885, 8886, 5, 83, 0, 0, 8886, 8887, 5, 147, 0, 0, 8887, 8888, 3, 1044, 522, 0, 8888, 1043, 1, 0, 0, 0, 8889, 8894, 3, 1046, 523, 0, 8890, 8891, 5, 6, 0, 0, 8891, 8893, 3, 1046, 523, 0, 8892, 8890, 1, 0, 0, 0, 8893, 8896, 1, 0, 0, 0, 8894, 8892, 1, 0, 0, 0, 8894, 8895, 1, 0, 0, 0, 8895, 1045, 1, 0, 0, 0, 8896, 8894, 1, 0, 0, 0, 8897, 8901, 3, 1334, 667, 0, 8898, 8899, 5, 100, 0, 0, 8899, 8902, 3, 1322, 661, 0, 8900, 8902, 3, 648, 324, 0, 8901, 8898, 1, 0, 0, 0, 8901, 8900, 1, 0, 0, 0, 8901, 8902, 1, 0, 0, 0, 8902, 8904, 1, 0, 0, 0, 8903, 8905, 3, 650, 325, 0, 8904, 8903, 1, 0, 0, 0, 8904, 8905, 1, 0, 0, 0, 8905, 1047, 1, 0, 0, 0, 8906, 8908, 3, 1052, 526, 0, 8907, 8909, 3, 1056, 528, 0, 8908, 8907, 1, 0, 0, 0, 8908, 8909, 1, 0, 0, 0, 8909, 8919, 1, 0, 0, 0, 8910, 8912, 3, 1056, 528, 0, 8911, 8913, 3, 1054, 527, 0, 8912, 8911, 1, 0, 0, 0, 8912, 8913, 1, 0, 0, 0, 8913, 8919, 1, 0, 0, 0, 8914, 8916, 3, 1054, 527, 0, 8915, 8917, 3, 1056, 528, 0, 8916, 8915, 1, 0, 0, 0, 8916, 8917, 1, 0, 0, 0, 8917, 8919, 1, 0, 0, 0, 8918, 8906, 1, 0, 0, 0, 8918, 8910, 1, 0, 0, 0, 8918, 8914, 1, 0, 0, 0, 8919, 1049, 1, 0, 0, 0, 8920, 8921, 3, 1048, 524, 0, 8921, 1051, 1, 0, 0, 0, 8922, 8923, 5, 74, 0, 0, 8923, 8926, 3, 1058, 529, 0, 8924, 8925, 5, 6, 0, 0, 8925, 8927, 3, 1060, 530, 0, 8926, 8924, 1, 0, 0, 0, 8926, 8927, 1, 0, 0, 0, 8927, 1053, 1, 0, 0, 0, 8928, 8929, 5, 61, 0, 0, 8929, 8943, 3, 1068, 534, 0, 8930, 8931, 3, 1062, 531, 0, 8931, 8935, 3, 1066, 533, 0, 8932, 8936, 5, 81, 0, 0, 8933, 8934, 5, 105, 0, 0, 8934, 8936, 5, 467, 0, 0, 8935, 8932, 1, 0, 0, 0, 8935, 8933, 1, 0, 0, 0, 8936, 8944, 1, 0, 0, 0, 8937, 8941, 3, 1066, 533, 0, 8938, 8942, 5, 81, 0, 0, 8939, 8940, 5, 105, 0, 0, 8940, 8942, 5, 467, 0, 0, 8941, 8938, 1, 0, 0, 0, 8941, 8939, 1, 0, 0, 0, 8942, 8944, 1, 0, 0, 0, 8943, 8930, 1, 0, 0, 0, 8943, 8937, 1, 0, 0, 0, 8944, 1055, 1, 0, 0, 0, 8945, 8950, 5, 79, 0, 0, 8946, 8947, 3, 1062, 531, 0, 8947, 8948, 3, 1066, 533, 0, 8948, 8951, 1, 0, 0, 0, 8949, 8951, 3, 1060, 530, 0, 8950, 8946, 1, 0, 0, 0, 8950, 8949, 1, 0, 0, 0, 8951, 1057, 1, 0, 0, 0, 8952, 8955, 3, 1210, 605, 0, 8953, 8955, 5, 30, 0, 0, 8954, 8952, 1, 0, 0, 0, 8954, 8953, 1, 0, 0, 0, 8955, 1059, 1, 0, 0, 0, 8956, 8957, 3, 1210, 605, 0, 8957, 1061, 1, 0, 0, 0, 8958, 8959, 5, 12, 0, 0, 8959, 8964, 3, 1064, 532, 0, 8960, 8961, 5, 13, 0, 0, 8961, 8964, 3, 1064, 532, 0, 8962, 8964, 3, 1252, 626, 0, 8963, 8958, 1, 0, 0, 0, 8963, 8960, 1, 0, 0, 0, 8963, 8962, 1, 0, 0, 0, 8964, 1063, 1, 0, 0, 0, 8965, 8968, 3, 1454, 727, 0, 8966, 8968, 3, 1452, 726, 0, 8967, 8965, 1, 0, 0, 0, 8967, 8966, 1, 0, 0, 0, 8968, 1065, 1, 0, 0, 0, 8969, 8970, 7, 58, 0, 0, 8970, 1067, 1, 0, 0, 0, 8971, 8972, 7, 59, 0, 0, 8972, 1069, 1, 0, 0, 0, 8973, 8974, 5, 66, 0, 0, 8974, 8976, 5, 147, 0, 0, 8975, 8977, 3, 1034, 517, 0, 8976, 8975, 1, 0, 0, 0, 8976, 8977, 1, 0, 0, 0, 8977, 8978, 1, 0, 0, 0, 8978, 8979, 3, 1072, 536, 0, 8979, 1071, 1, 0, 0, 0, 8980, 8985, 3, 1074, 537, 0, 8981, 8982, 5, 6, 0, 0, 8982, 8984, 3, 1074, 537, 0, 8983, 8981, 1, 0, 0, 0, 8984, 8987, 1, 0, 0, 0, 8985, 8983, 1, 0, 0, 0, 8985, 8986, 1, 0, 0, 0, 8986, 1073, 1, 0, 0, 0, 8987, 8985, 1, 0, 0, 0, 8988, 8998, 3, 1334, 667, 0, 8989, 8998, 3, 1076, 538, 0, 8990, 8998, 3, 1080, 540, 0, 8991, 8998, 3, 1078, 539, 0, 8992, 8998, 3, 1082, 541, 0, 8993, 8994, 5, 2, 0, 0, 8994, 8995, 3, 1328, 664, 0, 8995, 8996, 5, 3, 0, 0, 8996, 8998, 1, 0, 0, 0, 8997, 8988, 1, 0, 0, 0, 8997, 8989, 1, 0, 0, 0, 8997, 8990, 1, 0, 0, 0, 8997, 8991, 1, 0, 0, 0, 8997, 8992, 1, 0, 0, 0, 8997, 8993, 1, 0, 0, 0, 8998, 1075, 1, 0, 0, 0, 8999, 9000, 5, 2, 0, 0, 9000, 9001, 5, 3, 0, 0, 9001, 1077, 1, 0, 0, 0, 9002, 9003, 5, 468, 0, 0, 9003, 9004, 5, 2, 0, 0, 9004, 9005, 3, 1328, 664, 0, 9005, 9006, 5, 3, 0, 0, 9006, 1079, 1, 0, 0, 0, 9007, 9008, 5, 469, 0, 0, 9008, 9009, 5, 2, 0, 0, 9009, 9010, 3, 1328, 664, 0, 9010, 9011, 5, 3, 0, 0, 9011, 1081, 1, 0, 0, 0, 9012, 9013, 5, 470, 0, 0, 9013, 9014, 5, 471, 0, 0, 9014, 9015, 5, 2, 0, 0, 9015, 9016, 3, 1072, 536, 0, 9016, 9017, 5, 3, 0, 0, 9017, 1083, 1, 0, 0, 0, 9018, 9019, 5, 67, 0, 0, 9019, 9020, 3, 1210, 605, 0, 9020, 1085, 1, 0, 0, 0, 9021, 9026, 3, 1090, 545, 0, 9022, 9023, 5, 62, 0, 0, 9023, 9024, 5, 300, 0, 0, 9024, 9026, 5, 81, 0, 0, 9025, 9021, 1, 0, 0, 0, 9025, 9022, 1, 0, 0, 0, 9026, 1087, 1, 0, 0, 0, 9027, 9028, 3, 1086, 543, 0, 9028, 1089, 1, 0, 0, 0, 9029, 9031, 3, 1092, 546, 0, 9030, 9029, 1, 0, 0, 0, 9031, 9032, 1, 0, 0, 0, 9032, 9030, 1, 0, 0, 0, 9032, 9033, 1, 0, 0, 0, 9033, 1091, 1, 0, 0, 0, 9034, 9036, 3, 1094, 547, 0, 9035, 9037, 3, 1096, 548, 0, 9036, 9035, 1, 0, 0, 0, 9036, 9037, 1, 0, 0, 0, 9037, 9039, 1, 0, 0, 0, 9038, 9040, 3, 978, 489, 0, 9039, 9038, 1, 0, 0, 0, 9039, 9040, 1, 0, 0, 0, 9040, 1093, 1, 0, 0, 0, 9041, 9051, 5, 62, 0, 0, 9042, 9043, 5, 269, 0, 0, 9043, 9045, 5, 245, 0, 0, 9044, 9042, 1, 0, 0, 0, 9044, 9045, 1, 0, 0, 0, 9045, 9046, 1, 0, 0, 0, 9046, 9052, 5, 369, 0, 0, 9047, 9049, 5, 245, 0, 0, 9048, 9047, 1, 0, 0, 0, 9048, 9049, 1, 0, 0, 0, 9049, 9050, 1, 0, 0, 0, 9050, 9052, 5, 334, 0, 0, 9051, 9044, 1, 0, 0, 0, 9051, 9048, 1, 0, 0, 0, 9052, 1095, 1, 0, 0, 0, 9053, 9054, 5, 275, 0, 0, 9054, 9055, 3, 1388, 694, 0, 9055, 1097, 1, 0, 0, 0, 9056, 9057, 5, 422, 0, 0, 9057, 9058, 5, 2, 0, 0, 9058, 9059, 3, 1326, 663, 0, 9059, 9067, 5, 3, 0, 0, 9060, 9061, 5, 6, 0, 0, 9061, 9062, 5, 2, 0, 0, 9062, 9063, 3, 1326, 663, 0, 9063, 9064, 5, 3, 0, 0, 9064, 9066, 1, 0, 0, 0, 9065, 9060, 1, 0, 0, 0, 9066, 9069, 1, 0, 0, 0, 9067, 9065, 1, 0, 0, 0, 9067, 9068, 1, 0, 0, 0, 9068, 1099, 1, 0, 0, 0, 9069, 9067, 1, 0, 0, 0, 9070, 9071, 5, 64, 0, 0, 9071, 9072, 3, 1102, 551, 0, 9072, 1101, 1, 0, 0, 0, 9073, 9078, 3, 1104, 552, 0, 9074, 9075, 5, 6, 0, 0, 9075, 9077, 3, 1104, 552, 0, 9076, 9074, 1, 0, 0, 0, 9077, 9080, 1, 0, 0, 0, 9078, 9076, 1, 0, 0, 0, 9078, 9079, 1, 0, 0, 0, 9079, 1103, 1, 0, 0, 0, 9080, 9078, 1, 0, 0, 0, 9081, 9084, 3, 1116, 558, 0, 9082, 9084, 3, 1118, 559, 0, 9083, 9081, 1, 0, 0, 0, 9083, 9082, 1, 0, 0, 0, 9084, 9086, 1, 0, 0, 0, 9085, 9087, 3, 1108, 554, 0, 9086, 9085, 1, 0, 0, 0, 9086, 9087, 1, 0, 0, 0, 9087, 9089, 1, 0, 0, 0, 9088, 9090, 3, 1128, 564, 0, 9089, 9088, 1, 0, 0, 0, 9089, 9090, 1, 0, 0, 0, 9090, 9143, 1, 0, 0, 0, 9091, 9093, 3, 1132, 566, 0, 9092, 9094, 3, 1110, 555, 0, 9093, 9092, 1, 0, 0, 0, 9093, 9094, 1, 0, 0, 0, 9094, 9143, 1, 0, 0, 0, 9095, 9097, 3, 1152, 576, 0, 9096, 9098, 3, 1108, 554, 0, 9097, 9096, 1, 0, 0, 0, 9097, 9098, 1, 0, 0, 0, 9098, 9143, 1, 0, 0, 0, 9099, 9101, 3, 1000, 500, 0, 9100, 9102, 3, 1108, 554, 0, 9101, 9100, 1, 0, 0, 0, 9101, 9102, 1, 0, 0, 0, 9102, 9143, 1, 0, 0, 0, 9103, 9116, 5, 72, 0, 0, 9104, 9106, 3, 1152, 576, 0, 9105, 9107, 3, 1108, 554, 0, 9106, 9105, 1, 0, 0, 0, 9106, 9107, 1, 0, 0, 0, 9107, 9117, 1, 0, 0, 0, 9108, 9110, 3, 1132, 566, 0, 9109, 9111, 3, 1110, 555, 0, 9110, 9109, 1, 0, 0, 0, 9110, 9111, 1, 0, 0, 0, 9111, 9117, 1, 0, 0, 0, 9112, 9114, 3, 1000, 500, 0, 9113, 9115, 3, 1108, 554, 0, 9114, 9113, 1, 0, 0, 0, 9114, 9115, 1, 0, 0, 0, 9115, 9117, 1, 0, 0, 0, 9116, 9104, 1, 0, 0, 0, 9116, 9108, 1, 0, 0, 0, 9116, 9112, 1, 0, 0, 0, 9117, 9143, 1, 0, 0, 0, 9118, 9119, 5, 2, 0, 0, 9119, 9136, 3, 1104, 552, 0, 9120, 9121, 5, 110, 0, 0, 9121, 9122, 5, 118, 0, 0, 9122, 9137, 3, 1104, 552, 0, 9123, 9125, 5, 121, 0, 0, 9124, 9126, 3, 1112, 556, 0, 9125, 9124, 1, 0, 0, 0, 9125, 9126, 1, 0, 0, 0, 9126, 9127, 1, 0, 0, 0, 9127, 9128, 5, 118, 0, 0, 9128, 9137, 3, 1104, 552, 0, 9129, 9131, 3, 1112, 556, 0, 9130, 9129, 1, 0, 0, 0, 9130, 9131, 1, 0, 0, 0, 9131, 9132, 1, 0, 0, 0, 9132, 9133, 5, 118, 0, 0, 9133, 9134, 3, 1104, 552, 0, 9134, 9135, 3, 1114, 557, 0, 9135, 9137, 1, 0, 0, 0, 9136, 9120, 1, 0, 0, 0, 9136, 9123, 1, 0, 0, 0, 9136, 9130, 1, 0, 0, 0, 9136, 9137, 1, 0, 0, 0, 9137, 9138, 1, 0, 0, 0, 9138, 9140, 5, 3, 0, 0, 9139, 9141, 3, 1108, 554, 0, 9140, 9139, 1, 0, 0, 0, 9140, 9141, 1, 0, 0, 0, 9141, 9143, 1, 0, 0, 0, 9142, 9083, 1, 0, 0, 0, 9142, 9091, 1, 0, 0, 0, 9142, 9095, 1, 0, 0, 0, 9142, 9099, 1, 0, 0, 0, 9142, 9103, 1, 0, 0, 0, 9142, 9118, 1, 0, 0, 0, 9143, 9162, 1, 0, 0, 0, 9144, 9145, 5, 110, 0, 0, 9145, 9146, 5, 118, 0, 0, 9146, 9161, 3, 1104, 552, 0, 9147, 9149, 5, 121, 0, 0, 9148, 9150, 3, 1112, 556, 0, 9149, 9148, 1, 0, 0, 0, 9149, 9150, 1, 0, 0, 0, 9150, 9151, 1, 0, 0, 0, 9151, 9152, 5, 118, 0, 0, 9152, 9161, 3, 1104, 552, 0, 9153, 9155, 3, 1112, 556, 0, 9154, 9153, 1, 0, 0, 0, 9154, 9155, 1, 0, 0, 0, 9155, 9156, 1, 0, 0, 0, 9156, 9157, 5, 118, 0, 0, 9157, 9158, 3, 1104, 552, 0, 9158, 9159, 3, 1114, 557, 0, 9159, 9161, 1, 0, 0, 0, 9160, 9144, 1, 0, 0, 0, 9160, 9147, 1, 0, 0, 0, 9160, 9154, 1, 0, 0, 0, 9161, 9164, 1, 0, 0, 0, 9162, 9160, 1, 0, 0, 0, 9162, 9163, 1, 0, 0, 0, 9163, 1105, 1, 0, 0, 0, 9164, 9162, 1, 0, 0, 0, 9165, 9167, 5, 36, 0, 0, 9166, 9165, 1, 0, 0, 0, 9166, 9167, 1, 0, 0, 0, 9167, 9168, 1, 0, 0, 0, 9168, 9173, 3, 1472, 736, 0, 9169, 9170, 5, 2, 0, 0, 9170, 9171, 3, 1414, 707, 0, 9171, 9172, 5, 3, 0, 0, 9172, 9174, 1, 0, 0, 0, 9173, 9169, 1, 0, 0, 0, 9173, 9174, 1, 0, 0, 0, 9174, 1107, 1, 0, 0, 0, 9175, 9176, 3, 1106, 553, 0, 9176, 1109, 1, 0, 0, 0, 9177, 9190, 3, 1106, 553, 0, 9178, 9180, 5, 36, 0, 0, 9179, 9181, 3, 1472, 736, 0, 9180, 9179, 1, 0, 0, 0, 9180, 9181, 1, 0, 0, 0, 9181, 9184, 1, 0, 0, 0, 9182, 9184, 3, 1472, 736, 0, 9183, 9178, 1, 0, 0, 0, 9183, 9182, 1, 0, 0, 0, 9184, 9185, 1, 0, 0, 0, 9185, 9186, 5, 2, 0, 0, 9186, 9187, 3, 1148, 574, 0, 9187, 9188, 5, 3, 0, 0, 9188, 9190, 1, 0, 0, 0, 9189, 9177, 1, 0, 0, 0, 9189, 9183, 1, 0, 0, 0, 9190, 1111, 1, 0, 0, 0, 9191, 9193, 7, 60, 0, 0, 9192, 9194, 5, 123, 0, 0, 9193, 9192, 1, 0, 0, 0, 9193, 9194, 1, 0, 0, 0, 9194, 1113, 1, 0, 0, 0, 9195, 9196, 5, 100, 0, 0, 9196, 9197, 5, 2, 0, 0, 9197, 9198, 3, 244, 122, 0, 9198, 9199, 5, 3, 0, 0, 9199, 9203, 1, 0, 0, 0, 9200, 9201, 5, 80, 0, 0, 9201, 9203, 3, 1210, 605, 0, 9202, 9195, 1, 0, 0, 0, 9202, 9200, 1, 0, 0, 0, 9203, 1115, 1, 0, 0, 0, 9204, 9206, 5, 81, 0, 0, 9205, 9204, 1, 0, 0, 0, 9205, 9206, 1, 0, 0, 0, 9206, 9207, 1, 0, 0, 0, 9207, 9209, 3, 1404, 702, 0, 9208, 9210, 5, 9, 0, 0, 9209, 9208, 1, 0, 0, 0, 9209, 9210, 1, 0, 0, 0, 9210, 9226, 1, 0, 0, 0, 9211, 9217, 5, 81, 0, 0, 9212, 9218, 3, 1404, 702, 0, 9213, 9214, 5, 2, 0, 0, 9214, 9215, 3, 1404, 702, 0, 9215, 9216, 5, 3, 0, 0, 9216, 9218, 1, 0, 0, 0, 9217, 9212, 1, 0, 0, 0, 9217, 9213, 1, 0, 0, 0, 9218, 9226, 1, 0, 0, 0, 9219, 9220, 5, 68, 0, 0, 9220, 9223, 5, 323, 0, 0, 9221, 9224, 3, 1420, 710, 0, 9222, 9224, 5, 111, 0, 0, 9223, 9221, 1, 0, 0, 0, 9223, 9222, 1, 0, 0, 0, 9224, 9226, 1, 0, 0, 0, 9225, 9205, 1, 0, 0, 0, 9225, 9211, 1, 0, 0, 0, 9225, 9219, 1, 0, 0, 0, 9226, 1117, 1, 0, 0, 0, 9227, 9229, 5, 81, 0, 0, 9228, 9227, 1, 0, 0, 0, 9228, 9229, 1, 0, 0, 0, 9229, 9230, 1, 0, 0, 0, 9230, 9232, 3, 1408, 704, 0, 9231, 9233, 5, 9, 0, 0, 9232, 9231, 1, 0, 0, 0, 9232, 9233, 1, 0, 0, 0, 9233, 1119, 1, 0, 0, 0, 9234, 9236, 5, 92, 0, 0, 9235, 9237, 5, 81, 0, 0, 9236, 9235, 1, 0, 0, 0, 9236, 9237, 1, 0, 0, 0, 9237, 9238, 1, 0, 0, 0, 9238, 9240, 3, 1404, 702, 0, 9239, 9241, 5, 9, 0, 0, 9240, 9239, 1, 0, 0, 0, 9240, 9241, 1, 0, 0, 0, 9241, 9246, 1, 0, 0, 0, 9242, 9243, 5, 2, 0, 0, 9243, 9244, 3, 244, 122, 0, 9244, 9245, 5, 3, 0, 0, 9245, 9247, 1, 0, 0, 0, 9246, 9242, 1, 0, 0, 0, 9246, 9247, 1, 0, 0, 0, 9247, 9249, 1, 0, 0, 0, 9248, 9250, 3, 1142, 571, 0, 9249, 9248, 1, 0, 0, 0, 9249, 9250, 1, 0, 0, 0, 9250, 9268, 1, 0, 0, 0, 9251, 9252, 5, 92, 0, 0, 9252, 9258, 5, 81, 0, 0, 9253, 9259, 3, 1404, 702, 0, 9254, 9255, 5, 2, 0, 0, 9255, 9256, 3, 1404, 702, 0, 9256, 9257, 5, 3, 0, 0, 9257, 9259, 1, 0, 0, 0, 9258, 9253, 1, 0, 0, 0, 9258, 9254, 1, 0, 0, 0, 9259, 9268, 1, 0, 0, 0, 9260, 9261, 5, 350, 0, 0, 9261, 9262, 5, 68, 0, 0, 9262, 9265, 5, 323, 0, 0, 9263, 9266, 3, 1420, 710, 0, 9264, 9266, 5, 111, 0, 0, 9265, 9263, 1, 0, 0, 0, 9265, 9264, 1, 0, 0, 0, 9266, 9268, 1, 0, 0, 0, 9267, 9234, 1, 0, 0, 0, 9267, 9251, 1, 0, 0, 0, 9267, 9260, 1, 0, 0, 0, 9268, 1121, 1, 0, 0, 0, 9269, 9274, 3, 1116, 558, 0, 9270, 9271, 5, 6, 0, 0, 9271, 9273, 3, 1116, 558, 0, 9272, 9270, 1, 0, 0, 0, 9273, 9276, 1, 0, 0, 0, 9274, 9272, 1, 0, 0, 0, 9274, 9275, 1, 0, 0, 0, 9275, 1123, 1, 0, 0, 0, 9276, 9274, 1, 0, 0, 0, 9277, 9282, 3, 1120, 560, 0, 9278, 9279, 5, 6, 0, 0, 9279, 9281, 3, 1120, 560, 0, 9280, 9278, 1, 0, 0, 0, 9281, 9284, 1, 0, 0, 0, 9282, 9280, 1, 0, 0, 0, 9282, 9283, 1, 0, 0, 0, 9283, 1125, 1, 0, 0, 0, 9284, 9282, 1, 0, 0, 0, 9285, 9290, 3, 1116, 558, 0, 9286, 9288, 5, 36, 0, 0, 9287, 9286, 1, 0, 0, 0, 9287, 9288, 1, 0, 0, 0, 9288, 9289, 1, 0, 0, 0, 9289, 9291, 3, 1472, 736, 0, 9290, 9287, 1, 0, 0, 0, 9290, 9291, 1, 0, 0, 0, 9291, 1127, 1, 0, 0, 0, 9292, 9293, 5, 472, 0, 0, 9293, 9294, 3, 1442, 721, 0, 9294, 9295, 5, 2, 0, 0, 9295, 9296, 3, 1326, 663, 0, 9296, 9298, 5, 3, 0, 0, 9297, 9299, 3, 1130, 565, 0, 9298, 9297, 1, 0, 0, 0, 9298, 9299, 1, 0, 0, 0, 9299, 1129, 1, 0, 0, 0, 9300, 9301, 5, 310, 0, 0, 9301, 9302, 5, 2, 0, 0, 9302, 9303, 3, 1210, 605, 0, 9303, 9304, 5, 3, 0, 0, 9304, 1131, 1, 0, 0, 0, 9305, 9307, 3, 1260, 630, 0, 9306, 9308, 3, 1140, 570, 0, 9307, 9306, 1, 0, 0, 0, 9307, 9308, 1, 0, 0, 0, 9308, 9318, 1, 0, 0, 0, 9309, 9310, 5, 320, 0, 0, 9310, 9311, 5, 64, 0, 0, 9311, 9312, 5, 2, 0, 0, 9312, 9313, 3, 1136, 568, 0, 9313, 9315, 5, 3, 0, 0, 9314, 9316, 3, 1140, 570, 0, 9315, 9314, 1, 0, 0, 0, 9315, 9316, 1, 0, 0, 0, 9316, 9318, 1, 0, 0, 0, 9317, 9305, 1, 0, 0, 0, 9317, 9309, 1, 0, 0, 0, 9318, 1133, 1, 0, 0, 0, 9319, 9321, 3, 1260, 630, 0, 9320, 9322, 3, 1138, 569, 0, 9321, 9320, 1, 0, 0, 0, 9321, 9322, 1, 0, 0, 0, 9322, 1135, 1, 0, 0, 0, 9323, 9328, 3, 1134, 567, 0, 9324, 9325, 5, 6, 0, 0, 9325, 9327, 3, 1134, 567, 0, 9326, 9324, 1, 0, 0, 0, 9327, 9330, 1, 0, 0, 0, 9328, 9326, 1, 0, 0, 0, 9328, 9329, 1, 0, 0, 0, 9329, 1137, 1, 0, 0, 0, 9330, 9328, 1, 0, 0, 0, 9331, 9332, 5, 36, 0, 0, 9332, 9333, 5, 2, 0, 0, 9333, 9334, 3, 1148, 574, 0, 9334, 9335, 5, 3, 0, 0, 9335, 1139, 1, 0, 0, 0, 9336, 9337, 5, 105, 0, 0, 9337, 9338, 5, 473, 0, 0, 9338, 1141, 1, 0, 0, 0, 9339, 9340, 5, 103, 0, 0, 9340, 9341, 3, 1334, 667, 0, 9341, 1143, 1, 0, 0, 0, 9342, 9347, 5, 103, 0, 0, 9343, 9344, 5, 434, 0, 0, 9344, 9345, 5, 275, 0, 0, 9345, 9348, 3, 992, 496, 0, 9346, 9348, 3, 1210, 605, 0, 9347, 9343, 1, 0, 0, 0, 9347, 9346, 1, 0, 0, 0, 9348, 1145, 1, 0, 0, 0, 9349, 9350, 3, 1148, 574, 0, 9350, 1147, 1, 0, 0, 0, 9351, 9356, 3, 1150, 575, 0, 9352, 9353, 5, 6, 0, 0, 9353, 9355, 3, 1150, 575, 0, 9354, 9352, 1, 0, 0, 0, 9355, 9358, 1, 0, 0, 0, 9356, 9354, 1, 0, 0, 0, 9356, 9357, 1, 0, 0, 0, 9357, 1149, 1, 0, 0, 0, 9358, 9356, 1, 0, 0, 0, 9359, 9360, 3, 1472, 736, 0, 9360, 9362, 3, 1166, 583, 0, 9361, 9363, 3, 126, 63, 0, 9362, 9361, 1, 0, 0, 0, 9362, 9363, 1, 0, 0, 0, 9363, 1151, 1, 0, 0, 0, 9364, 9365, 5, 474, 0, 0, 9365, 9381, 5, 2, 0, 0, 9366, 9367, 3, 1252, 626, 0, 9367, 9368, 3, 1278, 639, 0, 9368, 9369, 5, 475, 0, 0, 9369, 9370, 3, 1154, 577, 0, 9370, 9382, 1, 0, 0, 0, 9371, 9372, 5, 476, 0, 0, 9372, 9373, 5, 2, 0, 0, 9373, 9374, 3, 1162, 581, 0, 9374, 9375, 5, 3, 0, 0, 9375, 9376, 5, 6, 0, 0, 9376, 9377, 3, 1252, 626, 0, 9377, 9378, 3, 1278, 639, 0, 9378, 9379, 5, 475, 0, 0, 9379, 9380, 3, 1154, 577, 0, 9380, 9382, 1, 0, 0, 0, 9381, 9366, 1, 0, 0, 0, 9381, 9371, 1, 0, 0, 0, 9382, 9383, 1, 0, 0, 0, 9383, 9384, 5, 3, 0, 0, 9384, 1153, 1, 0, 0, 0, 9385, 9390, 3, 1156, 578, 0, 9386, 9387, 5, 6, 0, 0, 9387, 9389, 3, 1156, 578, 0, 9388, 9386, 1, 0, 0, 0, 9389, 9392, 1, 0, 0, 0, 9390, 9388, 1, 0, 0, 0, 9390, 9391, 1, 0, 0, 0, 9391, 1155, 1, 0, 0, 0, 9392, 9390, 1, 0, 0, 0, 9393, 9400, 3, 1472, 736, 0, 9394, 9396, 3, 1166, 583, 0, 9395, 9397, 3, 1158, 579, 0, 9396, 9395, 1, 0, 0, 0, 9396, 9397, 1, 0, 0, 0, 9397, 9401, 1, 0, 0, 0, 9398, 9399, 5, 62, 0, 0, 9399, 9401, 5, 473, 0, 0, 9400, 9394, 1, 0, 0, 0, 9400, 9398, 1, 0, 0, 0, 9401, 1157, 1, 0, 0, 0, 9402, 9404, 3, 1160, 580, 0, 9403, 9402, 1, 0, 0, 0, 9404, 9405, 1, 0, 0, 0, 9405, 9403, 1, 0, 0, 0, 9405, 9406, 1, 0, 0, 0, 9406, 1159, 1, 0, 0, 0, 9407, 9408, 5, 53, 0, 0, 9408, 9416, 3, 1210, 605, 0, 9409, 9410, 3, 1490, 745, 0, 9410, 9411, 3, 1210, 605, 0, 9411, 9416, 1, 0, 0, 0, 9412, 9413, 5, 77, 0, 0, 9413, 9416, 5, 78, 0, 0, 9414, 9416, 5, 78, 0, 0, 9415, 9407, 1, 0, 0, 0, 9415, 9409, 1, 0, 0, 0, 9415, 9412, 1, 0, 0, 0, 9415, 9414, 1, 0, 0, 0, 9416, 1161, 1, 0, 0, 0, 9417, 9422, 3, 1164, 582, 0, 9418, 9419, 5, 6, 0, 0, 9419, 9421, 3, 1164, 582, 0, 9420, 9418, 1, 0, 0, 0, 9421, 9424, 1, 0, 0, 0, 9422, 9420, 1, 0, 0, 0, 9422, 9423, 1, 0, 0, 0, 9423, 1163, 1, 0, 0, 0, 9424, 9422, 1, 0, 0, 0, 9425, 9426, 3, 1250, 625, 0, 9426, 9427, 5, 36, 0, 0, 9427, 9428, 3, 1488, 744, 0, 9428, 9432, 1, 0, 0, 0, 9429, 9430, 5, 53, 0, 0, 9430, 9432, 3, 1250, 625, 0, 9431, 9425, 1, 0, 0, 0, 9431, 9429, 1, 0, 0, 0, 9432, 1165, 1, 0, 0, 0, 9433, 9435, 5, 415, 0, 0, 9434, 9433, 1, 0, 0, 0, 9434, 9435, 1, 0, 0, 0, 9435, 9436, 1, 0, 0, 0, 9436, 9445, 3, 1170, 585, 0, 9437, 9446, 3, 1168, 584, 0, 9438, 9443, 5, 35, 0, 0, 9439, 9440, 5, 4, 0, 0, 9440, 9441, 3, 1454, 727, 0, 9441, 9442, 5, 5, 0, 0, 9442, 9444, 1, 0, 0, 0, 9443, 9439, 1, 0, 0, 0, 9443, 9444, 1, 0, 0, 0, 9444, 9446, 1, 0, 0, 0, 9445, 9437, 1, 0, 0, 0, 9445, 9438, 1, 0, 0, 0, 9446, 9452, 1, 0, 0, 0, 9447, 9448, 3, 1410, 705, 0, 9448, 9449, 5, 27, 0, 0, 9449, 9450, 7, 61, 0, 0, 9450, 9452, 1, 0, 0, 0, 9451, 9434, 1, 0, 0, 0, 9451, 9447, 1, 0, 0, 0, 9452, 1167, 1, 0, 0, 0, 9453, 9455, 5, 4, 0, 0, 9454, 9456, 3, 1454, 727, 0, 9455, 9454, 1, 0, 0, 0, 9455, 9456, 1, 0, 0, 0, 9456, 9457, 1, 0, 0, 0, 9457, 9459, 5, 5, 0, 0, 9458, 9453, 1, 0, 0, 0, 9459, 9462, 1, 0, 0, 0, 9460, 9458, 1, 0, 0, 0, 9460, 9461, 1, 0, 0, 0, 9461, 1169, 1, 0, 0, 0, 9462, 9460, 1, 0, 0, 0, 9463, 9479, 3, 1174, 587, 0, 9464, 9479, 3, 1178, 589, 0, 9465, 9479, 3, 1182, 591, 0, 9466, 9479, 3, 1190, 595, 0, 9467, 9479, 3, 1198, 599, 0, 9468, 9476, 3, 1200, 600, 0, 9469, 9471, 3, 1204, 602, 0, 9470, 9469, 1, 0, 0, 0, 9470, 9471, 1, 0, 0, 0, 9471, 9477, 1, 0, 0, 0, 9472, 9473, 5, 2, 0, 0, 9473, 9474, 3, 1454, 727, 0, 9474, 9475, 5, 3, 0, 0, 9475, 9477, 1, 0, 0, 0, 9476, 9470, 1, 0, 0, 0, 9476, 9472, 1, 0, 0, 0, 9477, 9479, 1, 0, 0, 0, 9478, 9463, 1, 0, 0, 0, 9478, 9464, 1, 0, 0, 0, 9478, 9465, 1, 0, 0, 0, 9478, 9466, 1, 0, 0, 0, 9478, 9467, 1, 0, 0, 0, 9478, 9468, 1, 0, 0, 0, 9479, 1171, 1, 0, 0, 0, 9480, 9485, 3, 1178, 589, 0, 9481, 9485, 3, 1184, 592, 0, 9482, 9485, 3, 1192, 596, 0, 9483, 9485, 3, 1198, 599, 0, 9484, 9480, 1, 0, 0, 0, 9484, 9481, 1, 0, 0, 0, 9484, 9482, 1, 0, 0, 0, 9484, 9483, 1, 0, 0, 0, 9485, 1173, 1, 0, 0, 0, 9486, 9488, 3, 1480, 740, 0, 9487, 9489, 3, 558, 279, 0, 9488, 9487, 1, 0, 0, 0, 9488, 9489, 1, 0, 0, 0, 9489, 9491, 1, 0, 0, 0, 9490, 9492, 3, 1176, 588, 0, 9491, 9490, 1, 0, 0, 0, 9491, 9492, 1, 0, 0, 0, 9492, 1175, 1, 0, 0, 0, 9493, 9494, 5, 2, 0, 0, 9494, 9495, 3, 1326, 663, 0, 9495, 9496, 5, 3, 0, 0, 9496, 1177, 1, 0, 0, 0, 9497, 9522, 5, 401, 0, 0, 9498, 9522, 5, 402, 0, 0, 9499, 9522, 5, 416, 0, 0, 9500, 9522, 5, 388, 0, 0, 9501, 9522, 5, 413, 0, 0, 9502, 9504, 5, 398, 0, 0, 9503, 9505, 3, 1180, 590, 0, 9504, 9503, 1, 0, 0, 0, 9504, 9505, 1, 0, 0, 0, 9505, 9522, 1, 0, 0, 0, 9506, 9507, 5, 190, 0, 0, 9507, 9522, 5, 412, 0, 0, 9508, 9510, 5, 395, 0, 0, 9509, 9511, 3, 1176, 588, 0, 9510, 9509, 1, 0, 0, 0, 9510, 9511, 1, 0, 0, 0, 9511, 9522, 1, 0, 0, 0, 9512, 9514, 5, 394, 0, 0, 9513, 9515, 3, 1176, 588, 0, 9514, 9513, 1, 0, 0, 0, 9514, 9515, 1, 0, 0, 0, 9515, 9522, 1, 0, 0, 0, 9516, 9518, 5, 409, 0, 0, 9517, 9519, 3, 1176, 588, 0, 9518, 9517, 1, 0, 0, 0, 9518, 9519, 1, 0, 0, 0, 9519, 9522, 1, 0, 0, 0, 9520, 9522, 5, 390, 0, 0, 9521, 9497, 1, 0, 0, 0, 9521, 9498, 1, 0, 0, 0, 9521, 9499, 1, 0, 0, 0, 9521, 9500, 1, 0, 0, 0, 9521, 9501, 1, 0, 0, 0, 9521, 9502, 1, 0, 0, 0, 9521, 9506, 1, 0, 0, 0, 9521, 9508, 1, 0, 0, 0, 9521, 9512, 1, 0, 0, 0, 9521, 9516, 1, 0, 0, 0, 9521, 9520, 1, 0, 0, 0, 9522, 1179, 1, 0, 0, 0, 9523, 9524, 5, 2, 0, 0, 9524, 9525, 3, 1454, 727, 0, 9525, 9526, 5, 3, 0, 0, 9526, 1181, 1, 0, 0, 0, 9527, 9530, 3, 1186, 593, 0, 9528, 9530, 3, 1188, 594, 0, 9529, 9527, 1, 0, 0, 0, 9529, 9528, 1, 0, 0, 0, 9530, 1183, 1, 0, 0, 0, 9531, 9534, 3, 1186, 593, 0, 9532, 9534, 3, 1188, 594, 0, 9533, 9531, 1, 0, 0, 0, 9533, 9532, 1, 0, 0, 0, 9534, 1185, 1, 0, 0, 0, 9535, 9537, 5, 389, 0, 0, 9536, 9538, 3, 1196, 598, 0, 9537, 9536, 1, 0, 0, 0, 9537, 9538, 1, 0, 0, 0, 9538, 9539, 1, 0, 0, 0, 9539, 9540, 5, 2, 0, 0, 9540, 9541, 3, 1326, 663, 0, 9541, 9542, 5, 3, 0, 0, 9542, 1187, 1, 0, 0, 0, 9543, 9545, 5, 389, 0, 0, 9544, 9546, 3, 1196, 598, 0, 9545, 9544, 1, 0, 0, 0, 9545, 9546, 1, 0, 0, 0, 9546, 1189, 1, 0, 0, 0, 9547, 9552, 3, 1194, 597, 0, 9548, 9549, 5, 2, 0, 0, 9549, 9550, 3, 1454, 727, 0, 9550, 9551, 5, 3, 0, 0, 9551, 9553, 1, 0, 0, 0, 9552, 9548, 1, 0, 0, 0, 9552, 9553, 1, 0, 0, 0, 9553, 1191, 1, 0, 0, 0, 9554, 9559, 3, 1194, 597, 0, 9555, 9556, 5, 2, 0, 0, 9556, 9557, 3, 1454, 727, 0, 9557, 9558, 5, 3, 0, 0, 9558, 9560, 1, 0, 0, 0, 9559, 9555, 1, 0, 0, 0, 9559, 9560, 1, 0, 0, 0, 9560, 1193, 1, 0, 0, 0, 9561, 9563, 7, 62, 0, 0, 9562, 9564, 3, 1196, 598, 0, 9563, 9562, 1, 0, 0, 0, 9563, 9564, 1, 0, 0, 0, 9564, 9572, 1, 0, 0, 0, 9565, 9572, 5, 423, 0, 0, 9566, 9567, 5, 405, 0, 0, 9567, 9569, 7, 63, 0, 0, 9568, 9570, 3, 1196, 598, 0, 9569, 9568, 1, 0, 0, 0, 9569, 9570, 1, 0, 0, 0, 9570, 9572, 1, 0, 0, 0, 9571, 9561, 1, 0, 0, 0, 9571, 9565, 1, 0, 0, 0, 9571, 9566, 1, 0, 0, 0, 9572, 1195, 1, 0, 0, 0, 9573, 9574, 5, 374, 0, 0, 9574, 1197, 1, 0, 0, 0, 9575, 9580, 7, 64, 0, 0, 9576, 9577, 5, 2, 0, 0, 9577, 9578, 3, 1454, 727, 0, 9578, 9579, 5, 3, 0, 0, 9579, 9581, 1, 0, 0, 0, 9580, 9576, 1, 0, 0, 0, 9580, 9581, 1, 0, 0, 0, 9581, 9583, 1, 0, 0, 0, 9582, 9584, 3, 1202, 601, 0, 9583, 9582, 1, 0, 0, 0, 9583, 9584, 1, 0, 0, 0, 9584, 1199, 1, 0, 0, 0, 9585, 9586, 5, 403, 0, 0, 9586, 1201, 1, 0, 0, 0, 9587, 9588, 5, 105, 0, 0, 9588, 9589, 5, 418, 0, 0, 9589, 9594, 5, 386, 0, 0, 9590, 9591, 5, 379, 0, 0, 9591, 9592, 5, 418, 0, 0, 9592, 9594, 5, 386, 0, 0, 9593, 9587, 1, 0, 0, 0, 9593, 9590, 1, 0, 0, 0, 9594, 1203, 1, 0, 0, 0, 9595, 9621, 5, 384, 0, 0, 9596, 9621, 5, 264, 0, 0, 9597, 9621, 5, 176, 0, 0, 9598, 9621, 5, 218, 0, 0, 9599, 9621, 5, 261, 0, 0, 9600, 9621, 3, 1206, 603, 0, 9601, 9602, 5, 384, 0, 0, 9602, 9603, 5, 94, 0, 0, 9603, 9621, 5, 264, 0, 0, 9604, 9605, 5, 176, 0, 0, 9605, 9609, 5, 94, 0, 0, 9606, 9610, 5, 218, 0, 0, 9607, 9610, 5, 261, 0, 0, 9608, 9610, 3, 1206, 603, 0, 9609, 9606, 1, 0, 0, 0, 9609, 9607, 1, 0, 0, 0, 9609, 9608, 1, 0, 0, 0, 9610, 9621, 1, 0, 0, 0, 9611, 9612, 5, 218, 0, 0, 9612, 9615, 5, 94, 0, 0, 9613, 9616, 5, 261, 0, 0, 9614, 9616, 3, 1206, 603, 0, 9615, 9613, 1, 0, 0, 0, 9615, 9614, 1, 0, 0, 0, 9616, 9621, 1, 0, 0, 0, 9617, 9618, 5, 261, 0, 0, 9618, 9619, 5, 94, 0, 0, 9619, 9621, 3, 1206, 603, 0, 9620, 9595, 1, 0, 0, 0, 9620, 9596, 1, 0, 0, 0, 9620, 9597, 1, 0, 0, 0, 9620, 9598, 1, 0, 0, 0, 9620, 9599, 1, 0, 0, 0, 9620, 9600, 1, 0, 0, 0, 9620, 9601, 1, 0, 0, 0, 9620, 9604, 1, 0, 0, 0, 9620, 9611, 1, 0, 0, 0, 9620, 9617, 1, 0, 0, 0, 9621, 1205, 1, 0, 0, 0, 9622, 9627, 5, 326, 0, 0, 9623, 9624, 5, 2, 0, 0, 9624, 9625, 3, 1454, 727, 0, 9625, 9626, 5, 3, 0, 0, 9626, 9628, 1, 0, 0, 0, 9627, 9623, 1, 0, 0, 0, 9627, 9628, 1, 0, 0, 0, 9628, 1207, 1, 0, 0, 0, 9629, 9630, 5, 197, 0, 0, 9630, 9631, 3, 1210, 605, 0, 9631, 1209, 1, 0, 0, 0, 9632, 9633, 3, 1212, 606, 0, 9633, 1211, 1, 0, 0, 0, 9634, 9636, 3, 1214, 607, 0, 9635, 9637, 3, 1320, 660, 0, 9636, 9635, 1, 0, 0, 0, 9636, 9637, 1, 0, 0, 0, 9637, 1213, 1, 0, 0, 0, 9638, 9643, 3, 1216, 608, 0, 9639, 9640, 7, 65, 0, 0, 9640, 9642, 3, 1216, 608, 0, 9641, 9639, 1, 0, 0, 0, 9642, 9645, 1, 0, 0, 0, 9643, 9641, 1, 0, 0, 0, 9643, 9644, 1, 0, 0, 0, 9644, 1215, 1, 0, 0, 0, 9645, 9643, 1, 0, 0, 0, 9646, 9651, 3, 1218, 609, 0, 9647, 9648, 5, 82, 0, 0, 9648, 9650, 3, 1218, 609, 0, 9649, 9647, 1, 0, 0, 0, 9650, 9653, 1, 0, 0, 0, 9651, 9649, 1, 0, 0, 0, 9651, 9652, 1, 0, 0, 0, 9652, 1217, 1, 0, 0, 0, 9653, 9651, 1, 0, 0, 0, 9654, 9659, 3, 1220, 610, 0, 9655, 9656, 5, 33, 0, 0, 9656, 9658, 3, 1220, 610, 0, 9657, 9655, 1, 0, 0, 0, 9658, 9661, 1, 0, 0, 0, 9659, 9657, 1, 0, 0, 0, 9659, 9660, 1, 0, 0, 0, 9660, 1219, 1, 0, 0, 0, 9661, 9659, 1, 0, 0, 0, 9662, 9668, 3, 1222, 611, 0, 9663, 9665, 5, 77, 0, 0, 9664, 9663, 1, 0, 0, 0, 9664, 9665, 1, 0, 0, 0, 9665, 9666, 1, 0, 0, 0, 9666, 9667, 5, 68, 0, 0, 9667, 9669, 3, 1360, 680, 0, 9668, 9664, 1, 0, 0, 0, 9668, 9669, 1, 0, 0, 0, 9669, 1221, 1, 0, 0, 0, 9670, 9672, 5, 77, 0, 0, 9671, 9670, 1, 0, 0, 0, 9671, 9672, 1, 0, 0, 0, 9672, 9673, 1, 0, 0, 0, 9673, 9674, 3, 1224, 612, 0, 9674, 1223, 1, 0, 0, 0, 9675, 9677, 3, 1226, 613, 0, 9676, 9678, 7, 66, 0, 0, 9677, 9676, 1, 0, 0, 0, 9677, 9678, 1, 0, 0, 0, 9678, 1225, 1, 0, 0, 0, 9679, 9703, 3, 1228, 614, 0, 9680, 9682, 5, 116, 0, 0, 9681, 9683, 5, 77, 0, 0, 9682, 9681, 1, 0, 0, 0, 9682, 9683, 1, 0, 0, 0, 9683, 9701, 1, 0, 0, 0, 9684, 9702, 5, 78, 0, 0, 9685, 9702, 5, 96, 0, 0, 9686, 9702, 5, 60, 0, 0, 9687, 9702, 5, 365, 0, 0, 9688, 9689, 5, 56, 0, 0, 9689, 9690, 5, 64, 0, 0, 9690, 9702, 3, 1210, 605, 0, 9691, 9692, 5, 275, 0, 0, 9692, 9693, 5, 2, 0, 0, 9693, 9694, 3, 1340, 670, 0, 9694, 9695, 5, 3, 0, 0, 9695, 9702, 1, 0, 0, 0, 9696, 9702, 5, 188, 0, 0, 9697, 9699, 3, 1350, 675, 0, 9698, 9697, 1, 0, 0, 0, 9698, 9699, 1, 0, 0, 0, 9699, 9700, 1, 0, 0, 0, 9700, 9702, 5, 478, 0, 0, 9701, 9684, 1, 0, 0, 0, 9701, 9685, 1, 0, 0, 0, 9701, 9686, 1, 0, 0, 0, 9701, 9687, 1, 0, 0, 0, 9701, 9688, 1, 0, 0, 0, 9701, 9691, 1, 0, 0, 0, 9701, 9696, 1, 0, 0, 0, 9701, 9698, 1, 0, 0, 0, 9702, 9704, 1, 0, 0, 0, 9703, 9680, 1, 0, 0, 0, 9703, 9704, 1, 0, 0, 0, 9704, 1227, 1, 0, 0, 0, 9705, 9717, 3, 1230, 615, 0, 9706, 9707, 7, 67, 0, 0, 9707, 9718, 3, 1230, 615, 0, 9708, 9709, 3, 1324, 662, 0, 9709, 9715, 3, 1314, 657, 0, 9710, 9716, 3, 1000, 500, 0, 9711, 9712, 5, 2, 0, 0, 9712, 9713, 3, 1210, 605, 0, 9713, 9714, 5, 3, 0, 0, 9714, 9716, 1, 0, 0, 0, 9715, 9710, 1, 0, 0, 0, 9715, 9711, 1, 0, 0, 0, 9716, 9718, 1, 0, 0, 0, 9717, 9706, 1, 0, 0, 0, 9717, 9708, 1, 0, 0, 0, 9717, 9718, 1, 0, 0, 0, 9718, 1229, 1, 0, 0, 0, 9719, 9737, 3, 1232, 616, 0, 9720, 9722, 5, 77, 0, 0, 9721, 9720, 1, 0, 0, 0, 9721, 9722, 1, 0, 0, 0, 9722, 9731, 1, 0, 0, 0, 9723, 9732, 5, 120, 0, 0, 9724, 9732, 5, 114, 0, 0, 9725, 9726, 5, 127, 0, 0, 9726, 9732, 5, 94, 0, 0, 9727, 9729, 5, 387, 0, 0, 9728, 9730, 5, 91, 0, 0, 9729, 9728, 1, 0, 0, 0, 9729, 9730, 1, 0, 0, 0, 9730, 9732, 1, 0, 0, 0, 9731, 9723, 1, 0, 0, 0, 9731, 9724, 1, 0, 0, 0, 9731, 9725, 1, 0, 0, 0, 9731, 9727, 1, 0, 0, 0, 9732, 9733, 1, 0, 0, 0, 9733, 9735, 3, 1232, 616, 0, 9734, 9736, 3, 1208, 604, 0, 9735, 9734, 1, 0, 0, 0, 9735, 9736, 1, 0, 0, 0, 9736, 9738, 1, 0, 0, 0, 9737, 9721, 1, 0, 0, 0, 9737, 9738, 1, 0, 0, 0, 9738, 1231, 1, 0, 0, 0, 9739, 9745, 3, 1234, 617, 0, 9740, 9741, 3, 1320, 660, 0, 9741, 9742, 3, 1234, 617, 0, 9742, 9744, 1, 0, 0, 0, 9743, 9740, 1, 0, 0, 0, 9744, 9747, 1, 0, 0, 0, 9745, 9743, 1, 0, 0, 0, 9745, 9746, 1, 0, 0, 0, 9746, 1233, 1, 0, 0, 0, 9747, 9745, 1, 0, 0, 0, 9748, 9750, 3, 1320, 660, 0, 9749, 9748, 1, 0, 0, 0, 9749, 9750, 1, 0, 0, 0, 9750, 9751, 1, 0, 0, 0, 9751, 9752, 3, 1236, 618, 0, 9752, 1235, 1, 0, 0, 0, 9753, 9758, 3, 1238, 619, 0, 9754, 9755, 7, 68, 0, 0, 9755, 9757, 3, 1238, 619, 0, 9756, 9754, 1, 0, 0, 0, 9757, 9760, 1, 0, 0, 0, 9758, 9756, 1, 0, 0, 0, 9758, 9759, 1, 0, 0, 0, 9759, 1237, 1, 0, 0, 0, 9760, 9758, 1, 0, 0, 0, 9761, 9766, 3, 1240, 620, 0, 9762, 9763, 7, 69, 0, 0, 9763, 9765, 3, 1240, 620, 0, 9764, 9762, 1, 0, 0, 0, 9765, 9768, 1, 0, 0, 0, 9766, 9764, 1, 0, 0, 0, 9766, 9767, 1, 0, 0, 0, 9767, 1239, 1, 0, 0, 0, 9768, 9766, 1, 0, 0, 0, 9769, 9772, 3, 1242, 621, 0, 9770, 9771, 5, 15, 0, 0, 9771, 9773, 3, 1210, 605, 0, 9772, 9770, 1, 0, 0, 0, 9772, 9773, 1, 0, 0, 0, 9773, 1241, 1, 0, 0, 0, 9774, 9776, 7, 68, 0, 0, 9775, 9774, 1, 0, 0, 0, 9775, 9776, 1, 0, 0, 0, 9776, 9777, 1, 0, 0, 0, 9777, 9778, 3, 1244, 622, 0, 9778, 1243, 1, 0, 0, 0, 9779, 9784, 3, 1246, 623, 0, 9780, 9781, 5, 142, 0, 0, 9781, 9782, 5, 418, 0, 0, 9782, 9783, 5, 386, 0, 0, 9783, 9785, 3, 1210, 605, 0, 9784, 9780, 1, 0, 0, 0, 9784, 9785, 1, 0, 0, 0, 9785, 1245, 1, 0, 0, 0, 9786, 9789, 3, 1248, 624, 0, 9787, 9788, 5, 43, 0, 0, 9788, 9790, 3, 556, 278, 0, 9789, 9787, 1, 0, 0, 0, 9789, 9790, 1, 0, 0, 0, 9790, 1247, 1, 0, 0, 0, 9791, 9796, 3, 1252, 626, 0, 9792, 9793, 5, 26, 0, 0, 9793, 9795, 3, 1166, 583, 0, 9794, 9792, 1, 0, 0, 0, 9795, 9798, 1, 0, 0, 0, 9796, 9794, 1, 0, 0, 0, 9796, 9797, 1, 0, 0, 0, 9797, 1249, 1, 0, 0, 0, 9798, 9796, 1, 0, 0, 0, 9799, 9800, 6, 625, -1, 0, 9800, 9807, 3, 1252, 626, 0, 9801, 9802, 7, 68, 0, 0, 9802, 9807, 3, 1250, 625, 9, 9803, 9804, 3, 1320, 660, 0, 9804, 9805, 3, 1250, 625, 3, 9805, 9807, 1, 0, 0, 0, 9806, 9799, 1, 0, 0, 0, 9806, 9801, 1, 0, 0, 0, 9806, 9803, 1, 0, 0, 0, 9807, 9847, 1, 0, 0, 0, 9808, 9809, 10, 8, 0, 0, 9809, 9810, 5, 15, 0, 0, 9810, 9846, 3, 1250, 625, 9, 9811, 9812, 10, 7, 0, 0, 9812, 9813, 7, 69, 0, 0, 9813, 9846, 3, 1250, 625, 8, 9814, 9815, 10, 6, 0, 0, 9815, 9816, 7, 68, 0, 0, 9816, 9846, 3, 1250, 625, 7, 9817, 9818, 10, 5, 0, 0, 9818, 9819, 3, 1320, 660, 0, 9819, 9820, 3, 1250, 625, 6, 9820, 9846, 1, 0, 0, 0, 9821, 9822, 10, 4, 0, 0, 9822, 9823, 7, 67, 0, 0, 9823, 9846, 3, 1250, 625, 5, 9824, 9825, 10, 10, 0, 0, 9825, 9826, 5, 26, 0, 0, 9826, 9846, 3, 1166, 583, 0, 9827, 9828, 10, 2, 0, 0, 9828, 9846, 3, 1320, 660, 0, 9829, 9830, 10, 1, 0, 0, 9830, 9832, 5, 116, 0, 0, 9831, 9833, 5, 77, 0, 0, 9832, 9831, 1, 0, 0, 0, 9832, 9833, 1, 0, 0, 0, 9833, 9843, 1, 0, 0, 0, 9834, 9835, 5, 56, 0, 0, 9835, 9836, 5, 64, 0, 0, 9836, 9844, 3, 1250, 625, 0, 9837, 9838, 5, 275, 0, 0, 9838, 9839, 5, 2, 0, 0, 9839, 9840, 3, 1340, 670, 0, 9840, 9841, 5, 3, 0, 0, 9841, 9844, 1, 0, 0, 0, 9842, 9844, 5, 188, 0, 0, 9843, 9834, 1, 0, 0, 0, 9843, 9837, 1, 0, 0, 0, 9843, 9842, 1, 0, 0, 0, 9844, 9846, 1, 0, 0, 0, 9845, 9808, 1, 0, 0, 0, 9845, 9811, 1, 0, 0, 0, 9845, 9814, 1, 0, 0, 0, 9845, 9817, 1, 0, 0, 0, 9845, 9821, 1, 0, 0, 0, 9845, 9824, 1, 0, 0, 0, 9845, 9827, 1, 0, 0, 0, 9845, 9829, 1, 0, 0, 0, 9846, 9849, 1, 0, 0, 0, 9847, 9845, 1, 0, 0, 0, 9847, 9848, 1, 0, 0, 0, 9848, 1251, 1, 0, 0, 0, 9849, 9847, 1, 0, 0, 0, 9850, 9851, 5, 396, 0, 0, 9851, 9887, 3, 1000, 500, 0, 9852, 9855, 5, 35, 0, 0, 9853, 9856, 3, 1000, 500, 0, 9854, 9856, 3, 1342, 671, 0, 9855, 9853, 1, 0, 0, 0, 9855, 9854, 1, 0, 0, 0, 9856, 9887, 1, 0, 0, 0, 9857, 9858, 5, 28, 0, 0, 9858, 9887, 3, 1380, 690, 0, 9859, 9860, 5, 470, 0, 0, 9860, 9861, 5, 2, 0, 0, 9861, 9862, 3, 1326, 663, 0, 9862, 9863, 5, 3, 0, 0, 9863, 9887, 1, 0, 0, 0, 9864, 9865, 5, 98, 0, 0, 9865, 9887, 3, 1000, 500, 0, 9866, 9887, 3, 1446, 723, 0, 9867, 9887, 3, 1254, 627, 0, 9868, 9869, 5, 2, 0, 0, 9869, 9870, 3, 1210, 605, 0, 9870, 9871, 5, 3, 0, 0, 9871, 9872, 3, 1380, 690, 0, 9872, 9887, 1, 0, 0, 0, 9873, 9887, 3, 1362, 681, 0, 9874, 9887, 3, 1258, 629, 0, 9875, 9877, 3, 1000, 500, 0, 9876, 9878, 3, 1378, 689, 0, 9877, 9876, 1, 0, 0, 0, 9877, 9878, 1, 0, 0, 0, 9878, 9887, 1, 0, 0, 0, 9879, 9887, 3, 1310, 655, 0, 9880, 9887, 3, 1312, 656, 0, 9881, 9882, 3, 1308, 654, 0, 9882, 9883, 5, 125, 0, 0, 9883, 9884, 3, 1308, 654, 0, 9884, 9887, 1, 0, 0, 0, 9885, 9887, 3, 1372, 686, 0, 9886, 9850, 1, 0, 0, 0, 9886, 9852, 1, 0, 0, 0, 9886, 9857, 1, 0, 0, 0, 9886, 9859, 1, 0, 0, 0, 9886, 9864, 1, 0, 0, 0, 9886, 9866, 1, 0, 0, 0, 9886, 9867, 1, 0, 0, 0, 9886, 9868, 1, 0, 0, 0, 9886, 9873, 1, 0, 0, 0, 9886, 9874, 1, 0, 0, 0, 9886, 9875, 1, 0, 0, 0, 9886, 9879, 1, 0, 0, 0, 9886, 9880, 1, 0, 0, 0, 9886, 9881, 1, 0, 0, 0, 9886, 9885, 1, 0, 0, 0, 9887, 1253, 1, 0, 0, 0, 9888, 9889, 5, 574, 0, 0, 9889, 1255, 1, 0, 0, 0, 9890, 9916, 3, 1442, 721, 0, 9891, 9913, 5, 2, 0, 0, 9892, 9896, 3, 1336, 668, 0, 9893, 9894, 5, 6, 0, 0, 9894, 9895, 5, 101, 0, 0, 9895, 9897, 3, 1338, 669, 0, 9896, 9893, 1, 0, 0, 0, 9896, 9897, 1, 0, 0, 0, 9897, 9899, 1, 0, 0, 0, 9898, 9900, 3, 1040, 520, 0, 9899, 9898, 1, 0, 0, 0, 9899, 9900, 1, 0, 0, 0, 9900, 9914, 1, 0, 0, 0, 9901, 9902, 5, 101, 0, 0, 9902, 9904, 3, 1338, 669, 0, 9903, 9905, 3, 1040, 520, 0, 9904, 9903, 1, 0, 0, 0, 9904, 9905, 1, 0, 0, 0, 9905, 9914, 1, 0, 0, 0, 9906, 9907, 7, 57, 0, 0, 9907, 9909, 3, 1336, 668, 0, 9908, 9910, 3, 1040, 520, 0, 9909, 9908, 1, 0, 0, 0, 9909, 9910, 1, 0, 0, 0, 9910, 9914, 1, 0, 0, 0, 9911, 9914, 5, 9, 0, 0, 9912, 9914, 1, 0, 0, 0, 9913, 9892, 1, 0, 0, 0, 9913, 9901, 1, 0, 0, 0, 9913, 9906, 1, 0, 0, 0, 9913, 9911, 1, 0, 0, 0, 9913, 9912, 1, 0, 0, 0, 9914, 9915, 1, 0, 0, 0, 9915, 9917, 5, 3, 0, 0, 9916, 9891, 1, 0, 0, 0, 9916, 9917, 1, 0, 0, 0, 9917, 1257, 1, 0, 0, 0, 9918, 9920, 3, 1256, 628, 0, 9919, 9921, 3, 1282, 641, 0, 9920, 9919, 1, 0, 0, 0, 9920, 9921, 1, 0, 0, 0, 9921, 9923, 1, 0, 0, 0, 9922, 9924, 3, 1284, 642, 0, 9923, 9922, 1, 0, 0, 0, 9923, 9924, 1, 0, 0, 0, 9924, 9926, 1, 0, 0, 0, 9925, 9927, 3, 1292, 646, 0, 9926, 9925, 1, 0, 0, 0, 9926, 9927, 1, 0, 0, 0, 9927, 9930, 1, 0, 0, 0, 9928, 9930, 3, 1262, 631, 0, 9929, 9918, 1, 0, 0, 0, 9929, 9928, 1, 0, 0, 0, 9930, 1259, 1, 0, 0, 0, 9931, 9934, 3, 1256, 628, 0, 9932, 9934, 3, 1262, 631, 0, 9933, 9931, 1, 0, 0, 0, 9933, 9932, 1, 0, 0, 0, 9934, 1261, 1, 0, 0, 0, 9935, 9936, 5, 108, 0, 0, 9936, 9937, 5, 62, 0, 0, 9937, 9938, 5, 2, 0, 0, 9938, 9939, 3, 1210, 605, 0, 9939, 9940, 5, 3, 0, 0, 9940, 10120, 1, 0, 0, 0, 9941, 10120, 5, 48, 0, 0, 9942, 9947, 5, 50, 0, 0, 9943, 9944, 5, 2, 0, 0, 9944, 9945, 3, 1454, 727, 0, 9945, 9946, 5, 3, 0, 0, 9946, 9948, 1, 0, 0, 0, 9947, 9943, 1, 0, 0, 0, 9947, 9948, 1, 0, 0, 0, 9948, 10120, 1, 0, 0, 0, 9949, 9954, 5, 51, 0, 0, 9950, 9951, 5, 2, 0, 0, 9951, 9952, 3, 1454, 727, 0, 9952, 9953, 5, 3, 0, 0, 9953, 9955, 1, 0, 0, 0, 9954, 9950, 1, 0, 0, 0, 9954, 9955, 1, 0, 0, 0, 9955, 10120, 1, 0, 0, 0, 9956, 9961, 5, 75, 0, 0, 9957, 9958, 5, 2, 0, 0, 9958, 9959, 3, 1454, 727, 0, 9959, 9960, 5, 3, 0, 0, 9960, 9962, 1, 0, 0, 0, 9961, 9957, 1, 0, 0, 0, 9961, 9962, 1, 0, 0, 0, 9962, 10120, 1, 0, 0, 0, 9963, 9968, 5, 76, 0, 0, 9964, 9965, 5, 2, 0, 0, 9965, 9966, 3, 1454, 727, 0, 9966, 9967, 5, 3, 0, 0, 9967, 9969, 1, 0, 0, 0, 9968, 9964, 1, 0, 0, 0, 9968, 9969, 1, 0, 0, 0, 9969, 10120, 1, 0, 0, 0, 9970, 10120, 5, 49, 0, 0, 9971, 10120, 5, 52, 0, 0, 9972, 10120, 5, 89, 0, 0, 9973, 10120, 5, 99, 0, 0, 9974, 10120, 5, 47, 0, 0, 9975, 10120, 5, 111, 0, 0, 9976, 9977, 5, 41, 0, 0, 9977, 9978, 5, 2, 0, 0, 9978, 9979, 3, 1210, 605, 0, 9979, 9980, 5, 36, 0, 0, 9980, 9981, 3, 1166, 583, 0, 9981, 9982, 5, 3, 0, 0, 9982, 10120, 1, 0, 0, 0, 9983, 9984, 5, 397, 0, 0, 9984, 9986, 5, 2, 0, 0, 9985, 9987, 3, 1346, 673, 0, 9986, 9985, 1, 0, 0, 0, 9986, 9987, 1, 0, 0, 0, 9987, 9988, 1, 0, 0, 0, 9988, 10120, 5, 3, 0, 0, 9989, 9990, 5, 489, 0, 0, 9990, 9991, 5, 2, 0, 0, 9991, 9994, 3, 1210, 605, 0, 9992, 9993, 5, 6, 0, 0, 9993, 9995, 3, 1350, 675, 0, 9994, 9992, 1, 0, 0, 0, 9994, 9995, 1, 0, 0, 0, 9995, 9996, 1, 0, 0, 0, 9996, 9997, 5, 3, 0, 0, 9997, 10120, 1, 0, 0, 0, 9998, 9999, 5, 410, 0, 0, 9999, 10000, 5, 2, 0, 0, 10000, 10001, 3, 1352, 676, 0, 10001, 10002, 5, 3, 0, 0, 10002, 10120, 1, 0, 0, 0, 10003, 10004, 5, 411, 0, 0, 10004, 10006, 5, 2, 0, 0, 10005, 10007, 3, 1354, 677, 0, 10006, 10005, 1, 0, 0, 0, 10006, 10007, 1, 0, 0, 0, 10007, 10008, 1, 0, 0, 0, 10008, 10120, 5, 3, 0, 0, 10009, 10010, 5, 417, 0, 0, 10010, 10012, 5, 2, 0, 0, 10011, 10013, 3, 1356, 678, 0, 10012, 10011, 1, 0, 0, 0, 10012, 10013, 1, 0, 0, 0, 10013, 10014, 1, 0, 0, 0, 10014, 10120, 5, 3, 0, 0, 10015, 10016, 5, 420, 0, 0, 10016, 10017, 5, 2, 0, 0, 10017, 10018, 3, 1210, 605, 0, 10018, 10019, 5, 36, 0, 0, 10019, 10020, 3, 1166, 583, 0, 10020, 10021, 5, 3, 0, 0, 10021, 10120, 1, 0, 0, 0, 10022, 10023, 5, 421, 0, 0, 10023, 10025, 5, 2, 0, 0, 10024, 10026, 7, 70, 0, 0, 10025, 10024, 1, 0, 0, 0, 10025, 10026, 1, 0, 0, 0, 10026, 10027, 1, 0, 0, 0, 10027, 10028, 3, 1358, 679, 0, 10028, 10029, 5, 3, 0, 0, 10029, 10120, 1, 0, 0, 0, 10030, 10031, 5, 408, 0, 0, 10031, 10032, 5, 2, 0, 0, 10032, 10033, 3, 1210, 605, 0, 10033, 10034, 5, 6, 0, 0, 10034, 10035, 3, 1210, 605, 0, 10035, 10036, 5, 3, 0, 0, 10036, 10120, 1, 0, 0, 0, 10037, 10038, 5, 393, 0, 0, 10038, 10039, 5, 2, 0, 0, 10039, 10040, 3, 1326, 663, 0, 10040, 10041, 5, 3, 0, 0, 10041, 10120, 1, 0, 0, 0, 10042, 10043, 5, 399, 0, 0, 10043, 10044, 5, 2, 0, 0, 10044, 10045, 3, 1326, 663, 0, 10045, 10046, 5, 3, 0, 0, 10046, 10120, 1, 0, 0, 0, 10047, 10048, 5, 404, 0, 0, 10048, 10049, 5, 2, 0, 0, 10049, 10050, 3, 1326, 663, 0, 10050, 10051, 5, 3, 0, 0, 10051, 10120, 1, 0, 0, 0, 10052, 10053, 5, 425, 0, 0, 10053, 10054, 5, 2, 0, 0, 10054, 10055, 3, 1326, 663, 0, 10055, 10056, 5, 3, 0, 0, 10056, 10120, 1, 0, 0, 0, 10057, 10058, 5, 426, 0, 0, 10058, 10059, 5, 2, 0, 0, 10059, 10060, 5, 266, 0, 0, 10060, 10066, 3, 1488, 744, 0, 10061, 10064, 5, 6, 0, 0, 10062, 10065, 3, 1268, 634, 0, 10063, 10065, 3, 1326, 663, 0, 10064, 10062, 1, 0, 0, 0, 10064, 10063, 1, 0, 0, 0, 10065, 10067, 1, 0, 0, 0, 10066, 10061, 1, 0, 0, 0, 10066, 10067, 1, 0, 0, 0, 10067, 10068, 1, 0, 0, 0, 10068, 10069, 5, 3, 0, 0, 10069, 10120, 1, 0, 0, 0, 10070, 10071, 5, 427, 0, 0, 10071, 10072, 5, 2, 0, 0, 10072, 10073, 3, 1252, 626, 0, 10073, 10074, 3, 1278, 639, 0, 10074, 10075, 5, 3, 0, 0, 10075, 10120, 1, 0, 0, 0, 10076, 10077, 5, 428, 0, 0, 10077, 10078, 5, 2, 0, 0, 10078, 10079, 3, 1270, 635, 0, 10079, 10080, 5, 3, 0, 0, 10080, 10120, 1, 0, 0, 0, 10081, 10082, 5, 429, 0, 0, 10082, 10083, 5, 2, 0, 0, 10083, 10084, 3, 1274, 637, 0, 10084, 10086, 3, 1210, 605, 0, 10085, 10087, 3, 1276, 638, 0, 10086, 10085, 1, 0, 0, 0, 10086, 10087, 1, 0, 0, 0, 10087, 10088, 1, 0, 0, 0, 10088, 10089, 5, 3, 0, 0, 10089, 10120, 1, 0, 0, 0, 10090, 10091, 5, 430, 0, 0, 10091, 10092, 5, 2, 0, 0, 10092, 10093, 5, 266, 0, 0, 10093, 10096, 3, 1488, 744, 0, 10094, 10095, 5, 6, 0, 0, 10095, 10097, 3, 1210, 605, 0, 10096, 10094, 1, 0, 0, 0, 10096, 10097, 1, 0, 0, 0, 10097, 10098, 1, 0, 0, 0, 10098, 10099, 5, 3, 0, 0, 10099, 10120, 1, 0, 0, 0, 10100, 10101, 5, 431, 0, 0, 10101, 10102, 5, 2, 0, 0, 10102, 10103, 5, 383, 0, 0, 10103, 10104, 3, 1210, 605, 0, 10104, 10105, 5, 6, 0, 0, 10105, 10107, 3, 1264, 632, 0, 10106, 10108, 3, 1266, 633, 0, 10107, 10106, 1, 0, 0, 0, 10107, 10108, 1, 0, 0, 0, 10108, 10109, 1, 0, 0, 0, 10109, 10110, 5, 3, 0, 0, 10110, 10120, 1, 0, 0, 0, 10111, 10112, 5, 432, 0, 0, 10112, 10113, 5, 2, 0, 0, 10113, 10114, 3, 1274, 637, 0, 10114, 10115, 3, 1210, 605, 0, 10115, 10116, 5, 36, 0, 0, 10116, 10117, 3, 1170, 585, 0, 10117, 10118, 5, 3, 0, 0, 10118, 10120, 1, 0, 0, 0, 10119, 9935, 1, 0, 0, 0, 10119, 9941, 1, 0, 0, 0, 10119, 9942, 1, 0, 0, 0, 10119, 9949, 1, 0, 0, 0, 10119, 9956, 1, 0, 0, 0, 10119, 9963, 1, 0, 0, 0, 10119, 9970, 1, 0, 0, 0, 10119, 9971, 1, 0, 0, 0, 10119, 9972, 1, 0, 0, 0, 10119, 9973, 1, 0, 0, 0, 10119, 9974, 1, 0, 0, 0, 10119, 9975, 1, 0, 0, 0, 10119, 9976, 1, 0, 0, 0, 10119, 9983, 1, 0, 0, 0, 10119, 9989, 1, 0, 0, 0, 10119, 9998, 1, 0, 0, 0, 10119, 10003, 1, 0, 0, 0, 10119, 10009, 1, 0, 0, 0, 10119, 10015, 1, 0, 0, 0, 10119, 10022, 1, 0, 0, 0, 10119, 10030, 1, 0, 0, 0, 10119, 10037, 1, 0, 0, 0, 10119, 10042, 1, 0, 0, 0, 10119, 10047, 1, 0, 0, 0, 10119, 10052, 1, 0, 0, 0, 10119, 10057, 1, 0, 0, 0, 10119, 10070, 1, 0, 0, 0, 10119, 10076, 1, 0, 0, 0, 10119, 10081, 1, 0, 0, 0, 10119, 10090, 1, 0, 0, 0, 10119, 10100, 1, 0, 0, 0, 10119, 10111, 1, 0, 0, 0, 10120, 1263, 1, 0, 0, 0, 10121, 10122, 5, 375, 0, 0, 10122, 10127, 3, 1210, 605, 0, 10123, 10124, 5, 375, 0, 0, 10124, 10125, 5, 269, 0, 0, 10125, 10127, 5, 450, 0, 0, 10126, 10121, 1, 0, 0, 0, 10126, 10123, 1, 0, 0, 0, 10127, 1265, 1, 0, 0, 0, 10128, 10129, 5, 6, 0, 0, 10129, 10130, 5, 339, 0, 0, 10130, 10139, 5, 385, 0, 0, 10131, 10132, 5, 6, 0, 0, 10132, 10133, 5, 339, 0, 0, 10133, 10139, 5, 269, 0, 0, 10134, 10135, 5, 6, 0, 0, 10135, 10136, 5, 339, 0, 0, 10136, 10137, 5, 269, 0, 0, 10137, 10139, 5, 450, 0, 0, 10138, 10128, 1, 0, 0, 0, 10138, 10131, 1, 0, 0, 0, 10138, 10134, 1, 0, 0, 0, 10139, 1267, 1, 0, 0, 0, 10140, 10141, 5, 424, 0, 0, 10141, 10142, 5, 2, 0, 0, 10142, 10143, 3, 1270, 635, 0, 10143, 10144, 5, 3, 0, 0, 10144, 1269, 1, 0, 0, 0, 10145, 10150, 3, 1272, 636, 0, 10146, 10147, 5, 6, 0, 0, 10147, 10149, 3, 1272, 636, 0, 10148, 10146, 1, 0, 0, 0, 10149, 10152, 1, 0, 0, 0, 10150, 10148, 1, 0, 0, 0, 10150, 10151, 1, 0, 0, 0, 10151, 1271, 1, 0, 0, 0, 10152, 10150, 1, 0, 0, 0, 10153, 10156, 3, 1210, 605, 0, 10154, 10155, 5, 36, 0, 0, 10155, 10157, 3, 1488, 744, 0, 10156, 10154, 1, 0, 0, 0, 10156, 10157, 1, 0, 0, 0, 10157, 1273, 1, 0, 0, 0, 10158, 10159, 7, 71, 0, 0, 10159, 1275, 1, 0, 0, 0, 10160, 10161, 5, 292, 0, 0, 10161, 10165, 5, 378, 0, 0, 10162, 10163, 5, 347, 0, 0, 10163, 10165, 5, 378, 0, 0, 10164, 10160, 1, 0, 0, 0, 10164, 10162, 1, 0, 0, 0, 10165, 1277, 1, 0, 0, 0, 10166, 10167, 5, 286, 0, 0, 10167, 10182, 3, 1252, 626, 0, 10168, 10169, 5, 286, 0, 0, 10169, 10170, 3, 1252, 626, 0, 10170, 10171, 3, 1280, 640, 0, 10171, 10182, 1, 0, 0, 0, 10172, 10173, 5, 286, 0, 0, 10173, 10174, 3, 1280, 640, 0, 10174, 10175, 3, 1252, 626, 0, 10175, 10182, 1, 0, 0, 0, 10176, 10177, 5, 286, 0, 0, 10177, 10178, 3, 1280, 640, 0, 10178, 10179, 3, 1252, 626, 0, 10179, 10180, 3, 1280, 640, 0, 10180, 10182, 1, 0, 0, 0, 10181, 10166, 1, 0, 0, 0, 10181, 10168, 1, 0, 0, 0, 10181, 10172, 1, 0, 0, 0, 10181, 10176, 1, 0, 0, 0, 10182, 1279, 1, 0, 0, 0, 10183, 10184, 5, 147, 0, 0, 10184, 10185, 7, 72, 0, 0, 10185, 1281, 1, 0, 0, 0, 10186, 10187, 5, 479, 0, 0, 10187, 10188, 5, 66, 0, 0, 10188, 10189, 5, 2, 0, 0, 10189, 10190, 3, 1042, 521, 0, 10190, 10191, 5, 3, 0, 0, 10191, 1283, 1, 0, 0, 0, 10192, 10193, 5, 480, 0, 0, 10193, 10194, 5, 2, 0, 0, 10194, 10195, 5, 103, 0, 0, 10195, 10196, 3, 1210, 605, 0, 10196, 10197, 5, 3, 0, 0, 10197, 1285, 1, 0, 0, 0, 10198, 10199, 5, 104, 0, 0, 10199, 10200, 3, 1288, 644, 0, 10200, 1287, 1, 0, 0, 0, 10201, 10206, 3, 1290, 645, 0, 10202, 10203, 5, 6, 0, 0, 10203, 10205, 3, 1290, 645, 0, 10204, 10202, 1, 0, 0, 0, 10205, 10208, 1, 0, 0, 0, 10206, 10204, 1, 0, 0, 0, 10206, 10207, 1, 0, 0, 0, 10207, 1289, 1, 0, 0, 0, 10208, 10206, 1, 0, 0, 0, 10209, 10210, 3, 1472, 736, 0, 10210, 10211, 5, 36, 0, 0, 10211, 10212, 3, 1294, 647, 0, 10212, 1291, 1, 0, 0, 0, 10213, 10216, 5, 124, 0, 0, 10214, 10217, 3, 1294, 647, 0, 10215, 10217, 3, 1472, 736, 0, 10216, 10214, 1, 0, 0, 0, 10216, 10215, 1, 0, 0, 0, 10217, 1293, 1, 0, 0, 0, 10218, 10220, 5, 2, 0, 0, 10219, 10221, 3, 1296, 648, 0, 10220, 10219, 1, 0, 0, 0, 10220, 10221, 1, 0, 0, 0, 10221, 10223, 1, 0, 0, 0, 10222, 10224, 3, 1298, 649, 0, 10223, 10222, 1, 0, 0, 0, 10223, 10224, 1, 0, 0, 0, 10224, 10226, 1, 0, 0, 0, 10225, 10227, 3, 1040, 520, 0, 10226, 10225, 1, 0, 0, 0, 10226, 10227, 1, 0, 0, 0, 10227, 10229, 1, 0, 0, 0, 10228, 10230, 3, 1300, 650, 0, 10229, 10228, 1, 0, 0, 0, 10229, 10230, 1, 0, 0, 0, 10230, 10231, 1, 0, 0, 0, 10231, 10232, 5, 3, 0, 0, 10232, 1295, 1, 0, 0, 0, 10233, 10234, 3, 1472, 736, 0, 10234, 1297, 1, 0, 0, 0, 10235, 10236, 5, 285, 0, 0, 10236, 10237, 5, 147, 0, 0, 10237, 10238, 3, 1326, 663, 0, 10238, 1299, 1, 0, 0, 0, 10239, 10240, 5, 299, 0, 0, 10240, 10242, 3, 1302, 651, 0, 10241, 10243, 3, 1306, 653, 0, 10242, 10241, 1, 0, 0, 0, 10242, 10243, 1, 0, 0, 0, 10243, 10255, 1, 0, 0, 0, 10244, 10245, 5, 320, 0, 0, 10245, 10247, 3, 1302, 651, 0, 10246, 10248, 3, 1306, 653, 0, 10247, 10246, 1, 0, 0, 0, 10247, 10248, 1, 0, 0, 0, 10248, 10255, 1, 0, 0, 0, 10249, 10250, 5, 481, 0, 0, 10250, 10252, 3, 1302, 651, 0, 10251, 10253, 3, 1306, 653, 0, 10252, 10251, 1, 0, 0, 0, 10252, 10253, 1, 0, 0, 0, 10253, 10255, 1, 0, 0, 0, 10254, 10239, 1, 0, 0, 0, 10254, 10244, 1, 0, 0, 0, 10254, 10249, 1, 0, 0, 0, 10255, 1301, 1, 0, 0, 0, 10256, 10263, 3, 1304, 652, 0, 10257, 10258, 5, 387, 0, 0, 10258, 10259, 3, 1304, 652, 0, 10259, 10260, 5, 33, 0, 0, 10260, 10261, 3, 1304, 652, 0, 10261, 10263, 1, 0, 0, 0, 10262, 10256, 1, 0, 0, 0, 10262, 10257, 1, 0, 0, 0, 10263, 1303, 1, 0, 0, 0, 10264, 10265, 5, 362, 0, 0, 10265, 10272, 7, 73, 0, 0, 10266, 10267, 5, 434, 0, 0, 10267, 10272, 5, 414, 0, 0, 10268, 10269, 3, 1210, 605, 0, 10269, 10270, 7, 73, 0, 0, 10270, 10272, 1, 0, 0, 0, 10271, 10264, 1, 0, 0, 0, 10271, 10266, 1, 0, 0, 0, 10271, 10268, 1, 0, 0, 0, 10272, 1305, 1, 0, 0, 0, 10273, 10280, 5, 199, 0, 0, 10274, 10275, 5, 434, 0, 0, 10275, 10281, 5, 414, 0, 0, 10276, 10281, 5, 66, 0, 0, 10277, 10281, 5, 467, 0, 0, 10278, 10279, 5, 269, 0, 0, 10279, 10281, 5, 482, 0, 0, 10280, 10274, 1, 0, 0, 0, 10280, 10276, 1, 0, 0, 0, 10280, 10277, 1, 0, 0, 0, 10280, 10278, 1, 0, 0, 0, 10281, 1307, 1, 0, 0, 0, 10282, 10283, 5, 414, 0, 0, 10283, 10285, 5, 2, 0, 0, 10284, 10286, 3, 1326, 663, 0, 10285, 10284, 1, 0, 0, 0, 10285, 10286, 1, 0, 0, 0, 10286, 10287, 1, 0, 0, 0, 10287, 10295, 5, 3, 0, 0, 10288, 10289, 5, 2, 0, 0, 10289, 10290, 3, 1326, 663, 0, 10290, 10291, 5, 6, 0, 0, 10291, 10292, 3, 1210, 605, 0, 10292, 10293, 5, 3, 0, 0, 10293, 10295, 1, 0, 0, 0, 10294, 10282, 1, 0, 0, 0, 10294, 10288, 1, 0, 0, 0, 10295, 1309, 1, 0, 0, 0, 10296, 10297, 5, 414, 0, 0, 10297, 10299, 5, 2, 0, 0, 10298, 10300, 3, 1326, 663, 0, 10299, 10298, 1, 0, 0, 0, 10299, 10300, 1, 0, 0, 0, 10300, 10301, 1, 0, 0, 0, 10301, 10302, 5, 3, 0, 0, 10302, 1311, 1, 0, 0, 0, 10303, 10304, 5, 2, 0, 0, 10304, 10305, 3, 1210, 605, 0, 10305, 10306, 5, 6, 0, 0, 10306, 10307, 3, 1326, 663, 0, 10307, 10308, 5, 3, 0, 0, 10308, 1313, 1, 0, 0, 0, 10309, 10310, 7, 74, 0, 0, 10310, 1315, 1, 0, 0, 0, 10311, 10314, 5, 29, 0, 0, 10312, 10314, 3, 1318, 659, 0, 10313, 10311, 1, 0, 0, 0, 10313, 10312, 1, 0, 0, 0, 10314, 1317, 1, 0, 0, 0, 10315, 10316, 7, 75, 0, 0, 10316, 1319, 1, 0, 0, 0, 10317, 10324, 5, 29, 0, 0, 10318, 10319, 5, 278, 0, 0, 10319, 10320, 5, 2, 0, 0, 10320, 10321, 3, 730, 365, 0, 10321, 10322, 5, 3, 0, 0, 10322, 10324, 1, 0, 0, 0, 10323, 10317, 1, 0, 0, 0, 10323, 10318, 1, 0, 0, 0, 10324, 1321, 1, 0, 0, 0, 10325, 10332, 3, 1316, 658, 0, 10326, 10327, 5, 278, 0, 0, 10327, 10328, 5, 2, 0, 0, 10328, 10329, 3, 730, 365, 0, 10329, 10330, 5, 3, 0, 0, 10330, 10332, 1, 0, 0, 0, 10331, 10325, 1, 0, 0, 0, 10331, 10326, 1, 0, 0, 0, 10332, 1323, 1, 0, 0, 0, 10333, 10346, 3, 1316, 658, 0, 10334, 10335, 5, 278, 0, 0, 10335, 10336, 5, 2, 0, 0, 10336, 10337, 3, 730, 365, 0, 10337, 10338, 5, 3, 0, 0, 10338, 10346, 1, 0, 0, 0, 10339, 10346, 5, 120, 0, 0, 10340, 10341, 5, 77, 0, 0, 10341, 10346, 5, 120, 0, 0, 10342, 10346, 5, 114, 0, 0, 10343, 10344, 5, 77, 0, 0, 10344, 10346, 5, 114, 0, 0, 10345, 10333, 1, 0, 0, 0, 10345, 10334, 1, 0, 0, 0, 10345, 10339, 1, 0, 0, 0, 10345, 10340, 1, 0, 0, 0, 10345, 10342, 1, 0, 0, 0, 10345, 10343, 1, 0, 0, 0, 10346, 1325, 1, 0, 0, 0, 10347, 10352, 3, 1210, 605, 0, 10348, 10349, 5, 6, 0, 0, 10349, 10351, 3, 1210, 605, 0, 10350, 10348, 1, 0, 0, 0, 10351, 10354, 1, 0, 0, 0, 10352, 10350, 1, 0, 0, 0, 10352, 10353, 1, 0, 0, 0, 10353, 1327, 1, 0, 0, 0, 10354, 10352, 1, 0, 0, 0, 10355, 10360, 3, 1334, 667, 0, 10356, 10357, 5, 6, 0, 0, 10357, 10359, 3, 1334, 667, 0, 10358, 10356, 1, 0, 0, 0, 10359, 10362, 1, 0, 0, 0, 10360, 10358, 1, 0, 0, 0, 10360, 10361, 1, 0, 0, 0, 10361, 1329, 1, 0, 0, 0, 10362, 10360, 1, 0, 0, 0, 10363, 10368, 3, 1332, 666, 0, 10364, 10365, 5, 6, 0, 0, 10365, 10367, 3, 1332, 666, 0, 10366, 10364, 1, 0, 0, 0, 10367, 10370, 1, 0, 0, 0, 10368, 10366, 1, 0, 0, 0, 10368, 10369, 1, 0, 0, 0, 10369, 1331, 1, 0, 0, 0, 10370, 10368, 1, 0, 0, 0, 10371, 10377, 3, 1430, 715, 0, 10372, 10373, 5, 2, 0, 0, 10373, 10374, 3, 1210, 605, 0, 10374, 10375, 5, 3, 0, 0, 10375, 10377, 1, 0, 0, 0, 10376, 10371, 1, 0, 0, 0, 10376, 10372, 1, 0, 0, 0, 10377, 1333, 1, 0, 0, 0, 10378, 10381, 3, 1430, 715, 0, 10379, 10381, 3, 1210, 605, 0, 10380, 10378, 1, 0, 0, 0, 10380, 10379, 1, 0, 0, 0, 10381, 1335, 1, 0, 0, 0, 10382, 10387, 3, 1338, 669, 0, 10383, 10384, 5, 6, 0, 0, 10384, 10386, 3, 1338, 669, 0, 10385, 10383, 1, 0, 0, 0, 10386, 10389, 1, 0, 0, 0, 10387, 10385, 1, 0, 0, 0, 10387, 10388, 1, 0, 0, 0, 10388, 1337, 1, 0, 0, 0, 10389, 10387, 1, 0, 0, 0, 10390, 10396, 3, 1210, 605, 0, 10391, 10392, 3, 682, 341, 0, 10392, 10393, 7, 76, 0, 0, 10393, 10394, 3, 1210, 605, 0, 10394, 10396, 1, 0, 0, 0, 10395, 10390, 1, 0, 0, 0, 10395, 10391, 1, 0, 0, 0, 10396, 1339, 1, 0, 0, 0, 10397, 10402, 3, 1166, 583, 0, 10398, 10399, 5, 6, 0, 0, 10399, 10401, 3, 1166, 583, 0, 10400, 10398, 1, 0, 0, 0, 10401, 10404, 1, 0, 0, 0, 10402, 10400, 1, 0, 0, 0, 10402, 10403, 1, 0, 0, 0, 10403, 1341, 1, 0, 0, 0, 10404, 10402, 1, 0, 0, 0, 10405, 10408, 5, 4, 0, 0, 10406, 10409, 3, 1326, 663, 0, 10407, 10409, 3, 1344, 672, 0, 10408, 10406, 1, 0, 0, 0, 10408, 10407, 1, 0, 0, 0, 10408, 10409, 1, 0, 0, 0, 10409, 10410, 1, 0, 0, 0, 10410, 10411, 5, 5, 0, 0, 10411, 1343, 1, 0, 0, 0, 10412, 10417, 3, 1342, 671, 0, 10413, 10414, 5, 6, 0, 0, 10414, 10416, 3, 1342, 671, 0, 10415, 10413, 1, 0, 0, 0, 10416, 10419, 1, 0, 0, 0, 10417, 10415, 1, 0, 0, 0, 10417, 10418, 1, 0, 0, 0, 10418, 1345, 1, 0, 0, 0, 10419, 10417, 1, 0, 0, 0, 10420, 10421, 3, 1348, 674, 0, 10421, 10422, 5, 64, 0, 0, 10422, 10423, 3, 1210, 605, 0, 10423, 1347, 1, 0, 0, 0, 10424, 10433, 3, 1490, 745, 0, 10425, 10433, 5, 384, 0, 0, 10426, 10433, 5, 264, 0, 0, 10427, 10433, 5, 176, 0, 0, 10428, 10433, 5, 218, 0, 0, 10429, 10433, 5, 261, 0, 0, 10430, 10433, 5, 326, 0, 0, 10431, 10433, 3, 1456, 728, 0, 10432, 10424, 1, 0, 0, 0, 10432, 10425, 1, 0, 0, 0, 10432, 10426, 1, 0, 0, 0, 10432, 10427, 1, 0, 0, 0, 10432, 10428, 1, 0, 0, 0, 10432, 10429, 1, 0, 0, 0, 10432, 10430, 1, 0, 0, 0, 10432, 10431, 1, 0, 0, 0, 10433, 1349, 1, 0, 0, 0, 10434, 10435, 7, 77, 0, 0, 10435, 1351, 1, 0, 0, 0, 10436, 10437, 3, 1210, 605, 0, 10437, 10438, 5, 84, 0, 0, 10438, 10439, 3, 1210, 605, 0, 10439, 10440, 5, 64, 0, 0, 10440, 10443, 3, 1210, 605, 0, 10441, 10442, 5, 62, 0, 0, 10442, 10444, 3, 1210, 605, 0, 10443, 10441, 1, 0, 0, 0, 10443, 10444, 1, 0, 0, 0, 10444, 1353, 1, 0, 0, 0, 10445, 10446, 3, 1250, 625, 0, 10446, 10447, 5, 68, 0, 0, 10447, 10448, 3, 1250, 625, 0, 10448, 1355, 1, 0, 0, 0, 10449, 10450, 3, 1210, 605, 0, 10450, 10451, 5, 64, 0, 0, 10451, 10452, 3, 1210, 605, 0, 10452, 10453, 5, 62, 0, 0, 10453, 10454, 3, 1210, 605, 0, 10454, 10477, 1, 0, 0, 0, 10455, 10456, 3, 1210, 605, 0, 10456, 10457, 5, 62, 0, 0, 10457, 10458, 3, 1210, 605, 0, 10458, 10459, 5, 64, 0, 0, 10459, 10460, 3, 1210, 605, 0, 10460, 10477, 1, 0, 0, 0, 10461, 10462, 3, 1210, 605, 0, 10462, 10463, 5, 64, 0, 0, 10463, 10464, 3, 1210, 605, 0, 10464, 10477, 1, 0, 0, 0, 10465, 10466, 3, 1210, 605, 0, 10466, 10467, 5, 62, 0, 0, 10467, 10468, 3, 1210, 605, 0, 10468, 10477, 1, 0, 0, 0, 10469, 10470, 3, 1210, 605, 0, 10470, 10471, 5, 127, 0, 0, 10471, 10472, 3, 1210, 605, 0, 10472, 10473, 5, 197, 0, 0, 10473, 10474, 3, 1210, 605, 0, 10474, 10477, 1, 0, 0, 0, 10475, 10477, 3, 1326, 663, 0, 10476, 10449, 1, 0, 0, 0, 10476, 10455, 1, 0, 0, 0, 10476, 10461, 1, 0, 0, 0, 10476, 10465, 1, 0, 0, 0, 10476, 10469, 1, 0, 0, 0, 10476, 10475, 1, 0, 0, 0, 10477, 1357, 1, 0, 0, 0, 10478, 10479, 3, 1210, 605, 0, 10479, 10480, 5, 64, 0, 0, 10480, 10481, 3, 1326, 663, 0, 10481, 10486, 1, 0, 0, 0, 10482, 10483, 5, 64, 0, 0, 10483, 10486, 3, 1326, 663, 0, 10484, 10486, 3, 1326, 663, 0, 10485, 10478, 1, 0, 0, 0, 10485, 10482, 1, 0, 0, 0, 10485, 10484, 1, 0, 0, 0, 10486, 1359, 1, 0, 0, 0, 10487, 10493, 3, 1000, 500, 0, 10488, 10489, 5, 2, 0, 0, 10489, 10490, 3, 1326, 663, 0, 10490, 10491, 5, 3, 0, 0, 10491, 10493, 1, 0, 0, 0, 10492, 10487, 1, 0, 0, 0, 10492, 10488, 1, 0, 0, 0, 10493, 1361, 1, 0, 0, 0, 10494, 10496, 5, 40, 0, 0, 10495, 10497, 3, 1370, 685, 0, 10496, 10495, 1, 0, 0, 0, 10496, 10497, 1, 0, 0, 0, 10497, 10498, 1, 0, 0, 0, 10498, 10500, 3, 1364, 682, 0, 10499, 10501, 3, 1368, 684, 0, 10500, 10499, 1, 0, 0, 0, 10500, 10501, 1, 0, 0, 0, 10501, 10502, 1, 0, 0, 0, 10502, 10503, 5, 454, 0, 0, 10503, 1363, 1, 0, 0, 0, 10504, 10506, 3, 1366, 683, 0, 10505, 10504, 1, 0, 0, 0, 10506, 10507, 1, 0, 0, 0, 10507, 10505, 1, 0, 0, 0, 10507, 10508, 1, 0, 0, 0, 10508, 1365, 1, 0, 0, 0, 10509, 10510, 5, 102, 0, 0, 10510, 10511, 3, 1210, 605, 0, 10511, 10512, 5, 93, 0, 0, 10512, 10513, 3, 1210, 605, 0, 10513, 1367, 1, 0, 0, 0, 10514, 10515, 5, 58, 0, 0, 10515, 10516, 3, 1210, 605, 0, 10516, 1369, 1, 0, 0, 0, 10517, 10518, 3, 1210, 605, 0, 10518, 1371, 1, 0, 0, 0, 10519, 10521, 3, 1472, 736, 0, 10520, 10522, 3, 1378, 689, 0, 10521, 10520, 1, 0, 0, 0, 10521, 10522, 1, 0, 0, 0, 10522, 1373, 1, 0, 0, 0, 10523, 10526, 5, 11, 0, 0, 10524, 10527, 3, 1436, 718, 0, 10525, 10527, 5, 9, 0, 0, 10526, 10524, 1, 0, 0, 0, 10526, 10525, 1, 0, 0, 0, 10527, 10541, 1, 0, 0, 0, 10528, 10537, 5, 4, 0, 0, 10529, 10538, 3, 1210, 605, 0, 10530, 10532, 3, 1376, 688, 0, 10531, 10530, 1, 0, 0, 0, 10531, 10532, 1, 0, 0, 0, 10532, 10533, 1, 0, 0, 0, 10533, 10535, 5, 8, 0, 0, 10534, 10536, 3, 1376, 688, 0, 10535, 10534, 1, 0, 0, 0, 10535, 10536, 1, 0, 0, 0, 10536, 10538, 1, 0, 0, 0, 10537, 10529, 1, 0, 0, 0, 10537, 10531, 1, 0, 0, 0, 10538, 10539, 1, 0, 0, 0, 10539, 10541, 5, 5, 0, 0, 10540, 10523, 1, 0, 0, 0, 10540, 10528, 1, 0, 0, 0, 10541, 1375, 1, 0, 0, 0, 10542, 10543, 3, 1210, 605, 0, 10543, 1377, 1, 0, 0, 0, 10544, 10546, 3, 1374, 687, 0, 10545, 10544, 1, 0, 0, 0, 10546, 10547, 1, 0, 0, 0, 10547, 10545, 1, 0, 0, 0, 10547, 10548, 1, 0, 0, 0, 10548, 1379, 1, 0, 0, 0, 10549, 10551, 3, 1374, 687, 0, 10550, 10549, 1, 0, 0, 0, 10551, 10554, 1, 0, 0, 0, 10552, 10550, 1, 0, 0, 0, 10552, 10553, 1, 0, 0, 0, 10553, 1381, 1, 0, 0, 0, 10554, 10552, 1, 0, 0, 0, 10555, 10556, 3, 1384, 692, 0, 10556, 1383, 1, 0, 0, 0, 10557, 10562, 3, 1386, 693, 0, 10558, 10559, 5, 6, 0, 0, 10559, 10561, 3, 1386, 693, 0, 10560, 10558, 1, 0, 0, 0, 10561, 10564, 1, 0, 0, 0, 10562, 10560, 1, 0, 0, 0, 10562, 10563, 1, 0, 0, 0, 10563, 1385, 1, 0, 0, 0, 10564, 10562, 1, 0, 0, 0, 10565, 10570, 3, 1334, 667, 0, 10566, 10567, 5, 36, 0, 0, 10567, 10571, 3, 1488, 744, 0, 10568, 10571, 3, 1490, 745, 0, 10569, 10571, 1, 0, 0, 0, 10570, 10566, 1, 0, 0, 0, 10570, 10568, 1, 0, 0, 0, 10570, 10569, 1, 0, 0, 0, 10571, 10574, 1, 0, 0, 0, 10572, 10574, 5, 9, 0, 0, 10573, 10565, 1, 0, 0, 0, 10573, 10572, 1, 0, 0, 0, 10574, 1387, 1, 0, 0, 0, 10575, 10580, 3, 1410, 705, 0, 10576, 10577, 5, 6, 0, 0, 10577, 10579, 3, 1410, 705, 0, 10578, 10576, 1, 0, 0, 0, 10579, 10582, 1, 0, 0, 0, 10580, 10578, 1, 0, 0, 0, 10580, 10581, 1, 0, 0, 0, 10581, 1389, 1, 0, 0, 0, 10582, 10580, 1, 0, 0, 0, 10583, 10588, 3, 1404, 702, 0, 10584, 10585, 5, 6, 0, 0, 10585, 10587, 3, 1404, 702, 0, 10586, 10584, 1, 0, 0, 0, 10587, 10590, 1, 0, 0, 0, 10588, 10586, 1, 0, 0, 0, 10588, 10589, 1, 0, 0, 0, 10589, 1391, 1, 0, 0, 0, 10590, 10588, 1, 0, 0, 0, 10591, 10596, 3, 1420, 710, 0, 10592, 10593, 5, 6, 0, 0, 10593, 10595, 3, 1420, 710, 0, 10594, 10592, 1, 0, 0, 0, 10595, 10598, 1, 0, 0, 0, 10596, 10594, 1, 0, 0, 0, 10596, 10597, 1, 0, 0, 0, 10597, 1393, 1, 0, 0, 0, 10598, 10596, 1, 0, 0, 0, 10599, 10604, 3, 1418, 709, 0, 10600, 10601, 5, 6, 0, 0, 10601, 10603, 3, 1418, 709, 0, 10602, 10600, 1, 0, 0, 0, 10603, 10606, 1, 0, 0, 0, 10604, 10602, 1, 0, 0, 0, 10604, 10605, 1, 0, 0, 0, 10605, 1395, 1, 0, 0, 0, 10606, 10604, 1, 0, 0, 0, 10607, 10612, 3, 1426, 713, 0, 10608, 10609, 5, 6, 0, 0, 10609, 10611, 3, 1426, 713, 0, 10610, 10608, 1, 0, 0, 0, 10611, 10614, 1, 0, 0, 0, 10612, 10610, 1, 0, 0, 0, 10612, 10613, 1, 0, 0, 0, 10613, 1397, 1, 0, 0, 0, 10614, 10612, 1, 0, 0, 0, 10615, 10617, 3, 1472, 736, 0, 10616, 10618, 3, 1378, 689, 0, 10617, 10616, 1, 0, 0, 0, 10617, 10618, 1, 0, 0, 0, 10618, 1399, 1, 0, 0, 0, 10619, 10621, 3, 1472, 736, 0, 10620, 10622, 3, 1378, 689, 0, 10621, 10620, 1, 0, 0, 0, 10621, 10622, 1, 0, 0, 0, 10622, 1401, 1, 0, 0, 0, 10623, 10625, 3, 1472, 736, 0, 10624, 10626, 3, 1378, 689, 0, 10625, 10624, 1, 0, 0, 0, 10625, 10626, 1, 0, 0, 0, 10626, 1403, 1, 0, 0, 0, 10627, 10629, 3, 1472, 736, 0, 10628, 10630, 3, 1378, 689, 0, 10629, 10628, 1, 0, 0, 0, 10629, 10630, 1, 0, 0, 0, 10630, 1405, 1, 0, 0, 0, 10631, 10633, 3, 1472, 736, 0, 10632, 10634, 3, 1378, 689, 0, 10633, 10632, 1, 0, 0, 0, 10633, 10634, 1, 0, 0, 0, 10634, 1407, 1, 0, 0, 0, 10635, 10637, 3, 1472, 736, 0, 10636, 10638, 3, 558, 279, 0, 10637, 10636, 1, 0, 0, 0, 10637, 10638, 1, 0, 0, 0, 10638, 1409, 1, 0, 0, 0, 10639, 10641, 3, 1472, 736, 0, 10640, 10642, 3, 1378, 689, 0, 10641, 10640, 1, 0, 0, 0, 10641, 10642, 1, 0, 0, 0, 10642, 1411, 1, 0, 0, 0, 10643, 10648, 3, 1400, 700, 0, 10644, 10645, 5, 6, 0, 0, 10645, 10647, 3, 1400, 700, 0, 10646, 10644, 1, 0, 0, 0, 10647, 10650, 1, 0, 0, 0, 10648, 10646, 1, 0, 0, 0, 10648, 10649, 1, 0, 0, 0, 10649, 1413, 1, 0, 0, 0, 10650, 10648, 1, 0, 0, 0, 10651, 10656, 3, 1434, 717, 0, 10652, 10653, 5, 6, 0, 0, 10653, 10655, 3, 1434, 717, 0, 10654, 10652, 1, 0, 0, 0, 10655, 10658, 1, 0, 0, 0, 10656, 10654, 1, 0, 0, 0, 10656, 10657, 1, 0, 0, 0, 10657, 1415, 1, 0, 0, 0, 10658, 10656, 1, 0, 0, 0, 10659, 10661, 3, 1472, 736, 0, 10660, 10662, 3, 558, 279, 0, 10661, 10660, 1, 0, 0, 0, 10661, 10662, 1, 0, 0, 0, 10662, 1417, 1, 0, 0, 0, 10663, 10665, 3, 1472, 736, 0, 10664, 10666, 3, 558, 279, 0, 10665, 10664, 1, 0, 0, 0, 10665, 10666, 1, 0, 0, 0, 10666, 1419, 1, 0, 0, 0, 10667, 10669, 3, 1472, 736, 0, 10668, 10670, 3, 558, 279, 0, 10669, 10668, 1, 0, 0, 0, 10669, 10670, 1, 0, 0, 0, 10670, 1421, 1, 0, 0, 0, 10671, 10672, 3, 1472, 736, 0, 10672, 1423, 1, 0, 0, 0, 10673, 10674, 3, 1472, 736, 0, 10674, 1425, 1, 0, 0, 0, 10675, 10680, 3, 1480, 740, 0, 10676, 10677, 3, 1472, 736, 0, 10677, 10678, 3, 1378, 689, 0, 10678, 10680, 1, 0, 0, 0, 10679, 10675, 1, 0, 0, 0, 10679, 10676, 1, 0, 0, 0, 10680, 1427, 1, 0, 0, 0, 10681, 10686, 3, 1480, 740, 0, 10682, 10683, 3, 1472, 736, 0, 10683, 10684, 3, 1378, 689, 0, 10684, 10686, 1, 0, 0, 0, 10685, 10681, 1, 0, 0, 0, 10685, 10682, 1, 0, 0, 0, 10686, 1429, 1, 0, 0, 0, 10687, 10691, 3, 1472, 736, 0, 10688, 10690, 3, 1374, 687, 0, 10689, 10688, 1, 0, 0, 0, 10690, 10693, 1, 0, 0, 0, 10691, 10689, 1, 0, 0, 0, 10691, 10692, 1, 0, 0, 0, 10692, 1431, 1, 0, 0, 0, 10693, 10691, 1, 0, 0, 0, 10694, 10695, 3, 1472, 736, 0, 10695, 1433, 1, 0, 0, 0, 10696, 10697, 3, 1472, 736, 0, 10697, 1435, 1, 0, 0, 0, 10698, 10699, 3, 1488, 744, 0, 10699, 1437, 1, 0, 0, 0, 10700, 10701, 3, 1456, 728, 0, 10701, 1439, 1, 0, 0, 0, 10702, 10707, 3, 1480, 740, 0, 10703, 10704, 3, 1472, 736, 0, 10704, 10705, 3, 1378, 689, 0, 10705, 10707, 1, 0, 0, 0, 10706, 10702, 1, 0, 0, 0, 10706, 10703, 1, 0, 0, 0, 10707, 1441, 1, 0, 0, 0, 10708, 10713, 3, 1480, 740, 0, 10709, 10710, 3, 1472, 736, 0, 10710, 10711, 3, 1378, 689, 0, 10711, 10713, 1, 0, 0, 0, 10712, 10708, 1, 0, 0, 0, 10712, 10709, 1, 0, 0, 0, 10713, 1443, 1, 0, 0, 0, 10714, 10719, 3, 1482, 741, 0, 10715, 10716, 3, 1472, 736, 0, 10716, 10717, 3, 1378, 689, 0, 10717, 10719, 1, 0, 0, 0, 10718, 10714, 1, 0, 0, 0, 10718, 10715, 1, 0, 0, 0, 10719, 1445, 1, 0, 0, 0, 10720, 10756, 3, 1454, 727, 0, 10721, 10756, 3, 1452, 726, 0, 10722, 10756, 3, 1456, 728, 0, 10723, 10756, 3, 1450, 725, 0, 10724, 10756, 3, 1448, 724, 0, 10725, 10735, 3, 1442, 721, 0, 10726, 10736, 3, 1456, 728, 0, 10727, 10728, 5, 2, 0, 0, 10728, 10730, 3, 1336, 668, 0, 10729, 10731, 3, 1040, 520, 0, 10730, 10729, 1, 0, 0, 0, 10730, 10731, 1, 0, 0, 0, 10731, 10732, 1, 0, 0, 0, 10732, 10733, 5, 3, 0, 0, 10733, 10734, 3, 1456, 728, 0, 10734, 10736, 1, 0, 0, 0, 10735, 10726, 1, 0, 0, 0, 10735, 10727, 1, 0, 0, 0, 10736, 10756, 1, 0, 0, 0, 10737, 10738, 3, 1172, 586, 0, 10738, 10739, 3, 1456, 728, 0, 10739, 10756, 1, 0, 0, 0, 10740, 10750, 3, 1200, 600, 0, 10741, 10743, 3, 1456, 728, 0, 10742, 10744, 3, 1204, 602, 0, 10743, 10742, 1, 0, 0, 0, 10743, 10744, 1, 0, 0, 0, 10744, 10751, 1, 0, 0, 0, 10745, 10746, 5, 2, 0, 0, 10746, 10747, 3, 1454, 727, 0, 10747, 10748, 5, 3, 0, 0, 10748, 10749, 3, 1456, 728, 0, 10749, 10751, 1, 0, 0, 0, 10750, 10741, 1, 0, 0, 0, 10750, 10745, 1, 0, 0, 0, 10751, 10756, 1, 0, 0, 0, 10752, 10756, 5, 96, 0, 0, 10753, 10756, 5, 60, 0, 0, 10754, 10756, 5, 78, 0, 0, 10755, 10720, 1, 0, 0, 0, 10755, 10721, 1, 0, 0, 0, 10755, 10722, 1, 0, 0, 0, 10755, 10723, 1, 0, 0, 0, 10755, 10724, 1, 0, 0, 0, 10755, 10725, 1, 0, 0, 0, 10755, 10737, 1, 0, 0, 0, 10755, 10740, 1, 0, 0, 0, 10755, 10752, 1, 0, 0, 0, 10755, 10753, 1, 0, 0, 0, 10755, 10754, 1, 0, 0, 0, 10756, 1447, 1, 0, 0, 0, 10757, 10758, 5, 567, 0, 0, 10758, 1449, 1, 0, 0, 0, 10759, 10760, 5, 563, 0, 0, 10760, 1451, 1, 0, 0, 0, 10761, 10762, 5, 573, 0, 0, 10762, 1453, 1, 0, 0, 0, 10763, 10764, 5, 571, 0, 0, 10764, 1455, 1, 0, 0, 0, 10765, 10767, 3, 1458, 729, 0, 10766, 10768, 3, 1460, 730, 0, 10767, 10766, 1, 0, 0, 0, 10767, 10768, 1, 0, 0, 0, 10768, 1457, 1, 0, 0, 0, 10769, 10781, 5, 558, 0, 0, 10770, 10781, 5, 560, 0, 0, 10771, 10775, 5, 562, 0, 0, 10772, 10774, 5, 588, 0, 0, 10773, 10772, 1, 0, 0, 0, 10774, 10777, 1, 0, 0, 0, 10775, 10773, 1, 0, 0, 0, 10775, 10776, 1, 0, 0, 0, 10776, 10778, 1, 0, 0, 0, 10777, 10775, 1, 0, 0, 0, 10778, 10781, 5, 589, 0, 0, 10779, 10781, 5, 584, 0, 0, 10780, 10769, 1, 0, 0, 0, 10780, 10770, 1, 0, 0, 0, 10780, 10771, 1, 0, 0, 0, 10780, 10779, 1, 0, 0, 0, 10781, 1459, 1, 0, 0, 0, 10782, 10783, 5, 487, 0, 0, 10783, 10784, 3, 1458, 729, 0, 10784, 1461, 1, 0, 0, 0, 10785, 10791, 3, 1454, 727, 0, 10786, 10787, 5, 12, 0, 0, 10787, 10791, 3, 1454, 727, 0, 10788, 10789, 5, 13, 0, 0, 10789, 10791, 3, 1454, 727, 0, 10790, 10785, 1, 0, 0, 0, 10790, 10786, 1, 0, 0, 0, 10790, 10788, 1, 0, 0, 0, 10791, 1463, 1, 0, 0, 0, 10792, 10793, 3, 1468, 734, 0, 10793, 1465, 1, 0, 0, 0, 10794, 10795, 3, 1468, 734, 0, 10795, 1467, 1, 0, 0, 0, 10796, 10802, 3, 1486, 743, 0, 10797, 10802, 5, 52, 0, 0, 10798, 10802, 5, 49, 0, 0, 10799, 10802, 5, 89, 0, 0, 10800, 10802, 5, 524, 0, 0, 10801, 10796, 1, 0, 0, 0, 10801, 10797, 1, 0, 0, 0, 10801, 10798, 1, 0, 0, 0, 10801, 10799, 1, 0, 0, 0, 10801, 10800, 1, 0, 0, 0, 10802, 1469, 1, 0, 0, 0, 10803, 10808, 3, 1468, 734, 0, 10804, 10805, 5, 6, 0, 0, 10805, 10807, 3, 1468, 734, 0, 10806, 10804, 1, 0, 0, 0, 10807, 10810, 1, 0, 0, 0, 10808, 10806, 1, 0, 0, 0, 10808, 10809, 1, 0, 0, 0, 10809, 1471, 1, 0, 0, 0, 10810, 10808, 1, 0, 0, 0, 10811, 10816, 3, 1490, 745, 0, 10812, 10816, 3, 1494, 747, 0, 10813, 10816, 3, 1496, 748, 0, 10814, 10816, 3, 1732, 866, 0, 10815, 10811, 1, 0, 0, 0, 10815, 10812, 1, 0, 0, 0, 10815, 10813, 1, 0, 0, 0, 10815, 10814, 1, 0, 0, 0, 10816, 1473, 1, 0, 0, 0, 10817, 10818, 3, 1490, 745, 0, 10818, 1475, 1, 0, 0, 0, 10819, 10832, 3, 708, 354, 0, 10820, 10821, 5, 2, 0, 0, 10821, 10822, 3, 1210, 605, 0, 10822, 10823, 5, 3, 0, 0, 10823, 10824, 1, 0, 0, 0, 10824, 10826, 3, 1490, 745, 0, 10825, 10827, 3, 648, 324, 0, 10826, 10825, 1, 0, 0, 0, 10826, 10827, 1, 0, 0, 0, 10827, 10829, 1, 0, 0, 0, 10828, 10830, 3, 650, 325, 0, 10829, 10828, 1, 0, 0, 0, 10829, 10830, 1, 0, 0, 0, 10830, 10832, 1, 0, 0, 0, 10831, 10819, 1, 0, 0, 0, 10831, 10820, 1, 0, 0, 0, 10832, 1477, 1, 0, 0, 0, 10833, 10834, 5, 105, 0, 0, 10834, 10836, 3, 132, 66, 0, 10835, 10833, 1, 0, 0, 0, 10835, 10836, 1, 0, 0, 0, 10836, 10838, 1, 0, 0, 0, 10837, 10839, 3, 284, 142, 0, 10838, 10837, 1, 0, 0, 0, 10838, 10839, 1, 0, 0, 0, 10839, 1479, 1, 0, 0, 0, 10840, 10845, 3, 1490, 745, 0, 10841, 10845, 3, 1494, 747, 0, 10842, 10845, 3, 1732, 866, 0, 10843, 10845, 3, 1498, 749, 0, 10844, 10840, 1, 0, 0, 0, 10844, 10841, 1, 0, 0, 0, 10844, 10842, 1, 0, 0, 0, 10844, 10843, 1, 0, 0, 0, 10845, 1481, 1, 0, 0, 0, 10846, 10851, 3, 1490, 745, 0, 10847, 10851, 3, 1494, 747, 0, 10848, 10851, 3, 1732, 866, 0, 10849, 10851, 3, 1498, 749, 0, 10850, 10846, 1, 0, 0, 0, 10850, 10847, 1, 0, 0, 0, 10850, 10848, 1, 0, 0, 0, 10850, 10849, 1, 0, 0, 0, 10851, 1483, 1, 0, 0, 0, 10852, 10855, 3, 1430, 715, 0, 10853, 10855, 3, 1498, 749, 0, 10854, 10852, 1, 0, 0, 0, 10854, 10853, 1, 0, 0, 0, 10855, 1485, 1, 0, 0, 0, 10856, 10861, 3, 1490, 745, 0, 10857, 10861, 3, 1494, 747, 0, 10858, 10861, 3, 1496, 748, 0, 10859, 10861, 3, 1498, 749, 0, 10860, 10856, 1, 0, 0, 0, 10860, 10857, 1, 0, 0, 0, 10860, 10858, 1, 0, 0, 0, 10860, 10859, 1, 0, 0, 0, 10861, 1487, 1, 0, 0, 0, 10862, 10869, 3, 1490, 745, 0, 10863, 10869, 3, 1732, 866, 0, 10864, 10869, 3, 1494, 747, 0, 10865, 10869, 3, 1496, 748, 0, 10866, 10869, 3, 1498, 749, 0, 10867, 10869, 3, 1500, 750, 0, 10868, 10862, 1, 0, 0, 0, 10868, 10863, 1, 0, 0, 0, 10868, 10864, 1, 0, 0, 0, 10868, 10865, 1, 0, 0, 0, 10868, 10866, 1, 0, 0, 0, 10868, 10867, 1, 0, 0, 0, 10869, 1489, 1, 0, 0, 0, 10870, 10872, 5, 549, 0, 0, 10871, 10873, 3, 1460, 730, 0, 10872, 10871, 1, 0, 0, 0, 10872, 10873, 1, 0, 0, 0, 10873, 10881, 1, 0, 0, 0, 10874, 10881, 3, 1456, 728, 0, 10875, 10881, 5, 550, 0, 0, 10876, 10881, 5, 554, 0, 0, 10877, 10881, 3, 1254, 627, 0, 10878, 10881, 3, 1492, 746, 0, 10879, 10881, 3, 1732, 866, 0, 10880, 10870, 1, 0, 0, 0, 10880, 10874, 1, 0, 0, 0, 10880, 10875, 1, 0, 0, 0, 10880, 10876, 1, 0, 0, 0, 10880, 10877, 1, 0, 0, 0, 10880, 10878, 1, 0, 0, 0, 10880, 10879, 1, 0, 0, 0, 10881, 1491, 1, 0, 0, 0, 10882, 10883, 5, 575, 0, 0, 10883, 1493, 1, 0, 0, 0, 10884, 10885, 7, 78, 0, 0, 10885, 1495, 1, 0, 0, 0, 10886, 10938, 5, 387, 0, 0, 10887, 10938, 5, 388, 0, 0, 10888, 10938, 3, 1182, 591, 0, 10889, 10938, 5, 390, 0, 0, 10890, 10938, 5, 391, 0, 0, 10891, 10938, 3, 1190, 595, 0, 10892, 10938, 5, 393, 0, 0, 10893, 10938, 5, 394, 0, 0, 10894, 10938, 5, 395, 0, 0, 10895, 10938, 5, 396, 0, 0, 10896, 10938, 5, 397, 0, 0, 10897, 10938, 5, 398, 0, 0, 10898, 10938, 5, 399, 0, 0, 10899, 10938, 5, 470, 0, 0, 10900, 10938, 5, 400, 0, 0, 10901, 10938, 5, 401, 0, 0, 10902, 10938, 5, 402, 0, 0, 10903, 10938, 5, 403, 0, 0, 10904, 10938, 5, 404, 0, 0, 10905, 10938, 5, 405, 0, 0, 10906, 10938, 5, 406, 0, 0, 10907, 10938, 5, 407, 0, 0, 10908, 10938, 5, 489, 0, 0, 10909, 10938, 5, 408, 0, 0, 10910, 10938, 3, 1178, 589, 0, 10911, 10938, 5, 453, 0, 0, 10912, 10938, 5, 410, 0, 0, 10913, 10938, 5, 411, 0, 0, 10914, 10938, 5, 412, 0, 0, 10915, 10938, 5, 413, 0, 0, 10916, 10938, 5, 414, 0, 0, 10917, 10938, 5, 415, 0, 0, 10918, 10938, 5, 416, 0, 0, 10919, 10938, 5, 417, 0, 0, 10920, 10938, 5, 418, 0, 0, 10921, 10938, 5, 419, 0, 0, 10922, 10938, 5, 420, 0, 0, 10923, 10938, 5, 421, 0, 0, 10924, 10938, 5, 422, 0, 0, 10925, 10938, 5, 423, 0, 0, 10926, 10938, 5, 424, 0, 0, 10927, 10938, 5, 425, 0, 0, 10928, 10938, 5, 426, 0, 0, 10929, 10938, 5, 427, 0, 0, 10930, 10938, 5, 428, 0, 0, 10931, 10938, 5, 476, 0, 0, 10932, 10938, 5, 429, 0, 0, 10933, 10938, 5, 430, 0, 0, 10934, 10938, 5, 431, 0, 0, 10935, 10938, 5, 432, 0, 0, 10936, 10938, 5, 474, 0, 0, 10937, 10886, 1, 0, 0, 0, 10937, 10887, 1, 0, 0, 0, 10937, 10888, 1, 0, 0, 0, 10937, 10889, 1, 0, 0, 0, 10937, 10890, 1, 0, 0, 0, 10937, 10891, 1, 0, 0, 0, 10937, 10892, 1, 0, 0, 0, 10937, 10893, 1, 0, 0, 0, 10937, 10894, 1, 0, 0, 0, 10937, 10895, 1, 0, 0, 0, 10937, 10896, 1, 0, 0, 0, 10937, 10897, 1, 0, 0, 0, 10937, 10898, 1, 0, 0, 0, 10937, 10899, 1, 0, 0, 0, 10937, 10900, 1, 0, 0, 0, 10937, 10901, 1, 0, 0, 0, 10937, 10902, 1, 0, 0, 0, 10937, 10903, 1, 0, 0, 0, 10937, 10904, 1, 0, 0, 0, 10937, 10905, 1, 0, 0, 0, 10937, 10906, 1, 0, 0, 0, 10937, 10907, 1, 0, 0, 0, 10937, 10908, 1, 0, 0, 0, 10937, 10909, 1, 0, 0, 0, 10937, 10910, 1, 0, 0, 0, 10937, 10911, 1, 0, 0, 0, 10937, 10912, 1, 0, 0, 0, 10937, 10913, 1, 0, 0, 0, 10937, 10914, 1, 0, 0, 0, 10937, 10915, 1, 0, 0, 0, 10937, 10916, 1, 0, 0, 0, 10937, 10917, 1, 0, 0, 0, 10937, 10918, 1, 0, 0, 0, 10937, 10919, 1, 0, 0, 0, 10937, 10920, 1, 0, 0, 0, 10937, 10921, 1, 0, 0, 0, 10937, 10922, 1, 0, 0, 0, 10937, 10923, 1, 0, 0, 0, 10937, 10924, 1, 0, 0, 0, 10937, 10925, 1, 0, 0, 0, 10937, 10926, 1, 0, 0, 0, 10937, 10927, 1, 0, 0, 0, 10937, 10928, 1, 0, 0, 0, 10937, 10929, 1, 0, 0, 0, 10937, 10930, 1, 0, 0, 0, 10937, 10931, 1, 0, 0, 0, 10937, 10932, 1, 0, 0, 0, 10937, 10933, 1, 0, 0, 0, 10937, 10934, 1, 0, 0, 0, 10937, 10935, 1, 0, 0, 0, 10937, 10936, 1, 0, 0, 0, 10938, 1497, 1, 0, 0, 0, 10939, 10940, 7, 79, 0, 0, 10940, 1499, 1, 0, 0, 0, 10941, 10942, 7, 80, 0, 0, 10942, 1501, 1, 0, 0, 0, 10943, 10944, 3, 1504, 752, 0, 10944, 10945, 3, 1514, 757, 0, 10945, 10946, 3, 1512, 756, 0, 10946, 1503, 1, 0, 0, 0, 10947, 10949, 3, 1506, 753, 0, 10948, 10947, 1, 0, 0, 0, 10949, 10952, 1, 0, 0, 0, 10950, 10948, 1, 0, 0, 0, 10950, 10951, 1, 0, 0, 0, 10951, 1505, 1, 0, 0, 0, 10952, 10950, 1, 0, 0, 0, 10953, 10954, 3, 1508, 754, 0, 10954, 10955, 5, 279, 0, 0, 10955, 10956, 5, 490, 0, 0, 10956, 10974, 1, 0, 0, 0, 10957, 10958, 3, 1508, 754, 0, 10958, 10959, 5, 491, 0, 0, 10959, 10960, 3, 1510, 755, 0, 10960, 10974, 1, 0, 0, 0, 10961, 10962, 3, 1508, 754, 0, 10962, 10963, 5, 492, 0, 0, 10963, 10964, 5, 493, 0, 0, 10964, 10974, 1, 0, 0, 0, 10965, 10966, 3, 1508, 754, 0, 10966, 10967, 5, 492, 0, 0, 10967, 10968, 5, 494, 0, 0, 10968, 10974, 1, 0, 0, 0, 10969, 10970, 3, 1508, 754, 0, 10970, 10971, 5, 492, 0, 0, 10971, 10972, 5, 495, 0, 0, 10972, 10974, 1, 0, 0, 0, 10973, 10953, 1, 0, 0, 0, 10973, 10957, 1, 0, 0, 0, 10973, 10961, 1, 0, 0, 0, 10973, 10965, 1, 0, 0, 0, 10973, 10969, 1, 0, 0, 0, 10974, 1507, 1, 0, 0, 0, 10975, 10976, 5, 29, 0, 0, 10976, 1509, 1, 0, 0, 0, 10977, 10982, 3, 1456, 728, 0, 10978, 10982, 3, 1500, 750, 0, 10979, 10982, 3, 1732, 866, 0, 10980, 10982, 3, 1494, 747, 0, 10981, 10977, 1, 0, 0, 0, 10981, 10978, 1, 0, 0, 0, 10981, 10979, 1, 0, 0, 0, 10981, 10980, 1, 0, 0, 0, 10982, 1511, 1, 0, 0, 0, 10983, 10986, 1, 0, 0, 0, 10984, 10986, 5, 7, 0, 0, 10985, 10983, 1, 0, 0, 0, 10985, 10984, 1, 0, 0, 0, 10986, 1513, 1, 0, 0, 0, 10987, 10988, 3, 1516, 758, 0, 10988, 10989, 5, 146, 0, 0, 10989, 10990, 3, 1558, 779, 0, 10990, 10991, 3, 1712, 856, 0, 10991, 10992, 5, 454, 0, 0, 10992, 10993, 3, 1726, 863, 0, 10993, 1515, 1, 0, 0, 0, 10994, 10999, 3, 1722, 861, 0, 10995, 10997, 3, 1518, 759, 0, 10996, 10998, 3, 1520, 760, 0, 10997, 10996, 1, 0, 0, 0, 10997, 10998, 1, 0, 0, 0, 10998, 11000, 1, 0, 0, 0, 10999, 10995, 1, 0, 0, 0, 10999, 11000, 1, 0, 0, 0, 11000, 1517, 1, 0, 0, 0, 11001, 11002, 5, 178, 0, 0, 11002, 1519, 1, 0, 0, 0, 11003, 11005, 3, 1524, 762, 0, 11004, 11003, 1, 0, 0, 0, 11005, 11006, 1, 0, 0, 0, 11006, 11004, 1, 0, 0, 0, 11006, 11007, 1, 0, 0, 0, 11007, 1521, 1, 0, 0, 0, 11008, 11009, 5, 18, 0, 0, 11009, 11010, 3, 1730, 865, 0, 11010, 11011, 5, 19, 0, 0, 11011, 1523, 1, 0, 0, 0, 11012, 11016, 3, 1526, 763, 0, 11013, 11016, 5, 178, 0, 0, 11014, 11016, 3, 1522, 761, 0, 11015, 11012, 1, 0, 0, 0, 11015, 11013, 1, 0, 0, 0, 11015, 11014, 1, 0, 0, 0, 11016, 1525, 1, 0, 0, 0, 11017, 11033, 3, 1542, 771, 0, 11018, 11019, 5, 496, 0, 0, 11019, 11020, 5, 62, 0, 0, 11020, 11034, 3, 1540, 770, 0, 11021, 11022, 3, 1544, 772, 0, 11022, 11023, 3, 1546, 773, 0, 11023, 11024, 3, 1548, 774, 0, 11024, 11025, 3, 1550, 775, 0, 11025, 11026, 3, 1552, 776, 0, 11026, 11034, 1, 0, 0, 0, 11027, 11028, 3, 1528, 764, 0, 11028, 11029, 5, 172, 0, 0, 11029, 11030, 3, 1532, 766, 0, 11030, 11031, 3, 1538, 769, 0, 11031, 11032, 3, 1530, 765, 0, 11032, 11034, 1, 0, 0, 0, 11033, 11018, 1, 0, 0, 0, 11033, 11021, 1, 0, 0, 0, 11033, 11027, 1, 0, 0, 0, 11034, 11035, 1, 0, 0, 0, 11035, 11036, 5, 7, 0, 0, 11036, 1527, 1, 0, 0, 0, 11037, 11042, 1, 0, 0, 0, 11038, 11039, 5, 269, 0, 0, 11039, 11042, 5, 324, 0, 0, 11040, 11042, 5, 324, 0, 0, 11041, 11037, 1, 0, 0, 0, 11041, 11038, 1, 0, 0, 0, 11041, 11040, 1, 0, 0, 0, 11042, 1529, 1, 0, 0, 0, 11043, 11044, 3, 998, 499, 0, 11044, 1531, 1, 0, 0, 0, 11045, 11051, 1, 0, 0, 0, 11046, 11047, 5, 2, 0, 0, 11047, 11048, 3, 1534, 767, 0, 11048, 11049, 5, 3, 0, 0, 11049, 11051, 1, 0, 0, 0, 11050, 11045, 1, 0, 0, 0, 11050, 11046, 1, 0, 0, 0, 11051, 1533, 1, 0, 0, 0, 11052, 11057, 3, 1536, 768, 0, 11053, 11054, 5, 6, 0, 0, 11054, 11056, 3, 1536, 768, 0, 11055, 11053, 1, 0, 0, 0, 11056, 11059, 1, 0, 0, 0, 11057, 11055, 1, 0, 0, 0, 11057, 11058, 1, 0, 0, 0, 11058, 1535, 1, 0, 0, 0, 11059, 11057, 1, 0, 0, 0, 11060, 11061, 3, 1542, 771, 0, 11061, 11062, 3, 1546, 773, 0, 11062, 1537, 1, 0, 0, 0, 11063, 11064, 7, 81, 0, 0, 11064, 1539, 1, 0, 0, 0, 11065, 11068, 5, 28, 0, 0, 11066, 11068, 3, 1472, 736, 0, 11067, 11065, 1, 0, 0, 0, 11067, 11066, 1, 0, 0, 0, 11068, 1541, 1, 0, 0, 0, 11069, 11070, 3, 1730, 865, 0, 11070, 1543, 1, 0, 0, 0, 11071, 11074, 1, 0, 0, 0, 11072, 11074, 5, 497, 0, 0, 11073, 11071, 1, 0, 0, 0, 11073, 11072, 1, 0, 0, 0, 11074, 1545, 1, 0, 0, 0, 11075, 11076, 3, 1166, 583, 0, 11076, 1547, 1, 0, 0, 0, 11077, 11081, 1, 0, 0, 0, 11078, 11079, 5, 43, 0, 0, 11079, 11081, 3, 556, 278, 0, 11080, 11077, 1, 0, 0, 0, 11080, 11078, 1, 0, 0, 0, 11081, 1549, 1, 0, 0, 0, 11082, 11086, 1, 0, 0, 0, 11083, 11084, 5, 77, 0, 0, 11084, 11086, 5, 78, 0, 0, 11085, 11082, 1, 0, 0, 0, 11085, 11083, 1, 0, 0, 0, 11086, 1551, 1, 0, 0, 0, 11087, 11092, 1, 0, 0, 0, 11088, 11089, 3, 1554, 777, 0, 11089, 11090, 3, 1734, 867, 0, 11090, 11092, 1, 0, 0, 0, 11091, 11087, 1, 0, 0, 0, 11091, 11088, 1, 0, 0, 0, 11092, 1553, 1, 0, 0, 0, 11093, 11096, 3, 1556, 778, 0, 11094, 11096, 5, 53, 0, 0, 11095, 11093, 1, 0, 0, 0, 11095, 11094, 1, 0, 0, 0, 11096, 1555, 1, 0, 0, 0, 11097, 11098, 7, 82, 0, 0, 11098, 1557, 1, 0, 0, 0, 11099, 11101, 3, 1560, 780, 0, 11100, 11099, 1, 0, 0, 0, 11101, 11104, 1, 0, 0, 0, 11102, 11100, 1, 0, 0, 0, 11102, 11103, 1, 0, 0, 0, 11103, 1559, 1, 0, 0, 0, 11104, 11102, 1, 0, 0, 0, 11105, 11106, 3, 1514, 757, 0, 11106, 11107, 5, 7, 0, 0, 11107, 11133, 1, 0, 0, 0, 11108, 11133, 3, 1626, 813, 0, 11109, 11133, 3, 1630, 815, 0, 11110, 11133, 3, 1568, 784, 0, 11111, 11133, 3, 1584, 792, 0, 11112, 11133, 3, 1590, 795, 0, 11113, 11133, 3, 1600, 800, 0, 11114, 11133, 3, 1602, 801, 0, 11115, 11133, 3, 1604, 802, 0, 11116, 11133, 3, 1618, 809, 0, 11117, 11133, 3, 1622, 811, 0, 11118, 11133, 3, 1642, 821, 0, 11119, 11133, 3, 1648, 824, 0, 11120, 11133, 3, 1650, 825, 0, 11121, 11133, 3, 1562, 781, 0, 11122, 11133, 3, 1564, 782, 0, 11123, 11133, 3, 1570, 785, 0, 11124, 11133, 3, 1658, 829, 0, 11125, 11133, 3, 1670, 835, 0, 11126, 11133, 3, 1678, 839, 0, 11127, 11133, 3, 1698, 849, 0, 11128, 11133, 3, 1700, 850, 0, 11129, 11133, 3, 1702, 851, 0, 11130, 11133, 3, 1704, 852, 0, 11131, 11133, 3, 1708, 854, 0, 11132, 11105, 1, 0, 0, 0, 11132, 11108, 1, 0, 0, 0, 11132, 11109, 1, 0, 0, 0, 11132, 11110, 1, 0, 0, 0, 11132, 11111, 1, 0, 0, 0, 11132, 11112, 1, 0, 0, 0, 11132, 11113, 1, 0, 0, 0, 11132, 11114, 1, 0, 0, 0, 11132, 11115, 1, 0, 0, 0, 11132, 11116, 1, 0, 0, 0, 11132, 11117, 1, 0, 0, 0, 11132, 11118, 1, 0, 0, 0, 11132, 11119, 1, 0, 0, 0, 11132, 11120, 1, 0, 0, 0, 11132, 11121, 1, 0, 0, 0, 11132, 11122, 1, 0, 0, 0, 11132, 11123, 1, 0, 0, 0, 11132, 11124, 1, 0, 0, 0, 11132, 11125, 1, 0, 0, 0, 11132, 11126, 1, 0, 0, 0, 11132, 11127, 1, 0, 0, 0, 11132, 11128, 1, 0, 0, 0, 11132, 11129, 1, 0, 0, 0, 11132, 11130, 1, 0, 0, 0, 11132, 11131, 1, 0, 0, 0, 11133, 1561, 1, 0, 0, 0, 11134, 11135, 5, 498, 0, 0, 11135, 11136, 3, 1738, 869, 0, 11136, 11137, 5, 7, 0, 0, 11137, 1563, 1, 0, 0, 0, 11138, 11139, 5, 433, 0, 0, 11139, 11145, 3, 1730, 865, 0, 11140, 11141, 5, 2, 0, 0, 11141, 11142, 3, 1566, 783, 0, 11142, 11143, 5, 3, 0, 0, 11143, 11144, 5, 7, 0, 0, 11144, 11146, 1, 0, 0, 0, 11145, 11140, 1, 0, 0, 0, 11145, 11146, 1, 0, 0, 0, 11146, 11155, 1, 0, 0, 0, 11147, 11148, 5, 57, 0, 0, 11148, 11149, 3, 1730, 865, 0, 11149, 11150, 5, 2, 0, 0, 11150, 11151, 3, 1566, 783, 0, 11151, 11152, 5, 3, 0, 0, 11152, 11153, 5, 7, 0, 0, 11153, 11155, 1, 0, 0, 0, 11154, 11138, 1, 0, 0, 0, 11154, 11147, 1, 0, 0, 0, 11155, 1565, 1, 0, 0, 0, 11156, 11159, 1, 0, 0, 0, 11157, 11159, 3, 1326, 663, 0, 11158, 11156, 1, 0, 0, 0, 11158, 11157, 1, 0, 0, 0, 11159, 1567, 1, 0, 0, 0, 11160, 11161, 3, 1582, 791, 0, 11161, 11162, 3, 1556, 778, 0, 11162, 11163, 3, 1734, 867, 0, 11163, 11164, 5, 7, 0, 0, 11164, 1569, 1, 0, 0, 0, 11165, 11166, 5, 499, 0, 0, 11166, 11167, 3, 1572, 786, 0, 11167, 11168, 5, 500, 0, 0, 11168, 11169, 3, 1574, 787, 0, 11169, 11170, 5, 7, 0, 0, 11170, 1571, 1, 0, 0, 0, 11171, 11175, 1, 0, 0, 0, 11172, 11175, 5, 434, 0, 0, 11173, 11175, 5, 501, 0, 0, 11174, 11171, 1, 0, 0, 0, 11174, 11172, 1, 0, 0, 0, 11174, 11173, 1, 0, 0, 0, 11175, 1573, 1, 0, 0, 0, 11176, 11181, 3, 1576, 788, 0, 11177, 11178, 5, 6, 0, 0, 11178, 11180, 3, 1576, 788, 0, 11179, 11177, 1, 0, 0, 0, 11180, 11183, 1, 0, 0, 0, 11181, 11179, 1, 0, 0, 0, 11181, 11182, 1, 0, 0, 0, 11182, 1575, 1, 0, 0, 0, 11183, 11181, 1, 0, 0, 0, 11184, 11185, 3, 1580, 790, 0, 11185, 11186, 3, 1556, 778, 0, 11186, 11187, 3, 1578, 789, 0, 11187, 1577, 1, 0, 0, 0, 11188, 11189, 3, 1472, 736, 0, 11189, 1579, 1, 0, 0, 0, 11190, 11191, 3, 1582, 791, 0, 11191, 1581, 1, 0, 0, 0, 11192, 11195, 3, 556, 278, 0, 11193, 11195, 5, 28, 0, 0, 11194, 11192, 1, 0, 0, 0, 11194, 11193, 1, 0, 0, 0, 11195, 11202, 1, 0, 0, 0, 11196, 11197, 5, 4, 0, 0, 11197, 11198, 3, 1740, 870, 0, 11198, 11199, 5, 5, 0, 0, 11199, 11201, 1, 0, 0, 0, 11200, 11196, 1, 0, 0, 0, 11201, 11204, 1, 0, 0, 0, 11202, 11200, 1, 0, 0, 0, 11202, 11203, 1, 0, 0, 0, 11203, 1583, 1, 0, 0, 0, 11204, 11202, 1, 0, 0, 0, 11205, 11206, 5, 220, 0, 0, 11206, 11207, 3, 1736, 868, 0, 11207, 11208, 5, 93, 0, 0, 11208, 11209, 3, 1558, 779, 0, 11209, 11210, 3, 1586, 793, 0, 11210, 11211, 3, 1588, 794, 0, 11211, 11212, 5, 454, 0, 0, 11212, 11213, 5, 220, 0, 0, 11213, 11214, 5, 7, 0, 0, 11214, 1585, 1, 0, 0, 0, 11215, 11216, 5, 502, 0, 0, 11216, 11217, 3, 1210, 605, 0, 11217, 11218, 5, 93, 0, 0, 11218, 11219, 3, 1558, 779, 0, 11219, 11221, 1, 0, 0, 0, 11220, 11215, 1, 0, 0, 0, 11221, 11224, 1, 0, 0, 0, 11222, 11220, 1, 0, 0, 0, 11222, 11223, 1, 0, 0, 0, 11223, 1587, 1, 0, 0, 0, 11224, 11222, 1, 0, 0, 0, 11225, 11229, 1, 0, 0, 0, 11226, 11227, 5, 58, 0, 0, 11227, 11229, 3, 1558, 779, 0, 11228, 11225, 1, 0, 0, 0, 11228, 11226, 1, 0, 0, 0, 11229, 1589, 1, 0, 0, 0, 11230, 11231, 5, 40, 0, 0, 11231, 11232, 3, 1592, 796, 0, 11232, 11233, 3, 1594, 797, 0, 11233, 11234, 3, 1598, 799, 0, 11234, 11235, 5, 454, 0, 0, 11235, 11236, 5, 40, 0, 0, 11236, 11237, 5, 7, 0, 0, 11237, 1591, 1, 0, 0, 0, 11238, 11241, 1, 0, 0, 0, 11239, 11241, 3, 1734, 867, 0, 11240, 11238, 1, 0, 0, 0, 11240, 11239, 1, 0, 0, 0, 11241, 1593, 1, 0, 0, 0, 11242, 11244, 3, 1596, 798, 0, 11243, 11242, 1, 0, 0, 0, 11244, 11245, 1, 0, 0, 0, 11245, 11243, 1, 0, 0, 0, 11245, 11246, 1, 0, 0, 0, 11246, 1595, 1, 0, 0, 0, 11247, 11248, 5, 102, 0, 0, 11248, 11249, 3, 1326, 663, 0, 11249, 11250, 5, 93, 0, 0, 11250, 11251, 3, 1558, 779, 0, 11251, 1597, 1, 0, 0, 0, 11252, 11256, 1, 0, 0, 0, 11253, 11254, 5, 58, 0, 0, 11254, 11256, 3, 1558, 779, 0, 11255, 11252, 1, 0, 0, 0, 11255, 11253, 1, 0, 0, 0, 11256, 1599, 1, 0, 0, 0, 11257, 11258, 3, 1724, 862, 0, 11258, 11259, 3, 1646, 823, 0, 11259, 1601, 1, 0, 0, 0, 11260, 11261, 3, 1724, 862, 0, 11261, 11262, 5, 503, 0, 0, 11262, 11263, 3, 1742, 871, 0, 11263, 11264, 3, 1646, 823, 0, 11264, 1603, 1, 0, 0, 0, 11265, 11266, 3, 1724, 862, 0, 11266, 11267, 5, 62, 0, 0, 11267, 11268, 3, 1606, 803, 0, 11268, 11269, 3, 1646, 823, 0, 11269, 1605, 1, 0, 0, 0, 11270, 11271, 3, 1616, 808, 0, 11271, 11287, 5, 68, 0, 0, 11272, 11273, 3, 992, 496, 0, 11273, 11274, 3, 1610, 805, 0, 11274, 11288, 1, 0, 0, 0, 11275, 11288, 3, 998, 499, 0, 11276, 11288, 3, 924, 462, 0, 11277, 11278, 5, 202, 0, 0, 11278, 11279, 3, 1210, 605, 0, 11279, 11280, 3, 1608, 804, 0, 11280, 11288, 1, 0, 0, 0, 11281, 11282, 3, 1612, 806, 0, 11282, 11283, 3, 1210, 605, 0, 11283, 11284, 5, 24, 0, 0, 11284, 11285, 3, 1210, 605, 0, 11285, 11286, 3, 1614, 807, 0, 11286, 11288, 1, 0, 0, 0, 11287, 11272, 1, 0, 0, 0, 11287, 11275, 1, 0, 0, 0, 11287, 11276, 1, 0, 0, 0, 11287, 11277, 1, 0, 0, 0, 11287, 11281, 1, 0, 0, 0, 11288, 1607, 1, 0, 0, 0, 11289, 11293, 1, 0, 0, 0, 11290, 11291, 5, 100, 0, 0, 11291, 11293, 3, 1326, 663, 0, 11292, 11289, 1, 0, 0, 0, 11292, 11290, 1, 0, 0, 0, 11293, 1609, 1, 0, 0, 0, 11294, 11307, 1, 0, 0, 0, 11295, 11296, 5, 2, 0, 0, 11296, 11301, 3, 1210, 605, 0, 11297, 11298, 5, 6, 0, 0, 11298, 11300, 3, 1210, 605, 0, 11299, 11297, 1, 0, 0, 0, 11300, 11303, 1, 0, 0, 0, 11301, 11299, 1, 0, 0, 0, 11301, 11302, 1, 0, 0, 0, 11302, 11304, 1, 0, 0, 0, 11303, 11301, 1, 0, 0, 0, 11304, 11305, 5, 3, 0, 0, 11305, 11307, 1, 0, 0, 0, 11306, 11294, 1, 0, 0, 0, 11306, 11295, 1, 0, 0, 0, 11307, 1611, 1, 0, 0, 0, 11308, 11311, 1, 0, 0, 0, 11309, 11311, 5, 504, 0, 0, 11310, 11308, 1, 0, 0, 0, 11310, 11309, 1, 0, 0, 0, 11311, 1613, 1, 0, 0, 0, 11312, 11316, 1, 0, 0, 0, 11313, 11314, 5, 147, 0, 0, 11314, 11316, 3, 1210, 605, 0, 11315, 11312, 1, 0, 0, 0, 11315, 11313, 1, 0, 0, 0, 11316, 1615, 1, 0, 0, 0, 11317, 11318, 3, 550, 275, 0, 11318, 1617, 1, 0, 0, 0, 11319, 11320, 3, 1724, 862, 0, 11320, 11321, 5, 505, 0, 0, 11321, 11322, 3, 1616, 808, 0, 11322, 11323, 3, 1620, 810, 0, 11323, 11324, 5, 68, 0, 0, 11324, 11325, 5, 35, 0, 0, 11325, 11326, 3, 1210, 605, 0, 11326, 11327, 3, 1646, 823, 0, 11327, 1619, 1, 0, 0, 0, 11328, 11332, 1, 0, 0, 0, 11329, 11330, 5, 506, 0, 0, 11330, 11332, 3, 1454, 727, 0, 11331, 11328, 1, 0, 0, 0, 11331, 11329, 1, 0, 0, 0, 11332, 1621, 1, 0, 0, 0, 11333, 11334, 3, 1624, 812, 0, 11334, 11336, 3, 1726, 863, 0, 11335, 11337, 3, 1728, 864, 0, 11336, 11335, 1, 0, 0, 0, 11336, 11337, 1, 0, 0, 0, 11337, 11338, 1, 0, 0, 0, 11338, 11339, 5, 7, 0, 0, 11339, 1623, 1, 0, 0, 0, 11340, 11341, 7, 83, 0, 0, 11341, 1625, 1, 0, 0, 0, 11342, 11354, 5, 508, 0, 0, 11343, 11344, 5, 268, 0, 0, 11344, 11355, 3, 1734, 867, 0, 11345, 11351, 5, 509, 0, 0, 11346, 11347, 5, 202, 0, 0, 11347, 11348, 3, 1210, 605, 0, 11348, 11349, 3, 1608, 804, 0, 11349, 11352, 1, 0, 0, 0, 11350, 11352, 3, 998, 499, 0, 11351, 11346, 1, 0, 0, 0, 11351, 11350, 1, 0, 0, 0, 11352, 11355, 1, 0, 0, 0, 11353, 11355, 3, 1628, 814, 0, 11354, 11343, 1, 0, 0, 0, 11354, 11345, 1, 0, 0, 0, 11354, 11353, 1, 0, 0, 0, 11355, 11356, 1, 0, 0, 0, 11356, 11357, 5, 7, 0, 0, 11357, 1627, 1, 0, 0, 0, 11358, 11361, 1, 0, 0, 0, 11359, 11361, 3, 1734, 867, 0, 11360, 11358, 1, 0, 0, 0, 11360, 11359, 1, 0, 0, 0, 11361, 1629, 1, 0, 0, 0, 11362, 11364, 5, 510, 0, 0, 11363, 11365, 3, 1632, 816, 0, 11364, 11363, 1, 0, 0, 0, 11364, 11365, 1, 0, 0, 0, 11365, 11366, 1, 0, 0, 0, 11366, 11367, 3, 1456, 728, 0, 11367, 11368, 3, 1634, 817, 0, 11368, 11369, 3, 1636, 818, 0, 11369, 11370, 5, 7, 0, 0, 11370, 11397, 1, 0, 0, 0, 11371, 11373, 5, 510, 0, 0, 11372, 11374, 3, 1632, 816, 0, 11373, 11372, 1, 0, 0, 0, 11373, 11374, 1, 0, 0, 0, 11374, 11375, 1, 0, 0, 0, 11375, 11376, 3, 1490, 745, 0, 11376, 11377, 3, 1636, 818, 0, 11377, 11378, 5, 7, 0, 0, 11378, 11397, 1, 0, 0, 0, 11379, 11381, 5, 510, 0, 0, 11380, 11382, 3, 1632, 816, 0, 11381, 11380, 1, 0, 0, 0, 11381, 11382, 1, 0, 0, 0, 11382, 11383, 1, 0, 0, 0, 11383, 11384, 5, 511, 0, 0, 11384, 11385, 3, 1456, 728, 0, 11385, 11386, 3, 1636, 818, 0, 11386, 11387, 5, 7, 0, 0, 11387, 11397, 1, 0, 0, 0, 11388, 11390, 5, 510, 0, 0, 11389, 11391, 3, 1632, 816, 0, 11390, 11389, 1, 0, 0, 0, 11390, 11391, 1, 0, 0, 0, 11391, 11392, 1, 0, 0, 0, 11392, 11393, 3, 1636, 818, 0, 11393, 11394, 5, 7, 0, 0, 11394, 11397, 1, 0, 0, 0, 11395, 11397, 5, 510, 0, 0, 11396, 11362, 1, 0, 0, 0, 11396, 11371, 1, 0, 0, 0, 11396, 11379, 1, 0, 0, 0, 11396, 11388, 1, 0, 0, 0, 11396, 11395, 1, 0, 0, 0, 11397, 1631, 1, 0, 0, 0, 11398, 11399, 7, 84, 0, 0, 11399, 1633, 1, 0, 0, 0, 11400, 11408, 1, 0, 0, 0, 11401, 11402, 5, 6, 0, 0, 11402, 11404, 3, 1210, 605, 0, 11403, 11401, 1, 0, 0, 0, 11404, 11405, 1, 0, 0, 0, 11405, 11403, 1, 0, 0, 0, 11405, 11406, 1, 0, 0, 0, 11406, 11408, 1, 0, 0, 0, 11407, 11400, 1, 0, 0, 0, 11407, 11403, 1, 0, 0, 0, 11408, 1635, 1, 0, 0, 0, 11409, 11413, 1, 0, 0, 0, 11410, 11411, 5, 100, 0, 0, 11411, 11413, 3, 1640, 820, 0, 11412, 11409, 1, 0, 0, 0, 11412, 11410, 1, 0, 0, 0, 11413, 1637, 1, 0, 0, 0, 11414, 11415, 3, 1490, 745, 0, 11415, 11416, 5, 10, 0, 0, 11416, 11417, 3, 1210, 605, 0, 11417, 1639, 1, 0, 0, 0, 11418, 11423, 3, 1638, 819, 0, 11419, 11420, 5, 6, 0, 0, 11420, 11422, 3, 1638, 819, 0, 11421, 11419, 1, 0, 0, 0, 11422, 11425, 1, 0, 0, 0, 11423, 11421, 1, 0, 0, 0, 11423, 11424, 1, 0, 0, 0, 11424, 1641, 1, 0, 0, 0, 11425, 11423, 1, 0, 0, 0, 11426, 11427, 5, 518, 0, 0, 11427, 11428, 3, 1734, 867, 0, 11428, 11429, 3, 1644, 822, 0, 11429, 11430, 5, 7, 0, 0, 11430, 1643, 1, 0, 0, 0, 11431, 11435, 1, 0, 0, 0, 11432, 11433, 5, 6, 0, 0, 11433, 11435, 3, 1734, 867, 0, 11434, 11431, 1, 0, 0, 0, 11434, 11432, 1, 0, 0, 0, 11435, 1645, 1, 0, 0, 0, 11436, 11437, 5, 519, 0, 0, 11437, 11438, 3, 1558, 779, 0, 11438, 11439, 5, 454, 0, 0, 11439, 11440, 5, 519, 0, 0, 11440, 11441, 3, 1726, 863, 0, 11441, 11442, 5, 7, 0, 0, 11442, 1647, 1, 0, 0, 0, 11443, 11444, 3, 1744, 872, 0, 11444, 11445, 5, 7, 0, 0, 11445, 1649, 1, 0, 0, 0, 11446, 11447, 5, 202, 0, 0, 11447, 11455, 3, 1210, 605, 0, 11448, 11449, 3, 1656, 828, 0, 11449, 11450, 3, 1652, 826, 0, 11450, 11456, 1, 0, 0, 0, 11451, 11452, 3, 1652, 826, 0, 11452, 11453, 3, 1656, 828, 0, 11453, 11456, 1, 0, 0, 0, 11454, 11456, 1, 0, 0, 0, 11455, 11448, 1, 0, 0, 0, 11455, 11451, 1, 0, 0, 0, 11455, 11454, 1, 0, 0, 0, 11456, 11457, 1, 0, 0, 0, 11457, 11458, 5, 7, 0, 0, 11458, 1651, 1, 0, 0, 0, 11459, 11463, 1, 0, 0, 0, 11460, 11461, 5, 100, 0, 0, 11461, 11463, 3, 1654, 827, 0, 11462, 11459, 1, 0, 0, 0, 11462, 11460, 1, 0, 0, 0, 11463, 1653, 1, 0, 0, 0, 11464, 11469, 3, 1210, 605, 0, 11465, 11466, 5, 6, 0, 0, 11466, 11468, 3, 1210, 605, 0, 11467, 11465, 1, 0, 0, 0, 11468, 11471, 1, 0, 0, 0, 11469, 11467, 1, 0, 0, 0, 11469, 11470, 1, 0, 0, 0, 11470, 1655, 1, 0, 0, 0, 11471, 11469, 1, 0, 0, 0, 11472, 11479, 1, 0, 0, 0, 11473, 11475, 5, 71, 0, 0, 11474, 11476, 5, 346, 0, 0, 11475, 11474, 1, 0, 0, 0, 11475, 11476, 1, 0, 0, 0, 11476, 11477, 1, 0, 0, 0, 11477, 11479, 3, 1672, 836, 0, 11478, 11472, 1, 0, 0, 0, 11478, 11473, 1, 0, 0, 0, 11479, 1657, 1, 0, 0, 0, 11480, 11498, 5, 520, 0, 0, 11481, 11482, 3, 1710, 855, 0, 11482, 11483, 3, 1666, 833, 0, 11483, 11489, 5, 62, 0, 0, 11484, 11490, 3, 998, 499, 0, 11485, 11486, 5, 202, 0, 0, 11486, 11487, 3, 1734, 867, 0, 11487, 11488, 3, 1664, 832, 0, 11488, 11490, 1, 0, 0, 0, 11489, 11484, 1, 0, 0, 0, 11489, 11485, 1, 0, 0, 0, 11490, 11499, 1, 0, 0, 0, 11491, 11496, 3, 1472, 736, 0, 11492, 11493, 5, 2, 0, 0, 11493, 11494, 3, 1662, 831, 0, 11494, 11495, 5, 3, 0, 0, 11495, 11497, 1, 0, 0, 0, 11496, 11492, 1, 0, 0, 0, 11496, 11497, 1, 0, 0, 0, 11497, 11499, 1, 0, 0, 0, 11498, 11481, 1, 0, 0, 0, 11498, 11491, 1, 0, 0, 0, 11499, 11500, 1, 0, 0, 0, 11500, 11501, 5, 7, 0, 0, 11501, 1659, 1, 0, 0, 0, 11502, 11503, 3, 1472, 736, 0, 11503, 11504, 5, 20, 0, 0, 11504, 11505, 3, 1210, 605, 0, 11505, 11508, 1, 0, 0, 0, 11506, 11508, 3, 1210, 605, 0, 11507, 11502, 1, 0, 0, 0, 11507, 11506, 1, 0, 0, 0, 11508, 1661, 1, 0, 0, 0, 11509, 11514, 3, 1660, 830, 0, 11510, 11511, 5, 6, 0, 0, 11511, 11513, 3, 1660, 830, 0, 11512, 11510, 1, 0, 0, 0, 11513, 11516, 1, 0, 0, 0, 11514, 11512, 1, 0, 0, 0, 11514, 11515, 1, 0, 0, 0, 11515, 1663, 1, 0, 0, 0, 11516, 11514, 1, 0, 0, 0, 11517, 11521, 1, 0, 0, 0, 11518, 11519, 5, 100, 0, 0, 11519, 11521, 3, 1326, 663, 0, 11520, 11517, 1, 0, 0, 0, 11520, 11518, 1, 0, 0, 0, 11521, 1665, 1, 0, 0, 0, 11522, 11527, 1, 0, 0, 0, 11523, 11524, 3, 1668, 834, 0, 11524, 11525, 5, 324, 0, 0, 11525, 11527, 1, 0, 0, 0, 11526, 11522, 1, 0, 0, 0, 11526, 11523, 1, 0, 0, 0, 11527, 1667, 1, 0, 0, 0, 11528, 11531, 1, 0, 0, 0, 11529, 11531, 5, 269, 0, 0, 11530, 11528, 1, 0, 0, 0, 11530, 11529, 1, 0, 0, 0, 11531, 1669, 1, 0, 0, 0, 11532, 11534, 5, 61, 0, 0, 11533, 11535, 3, 1676, 838, 0, 11534, 11533, 1, 0, 0, 0, 11534, 11535, 1, 0, 0, 0, 11535, 11536, 1, 0, 0, 0, 11536, 11537, 3, 1674, 837, 0, 11537, 11538, 3, 1710, 855, 0, 11538, 11539, 5, 71, 0, 0, 11539, 11540, 3, 1672, 836, 0, 11540, 11541, 5, 7, 0, 0, 11541, 1671, 1, 0, 0, 0, 11542, 11543, 3, 1326, 663, 0, 11543, 1673, 1, 0, 0, 0, 11544, 11548, 1, 0, 0, 0, 11545, 11548, 5, 64, 0, 0, 11546, 11548, 5, 68, 0, 0, 11547, 11544, 1, 0, 0, 0, 11547, 11545, 1, 0, 0, 0, 11547, 11546, 1, 0, 0, 0, 11548, 1675, 1, 0, 0, 0, 11549, 11565, 5, 268, 0, 0, 11550, 11565, 5, 293, 0, 0, 11551, 11565, 5, 207, 0, 0, 11552, 11565, 5, 249, 0, 0, 11553, 11554, 5, 130, 0, 0, 11554, 11565, 3, 1210, 605, 0, 11555, 11556, 5, 307, 0, 0, 11556, 11565, 3, 1210, 605, 0, 11557, 11565, 3, 1210, 605, 0, 11558, 11565, 5, 30, 0, 0, 11559, 11562, 7, 85, 0, 0, 11560, 11563, 3, 1210, 605, 0, 11561, 11563, 5, 30, 0, 0, 11562, 11560, 1, 0, 0, 0, 11562, 11561, 1, 0, 0, 0, 11562, 11563, 1, 0, 0, 0, 11563, 11565, 1, 0, 0, 0, 11564, 11549, 1, 0, 0, 0, 11564, 11550, 1, 0, 0, 0, 11564, 11551, 1, 0, 0, 0, 11564, 11552, 1, 0, 0, 0, 11564, 11553, 1, 0, 0, 0, 11564, 11555, 1, 0, 0, 0, 11564, 11557, 1, 0, 0, 0, 11564, 11558, 1, 0, 0, 0, 11564, 11559, 1, 0, 0, 0, 11565, 1677, 1, 0, 0, 0, 11566, 11568, 5, 265, 0, 0, 11567, 11569, 3, 1676, 838, 0, 11568, 11567, 1, 0, 0, 0, 11568, 11569, 1, 0, 0, 0, 11569, 11570, 1, 0, 0, 0, 11570, 11571, 3, 1710, 855, 0, 11571, 11572, 5, 7, 0, 0, 11572, 1679, 1, 0, 0, 0, 11573, 11575, 3, 1012, 506, 0, 11574, 11573, 1, 0, 0, 0, 11574, 11575, 1, 0, 0, 0, 11575, 11576, 1, 0, 0, 0, 11576, 11577, 5, 525, 0, 0, 11577, 11579, 5, 71, 0, 0, 11578, 11580, 5, 81, 0, 0, 11579, 11578, 1, 0, 0, 0, 11579, 11580, 1, 0, 0, 0, 11580, 11581, 1, 0, 0, 0, 11581, 11583, 3, 1404, 702, 0, 11582, 11584, 5, 9, 0, 0, 11583, 11582, 1, 0, 0, 0, 11583, 11584, 1, 0, 0, 0, 11584, 11589, 1, 0, 0, 0, 11585, 11587, 5, 36, 0, 0, 11586, 11585, 1, 0, 0, 0, 11586, 11587, 1, 0, 0, 0, 11587, 11588, 1, 0, 0, 0, 11588, 11590, 3, 1472, 736, 0, 11589, 11586, 1, 0, 0, 0, 11589, 11590, 1, 0, 0, 0, 11590, 11591, 1, 0, 0, 0, 11591, 11592, 5, 100, 0, 0, 11592, 11593, 3, 1682, 841, 0, 11593, 11594, 5, 80, 0, 0, 11594, 11596, 3, 1684, 842, 0, 11595, 11597, 3, 1686, 843, 0, 11596, 11595, 1, 0, 0, 0, 11597, 11598, 1, 0, 0, 0, 11598, 11596, 1, 0, 0, 0, 11598, 11599, 1, 0, 0, 0, 11599, 1681, 1, 0, 0, 0, 11600, 11602, 5, 81, 0, 0, 11601, 11600, 1, 0, 0, 0, 11601, 11602, 1, 0, 0, 0, 11602, 11603, 1, 0, 0, 0, 11603, 11605, 3, 1404, 702, 0, 11604, 11606, 5, 9, 0, 0, 11605, 11604, 1, 0, 0, 0, 11605, 11606, 1, 0, 0, 0, 11606, 11612, 1, 0, 0, 0, 11607, 11610, 3, 1002, 501, 0, 11608, 11610, 3, 1098, 549, 0, 11609, 11607, 1, 0, 0, 0, 11609, 11608, 1, 0, 0, 0, 11610, 11612, 1, 0, 0, 0, 11611, 11601, 1, 0, 0, 0, 11611, 11609, 1, 0, 0, 0, 11612, 11617, 1, 0, 0, 0, 11613, 11615, 5, 36, 0, 0, 11614, 11613, 1, 0, 0, 0, 11614, 11615, 1, 0, 0, 0, 11615, 11616, 1, 0, 0, 0, 11616, 11618, 3, 1472, 736, 0, 11617, 11614, 1, 0, 0, 0, 11617, 11618, 1, 0, 0, 0, 11618, 1683, 1, 0, 0, 0, 11619, 11620, 3, 1210, 605, 0, 11620, 1685, 1, 0, 0, 0, 11621, 11622, 5, 102, 0, 0, 11622, 11625, 5, 526, 0, 0, 11623, 11624, 5, 33, 0, 0, 11624, 11626, 3, 1210, 605, 0, 11625, 11623, 1, 0, 0, 0, 11625, 11626, 1, 0, 0, 0, 11626, 11627, 1, 0, 0, 0, 11627, 11632, 5, 93, 0, 0, 11628, 11633, 3, 1690, 845, 0, 11629, 11633, 5, 182, 0, 0, 11630, 11631, 5, 57, 0, 0, 11631, 11633, 5, 270, 0, 0, 11632, 11628, 1, 0, 0, 0, 11632, 11629, 1, 0, 0, 0, 11632, 11630, 1, 0, 0, 0, 11633, 11648, 1, 0, 0, 0, 11634, 11635, 5, 102, 0, 0, 11635, 11636, 5, 77, 0, 0, 11636, 11639, 5, 526, 0, 0, 11637, 11638, 5, 33, 0, 0, 11638, 11640, 3, 1210, 605, 0, 11639, 11637, 1, 0, 0, 0, 11639, 11640, 1, 0, 0, 0, 11640, 11641, 1, 0, 0, 0, 11641, 11645, 5, 93, 0, 0, 11642, 11646, 3, 1688, 844, 0, 11643, 11644, 5, 57, 0, 0, 11644, 11646, 5, 270, 0, 0, 11645, 11642, 1, 0, 0, 0, 11645, 11643, 1, 0, 0, 0, 11646, 11648, 1, 0, 0, 0, 11647, 11621, 1, 0, 0, 0, 11647, 11634, 1, 0, 0, 0, 11648, 1687, 1, 0, 0, 0, 11649, 11654, 5, 241, 0, 0, 11650, 11651, 5, 2, 0, 0, 11651, 11652, 3, 244, 122, 0, 11652, 11653, 5, 3, 0, 0, 11653, 11655, 1, 0, 0, 0, 11654, 11650, 1, 0, 0, 0, 11654, 11655, 1, 0, 0, 0, 11655, 11659, 1, 0, 0, 0, 11656, 11657, 5, 463, 0, 0, 11657, 11658, 7, 53, 0, 0, 11658, 11660, 5, 450, 0, 0, 11659, 11656, 1, 0, 0, 0, 11659, 11660, 1, 0, 0, 0, 11660, 11661, 1, 0, 0, 0, 11661, 11662, 3, 1692, 846, 0, 11662, 1689, 1, 0, 0, 0, 11663, 11664, 5, 369, 0, 0, 11664, 11677, 5, 333, 0, 0, 11665, 11666, 3, 1430, 715, 0, 11666, 11667, 5, 10, 0, 0, 11667, 11668, 3, 1696, 848, 0, 11668, 11678, 1, 0, 0, 0, 11669, 11670, 5, 2, 0, 0, 11670, 11671, 3, 244, 122, 0, 11671, 11672, 5, 3, 0, 0, 11672, 11673, 5, 10, 0, 0, 11673, 11674, 5, 2, 0, 0, 11674, 11675, 3, 1694, 847, 0, 11675, 11676, 5, 3, 0, 0, 11676, 11678, 1, 0, 0, 0, 11677, 11665, 1, 0, 0, 0, 11677, 11669, 1, 0, 0, 0, 11678, 11679, 1, 0, 0, 0, 11679, 11677, 1, 0, 0, 0, 11679, 11680, 1, 0, 0, 0, 11680, 1691, 1, 0, 0, 0, 11681, 11682, 5, 422, 0, 0, 11682, 11686, 3, 1694, 847, 0, 11683, 11684, 5, 53, 0, 0, 11684, 11686, 5, 422, 0, 0, 11685, 11681, 1, 0, 0, 0, 11685, 11683, 1, 0, 0, 0, 11686, 1693, 1, 0, 0, 0, 11687, 11688, 5, 2, 0, 0, 11688, 11693, 3, 1696, 848, 0, 11689, 11690, 5, 6, 0, 0, 11690, 11692, 3, 1696, 848, 0, 11691, 11689, 1, 0, 0, 0, 11692, 11695, 1, 0, 0, 0, 11693, 11691, 1, 0, 0, 0, 11693, 11694, 1, 0, 0, 0, 11694, 11696, 1, 0, 0, 0, 11695, 11693, 1, 0, 0, 0, 11696, 11697, 5, 3, 0, 0, 11697, 1695, 1, 0, 0, 0, 11698, 11701, 3, 1046, 523, 0, 11699, 11701, 5, 53, 0, 0, 11700, 11698, 1, 0, 0, 0, 11700, 11699, 1, 0, 0, 0, 11701, 1697, 1, 0, 0, 0, 11702, 11703, 5, 157, 0, 0, 11703, 11704, 3, 1710, 855, 0, 11704, 11705, 5, 7, 0, 0, 11705, 1699, 1, 0, 0, 0, 11706, 11707, 5, 78, 0, 0, 11707, 11708, 5, 7, 0, 0, 11708, 1701, 1, 0, 0, 0, 11709, 11711, 5, 161, 0, 0, 11710, 11712, 3, 1706, 853, 0, 11711, 11710, 1, 0, 0, 0, 11711, 11712, 1, 0, 0, 0, 11712, 11713, 1, 0, 0, 0, 11713, 11714, 5, 7, 0, 0, 11714, 1703, 1, 0, 0, 0, 11715, 11717, 5, 319, 0, 0, 11716, 11718, 3, 1706, 853, 0, 11717, 11716, 1, 0, 0, 0, 11717, 11718, 1, 0, 0, 0, 11718, 11719, 1, 0, 0, 0, 11719, 11720, 5, 7, 0, 0, 11720, 1705, 1, 0, 0, 0, 11721, 11723, 5, 33, 0, 0, 11722, 11724, 5, 269, 0, 0, 11723, 11722, 1, 0, 0, 0, 11723, 11724, 1, 0, 0, 0, 11724, 11725, 1, 0, 0, 0, 11725, 11726, 5, 153, 0, 0, 11726, 1707, 1, 0, 0, 0, 11727, 11728, 5, 333, 0, 0, 11728, 11729, 3, 556, 278, 0, 11729, 11730, 5, 94, 0, 0, 11730, 11731, 5, 53, 0, 0, 11731, 11732, 5, 7, 0, 0, 11732, 11740, 1, 0, 0, 0, 11733, 11736, 5, 313, 0, 0, 11734, 11737, 3, 556, 278, 0, 11735, 11737, 5, 30, 0, 0, 11736, 11734, 1, 0, 0, 0, 11736, 11735, 1, 0, 0, 0, 11737, 11738, 1, 0, 0, 0, 11738, 11740, 5, 7, 0, 0, 11739, 11727, 1, 0, 0, 0, 11739, 11733, 1, 0, 0, 0, 11740, 1709, 1, 0, 0, 0, 11741, 11744, 3, 1472, 736, 0, 11742, 11744, 5, 28, 0, 0, 11743, 11741, 1, 0, 0, 0, 11743, 11742, 1, 0, 0, 0, 11744, 1711, 1, 0, 0, 0, 11745, 11749, 1, 0, 0, 0, 11746, 11747, 5, 517, 0, 0, 11747, 11749, 3, 1714, 857, 0, 11748, 11745, 1, 0, 0, 0, 11748, 11746, 1, 0, 0, 0, 11749, 1713, 1, 0, 0, 0, 11750, 11752, 3, 1716, 858, 0, 11751, 11750, 1, 0, 0, 0, 11752, 11753, 1, 0, 0, 0, 11753, 11751, 1, 0, 0, 0, 11753, 11754, 1, 0, 0, 0, 11754, 1715, 1, 0, 0, 0, 11755, 11756, 5, 102, 0, 0, 11756, 11757, 3, 1718, 859, 0, 11757, 11758, 5, 93, 0, 0, 11758, 11759, 3, 1558, 779, 0, 11759, 1717, 1, 0, 0, 0, 11760, 11765, 3, 1720, 860, 0, 11761, 11762, 5, 82, 0, 0, 11762, 11764, 3, 1720, 860, 0, 11763, 11761, 1, 0, 0, 0, 11764, 11767, 1, 0, 0, 0, 11765, 11763, 1, 0, 0, 0, 11765, 11766, 1, 0, 0, 0, 11766, 1719, 1, 0, 0, 0, 11767, 11765, 1, 0, 0, 0, 11768, 11772, 3, 1730, 865, 0, 11769, 11770, 5, 511, 0, 0, 11770, 11772, 3, 1456, 728, 0, 11771, 11768, 1, 0, 0, 0, 11771, 11769, 1, 0, 0, 0, 11772, 1721, 1, 0, 0, 0, 11773, 11776, 1, 0, 0, 0, 11774, 11776, 3, 1522, 761, 0, 11775, 11773, 1, 0, 0, 0, 11775, 11774, 1, 0, 0, 0, 11776, 1723, 1, 0, 0, 0, 11777, 11780, 1, 0, 0, 0, 11778, 11780, 3, 1522, 761, 0, 11779, 11777, 1, 0, 0, 0, 11779, 11778, 1, 0, 0, 0, 11780, 1725, 1, 0, 0, 0, 11781, 11784, 1, 0, 0, 0, 11782, 11784, 3, 1730, 865, 0, 11783, 11781, 1, 0, 0, 0, 11783, 11782, 1, 0, 0, 0, 11784, 1727, 1, 0, 0, 0, 11785, 11786, 5, 102, 0, 0, 11786, 11787, 3, 1738, 869, 0, 11787, 1729, 1, 0, 0, 0, 11788, 11791, 3, 1472, 736, 0, 11789, 11791, 3, 1732, 866, 0, 11790, 11788, 1, 0, 0, 0, 11790, 11789, 1, 0, 0, 0, 11791, 1731, 1, 0, 0, 0, 11792, 11793, 7, 86, 0, 0, 11793, 1733, 1, 0, 0, 0, 11794, 11796, 3, 1382, 691, 0, 11795, 11794, 1, 0, 0, 0, 11795, 11796, 1, 0, 0, 0, 11796, 11798, 1, 0, 0, 0, 11797, 11799, 3, 1026, 513, 0, 11798, 11797, 1, 0, 0, 0, 11798, 11799, 1, 0, 0, 0, 11799, 11801, 1, 0, 0, 0, 11800, 11802, 3, 1100, 550, 0, 11801, 11800, 1, 0, 0, 0, 11801, 11802, 1, 0, 0, 0, 11802, 11804, 1, 0, 0, 0, 11803, 11805, 3, 1142, 571, 0, 11804, 11803, 1, 0, 0, 0, 11804, 11805, 1, 0, 0, 0, 11805, 11807, 1, 0, 0, 0, 11806, 11808, 3, 1070, 535, 0, 11807, 11806, 1, 0, 0, 0, 11807, 11808, 1, 0, 0, 0, 11808, 11810, 1, 0, 0, 0, 11809, 11811, 3, 1084, 542, 0, 11810, 11809, 1, 0, 0, 0, 11810, 11811, 1, 0, 0, 0, 11811, 11813, 1, 0, 0, 0, 11812, 11814, 3, 1286, 643, 0, 11813, 11812, 1, 0, 0, 0, 11813, 11814, 1, 0, 0, 0, 11814, 1735, 1, 0, 0, 0, 11815, 11816, 3, 1734, 867, 0, 11816, 1737, 1, 0, 0, 0, 11817, 11818, 3, 1734, 867, 0, 11818, 1739, 1, 0, 0, 0, 11819, 11820, 3, 1210, 605, 0, 11820, 1741, 1, 0, 0, 0, 11821, 11822, 3, 1210, 605, 0, 11822, 1743, 1, 0, 0, 0, 11823, 11825, 3, 6, 3, 0, 11824, 11826, 3, 1746, 873, 0, 11825, 11824, 1, 0, 0, 0, 11825, 11826, 1, 0, 0, 0, 11826, 1745, 1, 0, 0, 0, 11827, 11828, 5, 71, 0, 0, 11828, 11829, 3, 1028, 514, 0, 11829, 11830, 3, 1672, 836, 0, 11830, 1747, 1, 0, 0, 0, 1283, 1751, 1760, 1879, 1883, 1892, 1901, 1907, 1913, 1945, 1957, 1963, 1971, 1979, 1985, 1994, 2000, 2012, 2018, 2024, 2031, 2035, 2040, 2044, 2057, 2068, 2074, 2090, 2093, 2098, 2104, 2109, 2118, 2122, 2134, 2138, 2141, 2145, 2156, 2174, 2181, 2189, 2194, 2201, 2207, 2213, 2220, 2231, 2235, 2239, 2243, 2256, 2260, 2265, 2270, 2282, 2291, 2303, 2308, 2319, 2325, 2330, 2340, 2345, 2352, 2357, 2362, 2373, 2379, 2384, 2392, 2401, 2416, 2422, 2428, 2433, 2440, 2452, 2460, 2468, 2486, 2495, 2509, 2513, 2528, 2536, 2546, 2586, 2589, 2593, 2597, 2600, 2605, 2612, 2621, 2627, 2631, 2640, 2648, 2657, 2666, 2670, 2677, 2683, 2687, 2691, 2696, 2699, 2703, 2709, 2716, 2732, 2746, 2756, 2758, 2763, 2767, 2770, 2776, 2778, 2806, 2816, 2829, 2836, 2841, 2845, 2851, 2856, 2859, 2861, 2866, 2870, 2874, 2878, 2882, 2885, 2889, 2897, 2901, 2905, 2914, 2921, 2926, 2933, 2938, 2945, 2950, 2968, 2973, 2985, 2990, 2999, 3006, 3013, 3017, 3022, 3026, 3029, 3032, 3035, 3038, 3041, 3046, 3049, 3052, 3055, 3058, 3061, 3067, 3071, 3074, 3077, 3080, 3083, 3085, 3094, 3109, 3117, 3123, 3127, 3132, 3135, 3138, 3142, 3146, 3153, 3156, 3159, 3163, 3167, 3181, 3186, 3193, 3198, 3202, 3205, 3209, 3212, 3214, 3221, 3224, 3228, 3234, 3237, 3244, 3253, 3260, 3265, 3268, 3271, 3274, 3278, 3285, 3290, 3303, 3313, 3326, 3329, 3332, 3339, 3347, 3350, 3353, 3360, 3364, 3370, 3373, 3376, 3379, 3391, 3394, 3397, 3401, 3415, 3431, 3442, 3457, 3474, 3476, 3497, 3502, 3505, 3509, 3512, 3518, 3521, 3523, 3534, 3543, 3549, 3552, 3555, 3569, 3572, 3575, 3580, 3588, 3597, 3601, 3607, 3611, 3614, 3617, 3620, 3623, 3629, 3633, 3638, 3644, 3648, 3651, 3654, 3657, 3665, 3669, 3673, 3677, 3681, 3686, 3700, 3709, 3726, 3731, 3734, 3736, 3746, 3753, 3758, 3761, 3764, 3771, 3774, 3776, 3782, 3791, 3801, 3806, 3814, 3818, 3825, 3835, 3846, 3954, 3962, 3965, 3975, 3980, 3990, 4001, 4013, 4026, 4036, 4048, 4052, 4055, 4062, 4070, 4080, 4082, 4088, 4093, 4097, 4102, 4108, 4115, 4121, 4123, 4130, 4138, 4143, 4154, 4161, 4165, 4182, 4185, 4188, 4191, 4194, 4202, 4205, 4208, 4214, 4222, 4226, 4238, 4244, 4247, 4252, 4256, 4263, 4274, 4297, 4317, 4326, 4329, 4332, 4342, 4345, 4354, 4358, 4361, 4369, 4375, 4379, 4390, 4400, 4408, 4413, 4425, 4442, 4446, 4452, 4459, 4467, 4481, 4507, 4514, 4528, 4539, 4542, 4555, 4564, 4589, 4600, 4642, 4650, 4656, 4667, 4673, 4681, 4692, 4706, 4715, 4720, 4731, 4742, 4750, 4760, 4767, 4770, 4776, 4779, 4794, 4807, 4836, 4843, 4858, 4870, 4874, 4879, 4883, 4888, 4892, 4898, 4902, 4907, 4911, 4917, 4921, 4926, 4930, 4935, 4939, 4944, 4948, 4955, 4959, 4966, 4970, 4977, 4981, 4988, 4992, 4998, 5002, 5008, 5012, 5017, 5021, 5028, 5032, 5036, 5040, 5044, 5049, 5053, 5058, 5062, 5067, 5071, 5076, 5082, 5087, 5093, 5098, 5104, 5109, 5113, 5118, 5122, 5128, 5132, 5137, 5145, 5151, 5157, 5163, 5169, 5176, 5181, 5185, 5190, 5194, 5199, 5205, 5212, 5217, 5224, 5234, 5238, 5244, 5246, 5253, 5257, 5262, 5280, 5295, 5313, 5322, 5331, 5335, 5341, 5348, 5353, 5360, 5365, 5368, 5371, 5375, 5446, 5542, 5546, 5551, 5562, 5573, 5584, 5595, 5606, 5618, 5629, 5640, 5650, 5657, 5664, 5670, 5678, 5683, 5688, 5693, 5699, 5706, 5712, 5718, 5723, 5729, 5736, 5741, 5747, 5754, 5757, 5770, 5779, 5791, 5793, 5811, 5818, 5828, 5833, 5837, 5841, 5845, 5847, 5907, 5914, 5920, 5931, 5934, 5941, 5944, 5954, 5957, 5959, 5978, 5990, 5999, 6008, 6020, 6022, 6028, 6032, 6035, 6038, 6043, 6049, 6052, 6055, 6058, 6061, 6077, 6081, 6084, 6087, 6090, 6093, 6098, 6101, 6103, 6116, 6128, 6142, 6146, 6152, 6162, 6164, 6169, 6177, 6187, 6196, 6204, 6213, 6215, 6222, 6231, 6233, 6240, 6249, 6251, 6255, 6264, 6269, 6275, 6280, 6284, 6289, 6307, 6312, 6327, 6336, 6347, 6353, 6390, 6410, 6417, 6428, 6442, 6449, 6457, 6462, 6469, 6473, 6478, 6482, 6487, 6491, 6493, 6498, 6502, 6507, 6511, 6535, 6542, 6552, 6564, 6569, 6582, 6594, 6606, 6608, 6614, 6621, 6666, 6684, 6688, 6693, 6696, 6700, 6705, 6710, 6713, 6720, 6737, 6808, 6839, 6893, 6903, 6913, 6924, 6934, 6945, 6955, 6960, 6969, 6974, 6984, 6989, 6998, 7011, 7016, 7128, 7130, 7139, 7150, 7161, 7174, 7186, 7197, 7204, 7294, 7347, 7357, 7368, 7379, 7393, 7408, 7419, 7426, 7480, 7621, 7627, 7630, 7640, 7680, 7690, 7697, 7720, 7729, 7738, 7747, 7780, 7784, 7794, 7798, 7808, 7811, 7815, 7819, 7827, 7838, 7850, 7854, 7857, 7861, 7864, 7869, 7873, 7876, 7882, 7893, 7896, 7903, 7907, 7912, 7915, 7917, 7931, 7935, 7940, 7947, 7954, 7957, 7962, 7965, 7974, 7976, 7981, 7985, 7997, 8000, 8007, 8011, 8016, 8026, 8036, 8039, 8042, 8044, 8050, 8057, 8077, 8097, 8101, 8106, 8175, 8180, 8186, 8199, 8203, 8207, 8213, 8215, 8223, 8233, 8236, 8239, 8242, 8245, 8252, 8255, 8257, 8261, 8264, 8271, 8273, 8280, 8287, 8291, 8295, 8304, 8310, 8314, 8318, 8323, 8335, 8342, 8352, 8365, 8376, 8383, 8388, 8392, 8396, 8401, 8414, 8419, 8423, 8427, 8434, 8437, 8439, 8447, 8451, 8454, 8461, 8464, 8469, 8475, 8481, 8485, 8494, 8503, 8510, 8513, 8519, 8524, 8530, 8536, 8539, 8542, 8549, 8553, 8556, 8571, 8574, 8581, 8584, 8591, 8594, 8597, 8604, 8616, 8623, 8625, 8635, 8653, 8655, 8663, 8667, 8677, 8681, 8685, 8689, 8691, 8696, 8700, 8704, 8706, 8708, 8712, 8716, 8719, 8722, 8725, 8728, 8730, 8733, 8736, 8739, 8742, 8745, 8748, 8757, 8759, 8764, 8768, 8774, 8778, 8782, 8791, 8796, 8800, 8806, 8809, 8828, 8836, 8845, 8849, 8852, 8856, 8861, 8867, 8879, 8894, 8901, 8904, 8908, 8912, 8916, 8918, 8926, 8935, 8941, 8943, 8950, 8954, 8963, 8967, 8976, 8985, 8997, 9025, 9032, 9036, 9039, 9044, 9048, 9051, 9067, 9078, 9083, 9086, 9089, 9093, 9097, 9101, 9106, 9110, 9114, 9116, 9125, 9130, 9136, 9140, 9142, 9149, 9154, 9160, 9162, 9166, 9173, 9180, 9183, 9189, 9193, 9202, 9205, 9209, 9217, 9223, 9225, 9228, 9232, 9236, 9240, 9246, 9249, 9258, 9265, 9267, 9274, 9282, 9287, 9290, 9298, 9307, 9315, 9317, 9321, 9328, 9347, 9356, 9362, 9381, 9390, 9396, 9400, 9405, 9415, 9422, 9431, 9434, 9443, 9445, 9451, 9455, 9460, 9470, 9476, 9478, 9484, 9488, 9491, 9504, 9510, 9514, 9518, 9521, 9529, 9533, 9537, 9545, 9552, 9559, 9563, 9569, 9571, 9580, 9583, 9593, 9609, 9615, 9620, 9627, 9636, 9643, 9651, 9659, 9664, 9668, 9671, 9677, 9682, 9698, 9701, 9703, 9715, 9717, 9721, 9729, 9731, 9735, 9737, 9745, 9749, 9758, 9766, 9772, 9775, 9784, 9789, 9796, 9806, 9832, 9843, 9845, 9847, 9855, 9877, 9886, 9896, 9899, 9904, 9909, 9913, 9916, 9920, 9923, 9926, 9929, 9933, 9947, 9954, 9961, 9968, 9986, 9994, 10006, 10012, 10025, 10064, 10066, 10086, 10096, 10107, 10119, 10126, 10138, 10150, 10156, 10164, 10181, 10206, 10216, 10220, 10223, 10226, 10229, 10242, 10247, 10252, 10254, 10262, 10271, 10280, 10285, 10294, 10299, 10313, 10323, 10331, 10345, 10352, 10360, 10368, 10376, 10380, 10387, 10395, 10402, 10408, 10417, 10432, 10443, 10476, 10485, 10492, 10496, 10500, 10507, 10521, 10526, 10531, 10535, 10537, 10540, 10547, 10552, 10562, 10570, 10573, 10580, 10588, 10596, 10604, 10612, 10617, 10621, 10625, 10629, 10633, 10637, 10641, 10648, 10656, 10661, 10665, 10669, 10679, 10685, 10691, 10706, 10712, 10718, 10730, 10735, 10743, 10750, 10755, 10767, 10775, 10780, 10790, 10801, 10808, 10815, 10826, 10829, 10831, 10835, 10838, 10844, 10850, 10854, 10860, 10868, 10872, 10880, 10937, 10950, 10973, 10981, 10985, 10997, 10999, 11006, 11015, 11033, 11041, 11050, 11057, 11067, 11073, 11080, 11085, 11091, 11095, 11102, 11132, 11145, 11154, 11158, 11174, 11181, 11194, 11202, 11222, 11228, 11240, 11245, 11255, 11287, 11292, 11301, 11306, 11310, 11315, 11331, 11336, 11351, 11354, 11360, 11364, 11373, 11381, 11390, 11396, 11405, 11407, 11412, 11423, 11434, 11455, 11462, 11469, 11475, 11478, 11489, 11496, 11498, 11507, 11514, 11520, 11526, 11530, 11534, 11547, 11562, 11564, 11568, 11574, 11579, 11583, 11586, 11589, 11598, 11601, 11605, 11609, 11611, 11614, 11617, 11625, 11632, 11639, 11645, 11647, 11654, 11659, 11677, 11679, 11685, 11693, 11700, 11711, 11717, 11723, 11736, 11739, 11743, 11748, 11753, 11765, 11771, 11775, 11779, 11783, 11790, 11795, 11798, 11801, 11804, 11807, 11810, 11813, 11825] \ No newline at end of file diff --git a/src/lib/pgsql/PostgreSQLParser.ts b/src/lib/pgsql/PostgreSQLParser.ts index a930510..cc10d77 100644 --- a/src/lib/pgsql/PostgreSQLParser.ts +++ b/src/lib/pgsql/PostgreSQLParser.ts @@ -878,606 +878,604 @@ export class PostgreSQLParser extends antlr.Parser { public static readonly RULE_object_type_name = 273; public static readonly RULE_object_type_name_on_any_name = 274; public static readonly RULE_any_name_list = 275; - public static readonly RULE_table_column_name = 276; - public static readonly RULE_relation_column_name = 277; - public static readonly RULE_relation_name = 278; - public static readonly RULE_any_name = 279; - public static readonly RULE_attrs = 280; - public static readonly RULE_type_name_list = 281; - public static readonly RULE_truncatestmt = 282; - public static readonly RULE_opt_restart_seqs = 283; - public static readonly RULE_commentstmt = 284; - public static readonly RULE_comment_text = 285; - public static readonly RULE_seclabelstmt = 286; - public static readonly RULE_opt_provider = 287; - public static readonly RULE_security_label = 288; - public static readonly RULE_fetchstmt = 289; - public static readonly RULE_fetch_args = 290; - public static readonly RULE_from_in = 291; - public static readonly RULE_opt_from_in = 292; - public static readonly RULE_grantstmt = 293; - public static readonly RULE_revokestmt = 294; - public static readonly RULE_privileges = 295; - public static readonly RULE_beforeprivilegeselectlist = 296; - public static readonly RULE_beforeprivilegeselect = 297; - public static readonly RULE_privilege_list = 298; - public static readonly RULE_privilege = 299; - public static readonly RULE_privilege_target = 300; - public static readonly RULE_grantee_list = 301; - public static readonly RULE_grantee = 302; - public static readonly RULE_opt_grant_grant_option = 303; - public static readonly RULE_grantrolestmt = 304; - public static readonly RULE_revokerolestmt = 305; - public static readonly RULE_opt_grant_admin_option = 306; - public static readonly RULE_opt_granted_by = 307; - public static readonly RULE_alterdefaultprivilegesstmt = 308; - public static readonly RULE_defacloptionlist = 309; - public static readonly RULE_defacloption = 310; - public static readonly RULE_defaclaction = 311; - public static readonly RULE_defacl_privilege_target = 312; - public static readonly RULE_indexstmt = 313; - public static readonly RULE_opt_unique = 314; - public static readonly RULE_opt_concurrently = 315; - public static readonly RULE_opt_index_name = 316; - public static readonly RULE_access_method_clause = 317; - public static readonly RULE_index_params = 318; - public static readonly RULE_index_elem_options = 319; - public static readonly RULE_index_elem = 320; - public static readonly RULE_opt_include = 321; - public static readonly RULE_index_including_params = 322; - public static readonly RULE_opt_collate = 323; - public static readonly RULE_opt_class = 324; - public static readonly RULE_opt_asc_desc = 325; - public static readonly RULE_opt_nulls_order = 326; - public static readonly RULE_createfunctionstmt = 327; - public static readonly RULE_attrilist = 328; - public static readonly RULE_opt_or_replace = 329; - public static readonly RULE_func_args = 330; - public static readonly RULE_func_args_list = 331; - public static readonly RULE_routine_with_argtypes_list = 332; - public static readonly RULE_routine_with_argtypes = 333; - public static readonly RULE_procedure_with_argtypes_list = 334; - public static readonly RULE_procedure_with_argtypes = 335; - public static readonly RULE_function_with_argtypes_list = 336; - public static readonly RULE_function_with_argtypes = 337; - public static readonly RULE_func_args_with_defaults = 338; - public static readonly RULE_func_args_with_defaults_list = 339; - public static readonly RULE_func_arg = 340; - public static readonly RULE_arg_class = 341; - public static readonly RULE_param_name = 342; - public static readonly RULE_func_return = 343; - public static readonly RULE_func_type = 344; - public static readonly RULE_func_arg_with_default = 345; - public static readonly RULE_aggr_arg = 346; - public static readonly RULE_aggr_args = 347; - public static readonly RULE_aggr_args_list = 348; - public static readonly RULE_aggregate_with_argtypes = 349; - public static readonly RULE_aggregate_with_argtypes_list = 350; - public static readonly RULE_createfunc_opt_list = 351; - public static readonly RULE_common_func_opt_item = 352; - public static readonly RULE_createfunc_opt_item = 353; - public static readonly RULE_transform_type_list = 354; - public static readonly RULE_opt_definition = 355; - public static readonly RULE_table_func_column = 356; - public static readonly RULE_table_func_column_list = 357; - public static readonly RULE_alterfunctionstmt = 358; - public static readonly RULE_alterFunctionTypeClause = 359; - public static readonly RULE_alterfunc_opt_list = 360; - public static readonly RULE_opt_restrict = 361; - public static readonly RULE_removefuncstmt = 362; - public static readonly RULE_removeaggrstmt = 363; - public static readonly RULE_removeoperstmt = 364; - public static readonly RULE_oper_argtypes = 365; - public static readonly RULE_any_operator = 366; - public static readonly RULE_operator_with_argtypes_list = 367; - public static readonly RULE_operator_with_argtypes = 368; - public static readonly RULE_dostmt = 369; - public static readonly RULE_dostmt_opt_list = 370; - public static readonly RULE_dostmt_opt_item = 371; - public static readonly RULE_createcaststmt = 372; - public static readonly RULE_cast_context = 373; - public static readonly RULE_opt_if_exists = 374; - public static readonly RULE_createtransformstmt = 375; - public static readonly RULE_transform_element_list = 376; - public static readonly RULE_reindexstmt = 377; - public static readonly RULE_reindex_target_type = 378; - public static readonly RULE_reindex_target_multitable = 379; - public static readonly RULE_reindex_option_list = 380; - public static readonly RULE_reindex_option_elem = 381; - public static readonly RULE_altertblspcstmt = 382; - public static readonly RULE_renamestmt = 383; - public static readonly RULE_opt_column = 384; - public static readonly RULE_opt_set_data = 385; - public static readonly RULE_alterobjectdependsstmt = 386; - public static readonly RULE_opt_no = 387; - public static readonly RULE_alterobjectschemastmt = 388; - public static readonly RULE_alteroperatorstmt = 389; - public static readonly RULE_operator_def_list = 390; - public static readonly RULE_operator_def_elem = 391; - public static readonly RULE_operator_def_arg = 392; - public static readonly RULE_altertypestmt = 393; - public static readonly RULE_alterownerstmt = 394; - public static readonly RULE_createpublicationstmt = 395; - public static readonly RULE_opt_publication_for_tables = 396; - public static readonly RULE_publication_for_tables = 397; - public static readonly RULE_alterpublicationstmt = 398; - public static readonly RULE_createsubscriptionstmt = 399; - public static readonly RULE_publication_name_list = 400; - public static readonly RULE_publication_name_item = 401; - public static readonly RULE_altersubscriptionstmt = 402; - public static readonly RULE_rulestmt = 403; - public static readonly RULE_ruleactionlist = 404; - public static readonly RULE_ruleactionmulti = 405; - public static readonly RULE_ruleactionstmt = 406; - public static readonly RULE_ruleactionstmtOrEmpty = 407; - public static readonly RULE_event = 408; - public static readonly RULE_opt_instead = 409; - public static readonly RULE_notifystmt = 410; - public static readonly RULE_notify_payload = 411; - public static readonly RULE_listenstmt = 412; - public static readonly RULE_unlistenstmt = 413; - public static readonly RULE_transactionstmt = 414; - public static readonly RULE_opt_transaction = 415; - public static readonly RULE_transaction_mode_item = 416; - public static readonly RULE_transaction_mode_list = 417; - public static readonly RULE_transaction_mode_list_or_empty = 418; - public static readonly RULE_opt_transaction_chain = 419; - public static readonly RULE_viewstmt = 420; - public static readonly RULE_opt_check_option = 421; - public static readonly RULE_loadstmt = 422; - public static readonly RULE_createdbstmt = 423; - public static readonly RULE_createdb_opt_list = 424; - public static readonly RULE_createdb_opt_items = 425; - public static readonly RULE_createdb_opt_item = 426; - public static readonly RULE_createdb_opt_name = 427; - public static readonly RULE_opt_equal = 428; - public static readonly RULE_alterdatabasestmt = 429; - public static readonly RULE_alterdatabasesetstmt = 430; - public static readonly RULE_drop_option_list = 431; - public static readonly RULE_drop_option = 432; - public static readonly RULE_altercollationstmt = 433; - public static readonly RULE_altersystemstmt = 434; - public static readonly RULE_createdomainstmt = 435; - public static readonly RULE_alterdomainstmt = 436; - public static readonly RULE_opt_as = 437; - public static readonly RULE_altertsdictionarystmt = 438; - public static readonly RULE_altertsconfigurationstmt = 439; - public static readonly RULE_any_with = 440; - public static readonly RULE_createconversionstmt = 441; - public static readonly RULE_clusterstmt = 442; - public static readonly RULE_opt_verbose_list = 443; - public static readonly RULE_cluster_index_specification = 444; - public static readonly RULE_vacuumstmt = 445; - public static readonly RULE_analyzestmt = 446; - public static readonly RULE_vac_analyze_option_list = 447; - public static readonly RULE_analyze_keyword = 448; - public static readonly RULE_vac_analyze_option_elem = 449; - public static readonly RULE_vac_analyze_option_name = 450; - public static readonly RULE_vac_analyze_option_arg = 451; - public static readonly RULE_opt_analyze = 452; - public static readonly RULE_analyze_options_list = 453; - public static readonly RULE_analyze_option_elem = 454; - public static readonly RULE_opt_verbose = 455; - public static readonly RULE_opt_skiplock = 456; - public static readonly RULE_opt_buffer_usage_limit = 457; - public static readonly RULE_opt_full = 458; - public static readonly RULE_opt_freeze = 459; - public static readonly RULE_opt_name_list = 460; - public static readonly RULE_vacuum_relation = 461; - public static readonly RULE_vacuum_relation_list = 462; - public static readonly RULE_opt_vacuum_relation_list = 463; - public static readonly RULE_explainstmt = 464; - public static readonly RULE_explainablestmt = 465; - public static readonly RULE_explain_option_list = 466; - public static readonly RULE_explain_option_elem = 467; - public static readonly RULE_explain_option_name = 468; - public static readonly RULE_explain_option_arg = 469; - public static readonly RULE_preparestmt = 470; - public static readonly RULE_prep_type_clause = 471; - public static readonly RULE_preparablestmt = 472; - public static readonly RULE_executestmt = 473; - public static readonly RULE_execute_param_clause = 474; - public static readonly RULE_deallocatestmt = 475; - public static readonly RULE_insertstmt = 476; - public static readonly RULE_insert_target = 477; - public static readonly RULE_insert_rest = 478; - public static readonly RULE_override_kind = 479; - public static readonly RULE_insert_column_list = 480; - public static readonly RULE_insert_column_item = 481; - public static readonly RULE_opt_on_conflict = 482; - public static readonly RULE_opt_conf_expr = 483; - public static readonly RULE_returning_clause = 484; - public static readonly RULE_deletestmt = 485; - public static readonly RULE_using_clause = 486; - public static readonly RULE_lockstmt = 487; - public static readonly RULE_opt_lock = 488; - public static readonly RULE_lock_type = 489; - public static readonly RULE_opt_nowait = 490; - public static readonly RULE_opt_nowait_or_skip = 491; - public static readonly RULE_updatestmt = 492; - public static readonly RULE_set_clause_list = 493; - public static readonly RULE_set_clause = 494; - public static readonly RULE_set_target = 495; - public static readonly RULE_set_target_list = 496; - public static readonly RULE_declarecursorstmt = 497; - public static readonly RULE_cursor_name = 498; - public static readonly RULE_cursor_options = 499; - public static readonly RULE_opt_hold = 500; - public static readonly RULE_selectstmt = 501; - public static readonly RULE_select_with_parens = 502; - public static readonly RULE_select_no_parens = 503; - public static readonly RULE_select_clause = 504; - public static readonly RULE_simple_select = 505; - public static readonly RULE_set_operator = 506; - public static readonly RULE_set_operator_with_all_or_distinct = 507; - public static readonly RULE_with_clause = 508; - public static readonly RULE_cte_list = 509; - public static readonly RULE_common_table_expr = 510; - public static readonly RULE_search_cluase = 511; - public static readonly RULE_cycle_cluase = 512; - public static readonly RULE_opt_materialized = 513; - public static readonly RULE_opt_with_clause = 514; - public static readonly RULE_into_clause = 515; - public static readonly RULE_opt_strict = 516; - public static readonly RULE_opttempTableName = 517; - public static readonly RULE_opt_table = 518; - public static readonly RULE_all_or_distinct = 519; - public static readonly RULE_distinct_clause = 520; - public static readonly RULE_opt_all_clause = 521; - public static readonly RULE_opt_sort_clause = 522; - public static readonly RULE_sort_clause = 523; - public static readonly RULE_sortby_list = 524; - public static readonly RULE_sortby = 525; - public static readonly RULE_select_limit = 526; - public static readonly RULE_opt_select_limit = 527; - public static readonly RULE_limit_clause = 528; - public static readonly RULE_fetch_clause = 529; - public static readonly RULE_offset_clause = 530; - public static readonly RULE_select_limit_value = 531; - public static readonly RULE_select_offset_value = 532; - public static readonly RULE_select_fetch_first_value = 533; - public static readonly RULE_i_or_f_const = 534; - public static readonly RULE_row_or_rows = 535; - public static readonly RULE_first_or_next = 536; - public static readonly RULE_group_clause = 537; - public static readonly RULE_group_by_list = 538; - public static readonly RULE_group_by_item = 539; - public static readonly RULE_empty_grouping_set = 540; - public static readonly RULE_rollup_clause = 541; - public static readonly RULE_cube_clause = 542; - public static readonly RULE_grouping_sets_clause = 543; - public static readonly RULE_having_clause = 544; - public static readonly RULE_for_locking_clause = 545; - public static readonly RULE_opt_for_locking_clause = 546; - public static readonly RULE_for_locking_items = 547; - public static readonly RULE_for_locking_item = 548; - public static readonly RULE_for_locking_strength = 549; - public static readonly RULE_locked_rels_list = 550; - public static readonly RULE_values_clause = 551; - public static readonly RULE_from_clause = 552; - public static readonly RULE_from_list = 553; - public static readonly RULE_table_ref = 554; - public static readonly RULE_alias_clause = 555; - public static readonly RULE_opt_alias_clause = 556; - public static readonly RULE_func_alias_clause = 557; - public static readonly RULE_join_type = 558; - public static readonly RULE_join_qual = 559; - public static readonly RULE_relation_expr = 560; - public static readonly RULE_view_relation_expr = 561; - public static readonly RULE_publication_relation_expr = 562; - public static readonly RULE_relation_expr_list = 563; - public static readonly RULE_publication_relation_expr_list = 564; - public static readonly RULE_relation_expr_opt_alias = 565; - public static readonly RULE_tablesample_clause = 566; - public static readonly RULE_opt_repeatable_clause = 567; - public static readonly RULE_func_table = 568; - public static readonly RULE_rowsfrom_item = 569; - public static readonly RULE_rowsfrom_list = 570; - public static readonly RULE_opt_col_def_list = 571; - public static readonly RULE_opt_ordinality = 572; - public static readonly RULE_where_clause = 573; - public static readonly RULE_where_or_current_clause = 574; - public static readonly RULE_opttablefuncelementlist = 575; - public static readonly RULE_tablefuncelementlist = 576; - public static readonly RULE_tablefuncelement = 577; - public static readonly RULE_xmltable = 578; - public static readonly RULE_xmltable_column_list = 579; - public static readonly RULE_xmltable_column_el = 580; - public static readonly RULE_xmltable_column_option_list = 581; - public static readonly RULE_xmltable_column_option_el = 582; - public static readonly RULE_xml_namespace_list = 583; - public static readonly RULE_xml_namespace_el = 584; - public static readonly RULE_typename = 585; - public static readonly RULE_opt_array_bounds = 586; - public static readonly RULE_simpletypename = 587; - public static readonly RULE_consttypename = 588; - public static readonly RULE_generictype = 589; - public static readonly RULE_opt_type_modifiers = 590; - public static readonly RULE_numeric = 591; - public static readonly RULE_opt_float = 592; - public static readonly RULE_bit = 593; - public static readonly RULE_constbit = 594; - public static readonly RULE_bitwithlength = 595; - public static readonly RULE_bitwithoutlength = 596; - public static readonly RULE_character = 597; - public static readonly RULE_constcharacter = 598; - public static readonly RULE_character_c = 599; - public static readonly RULE_opt_varying = 600; - public static readonly RULE_constdatetime = 601; - public static readonly RULE_constinterval = 602; - public static readonly RULE_opt_timezone = 603; - public static readonly RULE_opt_interval = 604; - public static readonly RULE_interval_second = 605; - public static readonly RULE_opt_escape = 606; - public static readonly RULE_a_expr = 607; - public static readonly RULE_a_expr_qual = 608; - public static readonly RULE_a_expr_lessless = 609; - public static readonly RULE_a_expr_or = 610; - public static readonly RULE_a_expr_and = 611; - public static readonly RULE_a_expr_in = 612; - public static readonly RULE_a_expr_unary_not = 613; - public static readonly RULE_a_expr_isnull = 614; - public static readonly RULE_a_expr_is_not = 615; - public static readonly RULE_a_expr_compare = 616; - public static readonly RULE_a_expr_like = 617; - public static readonly RULE_a_expr_qual_op = 618; - public static readonly RULE_a_expr_unary_qualop = 619; - public static readonly RULE_a_expr_add = 620; - public static readonly RULE_a_expr_mul = 621; - public static readonly RULE_a_expr_caret = 622; - public static readonly RULE_a_expr_unary_sign = 623; - public static readonly RULE_a_expr_at_time_zone = 624; - public static readonly RULE_a_expr_collate = 625; - public static readonly RULE_a_expr_typecast = 626; - public static readonly RULE_b_expr = 627; - public static readonly RULE_c_expr = 628; - public static readonly RULE_plsqlvariablename = 629; - public static readonly RULE_func_application = 630; - public static readonly RULE_func_expr = 631; - public static readonly RULE_func_expr_windowless = 632; - public static readonly RULE_func_expr_common_subexpr = 633; - public static readonly RULE_xml_root_version = 634; - public static readonly RULE_opt_xml_root_standalone = 635; - public static readonly RULE_xml_attributes = 636; - public static readonly RULE_xml_attribute_list = 637; - public static readonly RULE_xml_attribute_el = 638; - public static readonly RULE_document_or_content = 639; - public static readonly RULE_xml_whitespace_option = 640; - public static readonly RULE_xmlexists_argument = 641; - public static readonly RULE_xml_passing_mech = 642; - public static readonly RULE_within_group_clause = 643; - public static readonly RULE_filter_clause = 644; - public static readonly RULE_window_clause = 645; - public static readonly RULE_window_definition_list = 646; - public static readonly RULE_window_definition = 647; - public static readonly RULE_over_clause = 648; - public static readonly RULE_window_specification = 649; - public static readonly RULE_opt_existing_window_name = 650; - public static readonly RULE_opt_partition_clause = 651; - public static readonly RULE_opt_frame_clause = 652; - public static readonly RULE_frame_extent = 653; - public static readonly RULE_frame_bound = 654; - public static readonly RULE_opt_window_exclusion_clause = 655; - public static readonly RULE_row = 656; - public static readonly RULE_explicit_row = 657; - public static readonly RULE_implicit_row = 658; - public static readonly RULE_sub_type = 659; - public static readonly RULE_all_op = 660; - public static readonly RULE_mathop = 661; - public static readonly RULE_qual_op = 662; - public static readonly RULE_qual_all_op = 663; - public static readonly RULE_subquery_Op = 664; - public static readonly RULE_expr_list = 665; - public static readonly RULE_column_expr_list_noparen = 666; - public static readonly RULE_column_expr_list = 667; - public static readonly RULE_column_expr = 668; - public static readonly RULE_column_expr_noparen = 669; - public static readonly RULE_func_arg_list = 670; - public static readonly RULE_func_arg_expr = 671; - public static readonly RULE_type_list = 672; - public static readonly RULE_array_expr = 673; - public static readonly RULE_array_expr_list = 674; - public static readonly RULE_extract_list = 675; - public static readonly RULE_extract_arg = 676; - public static readonly RULE_unicode_normal_form = 677; - public static readonly RULE_overlay_list = 678; - public static readonly RULE_position_list = 679; - public static readonly RULE_substr_list = 680; - public static readonly RULE_trim_list = 681; - public static readonly RULE_in_expr = 682; - public static readonly RULE_case_expr = 683; - public static readonly RULE_when_clause_list = 684; - public static readonly RULE_when_clause = 685; - public static readonly RULE_case_default = 686; - public static readonly RULE_case_arg = 687; - public static readonly RULE_columnref = 688; - public static readonly RULE_indirection_el = 689; - public static readonly RULE_opt_slice_bound = 690; - public static readonly RULE_indirection = 691; - public static readonly RULE_opt_indirection = 692; - public static readonly RULE_opt_target_list = 693; - public static readonly RULE_target_list = 694; - public static readonly RULE_target_el = 695; - public static readonly RULE_qualified_name_list = 696; - public static readonly RULE_table_name_list = 697; - public static readonly RULE_schema_name_list = 698; - public static readonly RULE_database_nameList = 699; - public static readonly RULE_procedure_name_list = 700; - public static readonly RULE_tablespace_name_create = 701; - public static readonly RULE_tablespace_name = 702; - public static readonly RULE_table_name_create = 703; - public static readonly RULE_table_name = 704; - public static readonly RULE_view_name_create = 705; - public static readonly RULE_view_name = 706; - public static readonly RULE_qualified_name = 707; - public static readonly RULE_tablespace_name_list = 708; - public static readonly RULE_name_list = 709; - public static readonly RULE_database_name_create = 710; - public static readonly RULE_database_name = 711; - public static readonly RULE_schema_name = 712; - public static readonly RULE_routine_name_create = 713; - public static readonly RULE_routine_name = 714; - public static readonly RULE_procedure_name = 715; - public static readonly RULE_procedure_name_create = 716; - public static readonly RULE_column_name = 717; - public static readonly RULE_column_name_create = 718; - public static readonly RULE_name = 719; - public static readonly RULE_attr_name = 720; - public static readonly RULE_file_name = 721; - public static readonly RULE_function_name_create = 722; - public static readonly RULE_function_name = 723; - public static readonly RULE_usual_name = 724; - public static readonly RULE_aexprconst = 725; - public static readonly RULE_xconst = 726; - public static readonly RULE_bconst = 727; - public static readonly RULE_fconst = 728; - public static readonly RULE_iconst = 729; - public static readonly RULE_sconst = 730; - public static readonly RULE_anysconst = 731; - public static readonly RULE_opt_uescape = 732; - public static readonly RULE_signediconst = 733; - public static readonly RULE_groupname = 734; - public static readonly RULE_roleid = 735; - public static readonly RULE_rolespec = 736; - public static readonly RULE_role_list = 737; - public static readonly RULE_colid = 738; - public static readonly RULE_index_method_choices = 739; - public static readonly RULE_exclude_element = 740; - public static readonly RULE_index_paramenters = 741; - public static readonly RULE_type_function_name = 742; - public static readonly RULE_type_usual_name = 743; - public static readonly RULE_nonreservedword_column = 744; - public static readonly RULE_nonreservedword = 745; - public static readonly RULE_collabel = 746; - public static readonly RULE_identifier = 747; - public static readonly RULE_plsqlidentifier = 748; - public static readonly RULE_unreserved_keyword = 749; - public static readonly RULE_col_name_keyword = 750; - public static readonly RULE_type_func_name_keyword = 751; - public static readonly RULE_reserved_keyword = 752; - public static readonly RULE_pl_function = 753; - public static readonly RULE_comp_options = 754; - public static readonly RULE_comp_option = 755; - public static readonly RULE_sharp = 756; - public static readonly RULE_option_value = 757; - public static readonly RULE_opt_semi = 758; - public static readonly RULE_pl_block = 759; - public static readonly RULE_decl_sect = 760; - public static readonly RULE_decl_start = 761; - public static readonly RULE_decl_stmts = 762; - public static readonly RULE_label_decl = 763; - public static readonly RULE_decl_stmt = 764; - public static readonly RULE_decl_statement = 765; - public static readonly RULE_opt_scrollable = 766; - public static readonly RULE_decl_cursor_query = 767; - public static readonly RULE_decl_cursor_args = 768; - public static readonly RULE_decl_cursor_arglist = 769; - public static readonly RULE_decl_cursor_arg = 770; - public static readonly RULE_decl_is_for = 771; - public static readonly RULE_decl_aliasitem = 772; - public static readonly RULE_decl_varname = 773; - public static readonly RULE_decl_const = 774; - public static readonly RULE_decl_datatype = 775; - public static readonly RULE_decl_collate = 776; - public static readonly RULE_decl_notnull = 777; - public static readonly RULE_decl_defval = 778; - public static readonly RULE_decl_defkey = 779; - public static readonly RULE_assign_operator = 780; - public static readonly RULE_proc_sect = 781; - public static readonly RULE_proc_stmt = 782; - public static readonly RULE_stmt_perform = 783; - public static readonly RULE_stmt_call = 784; - public static readonly RULE_opt_expr_list = 785; - public static readonly RULE_stmt_assign = 786; - public static readonly RULE_stmt_getdiag = 787; - public static readonly RULE_getdiag_area_opt = 788; - public static readonly RULE_getdiag_list = 789; - public static readonly RULE_getdiag_list_item = 790; - public static readonly RULE_getdiag_item = 791; - public static readonly RULE_getdiag_target = 792; - public static readonly RULE_assign_var = 793; - public static readonly RULE_stmt_if = 794; - public static readonly RULE_stmt_elsifs = 795; - public static readonly RULE_stmt_else = 796; - public static readonly RULE_stmt_case = 797; - public static readonly RULE_opt_expr_until_when = 798; - public static readonly RULE_case_when_list = 799; - public static readonly RULE_case_when = 800; - public static readonly RULE_opt_case_else = 801; - public static readonly RULE_stmt_loop = 802; - public static readonly RULE_stmt_while = 803; - public static readonly RULE_stmt_for = 804; - public static readonly RULE_for_control = 805; - public static readonly RULE_opt_for_using_expression = 806; - public static readonly RULE_opt_cursor_parameters = 807; - public static readonly RULE_opt_reverse = 808; - public static readonly RULE_opt_by_expression = 809; - public static readonly RULE_for_variable = 810; - public static readonly RULE_stmt_foreach_a = 811; - public static readonly RULE_foreach_slice = 812; - public static readonly RULE_stmt_exit = 813; - public static readonly RULE_exit_type = 814; - public static readonly RULE_stmt_return = 815; - public static readonly RULE_opt_return_result = 816; - public static readonly RULE_stmt_raise = 817; - public static readonly RULE_opt_stmt_raise_level = 818; - public static readonly RULE_opt_raise_list = 819; - public static readonly RULE_opt_raise_using = 820; - public static readonly RULE_opt_raise_using_elem = 821; - public static readonly RULE_opt_raise_using_elem_list = 822; - public static readonly RULE_stmt_assert = 823; - public static readonly RULE_opt_stmt_assert_message = 824; - public static readonly RULE_loop_body = 825; - public static readonly RULE_stmt_execsql = 826; - public static readonly RULE_stmt_dynexecute = 827; - public static readonly RULE_opt_execute_using = 828; - public static readonly RULE_opt_execute_using_list = 829; - public static readonly RULE_opt_execute_into = 830; - public static readonly RULE_stmt_open = 831; - public static readonly RULE_opt_open_bound_list_item = 832; - public static readonly RULE_opt_open_bound_list = 833; - public static readonly RULE_opt_open_using = 834; - public static readonly RULE_opt_scroll_option = 835; - public static readonly RULE_opt_scroll_option_no = 836; - public static readonly RULE_stmt_fetch = 837; - public static readonly RULE_into_target = 838; - public static readonly RULE_opt_cursor_from = 839; - public static readonly RULE_opt_fetch_direction = 840; - public static readonly RULE_stmt_move = 841; - public static readonly RULE_mergestmt = 842; - public static readonly RULE_data_source = 843; - public static readonly RULE_join_condition = 844; - public static readonly RULE_merge_when_clause = 845; - public static readonly RULE_merge_insert = 846; - public static readonly RULE_merge_update = 847; - public static readonly RULE_default_values_or_values = 848; - public static readonly RULE_exprofdefaultlist = 849; - public static readonly RULE_exprofdefault = 850; - public static readonly RULE_stmt_close = 851; - public static readonly RULE_stmt_null = 852; - public static readonly RULE_stmt_commit = 853; - public static readonly RULE_stmt_rollback = 854; - public static readonly RULE_plsql_opt_transaction_chain = 855; - public static readonly RULE_stmt_set = 856; - public static readonly RULE_cursor_variable = 857; - public static readonly RULE_exception_sect = 858; - public static readonly RULE_proc_exceptions = 859; - public static readonly RULE_proc_exception = 860; - public static readonly RULE_proc_conditions = 861; - public static readonly RULE_proc_condition = 862; - public static readonly RULE_opt_block_label = 863; - public static readonly RULE_opt_loop_label = 864; - public static readonly RULE_opt_label = 865; - public static readonly RULE_opt_exitcond = 866; - public static readonly RULE_any_identifier = 867; - public static readonly RULE_plsql_unreserved_keyword = 868; - public static readonly RULE_sql_expression = 869; - public static readonly RULE_expr_until_then = 870; - public static readonly RULE_expr_until_semi = 871; - public static readonly RULE_expr_until_rightbracket = 872; - public static readonly RULE_expr_until_loop = 873; - public static readonly RULE_make_execsql_stmt = 874; - public static readonly RULE_opt_returning_clause_into = 875; + public static readonly RULE_relation_column_name = 276; + public static readonly RULE_relation_name = 277; + public static readonly RULE_any_name = 278; + public static readonly RULE_attrs = 279; + public static readonly RULE_type_name_list = 280; + public static readonly RULE_truncatestmt = 281; + public static readonly RULE_truncate_table = 282; + public static readonly RULE_commentstmt = 283; + public static readonly RULE_comment_text = 284; + public static readonly RULE_seclabelstmt = 285; + public static readonly RULE_opt_provider = 286; + public static readonly RULE_security_label = 287; + public static readonly RULE_fetchstmt = 288; + public static readonly RULE_fetch_args = 289; + public static readonly RULE_from_in = 290; + public static readonly RULE_opt_from_in = 291; + public static readonly RULE_grantstmt = 292; + public static readonly RULE_revokestmt = 293; + public static readonly RULE_privileges = 294; + public static readonly RULE_beforeprivilegeselectlist = 295; + public static readonly RULE_beforeprivilegeselect = 296; + public static readonly RULE_privilege_list = 297; + public static readonly RULE_privilege = 298; + public static readonly RULE_privilege_target = 299; + public static readonly RULE_grantee_list = 300; + public static readonly RULE_grantee = 301; + public static readonly RULE_opt_grant_grant_option = 302; + public static readonly RULE_grantrolestmt = 303; + public static readonly RULE_revokerolestmt = 304; + public static readonly RULE_opt_grant_admin_option = 305; + public static readonly RULE_opt_granted_by = 306; + public static readonly RULE_alterdefaultprivilegesstmt = 307; + public static readonly RULE_defacloptionlist = 308; + public static readonly RULE_defacloption = 309; + public static readonly RULE_defaclaction = 310; + public static readonly RULE_defacl_privilege_target = 311; + public static readonly RULE_indexstmt = 312; + public static readonly RULE_opt_unique = 313; + public static readonly RULE_opt_concurrently = 314; + public static readonly RULE_opt_index_name = 315; + public static readonly RULE_access_method_clause = 316; + public static readonly RULE_index_params = 317; + public static readonly RULE_index_elem_options = 318; + public static readonly RULE_index_elem = 319; + public static readonly RULE_opt_include = 320; + public static readonly RULE_index_including_params = 321; + public static readonly RULE_opt_collate = 322; + public static readonly RULE_opt_class = 323; + public static readonly RULE_opt_asc_desc = 324; + public static readonly RULE_opt_nulls_order = 325; + public static readonly RULE_createfunctionstmt = 326; + public static readonly RULE_attrilist = 327; + public static readonly RULE_opt_or_replace = 328; + public static readonly RULE_func_args = 329; + public static readonly RULE_func_args_list = 330; + public static readonly RULE_routine_with_argtypes_list = 331; + public static readonly RULE_routine_with_argtypes = 332; + public static readonly RULE_procedure_with_argtypes_list = 333; + public static readonly RULE_procedure_with_argtypes = 334; + public static readonly RULE_function_with_argtypes_list = 335; + public static readonly RULE_function_with_argtypes = 336; + public static readonly RULE_func_args_with_defaults = 337; + public static readonly RULE_func_args_with_defaults_list = 338; + public static readonly RULE_func_arg = 339; + public static readonly RULE_arg_class = 340; + public static readonly RULE_param_name = 341; + public static readonly RULE_func_return = 342; + public static readonly RULE_func_type = 343; + public static readonly RULE_func_arg_with_default = 344; + public static readonly RULE_aggr_arg = 345; + public static readonly RULE_aggr_args = 346; + public static readonly RULE_aggr_args_list = 347; + public static readonly RULE_aggregate_with_argtypes = 348; + public static readonly RULE_aggregate_with_argtypes_list = 349; + public static readonly RULE_createfunc_opt_list = 350; + public static readonly RULE_common_func_opt_item = 351; + public static readonly RULE_createfunc_opt_item = 352; + public static readonly RULE_transform_type_list = 353; + public static readonly RULE_opt_definition = 354; + public static readonly RULE_table_func_column = 355; + public static readonly RULE_table_func_column_list = 356; + public static readonly RULE_alterfunctionstmt = 357; + public static readonly RULE_alterFunctionTypeClause = 358; + public static readonly RULE_alterfunc_opt_list = 359; + public static readonly RULE_opt_restrict = 360; + public static readonly RULE_removefuncstmt = 361; + public static readonly RULE_removeaggrstmt = 362; + public static readonly RULE_removeoperstmt = 363; + public static readonly RULE_oper_argtypes = 364; + public static readonly RULE_any_operator = 365; + public static readonly RULE_operator_with_argtypes_list = 366; + public static readonly RULE_operator_with_argtypes = 367; + public static readonly RULE_dostmt = 368; + public static readonly RULE_dostmt_opt_list = 369; + public static readonly RULE_dostmt_opt_item = 370; + public static readonly RULE_createcaststmt = 371; + public static readonly RULE_cast_context = 372; + public static readonly RULE_opt_if_exists = 373; + public static readonly RULE_createtransformstmt = 374; + public static readonly RULE_transform_element_list = 375; + public static readonly RULE_reindexstmt = 376; + public static readonly RULE_reindex_target_type = 377; + public static readonly RULE_reindex_target_multitable = 378; + public static readonly RULE_reindex_option_list = 379; + public static readonly RULE_reindex_option_elem = 380; + public static readonly RULE_altertblspcstmt = 381; + public static readonly RULE_renamestmt = 382; + public static readonly RULE_opt_set_data = 383; + public static readonly RULE_alterobjectdependsstmt = 384; + public static readonly RULE_opt_no = 385; + public static readonly RULE_alterobjectschemastmt = 386; + public static readonly RULE_alteroperatorstmt = 387; + public static readonly RULE_operator_def_list = 388; + public static readonly RULE_operator_def_elem = 389; + public static readonly RULE_operator_def_arg = 390; + public static readonly RULE_altertypestmt = 391; + public static readonly RULE_alterownerstmt = 392; + public static readonly RULE_createpublicationstmt = 393; + public static readonly RULE_opt_publication_for_tables = 394; + public static readonly RULE_publication_for_tables = 395; + public static readonly RULE_alterpublicationstmt = 396; + public static readonly RULE_createsubscriptionstmt = 397; + public static readonly RULE_publication_name_list = 398; + public static readonly RULE_publication_name_item = 399; + public static readonly RULE_altersubscriptionstmt = 400; + public static readonly RULE_rulestmt = 401; + public static readonly RULE_ruleactionlist = 402; + public static readonly RULE_ruleactionmulti = 403; + public static readonly RULE_ruleactionstmt = 404; + public static readonly RULE_ruleactionstmtOrEmpty = 405; + public static readonly RULE_event = 406; + public static readonly RULE_opt_instead = 407; + public static readonly RULE_notifystmt = 408; + public static readonly RULE_notify_payload = 409; + public static readonly RULE_listenstmt = 410; + public static readonly RULE_unlistenstmt = 411; + public static readonly RULE_transactionstmt = 412; + public static readonly RULE_opt_transaction = 413; + public static readonly RULE_transaction_mode_item = 414; + public static readonly RULE_transaction_mode_list = 415; + public static readonly RULE_transaction_mode_list_or_empty = 416; + public static readonly RULE_opt_transaction_chain = 417; + public static readonly RULE_viewstmt = 418; + public static readonly RULE_opt_check_option = 419; + public static readonly RULE_loadstmt = 420; + public static readonly RULE_createdbstmt = 421; + public static readonly RULE_createdb_opt_list = 422; + public static readonly RULE_createdb_opt_items = 423; + public static readonly RULE_createdb_opt_item = 424; + public static readonly RULE_createdb_opt_name = 425; + public static readonly RULE_opt_equal = 426; + public static readonly RULE_alterdatabasestmt = 427; + public static readonly RULE_alterdatabasesetstmt = 428; + public static readonly RULE_drop_option_list = 429; + public static readonly RULE_drop_option = 430; + public static readonly RULE_altercollationstmt = 431; + public static readonly RULE_altersystemstmt = 432; + public static readonly RULE_createdomainstmt = 433; + public static readonly RULE_alterdomainstmt = 434; + public static readonly RULE_opt_as = 435; + public static readonly RULE_altertsdictionarystmt = 436; + public static readonly RULE_altertsconfigurationstmt = 437; + public static readonly RULE_any_with = 438; + public static readonly RULE_createconversionstmt = 439; + public static readonly RULE_clusterstmt = 440; + public static readonly RULE_opt_verbose_list = 441; + public static readonly RULE_cluster_index_specification = 442; + public static readonly RULE_vacuumstmt = 443; + public static readonly RULE_analyzestmt = 444; + public static readonly RULE_vac_analyze_option_list = 445; + public static readonly RULE_analyze_keyword = 446; + public static readonly RULE_vac_analyze_option_elem = 447; + public static readonly RULE_vac_analyze_option_name = 448; + public static readonly RULE_vac_analyze_option_arg = 449; + public static readonly RULE_opt_analyze = 450; + public static readonly RULE_analyze_options_list = 451; + public static readonly RULE_analyze_option_elem = 452; + public static readonly RULE_opt_verbose = 453; + public static readonly RULE_opt_skiplock = 454; + public static readonly RULE_opt_buffer_usage_limit = 455; + public static readonly RULE_opt_full = 456; + public static readonly RULE_opt_freeze = 457; + public static readonly RULE_opt_name_list = 458; + public static readonly RULE_vacuum_relation = 459; + public static readonly RULE_vacuum_relation_list = 460; + public static readonly RULE_opt_vacuum_relation_list = 461; + public static readonly RULE_explainstmt = 462; + public static readonly RULE_explainablestmt = 463; + public static readonly RULE_explain_option_list = 464; + public static readonly RULE_explain_option_elem = 465; + public static readonly RULE_explain_option_name = 466; + public static readonly RULE_explain_option_arg = 467; + public static readonly RULE_preparestmt = 468; + public static readonly RULE_prep_type_clause = 469; + public static readonly RULE_preparablestmt = 470; + public static readonly RULE_executestmt = 471; + public static readonly RULE_execute_param_clause = 472; + public static readonly RULE_deallocatestmt = 473; + public static readonly RULE_insertstmt = 474; + public static readonly RULE_insert_target = 475; + public static readonly RULE_insert_rest = 476; + public static readonly RULE_override_kind = 477; + public static readonly RULE_insert_column_list = 478; + public static readonly RULE_insert_column_item = 479; + public static readonly RULE_opt_on_conflict = 480; + public static readonly RULE_opt_conf_expr = 481; + public static readonly RULE_returning_clause = 482; + public static readonly RULE_deletestmt = 483; + public static readonly RULE_using_clause = 484; + public static readonly RULE_lockstmt = 485; + public static readonly RULE_opt_lock = 486; + public static readonly RULE_lock_type = 487; + public static readonly RULE_opt_nowait = 488; + public static readonly RULE_opt_nowait_or_skip = 489; + public static readonly RULE_updatestmt = 490; + public static readonly RULE_set_clause_list = 491; + public static readonly RULE_set_clause = 492; + public static readonly RULE_set_target = 493; + public static readonly RULE_set_target_list = 494; + public static readonly RULE_declarecursorstmt = 495; + public static readonly RULE_cursor_name = 496; + public static readonly RULE_cursor_options = 497; + public static readonly RULE_opt_hold = 498; + public static readonly RULE_selectstmt = 499; + public static readonly RULE_select_with_parens = 500; + public static readonly RULE_select_no_parens = 501; + public static readonly RULE_select_clause = 502; + public static readonly RULE_simple_select = 503; + public static readonly RULE_set_operator = 504; + public static readonly RULE_set_operator_with_all_or_distinct = 505; + public static readonly RULE_with_clause = 506; + public static readonly RULE_cte_list = 507; + public static readonly RULE_common_table_expr = 508; + public static readonly RULE_search_cluase = 509; + public static readonly RULE_cycle_cluase = 510; + public static readonly RULE_opt_materialized = 511; + public static readonly RULE_opt_with_clause = 512; + public static readonly RULE_into_clause = 513; + public static readonly RULE_opt_strict = 514; + public static readonly RULE_opttempTableName = 515; + public static readonly RULE_opt_table = 516; + public static readonly RULE_all_or_distinct = 517; + public static readonly RULE_distinct_clause = 518; + public static readonly RULE_opt_all_clause = 519; + public static readonly RULE_opt_sort_clause = 520; + public static readonly RULE_sort_clause = 521; + public static readonly RULE_sortby_list = 522; + public static readonly RULE_sortby = 523; + public static readonly RULE_select_limit = 524; + public static readonly RULE_opt_select_limit = 525; + public static readonly RULE_limit_clause = 526; + public static readonly RULE_fetch_clause = 527; + public static readonly RULE_offset_clause = 528; + public static readonly RULE_select_limit_value = 529; + public static readonly RULE_select_offset_value = 530; + public static readonly RULE_select_fetch_first_value = 531; + public static readonly RULE_i_or_f_const = 532; + public static readonly RULE_row_or_rows = 533; + public static readonly RULE_first_or_next = 534; + public static readonly RULE_group_clause = 535; + public static readonly RULE_group_by_list = 536; + public static readonly RULE_group_by_item = 537; + public static readonly RULE_empty_grouping_set = 538; + public static readonly RULE_rollup_clause = 539; + public static readonly RULE_cube_clause = 540; + public static readonly RULE_grouping_sets_clause = 541; + public static readonly RULE_having_clause = 542; + public static readonly RULE_for_locking_clause = 543; + public static readonly RULE_opt_for_locking_clause = 544; + public static readonly RULE_for_locking_items = 545; + public static readonly RULE_for_locking_item = 546; + public static readonly RULE_for_locking_strength = 547; + public static readonly RULE_locked_rels_list = 548; + public static readonly RULE_values_clause = 549; + public static readonly RULE_from_clause = 550; + public static readonly RULE_from_list = 551; + public static readonly RULE_table_ref = 552; + public static readonly RULE_alias_clause = 553; + public static readonly RULE_opt_alias_clause = 554; + public static readonly RULE_func_alias_clause = 555; + public static readonly RULE_join_type = 556; + public static readonly RULE_join_qual = 557; + public static readonly RULE_relation_expr = 558; + public static readonly RULE_view_relation_expr = 559; + public static readonly RULE_publication_relation_expr = 560; + public static readonly RULE_relation_expr_list = 561; + public static readonly RULE_publication_relation_expr_list = 562; + public static readonly RULE_relation_expr_opt_alias = 563; + public static readonly RULE_tablesample_clause = 564; + public static readonly RULE_opt_repeatable_clause = 565; + public static readonly RULE_func_table = 566; + public static readonly RULE_rowsfrom_item = 567; + public static readonly RULE_rowsfrom_list = 568; + public static readonly RULE_opt_col_def_list = 569; + public static readonly RULE_opt_ordinality = 570; + public static readonly RULE_where_clause = 571; + public static readonly RULE_where_or_current_clause = 572; + public static readonly RULE_opttablefuncelementlist = 573; + public static readonly RULE_tablefuncelementlist = 574; + public static readonly RULE_tablefuncelement = 575; + public static readonly RULE_xmltable = 576; + public static readonly RULE_xmltable_column_list = 577; + public static readonly RULE_xmltable_column_el = 578; + public static readonly RULE_xmltable_column_option_list = 579; + public static readonly RULE_xmltable_column_option_el = 580; + public static readonly RULE_xml_namespace_list = 581; + public static readonly RULE_xml_namespace_el = 582; + public static readonly RULE_typename = 583; + public static readonly RULE_opt_array_bounds = 584; + public static readonly RULE_simpletypename = 585; + public static readonly RULE_consttypename = 586; + public static readonly RULE_generictype = 587; + public static readonly RULE_opt_type_modifiers = 588; + public static readonly RULE_numeric = 589; + public static readonly RULE_opt_float = 590; + public static readonly RULE_bit = 591; + public static readonly RULE_constbit = 592; + public static readonly RULE_bitwithlength = 593; + public static readonly RULE_bitwithoutlength = 594; + public static readonly RULE_character = 595; + public static readonly RULE_constcharacter = 596; + public static readonly RULE_character_c = 597; + public static readonly RULE_opt_varying = 598; + public static readonly RULE_constdatetime = 599; + public static readonly RULE_constinterval = 600; + public static readonly RULE_opt_timezone = 601; + public static readonly RULE_opt_interval = 602; + public static readonly RULE_interval_second = 603; + public static readonly RULE_opt_escape = 604; + public static readonly RULE_a_expr = 605; + public static readonly RULE_a_expr_qual = 606; + public static readonly RULE_a_expr_lessless = 607; + public static readonly RULE_a_expr_or = 608; + public static readonly RULE_a_expr_and = 609; + public static readonly RULE_a_expr_in = 610; + public static readonly RULE_a_expr_unary_not = 611; + public static readonly RULE_a_expr_isnull = 612; + public static readonly RULE_a_expr_is_not = 613; + public static readonly RULE_a_expr_compare = 614; + public static readonly RULE_a_expr_like = 615; + public static readonly RULE_a_expr_qual_op = 616; + public static readonly RULE_a_expr_unary_qualop = 617; + public static readonly RULE_a_expr_add = 618; + public static readonly RULE_a_expr_mul = 619; + public static readonly RULE_a_expr_caret = 620; + public static readonly RULE_a_expr_unary_sign = 621; + public static readonly RULE_a_expr_at_time_zone = 622; + public static readonly RULE_a_expr_collate = 623; + public static readonly RULE_a_expr_typecast = 624; + public static readonly RULE_b_expr = 625; + public static readonly RULE_c_expr = 626; + public static readonly RULE_plsqlvariablename = 627; + public static readonly RULE_func_application = 628; + public static readonly RULE_func_expr = 629; + public static readonly RULE_func_expr_windowless = 630; + public static readonly RULE_func_expr_common_subexpr = 631; + public static readonly RULE_xml_root_version = 632; + public static readonly RULE_opt_xml_root_standalone = 633; + public static readonly RULE_xml_attributes = 634; + public static readonly RULE_xml_attribute_list = 635; + public static readonly RULE_xml_attribute_el = 636; + public static readonly RULE_document_or_content = 637; + public static readonly RULE_xml_whitespace_option = 638; + public static readonly RULE_xmlexists_argument = 639; + public static readonly RULE_xml_passing_mech = 640; + public static readonly RULE_within_group_clause = 641; + public static readonly RULE_filter_clause = 642; + public static readonly RULE_window_clause = 643; + public static readonly RULE_window_definition_list = 644; + public static readonly RULE_window_definition = 645; + public static readonly RULE_over_clause = 646; + public static readonly RULE_window_specification = 647; + public static readonly RULE_opt_existing_window_name = 648; + public static readonly RULE_opt_partition_clause = 649; + public static readonly RULE_opt_frame_clause = 650; + public static readonly RULE_frame_extent = 651; + public static readonly RULE_frame_bound = 652; + public static readonly RULE_opt_window_exclusion_clause = 653; + public static readonly RULE_row = 654; + public static readonly RULE_explicit_row = 655; + public static readonly RULE_implicit_row = 656; + public static readonly RULE_sub_type = 657; + public static readonly RULE_all_op = 658; + public static readonly RULE_mathop = 659; + public static readonly RULE_qual_op = 660; + public static readonly RULE_qual_all_op = 661; + public static readonly RULE_subquery_Op = 662; + public static readonly RULE_expr_list = 663; + public static readonly RULE_column_expr_list_noparen = 664; + public static readonly RULE_column_expr_list = 665; + public static readonly RULE_column_expr = 666; + public static readonly RULE_column_expr_noparen = 667; + public static readonly RULE_func_arg_list = 668; + public static readonly RULE_func_arg_expr = 669; + public static readonly RULE_type_list = 670; + public static readonly RULE_array_expr = 671; + public static readonly RULE_array_expr_list = 672; + public static readonly RULE_extract_list = 673; + public static readonly RULE_extract_arg = 674; + public static readonly RULE_unicode_normal_form = 675; + public static readonly RULE_overlay_list = 676; + public static readonly RULE_position_list = 677; + public static readonly RULE_substr_list = 678; + public static readonly RULE_trim_list = 679; + public static readonly RULE_in_expr = 680; + public static readonly RULE_case_expr = 681; + public static readonly RULE_when_clause_list = 682; + public static readonly RULE_when_clause = 683; + public static readonly RULE_case_default = 684; + public static readonly RULE_case_arg = 685; + public static readonly RULE_columnref = 686; + public static readonly RULE_indirection_el = 687; + public static readonly RULE_opt_slice_bound = 688; + public static readonly RULE_indirection = 689; + public static readonly RULE_opt_indirection = 690; + public static readonly RULE_opt_target_list = 691; + public static readonly RULE_target_list = 692; + public static readonly RULE_target_el = 693; + public static readonly RULE_qualified_name_list = 694; + public static readonly RULE_table_name_list = 695; + public static readonly RULE_schema_name_list = 696; + public static readonly RULE_database_nameList = 697; + public static readonly RULE_procedure_name_list = 698; + public static readonly RULE_tablespace_name_create = 699; + public static readonly RULE_tablespace_name = 700; + public static readonly RULE_table_name_create = 701; + public static readonly RULE_table_name = 702; + public static readonly RULE_view_name_create = 703; + public static readonly RULE_view_name = 704; + public static readonly RULE_qualified_name = 705; + public static readonly RULE_tablespace_name_list = 706; + public static readonly RULE_name_list = 707; + public static readonly RULE_database_name_create = 708; + public static readonly RULE_database_name = 709; + public static readonly RULE_schema_name = 710; + public static readonly RULE_routine_name_create = 711; + public static readonly RULE_routine_name = 712; + public static readonly RULE_procedure_name = 713; + public static readonly RULE_procedure_name_create = 714; + public static readonly RULE_column_name = 715; + public static readonly RULE_column_name_create = 716; + public static readonly RULE_name = 717; + public static readonly RULE_attr_name = 718; + public static readonly RULE_file_name = 719; + public static readonly RULE_function_name_create = 720; + public static readonly RULE_function_name = 721; + public static readonly RULE_usual_name = 722; + public static readonly RULE_aexprconst = 723; + public static readonly RULE_xconst = 724; + public static readonly RULE_bconst = 725; + public static readonly RULE_fconst = 726; + public static readonly RULE_iconst = 727; + public static readonly RULE_sconst = 728; + public static readonly RULE_anysconst = 729; + public static readonly RULE_opt_uescape = 730; + public static readonly RULE_signediconst = 731; + public static readonly RULE_groupname = 732; + public static readonly RULE_roleid = 733; + public static readonly RULE_rolespec = 734; + public static readonly RULE_role_list = 735; + public static readonly RULE_colid = 736; + public static readonly RULE_index_method_choices = 737; + public static readonly RULE_exclude_element = 738; + public static readonly RULE_index_paramenters = 739; + public static readonly RULE_type_function_name = 740; + public static readonly RULE_type_usual_name = 741; + public static readonly RULE_nonreservedword_column = 742; + public static readonly RULE_nonreservedword = 743; + public static readonly RULE_collabel = 744; + public static readonly RULE_identifier = 745; + public static readonly RULE_plsqlidentifier = 746; + public static readonly RULE_unreserved_keyword = 747; + public static readonly RULE_col_name_keyword = 748; + public static readonly RULE_type_func_name_keyword = 749; + public static readonly RULE_reserved_keyword = 750; + public static readonly RULE_pl_function = 751; + public static readonly RULE_comp_options = 752; + public static readonly RULE_comp_option = 753; + public static readonly RULE_sharp = 754; + public static readonly RULE_option_value = 755; + public static readonly RULE_opt_semi = 756; + public static readonly RULE_pl_block = 757; + public static readonly RULE_decl_sect = 758; + public static readonly RULE_decl_start = 759; + public static readonly RULE_decl_stmts = 760; + public static readonly RULE_label_decl = 761; + public static readonly RULE_decl_stmt = 762; + public static readonly RULE_decl_statement = 763; + public static readonly RULE_opt_scrollable = 764; + public static readonly RULE_decl_cursor_query = 765; + public static readonly RULE_decl_cursor_args = 766; + public static readonly RULE_decl_cursor_arglist = 767; + public static readonly RULE_decl_cursor_arg = 768; + public static readonly RULE_decl_is_for = 769; + public static readonly RULE_decl_aliasitem = 770; + public static readonly RULE_decl_varname = 771; + public static readonly RULE_decl_const = 772; + public static readonly RULE_decl_datatype = 773; + public static readonly RULE_decl_collate = 774; + public static readonly RULE_decl_notnull = 775; + public static readonly RULE_decl_defval = 776; + public static readonly RULE_decl_defkey = 777; + public static readonly RULE_assign_operator = 778; + public static readonly RULE_proc_sect = 779; + public static readonly RULE_proc_stmt = 780; + public static readonly RULE_stmt_perform = 781; + public static readonly RULE_stmt_call = 782; + public static readonly RULE_opt_expr_list = 783; + public static readonly RULE_stmt_assign = 784; + public static readonly RULE_stmt_getdiag = 785; + public static readonly RULE_getdiag_area_opt = 786; + public static readonly RULE_getdiag_list = 787; + public static readonly RULE_getdiag_list_item = 788; + public static readonly RULE_getdiag_item = 789; + public static readonly RULE_getdiag_target = 790; + public static readonly RULE_assign_var = 791; + public static readonly RULE_stmt_if = 792; + public static readonly RULE_stmt_elsifs = 793; + public static readonly RULE_stmt_else = 794; + public static readonly RULE_stmt_case = 795; + public static readonly RULE_opt_expr_until_when = 796; + public static readonly RULE_case_when_list = 797; + public static readonly RULE_case_when = 798; + public static readonly RULE_opt_case_else = 799; + public static readonly RULE_stmt_loop = 800; + public static readonly RULE_stmt_while = 801; + public static readonly RULE_stmt_for = 802; + public static readonly RULE_for_control = 803; + public static readonly RULE_opt_for_using_expression = 804; + public static readonly RULE_opt_cursor_parameters = 805; + public static readonly RULE_opt_reverse = 806; + public static readonly RULE_opt_by_expression = 807; + public static readonly RULE_for_variable = 808; + public static readonly RULE_stmt_foreach_a = 809; + public static readonly RULE_foreach_slice = 810; + public static readonly RULE_stmt_exit = 811; + public static readonly RULE_exit_type = 812; + public static readonly RULE_stmt_return = 813; + public static readonly RULE_opt_return_result = 814; + public static readonly RULE_stmt_raise = 815; + public static readonly RULE_opt_stmt_raise_level = 816; + public static readonly RULE_opt_raise_list = 817; + public static readonly RULE_opt_raise_using = 818; + public static readonly RULE_opt_raise_using_elem = 819; + public static readonly RULE_opt_raise_using_elem_list = 820; + public static readonly RULE_stmt_assert = 821; + public static readonly RULE_opt_stmt_assert_message = 822; + public static readonly RULE_loop_body = 823; + public static readonly RULE_stmt_execsql = 824; + public static readonly RULE_stmt_dynexecute = 825; + public static readonly RULE_opt_execute_using = 826; + public static readonly RULE_opt_execute_using_list = 827; + public static readonly RULE_opt_execute_into = 828; + public static readonly RULE_stmt_open = 829; + public static readonly RULE_opt_open_bound_list_item = 830; + public static readonly RULE_opt_open_bound_list = 831; + public static readonly RULE_opt_open_using = 832; + public static readonly RULE_opt_scroll_option = 833; + public static readonly RULE_opt_scroll_option_no = 834; + public static readonly RULE_stmt_fetch = 835; + public static readonly RULE_into_target = 836; + public static readonly RULE_opt_cursor_from = 837; + public static readonly RULE_opt_fetch_direction = 838; + public static readonly RULE_stmt_move = 839; + public static readonly RULE_mergestmt = 840; + public static readonly RULE_data_source = 841; + public static readonly RULE_join_condition = 842; + public static readonly RULE_merge_when_clause = 843; + public static readonly RULE_merge_insert = 844; + public static readonly RULE_merge_update = 845; + public static readonly RULE_default_values_or_values = 846; + public static readonly RULE_exprofdefaultlist = 847; + public static readonly RULE_exprofdefault = 848; + public static readonly RULE_stmt_close = 849; + public static readonly RULE_stmt_null = 850; + public static readonly RULE_stmt_commit = 851; + public static readonly RULE_stmt_rollback = 852; + public static readonly RULE_plsql_opt_transaction_chain = 853; + public static readonly RULE_stmt_set = 854; + public static readonly RULE_cursor_variable = 855; + public static readonly RULE_exception_sect = 856; + public static readonly RULE_proc_exceptions = 857; + public static readonly RULE_proc_exception = 858; + public static readonly RULE_proc_conditions = 859; + public static readonly RULE_proc_condition = 860; + public static readonly RULE_opt_block_label = 861; + public static readonly RULE_opt_loop_label = 862; + public static readonly RULE_opt_label = 863; + public static readonly RULE_opt_exitcond = 864; + public static readonly RULE_any_identifier = 865; + public static readonly RULE_plsql_unreserved_keyword = 866; + public static readonly RULE_sql_expression = 867; + public static readonly RULE_expr_until_then = 868; + public static readonly RULE_expr_until_semi = 869; + public static readonly RULE_expr_until_rightbracket = 870; + public static readonly RULE_expr_until_loop = 871; + public static readonly RULE_make_execsql_stmt = 872; + public static readonly RULE_opt_returning_clause_into = 873; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1780,9 +1778,9 @@ export class PostgreSQLParser extends antlr.Parser { "opt_recheck", "createopfamilystmt", "alteropfamilystmt", "opclass_drop_list", "opclass_drop", "reassignownedstmt", "dropstmt", "view_nameList", "object_type_any_name", "object_type_name", "object_type_name_on_any_name", - "any_name_list", "table_column_name", "relation_column_name", "relation_name", - "any_name", "attrs", "type_name_list", "truncatestmt", "opt_restart_seqs", - "commentstmt", "comment_text", "seclabelstmt", "opt_provider", "security_label", + "any_name_list", "relation_column_name", "relation_name", "any_name", + "attrs", "type_name_list", "truncatestmt", "truncate_table", "commentstmt", + "comment_text", "seclabelstmt", "opt_provider", "security_label", "fetchstmt", "fetch_args", "from_in", "opt_from_in", "grantstmt", "revokestmt", "privileges", "beforeprivilegeselectlist", "beforeprivilegeselect", "privilege_list", "privilege", "privilege_target", "grantee_list", @@ -1808,7 +1806,7 @@ export class PostgreSQLParser extends antlr.Parser { "createcaststmt", "cast_context", "opt_if_exists", "createtransformstmt", "transform_element_list", "reindexstmt", "reindex_target_type", "reindex_target_multitable", "reindex_option_list", "reindex_option_elem", - "altertblspcstmt", "renamestmt", "opt_column", "opt_set_data", "alterobjectdependsstmt", + "altertblspcstmt", "renamestmt", "opt_set_data", "alterobjectdependsstmt", "opt_no", "alterobjectschemastmt", "alteroperatorstmt", "operator_def_list", "operator_def_elem", "operator_def_arg", "altertypestmt", "alterownerstmt", "createpublicationstmt", "opt_publication_for_tables", "publication_for_tables", @@ -1953,21 +1951,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 2 || _la === 31 || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 570441729) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 142606337) !== 0) || _la === 105 || _la === 129 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 2159673601) !== 0) || ((((_la - 177)) & ~0x1F) === 0 && ((1 << (_la - 177)) & 100680739) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1090557953) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 679839745) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 272417) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 6401) !== 0) || ((((_la - 422)) & ~0x1F) === 0 && ((1 << (_la - 422)) & 4196353) !== 0) || _la === 454 || _la === 525 || _la === 581) { { { - this.state = 1752; + this.state = 1748; this.singleStmt(); } } - this.state = 1757; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1758; + this.state = 1754; this.match(PostgreSQLParser.EOF); } } @@ -1991,7 +1989,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1760; + this.state = 1756; this.pl_function(); } } @@ -2016,14 +2014,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1762; + this.state = 1758; this.stmt(); - this.state = 1764; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 1763; + this.state = 1759; this.match(PostgreSQLParser.SEMI); } } @@ -2048,825 +2046,825 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new StmtContext(this.context, this.state); this.enterRule(localContext, 6, PostgreSQLParser.RULE_stmt); try { - this.state = 1883; + this.state = 1879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1766; + this.state = 1762; this.altereventtrigstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1767; + this.state = 1763; this.altercollationstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1768; + this.state = 1764; this.alterdatabasestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1769; + this.state = 1765; this.alterdatabasesetstmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1770; + this.state = 1766; this.alterdefaultprivilegesstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1771; + this.state = 1767; this.alterdomainstmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1772; + this.state = 1768; this.alterenumstmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1773; + this.state = 1769; this.alterextensionstmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1774; + this.state = 1770; this.alterextensioncontentsstmt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1775; + this.state = 1771; this.alterfdwstmt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1776; + this.state = 1772; this.alterforeignserverstmt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1777; + this.state = 1773; this.alterfunctionstmt(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1778; + this.state = 1774; this.altergroupstmt(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1779; + this.state = 1775; this.alterobjectdependsstmt(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1780; + this.state = 1776; this.alterobjectschemastmt(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1781; + this.state = 1777; this.alterownerstmt(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1782; + this.state = 1778; this.alteroperatorstmt(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1783; + this.state = 1779; this.altertypestmt(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1784; + this.state = 1780; this.alterpolicystmt(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1785; + this.state = 1781; this.alterprocedurestmt(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1786; + this.state = 1782; this.alterseqstmt(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1787; + this.state = 1783; this.altersystemstmt(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1788; + this.state = 1784; this.altertablestmt(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1789; + this.state = 1785; this.altertblspcstmt(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1790; + this.state = 1786; this.altercompositetypestmt(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1791; + this.state = 1787; this.alterpublicationstmt(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1792; + this.state = 1788; this.alterrolesetstmt(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1793; + this.state = 1789; this.alterroutinestmt(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1794; + this.state = 1790; this.alterrolestmt(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1795; + this.state = 1791; this.altersubscriptionstmt(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1796; + this.state = 1792; this.alterstatsstmt(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1797; + this.state = 1793; this.altertsconfigurationstmt(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1798; + this.state = 1794; this.altertsdictionarystmt(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1799; + this.state = 1795; this.alterusermappingstmt(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1800; + this.state = 1796; this.analyzestmt(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1801; + this.state = 1797; this.callstmt(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1802; + this.state = 1798; this.checkpointstmt(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1803; + this.state = 1799; this.closeportalstmt(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1804; + this.state = 1800; this.clusterstmt(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1805; + this.state = 1801; this.commentstmt(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1806; + this.state = 1802; this.constraintssetstmt(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1807; + this.state = 1803; this.copystmt(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1808; + this.state = 1804; this.createamstmt(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1809; + this.state = 1805; this.createasstmt(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1810; + this.state = 1806; this.createassertionstmt(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1811; + this.state = 1807; this.createcaststmt(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1812; + this.state = 1808; this.createconversionstmt(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 1813; + this.state = 1809; this.createdomainstmt(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1814; + this.state = 1810; this.createextensionstmt(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1815; + this.state = 1811; this.createfdwstmt(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1816; + this.state = 1812; this.createforeignserverstmt(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1817; + this.state = 1813; this.createforeigntablestmt(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1818; + this.state = 1814; this.createfunctionstmt(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1819; + this.state = 1815; this.creategroupstmt(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1820; + this.state = 1816; this.creatematviewstmt(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1821; + this.state = 1817; this.createopclassstmt(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1822; + this.state = 1818; this.createopfamilystmt(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1823; + this.state = 1819; this.createpublicationstmt(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1824; + this.state = 1820; this.alteropfamilystmt(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1825; + this.state = 1821; this.createpolicystmt(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1826; + this.state = 1822; this.createplangstmt(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1827; + this.state = 1823; this.createschemastmt(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1828; + this.state = 1824; this.createseqstmt(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1829; + this.state = 1825; this.createstmt(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1830; + this.state = 1826; this.createsubscriptionstmt(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1831; + this.state = 1827; this.createstatsstmt(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1832; + this.state = 1828; this.createtablespacestmt(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1833; + this.state = 1829; this.createtransformstmt(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1834; + this.state = 1830; this.createtrigstmt(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1835; + this.state = 1831; this.createeventtrigstmt(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1836; + this.state = 1832; this.createrolestmt(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1837; + this.state = 1833; this.createuserstmt(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1838; + this.state = 1834; this.createusermappingstmt(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1839; + this.state = 1835; this.createdbstmt(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1840; + this.state = 1836; this.deallocatestmt(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1841; + this.state = 1837; this.declarecursorstmt(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1842; + this.state = 1838; this.definestmt(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1843; + this.state = 1839; this.deletestmt(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1844; + this.state = 1840; this.discardstmt(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1845; + this.state = 1841; this.dostmt(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1846; + this.state = 1842; this.dropstmt(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1847; + this.state = 1843; this.executestmt(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1848; + this.state = 1844; this.explainstmt(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1849; + this.state = 1845; this.fetchstmt(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1850; + this.state = 1846; this.grantstmt(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1851; + this.state = 1847; this.grantrolestmt(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1852; + this.state = 1848; this.mergestmt(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1853; + this.state = 1849; this.importforeignschemastmt(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1854; + this.state = 1850; this.indexstmt(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1855; + this.state = 1851; this.insertstmt(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1856; + this.state = 1852; this.listenstmt(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1857; + this.state = 1853; this.refreshmatviewstmt(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1858; + this.state = 1854; this.loadstmt(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1859; + this.state = 1855; this.lockstmt(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1860; + this.state = 1856; this.notifystmt(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1861; + this.state = 1857; this.preparestmt(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1862; + this.state = 1858; this.reassignownedstmt(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1863; + this.state = 1859; this.reindexstmt(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1864; + this.state = 1860; this.removeaggrstmt(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1865; + this.state = 1861; this.removefuncstmt(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1866; + this.state = 1862; this.removeoperstmt(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1867; + this.state = 1863; this.renamestmt(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1868; + this.state = 1864; this.revokestmt(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1869; + this.state = 1865; this.revokerolestmt(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1870; + this.state = 1866; this.rulestmt(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1871; + this.state = 1867; this.seclabelstmt(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1872; + this.state = 1868; this.selectstmt(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1873; + this.state = 1869; this.transactionstmt(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1874; + this.state = 1870; this.truncatestmt(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1875; + this.state = 1871; this.unlistenstmt(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1876; + this.state = 1872; this.updatestmt(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1877; + this.state = 1873; this.vacuumstmt(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1878; + this.state = 1874; this.variableresetstmt(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1879; + this.state = 1875; this.variablesetstmt(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1880; + this.state = 1876; this.variableshowstmt(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1881; + this.state = 1877; this.viewstmt(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1882; + this.state = 1878; this.plsqlconsolecommand(); } break; @@ -2893,14 +2891,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1885; + this.state = 1881; this.match(PostgreSQLParser.MetaCommand); - this.state = 1887; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 1886; + this.state = 1882; this.match(PostgreSQLParser.EndMetaCommand); } } @@ -2927,9 +2925,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1889; + this.state = 1885; this.match(PostgreSQLParser.KW_CALL); - this.state = 1890; + this.state = 1886; this.func_application(); } } @@ -2953,23 +2951,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1892; + this.state = 1888; this.match(PostgreSQLParser.KW_CREATE); - this.state = 1893; + this.state = 1889; this.match(PostgreSQLParser.KW_ROLE); - this.state = 1894; + this.state = 1890; this.roleid(); - this.state = 1896; + this.state = 1892; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 1895; + this.state = 1891; this.opt_with(); } break; } - this.state = 1898; + this.state = 1894; this.optrolelist(); } } @@ -2993,7 +2991,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1900; + this.state = 1896; this.match(PostgreSQLParser.KW_WITH); } } @@ -3018,19 +3016,19 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1905; + this.state = 1901; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1902; + this.state = 1898; this.createoptroleelem(); } } } - this.state = 1907; + this.state = 1903; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); } @@ -3057,19 +3055,19 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1911; + this.state = 1907; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1908; + this.state = 1904; this.alteroptroleelem(); } } } - this.state = 1913; + this.state = 1909; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } @@ -3094,15 +3092,15 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 20, PostgreSQLParser.RULE_alteroptroleelem); let _la: number; try { - this.state = 1949; + this.state = 1945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1914; + this.state = 1910; this.match(PostgreSQLParser.KW_PASSWORD); - this.state = 1917; + this.state = 1913; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -3110,13 +3108,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 1915; + this.state = 1911; this.sconst(); } break; case PostgreSQLParser.KW_NULL: { - this.state = 1916; + this.state = 1912; this.match(PostgreSQLParser.KW_NULL); } break; @@ -3128,7 +3126,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1919; + this.state = 1915; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -3137,16 +3135,16 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1920; + this.state = 1916; this.match(PostgreSQLParser.KW_PASSWORD); - this.state = 1921; + this.state = 1917; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1922; + this.state = 1918; _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -3160,7 +3158,7 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1923; + this.state = 1919; _la = this.tokenStream.LA(1); if(!(_la === 236 || _la === 237)) { this.errorHandler.recoverInline(this); @@ -3174,7 +3172,7 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1924; + this.state = 1920; _la = this.tokenStream.LA(1); if(!(_la === 234 || _la === 235)) { this.errorHandler.recoverInline(this); @@ -3188,7 +3186,7 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1925; + this.state = 1921; _la = this.tokenStream.LA(1); if(!(_la === 232 || _la === 233)) { this.errorHandler.recoverInline(this); @@ -3202,7 +3200,7 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1926; + this.state = 1922; _la = this.tokenStream.LA(1); if(!(_la === 230 || _la === 231)) { this.errorHandler.recoverInline(this); @@ -3216,7 +3214,7 @@ export class PostgreSQLParser extends antlr.Parser { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1927; + this.state = 1923; _la = this.tokenStream.LA(1); if(!(_la === 535 || _la === 536)) { this.errorHandler.recoverInline(this); @@ -3230,7 +3228,7 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1928; + this.state = 1924; _la = this.tokenStream.LA(1); if(!(_la === 537 || _la === 538)) { this.errorHandler.recoverInline(this); @@ -3244,7 +3242,7 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1929; + this.state = 1925; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -3258,78 +3256,78 @@ export class PostgreSQLParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1930; + this.state = 1926; this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 1931; + this.state = 1927; this.match(PostgreSQLParser.KW_LIMIT); - this.state = 1932; + this.state = 1928; this.signediconst(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1933; + this.state = 1929; this.match(PostgreSQLParser.KW_VALID); - this.state = 1934; + this.state = 1930; this.match(PostgreSQLParser.KW_UNTIL); - this.state = 1935; + this.state = 1931; this.sconst(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1936; + this.state = 1932; this.match(PostgreSQLParser.KW_IN); - this.state = 1937; + this.state = 1933; this.match(PostgreSQLParser.KW_ROLE); - this.state = 1938; + this.state = 1934; this.name_list(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1939; + this.state = 1935; this.match(PostgreSQLParser.KW_IN); - this.state = 1940; + this.state = 1936; this.match(PostgreSQLParser.KW_GROUP); - this.state = 1941; + this.state = 1937; this.name_list(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1942; + this.state = 1938; this.match(PostgreSQLParser.KW_ROLE); - this.state = 1943; + this.state = 1939; this.role_list(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1944; + this.state = 1940; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 1945; + this.state = 1941; this.name_list(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1946; + this.state = 1942; this.match(PostgreSQLParser.KW_USER); - this.state = 1947; + this.state = 1943; this.role_list(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1948; + this.state = 1944; this.identifier(); } break; @@ -3354,49 +3352,49 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 22, PostgreSQLParser.RULE_createoptroleelem); let _la: number; try { - this.state = 1961; + this.state = 1957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1951; + this.state = 1947; this.alteroptroleelem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1952; + this.state = 1948; this.match(PostgreSQLParser.KW_SYSID); - this.state = 1953; + this.state = 1949; this.iconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1954; + this.state = 1950; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 1955; + this.state = 1951; this.role_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1956; + this.state = 1952; this.match(PostgreSQLParser.KW_ROLE); - this.state = 1957; + this.state = 1953; this.role_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1958; + this.state = 1954; this.match(PostgreSQLParser.KW_IN); - this.state = 1959; + this.state = 1955; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -3405,7 +3403,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1960; + this.state = 1956; this.role_list(); } break; @@ -3431,23 +3429,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1963; + this.state = 1959; this.match(PostgreSQLParser.KW_CREATE); - this.state = 1964; + this.state = 1960; this.match(PostgreSQLParser.KW_USER); - this.state = 1965; + this.state = 1961; this.roleid(); - this.state = 1967; + this.state = 1963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 1966; + this.state = 1962; this.opt_with(); } break; } - this.state = 1969; + this.state = 1965; this.optrolelist(); } } @@ -3472,9 +3470,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1971; + this.state = 1967; this.match(PostgreSQLParser.KW_ALTER); - this.state = 1972; + this.state = 1968; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -3483,19 +3481,19 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1973; + this.state = 1969; this.rolespec(); - this.state = 1975; + this.state = 1971; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: { - this.state = 1974; + this.state = 1970; this.opt_with(); } break; } - this.state = 1977; + this.state = 1973; this.alteroptrolelist(); } } @@ -3517,7 +3515,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_in_databaseContext(this.context, this.state); this.enterRule(localContext, 28, PostgreSQLParser.RULE_opt_in_database); try { - this.state = 1983; + this.state = 1979; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_RESET: @@ -3530,11 +3528,11 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 2); { - this.state = 1980; + this.state = 1976; this.match(PostgreSQLParser.KW_IN); - this.state = 1981; + this.state = 1977; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 1982; + this.state = 1978; this.database_name(); } break; @@ -3563,9 +3561,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1985; + this.state = 1981; this.match(PostgreSQLParser.KW_ALTER); - this.state = 1986; + this.state = 1982; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -3574,19 +3572,18 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1989; + this.state = 1985; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: { - this.state = 1987; + this.state = 1983; this.match(PostgreSQLParser.KW_ALL); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_ROLE: case PostgreSQLParser.KW_CURRENT_USER: @@ -4010,16 +4007,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 1988; + this.state = 1984; this.rolespec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1991; + this.state = 1987; this.opt_in_database(); - this.state = 1992; + this.state = 1988; this.setresetclause(); } } @@ -4044,23 +4041,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1994; + this.state = 1990; this.match(PostgreSQLParser.KW_ALTER); - this.state = 1995; + this.state = 1991; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 1996; + this.state = 1992; this.routine_name(); - this.state = 1998; + this.state = 1994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1997; + this.state = 1993; this.func_args(); } } - this.state = 2000; + this.state = 1996; this.alter_routine_cluase(); } } @@ -4083,20 +4080,20 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 34, PostgreSQLParser.RULE_alter_routine_cluase); let _la: number; try { - this.state = 2022; + this.state = 2018; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2002; + this.state = 1998; this.routine_action_list(); - this.state = 2004; + this.state = 2000; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 2003; + this.state = 1999; this.match(PostgreSQLParser.KW_RESTRICT); } break; @@ -4106,56 +4103,56 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2006; + this.state = 2002; this.match(PostgreSQLParser.KW_RENAME); - this.state = 2007; + this.state = 2003; this.match(PostgreSQLParser.KW_TO); - this.state = 2008; + this.state = 2004; this.routine_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2009; + this.state = 2005; this.match(PostgreSQLParser.KW_OWNER); - this.state = 2010; + this.state = 2006; this.match(PostgreSQLParser.KW_TO); - this.state = 2011; + this.state = 2007; this.rolespec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2012; + this.state = 2008; this.match(PostgreSQLParser.KW_SET); - this.state = 2013; + this.state = 2009; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 2014; + this.state = 2010; this.schema_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2016; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 2015; + this.state = 2011; this.match(PostgreSQLParser.KW_NO); } } - this.state = 2018; + this.state = 2014; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 2019; + this.state = 2015; this.match(PostgreSQLParser.KW_ON); - this.state = 2020; + this.state = 2016; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 2021; + this.state = 2017; this.name(); } break; @@ -4182,21 +4179,21 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2024; + this.state = 2020; this.routine_action(); - this.state = 2028; + this.state = 2024; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2025; + this.state = 2021; this.routine_action(); } } } - this.state = 2030; + this.state = 2026; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } @@ -4221,86 +4218,86 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 38, PostgreSQLParser.RULE_routine_action); let _la: number; try { - this.state = 2072; + this.state = 2068; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2031; + this.state = 2027; this.match(PostgreSQLParser.KW_IMMUTABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2032; + this.state = 2028; this.match(PostgreSQLParser.KW_STABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2033; + this.state = 2029; this.match(PostgreSQLParser.KW_VOLATILE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2035; + this.state = 2031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2034; + this.state = 2030; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 2037; + this.state = 2033; this.match(PostgreSQLParser.KW_LEAKPROOF); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2048; + this.state = 2044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 2039; + this.state = 2035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 2038; + this.state = 2034; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 2041; + this.state = 2037; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 2042; + this.state = 2038; this.match(PostgreSQLParser.KW_INVOKER); } break; case 2: { - this.state = 2044; + this.state = 2040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 2043; + this.state = 2039; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 2046; + this.state = 2042; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 2047; + this.state = 2043; this.match(PostgreSQLParser.KW_DEFINER); } break; @@ -4310,9 +4307,9 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2050; + this.state = 2046; this.match(PostgreSQLParser.KW_PARALLEL); - this.state = 2051; + this.state = 2047; _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -4326,29 +4323,29 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2052; + this.state = 2048; this.match(PostgreSQLParser.KW_COST); - this.state = 2053; + this.state = 2049; this.attr_name(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2054; + this.state = 2050; this.match(PostgreSQLParser.KW_ROWS); - this.state = 2055; + this.state = 2051; this.name(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2056; + this.state = 2052; this.match(PostgreSQLParser.KW_SET); - this.state = 2057; + this.state = 2053; this.name(); - this.state = 2058; + this.state = 2054; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4357,18 +4354,18 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2061; + this.state = 2057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 2059; + this.state = 2055; this.name(); } break; case 2: { - this.state = 2060; + this.state = 2056; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -4378,31 +4375,31 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2063; + this.state = 2059; this.match(PostgreSQLParser.KW_SET); - this.state = 2064; + this.state = 2060; this.name(); - this.state = 2065; + this.state = 2061; this.match(PostgreSQLParser.KW_FROM); - this.state = 2066; + this.state = 2062; this.match(PostgreSQLParser.KW_CURRENT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2068; + this.state = 2064; this.match(PostgreSQLParser.KW_RESET); - this.state = 2069; + this.state = 2065; this.name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2070; + this.state = 2066; this.match(PostgreSQLParser.KW_RESET); - this.state = 2071; + this.state = 2067; this.match(PostgreSQLParser.KW_ALL); } break; @@ -4428,23 +4425,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2074; + this.state = 2070; this.match(PostgreSQLParser.KW_CREATE); - this.state = 2075; + this.state = 2071; this.match(PostgreSQLParser.KW_GROUP); - this.state = 2076; + this.state = 2072; this.groupname(); - this.state = 2078; + this.state = 2074; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 2077; + this.state = 2073; this.opt_with(); } break; } - this.state = 2080; + this.state = 2076; this.optrolelist(); } } @@ -4468,17 +4465,17 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2082; + this.state = 2078; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2083; + this.state = 2079; this.match(PostgreSQLParser.KW_GROUP); - this.state = 2084; + this.state = 2080; this.rolespec(); - this.state = 2085; + this.state = 2081; this.add_drop(); - this.state = 2086; + this.state = 2082; this.match(PostgreSQLParser.KW_USER); - this.state = 2087; + this.state = 2083; this.role_list(); } } @@ -4503,7 +4500,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2089; + this.state = 2085; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -4535,49 +4532,49 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2091; + this.state = 2087; this.match(PostgreSQLParser.KW_CREATE); - this.state = 2092; + this.state = 2088; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 2094; + this.state = 2090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 2093; + this.state = 2089; this.opt_if_not_exists(); } break; } - this.state = 2102; + this.state = 2098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 2097; + this.state = 2093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 2096; + this.state = 2092; this.schema_name_create(); } } - this.state = 2099; + this.state = 2095; this.match(PostgreSQLParser.KW_AUTHORIZATION); - this.state = 2100; + this.state = 2096; this.rolespec(); } break; case 2: { - this.state = 2101; + this.state = 2097; this.schema_name_create(); } break; } - this.state = 2104; + this.state = 2100; this.optschemaeltlist(); } } @@ -4602,14 +4599,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2106; + this.state = 2102; this.colid(); - this.state = 2108; + this.state = 2104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2107; + this.state = 2103; this.attrs(); } } @@ -4637,19 +4634,19 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2113; + this.state = 2109; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 30, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2110; + this.state = 2106; this.schema_stmt(); } } } - this.state = 2115; + this.state = 2111; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 30, this.context); } @@ -4673,48 +4670,48 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Schema_stmtContext(this.context, this.state); this.enterRule(localContext, 52, PostgreSQLParser.RULE_schema_stmt); try { - this.state = 2122; + this.state = 2118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2116; + this.state = 2112; this.createstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2117; + this.state = 2113; this.indexstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2118; + this.state = 2114; this.createseqstmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2119; + this.state = 2115; this.createtrigstmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2120; + this.state = 2116; this.grantstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2121; + this.state = 2117; this.viewstmt(); } break; @@ -4741,14 +4738,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2124; + this.state = 2120; this.match(PostgreSQLParser.KW_SET); - this.state = 2126; + this.state = 2122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 2125; + this.state = 2121; _la = this.tokenStream.LA(1); if(!(_la === 254 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -4760,7 +4757,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 2128; + this.state = 2124; this.set_rest(); } } @@ -4782,37 +4779,37 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Set_restContext(this.context, this.state); this.enterRule(localContext, 56, PostgreSQLParser.RULE_set_rest); try { - this.state = 2138; + this.state = 2134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2130; + this.state = 2126; this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2131; + this.state = 2127; this.transaction_mode_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2132; + this.state = 2128; this.match(PostgreSQLParser.KW_SESSION); - this.state = 2133; + this.state = 2129; this.match(PostgreSQLParser.KW_CHARACTERISTICS); - this.state = 2134; + this.state = 2130; this.match(PostgreSQLParser.KW_AS); - this.state = 2135; + this.state = 2131; this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2136; + this.state = 2132; this.transaction_mode_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2137; + this.state = 2133; this.set_rest_more(); } break; @@ -4839,13 +4836,18 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2142; + this.state = 2138; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.KW_ALL: + { + this.state = 2136; + this.match(PostgreSQLParser.KW_ALL); + } + break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -5244,25 +5246,19 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 2140; + this.state = 2137; this.var_name(); } break; - case PostgreSQLParser.KW_ALL: - { - this.state = 2141; - this.match(PostgreSQLParser.KW_ALL); - } - break; default: throw new antlr.NoViableAltException(this); } - this.state = 2145; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 94) { { - this.state = 2144; + this.state = 2140; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -5274,19 +5270,19 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 2149; + this.state = 2145; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 2147; - this.var_list(); + this.state = 2143; + this.match(PostgreSQLParser.KW_DEFAULT); } break; case 2: { - this.state = 2148; - this.match(PostgreSQLParser.KW_DEFAULT); + this.state = 2144; + this.var_list(); } break; } @@ -5310,113 +5306,113 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Set_rest_moreContext(this.context, this.state); this.enterRule(localContext, 60, PostgreSQLParser.RULE_set_rest_more); try { - this.state = 2178; + this.state = 2174; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2151; - this.generic_set(); + this.state = 2147; + this.match(PostgreSQLParser.KW_TIME); + this.state = 2148; + this.match(PostgreSQLParser.KW_ZONE); + this.state = 2149; + this.zone_value(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2152; - this.var_name(); - this.state = 2153; - this.match(PostgreSQLParser.KW_FROM); - this.state = 2154; - this.match(PostgreSQLParser.KW_CURRENT); + this.state = 2150; + this.match(PostgreSQLParser.KW_CATALOG); + this.state = 2151; + this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2156; - this.match(PostgreSQLParser.KW_TIME); - this.state = 2157; - this.match(PostgreSQLParser.KW_ZONE); - this.state = 2158; - this.zone_value(); + this.state = 2152; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 2153; + this.schema_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2159; - this.match(PostgreSQLParser.KW_CATALOG); - this.state = 2160; - this.sconst(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 2161; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 2162; - this.schema_name(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 2163; + this.state = 2154; this.match(PostgreSQLParser.KW_NAMES); - this.state = 2165; + this.state = 2156; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 2164; + this.state = 2155; this.opt_encoding(); } break; } } break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 2158; + this.match(PostgreSQLParser.KW_ROLE); + this.state = 2159; + this.nonreservedword_or_sconst(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 2160; + this.match(PostgreSQLParser.KW_SESSION); + this.state = 2161; + this.match(PostgreSQLParser.KW_AUTHORIZATION); + this.state = 2162; + this.nonreservedword_or_sconst(); + } + break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2167; - this.match(PostgreSQLParser.KW_ROLE); - this.state = 2168; - this.nonreservedword_or_sconst(); + this.state = 2163; + this.match(PostgreSQLParser.KW_XML); + this.state = 2164; + this.match(PostgreSQLParser.KW_OPTION); + this.state = 2165; + this.document_or_content(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2169; - this.match(PostgreSQLParser.KW_SESSION); - this.state = 2170; - this.match(PostgreSQLParser.KW_AUTHORIZATION); - this.state = 2171; - this.nonreservedword_or_sconst(); + this.state = 2166; + this.match(PostgreSQLParser.KW_TRANSACTION); + this.state = 2167; + this.match(PostgreSQLParser.KW_SNAPSHOT); + this.state = 2168; + this.sconst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2172; - this.match(PostgreSQLParser.KW_XML); - this.state = 2173; - this.match(PostgreSQLParser.KW_OPTION); - this.state = 2174; - this.document_or_content(); + this.state = 2169; + this.var_name(); + this.state = 2170; + this.match(PostgreSQLParser.KW_FROM); + this.state = 2171; + this.match(PostgreSQLParser.KW_CURRENT); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2175; - this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2176; - this.match(PostgreSQLParser.KW_SNAPSHOT); - this.state = 2177; - this.sconst(); + this.state = 2173; + this.generic_set(); } break; } @@ -5442,21 +5438,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2180; + this.state = 2176; this.colid(); - this.state = 2185; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 2181; + this.state = 2177; this.match(PostgreSQLParser.DOT); - this.state = 2182; + this.state = 2178; this.colid(); } } - this.state = 2187; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5483,21 +5479,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2184; this.var_value(); - this.state = 2193; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2189; + this.state = 2185; this.match(PostgreSQLParser.COMMA); - this.state = 2190; + this.state = 2186; this.var_value(); } } - this.state = 2195; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5521,13 +5517,12 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Var_valueContext(this.context, this.state); this.enterRule(localContext, 66, PostgreSQLParser.RULE_var_value); try { - this.state = 2198; + this.state = 2194; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -5951,7 +5946,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2192; this.opt_boolean_or_string(); } break; @@ -5961,7 +5956,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 2197; + this.state = 2193; this.numericonly(); } break; @@ -5988,15 +5983,15 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 68, PostgreSQLParser.RULE_iso_level); let _la: number; try { - this.state = 2205; + this.state = 2201; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 2200; + this.state = 2196; this.match(PostgreSQLParser.KW_READ); - this.state = 2201; + this.state = 2197; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 363)) { this.errorHandler.recoverInline(this); @@ -6010,16 +6005,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2202; + this.state = 2198; this.match(PostgreSQLParser.KW_REPEATABLE); - this.state = 2203; + this.state = 2199; this.match(PostgreSQLParser.KW_READ); } break; case PostgreSQLParser.KW_SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 2204; + this.state = 2200; this.match(PostgreSQLParser.KW_SERIALIZABLE); } break; @@ -6045,34 +6040,33 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_boolean_or_string_columnContext(this.context, this.state); this.enterRule(localContext, 70, PostgreSQLParser.RULE_opt_boolean_or_string_column); try { - this.state = 2211; + this.state = 2207; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 2207; + this.state = 2203; this.match(PostgreSQLParser.KW_TRUE); } break; case PostgreSQLParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 2208; + this.state = 2204; this.match(PostgreSQLParser.KW_FALSE); } break; case PostgreSQLParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 2209; + this.state = 2205; this.match(PostgreSQLParser.KW_ON); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -6493,7 +6487,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 2210; + this.state = 2206; this.nonreservedword_or_sconst_column(); } break; @@ -6519,34 +6513,33 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_boolean_or_stringContext(this.context, this.state); this.enterRule(localContext, 72, PostgreSQLParser.RULE_opt_boolean_or_string); try { - this.state = 2217; + this.state = 2213; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2209; this.match(PostgreSQLParser.KW_TRUE); } break; case PostgreSQLParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 2214; + this.state = 2210; this.match(PostgreSQLParser.KW_FALSE); } break; case PostgreSQLParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 2215; + this.state = 2211; this.match(PostgreSQLParser.KW_ON); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -6967,7 +6960,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 2216; + this.state = 2212; this.nonreservedword_or_sconst(); } break; @@ -6993,36 +6986,36 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Zone_valueContext(this.context, this.state); this.enterRule(localContext, 74, PostgreSQLParser.RULE_zone_value); try { - this.state = 2235; + this.state = 2231; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2215; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2220; + this.state = 2216; this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2221; + this.state = 2217; this.constinterval(); - this.state = 2222; + this.state = 2218; this.sconst(); - this.state = 2224; + this.state = 2220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { - this.state = 2223; + this.state = 2219; this.opt_interval(); } break; @@ -7032,36 +7025,36 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2226; + this.state = 2222; this.constinterval(); - this.state = 2227; + this.state = 2223; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2228; + this.state = 2224; this.iconst(); - this.state = 2229; + this.state = 2225; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 2230; + this.state = 2226; this.sconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2232; + this.state = 2228; this.numericonly(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2233; + this.state = 2229; this.match(PostgreSQLParser.KW_DEFAULT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2234; + this.state = 2230; this.match(PostgreSQLParser.KW_LOCAL); } break; @@ -7085,7 +7078,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opt_encodingContext(this.context, this.state); this.enterRule(localContext, 76, PostgreSQLParser.RULE_opt_encoding); try { - this.state = 2239; + this.state = 2235; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -7094,14 +7087,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2237; + this.state = 2233; this.sconst(); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2238; + this.state = 2234; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -7127,16 +7120,53 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Nonreservedword_or_sconst_columnContext(this.context, this.state); this.enterRule(localContext, 78, PostgreSQLParser.RULE_nonreservedword_or_sconst_column); try { - this.state = 2243; + this.state = 2239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2241; + this.state = 2237; this.nonreservedword_column(); } break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2238; + this.sconst(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext { + let localContext = new Nonreservedword_or_sconstContext(this.context, this.state); + this.enterRule(localContext, 80, PostgreSQLParser.RULE_nonreservedword_or_sconst); + try { + this.state = 2243; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2241; + this.nonreservedword(); + } + break; case 2: this.enterOuterAlt(localContext, 2); { @@ -7160,52 +7190,15 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public nonreservedword_or_sconst(): Nonreservedword_or_sconstContext { - let localContext = new Nonreservedword_or_sconstContext(this.context, this.state); - this.enterRule(localContext, 80, PostgreSQLParser.RULE_nonreservedword_or_sconst); - try { - this.state = 2247; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2245; - this.nonreservedword(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2246; - this.sconst(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public variableresetstmt(): VariableresetstmtContext { let localContext = new VariableresetstmtContext(this.context, this.state); this.enterRule(localContext, 82, PostgreSQLParser.RULE_variableresetstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 2249; + this.state = 2245; this.match(PostgreSQLParser.KW_RESET); - this.state = 2250; + this.state = 2246; this.reset_rest(); } } @@ -7227,43 +7220,43 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Reset_restContext(this.context, this.state); this.enterRule(localContext, 84, PostgreSQLParser.RULE_reset_rest); try { - this.state = 2260; + this.state = 2256; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2252; - this.generic_reset(); + this.state = 2248; + this.match(PostgreSQLParser.KW_TIME); + this.state = 2249; + this.match(PostgreSQLParser.KW_ZONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2253; - this.match(PostgreSQLParser.KW_TIME); - this.state = 2254; - this.match(PostgreSQLParser.KW_ZONE); + this.state = 2250; + this.match(PostgreSQLParser.KW_TRANSACTION); + this.state = 2251; + this.match(PostgreSQLParser.KW_ISOLATION); + this.state = 2252; + this.match(PostgreSQLParser.KW_LEVEL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2255; - this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2256; - this.match(PostgreSQLParser.KW_ISOLATION); - this.state = 2257; - this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2253; + this.match(PostgreSQLParser.KW_SESSION); + this.state = 2254; + this.match(PostgreSQLParser.KW_AUTHORIZATION); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2258; - this.match(PostgreSQLParser.KW_SESSION); - this.state = 2259; - this.match(PostgreSQLParser.KW_AUTHORIZATION); + this.state = 2255; + this.generic_reset(); } break; } @@ -7286,13 +7279,19 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Generic_resetContext(this.context, this.state); this.enterRule(localContext, 86, PostgreSQLParser.RULE_generic_reset); try { - this.state = 2264; + this.state = 2260; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.KW_ALL: + this.enterOuterAlt(localContext, 1); + { + this.state = 2258; + this.match(PostgreSQLParser.KW_ALL); + } + break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -7690,17 +7689,10 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLVARIABLENAME: case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); - { - this.state = 2262; - this.var_name(); - } - break; - case PostgreSQLParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 2263; - this.match(PostgreSQLParser.KW_ALL); + this.state = 2259; + this.var_name(); } break; default: @@ -7725,22 +7717,22 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new SetresetclauseContext(this.context, this.state); this.enterRule(localContext, 88, PostgreSQLParser.RULE_setresetclause); try { - this.state = 2269; + this.state = 2265; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 2266; + this.state = 2262; this.match(PostgreSQLParser.KW_SET); - this.state = 2267; + this.state = 2263; this.set_rest(); } break; case PostgreSQLParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 2268; + this.state = 2264; this.variableresetstmt(); } break; @@ -7766,22 +7758,22 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new FunctionsetresetclauseContext(this.context, this.state); this.enterRule(localContext, 90, PostgreSQLParser.RULE_functionsetresetclause); try { - this.state = 2274; + this.state = 2270; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2267; this.match(PostgreSQLParser.KW_SET); - this.state = 2272; + this.state = 2268; this.set_rest_more(); } break; case PostgreSQLParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 2273; + this.state = 2269; this.variableresetstmt(); } break; @@ -7809,46 +7801,46 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2276; + this.state = 2272; this.match(PostgreSQLParser.KW_SHOW); - this.state = 2286; + this.state = 2282; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 2277; + this.state = 2273; this.var_name(); } break; case 2: { - this.state = 2278; + this.state = 2274; this.match(PostgreSQLParser.KW_TIME); - this.state = 2279; + this.state = 2275; this.match(PostgreSQLParser.KW_ZONE); } break; case 3: { - this.state = 2280; + this.state = 2276; this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 2281; + this.state = 2277; this.match(PostgreSQLParser.KW_ISOLATION); - this.state = 2282; + this.state = 2278; this.match(PostgreSQLParser.KW_LEVEL); } break; case 4: { - this.state = 2283; + this.state = 2279; this.match(PostgreSQLParser.KW_SESSION); - this.state = 2284; + this.state = 2280; this.match(PostgreSQLParser.KW_AUTHORIZATION); } break; case 5: { - this.state = 2285; + this.state = 2281; this.match(PostgreSQLParser.KW_ALL); } break; @@ -7875,13 +7867,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2288; + this.state = 2284; this.match(PostgreSQLParser.KW_SET); - this.state = 2289; + this.state = 2285; this.match(PostgreSQLParser.KW_CONSTRAINTS); - this.state = 2290; + this.state = 2286; this.constraints_set_list(); - this.state = 2291; + this.state = 2287; this.constraints_set_mode(); } } @@ -7903,20 +7895,19 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Constraints_set_listContext(this.context, this.state); this.enterRule(localContext, 96, PostgreSQLParser.RULE_constraints_set_list); try { - this.state = 2295; + this.state = 2291; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2289; this.match(PostgreSQLParser.KW_ALL); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -8316,7 +8307,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 2294; + this.state = 2290; this.qualified_name_list(); } break; @@ -8345,7 +8336,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2293; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -8376,7 +8367,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2299; + this.state = 2295; this.match(PostgreSQLParser.KW_CHECKPOINT); } } @@ -8401,9 +8392,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2301; + this.state = 2297; this.match(PostgreSQLParser.KW_DISCARD); - this.state = 2302; + this.state = 2298; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 288 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -8433,29 +8424,29 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 104, PostgreSQLParser.RULE_altertablestmt); let _la: number; try { - this.state = 2437; + this.state = 2433; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2300; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2305; + this.state = 2301; this.match(PostgreSQLParser.KW_TABLE); - this.state = 2307; + this.state = 2303; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: { - this.state = 2306; + this.state = 2302; this.opt_if_exists(); } break; } - this.state = 2309; + this.state = 2305; this.relation_expr(); - this.state = 2312; + this.state = 2308; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOT: @@ -8476,14 +8467,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SET: case PostgreSQLParser.KW_VALIDATE: { - this.state = 2310; + this.state = 2306; this.alter_table_cmds(); } break; case PostgreSQLParser.KW_ATTACH: case PostgreSQLParser.KW_DETACH: { - this.state = 2311; + this.state = 2307; this.partition_cmd(); } break; @@ -8495,44 +8486,44 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2314; + this.state = 2310; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2315; + this.state = 2311; this.match(PostgreSQLParser.KW_TABLE); - this.state = 2316; + this.state = 2312; this.match(PostgreSQLParser.KW_ALL); - this.state = 2317; + this.state = 2313; this.match(PostgreSQLParser.KW_IN); - this.state = 2318; + this.state = 2314; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 2319; + this.state = 2315; this.tablespace_name(); - this.state = 2323; + this.state = 2319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 2320; + this.state = 2316; this.match(PostgreSQLParser.KW_OWNED); - this.state = 2321; + this.state = 2317; this.match(PostgreSQLParser.KW_BY); - this.state = 2322; + this.state = 2318; this.role_list(); } } - this.state = 2325; + this.state = 2321; this.match(PostgreSQLParser.KW_SET); - this.state = 2326; + this.state = 2322; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 2327; + this.state = 2323; this.tablespace_name_create(); - this.state = 2329; + this.state = 2325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 2328; + this.state = 2324; this.opt_nowait(); } break; @@ -8542,44 +8533,44 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2331; + this.state = 2327; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2332; + this.state = 2328; this.match(PostgreSQLParser.KW_TABLE); - this.state = 2334; + this.state = 2330; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 2333; + this.state = 2329; this.opt_if_exists(); } break; } - this.state = 2336; + this.state = 2332; this.table_name(); - this.state = 2337; + this.state = 2333; this.match(PostgreSQLParser.KW_ATTACH); - this.state = 2338; + this.state = 2334; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 2339; + this.state = 2335; this.qualified_name(); - this.state = 2344; + this.state = 2340; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: { - this.state = 2340; + this.state = 2336; this.match(PostgreSQLParser.KW_FOR); - this.state = 2341; + this.state = 2337; this.match(PostgreSQLParser.KW_VALUES); - this.state = 2342; + this.state = 2338; this.partition_bound_spec(); } break; case PostgreSQLParser.KW_DEFAULT: { - this.state = 2343; + this.state = 2339; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -8591,34 +8582,34 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2346; + this.state = 2342; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2347; + this.state = 2343; this.match(PostgreSQLParser.KW_TABLE); - this.state = 2349; + this.state = 2345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: { - this.state = 2348; + this.state = 2344; this.opt_if_exists(); } break; } - this.state = 2351; + this.state = 2347; this.table_name(); - this.state = 2352; + this.state = 2348; this.match(PostgreSQLParser.KW_DETACH); - this.state = 2353; + this.state = 2349; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 2354; + this.state = 2350; this.qualified_name(); - this.state = 2356; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109 || _la === 532) { { - this.state = 2355; + this.state = 2351; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 532)) { this.errorHandler.recoverInline(this); @@ -8635,23 +8626,23 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2358; + this.state = 2354; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2359; + this.state = 2355; this.match(PostgreSQLParser.KW_INDEX); - this.state = 2361; + this.state = 2357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 2360; + this.state = 2356; this.opt_if_exists(); } break; } - this.state = 2363; + this.state = 2359; this.qualified_name(); - this.state = 2366; + this.state = 2362; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOT: @@ -8672,13 +8663,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SET: case PostgreSQLParser.KW_VALIDATE: { - this.state = 2364; + this.state = 2360; this.alter_table_cmds(); } break; case PostgreSQLParser.KW_ATTACH: { - this.state = 2365; + this.state = 2361; this.index_partition_cmd(); } break; @@ -8690,44 +8681,44 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2368; + this.state = 2364; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2369; + this.state = 2365; this.match(PostgreSQLParser.KW_INDEX); - this.state = 2370; + this.state = 2366; this.match(PostgreSQLParser.KW_ALL); - this.state = 2371; + this.state = 2367; this.match(PostgreSQLParser.KW_IN); - this.state = 2372; + this.state = 2368; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 2373; + this.state = 2369; this.tablespace_name(); - this.state = 2377; + this.state = 2373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 2374; + this.state = 2370; this.match(PostgreSQLParser.KW_OWNED); - this.state = 2375; + this.state = 2371; this.match(PostgreSQLParser.KW_BY); - this.state = 2376; + this.state = 2372; this.role_list(); } } - this.state = 2379; + this.state = 2375; this.match(PostgreSQLParser.KW_SET); - this.state = 2380; + this.state = 2376; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 2381; + this.state = 2377; this.tablespace_name_create(); - this.state = 2383; + this.state = 2379; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 2382; + this.state = 2378; this.opt_nowait(); } break; @@ -8737,117 +8728,117 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2385; + this.state = 2381; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2386; + this.state = 2382; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 2388; + this.state = 2384; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { case 1: { - this.state = 2387; + this.state = 2383; this.opt_if_exists(); } break; } - this.state = 2390; + this.state = 2386; this.qualified_name(); - this.state = 2391; + this.state = 2387; this.alter_table_cmds(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2393; + this.state = 2389; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2394; + this.state = 2390; this.match(PostgreSQLParser.KW_VIEW); - this.state = 2396; + this.state = 2392; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 2395; + this.state = 2391; this.opt_if_exists(); } break; } - this.state = 2398; + this.state = 2394; this.view_name(); - this.state = 2399; + this.state = 2395; this.alter_table_cmds(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2401; + this.state = 2397; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2402; + this.state = 2398; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 2403; + this.state = 2399; this.match(PostgreSQLParser.KW_VIEW); - this.state = 2405; + this.state = 2401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 2404; + this.state = 2400; this.opt_if_exists(); } break; } - this.state = 2407; + this.state = 2403; this.view_name(); - this.state = 2408; + this.state = 2404; this.alter_table_cmds(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2410; + this.state = 2406; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2411; + this.state = 2407; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 2412; + this.state = 2408; this.match(PostgreSQLParser.KW_VIEW); - this.state = 2413; + this.state = 2409; this.match(PostgreSQLParser.KW_ALL); - this.state = 2414; + this.state = 2410; this.match(PostgreSQLParser.KW_IN); - this.state = 2415; + this.state = 2411; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 2416; + this.state = 2412; this.tablespace_name(); - this.state = 2420; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 2417; + this.state = 2413; this.match(PostgreSQLParser.KW_OWNED); - this.state = 2418; + this.state = 2414; this.match(PostgreSQLParser.KW_BY); - this.state = 2419; + this.state = 2415; this.role_list(); } } - this.state = 2422; + this.state = 2418; this.match(PostgreSQLParser.KW_SET); - this.state = 2423; + this.state = 2419; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 2424; + this.state = 2420; this.tablespace_name_create(); - this.state = 2426; + this.state = 2422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 2425; + this.state = 2421; this.opt_nowait(); } break; @@ -8857,25 +8848,25 @@ export class PostgreSQLParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2428; + this.state = 2424; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2429; + this.state = 2425; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 2430; + this.state = 2426; this.match(PostgreSQLParser.KW_TABLE); - this.state = 2432; + this.state = 2428; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 2431; + this.state = 2427; this.opt_if_exists(); } break; } - this.state = 2434; + this.state = 2430; this.relation_expr(); - this.state = 2435; + this.state = 2431; this.alter_table_cmds(); } break; @@ -8902,21 +8893,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2439; + this.state = 2435; this.alter_table_cmd(); - this.state = 2444; + this.state = 2440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2440; + this.state = 2436; this.match(PostgreSQLParser.COMMA); - this.state = 2441; + this.state = 2437; this.alter_table_cmd(); } } - this.state = 2446; + this.state = 2442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8940,37 +8931,37 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Partition_bound_specContext(this.context, this.state); this.enterRule(localContext, 108, PostgreSQLParser.RULE_partition_bound_spec); try { - this.state = 2456; + this.state = 2452; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 2447; + this.state = 2443; this.match(PostgreSQLParser.KW_IN); - this.state = 2448; + this.state = 2444; this.opt_type_modifiers(); } break; case PostgreSQLParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2449; + this.state = 2445; this.match(PostgreSQLParser.KW_FROM); - this.state = 2450; + this.state = 2446; this.partition_bound_cluase(); - this.state = 2451; + this.state = 2447; this.match(PostgreSQLParser.KW_TO); - this.state = 2452; + this.state = 2448; this.partition_bound_cluase(); } break; case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 2454; + this.state = 2450; this.match(PostgreSQLParser.KW_WITH); - this.state = 2455; + this.state = 2451; this.partition_with_cluase(); } break; @@ -8999,27 +8990,27 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2458; + this.state = 2454; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2459; + this.state = 2455; this.partition_bound_choose(); - this.state = 2464; + this.state = 2460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2460; + this.state = 2456; this.match(PostgreSQLParser.COMMA); - this.state = 2461; + this.state = 2457; this.partition_bound_choose(); } } - this.state = 2466; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2467; + this.state = 2463; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -9041,27 +9032,27 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Partition_bound_chooseContext(this.context, this.state); this.enterRule(localContext, 112, PostgreSQLParser.RULE_partition_bound_choose); try { - this.state = 2472; + this.state = 2468; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 2469; + this.state = 2465; this.opt_type_modifiers(); } break; case PostgreSQLParser.KW_MINVALUE: this.enterOuterAlt(localContext, 2); { - this.state = 2470; + this.state = 2466; this.match(PostgreSQLParser.KW_MINVALUE); } break; case PostgreSQLParser.KW_MAXVALUE: this.enterOuterAlt(localContext, 3); { - this.state = 2471; + this.state = 2467; this.match(PostgreSQLParser.KW_MAXVALUE); } break; @@ -9089,19 +9080,19 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2474; + this.state = 2470; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2475; + this.state = 2471; this.match(PostgreSQLParser.KW_MODULUS); - this.state = 2476; + this.state = 2472; this.numericonly(); - this.state = 2477; + this.state = 2473; this.match(PostgreSQLParser.COMMA); - this.state = 2478; + this.state = 2474; this.match(PostgreSQLParser.KW_REMAINDER); - this.state = 2479; + this.state = 2475; this.numericonly(); - this.state = 2480; + this.state = 2476; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -9123,30 +9114,30 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Partition_cmdContext(this.context, this.state); this.enterRule(localContext, 116, PostgreSQLParser.RULE_partition_cmd); try { - this.state = 2490; + this.state = 2486; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2478; this.match(PostgreSQLParser.KW_ATTACH); - this.state = 2483; + this.state = 2479; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 2484; + this.state = 2480; this.qualified_name(); - this.state = 2485; + this.state = 2481; this.partitionboundspec(); } break; case PostgreSQLParser.KW_DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 2487; + this.state = 2483; this.match(PostgreSQLParser.KW_DETACH); - this.state = 2488; + this.state = 2484; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 2489; + this.state = 2485; this.qualified_name(); } break; @@ -9174,11 +9165,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2492; + this.state = 2488; this.match(PostgreSQLParser.KW_ATTACH); - this.state = 2493; + this.state = 2489; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 2494; + this.state = 2490; this.qualified_name(); } } @@ -9201,871 +9192,1170 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 120, PostgreSQLParser.RULE_alter_table_cmd); let _la: number; try { - this.state = 2758; + this.state = 2709; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2496; + this.state = 2492; this.match(PostgreSQLParser.KW_ADD); - this.state = 2498; + this.state = 2495; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 45) { { - this.state = 2497; - this.opt_column(); + this.state = 2493; + this.match(PostgreSQLParser.KW_CONSTRAINT); + this.state = 2494; + this.name(); } - break; } - this.state = 2501; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { - case 1: - { - this.state = 2500; - this.opt_if_not_exists(); - } - break; - } - this.state = 2503; - this.columnDefCluase(); + + this.state = 2497; + this.constraintelem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2504; + this.state = 2498; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2506; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { - case 1: - { - this.state = 2505; - this.opt_column(); - } - break; - } - this.state = 2508; - this.column_name(); - this.state = 2509; - this.alter_column_default(); + this.state = 2499; + this.match(PostgreSQLParser.KW_CONSTRAINT); + this.state = 2500; + this.name(); + this.state = 2501; + this.constraintattributespec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2511; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2513; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { - case 1: - { - this.state = 2512; - this.opt_column(); - } - break; - } - this.state = 2515; - this.column_name(); - this.state = 2516; - this.match(PostgreSQLParser.KW_DROP); - this.state = 2517; - this.match(PostgreSQLParser.KW_NOT); - this.state = 2518; - this.match(PostgreSQLParser.KW_NULL); + this.state = 2503; + this.match(PostgreSQLParser.KW_VALIDATE); + this.state = 2504; + this.match(PostgreSQLParser.KW_CONSTRAINT); + this.state = 2505; + this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2520; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2522; + this.state = 2506; + this.match(PostgreSQLParser.KW_DROP); + this.state = 2507; + this.match(PostgreSQLParser.KW_CONSTRAINT); + this.state = 2509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: { - this.state = 2521; - this.opt_column(); + this.state = 2508; + this.opt_if_exists(); + } + break; + } + this.state = 2511; + this.name(); + this.state = 2513; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { + case 1: + { + this.state = 2512; + this.opt_drop_behavior(); } break; } - this.state = 2524; - this.column_name(); - this.state = 2525; - this.match(PostgreSQLParser.KW_SET); - this.state = 2526; - this.match(PostgreSQLParser.KW_NOT); - this.state = 2527; - this.match(PostgreSQLParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2529; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2531; + this.state = 2515; + this.match(PostgreSQLParser.KW_SET); + this.state = 2516; + this.match(PostgreSQLParser.KW_WITHOUT); + this.state = 2517; + this.match(PostgreSQLParser.KW_OIDS); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 2518; + this.match(PostgreSQLParser.KW_CLUSTER); + this.state = 2519; + this.match(PostgreSQLParser.KW_ON); + this.state = 2520; + this.name(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 2521; + this.match(PostgreSQLParser.KW_SET); + this.state = 2522; + this.match(PostgreSQLParser.KW_WITHOUT); + this.state = 2523; + this.match(PostgreSQLParser.KW_CLUSTER); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 2524; + this.match(PostgreSQLParser.KW_SET); + this.state = 2525; + _la = this.tokenStream.LA(1); + if(!(_la === 367 || _la === 439)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { + this.state = 2526; + this.match(PostgreSQLParser.KW_ENABLE); + this.state = 2528; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { + _la = this.tokenStream.LA(1); + if (_la === 139 || _la === 312) { + { + this.state = 2527; + _la = this.tokenStream.LA(1); + if(!(_la === 139 || _la === 312)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 2530; + this.match(PostgreSQLParser.KW_TRIGGER); + } + break; + case 10: + this.enterOuterAlt(localContext, 10); + { + this.state = 2531; + this.match(PostgreSQLParser.KW_DISABLE); + this.state = 2532; + this.match(PostgreSQLParser.KW_TRIGGER); + this.state = 2536; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.KW_ALL: + { + this.state = 2533; + this.match(PostgreSQLParser.KW_ALL); + } + break; + case PostgreSQLParser.KW_USER: + { + this.state = 2534; + this.match(PostgreSQLParser.KW_USER); + } + break; + case PostgreSQLParser.KW_AND: + case PostgreSQLParser.KW_ARRAY: + case PostgreSQLParser.KW_COLLATE: + case PostgreSQLParser.KW_CONSTRAINT: + case PostgreSQLParser.KW_DEFAULT: + case PostgreSQLParser.KW_DO: + case PostgreSQLParser.KW_FETCH: + case PostgreSQLParser.KW_TABLE: + case PostgreSQLParser.KW_IS: + case PostgreSQLParser.KW_OUTER: + case PostgreSQLParser.KW_OVER: + case PostgreSQLParser.KW_ABORT: + case PostgreSQLParser.KW_ABSOLUTE: + case PostgreSQLParser.KW_ACCESS: + case PostgreSQLParser.KW_ACTION: + case PostgreSQLParser.KW_ADD: + case PostgreSQLParser.KW_ADMIN: + case PostgreSQLParser.KW_AFTER: + case PostgreSQLParser.KW_AGGREGATE: + case PostgreSQLParser.KW_ALSO: + case PostgreSQLParser.KW_ALTER: + case PostgreSQLParser.KW_ALWAYS: + case PostgreSQLParser.KW_ASSERTION: + case PostgreSQLParser.KW_ASSIGNMENT: + case PostgreSQLParser.KW_AT: + case PostgreSQLParser.KW_ATTRIBUTE: + case PostgreSQLParser.KW_BACKWARD: + case PostgreSQLParser.KW_BEFORE: + case PostgreSQLParser.KW_BEGIN: + case PostgreSQLParser.KW_BY: + case PostgreSQLParser.KW_CACHE: + case PostgreSQLParser.KW_CALLED: + case PostgreSQLParser.KW_CASCADE: + case PostgreSQLParser.KW_CASCADED: + case PostgreSQLParser.KW_CATALOG: + case PostgreSQLParser.KW_CHAIN: + case PostgreSQLParser.KW_CHARACTERISTICS: + case PostgreSQLParser.KW_CHECKPOINT: + case PostgreSQLParser.KW_CLASS: + case PostgreSQLParser.KW_CLOSE: + case PostgreSQLParser.KW_CLUSTER: + case PostgreSQLParser.KW_COMMENT: + case PostgreSQLParser.KW_COMMENTS: + case PostgreSQLParser.KW_COMMIT: + case PostgreSQLParser.KW_COMMITTED: + case PostgreSQLParser.KW_CONFIGURATION: + case PostgreSQLParser.KW_CONNECTION: + case PostgreSQLParser.KW_CONSTRAINTS: + case PostgreSQLParser.KW_CONTENT: + case PostgreSQLParser.KW_CONTINUE: + case PostgreSQLParser.KW_CONVERSION: + case PostgreSQLParser.KW_COPY: + case PostgreSQLParser.KW_COST: + case PostgreSQLParser.KW_CSV: + case PostgreSQLParser.KW_CURSOR: + case PostgreSQLParser.KW_CYCLE: + case PostgreSQLParser.KW_DATA: + case PostgreSQLParser.KW_DATABASE: + case PostgreSQLParser.KW_DAY: + case PostgreSQLParser.KW_DEALLOCATE: + case PostgreSQLParser.KW_DECLARE: + case PostgreSQLParser.KW_DEFAULTS: + case PostgreSQLParser.KW_DEFERRED: + case PostgreSQLParser.KW_DEFINER: + case PostgreSQLParser.KW_DELETE: + case PostgreSQLParser.KW_DELIMITER: + case PostgreSQLParser.KW_DELIMITERS: + case PostgreSQLParser.KW_DICTIONARY: + case PostgreSQLParser.KW_DISABLE: + case PostgreSQLParser.KW_DISCARD: + case PostgreSQLParser.KW_DOCUMENT: + case PostgreSQLParser.KW_DOMAIN: + case PostgreSQLParser.KW_DOUBLE: + case PostgreSQLParser.KW_DROP: + case PostgreSQLParser.KW_EACH: + case PostgreSQLParser.KW_ENABLE: + case PostgreSQLParser.KW_ENCODING: + case PostgreSQLParser.KW_ENCRYPTED: + case PostgreSQLParser.KW_ENUM: + case PostgreSQLParser.KW_ESCAPE: + case PostgreSQLParser.KW_EVENT: + case PostgreSQLParser.KW_EXCLUDE: + case PostgreSQLParser.KW_EXCLUDING: + case PostgreSQLParser.KW_EXCLUSIVE: + case PostgreSQLParser.KW_EXECUTE: + case PostgreSQLParser.KW_EXPLAIN: + case PostgreSQLParser.KW_EXTENSION: + case PostgreSQLParser.KW_EXTERNAL: + case PostgreSQLParser.KW_FAMILY: + case PostgreSQLParser.KW_FIRST: + case PostgreSQLParser.KW_FOLLOWING: + case PostgreSQLParser.KW_FORCE: + case PostgreSQLParser.KW_FORWARD: + case PostgreSQLParser.KW_FUNCTION: + case PostgreSQLParser.KW_FUNCTIONS: + case PostgreSQLParser.KW_GLOBAL: + case PostgreSQLParser.KW_GRANTED: + case PostgreSQLParser.KW_HANDLER: + case PostgreSQLParser.KW_HEADER: + case PostgreSQLParser.KW_HOLD: + case PostgreSQLParser.KW_HOUR: + case PostgreSQLParser.KW_IDENTITY: + case PostgreSQLParser.KW_IF: + case PostgreSQLParser.KW_IMMEDIATE: + case PostgreSQLParser.KW_IMMUTABLE: + case PostgreSQLParser.KW_IMPLICIT: + case PostgreSQLParser.KW_INCLUDING: + case PostgreSQLParser.KW_INCREMENT: + case PostgreSQLParser.KW_INDEX: + case PostgreSQLParser.KW_INDEXES: + case PostgreSQLParser.KW_INHERIT: + case PostgreSQLParser.KW_INHERITS: + case PostgreSQLParser.KW_INLINE: + case PostgreSQLParser.KW_INSENSITIVE: + case PostgreSQLParser.KW_INSERT: + case PostgreSQLParser.KW_INSTEAD: + case PostgreSQLParser.KW_INVOKER: + case PostgreSQLParser.KW_ISOLATION: + case PostgreSQLParser.KW_KEY: + case PostgreSQLParser.KW_LABEL: + case PostgreSQLParser.KW_LANGUAGE: + case PostgreSQLParser.KW_LARGE: + case PostgreSQLParser.KW_LAST: + case PostgreSQLParser.KW_LEAKPROOF: + case PostgreSQLParser.KW_LEVEL: + case PostgreSQLParser.KW_LISTEN: + case PostgreSQLParser.KW_LOAD: + case PostgreSQLParser.KW_LOCAL: + case PostgreSQLParser.KW_LOCATION: + case PostgreSQLParser.KW_LOCK: + case PostgreSQLParser.KW_MAPPING: + case PostgreSQLParser.KW_MATCH: + case PostgreSQLParser.KW_MATERIALIZED: + case PostgreSQLParser.KW_MAXVALUE: + case PostgreSQLParser.KW_MINUTE: + case PostgreSQLParser.KW_MINVALUE: + case PostgreSQLParser.KW_MODE: + case PostgreSQLParser.KW_MONTH: + case PostgreSQLParser.KW_MOVE: + case PostgreSQLParser.KW_NAME: + case PostgreSQLParser.KW_NAMES: + case PostgreSQLParser.KW_NEXT: + case PostgreSQLParser.KW_NO: + case PostgreSQLParser.KW_NOTHING: + case PostgreSQLParser.KW_NOTIFY: + case PostgreSQLParser.KW_NOWAIT: + case PostgreSQLParser.KW_NULLS: + case PostgreSQLParser.KW_OBJECT: + case PostgreSQLParser.KW_OF: + case PostgreSQLParser.KW_OFF: + case PostgreSQLParser.KW_OIDS: + case PostgreSQLParser.KW_OPERATOR: + case PostgreSQLParser.KW_OPTION: + case PostgreSQLParser.KW_OPTIONS: + case PostgreSQLParser.KW_OWNED: + case PostgreSQLParser.KW_OWNER: + case PostgreSQLParser.KW_PARSER: + case PostgreSQLParser.KW_PARTIAL: + case PostgreSQLParser.KW_PARTITION: + case PostgreSQLParser.KW_PASSING: + case PostgreSQLParser.KW_PASSWORD: + case PostgreSQLParser.KW_PLANS: + case PostgreSQLParser.KW_PRECEDING: + case PostgreSQLParser.KW_PREPARE: + case PostgreSQLParser.KW_PREPARED: + case PostgreSQLParser.KW_PRESERVE: + case PostgreSQLParser.KW_PRIOR: + case PostgreSQLParser.KW_PRIVILEGES: + case PostgreSQLParser.KW_PROCEDURAL: + case PostgreSQLParser.KW_PROCEDURE: + case PostgreSQLParser.KW_PROGRAM: + case PostgreSQLParser.KW_QUOTE: + case PostgreSQLParser.KW_RANGE: + case PostgreSQLParser.KW_READ: + case PostgreSQLParser.KW_REASSIGN: + case PostgreSQLParser.KW_RECHECK: + case PostgreSQLParser.KW_RECURSIVE: + case PostgreSQLParser.KW_REF: + case PostgreSQLParser.KW_REFRESH: + case PostgreSQLParser.KW_REINDEX: + case PostgreSQLParser.KW_RELATIVE: + case PostgreSQLParser.KW_RELEASE: + case PostgreSQLParser.KW_RENAME: + case PostgreSQLParser.KW_REPEATABLE: + case PostgreSQLParser.KW_REPLACE: + case PostgreSQLParser.KW_REPLICA: + case PostgreSQLParser.KW_RESET: + case PostgreSQLParser.KW_RESTART: + case PostgreSQLParser.KW_RESTRICT: + case PostgreSQLParser.KW_RETURNS: + case PostgreSQLParser.KW_REVOKE: + case PostgreSQLParser.KW_ROLE: + case PostgreSQLParser.KW_ROLLBACK: + case PostgreSQLParser.KW_ROWS: + case PostgreSQLParser.KW_RULE: + case PostgreSQLParser.KW_SAVEPOINT: + case PostgreSQLParser.KW_SCHEMA: + case PostgreSQLParser.KW_SCROLL: + case PostgreSQLParser.KW_SEARCH: + case PostgreSQLParser.KW_SECOND: + case PostgreSQLParser.KW_SECURITY: + case PostgreSQLParser.KW_SEQUENCE: + case PostgreSQLParser.KW_SEQUENCES: + case PostgreSQLParser.KW_SERIALIZABLE: + case PostgreSQLParser.KW_SERVER: + case PostgreSQLParser.KW_SESSION: + case PostgreSQLParser.KW_SET: + case PostgreSQLParser.KW_SHARE: + case PostgreSQLParser.KW_SHOW: + case PostgreSQLParser.KW_SIMPLE: + case PostgreSQLParser.KW_SNAPSHOT: + case PostgreSQLParser.KW_STABLE: + case PostgreSQLParser.KW_STANDALONE: + case PostgreSQLParser.KW_START: + case PostgreSQLParser.KW_STATEMENT: + case PostgreSQLParser.KW_STATISTICS: + case PostgreSQLParser.KW_STDIN: + case PostgreSQLParser.KW_STDOUT: + case PostgreSQLParser.KW_STORAGE: + case PostgreSQLParser.KW_STRICT: + case PostgreSQLParser.KW_STRIP: + case PostgreSQLParser.KW_SYSID: + case PostgreSQLParser.KW_SYSTEM: + case PostgreSQLParser.KW_TABLES: + case PostgreSQLParser.KW_TABLESPACE: + case PostgreSQLParser.KW_TEMP: + case PostgreSQLParser.KW_TEMPLATE: + case PostgreSQLParser.KW_TEMPORARY: + case PostgreSQLParser.KW_TEXT: + case PostgreSQLParser.KW_TRANSACTION: + case PostgreSQLParser.KW_TRIGGER: + case PostgreSQLParser.KW_TRUNCATE: + case PostgreSQLParser.KW_TRUSTED: + case PostgreSQLParser.KW_TYPE: + case PostgreSQLParser.KW_TYPES: + case PostgreSQLParser.KW_UNBOUNDED: + case PostgreSQLParser.KW_UNCOMMITTED: + case PostgreSQLParser.KW_UNENCRYPTED: + case PostgreSQLParser.KW_UNKNOWN: + case PostgreSQLParser.KW_UNLISTEN: + case PostgreSQLParser.KW_UNLOGGED: + case PostgreSQLParser.KW_UNTIL: + case PostgreSQLParser.KW_UPDATE: + case PostgreSQLParser.KW_VACUUM: + case PostgreSQLParser.KW_VALID: + case PostgreSQLParser.KW_VALIDATE: + case PostgreSQLParser.KW_VALIDATOR: + case PostgreSQLParser.KW_VARYING: + case PostgreSQLParser.KW_VERSION: + case PostgreSQLParser.KW_VIEW: + case PostgreSQLParser.KW_VOLATILE: + case PostgreSQLParser.KW_WHITESPACE: + case PostgreSQLParser.KW_WITHOUT: + case PostgreSQLParser.KW_WORK: + case PostgreSQLParser.KW_WRAPPER: + case PostgreSQLParser.KW_WRITE: + case PostgreSQLParser.KW_XML: + case PostgreSQLParser.KW_YEAR: + case PostgreSQLParser.KW_YES: + case PostgreSQLParser.KW_ZONE: + case PostgreSQLParser.KW_BETWEEN: + case PostgreSQLParser.KW_BIGINT: + case PostgreSQLParser.KW_BIT: + case PostgreSQLParser.KW_BOOLEAN: + case PostgreSQLParser.KW_CHAR: + case PostgreSQLParser.KW_CHARACTER: + case PostgreSQLParser.KW_COALESCE: + case PostgreSQLParser.KW_DEC: + case PostgreSQLParser.KW_DECIMAL: + case PostgreSQLParser.KW_EXISTS: + case PostgreSQLParser.KW_EXTRACT: + case PostgreSQLParser.KW_FLOAT: + case PostgreSQLParser.KW_GREATEST: + case PostgreSQLParser.KW_INOUT: + case PostgreSQLParser.KW_INT: + case PostgreSQLParser.KW_INTEGER: + case PostgreSQLParser.KW_INTERVAL: + case PostgreSQLParser.KW_LEAST: + case PostgreSQLParser.KW_NATIONAL: + case PostgreSQLParser.KW_NCHAR: + case PostgreSQLParser.KW_NONE: + case PostgreSQLParser.KW_NULLIF: + case PostgreSQLParser.KW_NUMERIC: + case PostgreSQLParser.KW_OVERLAY: + case PostgreSQLParser.KW_POSITION: + case PostgreSQLParser.KW_PRECISION: + case PostgreSQLParser.KW_REAL: + case PostgreSQLParser.KW_ROW: + case PostgreSQLParser.KW_SETOF: + case PostgreSQLParser.KW_SMALLINT: + case PostgreSQLParser.KW_SUBSTRING: + case PostgreSQLParser.KW_TIME: + case PostgreSQLParser.KW_TIMESTAMP: + case PostgreSQLParser.KW_TREAT: + case PostgreSQLParser.KW_TRIM: + case PostgreSQLParser.KW_VALUES: + case PostgreSQLParser.KW_VARCHAR: + case PostgreSQLParser.KW_XMLATTRIBUTES: + case PostgreSQLParser.KW_XMLCONCAT: + case PostgreSQLParser.KW_XMLELEMENT: + case PostgreSQLParser.KW_XMLEXISTS: + case PostgreSQLParser.KW_XMLFOREST: + case PostgreSQLParser.KW_XMLPARSE: + case PostgreSQLParser.KW_XMLPI: + case PostgreSQLParser.KW_XMLROOT: + case PostgreSQLParser.KW_XMLSERIALIZE: + case PostgreSQLParser.KW_CALL: + case PostgreSQLParser.KW_CURRENT: + case PostgreSQLParser.KW_ATTACH: + case PostgreSQLParser.KW_DETACH: + case PostgreSQLParser.KW_EXPRESSION: + case PostgreSQLParser.KW_GENERATED: + case PostgreSQLParser.KW_LOGGED: + case PostgreSQLParser.KW_STORED: + case PostgreSQLParser.KW_INCLUDE: + case PostgreSQLParser.KW_ROUTINE: + case PostgreSQLParser.KW_TRANSFORM: + case PostgreSQLParser.KW_IMPORT: + case PostgreSQLParser.KW_POLICY: + case PostgreSQLParser.KW_METHOD: + case PostgreSQLParser.KW_REFERENCING: + case PostgreSQLParser.KW_NEW: + case PostgreSQLParser.KW_OLD: + case PostgreSQLParser.KW_VALUE: + case PostgreSQLParser.KW_SUBSCRIPTION: + case PostgreSQLParser.KW_PUBLICATION: + case PostgreSQLParser.KW_OUT: + case PostgreSQLParser.KW_ROUTINES: + case PostgreSQLParser.KW_SCHEMAS: + case PostgreSQLParser.KW_PROCEDURES: + case PostgreSQLParser.KW_INPUT: + case PostgreSQLParser.KW_SUPPORT: + case PostgreSQLParser.KW_PARALLEL: + case PostgreSQLParser.KW_SQL: + case PostgreSQLParser.KW_DEPENDS: + case PostgreSQLParser.KW_OVERRIDING: + case PostgreSQLParser.KW_CONFLICT: + case PostgreSQLParser.KW_SKIP: + case PostgreSQLParser.KW_LOCKED: + case PostgreSQLParser.KW_TIES: + case PostgreSQLParser.KW_ROLLUP: + case PostgreSQLParser.KW_CUBE: + case PostgreSQLParser.KW_GROUPING: + case PostgreSQLParser.KW_SETS: + case PostgreSQLParser.KW_ORDINALITY: + case PostgreSQLParser.KW_XMLTABLE: + case PostgreSQLParser.KW_COLUMNS: + case PostgreSQLParser.KW_XMLNAMESPACES: + case PostgreSQLParser.KW_ROWTYPE: + case PostgreSQLParser.KW_NORMALIZED: + case PostgreSQLParser.KW_WITHIN: + case PostgreSQLParser.KW_FILTER: + case PostgreSQLParser.KW_GROUPS: + case PostgreSQLParser.KW_OTHERS: + case PostgreSQLParser.KW_NFC: + case PostgreSQLParser.KW_NFD: + case PostgreSQLParser.KW_NFKC: + case PostgreSQLParser.KW_NFKD: + case PostgreSQLParser.KW_UESCAPE: + case PostgreSQLParser.KW_VIEWS: + case PostgreSQLParser.KW_NORMALIZE: + case PostgreSQLParser.KW_DUMP: + case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: + case PostgreSQLParser.KW_VARIABLE_CONFLICT: + case PostgreSQLParser.KW_ERROR: + case PostgreSQLParser.KW_USE_VARIABLE: + case PostgreSQLParser.KW_USE_COLUMN: + case PostgreSQLParser.KW_ALIAS: + case PostgreSQLParser.KW_CONSTANT: + case PostgreSQLParser.KW_PERFORM: + case PostgreSQLParser.KW_GET: + case PostgreSQLParser.KW_DIAGNOSTICS: + case PostgreSQLParser.KW_STACKED: + case PostgreSQLParser.KW_ELSIF: + case PostgreSQLParser.KW_REVERSE: + case PostgreSQLParser.KW_SLICE: + case PostgreSQLParser.KW_EXIT: + case PostgreSQLParser.KW_RETURN: + case PostgreSQLParser.KW_QUERY: + case PostgreSQLParser.KW_RAISE: + case PostgreSQLParser.KW_SQLSTATE: + case PostgreSQLParser.KW_DEBUG: + case PostgreSQLParser.KW_LOG: + case PostgreSQLParser.KW_INFO: + case PostgreSQLParser.KW_NOTICE: + case PostgreSQLParser.KW_WARNING: + case PostgreSQLParser.KW_EXCEPTION: + case PostgreSQLParser.KW_ASSERT: + case PostgreSQLParser.KW_OPEN: + case PostgreSQLParser.KW_SKIP_LOCKED: + case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSQLParser.Identifier: + case PostgreSQLParser.QuotedIdentifier: + case PostgreSQLParser.UnicodeQuotedIdentifier: + case PostgreSQLParser.StringConstant: + case PostgreSQLParser.UnicodeEscapeStringConstant: + case PostgreSQLParser.BeginDollarStringConstant: + case PostgreSQLParser.PLSQLVARIABLENAME: + case PostgreSQLParser.PLSQLIDENTIFIER: + case PostgreSQLParser.EscapeStringConstant: + { + this.state = 2535; + this.name(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + break; + case 11: + this.enterOuterAlt(localContext, 11); + { + this.state = 2538; + this.match(PostgreSQLParser.KW_ENABLE); + this.state = 2539; + _la = this.tokenStream.LA(1); + if(!(_la === 139 || _la === 312)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2540; + this.match(PostgreSQLParser.KW_RULE); + this.state = 2541; + this.name(); + } + break; + case 12: + this.enterOuterAlt(localContext, 12); + { + this.state = 2542; + this.match(PostgreSQLParser.KW_DISABLE); + this.state = 2543; + this.match(PostgreSQLParser.KW_RULE); + this.state = 2544; + this.name(); + } + break; + case 13: + this.enterOuterAlt(localContext, 13); + { + this.state = 2546; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 269) { + { + this.state = 2545; + this.match(PostgreSQLParser.KW_NO); + } + } + + this.state = 2548; + this.match(PostgreSQLParser.KW_INHERIT); + this.state = 2549; + this.qualified_name(); + } + break; + case 14: + this.enterOuterAlt(localContext, 14); + { + this.state = 2550; + this.match(PostgreSQLParser.KW_OF); + this.state = 2551; + this.any_name(); + } + break; + case 15: + this.enterOuterAlt(localContext, 15); + { + this.state = 2552; + this.match(PostgreSQLParser.KW_NOT); + this.state = 2553; + this.match(PostgreSQLParser.KW_OF); + } + break; + case 16: + this.enterOuterAlt(localContext, 16); + { + this.state = 2554; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 2555; + this.match(PostgreSQLParser.KW_TO); + this.state = 2556; + this.rolespec(); + } + break; + case 17: + this.enterOuterAlt(localContext, 17); + { + this.state = 2557; + this.match(PostgreSQLParser.KW_SET); + this.state = 2558; + this.match(PostgreSQLParser.KW_TABLESPACE); + this.state = 2559; + this.tablespace_name_create(); + } + break; + case 18: + this.enterOuterAlt(localContext, 18); + { + this.state = 2560; + this.match(PostgreSQLParser.KW_SET); + this.state = 2561; + this.reloptions(); + } + break; + case 19: + this.enterOuterAlt(localContext, 19); + { + this.state = 2562; + this.match(PostgreSQLParser.KW_RESET); + this.state = 2563; + this.reloptions(); + } + break; + case 20: + this.enterOuterAlt(localContext, 20); + { + this.state = 2564; + this.match(PostgreSQLParser.KW_REPLICA); + this.state = 2565; + this.match(PostgreSQLParser.KW_IDENTITY); + this.state = 2566; + this.replica_identity(); + } + break; + case 21: + this.enterOuterAlt(localContext, 21); + { + this.state = 2567; + this.match(PostgreSQLParser.KW_ENABLE); + this.state = 2568; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2569; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2570; + this.match(PostgreSQLParser.KW_SECURITY); + } + break; + case 22: + this.enterOuterAlt(localContext, 22); + { + this.state = 2571; + this.match(PostgreSQLParser.KW_DISABLE); + this.state = 2572; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2573; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2574; + this.match(PostgreSQLParser.KW_SECURITY); + } + break; + case 23: + this.enterOuterAlt(localContext, 23); + { + this.state = 2575; + this.match(PostgreSQLParser.KW_FORCE); + this.state = 2576; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2577; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2578; + this.match(PostgreSQLParser.KW_SECURITY); + } + break; + case 24: + this.enterOuterAlt(localContext, 24); + { + this.state = 2579; + this.match(PostgreSQLParser.KW_NO); + this.state = 2580; + this.match(PostgreSQLParser.KW_FORCE); + this.state = 2581; + this.match(PostgreSQLParser.KW_ROW); + this.state = 2582; + this.match(PostgreSQLParser.KW_LEVEL); + this.state = 2583; + this.match(PostgreSQLParser.KW_SECURITY); + } + break; + case 25: + this.enterOuterAlt(localContext, 25); + { + this.state = 2584; + this.match(PostgreSQLParser.KW_DROP); + this.state = 2586; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2585; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2589; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 2530; - this.opt_column(); + this.state = 2588; + this.opt_if_exists(); } break; } - this.state = 2533; + this.state = 2591; this.column_name(); - this.state = 2534; - this.match(PostgreSQLParser.KW_DROP); - this.state = 2535; - this.match(PostgreSQLParser.KW_EXPRESSION); - this.state = 2537; + this.state = 2593; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 2536; + this.state = 2592; + this.opt_drop_behavior(); + } + break; + } + } + break; + case 26: + this.enterOuterAlt(localContext, 26); + { + this.state = 2595; + this.match(PostgreSQLParser.KW_ADD); + this.state = 2597; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2596; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2600; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { + case 1: + { + this.state = 2599; + this.opt_if_not_exists(); + } + break; + } + this.state = 2602; + this.columnDefCluase(); + } + break; + case 27: + this.enterOuterAlt(localContext, 27); + { + this.state = 2603; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2605; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2604; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2607; + this.column_name(); + this.state = 2608; + this.alter_column_default(); + } + break; + case 28: + this.enterOuterAlt(localContext, 28); + { + this.state = 2610; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2612; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2611; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2614; + this.column_name(); + this.state = 2615; + _la = this.tokenStream.LA(1); + if(!(_la === 191 || _la === 333)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2616; + this.match(PostgreSQLParser.KW_NOT); + this.state = 2617; + this.match(PostgreSQLParser.KW_NULL); + } + break; + case 29: + this.enterOuterAlt(localContext, 29); + { + this.state = 2619; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2621; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2620; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2623; + this.column_name(); + this.state = 2624; + this.match(PostgreSQLParser.KW_DROP); + this.state = 2625; + this.match(PostgreSQLParser.KW_EXPRESSION); + this.state = 2627; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { + case 1: + { + this.state = 2626; this.opt_if_exists(); } break; } } break; - case 6: - this.enterOuterAlt(localContext, 6); + case 30: + this.enterOuterAlt(localContext, 30); { - this.state = 2539; + this.state = 2629; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2541; + this.state = 2631; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 2540; - this.opt_column(); + this.state = 2630; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 2543; + + this.state = 2633; this.column_name(); - this.state = 2544; + this.state = 2634; this.match(PostgreSQLParser.KW_SET); - this.state = 2545; + this.state = 2635; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 2546; + this.state = 2636; this.signediconst(); } break; - case 7: - this.enterOuterAlt(localContext, 7); + case 31: + this.enterOuterAlt(localContext, 31); { - this.state = 2548; + this.state = 2638; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2550; + this.state = 2640; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 2549; - this.opt_column(); + this.state = 2639; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 2552; + + this.state = 2642; this.column_name(); - this.state = 2553; - this.match(PostgreSQLParser.KW_SET); - this.state = 2554; - this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 2555; - this.signediconst(); + this.state = 2643; + _la = this.tokenStream.LA(1); + if(!(_la === 313 || _la === 333)) { + this.errorHandler.recoverInline(this); } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 2557; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2559; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { - case 1: - { - this.state = 2558; - this.opt_column(); - } - break; + else { + this.errorHandler.reportMatch(this); + this.consume(); } - this.state = 2561; - this.column_name(); - this.state = 2562; - this.match(PostgreSQLParser.KW_SET); - this.state = 2563; + this.state = 2644; this.reloptions(); } break; - case 9: - this.enterOuterAlt(localContext, 9); + case 32: + this.enterOuterAlt(localContext, 32); { - this.state = 2565; + this.state = 2646; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2567; + this.state = 2648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 2566; - this.opt_column(); + this.state = 2647; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 2569; + + this.state = 2650; this.column_name(); - this.state = 2570; - this.match(PostgreSQLParser.KW_RESET); - this.state = 2571; - this.reloptions(); - } - break; - case 10: - this.enterOuterAlt(localContext, 10); - { - this.state = 2573; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2575; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { - case 1: - { - this.state = 2574; - this.opt_column(); - } - break; - } - this.state = 2577; - this.column_name(); - this.state = 2578; + this.state = 2651; this.match(PostgreSQLParser.KW_SET); - this.state = 2579; + this.state = 2652; this.match(PostgreSQLParser.KW_STORAGE); - this.state = 2580; + this.state = 2653; this.colid(); } break; - case 11: - this.enterOuterAlt(localContext, 11); + case 33: + this.enterOuterAlt(localContext, 33); { - this.state = 2582; + this.state = 2655; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2584; + this.state = 2657; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 2583; - this.opt_column(); + this.state = 2656; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 2586; + + this.state = 2659; this.column_name(); - this.state = 2587; + this.state = 2660; this.match(PostgreSQLParser.KW_ADD); - this.state = 2588; + this.state = 2661; this.match(PostgreSQLParser.KW_GENERATED); - this.state = 2589; + this.state = 2662; this.generated_when(); - this.state = 2590; + this.state = 2663; this.match(PostgreSQLParser.KW_AS); - this.state = 2591; + this.state = 2664; this.match(PostgreSQLParser.KW_IDENTITY); - this.state = 2593; + this.state = 2666; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 2592; + this.state = 2665; this.optparenthesizedseqoptlist(); } break; } } break; - case 12: - this.enterOuterAlt(localContext, 12); + case 34: + this.enterOuterAlt(localContext, 34); { - this.state = 2595; + this.state = 2668; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2597; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { - case 1: - { - this.state = 2596; - this.opt_column(); - } - break; - } - this.state = 2599; - this.column_name(); - this.state = 2600; - this.alter_identity_column_option_list(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 2602; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2604; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { - case 1: - { - this.state = 2603; - this.opt_column(); - } - break; - } - this.state = 2606; - this.column_name(); - this.state = 2607; - this.match(PostgreSQLParser.KW_DROP); - this.state = 2608; - this.match(PostgreSQLParser.KW_IDENTITY); - this.state = 2610; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { - case 1: - { - this.state = 2609; - this.opt_if_exists(); - } - break; - } - } - break; - case 14: - this.enterOuterAlt(localContext, 14); - { - this.state = 2612; - this.match(PostgreSQLParser.KW_DROP); - this.state = 2614; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { - case 1: - { - this.state = 2613; - this.opt_column(); - } - break; - } - this.state = 2617; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { - case 1: - { - this.state = 2616; - this.opt_if_exists(); - } - break; - } - this.state = 2619; - this.column_name(); - this.state = 2621; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { - case 1: - { - this.state = 2620; - this.opt_drop_behavior(); - } - break; - } - } - break; - case 15: - this.enterOuterAlt(localContext, 15); - { - this.state = 2623; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2625; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { - case 1: - { - this.state = 2624; - this.opt_column(); - } - break; - } - this.state = 2627; - this.column_name(); - this.state = 2629; + this.state = 2670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 333) { + if (_la === 44) { { - this.state = 2628; - this.opt_set_data(); + this.state = 2669; + this.match(PostgreSQLParser.KW_COLUMN); } } - this.state = 2631; - this.match(PostgreSQLParser.KW_TYPE); - this.state = 2632; - this.typename(); - this.state = 2634; + this.state = 2672; + this.column_name(); + this.state = 2673; + this.alter_identity_column_option_list(); + } + break; + case 35: + this.enterOuterAlt(localContext, 35); + { + this.state = 2675; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2677; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2676; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2679; + this.column_name(); + this.state = 2680; + this.match(PostgreSQLParser.KW_DROP); + this.state = 2681; + this.match(PostgreSQLParser.KW_IDENTITY); + this.state = 2683; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 2633; + this.state = 2682; + this.opt_if_exists(); + } + break; + } + } + break; + case 36: + this.enterOuterAlt(localContext, 36); + { + this.state = 2685; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2687; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2686; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2689; + this.column_name(); + this.state = 2691; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 333) { + { + this.state = 2690; + this.opt_set_data(); + } + } + + this.state = 2693; + this.match(PostgreSQLParser.KW_TYPE); + this.state = 2694; + this.typename(); + this.state = 2696; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { + case 1: + { + this.state = 2695; this.opt_collate_clause(); } break; } - this.state = 2637; + this.state = 2699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2636; + this.state = 2698; this.alter_using(); } } - } - break; - case 16: - this.enterOuterAlt(localContext, 16); - { - this.state = 2639; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2641; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { - case 1: - { - this.state = 2640; - this.opt_column(); - } - break; - } - this.state = 2643; - this.column_name(); - this.state = 2644; - this.alter_generic_options(); - } - break; - case 17: - this.enterOuterAlt(localContext, 17); - { - this.state = 2646; - this.match(PostgreSQLParser.KW_ADD); - this.state = 2647; - this.tableconstraint(); - } - break; - case 18: - this.enterOuterAlt(localContext, 18); - { - this.state = 2648; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 2649; - this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 2650; - this.name(); - this.state = 2651; - this.constraintattributespec(); - } - break; - case 19: - this.enterOuterAlt(localContext, 19); - { - this.state = 2653; - this.match(PostgreSQLParser.KW_VALIDATE); - this.state = 2654; - this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 2655; - this.name(); - } - break; - case 20: - this.enterOuterAlt(localContext, 20); - { - this.state = 2656; - this.match(PostgreSQLParser.KW_DROP); - this.state = 2657; - this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 2659; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { - case 1: - { - this.state = 2658; - this.opt_if_exists(); - } - break; - } - this.state = 2661; - this.name(); - this.state = 2663; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { - case 1: - { - this.state = 2662; - this.opt_drop_behavior(); - } - break; - } - } - break; - case 21: - this.enterOuterAlt(localContext, 21); - { - this.state = 2665; - this.match(PostgreSQLParser.KW_SET); - this.state = 2666; - this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 2667; - this.match(PostgreSQLParser.KW_OIDS); - } - break; - case 22: - this.enterOuterAlt(localContext, 22); - { - this.state = 2668; - this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 2669; - this.match(PostgreSQLParser.KW_ON); - this.state = 2670; - this.name(); - } - break; - case 23: - this.enterOuterAlt(localContext, 23); - { - this.state = 2671; - this.match(PostgreSQLParser.KW_SET); - this.state = 2672; - this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 2673; - this.match(PostgreSQLParser.KW_CLUSTER); - } - break; - case 24: - this.enterOuterAlt(localContext, 24); - { - this.state = 2674; - this.match(PostgreSQLParser.KW_SET); - this.state = 2675; - this.match(PostgreSQLParser.KW_LOGGED); - } - break; - case 25: - this.enterOuterAlt(localContext, 25); - { - this.state = 2676; - this.match(PostgreSQLParser.KW_SET); - this.state = 2677; - this.match(PostgreSQLParser.KW_UNLOGGED); - } - break; - case 26: - this.enterOuterAlt(localContext, 26); - { - this.state = 2678; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2679; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2680; - this.name(); - } - break; - case 27: - this.enterOuterAlt(localContext, 27); - { - this.state = 2681; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2682; - this.match(PostgreSQLParser.KW_ALWAYS); - this.state = 2683; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2684; - this.name(); - } - break; - case 28: - this.enterOuterAlt(localContext, 28); - { - this.state = 2685; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2686; - this.match(PostgreSQLParser.KW_REPLICA); - this.state = 2687; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2688; - this.name(); - } - break; - case 29: - this.enterOuterAlt(localContext, 29); - { - this.state = 2689; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2690; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2691; - this.match(PostgreSQLParser.KW_ALL); - } - break; - case 30: - this.enterOuterAlt(localContext, 30); - { - this.state = 2692; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2693; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2694; - this.match(PostgreSQLParser.KW_USER); - } - break; - case 31: - this.enterOuterAlt(localContext, 31); - { - this.state = 2695; - this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2696; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2697; - this.name(); - } - break; - case 32: - this.enterOuterAlt(localContext, 32); - { - this.state = 2698; - this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2699; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2700; - this.match(PostgreSQLParser.KW_ALL); - } - break; - case 33: - this.enterOuterAlt(localContext, 33); - { - this.state = 2701; - this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2702; - this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 2703; - this.match(PostgreSQLParser.KW_USER); - } - break; - case 34: - this.enterOuterAlt(localContext, 34); - { - this.state = 2704; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2705; - this.match(PostgreSQLParser.KW_RULE); - this.state = 2706; - this.name(); - } - break; - case 35: - this.enterOuterAlt(localContext, 35); - { - this.state = 2707; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2708; - this.match(PostgreSQLParser.KW_ALWAYS); - this.state = 2709; - this.match(PostgreSQLParser.KW_RULE); - this.state = 2710; - this.name(); - } - break; - case 36: - this.enterOuterAlt(localContext, 36); - { - this.state = 2711; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2712; - this.match(PostgreSQLParser.KW_REPLICA); - this.state = 2713; - this.match(PostgreSQLParser.KW_RULE); - this.state = 2714; - this.name(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 2715; - this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2716; - this.match(PostgreSQLParser.KW_RULE); - this.state = 2717; - this.name(); + this.state = 2701; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 2703; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 44) { + { + this.state = 2702; + this.match(PostgreSQLParser.KW_COLUMN); + } + } + + this.state = 2705; + this.column_name(); + this.state = 2706; + this.alter_generic_options(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 2718; - this.match(PostgreSQLParser.KW_INHERIT); - this.state = 2719; - this.qualified_name(); - } - break; - case 39: - this.enterOuterAlt(localContext, 39); - { - this.state = 2720; - this.match(PostgreSQLParser.KW_NO); - this.state = 2721; - this.match(PostgreSQLParser.KW_INHERIT); - this.state = 2722; - this.qualified_name(); - } - break; - case 40: - this.enterOuterAlt(localContext, 40); - { - this.state = 2723; - this.match(PostgreSQLParser.KW_OF); - this.state = 2724; - this.any_name(); - } - break; - case 41: - this.enterOuterAlt(localContext, 41); - { - this.state = 2725; - this.match(PostgreSQLParser.KW_NOT); - this.state = 2726; - this.match(PostgreSQLParser.KW_OF); - } - break; - case 42: - this.enterOuterAlt(localContext, 42); - { - this.state = 2727; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 2728; - this.match(PostgreSQLParser.KW_TO); - this.state = 2729; - this.rolespec(); - } - break; - case 43: - this.enterOuterAlt(localContext, 43); - { - this.state = 2730; - this.match(PostgreSQLParser.KW_SET); - this.state = 2731; - this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 2732; - this.tablespace_name_create(); - } - break; - case 44: - this.enterOuterAlt(localContext, 44); - { - this.state = 2733; - this.match(PostgreSQLParser.KW_SET); - this.state = 2734; - this.reloptions(); - } - break; - case 45: - this.enterOuterAlt(localContext, 45); - { - this.state = 2735; - this.match(PostgreSQLParser.KW_RESET); - this.state = 2736; - this.reloptions(); - } - break; - case 46: - this.enterOuterAlt(localContext, 46); - { - this.state = 2737; - this.match(PostgreSQLParser.KW_REPLICA); - this.state = 2738; - this.match(PostgreSQLParser.KW_IDENTITY); - this.state = 2739; - this.replica_identity(); - } - break; - case 47: - this.enterOuterAlt(localContext, 47); - { - this.state = 2740; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 2741; - this.match(PostgreSQLParser.KW_ROW); - this.state = 2742; - this.match(PostgreSQLParser.KW_LEVEL); - this.state = 2743; - this.match(PostgreSQLParser.KW_SECURITY); - } - break; - case 48: - this.enterOuterAlt(localContext, 48); - { - this.state = 2744; - this.match(PostgreSQLParser.KW_DISABLE); - this.state = 2745; - this.match(PostgreSQLParser.KW_ROW); - this.state = 2746; - this.match(PostgreSQLParser.KW_LEVEL); - this.state = 2747; - this.match(PostgreSQLParser.KW_SECURITY); - } - break; - case 49: - this.enterOuterAlt(localContext, 49); - { - this.state = 2748; - this.match(PostgreSQLParser.KW_FORCE); - this.state = 2749; - this.match(PostgreSQLParser.KW_ROW); - this.state = 2750; - this.match(PostgreSQLParser.KW_LEVEL); - this.state = 2751; - this.match(PostgreSQLParser.KW_SECURITY); - } - break; - case 50: - this.enterOuterAlt(localContext, 50); - { - this.state = 2752; - this.match(PostgreSQLParser.KW_NO); - this.state = 2753; - this.match(PostgreSQLParser.KW_FORCE); - this.state = 2754; - this.match(PostgreSQLParser.KW_ROW); - this.state = 2755; - this.match(PostgreSQLParser.KW_LEVEL); - this.state = 2756; - this.match(PostgreSQLParser.KW_SECURITY); - } - break; - case 51: - this.enterOuterAlt(localContext, 51); - { - this.state = 2757; + this.state = 2708; this.alter_generic_options(); } break; @@ -10089,26 +10379,26 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Alter_column_defaultContext(this.context, this.state); this.enterRule(localContext, 122, PostgreSQLParser.RULE_alter_column_default); try { - this.state = 2765; + this.state = 2716; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 2760; + this.state = 2711; this.match(PostgreSQLParser.KW_SET); - this.state = 2761; + this.state = 2712; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 2762; + this.state = 2713; this.a_expr(); } break; case PostgreSQLParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 2763; + this.state = 2714; this.match(PostgreSQLParser.KW_DROP); - this.state = 2764; + this.state = 2715; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -10137,7 +10427,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2767; + this.state = 2718; _la = this.tokenStream.LA(1); if(!(_la === 150 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -10168,9 +10458,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2720; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 2770; + this.state = 2721; this.any_name(); } } @@ -10194,9 +10484,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2772; + this.state = 2723; this.match(PostgreSQLParser.KW_USING); - this.state = 2773; + this.state = 2724; this.a_expr(); } } @@ -10218,38 +10508,38 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Replica_identityContext(this.context, this.state); this.enterRule(localContext, 130, PostgreSQLParser.RULE_replica_identity); try { - this.state = 2781; + this.state = 2732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOTHING: this.enterOuterAlt(localContext, 1); { - this.state = 2775; + this.state = 2726; this.match(PostgreSQLParser.KW_NOTHING); } break; case PostgreSQLParser.KW_FULL: this.enterOuterAlt(localContext, 2); { - this.state = 2776; + this.state = 2727; this.match(PostgreSQLParser.KW_FULL); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2777; + this.state = 2728; this.match(PostgreSQLParser.KW_DEFAULT); } break; case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 4); { - this.state = 2778; + this.state = 2729; this.match(PostgreSQLParser.KW_USING); - this.state = 2779; + this.state = 2730; this.match(PostgreSQLParser.KW_INDEX); - this.state = 2780; + this.state = 2731; this.name(); } break; @@ -10277,11 +10567,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2783; + this.state = 2734; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2784; + this.state = 2735; this.reloption_list(); - this.state = 2785; + this.state = 2736; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -10305,9 +10595,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2787; + this.state = 2738; this.match(PostgreSQLParser.KW_WITH); - this.state = 2788; + this.state = 2739; this.reloptions(); } } @@ -10332,21 +10622,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2790; + this.state = 2741; this.reloption_elem(); - this.state = 2795; + this.state = 2746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2791; + this.state = 2742; this.match(PostgreSQLParser.COMMA); - this.state = 2792; + this.state = 2743; this.reloption_elem(); } } - this.state = 2797; + this.state = 2748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10373,33 +10663,33 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2798; + this.state = 2749; this.collabel(); - this.state = 2807; + this.state = 2758; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EQUAL: { - this.state = 2799; + this.state = 2750; this.match(PostgreSQLParser.EQUAL); - this.state = 2800; + this.state = 2751; this.def_arg(); } break; case PostgreSQLParser.DOT: { - this.state = 2801; + this.state = 2752; this.match(PostgreSQLParser.DOT); - this.state = 2802; + this.state = 2753; this.collabel(); - this.state = 2805; + this.state = 2756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 2803; + this.state = 2754; this.match(PostgreSQLParser.EQUAL); - this.state = 2804; + this.state = 2755; this.def_arg(); } } @@ -10435,7 +10725,7 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2810; + this.state = 2761; this.errorHandler.sync(this); alternative = 1; do { @@ -10443,7 +10733,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 2809; + this.state = 2760; this.alter_identity_column_option(); } } @@ -10451,9 +10741,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 2812; + this.state = 2763; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 113, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 114, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -10476,30 +10766,30 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 142, PostgreSQLParser.RULE_alter_identity_column_option); let _la: number; try { - this.state = 2827; + this.state = 2778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_RESTART: this.enterOuterAlt(localContext, 1); { - this.state = 2814; + this.state = 2765; this.match(PostgreSQLParser.KW_RESTART); - this.state = 2819; + this.state = 2770; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 2816; + this.state = 2767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2815; + this.state = 2766; this.opt_with(); } } - this.state = 2818; + this.state = 2769; this.numericonly(); } break; @@ -10509,9 +10799,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 2); { - this.state = 2821; + this.state = 2772; this.match(PostgreSQLParser.KW_SET); - this.state = 2825; + this.state = 2776; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AS: @@ -10526,15 +10816,15 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SEQUENCE: case PostgreSQLParser.KW_START: { - this.state = 2822; + this.state = 2773; this.seqoptelem(); } break; case PostgreSQLParser.KW_GENERATED: { - this.state = 2823; + this.state = 2774; this.match(PostgreSQLParser.KW_GENERATED); - this.state = 2824; + this.state = 2775; this.generated_when(); } break; @@ -10565,72 +10855,72 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new PartitionboundspecContext(this.context, this.state); this.enterRule(localContext, 144, PostgreSQLParser.RULE_partitionboundspec); try { - this.state = 2855; + this.state = 2806; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2829; + this.state = 2780; this.match(PostgreSQLParser.KW_FOR); - this.state = 2830; + this.state = 2781; this.match(PostgreSQLParser.KW_VALUES); - this.state = 2831; + this.state = 2782; this.match(PostgreSQLParser.KW_WITH); - this.state = 2832; + this.state = 2783; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2833; + this.state = 2784; this.hash_partbound(); - this.state = 2834; + this.state = 2785; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2836; + this.state = 2787; this.match(PostgreSQLParser.KW_FOR); - this.state = 2837; + this.state = 2788; this.match(PostgreSQLParser.KW_VALUES); - this.state = 2838; + this.state = 2789; this.match(PostgreSQLParser.KW_IN); - this.state = 2839; + this.state = 2790; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2840; + this.state = 2791; this.expr_list(); - this.state = 2841; + this.state = 2792; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2843; + this.state = 2794; this.match(PostgreSQLParser.KW_FOR); - this.state = 2844; + this.state = 2795; this.match(PostgreSQLParser.KW_VALUES); - this.state = 2845; + this.state = 2796; this.match(PostgreSQLParser.KW_FROM); - this.state = 2846; + this.state = 2797; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2847; + this.state = 2798; this.expr_list(); - this.state = 2848; + this.state = 2799; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 2849; + this.state = 2800; this.match(PostgreSQLParser.KW_TO); - this.state = 2850; + this.state = 2801; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2851; + this.state = 2802; this.expr_list(); - this.state = 2852; + this.state = 2803; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2854; + this.state = 2805; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -10656,9 +10946,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2857; + this.state = 2808; this.nonreservedword(); - this.state = 2858; + this.state = 2809; this.iconst(); } } @@ -10683,21 +10973,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2860; + this.state = 2811; this.hash_partbound_elem(); - this.state = 2865; + this.state = 2816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2861; + this.state = 2812; this.match(PostgreSQLParser.COMMA); - this.state = 2862; + this.state = 2813; this.hash_partbound_elem(); } } - this.state = 2867; + this.state = 2818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10723,13 +11013,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2868; + this.state = 2819; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2869; + this.state = 2820; this.match(PostgreSQLParser.KW_TYPE); - this.state = 2870; + this.state = 2821; this.any_name(); - this.state = 2871; + this.state = 2822; this.alter_type_cmds(); } } @@ -10754,21 +11044,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2873; + this.state = 2824; this.alter_type_cmd(); - this.state = 2878; + this.state = 2829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2874; + this.state = 2825; this.match(PostgreSQLParser.COMMA); - this.state = 2875; + this.state = 2826; this.alter_type_cmd(); } } - this.state = 2880; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10793,24 +11083,24 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 154, PostgreSQLParser.RULE_alter_type_cmd); let _la: number; try { - this.state = 2910; + this.state = 2861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ADD: this.enterOuterAlt(localContext, 1); { - this.state = 2881; + this.state = 2832; this.match(PostgreSQLParser.KW_ADD); - this.state = 2882; + this.state = 2833; this.match(PostgreSQLParser.KW_ATTRIBUTE); - this.state = 2883; + this.state = 2834; this.tablefuncelement(); - this.state = 2885; + this.state = 2836; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 2884; + this.state = 2835; this.opt_drop_behavior(); } break; @@ -10820,28 +11110,28 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 2887; + this.state = 2838; this.match(PostgreSQLParser.KW_DROP); - this.state = 2888; + this.state = 2839; this.match(PostgreSQLParser.KW_ATTRIBUTE); - this.state = 2890; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { - case 1: - { - this.state = 2889; - this.opt_if_exists(); - } - break; - } - this.state = 2892; - this.colid(); - this.state = 2894; + this.state = 2841; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 123, this.context) ) { case 1: { - this.state = 2893; + this.state = 2840; + this.opt_if_exists(); + } + break; + } + this.state = 2843; + this.colid(); + this.state = 2845; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { + case 1: + { + this.state = 2844; this.opt_drop_behavior(); } break; @@ -10851,42 +11141,42 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 2896; + this.state = 2847; this.match(PostgreSQLParser.KW_ALTER); - this.state = 2897; + this.state = 2848; this.match(PostgreSQLParser.KW_ATTRIBUTE); - this.state = 2898; + this.state = 2849; this.colid(); - this.state = 2900; + this.state = 2851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 2899; + this.state = 2850; this.opt_set_data(); } } - this.state = 2902; + this.state = 2853; this.match(PostgreSQLParser.KW_TYPE); - this.state = 2903; + this.state = 2854; this.typename(); - this.state = 2905; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { - case 1: - { - this.state = 2904; - this.opt_collate_clause(); - } - break; - } - this.state = 2908; + this.state = 2856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 2907; + this.state = 2855; + this.opt_collate_clause(); + } + break; + } + this.state = 2859; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { + case 1: + { + this.state = 2858; this.opt_drop_behavior(); } break; @@ -10917,15 +11207,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2912; + this.state = 2863; this.match(PostgreSQLParser.KW_CLOSE); - this.state = 2915; + this.state = 2866; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -11324,13 +11613,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 2913; + this.state = 2864; this.cursor_name(); } break; case PostgreSQLParser.KW_ALL: { - this.state = 2914; + this.state = 2865; this.match(PostgreSQLParser.KW_ALL); } break; @@ -11358,78 +11647,78 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 158, PostgreSQLParser.RULE_copystmt); let _la: number; try { - this.state = 2954; + this.state = 2905; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2917; + this.state = 2868; this.match(PostgreSQLParser.KW_COPY); - this.state = 2919; + this.state = 2870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 2918; + this.state = 2869; this.opt_binary(); } } - this.state = 2921; + this.state = 2872; this.table_name(); - this.state = 2923; + this.state = 2874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2922; + this.state = 2873; this.opt_column_list(); } } - this.state = 2925; + this.state = 2876; this.copy_from(); - this.state = 2927; + this.state = 2878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 2926; + this.state = 2877; this.opt_program(); } } - this.state = 2929; + this.state = 2880; this.copy_file_name(); - this.state = 2931; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { - case 1: - { - this.state = 2930; - this.copy_delimiter(); - } - break; - } - this.state = 2934; + this.state = 2882; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 2933; + this.state = 2881; + this.copy_delimiter(); + } + break; + } + this.state = 2885; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { + case 1: + { + this.state = 2884; this.opt_with(); } break; } - this.state = 2936; + this.state = 2887; this.copy_options(); - this.state = 2938; + this.state = 2889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2937; + this.state = 2888; this.where_clause(); } } @@ -11439,39 +11728,39 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2940; + this.state = 2891; this.match(PostgreSQLParser.KW_COPY); - this.state = 2941; + this.state = 2892; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2942; + this.state = 2893; this.preparablestmt(); - this.state = 2943; + this.state = 2894; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 2944; + this.state = 2895; this.match(PostgreSQLParser.KW_TO); - this.state = 2946; + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 2945; + this.state = 2896; this.opt_program(); } } - this.state = 2948; + this.state = 2899; this.copy_file_name(); - this.state = 2950; + this.state = 2901; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 2949; + this.state = 2900; this.opt_with(); } break; } - this.state = 2952; + this.state = 2903; this.copy_options(); } break; @@ -11498,7 +11787,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2956; + this.state = 2907; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -11529,7 +11818,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 2958; + this.state = 2909; this.match(PostgreSQLParser.KW_PROGRAM); } } @@ -11551,7 +11840,7 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Copy_file_nameContext(this.context, this.state); this.enterRule(localContext, 164, PostgreSQLParser.RULE_copy_file_name); try { - this.state = 2963; + this.state = 2914; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -11560,21 +11849,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 2960; + this.state = 2911; this.sconst(); } break; case PostgreSQLParser.KW_STDIN: this.enterOuterAlt(localContext, 2); { - this.state = 2961; + this.state = 2912; this.match(PostgreSQLParser.KW_STDIN); } break; case PostgreSQLParser.KW_STDOUT: this.enterOuterAlt(localContext, 3); { - this.state = 2962; + this.state = 2913; this.match(PostgreSQLParser.KW_STDOUT); } break; @@ -11600,24 +11889,24 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Copy_optionsContext(this.context, this.state); this.enterRule(localContext, 166, PostgreSQLParser.RULE_copy_options); try { - this.state = 2970; + this.state = 2921; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2965; + this.state = 2916; this.copy_opt_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2966; + this.state = 2917; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 2967; + this.state = 2918; this.copy_generic_opt_list(); - this.state = 2968; + this.state = 2919; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -11644,21 +11933,21 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2975; + this.state = 2926; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2972; + this.state = 2923; this.copy_opt_item(); } } } - this.state = 2977; + this.state = 2928; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } } } @@ -11681,165 +11970,165 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 170, PostgreSQLParser.RULE_copy_opt_item); let _la: number; try { - this.state = 3017; + this.state = 2968; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2978; + this.state = 2929; this.match(PostgreSQLParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2979; + this.state = 2930; this.match(PostgreSQLParser.KW_FREEZE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2980; + this.state = 2931; this.match(PostgreSQLParser.KW_DELIMITER); - this.state = 2982; + this.state = 2933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2981; + this.state = 2932; this.opt_as(); } } - this.state = 2984; + this.state = 2935; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2985; + this.state = 2936; this.match(PostgreSQLParser.KW_NULL); - this.state = 2987; + this.state = 2938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2986; + this.state = 2937; this.opt_as(); } } - this.state = 2989; + this.state = 2940; this.sconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2990; + this.state = 2941; this.match(PostgreSQLParser.KW_CSV); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2991; + this.state = 2942; this.match(PostgreSQLParser.KW_HEADER); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2992; + this.state = 2943; this.match(PostgreSQLParser.KW_QUOTE); - this.state = 2994; + this.state = 2945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2993; + this.state = 2944; this.opt_as(); } } - this.state = 2996; + this.state = 2947; this.sconst(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2997; + this.state = 2948; this.match(PostgreSQLParser.KW_ESCAPE); - this.state = 2999; + this.state = 2950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2998; + this.state = 2949; this.opt_as(); } } - this.state = 3001; + this.state = 2952; this.sconst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3002; + this.state = 2953; this.match(PostgreSQLParser.KW_FORCE); - this.state = 3003; + this.state = 2954; this.match(PostgreSQLParser.KW_QUOTE); - this.state = 3004; + this.state = 2955; this.columnlist(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3005; + this.state = 2956; this.match(PostgreSQLParser.KW_FORCE); - this.state = 3006; + this.state = 2957; this.match(PostgreSQLParser.KW_QUOTE); - this.state = 3007; + this.state = 2958; this.match(PostgreSQLParser.STAR); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3008; + this.state = 2959; this.match(PostgreSQLParser.KW_FORCE); - this.state = 3009; + this.state = 2960; this.match(PostgreSQLParser.KW_NOT); - this.state = 3010; + this.state = 2961; this.match(PostgreSQLParser.KW_NULL); - this.state = 3011; + this.state = 2962; this.columnlist(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3012; + this.state = 2963; this.match(PostgreSQLParser.KW_FORCE); - this.state = 3013; + this.state = 2964; this.match(PostgreSQLParser.KW_NULL); - this.state = 3014; + this.state = 2965; this.columnlist(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3015; + this.state = 2966; this.match(PostgreSQLParser.KW_ENCODING); - this.state = 3016; + this.state = 2967; this.sconst(); } break; @@ -11865,7 +12154,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3019; + this.state = 2970; this.match(PostgreSQLParser.KW_BINARY); } } @@ -11890,19 +12179,19 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3022; + this.state = 2973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3021; + this.state = 2972; this.opt_using(); } } - this.state = 3024; + this.state = 2975; this.match(PostgreSQLParser.KW_DELIMITERS); - this.state = 3025; + this.state = 2976; this.sconst(); } } @@ -11926,7 +12215,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3027; + this.state = 2978; this.match(PostgreSQLParser.KW_USING); } } @@ -11951,21 +12240,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3029; + this.state = 2980; this.copy_generic_opt_elem(); - this.state = 3034; + this.state = 2985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3030; + this.state = 2981; this.match(PostgreSQLParser.COMMA); - this.state = 3031; + this.state = 2982; this.copy_generic_opt_elem(); } } - this.state = 3036; + this.state = 2987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11992,14 +12281,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3037; + this.state = 2988; this.collabel(); - this.state = 3039; + this.state = 2990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 12804) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420486149) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 12804) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420484101) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { { - this.state = 3038; + this.state = 2989; this.copy_generic_opt_arg(); } } @@ -12024,13 +12313,12 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Copy_generic_opt_argContext(this.context, this.state); this.enterRule(localContext, 182, PostgreSQLParser.RULE_copy_generic_opt_arg); try { - this.state = 3048; + this.state = 2999; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -12454,7 +12742,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 3041; + this.state = 2992; this.opt_boolean_or_string(); } break; @@ -12464,25 +12752,25 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 3042; + this.state = 2993; this.numericonly(); } break; case PostgreSQLParser.STAR: this.enterOuterAlt(localContext, 3); { - this.state = 3043; + this.state = 2994; this.match(PostgreSQLParser.STAR); } break; case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 4); { - this.state = 3044; + this.state = 2995; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3045; + this.state = 2996; this.copy_generic_opt_arg_list(); - this.state = 3046; + this.state = 2997; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -12511,21 +12799,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3050; + this.state = 3001; this.copy_generic_opt_arg_list_item(); - this.state = 3055; + this.state = 3006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3051; + this.state = 3002; this.match(PostgreSQLParser.COMMA); - this.state = 3052; + this.state = 3003; this.copy_generic_opt_arg_list_item(); } } - this.state = 3057; + this.state = 3008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12551,7 +12839,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3058; + this.state = 3009; this.opt_boolean_or_string_column(); } } @@ -12576,107 +12864,107 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3060; + this.state = 3011; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3062; + this.state = 3013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 3061; + this.state = 3012; this.opttemp(); } } - this.state = 3064; + this.state = 3015; this.match(PostgreSQLParser.KW_TABLE); - this.state = 3066; + this.state = 3017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 3065; + this.state = 3016; this.opt_if_not_exists(); } break; } - this.state = 3068; + this.state = 3019; this.table_name_create(); - this.state = 3134; + this.state = 3085; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 3069; + this.state = 3020; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3071; + this.state = 3022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1360010757) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491969) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 24575) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1360008709) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491969) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 24575) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3070; + this.state = 3021; this.table_column_list(); } } - this.state = 3073; + this.state = 3024; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3075; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { - case 1: - { - this.state = 3074; - this.optinherit(); - } - break; - } - this.state = 3078; + this.state = 3026; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 3077; + this.state = 3025; + this.optinherit(); + } + break; + } + this.state = 3029; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { + case 1: + { + this.state = 3028; this.optpartitionspec(); } break; } - this.state = 3081; + this.state = 3032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3080; + this.state = 3031; this.table_access_method_clause(); } } - this.state = 3084; + this.state = 3035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 3083; + this.state = 3034; this.optwith(); } break; } - this.state = 3087; + this.state = 3038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3086; + this.state = 3037; this.oncommitoption(); } } - this.state = 3090; + this.state = 3041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 3089; + this.state = 3040; this.opttablespace(); } break; @@ -12685,66 +12973,66 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_OF: { - this.state = 3092; + this.state = 3043; this.match(PostgreSQLParser.KW_OF); - this.state = 3093; + this.state = 3044; this.any_name(); - this.state = 3095; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { - case 1: - { - this.state = 3094; - this.opttypedtableelementlist(); - } - break; - } - this.state = 3098; + this.state = 3046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 3097; + this.state = 3045; + this.opttypedtableelementlist(); + } + break; + } + this.state = 3049; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { + case 1: + { + this.state = 3048; this.optpartitionspec(); } break; } - this.state = 3101; + this.state = 3052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3100; + this.state = 3051; this.table_access_method_clause(); } } - this.state = 3104; + this.state = 3055; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 3103; + this.state = 3054; this.optwith(); } break; } - this.state = 3107; + this.state = 3058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3106; + this.state = 3057; this.oncommitoption(); } } - this.state = 3110; + this.state = 3061; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 3109; + this.state = 3060; this.opttablespace(); } break; @@ -12753,70 +13041,70 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_PARTITION: { - this.state = 3112; + this.state = 3063; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 3113; + this.state = 3064; this.match(PostgreSQLParser.KW_OF); - this.state = 3114; + this.state = 3065; this.qualified_name(); - this.state = 3116; + this.state = 3067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3115; + this.state = 3066; this.opttypedtableelementlist(); } } - this.state = 3118; + this.state = 3069; this.partitionboundspec(); - this.state = 3120; + this.state = 3071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 3119; + this.state = 3070; this.optpartitionspec(); } break; } - this.state = 3123; + this.state = 3074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3122; + this.state = 3073; this.table_access_method_clause(); } } - this.state = 3126; + this.state = 3077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 3125; + this.state = 3076; this.optwith(); } break; } - this.state = 3129; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3128; + this.state = 3079; this.oncommitoption(); } } - this.state = 3132; + this.state = 3083; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 3131; + this.state = 3082; this.opttablespace(); } break; @@ -12847,29 +13135,29 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 190, PostgreSQLParser.RULE_opttemp); let _la: number; try { - this.state = 3143; + this.state = 3094; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 3136; + this.state = 3087; this.match(PostgreSQLParser.KW_TEMPORARY); } break; case PostgreSQLParser.KW_TEMP: this.enterOuterAlt(localContext, 2); { - this.state = 3137; + this.state = 3088; this.match(PostgreSQLParser.KW_TEMP); } break; case PostgreSQLParser.KW_LOCAL: this.enterOuterAlt(localContext, 3); { - this.state = 3138; + this.state = 3089; this.match(PostgreSQLParser.KW_LOCAL); - this.state = 3139; + this.state = 3090; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -12883,9 +13171,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_GLOBAL: this.enterOuterAlt(localContext, 4); { - this.state = 3140; + this.state = 3091; this.match(PostgreSQLParser.KW_GLOBAL); - this.state = 3141; + this.state = 3092; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -12899,7 +13187,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_UNLOGGED: this.enterOuterAlt(localContext, 5); { - this.state = 3142; + this.state = 3093; this.match(PostgreSQLParser.KW_UNLOGGED); } break; @@ -12927,7 +13215,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3145; + this.state = 3096; this.tableelementlist(); } } @@ -12951,7 +13239,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3147; + this.state = 3098; this.tableelementlist(); } } @@ -12975,11 +13263,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3149; + this.state = 3100; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3150; + this.state = 3101; this.typedtableelementlist(); - this.state = 3151; + this.state = 3102; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -13004,21 +13292,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3153; + this.state = 3104; this.tableelement(); - this.state = 3158; + this.state = 3109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3154; + this.state = 3105; this.match(PostgreSQLParser.COMMA); - this.state = 3155; + this.state = 3106; this.tableelement(); } } - this.state = 3160; + this.state = 3111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13045,21 +13333,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3161; + this.state = 3112; this.typedtableelement(); - this.state = 3166; + this.state = 3117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3162; + this.state = 3113; this.match(PostgreSQLParser.COMMA); - this.state = 3163; + this.state = 3114; this.typedtableelement(); } } - this.state = 3168; + this.state = 3119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13083,27 +13371,27 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TableelementContext(this.context, this.state); this.enterRule(localContext, 202, PostgreSQLParser.RULE_tableelement); try { - this.state = 3172; + this.state = 3123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3169; + this.state = 3120; this.columnDef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3170; + this.state = 3121; this.tablelikeclause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3171; + this.state = 3122; this.tableconstraint(); } break; @@ -13127,20 +13415,20 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TypedtableelementContext(this.context, this.state); this.enterRule(localContext, 204, PostgreSQLParser.RULE_typedtableelement); try { - this.state = 3176; + this.state = 3127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3174; + this.state = 3125; this.columnOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3175; + this.state = 3126; this.tableconstraint(); } break; @@ -13167,65 +13455,65 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3178; + this.state = 3129; this.column_name(); - this.state = 3179; + this.state = 3130; this.typename(); - this.state = 3181; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { - case 1: - { - this.state = 3180; - this.create_generic_options(); - } - break; - } - this.state = 3184; + this.state = 3132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 3183; + this.state = 3131; + this.create_generic_options(); + } + break; + } + this.state = 3135; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { + case 1: + { + this.state = 3134; this.storageCluase(); } break; } - this.state = 3187; + this.state = 3138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 3186; + this.state = 3137; this.compressionCluase(); } } - this.state = 3191; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { - case 1: - { - this.state = 3189; - this.match(PostgreSQLParser.KW_COLLATE); - this.state = 3190; - this.any_name(); - } - break; - } - this.state = 3195; + this.state = 3142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 3193; + this.state = 3140; + this.match(PostgreSQLParser.KW_COLLATE); + this.state = 3141; + this.any_name(); + } + break; + } + this.state = 3146; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { + case 1: + { + this.state = 3144; this.match(PostgreSQLParser.KW_WITH); - this.state = 3194; + this.state = 3145; this.match(PostgreSQLParser.KW_OPTIONS); } break; } - this.state = 3197; + this.state = 3148; this.colquallist(); } } @@ -13250,65 +13538,65 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3199; + this.state = 3150; this.column_name(); - this.state = 3200; + this.state = 3151; this.typename(); - this.state = 3202; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 280) { { - this.state = 3201; + this.state = 3152; this.create_generic_options(); } } - this.state = 3205; + this.state = 3156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 3204; + this.state = 3155; this.storageCluase(); } } - this.state = 3208; + this.state = 3159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 3207; + this.state = 3158; this.compressionCluase(); } } - this.state = 3212; + this.state = 3163; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 3210; + this.state = 3161; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 3211; + this.state = 3162; this.any_name(); } break; } - this.state = 3216; + this.state = 3167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3214; + this.state = 3165; this.match(PostgreSQLParser.KW_WITH); - this.state = 3215; + this.state = 3166; this.match(PostgreSQLParser.KW_OPTIONS); } } - this.state = 3218; + this.state = 3169; this.colquallist(); } } @@ -13332,9 +13620,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3220; + this.state = 3171; this.match(PostgreSQLParser.KW_COMPRESSION); - this.state = 3221; + this.state = 3172; this.colid(); } } @@ -13358,44 +13646,44 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3223; + this.state = 3174; this.match(PostgreSQLParser.KW_STORAGE); - this.state = 3230; + this.state = 3181; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 3224; + this.state = 3175; this.match(PostgreSQLParser.KW_PLAIN); } break; case 2: { - this.state = 3225; + this.state = 3176; this.match(PostgreSQLParser.KW_EXTERNAL); } break; case 3: { - this.state = 3226; + this.state = 3177; this.match(PostgreSQLParser.KW_EXTENDED); } break; case 4: { - this.state = 3227; + this.state = 3178; this.match(PostgreSQLParser.KW_MAIN); } break; case 5: { - this.state = 3228; + this.state = 3179; this.match(PostgreSQLParser.KW_DEFAULT); } break; case 6: { - this.state = 3229; + this.state = 3180; this.colid(); } break; @@ -13423,21 +13711,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3232; + this.state = 3183; this.column_name(); - this.state = 3235; + this.state = 3186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3233; + this.state = 3184; this.match(PostgreSQLParser.KW_WITH); - this.state = 3234; + this.state = 3185; this.match(PostgreSQLParser.KW_OPTIONS); } } - this.state = 3237; + this.state = 3188; this.colquallist(); } } @@ -13462,21 +13750,21 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3242; + this.state = 3193; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3239; + this.state = 3190; this.colconstraint(); } } } - this.state = 3244; + this.state = 3195; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); } } } @@ -13499,42 +13787,42 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 218, PostgreSQLParser.RULE_colconstraint); let _la: number; try { - this.state = 3263; + this.state = 3214; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3247; + this.state = 3198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 3245; + this.state = 3196; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 3246; + this.state = 3197; this.name(); } } - this.state = 3249; + this.state = 3200; this.colconstraintelem(); - this.state = 3251; + this.state = 3202; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { - this.state = 3250; + this.state = 3201; this.deferrable_trigger(); } break; } - this.state = 3254; + this.state = 3205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 3253; + this.state = 3204; this.initially_trigger(); } } @@ -13544,24 +13832,24 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3256; + this.state = 3207; this.colconstraintelem(); - this.state = 3258; + this.state = 3209; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 3257; + this.state = 3208; this.deferrable_trigger(); } break; } - this.state = 3261; + this.state = 3212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 3260; + this.state = 3211; this.initially_trigger(); } } @@ -13589,46 +13877,46 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 220, PostgreSQLParser.RULE_colconstraintelem); let _la: number; try { - this.state = 3323; + this.state = 3274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3265; + this.state = 3216; this.match(PostgreSQLParser.KW_NOT); - this.state = 3266; + this.state = 3217; this.match(PostgreSQLParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3267; + this.state = 3218; this.match(PostgreSQLParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3268; + this.state = 3219; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 3270; + this.state = 3221; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 3269; + this.state = 3220; this.opt_definition(); } break; } - this.state = 3273; + this.state = 3224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3272; + this.state = 3223; this.optconstablespace(); } } @@ -13638,45 +13926,45 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3275; + this.state = 3226; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 3277; + this.state = 3228; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: { - this.state = 3276; + this.state = 3227; this.nulls_distinct(); } break; } - this.state = 3279; + this.state = 3230; this.index_paramenters_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3280; + this.state = 3231; this.match(PostgreSQLParser.KW_PRIMARY); - this.state = 3281; + this.state = 3232; this.match(PostgreSQLParser.KW_KEY); - this.state = 3283; + this.state = 3234; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 3282; + this.state = 3233; this.opt_definition(); } break; } - this.state = 3286; + this.state = 3237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3285; + this.state = 3236; this.optconstablespace(); } } @@ -13686,20 +13974,20 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3288; + this.state = 3239; this.match(PostgreSQLParser.KW_CHECK); - this.state = 3289; + this.state = 3240; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3290; + this.state = 3241; this.a_expr(); - this.state = 3291; + this.state = 3242; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3293; + this.state = 3244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { - this.state = 3292; + this.state = 3243; this.opt_no_inherit(); } break; @@ -13709,34 +13997,34 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3295; + this.state = 3246; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 3296; + this.state = 3247; this.b_expr(0); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3297; + this.state = 3248; this.match(PostgreSQLParser.KW_GENERATED); - this.state = 3298; + this.state = 3249; this.generated_when(); - this.state = 3299; + this.state = 3250; this.match(PostgreSQLParser.KW_AS); - this.state = 3309; + this.state = 3260; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IDENTITY: { - this.state = 3300; + this.state = 3251; this.match(PostgreSQLParser.KW_IDENTITY); - this.state = 3302; + this.state = 3253; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 204, this.context) ) { case 1: { - this.state = 3301; + this.state = 3252; this.optparenthesizedseqoptlist(); } break; @@ -13745,13 +14033,13 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 3304; + this.state = 3255; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3305; + this.state = 3256; this.a_expr(); - this.state = 3306; + this.state = 3257; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3307; + this.state = 3258; this.match(PostgreSQLParser.KW_STORED); } break; @@ -13763,36 +14051,36 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3311; + this.state = 3262; this.match(PostgreSQLParser.KW_REFERENCES); - this.state = 3312; + this.state = 3263; this.qualified_name(); - this.state = 3314; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { - case 1: - { - this.state = 3313; - this.opt_column_list(); - } - break; - } - this.state = 3317; + this.state = 3265; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { case 1: { - this.state = 3316; + this.state = 3264; + this.opt_column_list(); + } + break; + } + this.state = 3268; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + case 1: + { + this.state = 3267; this.key_match(); } break; } - this.state = 3320; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3319; + this.state = 3270; this.key_actions(); } } @@ -13802,7 +14090,7 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3322; + this.state = 3273; this.opt_collate(); } break; @@ -13829,19 +14117,19 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3325; + this.state = 3276; this.match(PostgreSQLParser.KW_NULLS); - this.state = 3327; + this.state = 3278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 3326; + this.state = 3277; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 3329; + this.state = 3280; this.match(PostgreSQLParser.KW_DISTINCT); } } @@ -13863,22 +14151,22 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Generated_whenContext(this.context, this.state); this.enterRule(localContext, 224, PostgreSQLParser.RULE_generated_when); try { - this.state = 3334; + this.state = 3285; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALWAYS: this.enterOuterAlt(localContext, 1); { - this.state = 3331; + this.state = 3282; this.match(PostgreSQLParser.KW_ALWAYS); } break; case PostgreSQLParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 3332; + this.state = 3283; this.match(PostgreSQLParser.KW_BY); - this.state = 3333; + this.state = 3284; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -13904,22 +14192,22 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Deferrable_triggerContext(this.context, this.state); this.enterRule(localContext, 226, PostgreSQLParser.RULE_deferrable_trigger); try { - this.state = 3339; + this.state = 3290; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DEFERRABLE: this.enterOuterAlt(localContext, 1); { - this.state = 3336; + this.state = 3287; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case PostgreSQLParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 3337; + this.state = 3288; this.match(PostgreSQLParser.KW_NOT); - this.state = 3338; + this.state = 3289; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; @@ -13948,9 +14236,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3341; + this.state = 3292; this.match(PostgreSQLParser.KW_INITIALLY); - this.state = 3342; + this.state = 3293; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -13981,11 +14269,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3344; + this.state = 3295; this.match(PostgreSQLParser.KW_LIKE); - this.state = 3345; + this.state = 3296; this.qualified_name(); - this.state = 3346; + this.state = 3297; this.tablelikeoptionlist(); } } @@ -14010,13 +14298,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3352; + this.state = 3303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 200 || _la === 224) { { { - this.state = 3348; + this.state = 3299; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 224)) { this.errorHandler.recoverInline(this); @@ -14025,11 +14313,11 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3349; + this.state = 3300; this.tablelikeoption(); } } - this.state = 3354; + this.state = 3305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14056,7 +14344,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3355; + this.state = 3306; _la = this.tokenStream.LA(1); if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 342 || _la === 345 || _la === 438)) { this.errorHandler.recoverInline(this); @@ -14085,17 +14373,17 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TableconstraintContext(this.context, this.state); this.enterRule(localContext, 236, PostgreSQLParser.RULE_tableconstraint); try { - this.state = 3362; + this.state = 3313; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CONSTRAINT: this.enterOuterAlt(localContext, 1); { - this.state = 3357; + this.state = 3308; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 3358; + this.state = 3309; this.name(); - this.state = 3359; + this.state = 3310; this.constraintelem(); } break; @@ -14106,7 +14394,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 2); { - this.state = 3361; + this.state = 3312; this.constraintelem(); } break; @@ -14133,79 +14421,79 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 238, PostgreSQLParser.RULE_constraintelem); let _la: number; try { - this.state = 3450; + this.state = 3401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CHECK: this.enterOuterAlt(localContext, 1); { - this.state = 3364; + this.state = 3315; this.match(PostgreSQLParser.KW_CHECK); - this.state = 3365; + this.state = 3316; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3366; + this.state = 3317; this.a_expr(); - this.state = 3367; + this.state = 3318; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3368; + this.state = 3319; this.constraintattributespec(); } break; case PostgreSQLParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 3370; + this.state = 3321; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 3388; + this.state = 3339; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 3371; + this.state = 3322; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3372; + this.state = 3323; this.columnlist(); - this.state = 3373; + this.state = 3324; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3375; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { - case 1: - { - this.state = 3374; - this.opt_c_include(); - } - break; - } - this.state = 3378; + this.state = 3326; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 3377; + this.state = 3325; + this.opt_c_include(); + } + break; + } + this.state = 3329; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + case 1: + { + this.state = 3328; this.opt_definition(); } break; } - this.state = 3381; + this.state = 3332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3380; + this.state = 3331; this.optconstablespace(); } } - this.state = 3383; + this.state = 3334; this.constraintattributespec(); } break; case PostgreSQLParser.KW_USING: { - this.state = 3385; + this.state = 3336; this.existingindex(); - this.state = 3386; + this.state = 3337; this.constraintattributespec(); } break; @@ -14217,60 +14505,60 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_PRIMARY: this.enterOuterAlt(localContext, 3); { - this.state = 3390; + this.state = 3341; this.match(PostgreSQLParser.KW_PRIMARY); - this.state = 3391; + this.state = 3342; this.match(PostgreSQLParser.KW_KEY); - this.state = 3409; + this.state = 3360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 3392; + this.state = 3343; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3393; + this.state = 3344; this.columnlist(); - this.state = 3394; + this.state = 3345; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3396; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { - case 1: - { - this.state = 3395; - this.opt_c_include(); - } - break; - } - this.state = 3399; + this.state = 3347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 3398; + this.state = 3346; + this.opt_c_include(); + } + break; + } + this.state = 3350; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + case 1: + { + this.state = 3349; this.opt_definition(); } break; } - this.state = 3402; + this.state = 3353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3401; + this.state = 3352; this.optconstablespace(); } } - this.state = 3404; + this.state = 3355; this.constraintattributespec(); } break; case PostgreSQLParser.KW_USING: { - this.state = 3406; + this.state = 3357; this.existingindex(); - this.state = 3407; + this.state = 3358; this.constraintattributespec(); } break; @@ -14282,116 +14570,116 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 4); { - this.state = 3411; + this.state = 3362; this.match(PostgreSQLParser.KW_EXCLUDE); - this.state = 3413; + this.state = 3364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3412; + this.state = 3363; this.access_method_clause(); } } - this.state = 3415; + this.state = 3366; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3416; + this.state = 3367; this.exclusionconstraintlist(); - this.state = 3417; + this.state = 3368; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3419; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { - case 1: - { - this.state = 3418; - this.opt_c_include(); - } - break; - } - this.state = 3422; + this.state = 3370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 3421; + this.state = 3369; + this.opt_c_include(); + } + break; + } + this.state = 3373; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { + case 1: + { + this.state = 3372; this.opt_definition(); } break; } - this.state = 3425; + this.state = 3376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3424; + this.state = 3375; this.optconstablespace(); } } - this.state = 3428; + this.state = 3379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 3427; + this.state = 3378; this.exclusionwhereclause(); } } - this.state = 3430; + this.state = 3381; this.constraintattributespec(); } break; case PostgreSQLParser.KW_FOREIGN: this.enterOuterAlt(localContext, 5); { - this.state = 3432; + this.state = 3383; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 3433; + this.state = 3384; this.match(PostgreSQLParser.KW_KEY); - this.state = 3434; + this.state = 3385; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3435; + this.state = 3386; this.columnlist(); - this.state = 3436; + this.state = 3387; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3437; + this.state = 3388; this.match(PostgreSQLParser.KW_REFERENCES); - this.state = 3438; + this.state = 3389; this.qualified_name(); - this.state = 3440; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { - case 1: - { - this.state = 3439; - this.opt_column_list(); - } - break; - } - this.state = 3443; + this.state = 3391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 3442; + this.state = 3390; + this.opt_column_list(); + } + break; + } + this.state = 3394; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + case 1: + { + this.state = 3393; this.key_match(); } break; } - this.state = 3446; + this.state = 3397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3445; + this.state = 3396; this.key_actions(); } } - this.state = 3448; + this.state = 3399; this.constraintattributespec(); } break; @@ -14419,9 +14707,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3452; + this.state = 3403; this.match(PostgreSQLParser.KW_NO); - this.state = 3453; + this.state = 3404; this.match(PostgreSQLParser.KW_INHERIT); } } @@ -14445,11 +14733,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3455; + this.state = 3406; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3456; + this.state = 3407; this.columnlist(); - this.state = 3457; + this.state = 3408; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14474,25 +14762,25 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3459; + this.state = 3410; this.column_name(); - this.state = 3464; + this.state = 3415; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3460; + this.state = 3411; this.match(PostgreSQLParser.COMMA); - this.state = 3461; + this.state = 3412; this.column_name(); } } } - this.state = 3466; + this.state = 3417; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } } } @@ -14516,13 +14804,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3467; + this.state = 3418; this.match(PostgreSQLParser.KW_INCLUDE); - this.state = 3468; + this.state = 3419; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3469; + this.state = 3420; this.columnlist(); - this.state = 3470; + this.state = 3421; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14547,9 +14835,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3472; + this.state = 3423; this.match(PostgreSQLParser.KW_MATCH); - this.state = 3473; + this.state = 3424; _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 284 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -14581,21 +14869,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3475; + this.state = 3426; this.exclusionconstraintelem(); - this.state = 3480; + this.state = 3431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3476; + this.state = 3427; this.match(PostgreSQLParser.COMMA); - this.state = 3477; + this.state = 3428; this.exclusionconstraintelem(); } } - this.state = 3482; + this.state = 3433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14621,28 +14909,28 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3483; + this.state = 3434; this.index_elem(); - this.state = 3484; + this.state = 3435; this.match(PostgreSQLParser.KW_WITH); - this.state = 3491; + this.state = 3442; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 3485; + this.state = 3436; this.any_operator(); } break; case 2: { - this.state = 3486; + this.state = 3437; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 3487; + this.state = 3438; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3488; + this.state = 3439; this.any_operator(); - this.state = 3489; + this.state = 3440; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -14669,13 +14957,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3493; + this.state = 3444; this.match(PostgreSQLParser.KW_WHERE); - this.state = 3494; + this.state = 3445; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3495; + this.state = 3446; this.a_expr(); - this.state = 3496; + this.state = 3447; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14697,38 +14985,38 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Key_actionsContext(this.context, this.state); this.enterRule(localContext, 256, PostgreSQLParser.RULE_key_actions); try { - this.state = 3506; + this.state = 3457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3498; + this.state = 3449; this.key_update(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3499; + this.state = 3450; this.key_delete(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3500; + this.state = 3451; this.key_update(); - this.state = 3501; + this.state = 3452; this.key_delete(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3503; + this.state = 3454; this.key_delete(); - this.state = 3504; + this.state = 3455; this.key_update(); } break; @@ -14754,11 +15042,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3508; + this.state = 3459; this.match(PostgreSQLParser.KW_ON); - this.state = 3509; + this.state = 3460; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 3510; + this.state = 3461; this.key_action(); } } @@ -14782,11 +15070,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3463; this.match(PostgreSQLParser.KW_ON); - this.state = 3513; + this.state = 3464; this.match(PostgreSQLParser.KW_DELETE); - this.state = 3514; + this.state = 3465; this.key_action(); } } @@ -14809,38 +15097,38 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 262, PostgreSQLParser.RULE_key_action); let _la: number; try { - this.state = 3525; + this.state = 3476; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 1); { - this.state = 3516; + this.state = 3467; this.match(PostgreSQLParser.KW_NO); - this.state = 3517; + this.state = 3468; this.match(PostgreSQLParser.KW_ACTION); } break; case PostgreSQLParser.KW_RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 3518; + this.state = 3469; this.match(PostgreSQLParser.KW_RESTRICT); } break; case PostgreSQLParser.KW_CASCADE: this.enterOuterAlt(localContext, 3); { - this.state = 3519; + this.state = 3470; this.match(PostgreSQLParser.KW_CASCADE); } break; case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 3520; + this.state = 3471; this.match(PostgreSQLParser.KW_SET); - this.state = 3521; + this.state = 3472; _la = this.tokenStream.LA(1); if(!(_la === 53 || _la === 78)) { this.errorHandler.recoverInline(this); @@ -14849,12 +15137,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3523; + this.state = 3474; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 3522; + this.state = 3473; this.columnlist(); } break; @@ -14885,13 +15173,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3527; + this.state = 3478; this.match(PostgreSQLParser.KW_INHERITS); - this.state = 3528; + this.state = 3479; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3529; + this.state = 3480; this.qualified_name_list(); - this.state = 3530; + this.state = 3481; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14915,7 +15203,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3532; + this.state = 3483; this.partitionspec(); } } @@ -14939,17 +15227,17 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3534; + this.state = 3485; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 3535; + this.state = 3486; this.match(PostgreSQLParser.KW_BY); - this.state = 3536; + this.state = 3487; this.colid(); - this.state = 3537; + this.state = 3488; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3538; + this.state = 3489; this.part_params(); - this.state = 3539; + this.state = 3490; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -14974,21 +15262,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3541; + this.state = 3492; this.part_elem(); - this.state = 3546; + this.state = 3497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3542; + this.state = 3493; this.match(PostgreSQLParser.COMMA); - this.state = 3543; + this.state = 3494; this.part_elem(); } } - this.state = 3548; + this.state = 3499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15013,30 +15301,30 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 272, PostgreSQLParser.RULE_part_elem); let _la: number; try { - this.state = 3572; + this.state = 3523; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3549; + this.state = 3500; this.column_name(); - this.state = 3551; + this.state = 3502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 3550; + this.state = 3501; this.opt_collate(); } break; } - this.state = 3554; + this.state = 3505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3553; + this.state = 3504; this.opt_class(); } } @@ -15046,24 +15334,24 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3556; + this.state = 3507; this.func_expr_windowless(); - this.state = 3558; + this.state = 3509; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 3557; + this.state = 3508; this.opt_collate(); } break; } - this.state = 3561; + this.state = 3512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3560; + this.state = 3511; this.opt_class(); } } @@ -15073,28 +15361,28 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3563; + this.state = 3514; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3564; + this.state = 3515; this.a_expr(); - this.state = 3565; + this.state = 3516; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 3567; + this.state = 3518; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 3566; + this.state = 3517; this.opt_collate(); } break; } - this.state = 3570; + this.state = 3521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3569; + this.state = 3520; this.opt_class(); } } @@ -15123,9 +15411,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3574; + this.state = 3525; this.match(PostgreSQLParser.KW_USING); - this.state = 3575; + this.state = 3526; this.name(); } } @@ -15147,33 +15435,33 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new OptwithContext(this.context, this.state); this.enterRule(localContext, 276, PostgreSQLParser.RULE_optwith); try { - this.state = 3583; + this.state = 3534; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3577; + this.state = 3528; this.match(PostgreSQLParser.KW_WITH); - this.state = 3578; + this.state = 3529; this.reloptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3579; + this.state = 3530; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 3580; + this.state = 3531; this.match(PostgreSQLParser.KW_OIDS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3581; + this.state = 3532; this.match(PostgreSQLParser.KW_WITH); - this.state = 3582; + this.state = 3533; this.match(PostgreSQLParser.KW_OIDS); } break; @@ -15199,32 +15487,32 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3585; + this.state = 3536; this.match(PostgreSQLParser.KW_ON); - this.state = 3586; + this.state = 3537; this.match(PostgreSQLParser.KW_COMMIT); - this.state = 3592; + this.state = 3543; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DROP: { - this.state = 3587; + this.state = 3538; this.match(PostgreSQLParser.KW_DROP); } break; case PostgreSQLParser.KW_DELETE: { - this.state = 3588; + this.state = 3539; this.match(PostgreSQLParser.KW_DELETE); - this.state = 3589; + this.state = 3540; this.match(PostgreSQLParser.KW_ROWS); } break; case PostgreSQLParser.KW_PRESERVE: { - this.state = 3590; + this.state = 3541; this.match(PostgreSQLParser.KW_PRESERVE); - this.state = 3591; + this.state = 3542; this.match(PostgreSQLParser.KW_ROWS); } break; @@ -15253,9 +15541,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3594; + this.state = 3545; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 3595; + this.state = 3546; this.tablespace_name(); } } @@ -15280,32 +15568,32 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3598; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { - case 1: - { - this.state = 3597; - this.opt_include(); - } - break; - } - this.state = 3601; + this.state = 3549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 3600; + this.state = 3548; + this.opt_include(); + } + break; + } + this.state = 3552; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + case 1: + { + this.state = 3551; this.with_clause(); } break; } - this.state = 3604; + this.state = 3555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3603; + this.state = 3554; this.optconstablespace(); } } @@ -15332,13 +15620,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3606; + this.state = 3557; this.match(PostgreSQLParser.KW_USING); - this.state = 3607; + this.state = 3558; this.match(PostgreSQLParser.KW_INDEX); - this.state = 3608; + this.state = 3559; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 3609; + this.state = 3560; this.tablespace_name(); } } @@ -15362,11 +15650,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3611; + this.state = 3562; this.match(PostgreSQLParser.KW_USING); - this.state = 3612; + this.state = 3563; this.match(PostgreSQLParser.KW_INDEX); - this.state = 3613; + this.state = 3564; this.name(); } } @@ -15391,61 +15679,61 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3615; + this.state = 3566; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3616; + this.state = 3567; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 3621; + this.state = 3572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3618; + this.state = 3569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 3617; + this.state = 3568; this.opt_if_not_exists(); } break; } - this.state = 3620; + this.state = 3571; this.any_name(); } } - this.state = 3624; + this.state = 3575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3623; + this.state = 3574; this.opt_name_list(); } } - this.state = 3626; + this.state = 3577; this.match(PostgreSQLParser.KW_ON); - this.state = 3629; + this.state = 3580; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 3627; + this.state = 3578; this.column_expr_list(); } break; case 2: { - this.state = 3628; + this.state = 3579; this.expr_list(); } break; } - this.state = 3631; + this.state = 3582; this.match(PostgreSQLParser.KW_FROM); - this.state = 3632; + this.state = 3583; this.from_list(); } } @@ -15469,27 +15757,27 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3634; + this.state = 3585; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3635; + this.state = 3586; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 3637; + this.state = 3588; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 3636; + this.state = 3587; this.opt_if_exists(); } break; } - this.state = 3639; + this.state = 3590; this.any_name(); - this.state = 3640; + this.state = 3591; this.match(PostgreSQLParser.KW_SET); - this.state = 3641; + this.state = 3592; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 3642; + this.state = 3593; this.signediconst(); } } @@ -15514,42 +15802,42 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3644; + this.state = 3595; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3646; + this.state = 3597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 3645; + this.state = 3596; this.opttemp(); } } - this.state = 3648; + this.state = 3599; this.match(PostgreSQLParser.KW_TABLE); - this.state = 3650; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { - case 1: - { - this.state = 3649; - this.opt_if_not_exists(); - } - break; - } - this.state = 3652; - this.create_as_target(); - this.state = 3653; - this.match(PostgreSQLParser.KW_AS); - this.state = 3654; - this.selectstmt(); - this.state = 3656; + this.state = 3601; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 3655; + this.state = 3600; + this.opt_if_not_exists(); + } + break; + } + this.state = 3603; + this.create_as_target(); + this.state = 3604; + this.match(PostgreSQLParser.KW_AS); + this.state = 3605; + this.selectstmt(); + this.state = 3607; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + case 1: + { + this.state = 3606; this.opt_with_data(); } break; @@ -15577,54 +15865,54 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3658; + this.state = 3609; this.table_name_create(); - this.state = 3660; + this.state = 3611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3659; + this.state = 3610; this.opt_column_list(); } } - this.state = 3663; + this.state = 3614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3662; + this.state = 3613; this.table_access_method_clause(); } } - this.state = 3666; + this.state = 3617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 3665; + this.state = 3616; this.optwith(); } } - this.state = 3669; + this.state = 3620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 3668; + this.state = 3619; this.oncommitoption(); } } - this.state = 3672; + this.state = 3623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 3671; + this.state = 3622; this.opttablespace(); } } @@ -15651,22 +15939,22 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3674; + this.state = 3625; this.match(PostgreSQLParser.KW_WITH); - this.state = 3678; + this.state = 3629; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DATA: { - this.state = 3675; + this.state = 3626; this.match(PostgreSQLParser.KW_DATA); } break; case PostgreSQLParser.KW_NO: { - this.state = 3676; + this.state = 3627; this.match(PostgreSQLParser.KW_NO); - this.state = 3677; + this.state = 3628; this.match(PostgreSQLParser.KW_DATA); } break; @@ -15696,44 +15984,44 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3680; + this.state = 3631; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3682; + this.state = 3633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3681; + this.state = 3632; this.optnolog(); } } - this.state = 3684; + this.state = 3635; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 3685; + this.state = 3636; this.match(PostgreSQLParser.KW_VIEW); - this.state = 3687; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { - case 1: - { - this.state = 3686; - this.opt_if_not_exists(); - } - break; - } - this.state = 3689; - this.create_mv_target(); - this.state = 3690; - this.match(PostgreSQLParser.KW_AS); - this.state = 3691; - this.selectstmt(); - this.state = 3693; + this.state = 3638; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 3692; + this.state = 3637; + this.opt_if_not_exists(); + } + break; + } + this.state = 3640; + this.create_mv_target(); + this.state = 3641; + this.match(PostgreSQLParser.KW_AS); + this.state = 3642; + this.selectstmt(); + this.state = 3644; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + case 1: + { + this.state = 3643; this.opt_with_data(); } break; @@ -15761,44 +16049,44 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3695; + this.state = 3646; this.view_name_create(); - this.state = 3697; + this.state = 3648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3696; + this.state = 3647; this.opt_column_list(); } } - this.state = 3700; + this.state = 3651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3699; + this.state = 3650; this.table_access_method_clause(); } } - this.state = 3703; + this.state = 3654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3702; + this.state = 3653; this.opt_reloptions(); } } - this.state = 3706; + this.state = 3657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 3705; + this.state = 3656; this.opttablespace(); } } @@ -15825,7 +16113,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3708; + this.state = 3659; this.match(PostgreSQLParser.KW_UNLOGGED); } } @@ -15850,30 +16138,30 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3710; + this.state = 3661; this.match(PostgreSQLParser.KW_REFRESH); - this.state = 3711; + this.state = 3662; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 3712; + this.state = 3663; this.match(PostgreSQLParser.KW_VIEW); - this.state = 3714; + this.state = 3665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 3713; + this.state = 3664; this.opt_concurrently(); } } - this.state = 3716; + this.state = 3667; this.view_name(); - this.state = 3718; + this.state = 3669; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 3717; + this.state = 3668; this.opt_with_data(); } break; @@ -15901,38 +16189,38 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3720; + this.state = 3671; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3722; + this.state = 3673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 3721; + this.state = 3672; this.opttemp(); } } - this.state = 3724; + this.state = 3675; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 3726; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { - case 1: - { - this.state = 3725; - this.opt_if_not_exists(); - } - break; - } - this.state = 3728; - this.qualified_name(); - this.state = 3730; + this.state = 3677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 3729; + this.state = 3676; + this.opt_if_not_exists(); + } + break; + } + this.state = 3679; + this.qualified_name(); + this.state = 3681; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + case 1: + { + this.state = 3680; this.optseqoptlist(); } break; @@ -15959,23 +16247,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3732; + this.state = 3683; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3733; + this.state = 3684; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 3735; + this.state = 3686; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 3734; + this.state = 3685; this.opt_if_exists(); } break; } - this.state = 3737; + this.state = 3688; this.qualified_name(); - this.state = 3738; + this.state = 3689; this.seqoptlist(); } } @@ -15999,7 +16287,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3740; + this.state = 3691; this.seqoptlist(); } } @@ -16023,11 +16311,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3742; + this.state = 3693; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3743; + this.state = 3694; this.seqoptlist(); - this.state = 3744; + this.state = 3695; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -16052,7 +16340,7 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3747; + this.state = 3698; this.errorHandler.sync(this); alternative = 1; do { @@ -16060,7 +16348,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 3746; + this.state = 3697; this.seqoptelem(); } } @@ -16068,9 +16356,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 3749; + this.state = 3700; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 277, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 278, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -16093,77 +16381,77 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 316, PostgreSQLParser.RULE_seqoptelem); let _la: number; try { - this.state = 3785; + this.state = 3736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AS: this.enterOuterAlt(localContext, 1); { - this.state = 3751; + this.state = 3702; this.match(PostgreSQLParser.KW_AS); - this.state = 3752; + this.state = 3703; this.simpletypename(); } break; case PostgreSQLParser.KW_CACHE: this.enterOuterAlt(localContext, 2); { - this.state = 3753; + this.state = 3704; this.match(PostgreSQLParser.KW_CACHE); - this.state = 3754; + this.state = 3705; this.numericonly(); } break; case PostgreSQLParser.KW_CYCLE: this.enterOuterAlt(localContext, 3); { - this.state = 3755; + this.state = 3706; this.match(PostgreSQLParser.KW_CYCLE); } break; case PostgreSQLParser.KW_INCREMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3756; + this.state = 3707; this.match(PostgreSQLParser.KW_INCREMENT); - this.state = 3758; + this.state = 3709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 3757; + this.state = 3708; this.opt_by(); } } - this.state = 3760; + this.state = 3711; this.numericonly(); } break; case PostgreSQLParser.KW_MAXVALUE: this.enterOuterAlt(localContext, 5); { - this.state = 3761; + this.state = 3712; this.match(PostgreSQLParser.KW_MAXVALUE); - this.state = 3762; + this.state = 3713; this.numericonly(); } break; case PostgreSQLParser.KW_MINVALUE: this.enterOuterAlt(localContext, 6); { - this.state = 3763; + this.state = 3714; this.match(PostgreSQLParser.KW_MINVALUE); - this.state = 3764; + this.state = 3715; this.numericonly(); } break; case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 7); { - this.state = 3765; + this.state = 3716; this.match(PostgreSQLParser.KW_NO); - this.state = 3766; + this.state = 3717; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -16177,65 +16465,65 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OWNED: this.enterOuterAlt(localContext, 8); { - this.state = 3767; + this.state = 3718; this.match(PostgreSQLParser.KW_OWNED); - this.state = 3768; + this.state = 3719; this.match(PostgreSQLParser.KW_BY); - this.state = 3769; - this.table_column_name(); + this.state = 3720; + this.column_name(); } break; case PostgreSQLParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 9); { - this.state = 3770; + this.state = 3721; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 3771; + this.state = 3722; this.match(PostgreSQLParser.KW_NAME); - this.state = 3772; + this.state = 3723; this.any_name(); } break; case PostgreSQLParser.KW_START: this.enterOuterAlt(localContext, 10); { - this.state = 3773; + this.state = 3724; this.match(PostgreSQLParser.KW_START); - this.state = 3775; + this.state = 3726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3774; + this.state = 3725; this.opt_with(); } } - this.state = 3777; + this.state = 3728; this.numericonly(); } break; case PostgreSQLParser.KW_RESTART: this.enterOuterAlt(localContext, 11); { - this.state = 3778; + this.state = 3729; this.match(PostgreSQLParser.KW_RESTART); - this.state = 3780; + this.state = 3731; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 3779; + this.state = 3730; this.opt_with(); } break; } - this.state = 3783; + this.state = 3734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 571 || _la === 573) { { - this.state = 3782; + this.state = 3733; this.numericonly(); } } @@ -16266,7 +16554,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3787; + this.state = 3738; this.match(PostgreSQLParser.KW_BY); } } @@ -16288,38 +16576,38 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new NumericonlyContext(this.context, this.state); this.enterRule(localContext, 320, PostgreSQLParser.RULE_numericonly); try { - this.state = 3795; + this.state = 3746; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3789; + this.state = 3740; this.fconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3790; + this.state = 3741; this.match(PostgreSQLParser.PLUS); - this.state = 3791; + this.state = 3742; this.fconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3792; + this.state = 3743; this.match(PostgreSQLParser.MINUS); - this.state = 3793; + this.state = 3744; this.fconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3794; + this.state = 3745; this.signediconst(); } break; @@ -16346,21 +16634,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3797; + this.state = 3748; this.numericonly(); - this.state = 3802; + this.state = 3753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3798; + this.state = 3749; this.match(PostgreSQLParser.COMMA); - this.state = 3799; + this.state = 3750; this.numericonly(); } } - this.state = 3804; + this.state = 3755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16387,67 +16675,67 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3805; + this.state = 3756; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3807; + this.state = 3758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3806; + this.state = 3757; this.opt_or_replace(); } } - this.state = 3810; + this.state = 3761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 359) { { - this.state = 3809; + this.state = 3760; this.opt_trusted(); } } - this.state = 3813; + this.state = 3764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3812; + this.state = 3763; this.opt_procedural(); } } - this.state = 3815; + this.state = 3766; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 3816; + this.state = 3767; this.name(); - this.state = 3825; + this.state = 3776; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 3817; + this.state = 3768; this.match(PostgreSQLParser.KW_HANDLER); - this.state = 3818; + this.state = 3769; this.handler_name(); - this.state = 3820; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { - case 1: - { - this.state = 3819; - this.opt_inline_handler(); - } - break; - } - this.state = 3823; + this.state = 3771; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: { - this.state = 3822; + this.state = 3770; + this.opt_inline_handler(); + } + break; + } + this.state = 3774; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + case 1: + { + this.state = 3773; this.opt_validator(); } break; @@ -16477,7 +16765,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3827; + this.state = 3778; this.match(PostgreSQLParser.KW_TRUSTED); } } @@ -16502,14 +16790,14 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3829; + this.state = 3780; this.name(); - this.state = 3831; + this.state = 3782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 3830; + this.state = 3781; this.attrs(); } } @@ -16536,9 +16824,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3833; + this.state = 3784; this.match(PostgreSQLParser.KW_INLINE); - this.state = 3834; + this.state = 3785; this.handler_name(); } } @@ -16560,24 +16848,24 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Validator_clauseContext(this.context, this.state); this.enterRule(localContext, 332, PostgreSQLParser.RULE_validator_clause); try { - this.state = 3840; + this.state = 3791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VALIDATOR: this.enterOuterAlt(localContext, 1); { - this.state = 3836; + this.state = 3787; this.match(PostgreSQLParser.KW_VALIDATOR); - this.state = 3837; + this.state = 3788; this.handler_name(); } break; case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 3838; + this.state = 3789; this.match(PostgreSQLParser.KW_NO); - this.state = 3839; + this.state = 3790; this.match(PostgreSQLParser.KW_VALIDATOR); } break; @@ -16605,7 +16893,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3842; + this.state = 3793; this.validator_clause(); } } @@ -16629,7 +16917,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3844; + this.state = 3795; this.match(PostgreSQLParser.KW_PROCEDURAL); } } @@ -16654,32 +16942,32 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3846; + this.state = 3797; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3847; + this.state = 3798; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 3848; + this.state = 3799; this.tablespace_name(); - this.state = 3850; + this.state = 3801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 3849; + this.state = 3800; this.opttablespaceowner(); } } - this.state = 3852; + this.state = 3803; this.match(PostgreSQLParser.KW_LOCATION); - this.state = 3853; + this.state = 3804; this.sconst(); - this.state = 3855; + this.state = 3806; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 3854; + this.state = 3805; this.opt_reloptions(); } break; @@ -16706,9 +16994,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3857; + this.state = 3808; this.match(PostgreSQLParser.KW_OWNER); - this.state = 3858; + this.state = 3809; this.rolespec(); } } @@ -16732,33 +17020,33 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3860; + this.state = 3811; this.match(PostgreSQLParser.KW_CREATE); - this.state = 3861; + this.state = 3812; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3863; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { - case 1: - { - this.state = 3862; - this.opt_if_not_exists(); - } - break; - } - this.state = 3865; - this.name(); - this.state = 3867; + this.state = 3814; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 3866; + this.state = 3813; + this.opt_if_not_exists(); + } + break; + } + this.state = 3816; + this.name(); + this.state = 3818; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + case 1: + { + this.state = 3817; this.opt_with(); } break; } - this.state = 3869; + this.state = 3820; this.create_extension_opt_list(); } } @@ -16783,21 +17071,21 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3874; + this.state = 3825; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 298, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3871; + this.state = 3822; this.create_extension_opt_item(); } } } - this.state = 3876; + this.state = 3827; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 298, this.context); } } } @@ -16819,40 +17107,40 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Create_extension_opt_itemContext(this.context, this.state); this.enterRule(localContext, 346, PostgreSQLParser.RULE_create_extension_opt_item); try { - this.state = 3884; + this.state = 3835; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SCHEMA: this.enterOuterAlt(localContext, 1); { - this.state = 3877; + this.state = 3828; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 3878; + this.state = 3829; this.schema_name(); } break; case PostgreSQLParser.KW_VERSION: this.enterOuterAlt(localContext, 2); { - this.state = 3879; + this.state = 3830; this.match(PostgreSQLParser.KW_VERSION); - this.state = 3880; + this.state = 3831; this.nonreservedword_or_sconst(); } break; case PostgreSQLParser.KW_FROM: this.enterOuterAlt(localContext, 3); { - this.state = 3881; + this.state = 3832; this.match(PostgreSQLParser.KW_FROM); - this.state = 3882; + this.state = 3833; this.nonreservedword_or_sconst(); } break; case PostgreSQLParser.KW_CASCADE: this.enterOuterAlt(localContext, 4); { - this.state = 3883; + this.state = 3834; this.match(PostgreSQLParser.KW_CASCADE); } break; @@ -16880,15 +17168,15 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3886; + this.state = 3837; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3887; + this.state = 3838; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3888; + this.state = 3839; this.name(); - this.state = 3889; + this.state = 3840; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 3890; + this.state = 3841; this.alter_extension_opt_list(); } } @@ -16913,17 +17201,17 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3895; + this.state = 3846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 94) { { { - this.state = 3892; + this.state = 3843; this.alter_extension_opt_item(); } } - this.state = 3897; + this.state = 3848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16949,9 +17237,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 3898; + this.state = 3849; this.match(PostgreSQLParser.KW_TO); - this.state = 3899; + this.state = 3850; this.nonreservedword_or_sconst(); } } @@ -16973,42 +17261,158 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new AlterextensioncontentsstmtContext(this.context, this.state); this.enterRule(localContext, 354, PostgreSQLParser.RULE_alterextensioncontentsstmt); try { - this.state = 4003; + this.state = 3954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3901; + this.state = 3852; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3902; + this.state = 3853; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3903; + this.state = 3854; this.name(); - this.state = 3904; + this.state = 3855; this.add_drop(); - this.state = 3905; + this.state = 3856; this.object_type_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3907; + this.state = 3858; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3908; + this.state = 3859; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3909; + this.state = 3860; this.name(); - this.state = 3910; + this.state = 3861; this.add_drop(); - this.state = 3911; + this.state = 3862; this.object_type_any_name(); } break; case 3: this.enterOuterAlt(localContext, 3); { + this.state = 3864; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3865; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3866; + this.name(); + this.state = 3867; + this.add_drop(); + this.state = 3868; + this.match(PostgreSQLParser.KW_AGGREGATE); + this.state = 3869; + this.aggregate_with_argtypes(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 3871; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3872; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3873; + this.name(); + this.state = 3874; + this.add_drop(); + this.state = 3875; + this.match(PostgreSQLParser.KW_CAST); + this.state = 3876; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 3877; + this.typename(); + this.state = 3878; + this.match(PostgreSQLParser.KW_AS); + this.state = 3879; + this.typename(); + this.state = 3880; + this.match(PostgreSQLParser.CLOSE_PAREN); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 3882; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3883; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3884; + this.name(); + this.state = 3885; + this.add_drop(); + this.state = 3886; + this.match(PostgreSQLParser.KW_DOMAIN); + this.state = 3887; + this.typename(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 3889; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3890; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3891; + this.name(); + this.state = 3892; + this.add_drop(); + this.state = 3893; + this.match(PostgreSQLParser.KW_FUNCTION); + this.state = 3894; + this.function_with_argtypes(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 3896; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3897; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3898; + this.name(); + this.state = 3899; + this.add_drop(); + this.state = 3900; + this.match(PostgreSQLParser.KW_OPERATOR); + this.state = 3901; + this.operator_with_argtypes(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 3903; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 3904; + this.match(PostgreSQLParser.KW_EXTENSION); + this.state = 3905; + this.name(); + this.state = 3906; + this.add_drop(); + this.state = 3907; + this.match(PostgreSQLParser.KW_OPERATOR); + this.state = 3908; + this.match(PostgreSQLParser.KW_CLASS); + this.state = 3909; + this.any_name(); + this.state = 3910; + this.match(PostgreSQLParser.KW_USING); + this.state = 3911; + this.name(); + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { this.state = 3913; this.match(PostgreSQLParser.KW_ALTER); this.state = 3914; @@ -17018,204 +17422,88 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 3916; this.add_drop(); this.state = 3917; - this.match(PostgreSQLParser.KW_AGGREGATE); + this.match(PostgreSQLParser.KW_OPERATOR); this.state = 3918; - this.aggregate_with_argtypes(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3920; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3921; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3922; - this.name(); - this.state = 3923; - this.add_drop(); - this.state = 3924; - this.match(PostgreSQLParser.KW_CAST); - this.state = 3925; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 3926; - this.typename(); - this.state = 3927; - this.match(PostgreSQLParser.KW_AS); - this.state = 3928; - this.typename(); - this.state = 3929; - this.match(PostgreSQLParser.CLOSE_PAREN); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 3931; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3932; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3933; - this.name(); - this.state = 3934; - this.add_drop(); - this.state = 3935; - this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 3936; - this.typename(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 3938; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3939; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3940; - this.name(); - this.state = 3941; - this.add_drop(); - this.state = 3942; - this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 3943; - this.function_with_argtypes(); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 3945; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3946; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3947; - this.name(); - this.state = 3948; - this.add_drop(); - this.state = 3949; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 3950; - this.operator_with_argtypes(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 3952; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3953; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3954; - this.name(); - this.state = 3955; - this.add_drop(); - this.state = 3956; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 3957; - this.match(PostgreSQLParser.KW_CLASS); - this.state = 3958; - this.any_name(); - this.state = 3959; - this.match(PostgreSQLParser.KW_USING); - this.state = 3960; - this.name(); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 3962; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 3963; - this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3964; - this.name(); - this.state = 3965; - this.add_drop(); - this.state = 3966; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 3967; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 3968; + this.state = 3919; this.any_name(); - this.state = 3969; + this.state = 3920; this.match(PostgreSQLParser.KW_USING); - this.state = 3970; + this.state = 3921; this.name(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3972; + this.state = 3923; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3973; + this.state = 3924; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3974; + this.state = 3925; this.name(); - this.state = 3975; + this.state = 3926; this.add_drop(); - this.state = 3976; + this.state = 3927; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 3977; + this.state = 3928; this.procedure_with_argtypes(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3979; + this.state = 3930; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3980; + this.state = 3931; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3981; + this.state = 3932; this.name(); - this.state = 3982; + this.state = 3933; this.add_drop(); - this.state = 3983; + this.state = 3934; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 3984; + this.state = 3935; this.routine_with_argtypes(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3986; + this.state = 3937; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3987; + this.state = 3938; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3988; + this.state = 3939; this.name(); - this.state = 3989; + this.state = 3940; this.add_drop(); - this.state = 3990; + this.state = 3941; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 3991; + this.state = 3942; this.match(PostgreSQLParser.KW_FOR); - this.state = 3992; + this.state = 3943; this.typename(); - this.state = 3993; + this.state = 3944; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 3994; + this.state = 3945; this.name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3996; + this.state = 3947; this.match(PostgreSQLParser.KW_ALTER); - this.state = 3997; + this.state = 3948; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 3998; + this.state = 3949; this.name(); - this.state = 3999; + this.state = 3950; this.add_drop(); - this.state = 4000; + this.state = 3951; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4001; + this.state = 3952; this.typename(); } break; @@ -17241,32 +17529,32 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4005; + this.state = 3956; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4006; + this.state = 3957; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4007; + this.state = 3958; this.match(PostgreSQLParser.KW_DATA); - this.state = 4008; + this.state = 3959; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 4009; + this.state = 3960; this.name(); - this.state = 4011; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { - case 1: - { - this.state = 4010; - this.opt_fdw_options(); - } - break; - } - this.state = 4014; + this.state = 3962; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 4013; + this.state = 3961; + this.opt_fdw_options(); + } + break; + } + this.state = 3965; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + case 1: + { + this.state = 3964; this.create_generic_options(); } break; @@ -17291,42 +17579,42 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Fdw_optionContext(this.context, this.state); this.enterRule(localContext, 358, PostgreSQLParser.RULE_fdw_option); try { - this.state = 4024; + this.state = 3975; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 3967; this.match(PostgreSQLParser.KW_HANDLER); - this.state = 4017; + this.state = 3968; this.handler_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4018; + this.state = 3969; this.match(PostgreSQLParser.KW_NO); - this.state = 4019; + this.state = 3970; this.match(PostgreSQLParser.KW_HANDLER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4020; + this.state = 3971; this.match(PostgreSQLParser.KW_VALIDATOR); - this.state = 4021; + this.state = 3972; this.handler_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4022; + this.state = 3973; this.match(PostgreSQLParser.KW_NO); - this.state = 4023; + this.state = 3974; this.match(PostgreSQLParser.KW_VALIDATOR); } break; @@ -17353,7 +17641,7 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4027; + this.state = 3978; this.errorHandler.sync(this); alternative = 1; do { @@ -17361,7 +17649,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 4026; + this.state = 3977; this.fdw_option(); } } @@ -17369,9 +17657,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4029; + this.state = 3980; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 304, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 305, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -17395,7 +17683,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4031; + this.state = 3982; this.fdw_options(); } } @@ -17418,50 +17706,50 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 364, PostgreSQLParser.RULE_alterfdwstmt); let _la: number; try { - this.state = 4050; + this.state = 4001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4033; + this.state = 3984; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4034; + this.state = 3985; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4035; + this.state = 3986; this.match(PostgreSQLParser.KW_DATA); - this.state = 4036; + this.state = 3987; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 4037; + this.state = 3988; this.name(); - this.state = 4039; + this.state = 3990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215 || _la === 269 || _la === 373) { { - this.state = 4038; + this.state = 3989; this.opt_fdw_options(); } } - this.state = 4041; + this.state = 3992; this.alter_generic_options(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4043; + this.state = 3994; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4044; + this.state = 3995; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4045; + this.state = 3996; this.match(PostgreSQLParser.KW_DATA); - this.state = 4046; + this.state = 3997; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 4047; + this.state = 3998; this.name(); - this.state = 4048; + this.state = 3999; this.fdw_options(); } break; @@ -17487,13 +17775,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4052; + this.state = 4003; this.match(PostgreSQLParser.KW_OPTIONS); - this.state = 4053; + this.state = 4004; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4054; + this.state = 4005; this.generic_option_list(); - this.state = 4055; + this.state = 4006; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -17518,21 +17806,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4057; + this.state = 4008; this.generic_option_elem(); - this.state = 4062; + this.state = 4013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4058; + this.state = 4009; this.match(PostgreSQLParser.COMMA); - this.state = 4059; + this.state = 4010; this.generic_option_elem(); } } - this.state = 4064; + this.state = 4015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17558,13 +17846,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4065; + this.state = 4016; this.match(PostgreSQLParser.KW_OPTIONS); - this.state = 4066; + this.state = 4017; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4067; + this.state = 4018; this.alter_generic_option_list(); - this.state = 4068; + this.state = 4019; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -17589,21 +17877,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4070; + this.state = 4021; this.alter_generic_option_elem(); - this.state = 4075; + this.state = 4026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4071; + this.state = 4022; this.match(PostgreSQLParser.COMMA); - this.state = 4072; + this.state = 4023; this.alter_generic_option_elem(); } } - this.state = 4077; + this.state = 4028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17627,40 +17915,40 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Alter_generic_option_elemContext(this.context, this.state); this.enterRule(localContext, 374, PostgreSQLParser.RULE_alter_generic_option_elem); try { - this.state = 4085; + this.state = 4036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4078; + this.state = 4029; this.generic_option_elem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4079; + this.state = 4030; this.match(PostgreSQLParser.KW_SET); - this.state = 4080; + this.state = 4031; this.generic_option_elem(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4081; + this.state = 4032; this.match(PostgreSQLParser.KW_ADD); - this.state = 4082; + this.state = 4033; this.generic_option_elem(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4083; + this.state = 4034; this.match(PostgreSQLParser.KW_DROP); - this.state = 4084; + this.state = 4035; this.generic_option_elem(); } break; @@ -17686,9 +17974,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4087; + this.state = 4038; this.generic_option_name(); - this.state = 4088; + this.state = 4039; this.generic_option_arg(); } } @@ -17712,7 +18000,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4090; + this.state = 4041; this.collabel(); } } @@ -17736,7 +18024,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4092; + this.state = 4043; this.sconst(); } } @@ -17761,56 +18049,56 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4094; + this.state = 4045; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4095; + this.state = 4046; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4097; + this.state = 4048; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 4096; + this.state = 4047; this.opt_if_not_exists(); } break; } - this.state = 4099; + this.state = 4050; this.name(); - this.state = 4101; + this.state = 4052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 4100; + this.state = 4051; this.opt_type(); } } - this.state = 4104; + this.state = 4055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 4103; + this.state = 4054; this.opt_foreign_server_version(); } } - this.state = 4106; + this.state = 4057; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4107; + this.state = 4058; this.match(PostgreSQLParser.KW_DATA); - this.state = 4108; + this.state = 4059; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 4109; + this.state = 4060; this.name(); - this.state = 4111; + this.state = 4062; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 4110; + this.state = 4061; this.create_generic_options(); } break; @@ -17837,9 +18125,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4113; + this.state = 4064; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4114; + this.state = 4065; this.sconst(); } } @@ -17863,9 +18151,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4116; + this.state = 4067; this.match(PostgreSQLParser.KW_VERSION); - this.state = 4119; + this.state = 4070; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -17873,13 +18161,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 4117; + this.state = 4068; this.sconst(); } break; case PostgreSQLParser.KW_NULL: { - this.state = 4118; + this.state = 4069; this.match(PostgreSQLParser.KW_NULL); } break; @@ -17908,7 +18196,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4121; + this.state = 4072; this.foreign_server_version(); } } @@ -17932,31 +18220,31 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4123; + this.state = 4074; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4124; + this.state = 4075; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4125; + this.state = 4076; this.name(); - this.state = 4131; + this.state = 4082; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_OPTIONS: { - this.state = 4126; + this.state = 4077; this.alter_generic_options(); } break; case PostgreSQLParser.KW_VERSION: { - this.state = 4127; + this.state = 4078; this.foreign_server_version(); - this.state = 4129; + this.state = 4080; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 4128; + this.state = 4079; this.alter_generic_options(); } break; @@ -17987,64 +18275,64 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 392, PostgreSQLParser.RULE_createforeigntablestmt); let _la: number; try { - this.state = 4172; + this.state = 4123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4133; + this.state = 4084; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4134; + this.state = 4085; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4135; + this.state = 4086; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4137; + this.state = 4088; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 4136; + this.state = 4087; this.opt_if_not_exists(); } break; } - this.state = 4139; + this.state = 4090; this.table_name_create(); - this.state = 4140; + this.state = 4091; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4142; + this.state = 4093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1360010757) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491969) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 24575) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 1360008709) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491969) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 24575) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4141; + this.state = 4092; this.opttableelementlist(); } } - this.state = 4144; + this.state = 4095; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 4146; + this.state = 4097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 4145; + this.state = 4096; this.optinherit(); } } - this.state = 4148; + this.state = 4099; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4149; + this.state = 4100; this.name(); - this.state = 4151; + this.state = 4102; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { - this.state = 4150; + this.state = 4101; this.create_generic_options(); } break; @@ -18054,52 +18342,52 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4153; + this.state = 4104; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4154; + this.state = 4105; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4155; + this.state = 4106; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4157; + this.state = 4108; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { - this.state = 4156; + this.state = 4107; this.opt_if_not_exists(); } break; } - this.state = 4159; + this.state = 4110; this.table_name_create(); - this.state = 4160; + this.state = 4111; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 4161; + this.state = 4112; this.match(PostgreSQLParser.KW_OF); - this.state = 4162; + this.state = 4113; this.table_name(); - this.state = 4164; + this.state = 4115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4163; + this.state = 4114; this.opttypedtableelementlist(); } } - this.state = 4166; + this.state = 4117; this.partitionboundspec(); - this.state = 4167; + this.state = 4118; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4168; + this.state = 4119; this.name(); - this.state = 4170; + this.state = 4121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 4169; + this.state = 4120; this.create_generic_options(); } break; @@ -18129,40 +18417,40 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4174; + this.state = 4125; this.match(PostgreSQLParser.KW_IMPORT); - this.state = 4175; + this.state = 4126; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4176; + this.state = 4127; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 4177; + this.state = 4128; this.schema_name(); - this.state = 4179; + this.state = 4130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59 || _la === 74) { { - this.state = 4178; + this.state = 4129; this.import_qualification(); } } - this.state = 4181; + this.state = 4132; this.match(PostgreSQLParser.KW_FROM); - this.state = 4182; + this.state = 4133; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4183; + this.state = 4134; this.name(); - this.state = 4184; + this.state = 4135; this.match(PostgreSQLParser.KW_INTO); - this.state = 4185; + this.state = 4136; this.name(); - this.state = 4187; + this.state = 4138; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 4186; + this.state = 4137; this.create_generic_options(); } break; @@ -18187,22 +18475,22 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Import_qualification_typeContext(this.context, this.state); this.enterRule(localContext, 396, PostgreSQLParser.RULE_import_qualification_type); try { - this.state = 4192; + this.state = 4143; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LIMIT: this.enterOuterAlt(localContext, 1); { - this.state = 4189; + this.state = 4140; this.match(PostgreSQLParser.KW_LIMIT); - this.state = 4190; + this.state = 4141; this.match(PostgreSQLParser.KW_TO); } break; case PostgreSQLParser.KW_EXCEPT: this.enterOuterAlt(localContext, 2); { - this.state = 4191; + this.state = 4142; this.match(PostgreSQLParser.KW_EXCEPT); } break; @@ -18230,13 +18518,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4194; + this.state = 4145; this.import_qualification_type(); - this.state = 4195; + this.state = 4146; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4196; + this.state = 4147; this.relation_expr_list(); - this.state = 4197; + this.state = 4148; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -18261,36 +18549,36 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4199; + this.state = 4150; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4200; + this.state = 4151; this.match(PostgreSQLParser.KW_USER); - this.state = 4201; + this.state = 4152; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 4203; + this.state = 4154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 4202; + this.state = 4153; this.opt_if_not_exists(); } } - this.state = 4205; + this.state = 4156; this.match(PostgreSQLParser.KW_FOR); - this.state = 4206; + this.state = 4157; this.auth_ident(); - this.state = 4207; + this.state = 4158; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4208; + this.state = 4159; this.name(); - this.state = 4210; + this.state = 4161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 4209; + this.state = 4160; this.create_generic_options(); } break; @@ -18315,13 +18603,12 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Auth_identContext(this.context, this.state); this.enterRule(localContext, 402, PostgreSQLParser.RULE_auth_ident); try { - this.state = 4214; + this.state = 4165; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_ROLE: case PostgreSQLParser.KW_CURRENT_USER: @@ -18746,14 +19033,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 4212; + this.state = 4163; this.rolespec(); } break; case PostgreSQLParser.KW_USER: this.enterOuterAlt(localContext, 2); { - this.state = 4213; + this.state = 4164; this.match(PostgreSQLParser.KW_USER); } break; @@ -18781,21 +19068,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4216; + this.state = 4167; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4217; + this.state = 4168; this.match(PostgreSQLParser.KW_USER); - this.state = 4218; + this.state = 4169; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 4219; + this.state = 4170; this.match(PostgreSQLParser.KW_FOR); - this.state = 4220; + this.state = 4171; this.auth_ident(); - this.state = 4221; + this.state = 4172; this.match(PostgreSQLParser.KW_SERVER); - this.state = 4222; + this.state = 4173; this.name(); - this.state = 4223; + this.state = 4174; this.alter_generic_options(); } } @@ -18820,62 +19107,62 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4225; + this.state = 4176; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4226; + this.state = 4177; this.match(PostgreSQLParser.KW_POLICY); - this.state = 4227; + this.state = 4178; this.name(); - this.state = 4228; + this.state = 4179; this.match(PostgreSQLParser.KW_ON); - this.state = 4229; + this.state = 4180; this.qualified_name(); - this.state = 4231; + this.state = 4182; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: { - this.state = 4230; + this.state = 4181; this.rowsecuritydefaultpermissive(); } break; } - this.state = 4234; + this.state = 4185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4233; + this.state = 4184; this.rowsecuritydefaultforcmd(); } } - this.state = 4237; + this.state = 4188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 4236; + this.state = 4187; this.rowsecuritydefaulttorole(); } } - this.state = 4240; + this.state = 4191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4239; + this.state = 4190; this.rowsecurityoptionalexpr(); } } - this.state = 4243; + this.state = 4194; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 4242; + this.state = 4193; this.rowsecurityoptionalwithcheck(); } break; @@ -18903,42 +19190,42 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4245; + this.state = 4196; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4246; + this.state = 4197; this.match(PostgreSQLParser.KW_POLICY); - this.state = 4247; + this.state = 4198; this.name(); - this.state = 4248; + this.state = 4199; this.match(PostgreSQLParser.KW_ON); - this.state = 4249; + this.state = 4200; this.qualified_name(); - this.state = 4251; + this.state = 4202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 4250; + this.state = 4201; this.rowsecurityoptionaltorole(); } } - this.state = 4254; + this.state = 4205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4253; + this.state = 4204; this.rowsecurityoptionalexpr(); } } - this.state = 4257; + this.state = 4208; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { case 1: { - this.state = 4256; + this.state = 4207; this.rowsecurityoptionalwithcheck(); } break; @@ -18966,23 +19253,23 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4259; + this.state = 4210; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4260; + this.state = 4211; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 4261; + this.state = 4212; this.procedure_name(); - this.state = 4263; + this.state = 4214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4262; + this.state = 4213; this.func_args(); } } - this.state = 4265; + this.state = 4216; this.procedure_cluase(); } } @@ -19006,36 +19293,36 @@ export class PostgreSQLParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 4293; + this.state = 4244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4267; + this.state = 4218; this.procedure_action(); - this.state = 4271; + this.state = 4222; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 340, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 341, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4268; + this.state = 4219; this.procedure_action(); } } } - this.state = 4273; + this.state = 4224; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 340, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 341, this.context); } - this.state = 4275; + this.state = 4226; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: { - this.state = 4274; + this.state = 4225; this.match(PostgreSQLParser.KW_RESTRICT); } break; @@ -19045,56 +19332,56 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4277; + this.state = 4228; this.match(PostgreSQLParser.KW_RENAME); - this.state = 4278; + this.state = 4229; this.match(PostgreSQLParser.KW_TO); - this.state = 4279; + this.state = 4230; this.procedure_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4280; + this.state = 4231; this.match(PostgreSQLParser.KW_OWNER); - this.state = 4281; + this.state = 4232; this.match(PostgreSQLParser.KW_TO); - this.state = 4282; + this.state = 4233; this.rolespec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4283; + this.state = 4234; this.match(PostgreSQLParser.KW_SET); - this.state = 4284; + this.state = 4235; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 4285; + this.state = 4236; this.schema_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4287; + this.state = 4238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 4286; + this.state = 4237; this.match(PostgreSQLParser.KW_NO); } } - this.state = 4289; + this.state = 4240; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 4290; + this.state = 4241; this.match(PostgreSQLParser.KW_ON); - this.state = 4291; + this.state = 4242; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 4292; + this.state = 4243; this.name(); } break; @@ -19119,48 +19406,48 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 414, PostgreSQLParser.RULE_procedure_action); let _la: number; try { - this.state = 4323; + this.state = 4274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4305; + this.state = 4256; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: { - this.state = 4296; + this.state = 4247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4295; + this.state = 4246; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 4298; + this.state = 4249; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 4299; + this.state = 4250; this.match(PostgreSQLParser.KW_INVOKER); } break; case 2: { - this.state = 4301; + this.state = 4252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4300; + this.state = 4251; this.match(PostgreSQLParser.KW_EXTERNAL); } } - this.state = 4303; + this.state = 4254; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 4304; + this.state = 4255; this.match(PostgreSQLParser.KW_DEFINER); } break; @@ -19170,11 +19457,11 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4307; + this.state = 4258; this.match(PostgreSQLParser.KW_SET); - this.state = 4308; + this.state = 4259; this.name(); - this.state = 4309; + this.state = 4260; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -19183,18 +19470,18 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4312; + this.state = 4263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: { - this.state = 4310; + this.state = 4261; this.name(); } break; case 2: { - this.state = 4311; + this.state = 4262; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -19204,31 +19491,31 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4314; + this.state = 4265; this.match(PostgreSQLParser.KW_SET); - this.state = 4315; + this.state = 4266; this.name(); - this.state = 4316; + this.state = 4267; this.match(PostgreSQLParser.KW_FROM); - this.state = 4317; + this.state = 4268; this.match(PostgreSQLParser.KW_CURRENT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4319; + this.state = 4270; this.match(PostgreSQLParser.KW_RESET); - this.state = 4320; + this.state = 4271; this.name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4321; + this.state = 4272; this.match(PostgreSQLParser.KW_RESET); - this.state = 4322; + this.state = 4273; this.match(PostgreSQLParser.KW_ALL); } break; @@ -19254,13 +19541,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4325; + this.state = 4276; this.match(PostgreSQLParser.KW_USING); - this.state = 4326; + this.state = 4277; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4327; + this.state = 4278; this.a_expr(); - this.state = 4328; + this.state = 4279; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -19284,15 +19571,15 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4330; + this.state = 4281; this.match(PostgreSQLParser.KW_WITH); - this.state = 4331; + this.state = 4282; this.match(PostgreSQLParser.KW_CHECK); - this.state = 4332; + this.state = 4283; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4333; + this.state = 4284; this.a_expr(); - this.state = 4334; + this.state = 4285; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -19316,9 +19603,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4336; + this.state = 4287; this.match(PostgreSQLParser.KW_TO); - this.state = 4337; + this.state = 4288; this.role_list(); } } @@ -19342,9 +19629,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4339; + this.state = 4290; this.match(PostgreSQLParser.KW_TO); - this.state = 4340; + this.state = 4291; this.role_list(); } } @@ -19368,27 +19655,26 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4342; + this.state = 4293; this.match(PostgreSQLParser.KW_AS); - this.state = 4346; + this.state = 4297; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_PERMISSIVE: { - this.state = 4343; + this.state = 4294; this.match(PostgreSQLParser.KW_PERMISSIVE); } break; case PostgreSQLParser.KW_RESTRICTIVE: { - this.state = 4344; + this.state = 4295; this.match(PostgreSQLParser.KW_RESTRICTIVE); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -19460,7 +19746,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 4345; + this.state = 4296; this.identifier(); } break; @@ -19489,9 +19775,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4348; + this.state = 4299; this.match(PostgreSQLParser.KW_FOR); - this.state = 4349; + this.state = 4300; this.row_security_cmd(); } } @@ -19516,7 +19802,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4351; + this.state = 4302; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -19547,21 +19833,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4353; + this.state = 4304; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4354; + this.state = 4305; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 4355; + this.state = 4306; this.match(PostgreSQLParser.KW_METHOD); - this.state = 4356; + this.state = 4307; this.name(); - this.state = 4357; + this.state = 4308; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4358; + this.state = 4309; this.am_type(); - this.state = 4359; + this.state = 4310; this.match(PostgreSQLParser.KW_HANDLER); - this.state = 4360; + this.state = 4311; this.handler_name(); } } @@ -19586,7 +19872,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4362; + this.state = 4313; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 226)) { this.errorHandler.recoverInline(this); @@ -19616,156 +19902,156 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 434, PostgreSQLParser.RULE_createtrigstmt); let _la: number; try { - this.state = 4418; + this.state = 4369; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4364; + this.state = 4315; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4366; + this.state = 4317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4365; + this.state = 4316; this.opt_or_replace(); } } - this.state = 4368; + this.state = 4319; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4369; + this.state = 4320; this.name(); - this.state = 4370; + this.state = 4321; this.triggeractiontime(); - this.state = 4371; + this.state = 4322; this.triggerevents(); - this.state = 4372; + this.state = 4323; this.match(PostgreSQLParser.KW_ON); - this.state = 4373; + this.state = 4324; this.table_name(); - this.state = 4375; + this.state = 4326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 447) { { - this.state = 4374; + this.state = 4325; this.triggerreferencing(); } } - this.state = 4378; + this.state = 4329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4377; + this.state = 4328; this.triggerforspec(); } } - this.state = 4381; + this.state = 4332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 4380; + this.state = 4331; this.triggerwhen(); } } - this.state = 4383; + this.state = 4334; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4384; + this.state = 4335; this.function_or_procedure(); - this.state = 4385; + this.state = 4336; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4386; + this.state = 4337; this.triggerfuncargs(); - this.state = 4387; + this.state = 4338; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4389; + this.state = 4340; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4391; + this.state = 4342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4390; + this.state = 4341; this.opt_or_replace(); } } - this.state = 4394; + this.state = 4345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 4393; + this.state = 4344; this.match(PostgreSQLParser.KW_CONSTRAINT); } } - this.state = 4396; + this.state = 4347; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4397; + this.state = 4348; this.name(); - this.state = 4398; + this.state = 4349; this.triggeractiontime(); - this.state = 4399; + this.state = 4350; this.triggerevents(); - this.state = 4400; + this.state = 4351; this.match(PostgreSQLParser.KW_ON); - this.state = 4401; + this.state = 4352; this.table_name(); - this.state = 4403; + this.state = 4354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 4402; + this.state = 4353; this.optconstrfromtable(); } } - this.state = 4405; + this.state = 4356; this.constraintattributespec(); - this.state = 4407; + this.state = 4358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4406; + this.state = 4357; this.foreachrow(); } } - this.state = 4410; + this.state = 4361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 4409; + this.state = 4360; this.triggerwhen(); } } - this.state = 4412; + this.state = 4363; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4413; + this.state = 4364; this.function_or_procedure(); - this.state = 4414; + this.state = 4365; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4415; + this.state = 4366; this.triggerfuncargs(); - this.state = 4416; + this.state = 4367; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -19789,29 +20075,29 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TriggeractiontimeContext(this.context, this.state); this.enterRule(localContext, 436, PostgreSQLParser.RULE_triggeractiontime); try { - this.state = 4424; + this.state = 4375; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_BEFORE: this.enterOuterAlt(localContext, 1); { - this.state = 4420; + this.state = 4371; this.match(PostgreSQLParser.KW_BEFORE); } break; case PostgreSQLParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 4421; + this.state = 4372; this.match(PostgreSQLParser.KW_AFTER); } break; case PostgreSQLParser.KW_INSTEAD: this.enterOuterAlt(localContext, 3); { - this.state = 4422; + this.state = 4373; this.match(PostgreSQLParser.KW_INSTEAD); - this.state = 4423; + this.state = 4374; this.match(PostgreSQLParser.KW_OF); } break; @@ -19840,19 +20126,19 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4426; + this.state = 4377; this.match(PostgreSQLParser.KW_FOR); - this.state = 4428; + this.state = 4379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 4427; + this.state = 4378; this.match(PostgreSQLParser.KW_EACH); } } - this.state = 4430; + this.state = 4381; this.roworstatment(); } } @@ -19877,7 +20163,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4432; + this.state = 4383; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -19909,21 +20195,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4434; + this.state = 4385; this.triggeroneevent(); - this.state = 4439; + this.state = 4390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 4435; + this.state = 4386; this.match(PostgreSQLParser.KW_OR); - this.state = 4436; + this.state = 4387; this.triggeroneevent(); } } - this.state = 4441; + this.state = 4392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19947,45 +20233,45 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TriggeroneeventContext(this.context, this.state); this.enterRule(localContext, 444, PostgreSQLParser.RULE_triggeroneevent); try { - this.state = 4449; + this.state = 4400; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4442; + this.state = 4393; this.match(PostgreSQLParser.KW_INSERT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4443; + this.state = 4394; this.match(PostgreSQLParser.KW_DELETE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4444; + this.state = 4395; this.match(PostgreSQLParser.KW_UPDATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4445; + this.state = 4396; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 4446; + this.state = 4397; this.match(PostgreSQLParser.KW_OF); - this.state = 4447; + this.state = 4398; this.columnlist(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4448; + this.state = 4399; this.match(PostgreSQLParser.KW_TRUNCATE); } break; @@ -20011,9 +20297,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4451; + this.state = 4402; this.match(PostgreSQLParser.KW_REFERENCING); - this.state = 4452; + this.state = 4403; this.triggertransitions(); } } @@ -20038,17 +20324,17 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4455; + this.state = 4406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4454; + this.state = 4405; this.triggertransition(); } } - this.state = 4457; + this.state = 4408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 448 || _la === 449); @@ -20075,21 +20361,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4459; + this.state = 4410; this.transitionoldornew(); - this.state = 4460; + this.state = 4411; this.transitionrowortable(); - this.state = 4462; + this.state = 4413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 4461; + this.state = 4412; this.opt_as(); } } - this.state = 4464; + this.state = 4415; this.transitionrelname(); } } @@ -20114,7 +20400,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4466; + this.state = 4417; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 449)) { this.errorHandler.recoverInline(this); @@ -20146,7 +20432,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4468; + this.state = 4419; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -20177,7 +20463,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4470; + this.state = 4421; this.colid(); } } @@ -20202,19 +20488,19 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4472; + this.state = 4423; this.match(PostgreSQLParser.KW_FOR); - this.state = 4474; + this.state = 4425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 4473; + this.state = 4424; this.triggerforopteach(); } } - this.state = 4476; + this.state = 4427; this.triggerfortype(); } } @@ -20238,7 +20524,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4478; + this.state = 4429; this.match(PostgreSQLParser.KW_EACH); } } @@ -20263,7 +20549,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4480; + this.state = 4431; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -20294,13 +20580,13 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4482; + this.state = 4433; this.match(PostgreSQLParser.KW_WHEN); - this.state = 4483; + this.state = 4434; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4484; + this.state = 4435; this.a_expr(); - this.state = 4485; + this.state = 4436; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -20322,24 +20608,24 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Function_or_procedureContext(this.context, this.state); this.enterRule(localContext, 466, PostgreSQLParser.RULE_function_or_procedure); try { - this.state = 4491; + this.state = 4442; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 4487; + this.state = 4438; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4488; + this.state = 4439; this.function_name(); } break; case PostgreSQLParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 4489; + this.state = 4440; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 4490; + this.state = 4441; this.procedure_name(); } break; @@ -20368,7 +20654,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4495; + this.state = 4446; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: @@ -20863,7 +21149,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 4493; + this.state = 4444; this.triggerfuncarg(); } break; @@ -20876,19 +21162,19 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 4501; + this.state = 4452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4497; + this.state = 4448; this.match(PostgreSQLParser.COMMA); - this.state = 4498; + this.state = 4449; this.triggerfuncarg(); } } - this.state = 4503; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20912,34 +21198,34 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new TriggerfuncargContext(this.context, this.state); this.enterRule(localContext, 470, PostgreSQLParser.RULE_triggerfuncarg); try { - this.state = 4508; + this.state = 4459; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4504; + this.state = 4455; this.iconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4505; + this.state = 4456; this.fconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4506; + this.state = 4457; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4507; + this.state = 4458; this.collabel(); } break; @@ -20965,9 +21251,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4510; + this.state = 4461; this.match(PostgreSQLParser.KW_FROM); - this.state = 4511; + this.state = 4462; this.qualified_name(); } } @@ -20992,21 +21278,21 @@ export class PostgreSQLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4516; + this.state = 4467; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 371, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 372, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4513; + this.state = 4464; this.constraintattributeElem(); } } } - this.state = 4518; + this.state = 4469; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 371, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 372, this.context); } } } @@ -21028,58 +21314,58 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new ConstraintattributeElemContext(this.context, this.state); this.enterRule(localContext, 476, PostgreSQLParser.RULE_constraintattributeElem); try { - this.state = 4530; + this.state = 4481; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4519; + this.state = 4470; this.match(PostgreSQLParser.KW_NOT); - this.state = 4520; + this.state = 4471; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4521; + this.state = 4472; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4522; + this.state = 4473; this.match(PostgreSQLParser.KW_INITIALLY); - this.state = 4523; + this.state = 4474; this.match(PostgreSQLParser.KW_IMMEDIATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4524; + this.state = 4475; this.match(PostgreSQLParser.KW_INITIALLY); - this.state = 4525; + this.state = 4476; this.match(PostgreSQLParser.KW_DEFERRED); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4526; + this.state = 4477; this.match(PostgreSQLParser.KW_NOT); - this.state = 4527; + this.state = 4478; this.match(PostgreSQLParser.KW_VALID); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4528; + this.state = 4479; this.match(PostgreSQLParser.KW_NO); - this.state = 4529; + this.state = 4480; this.match(PostgreSQLParser.KW_INHERIT); } break; @@ -21103,60 +21389,60 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new CreateeventtrigstmtContext(this.context, this.state); this.enterRule(localContext, 478, PostgreSQLParser.RULE_createeventtrigstmt); try { - this.state = 4556; + this.state = 4507; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4532; + this.state = 4483; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4533; + this.state = 4484; this.match(PostgreSQLParser.KW_EVENT); - this.state = 4534; + this.state = 4485; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4535; + this.state = 4486; this.name(); - this.state = 4536; + this.state = 4487; this.match(PostgreSQLParser.KW_ON); - this.state = 4537; + this.state = 4488; this.collabel(); - this.state = 4538; + this.state = 4489; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4539; + this.state = 4490; this.function_or_procedure(); - this.state = 4540; + this.state = 4491; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4541; + this.state = 4492; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4543; + this.state = 4494; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4544; + this.state = 4495; this.match(PostgreSQLParser.KW_EVENT); - this.state = 4545; + this.state = 4496; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4546; + this.state = 4497; this.name(); - this.state = 4547; + this.state = 4498; this.match(PostgreSQLParser.KW_ON); - this.state = 4548; + this.state = 4499; this.collabel(); - this.state = 4549; + this.state = 4500; this.match(PostgreSQLParser.KW_WHEN); - this.state = 4550; + this.state = 4501; this.event_trigger_when_list(); - this.state = 4551; + this.state = 4502; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 4552; + this.state = 4503; this.function_or_procedure(); - this.state = 4553; + this.state = 4504; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4554; + this.state = 4505; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -21183,21 +21469,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4558; + this.state = 4509; this.event_trigger_when_item(); - this.state = 4563; + this.state = 4514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 4559; + this.state = 4510; this.match(PostgreSQLParser.KW_AND); - this.state = 4560; + this.state = 4511; this.event_trigger_when_item(); } } - this.state = 4565; + this.state = 4516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21223,15 +21509,15 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4566; + this.state = 4517; this.colid(); - this.state = 4567; + this.state = 4518; this.match(PostgreSQLParser.KW_IN); - this.state = 4568; + this.state = 4519; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4569; + this.state = 4520; this.event_trigger_value_list(); - this.state = 4570; + this.state = 4521; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -21256,21 +21542,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4572; + this.state = 4523; this.sconst(); - this.state = 4577; + this.state = 4528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4573; + this.state = 4524; this.match(PostgreSQLParser.COMMA); - this.state = 4574; + this.state = 4525; this.sconst(); } } - this.state = 4579; + this.state = 4530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21296,15 +21582,15 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4580; + this.state = 4531; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4581; + this.state = 4532; this.match(PostgreSQLParser.KW_EVENT); - this.state = 4582; + this.state = 4533; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 4583; + this.state = 4534; this.name(); - this.state = 4584; + this.state = 4535; this.enable_trigger(); } } @@ -21325,42 +21611,44 @@ export class PostgreSQLParser extends antlr.Parser { public enable_trigger(): Enable_triggerContext { let localContext = new Enable_triggerContext(this.context, this.state); this.enterRule(localContext, 488, PostgreSQLParser.RULE_enable_trigger); + let _la: number; try { - this.state = 4592; + this.state = 4542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.KW_ENABLE: this.enterOuterAlt(localContext, 1); { - this.state = 4586; + this.state = 4537; this.match(PostgreSQLParser.KW_ENABLE); + this.state = 4539; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { + case 1: + { + this.state = 4538; + _la = this.tokenStream.LA(1); + if(!(_la === 139 || _la === 312)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + } } break; - case 2: + case PostgreSQLParser.KW_DISABLE: this.enterOuterAlt(localContext, 2); { - this.state = 4587; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 4588; - this.match(PostgreSQLParser.KW_REPLICA); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 4589; - this.match(PostgreSQLParser.KW_ENABLE); - this.state = 4590; - this.match(PostgreSQLParser.KW_ALWAYS); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 4591; + this.state = 4541; this.match(PostgreSQLParser.KW_DISABLE); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -21383,21 +21671,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4594; + this.state = 4544; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4595; + this.state = 4545; this.match(PostgreSQLParser.KW_ASSERTION); - this.state = 4596; + this.state = 4546; this.any_name(); - this.state = 4597; + this.state = 4547; this.match(PostgreSQLParser.KW_CHECK); - this.state = 4598; + this.state = 4548; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4599; + this.state = 4549; this.a_expr(); - this.state = 4600; + this.state = 4550; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 4601; + this.state = 4551; this.constraintattributespec(); } } @@ -21420,280 +21708,280 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 492, PostgreSQLParser.RULE_definestmt); let _la: number; try { - this.state = 4706; + this.state = 4656; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4603; + this.state = 4553; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4605; + this.state = 4555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4604; + this.state = 4554; this.opt_or_replace(); } } - this.state = 4607; + this.state = 4557; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 4608; + this.state = 4558; this.function_name(); - this.state = 4609; + this.state = 4559; this.aggr_args(); - this.state = 4610; + this.state = 4560; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4612; + this.state = 4562; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4614; + this.state = 4564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4613; + this.state = 4563; this.opt_or_replace(); } } - this.state = 4616; + this.state = 4566; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 4617; + this.state = 4567; this.function_name(); - this.state = 4618; + this.state = 4568; this.old_aggr_definition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4620; + this.state = 4570; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4621; + this.state = 4571; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4622; + this.state = 4572; this.any_operator(); - this.state = 4623; + this.state = 4573; this.definition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4625; + this.state = 4575; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4626; + this.state = 4576; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4627; + this.state = 4577; this.any_name(); - this.state = 4628; + this.state = 4578; this.definition(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4630; + this.state = 4580; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4631; + this.state = 4581; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4632; + this.state = 4582; this.any_name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4633; + this.state = 4583; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4634; + this.state = 4584; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4635; + this.state = 4585; this.any_name(); - this.state = 4636; + this.state = 4586; this.match(PostgreSQLParser.KW_AS); - this.state = 4637; + this.state = 4587; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4639; + this.state = 4589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4638; + this.state = 4588; this.opttablefuncelementlist(); } } - this.state = 4641; + this.state = 4591; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4643; + this.state = 4593; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4644; + this.state = 4594; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4645; + this.state = 4595; this.any_name(); - this.state = 4646; + this.state = 4596; this.match(PostgreSQLParser.KW_AS); - this.state = 4647; + this.state = 4597; this.match(PostgreSQLParser.KW_ENUM); - this.state = 4648; + this.state = 4598; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4650; + this.state = 4600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 558)) & ~0x1F) === 0 && ((1 << (_la - 558)) & 67108885) !== 0)) { { - this.state = 4649; + this.state = 4599; this.opt_enum_val_list(); } } - this.state = 4652; + this.state = 4602; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4654; + this.state = 4604; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4655; + this.state = 4605; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4656; + this.state = 4606; this.any_name(); - this.state = 4657; + this.state = 4607; this.match(PostgreSQLParser.KW_AS); - this.state = 4658; + this.state = 4608; this.match(PostgreSQLParser.KW_RANGE); - this.state = 4659; + this.state = 4609; this.definition(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4661; + this.state = 4611; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4662; + this.state = 4612; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4663; + this.state = 4613; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4664; + this.state = 4614; this.match(PostgreSQLParser.KW_PARSER); - this.state = 4665; + this.state = 4615; this.any_name(); - this.state = 4666; + this.state = 4616; this.definition(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4668; + this.state = 4618; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4669; + this.state = 4619; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4670; + this.state = 4620; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4671; + this.state = 4621; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 4672; + this.state = 4622; this.any_name(); - this.state = 4673; + this.state = 4623; this.definition(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4675; + this.state = 4625; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4676; + this.state = 4626; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4677; + this.state = 4627; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4678; + this.state = 4628; this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 4679; + this.state = 4629; this.any_name(); - this.state = 4680; + this.state = 4630; this.definition(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4682; + this.state = 4632; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4683; + this.state = 4633; this.match(PostgreSQLParser.KW_TEXT); - this.state = 4684; + this.state = 4634; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 4685; + this.state = 4635; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 4686; + this.state = 4636; this.any_name(); - this.state = 4687; + this.state = 4637; this.definition(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4689; + this.state = 4639; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4690; + this.state = 4640; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 4692; + this.state = 4642; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 4691; + this.state = 4641; this.opt_if_not_exists(); } break; } - this.state = 4694; + this.state = 4644; this.any_name(); - this.state = 4695; + this.state = 4645; this.definition(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4697; + this.state = 4647; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4698; + this.state = 4648; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 4700; + this.state = 4650; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 4699; + this.state = 4649; this.opt_if_not_exists(); } break; } - this.state = 4702; + this.state = 4652; this.any_name(); - this.state = 4703; + this.state = 4653; this.match(PostgreSQLParser.KW_FROM); - this.state = 4704; + this.state = 4654; this.any_name(); } break; @@ -21719,11 +22007,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4708; + this.state = 4658; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4709; + this.state = 4659; this.def_list(); - this.state = 4710; + this.state = 4660; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -21748,21 +22036,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4712; + this.state = 4662; this.def_elem(); - this.state = 4717; + this.state = 4667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4713; + this.state = 4663; this.match(PostgreSQLParser.COMMA); - this.state = 4714; + this.state = 4664; this.def_elem(); } } - this.state = 4719; + this.state = 4669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21789,16 +22077,16 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4720; + this.state = 4670; this.collabel(); - this.state = 4723; + this.state = 4673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 4721; + this.state = 4671; this.match(PostgreSQLParser.EQUAL); - this.state = 4722; + this.state = 4672; this.def_arg(); } } @@ -21823,48 +22111,48 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Def_argContext(this.context, this.state); this.enterRule(localContext, 500, PostgreSQLParser.RULE_def_arg); try { - this.state = 4731; + this.state = 4681; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4725; + this.state = 4675; this.func_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4726; + this.state = 4676; this.reserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4727; + this.state = 4677; this.qual_all_op(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4728; + this.state = 4678; this.numericonly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4729; + this.state = 4679; this.sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4730; + this.state = 4680; this.match(PostgreSQLParser.KW_NONE); } break; @@ -21890,11 +22178,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4733; + this.state = 4683; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4734; + this.state = 4684; this.old_aggr_list(); - this.state = 4735; + this.state = 4685; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -21919,21 +22207,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4737; + this.state = 4687; this.old_aggr_elem(); - this.state = 4742; + this.state = 4692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4738; + this.state = 4688; this.match(PostgreSQLParser.COMMA); - this.state = 4739; + this.state = 4689; this.old_aggr_elem(); } } - this.state = 4744; + this.state = 4694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21959,11 +22247,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4745; + this.state = 4695; this.identifier(); - this.state = 4746; + this.state = 4696; this.match(PostgreSQLParser.EQUAL); - this.state = 4747; + this.state = 4697; this.def_arg(); } } @@ -21987,7 +22275,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4749; + this.state = 4699; this.enum_val_list(); } } @@ -22012,21 +22300,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4751; + this.state = 4701; this.sconst(); - this.state = 4756; + this.state = 4706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4752; + this.state = 4702; this.match(PostgreSQLParser.COMMA); - this.state = 4753; + this.state = 4703; this.sconst(); } } - this.state = 4758; + this.state = 4708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22051,116 +22339,73 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 512, PostgreSQLParser.RULE_alterenumstmt); let _la: number; try { - this.state = 4802; + this.state = 4731; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4759; + this.state = 4709; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4760; + this.state = 4710; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4761; + this.state = 4711; this.any_name(); - this.state = 4762; + this.state = 4712; this.match(PostgreSQLParser.KW_ADD); - this.state = 4763; + this.state = 4713; this.match(PostgreSQLParser.KW_VALUE); - this.state = 4765; + this.state = 4715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 4764; + this.state = 4714; this.opt_if_not_exists(); } } - this.state = 4767; + this.state = 4717; this.sconst(); + this.state = 4720; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + case 1: + { + this.state = 4718; + _la = this.tokenStream.LA(1); + if(!(_la === 135 || _la === 145)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4719; + this.sconst(); + } + break; + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4769; + this.state = 4722; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4770; + this.state = 4723; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4771; + this.state = 4724; this.any_name(); - this.state = 4772; - this.match(PostgreSQLParser.KW_ADD); - this.state = 4773; - this.match(PostgreSQLParser.KW_VALUE); - this.state = 4775; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 220) { - { - this.state = 4774; - this.opt_if_not_exists(); - } - } - - this.state = 4777; - this.sconst(); - this.state = 4778; - this.match(PostgreSQLParser.KW_BEFORE); - this.state = 4779; - this.sconst(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 4781; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 4782; - this.match(PostgreSQLParser.KW_TYPE); - this.state = 4783; - this.any_name(); - this.state = 4784; - this.match(PostgreSQLParser.KW_ADD); - this.state = 4785; - this.match(PostgreSQLParser.KW_VALUE); - this.state = 4787; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 220) { - { - this.state = 4786; - this.opt_if_not_exists(); - } - } - - this.state = 4789; - this.sconst(); - this.state = 4790; - this.match(PostgreSQLParser.KW_AFTER); - this.state = 4791; - this.sconst(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 4793; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 4794; - this.match(PostgreSQLParser.KW_TYPE); - this.state = 4795; - this.any_name(); - this.state = 4796; + this.state = 4725; this.match(PostgreSQLParser.KW_RENAME); - this.state = 4797; + this.state = 4726; this.match(PostgreSQLParser.KW_VALUE); - this.state = 4798; + this.state = 4727; this.sconst(); - this.state = 4799; + this.state = 4728; this.match(PostgreSQLParser.KW_TO); - this.state = 4800; + this.state = 4729; this.sconst(); } break; @@ -22186,11 +22431,11 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4804; + this.state = 4733; this.match(PostgreSQLParser.KW_IF); - this.state = 4805; + this.state = 4734; this.match(PostgreSQLParser.KW_NOT); - this.state = 4806; + this.state = 4735; this.match(PostgreSQLParser.KW_EXISTS); } } @@ -22215,47 +22460,47 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4808; + this.state = 4737; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4809; + this.state = 4738; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4810; + this.state = 4739; this.match(PostgreSQLParser.KW_CLASS); - this.state = 4811; + this.state = 4740; this.any_name(); - this.state = 4813; + this.state = 4742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 4812; + this.state = 4741; this.opt_default(); } } - this.state = 4815; + this.state = 4744; this.match(PostgreSQLParser.KW_FOR); - this.state = 4816; + this.state = 4745; this.match(PostgreSQLParser.KW_TYPE); - this.state = 4817; + this.state = 4746; this.typename(); - this.state = 4818; + this.state = 4747; this.match(PostgreSQLParser.KW_USING); - this.state = 4819; + this.state = 4748; this.name(); - this.state = 4821; + this.state = 4750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 4820; + this.state = 4749; this.opt_opfamily(); } } - this.state = 4823; + this.state = 4752; this.match(PostgreSQLParser.KW_AS); - this.state = 4824; + this.state = 4753; this.opclass_item_list(); } } @@ -22280,21 +22525,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4826; + this.state = 4755; this.opclass_item(); - this.state = 4831; + this.state = 4760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4827; + this.state = 4756; this.match(PostgreSQLParser.COMMA); - this.state = 4828; + this.state = 4757; this.opclass_item(); } } - this.state = 4833; + this.state = 4762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22319,34 +22564,34 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 520, PostgreSQLParser.RULE_opclass_item); let _la: number; try { - this.state = 4865; + this.state = 4794; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4834; + this.state = 4763; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4835; + this.state = 4764; this.iconst(); - this.state = 4836; + this.state = 4765; this.any_operator(); - this.state = 4838; + this.state = 4767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4837; + this.state = 4766; this.opclass_purpose(); } } - this.state = 4841; + this.state = 4770; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: { - this.state = 4840; + this.state = 4769; this.opt_recheck(); } break; @@ -22356,28 +22601,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4843; + this.state = 4772; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4844; + this.state = 4773; this.iconst(); - this.state = 4845; + this.state = 4774; this.operator_with_argtypes(); - this.state = 4847; + this.state = 4776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 4846; + this.state = 4775; this.opclass_purpose(); } } - this.state = 4850; + this.state = 4779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 4849; + this.state = 4778; this.opt_recheck(); } break; @@ -22387,37 +22632,37 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4852; + this.state = 4781; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4853; + this.state = 4782; this.iconst(); - this.state = 4854; + this.state = 4783; this.function_with_argtypes(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4856; + this.state = 4785; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4857; + this.state = 4786; this.iconst(); - this.state = 4858; + this.state = 4787; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4859; + this.state = 4788; this.type_list(); - this.state = 4860; + this.state = 4789; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 4861; + this.state = 4790; this.function_with_argtypes(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4863; + this.state = 4792; this.match(PostgreSQLParser.KW_STORAGE); - this.state = 4864; + this.state = 4793; this.typename(); } break; @@ -22443,7 +22688,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4867; + this.state = 4796; this.match(PostgreSQLParser.KW_DEFAULT); } } @@ -22467,9 +22712,9 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4869; + this.state = 4798; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4870; + this.state = 4799; this.any_name(); } } @@ -22491,28 +22736,28 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opclass_purposeContext(this.context, this.state); this.enterRule(localContext, 526, PostgreSQLParser.RULE_opclass_purpose); try { - this.state = 4878; + this.state = 4807; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4872; + this.state = 4801; this.match(PostgreSQLParser.KW_FOR); - this.state = 4873; + this.state = 4802; this.match(PostgreSQLParser.KW_SEARCH); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4874; + this.state = 4803; this.match(PostgreSQLParser.KW_FOR); - this.state = 4875; + this.state = 4804; this.match(PostgreSQLParser.KW_ORDER); - this.state = 4876; + this.state = 4805; this.match(PostgreSQLParser.KW_BY); - this.state = 4877; + this.state = 4806; this.any_name(); } break; @@ -22538,7 +22783,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4880; + this.state = 4809; this.match(PostgreSQLParser.KW_RECHECK); } } @@ -22562,17 +22807,17 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4882; + this.state = 4811; this.match(PostgreSQLParser.KW_CREATE); - this.state = 4883; + this.state = 4812; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4884; + this.state = 4813; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4885; + this.state = 4814; this.any_name(); - this.state = 4886; + this.state = 4815; this.match(PostgreSQLParser.KW_USING); - this.state = 4887; + this.state = 4816; this.name(); } } @@ -22594,48 +22839,48 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new AlteropfamilystmtContext(this.context, this.state); this.enterRule(localContext, 532, PostgreSQLParser.RULE_alteropfamilystmt); try { - this.state = 4907; + this.state = 4836; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4889; + this.state = 4818; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4890; + this.state = 4819; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4891; + this.state = 4820; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4892; + this.state = 4821; this.any_name(); - this.state = 4893; + this.state = 4822; this.match(PostgreSQLParser.KW_USING); - this.state = 4894; + this.state = 4823; this.name(); - this.state = 4895; + this.state = 4824; this.match(PostgreSQLParser.KW_ADD); - this.state = 4896; + this.state = 4825; this.opclass_item_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4898; + this.state = 4827; this.match(PostgreSQLParser.KW_ALTER); - this.state = 4899; + this.state = 4828; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4900; + this.state = 4829; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 4901; + this.state = 4830; this.any_name(); - this.state = 4902; + this.state = 4831; this.match(PostgreSQLParser.KW_USING); - this.state = 4903; + this.state = 4832; this.name(); - this.state = 4904; + this.state = 4833; this.match(PostgreSQLParser.KW_DROP); - this.state = 4905; + this.state = 4834; this.opclass_drop_list(); } break; @@ -22662,21 +22907,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4909; + this.state = 4838; this.opclass_drop(); - this.state = 4914; + this.state = 4843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4910; + this.state = 4839; this.match(PostgreSQLParser.COMMA); - this.state = 4911; + this.state = 4840; this.opclass_drop(); } } - this.state = 4916; + this.state = 4845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22700,36 +22945,36 @@ export class PostgreSQLParser extends antlr.Parser { let localContext = new Opclass_dropContext(this.context, this.state); this.enterRule(localContext, 536, PostgreSQLParser.RULE_opclass_drop); try { - this.state = 4929; + this.state = 4858; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 4917; + this.state = 4846; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 4918; + this.state = 4847; this.iconst(); - this.state = 4919; + this.state = 4848; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4920; + this.state = 4849; this.type_list(); - this.state = 4921; + this.state = 4850; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 4923; + this.state = 4852; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 4924; + this.state = 4853; this.iconst(); - this.state = 4925; + this.state = 4854; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 4926; + this.state = 4855; this.type_list(); - this.state = 4927; + this.state = 4856; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -22757,17 +23002,17 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 4931; + this.state = 4860; this.match(PostgreSQLParser.KW_REASSIGN); - this.state = 4932; + this.state = 4861; this.match(PostgreSQLParser.KW_OWNED); - this.state = 4933; + this.state = 4862; this.match(PostgreSQLParser.KW_BY); - this.state = 4934; + this.state = 4863; this.role_list(); - this.state = 4935; + this.state = 4864; this.match(PostgreSQLParser.KW_TO); - this.state = 4936; + this.state = 4865; this.rolespec(); } } @@ -22790,34 +23035,34 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 540, PostgreSQLParser.RULE_dropstmt); let _la: number; try { - this.state = 5317; + this.state = 5246; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4938; + this.state = 4867; this.match(PostgreSQLParser.KW_DROP); - this.state = 4939; + this.state = 4868; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4941; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { - case 1: - { - this.state = 4940; - this.opt_if_exists(); - } - break; - } - this.state = 4943; - this.table_name_list(); - this.state = 4945; + this.state = 4870; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: { - this.state = 4944; + this.state = 4869; + this.opt_if_exists(); + } + break; + } + this.state = 4872; + this.table_name_list(); + this.state = 4874; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { + case 1: + { + this.state = 4873; this.opt_drop_behavior(); } break; @@ -22827,28 +23072,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4947; + this.state = 4876; this.match(PostgreSQLParser.KW_DROP); - this.state = 4948; + this.state = 4877; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 4950; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { - case 1: - { - this.state = 4949; - this.opt_if_exists(); - } - break; - } - this.state = 4952; - this.name_list(); - this.state = 4954; + this.state = 4879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 4953; + this.state = 4878; + this.opt_if_exists(); + } + break; + } + this.state = 4881; + this.name_list(); + this.state = 4883; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { + case 1: + { + this.state = 4882; this.opt_drop_behavior(); } break; @@ -22858,28 +23103,28 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4956; + this.state = 4885; this.match(PostgreSQLParser.KW_DROP); - this.state = 4957; + this.state = 4886; this.match(PostgreSQLParser.KW_VIEW); - this.state = 4959; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { - case 1: - { - this.state = 4958; - this.opt_if_exists(); - } - break; - } - this.state = 4961; - this.view_nameList(); - this.state = 4963; + this.state = 4888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 4962; + this.state = 4887; + this.opt_if_exists(); + } + break; + } + this.state = 4890; + this.view_nameList(); + this.state = 4892; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { + case 1: + { + this.state = 4891; this.opt_drop_behavior(); } break; @@ -22889,30 +23134,30 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4965; + this.state = 4894; this.match(PostgreSQLParser.KW_DROP); - this.state = 4966; + this.state = 4895; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 4967; + this.state = 4896; this.match(PostgreSQLParser.KW_VIEW); - this.state = 4969; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { - case 1: - { - this.state = 4968; - this.opt_if_exists(); - } - break; - } - this.state = 4971; - this.view_nameList(); - this.state = 4973; + this.state = 4898; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { case 1: { - this.state = 4972; + this.state = 4897; + this.opt_if_exists(); + } + break; + } + this.state = 4900; + this.view_nameList(); + this.state = 4902; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { + case 1: + { + this.state = 4901; this.opt_drop_behavior(); } break; @@ -22922,28 +23167,28 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4975; + this.state = 4904; this.match(PostgreSQLParser.KW_DROP); - this.state = 4976; + this.state = 4905; this.match(PostgreSQLParser.KW_INDEX); - this.state = 4978; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { - case 1: - { - this.state = 4977; - this.opt_if_exists(); - } - break; - } - this.state = 4980; - this.name_list(); - this.state = 4982; + this.state = 4907; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: { - this.state = 4981; + this.state = 4906; + this.opt_if_exists(); + } + break; + } + this.state = 4909; + this.name_list(); + this.state = 4911; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { + case 1: + { + this.state = 4910; this.opt_drop_behavior(); } break; @@ -22953,30 +23198,30 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4984; + this.state = 4913; this.match(PostgreSQLParser.KW_DROP); - this.state = 4985; + this.state = 4914; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 4986; + this.state = 4915; this.match(PostgreSQLParser.KW_TABLE); - this.state = 4988; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { - case 1: - { - this.state = 4987; - this.opt_if_exists(); - } - break; - } - this.state = 4990; - this.table_name_list(); - this.state = 4992; + this.state = 4917; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 4991; + this.state = 4916; + this.opt_if_exists(); + } + break; + } + this.state = 4919; + this.table_name_list(); + this.state = 4921; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { + case 1: + { + this.state = 4920; this.opt_drop_behavior(); } break; @@ -22986,28 +23231,28 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4994; + this.state = 4923; this.match(PostgreSQLParser.KW_DROP); - this.state = 4995; + this.state = 4924; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 4997; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { - case 1: - { - this.state = 4996; - this.opt_if_exists(); - } - break; - } - this.state = 4999; - this.name_list(); - this.state = 5001; + this.state = 4926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 5000; + this.state = 4925; + this.opt_if_exists(); + } + break; + } + this.state = 4928; + this.name_list(); + this.state = 4930; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + case 1: + { + this.state = 4929; this.opt_drop_behavior(); } break; @@ -23017,28 +23262,28 @@ export class PostgreSQLParser extends antlr.Parser { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5003; + this.state = 4932; this.match(PostgreSQLParser.KW_DROP); - this.state = 5004; + this.state = 4933; this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 5006; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { - case 1: - { - this.state = 5005; - this.opt_if_exists(); - } - break; - } - this.state = 5008; - this.name_list(); - this.state = 5010; + this.state = 4935; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 5009; + this.state = 4934; + this.opt_if_exists(); + } + break; + } + this.state = 4937; + this.name_list(); + this.state = 4939; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + case 1: + { + this.state = 4938; this.opt_drop_behavior(); } break; @@ -23048,28 +23293,28 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5012; + this.state = 4941; this.match(PostgreSQLParser.KW_DROP); - this.state = 5013; + this.state = 4942; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 5015; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { - case 1: - { - this.state = 5014; - this.opt_if_exists(); - } - break; - } - this.state = 5017; - this.name_list(); - this.state = 5019; + this.state = 4944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 5018; + this.state = 4943; + this.opt_if_exists(); + } + break; + } + this.state = 4946; + this.name_list(); + this.state = 4948; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { + case 1: + { + this.state = 4947; this.opt_drop_behavior(); } break; @@ -23079,32 +23324,32 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5021; + this.state = 4950; this.match(PostgreSQLParser.KW_DROP); - this.state = 5022; + this.state = 4951; this.match(PostgreSQLParser.KW_TEXT); - this.state = 5023; + this.state = 4952; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5024; + this.state = 4953; this.match(PostgreSQLParser.KW_PARSER); - this.state = 5026; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { - case 1: - { - this.state = 5025; - this.opt_if_exists(); - } - break; - } - this.state = 5028; - this.name_list(); - this.state = 5030; + this.state = 4955; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 5029; + this.state = 4954; + this.opt_if_exists(); + } + break; + } + this.state = 4957; + this.name_list(); + this.state = 4959; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { + case 1: + { + this.state = 4958; this.opt_drop_behavior(); } break; @@ -23114,32 +23359,32 @@ export class PostgreSQLParser extends antlr.Parser { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5032; + this.state = 4961; this.match(PostgreSQLParser.KW_DROP); - this.state = 5033; + this.state = 4962; this.match(PostgreSQLParser.KW_TEXT); - this.state = 5034; + this.state = 4963; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5035; + this.state = 4964; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 5037; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { - case 1: - { - this.state = 5036; - this.opt_if_exists(); - } - break; - } - this.state = 5039; - this.name_list(); - this.state = 5041; + this.state = 4966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 5040; + this.state = 4965; + this.opt_if_exists(); + } + break; + } + this.state = 4968; + this.name_list(); + this.state = 4970; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { + case 1: + { + this.state = 4969; this.opt_drop_behavior(); } break; @@ -23149,32 +23394,32 @@ export class PostgreSQLParser extends antlr.Parser { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5043; + this.state = 4972; this.match(PostgreSQLParser.KW_DROP); - this.state = 5044; + this.state = 4973; this.match(PostgreSQLParser.KW_TEXT); - this.state = 5045; + this.state = 4974; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5046; + this.state = 4975; this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 5048; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { - case 1: - { - this.state = 5047; - this.opt_if_exists(); - } - break; - } - this.state = 5050; - this.name_list(); - this.state = 5052; + this.state = 4977; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 5051; + this.state = 4976; + this.opt_if_exists(); + } + break; + } + this.state = 4979; + this.name_list(); + this.state = 4981; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { + case 1: + { + this.state = 4980; this.opt_drop_behavior(); } break; @@ -23184,32 +23429,32 @@ export class PostgreSQLParser extends antlr.Parser { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5054; + this.state = 4983; this.match(PostgreSQLParser.KW_DROP); - this.state = 5055; + this.state = 4984; this.match(PostgreSQLParser.KW_TEXT); - this.state = 5056; + this.state = 4985; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5057; + this.state = 4986; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 5059; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { - case 1: - { - this.state = 5058; - this.opt_if_exists(); - } - break; - } - this.state = 5061; - this.name_list(); - this.state = 5063; + this.state = 4988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: { - this.state = 5062; + this.state = 4987; + this.opt_if_exists(); + } + break; + } + this.state = 4990; + this.name_list(); + this.state = 4992; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + case 1: + { + this.state = 4991; this.opt_drop_behavior(); } break; @@ -23219,30 +23464,30 @@ export class PostgreSQLParser extends antlr.Parser { case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5065; + this.state = 4994; this.match(PostgreSQLParser.KW_DROP); - this.state = 5066; + this.state = 4995; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 5067; + this.state = 4996; this.match(PostgreSQLParser.KW_METHOD); - this.state = 5069; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { - case 1: - { - this.state = 5068; - this.opt_if_exists(); - } - break; - } - this.state = 5071; - this.name_list(); - this.state = 5073; + this.state = 4998; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 5072; + this.state = 4997; + this.opt_if_exists(); + } + break; + } + this.state = 5000; + this.name_list(); + this.state = 5002; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { + case 1: + { + this.state = 5001; this.opt_drop_behavior(); } break; @@ -23252,30 +23497,30 @@ export class PostgreSQLParser extends antlr.Parser { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5075; + this.state = 5004; this.match(PostgreSQLParser.KW_DROP); - this.state = 5076; + this.state = 5005; this.match(PostgreSQLParser.KW_EVENT); - this.state = 5077; + this.state = 5006; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5079; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { - case 1: - { - this.state = 5078; - this.opt_if_exists(); - } - break; - } - this.state = 5081; - this.name_list(); - this.state = 5083; + this.state = 5008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 5082; + this.state = 5007; + this.opt_if_exists(); + } + break; + } + this.state = 5010; + this.name_list(); + this.state = 5012; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { + case 1: + { + this.state = 5011; this.opt_drop_behavior(); } break; @@ -23285,28 +23530,28 @@ export class PostgreSQLParser extends antlr.Parser { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5085; + this.state = 5014; this.match(PostgreSQLParser.KW_DROP); - this.state = 5086; + this.state = 5015; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 5088; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { - case 1: - { - this.state = 5087; - this.opt_if_exists(); - } - break; - } - this.state = 5090; - this.name_list(); - this.state = 5092; + this.state = 5017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 5091; + this.state = 5016; + this.opt_if_exists(); + } + break; + } + this.state = 5019; + this.name_list(); + this.state = 5021; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { + case 1: + { + this.state = 5020; this.opt_drop_behavior(); } break; @@ -23316,32 +23561,32 @@ export class PostgreSQLParser extends antlr.Parser { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5094; + this.state = 5023; this.match(PostgreSQLParser.KW_DROP); - this.state = 5095; + this.state = 5024; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5096; + this.state = 5025; this.match(PostgreSQLParser.KW_DATA); - this.state = 5097; + this.state = 5026; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 5099; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { - case 1: - { - this.state = 5098; - this.opt_if_exists(); - } - break; - } - this.state = 5101; - this.name_list(); - this.state = 5103; + this.state = 5028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 5102; + this.state = 5027; + this.opt_if_exists(); + } + break; + } + this.state = 5030; + this.name_list(); + this.state = 5032; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + case 1: + { + this.state = 5031; this.opt_drop_behavior(); } break; @@ -23351,38 +23596,38 @@ export class PostgreSQLParser extends antlr.Parser { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5105; + this.state = 5034; this.match(PostgreSQLParser.KW_DROP); - this.state = 5107; + this.state = 5036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5106; + this.state = 5035; this.opt_procedural(); } } - this.state = 5109; + this.state = 5038; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5111; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { - case 1: - { - this.state = 5110; - this.opt_if_exists(); - } - break; - } - this.state = 5113; - this.name_list(); - this.state = 5115; + this.state = 5040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 5114; + this.state = 5039; + this.opt_if_exists(); + } + break; + } + this.state = 5042; + this.name_list(); + this.state = 5044; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { + case 1: + { + this.state = 5043; this.opt_drop_behavior(); } break; @@ -23392,28 +23637,28 @@ export class PostgreSQLParser extends antlr.Parser { case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5117; + this.state = 5046; this.match(PostgreSQLParser.KW_DROP); - this.state = 5118; + this.state = 5047; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 5120; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { - case 1: - { - this.state = 5119; - this.opt_if_exists(); - } - break; - } - this.state = 5122; - this.name_list(); - this.state = 5124; + this.state = 5049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 5123; + this.state = 5048; + this.opt_if_exists(); + } + break; + } + this.state = 5051; + this.name_list(); + this.state = 5053; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + case 1: + { + this.state = 5052; this.opt_drop_behavior(); } break; @@ -23423,28 +23668,28 @@ export class PostgreSQLParser extends antlr.Parser { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5126; + this.state = 5055; this.match(PostgreSQLParser.KW_DROP); - this.state = 5127; + this.state = 5056; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5129; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { - case 1: - { - this.state = 5128; - this.opt_if_exists(); - } - break; - } - this.state = 5131; - this.name_list(); - this.state = 5133; + this.state = 5058; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 5132; + this.state = 5057; + this.opt_if_exists(); + } + break; + } + this.state = 5060; + this.name_list(); + this.state = 5062; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { + case 1: + { + this.state = 5061; this.opt_drop_behavior(); } break; @@ -23454,28 +23699,28 @@ export class PostgreSQLParser extends antlr.Parser { case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5135; + this.state = 5064; this.match(PostgreSQLParser.KW_DROP); - this.state = 5136; + this.state = 5065; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5138; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { - case 1: - { - this.state = 5137; - this.opt_if_exists(); - } - break; - } - this.state = 5140; - this.schema_name_list(); - this.state = 5142; + this.state = 5067; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 5141; + this.state = 5066; + this.opt_if_exists(); + } + break; + } + this.state = 5069; + this.schema_name_list(); + this.state = 5071; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + case 1: + { + this.state = 5070; this.opt_drop_behavior(); } break; @@ -23485,32 +23730,32 @@ export class PostgreSQLParser extends antlr.Parser { case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5144; + this.state = 5073; this.match(PostgreSQLParser.KW_DROP); - this.state = 5145; + this.state = 5074; this.match(PostgreSQLParser.KW_POLICY); - this.state = 5147; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { - case 1: - { - this.state = 5146; - this.opt_if_exists(); - } - break; - } - this.state = 5149; - this.name(); - this.state = 5150; - this.match(PostgreSQLParser.KW_ON); - this.state = 5151; - this.any_name(); - this.state = 5153; + this.state = 5076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 5152; + this.state = 5075; + this.opt_if_exists(); + } + break; + } + this.state = 5078; + this.name(); + this.state = 5079; + this.match(PostgreSQLParser.KW_ON); + this.state = 5080; + this.any_name(); + this.state = 5082; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + case 1: + { + this.state = 5081; this.opt_drop_behavior(); } break; @@ -23520,32 +23765,32 @@ export class PostgreSQLParser extends antlr.Parser { case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5155; + this.state = 5084; this.match(PostgreSQLParser.KW_DROP); - this.state = 5156; + this.state = 5085; this.match(PostgreSQLParser.KW_RULE); - this.state = 5158; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { - case 1: - { - this.state = 5157; - this.opt_if_exists(); - } - break; - } - this.state = 5160; - this.name(); - this.state = 5161; - this.match(PostgreSQLParser.KW_ON); - this.state = 5162; - this.any_name(); - this.state = 5164; + this.state = 5087; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 5163; + this.state = 5086; + this.opt_if_exists(); + } + break; + } + this.state = 5089; + this.name(); + this.state = 5090; + this.match(PostgreSQLParser.KW_ON); + this.state = 5091; + this.any_name(); + this.state = 5093; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + case 1: + { + this.state = 5092; this.opt_drop_behavior(); } break; @@ -23555,32 +23800,32 @@ export class PostgreSQLParser extends antlr.Parser { case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5166; + this.state = 5095; this.match(PostgreSQLParser.KW_DROP); - this.state = 5167; + this.state = 5096; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5169; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { - case 1: - { - this.state = 5168; - this.opt_if_exists(); - } - break; - } - this.state = 5171; - this.name(); - this.state = 5172; - this.match(PostgreSQLParser.KW_ON); - this.state = 5173; - this.any_name(); - this.state = 5175; + this.state = 5098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 5174; + this.state = 5097; + this.opt_if_exists(); + } + break; + } + this.state = 5100; + this.name(); + this.state = 5101; + this.match(PostgreSQLParser.KW_ON); + this.state = 5102; + this.any_name(); + this.state = 5104; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + case 1: + { + this.state = 5103; this.opt_drop_behavior(); } break; @@ -23590,28 +23835,28 @@ export class PostgreSQLParser extends antlr.Parser { case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5177; + this.state = 5106; this.match(PostgreSQLParser.KW_DROP); - this.state = 5178; + this.state = 5107; this.match(PostgreSQLParser.KW_TYPE); - this.state = 5180; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { - case 1: - { - this.state = 5179; - this.opt_if_exists(); - } - break; - } - this.state = 5182; - this.type_name_list(); - this.state = 5184; + this.state = 5109; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 5183; + this.state = 5108; + this.opt_if_exists(); + } + break; + } + this.state = 5111; + this.type_name_list(); + this.state = 5113; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + case 1: + { + this.state = 5112; this.opt_drop_behavior(); } break; @@ -23621,28 +23866,28 @@ export class PostgreSQLParser extends antlr.Parser { case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5186; + this.state = 5115; this.match(PostgreSQLParser.KW_DROP); - this.state = 5187; + this.state = 5116; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 5189; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { - case 1: - { - this.state = 5188; - this.opt_if_exists(); - } - break; - } - this.state = 5191; - this.type_name_list(); - this.state = 5193; + this.state = 5118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: { - this.state = 5192; + this.state = 5117; + this.opt_if_exists(); + } + break; + } + this.state = 5120; + this.type_name_list(); + this.state = 5122; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + case 1: + { + this.state = 5121; this.opt_drop_behavior(); } break; @@ -23652,30 +23897,30 @@ export class PostgreSQLParser extends antlr.Parser { case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5195; + this.state = 5124; this.match(PostgreSQLParser.KW_DROP); - this.state = 5196; + this.state = 5125; this.match(PostgreSQLParser.KW_INDEX); - this.state = 5197; + this.state = 5126; this.match(PostgreSQLParser.KW_CONCURRENTLY); - this.state = 5199; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { - case 1: - { - this.state = 5198; - this.opt_if_exists(); - } - break; - } - this.state = 5201; - this.any_name_list(); - this.state = 5203; + this.state = 5128; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 5202; + this.state = 5127; + this.opt_if_exists(); + } + break; + } + this.state = 5130; + this.any_name_list(); + this.state = 5132; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + case 1: + { + this.state = 5131; this.opt_drop_behavior(); } break; @@ -23685,36 +23930,36 @@ export class PostgreSQLParser extends antlr.Parser { case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5205; + this.state = 5134; this.match(PostgreSQLParser.KW_DROP); - this.state = 5206; + this.state = 5135; this.match(PostgreSQLParser.KW_CAST); - this.state = 5208; + this.state = 5137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5207; + this.state = 5136; this.opt_if_exists(); } } - this.state = 5210; + this.state = 5139; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5211; + this.state = 5140; this.typename(); - this.state = 5212; + this.state = 5141; this.match(PostgreSQLParser.KW_AS); - this.state = 5213; + this.state = 5142; this.typename(); - this.state = 5214; + this.state = 5143; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 5216; + this.state = 5145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 5215; + this.state = 5144; this.opt_drop_behavior(); } break; @@ -23724,34 +23969,34 @@ export class PostgreSQLParser extends antlr.Parser { case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5218; + this.state = 5147; this.match(PostgreSQLParser.KW_DROP); - this.state = 5219; + this.state = 5148; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5220; + this.state = 5149; this.match(PostgreSQLParser.KW_CLASS); - this.state = 5222; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { - case 1: - { - this.state = 5221; - this.opt_if_exists(); - } - break; - } - this.state = 5224; - this.any_name(); - this.state = 5225; - this.match(PostgreSQLParser.KW_USING); - this.state = 5226; - this.name(); - this.state = 5228; + this.state = 5151; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 5227; + this.state = 5150; + this.opt_if_exists(); + } + break; + } + this.state = 5153; + this.any_name(); + this.state = 5154; + this.match(PostgreSQLParser.KW_USING); + this.state = 5155; + this.name(); + this.state = 5157; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + case 1: + { + this.state = 5156; this.opt_drop_behavior(); } break; @@ -23761,34 +24006,34 @@ export class PostgreSQLParser extends antlr.Parser { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5230; + this.state = 5159; this.match(PostgreSQLParser.KW_DROP); - this.state = 5231; + this.state = 5160; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5232; + this.state = 5161; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 5234; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { - case 1: - { - this.state = 5233; - this.opt_if_exists(); - } - break; - } - this.state = 5236; - this.any_name(); - this.state = 5237; - this.match(PostgreSQLParser.KW_USING); - this.state = 5238; - this.name(); - this.state = 5240; + this.state = 5163; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 5239; + this.state = 5162; + this.opt_if_exists(); + } + break; + } + this.state = 5165; + this.any_name(); + this.state = 5166; + this.match(PostgreSQLParser.KW_USING); + this.state = 5167; + this.name(); + this.state = 5169; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + case 1: + { + this.state = 5168; this.opt_drop_behavior(); } break; @@ -23798,20 +24043,20 @@ export class PostgreSQLParser extends antlr.Parser { case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5242; + this.state = 5171; this.match(PostgreSQLParser.KW_DROP); - this.state = 5243; + this.state = 5172; this.match(PostgreSQLParser.KW_OWNED); - this.state = 5244; + this.state = 5173; this.match(PostgreSQLParser.KW_BY); - this.state = 5245; + this.state = 5174; this.role_list(); - this.state = 5247; + this.state = 5176; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: { - this.state = 5246; + this.state = 5175; this.opt_drop_behavior(); } break; @@ -23821,28 +24066,28 @@ export class PostgreSQLParser extends antlr.Parser { case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5249; + this.state = 5178; this.match(PostgreSQLParser.KW_DROP); - this.state = 5250; + this.state = 5179; this.match(PostgreSQLParser.KW_VIEW); - this.state = 5252; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { - case 1: - { - this.state = 5251; - this.opt_if_exists(); - } - break; - } - this.state = 5254; - this.view_nameList(); - this.state = 5256; + this.state = 5181; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 5255; + this.state = 5180; + this.opt_if_exists(); + } + break; + } + this.state = 5183; + this.view_nameList(); + this.state = 5185; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + case 1: + { + this.state = 5184; this.opt_drop_behavior(); } break; @@ -23852,28 +24097,28 @@ export class PostgreSQLParser extends antlr.Parser { case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5258; + this.state = 5187; this.match(PostgreSQLParser.KW_DROP); - this.state = 5259; + this.state = 5188; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 5261; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { - case 1: - { - this.state = 5260; - this.opt_if_exists(); - } - break; - } - this.state = 5263; - this.name(); - this.state = 5265; + this.state = 5190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 5264; + this.state = 5189; + this.opt_if_exists(); + } + break; + } + this.state = 5192; + this.name(); + this.state = 5194; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + case 1: + { + this.state = 5193; this.opt_drop_behavior(); } break; @@ -23883,55 +24128,55 @@ export class PostgreSQLParser extends antlr.Parser { case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5267; + this.state = 5196; this.match(PostgreSQLParser.KW_DROP); - this.state = 5268; + this.state = 5197; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 5270; + this.state = 5199; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 5269; + this.state = 5198; this.opt_if_exists(); } break; } - this.state = 5272; + this.state = 5201; this.tablespace_name(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5273; + this.state = 5202; this.match(PostgreSQLParser.KW_DROP); - this.state = 5274; + this.state = 5203; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 5276; + this.state = 5205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5275; + this.state = 5204; this.opt_if_exists(); } } - this.state = 5278; + this.state = 5207; this.match(PostgreSQLParser.KW_FOR); - this.state = 5279; + this.state = 5208; this.typename(); - this.state = 5280; + this.state = 5209; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5281; + this.state = 5210; this.name(); - this.state = 5283; + this.state = 5212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: { - this.state = 5282; + this.state = 5211; this.opt_drop_behavior(); } break; @@ -23941,9 +24186,9 @@ export class PostgreSQLParser extends antlr.Parser { case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5285; + this.state = 5214; this.match(PostgreSQLParser.KW_DROP); - this.state = 5286; + this.state = 5215; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -23952,88 +24197,88 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5288; + this.state = 5217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 5287; + this.state = 5216; this.opt_if_exists(); } break; } - this.state = 5290; + this.state = 5219; this.role_list(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5291; + this.state = 5220; this.match(PostgreSQLParser.KW_DROP); - this.state = 5292; + this.state = 5221; this.match(PostgreSQLParser.KW_USER); - this.state = 5293; + this.state = 5222; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 5295; + this.state = 5224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5294; + this.state = 5223; this.opt_if_exists(); } } - this.state = 5297; + this.state = 5226; this.match(PostgreSQLParser.KW_FOR); - this.state = 5298; + this.state = 5227; this.auth_ident(); - this.state = 5299; + this.state = 5228; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5300; + this.state = 5229; this.name(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5302; + this.state = 5231; this.match(PostgreSQLParser.KW_DROP); - this.state = 5303; + this.state = 5232; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 5305; + this.state = 5234; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 5304; + this.state = 5233; this.opt_if_exists(); } break; } - this.state = 5307; + this.state = 5236; this.database_name(); - this.state = 5315; + this.state = 5244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { - this.state = 5309; + this.state = 5238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5308; + this.state = 5237; this.opt_with(); } } - this.state = 5311; + this.state = 5240; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5312; + this.state = 5241; this.drop_option_list(); - this.state = 5313; + this.state = 5242; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -24063,21 +24308,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5319; + this.state = 5248; this.view_name(); - this.state = 5324; + this.state = 5253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5320; + this.state = 5249; this.match(PostgreSQLParser.COMMA); - this.state = 5321; + this.state = 5250; this.view_name(); } } - this.state = 5326; + this.state = 5255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24100,147 +24345,118 @@ export class PostgreSQLParser extends antlr.Parser { public object_type_any_name(): Object_type_any_nameContext { let localContext = new Object_type_any_nameContext(this.context, this.state); this.enterRule(localContext, 544, PostgreSQLParser.RULE_object_type_any_name); + let _la: number; try { - this.state = 5363; + this.state = 5280; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 481, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.KW_FOREIGN: + case PostgreSQLParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 5327; + this.state = 5257; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 63) { + { + this.state = 5256; + this.match(PostgreSQLParser.KW_FOREIGN); + } + } + + this.state = 5259; this.match(PostgreSQLParser.KW_TABLE); - this.state = 5328; + this.state = 5260; this.table_name(); } break; - case 2: + case PostgreSQLParser.KW_MATERIALIZED: + case PostgreSQLParser.KW_VIEW: this.enterOuterAlt(localContext, 2); { - this.state = 5329; - this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 5330; - this.any_name(); + this.state = 5262; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 259) { + { + this.state = 5261; + this.match(PostgreSQLParser.KW_MATERIALIZED); + } + } + + this.state = 5264; + this.match(PostgreSQLParser.KW_VIEW); + this.state = 5265; + this.view_name(); } break; - case 3: + case PostgreSQLParser.KW_INDEX: this.enterOuterAlt(localContext, 3); { - this.state = 5331; - this.match(PostgreSQLParser.KW_VIEW); - this.state = 5332; - this.view_name(); + this.state = 5266; + this.match(PostgreSQLParser.KW_INDEX); + this.state = 5267; + this.any_name(); } break; - case 4: + case PostgreSQLParser.KW_COLLATION: this.enterOuterAlt(localContext, 4); { - this.state = 5333; - this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 5334; - this.match(PostgreSQLParser.KW_VIEW); - this.state = 5335; - this.view_name(); + this.state = 5268; + this.match(PostgreSQLParser.KW_COLLATION); + this.state = 5269; + this.any_name(); } break; - case 5: + case PostgreSQLParser.KW_CONVERSION: this.enterOuterAlt(localContext, 5); { - this.state = 5336; - this.match(PostgreSQLParser.KW_INDEX); - this.state = 5337; + this.state = 5270; + this.match(PostgreSQLParser.KW_CONVERSION); + this.state = 5271; this.any_name(); } break; - case 6: + case PostgreSQLParser.KW_STATISTICS: this.enterOuterAlt(localContext, 6); { - this.state = 5338; - this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5339; - this.match(PostgreSQLParser.KW_TABLE); - this.state = 5340; - this.table_name(); + this.state = 5272; + this.match(PostgreSQLParser.KW_STATISTICS); + this.state = 5273; + this.any_name(); } break; - case 7: + case PostgreSQLParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 7); { - this.state = 5341; - this.match(PostgreSQLParser.KW_COLLATION); - this.state = 5342; + this.state = 5274; + this.match(PostgreSQLParser.KW_SEQUENCE); + this.state = 5275; this.any_name(); } break; - case 8: + case PostgreSQLParser.KW_TEXT: this.enterOuterAlt(localContext, 8); { - this.state = 5343; - this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 5344; - this.any_name(); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 5345; - this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 5346; - this.any_name(); - } - break; - case 10: - this.enterOuterAlt(localContext, 10); - { - this.state = 5347; + this.state = 5276; this.match(PostgreSQLParser.KW_TEXT); - this.state = 5348; + this.state = 5277; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5349; - this.match(PostgreSQLParser.KW_PARSER); - this.state = 5350; - this.any_name(); - } - break; - case 11: - this.enterOuterAlt(localContext, 11); - { - this.state = 5351; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 5352; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5353; - this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 5354; - this.any_name(); - } - break; - case 12: - this.enterOuterAlt(localContext, 12); - { - this.state = 5355; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 5356; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5357; - this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 5358; - this.any_name(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 5359; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 5360; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 5361; - this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 5362; + this.state = 5278; + _la = this.tokenStream.LA(1); + if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 5279; this.any_name(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -24262,18 +24478,18 @@ export class PostgreSQLParser extends antlr.Parser { this.enterRule(localContext, 546, PostgreSQLParser.RULE_object_type_name); let _la: number; try { - this.state = 5396; + this.state = 5313; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ACCESS: this.enterOuterAlt(localContext, 1); { { - this.state = 5365; + this.state = 5282; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 5366; + this.state = 5283; this.match(PostgreSQLParser.KW_METHOD); - this.state = 5367; + this.state = 5284; this.name(); } } @@ -24282,11 +24498,11 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 5368; + this.state = 5285; this.match(PostgreSQLParser.KW_EVENT); - this.state = 5369; + this.state = 5286; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5370; + this.state = 5287; this.name(); } } @@ -24295,9 +24511,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 5371; + this.state = 5288; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 5372; + this.state = 5289; this.name(); } } @@ -24306,13 +24522,13 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 4); { { - this.state = 5373; + this.state = 5290; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5374; + this.state = 5291; this.match(PostgreSQLParser.KW_DATA); - this.state = 5375; + this.state = 5292; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 5376; + this.state = 5293; this.name(); } } @@ -24322,19 +24538,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 5); { { - this.state = 5378; + this.state = 5295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5377; + this.state = 5294; this.opt_procedural(); } } - this.state = 5380; + this.state = 5297; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5381; + this.state = 5298; this.name(); } } @@ -24343,9 +24559,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 6); { { - this.state = 5382; + this.state = 5299; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 5383; + this.state = 5300; this.name(); } } @@ -24354,9 +24570,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 7); { { - this.state = 5384; + this.state = 5301; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5385; + this.state = 5302; this.schema_name(); } } @@ -24365,9 +24581,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 8); { { - this.state = 5386; + this.state = 5303; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5387; + this.state = 5304; this.name(); } } @@ -24376,9 +24592,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 9); { { - this.state = 5388; + this.state = 5305; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 5389; + this.state = 5306; this.database_name(); } } @@ -24387,9 +24603,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 10); { { - this.state = 5390; + this.state = 5307; this.match(PostgreSQLParser.KW_ROLE); - this.state = 5391; + this.state = 5308; this.name(); } } @@ -24398,9 +24614,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 11); { { - this.state = 5392; + this.state = 5309; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 5393; + this.state = 5310; this.name(); } } @@ -24409,9 +24625,9 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 12); { { - this.state = 5394; + this.state = 5311; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 5395; + this.state = 5312; this.tablespace_name(); } } @@ -24441,7 +24657,7 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5398; + this.state = 5315; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -24473,21 +24689,21 @@ export class PostgreSQLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 5400; + this.state = 5317; this.any_name(); - this.state = 5405; + this.state = 5322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5401; + this.state = 5318; this.match(PostgreSQLParser.COMMA); - this.state = 5402; + this.state = 5319; this.any_name(); } } - this.state = 5407; + this.state = 5324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24507,45 +24723,17 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public table_column_name(): Table_column_nameContext { - let localContext = new Table_column_nameContext(this.context, this.state); - this.enterRule(localContext, 552, PostgreSQLParser.RULE_table_column_name); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5408; - this.table_name(); - this.state = 5409; - this.match(PostgreSQLParser.DOT); - this.state = 5410; - this.column_name(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public relation_column_name(): Relation_column_nameContext { let localContext = new Relation_column_nameContext(this.context, this.state); - this.enterRule(localContext, 554, PostgreSQLParser.RULE_relation_column_name); + this.enterRule(localContext, 552, PostgreSQLParser.RULE_relation_column_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 5412; + this.state = 5325; this.relation_name(); - this.state = 5413; + this.state = 5326; this.match(PostgreSQLParser.DOT); - this.state = 5414; + this.state = 5327; this.column_name(); } } @@ -24565,18 +24753,18 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_name(): Relation_nameContext { let localContext = new Relation_nameContext(this.context, this.state); - this.enterRule(localContext, 556, PostgreSQLParser.RULE_relation_name); + this.enterRule(localContext, 554, PostgreSQLParser.RULE_relation_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 5416; + this.state = 5329; this.colid(); - this.state = 5418; + this.state = 5331; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: { - this.state = 5417; + this.state = 5330; this.attrs(); } break; @@ -24599,19 +24787,19 @@ export class PostgreSQLParser extends antlr.Parser { } public any_name(): Any_nameContext { let localContext = new Any_nameContext(this.context, this.state); - this.enterRule(localContext, 558, PostgreSQLParser.RULE_any_name); + this.enterRule(localContext, 556, PostgreSQLParser.RULE_any_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5420; + this.state = 5333; this.colid(); - this.state = 5422; + this.state = 5335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5421; + this.state = 5334; this.attrs(); } } @@ -24634,12 +24822,12 @@ export class PostgreSQLParser extends antlr.Parser { } public attrs(): AttrsContext { let localContext = new AttrsContext(this.context, this.state); - this.enterRule(localContext, 560, PostgreSQLParser.RULE_attrs); + this.enterRule(localContext, 558, PostgreSQLParser.RULE_attrs); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5426; + this.state = 5339; this.errorHandler.sync(this); alternative = 1; do { @@ -24647,9 +24835,9 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 5424; + this.state = 5337; this.match(PostgreSQLParser.DOT); - this.state = 5425; + this.state = 5338; this.attr_name(); } } @@ -24657,9 +24845,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 5428; + this.state = 5341; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 487, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 490, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -24679,26 +24867,26 @@ export class PostgreSQLParser extends antlr.Parser { } public type_name_list(): Type_name_listContext { let localContext = new Type_name_listContext(this.context, this.state); - this.enterRule(localContext, 562, PostgreSQLParser.RULE_type_name_list); + this.enterRule(localContext, 560, PostgreSQLParser.RULE_type_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5430; + this.state = 5343; this.typename(); - this.state = 5435; + this.state = 5348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5431; + this.state = 5344; this.match(PostgreSQLParser.COMMA); - this.state = 5432; + this.state = 5345; this.typename(); } } - this.state = 5437; + this.state = 5350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24720,40 +24908,66 @@ export class PostgreSQLParser extends antlr.Parser { } public truncatestmt(): TruncatestmtContext { let localContext = new TruncatestmtContext(this.context, this.state); - this.enterRule(localContext, 564, PostgreSQLParser.RULE_truncatestmt); + this.enterRule(localContext, 562, PostgreSQLParser.RULE_truncatestmt); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5438; + this.state = 5351; this.match(PostgreSQLParser.KW_TRUNCATE); - this.state = 5440; + this.state = 5353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 5439; - this.opt_table(); + this.state = 5352; + this.match(PostgreSQLParser.KW_TABLE); } break; } - this.state = 5442; - this.relation_expr_list(); - this.state = 5444; + this.state = 5355; + this.truncate_table(); + this.state = 5360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 5356; + this.match(PostgreSQLParser.COMMA); + this.state = 5357; + this.truncate_table(); + } + } + this.state = 5362; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 5365; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: { - this.state = 5443; - this.opt_restart_seqs(); + this.state = 5363; + _la = this.tokenStream.LA(1); + if(!(_la === 167 || _la === 314)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 5364; + this.match(PostgreSQLParser.KW_IDENTITY); } break; } - this.state = 5447; + this.state = 5368; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: { - this.state = 5446; + this.state = 5367; this.opt_drop_behavior(); } break; @@ -24774,33 +24988,35 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public opt_restart_seqs(): Opt_restart_seqsContext { - let localContext = new Opt_restart_seqsContext(this.context, this.state); - this.enterRule(localContext, 566, PostgreSQLParser.RULE_opt_restart_seqs); + public truncate_table(): Truncate_tableContext { + let localContext = new Truncate_tableContext(this.context, this.state); + this.enterRule(localContext, 564, PostgreSQLParser.RULE_truncate_table); + let _la: number; try { - this.state = 5453; + this.enterOuterAlt(localContext, 1); + { + this.state = 5371; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSQLParser.KW_CONTINUE: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + if (_la === 81) { { - this.state = 5449; - this.match(PostgreSQLParser.KW_CONTINUE); - this.state = 5450; - this.match(PostgreSQLParser.KW_IDENTITY); + this.state = 5370; + this.match(PostgreSQLParser.KW_ONLY); } - break; - case PostgreSQLParser.KW_RESTART: - this.enterOuterAlt(localContext, 2); + } + + this.state = 5373; + this.table_name(); + this.state = 5375; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 9) { { - this.state = 5451; - this.match(PostgreSQLParser.KW_RESTART); - this.state = 5452; - this.match(PostgreSQLParser.KW_IDENTITY); + this.state = 5374; + this.match(PostgreSQLParser.STAR); } - break; - default: - throw new antlr.NoViableAltException(this); + } + } } catch (re) { @@ -24819,402 +25035,402 @@ export class PostgreSQLParser extends antlr.Parser { } public commentstmt(): CommentstmtContext { let localContext = new CommentstmtContext(this.context, this.state); - this.enterRule(localContext, 568, PostgreSQLParser.RULE_commentstmt); + this.enterRule(localContext, 566, PostgreSQLParser.RULE_commentstmt); try { - this.state = 5620; + this.state = 5542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5455; + this.state = 5377; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5456; + this.state = 5378; this.match(PostgreSQLParser.KW_ON); - this.state = 5457; + this.state = 5379; this.object_type_any_name(); - this.state = 5458; + this.state = 5380; this.match(PostgreSQLParser.KW_IS); - this.state = 5459; + this.state = 5381; this.comment_text(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5461; + this.state = 5383; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5462; + this.state = 5384; this.match(PostgreSQLParser.KW_ON); - this.state = 5463; + this.state = 5385; this.match(PostgreSQLParser.KW_COLUMN); - this.state = 5464; + this.state = 5386; this.relation_column_name(); - this.state = 5465; + this.state = 5387; this.match(PostgreSQLParser.KW_IS); - this.state = 5466; + this.state = 5388; this.comment_text(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5468; + this.state = 5390; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5469; + this.state = 5391; this.match(PostgreSQLParser.KW_ON); - this.state = 5470; + this.state = 5392; this.object_type_name(); - this.state = 5471; + this.state = 5393; this.match(PostgreSQLParser.KW_IS); - this.state = 5472; + this.state = 5394; this.comment_text(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5474; + this.state = 5396; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5475; + this.state = 5397; this.match(PostgreSQLParser.KW_ON); - this.state = 5476; + this.state = 5398; this.match(PostgreSQLParser.KW_TYPE); - this.state = 5477; + this.state = 5399; this.typename(); - this.state = 5478; + this.state = 5400; this.match(PostgreSQLParser.KW_IS); - this.state = 5479; + this.state = 5401; this.comment_text(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5481; + this.state = 5403; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5482; + this.state = 5404; this.match(PostgreSQLParser.KW_ON); - this.state = 5483; + this.state = 5405; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 5484; + this.state = 5406; this.typename(); - this.state = 5485; + this.state = 5407; this.match(PostgreSQLParser.KW_IS); - this.state = 5486; + this.state = 5408; this.comment_text(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5488; + this.state = 5410; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5489; + this.state = 5411; this.match(PostgreSQLParser.KW_ON); - this.state = 5490; + this.state = 5412; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 5491; + this.state = 5413; this.aggregate_with_argtypes(); - this.state = 5492; + this.state = 5414; this.match(PostgreSQLParser.KW_IS); - this.state = 5493; + this.state = 5415; this.comment_text(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5495; + this.state = 5417; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5496; + this.state = 5418; this.match(PostgreSQLParser.KW_ON); - this.state = 5497; + this.state = 5419; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 5498; + this.state = 5420; this.function_with_argtypes(); - this.state = 5499; + this.state = 5421; this.match(PostgreSQLParser.KW_IS); - this.state = 5500; + this.state = 5422; this.comment_text(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5502; + this.state = 5424; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5503; + this.state = 5425; this.match(PostgreSQLParser.KW_ON); - this.state = 5504; + this.state = 5426; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5505; + this.state = 5427; this.operator_with_argtypes(); - this.state = 5506; + this.state = 5428; this.match(PostgreSQLParser.KW_IS); - this.state = 5507; + this.state = 5429; this.comment_text(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5509; + this.state = 5431; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5510; + this.state = 5432; this.match(PostgreSQLParser.KW_ON); - this.state = 5511; + this.state = 5433; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 5512; + this.state = 5434; this.name(); - this.state = 5513; + this.state = 5435; this.match(PostgreSQLParser.KW_ON); - this.state = 5514; + this.state = 5436; this.table_name(); - this.state = 5515; + this.state = 5437; this.match(PostgreSQLParser.KW_IS); - this.state = 5516; + this.state = 5438; this.comment_text(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5518; + this.state = 5440; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5519; + this.state = 5441; this.match(PostgreSQLParser.KW_ON); - this.state = 5520; + this.state = 5442; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 5521; + this.state = 5443; this.name(); - this.state = 5522; + this.state = 5444; this.match(PostgreSQLParser.KW_ON); - this.state = 5524; + this.state = 5446; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: { - this.state = 5523; + this.state = 5445; this.match(PostgreSQLParser.KW_DOMAIN); } break; } - this.state = 5526; + this.state = 5448; this.any_name(); - this.state = 5527; + this.state = 5449; this.match(PostgreSQLParser.KW_IS); - this.state = 5528; + this.state = 5450; this.comment_text(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5530; + this.state = 5452; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5531; + this.state = 5453; this.match(PostgreSQLParser.KW_ON); - this.state = 5532; + this.state = 5454; this.match(PostgreSQLParser.KW_POLICY); - this.state = 5533; + this.state = 5455; this.name(); - this.state = 5534; + this.state = 5456; this.match(PostgreSQLParser.KW_ON); - this.state = 5535; + this.state = 5457; this.any_name(); - this.state = 5536; + this.state = 5458; this.match(PostgreSQLParser.KW_IS); - this.state = 5537; + this.state = 5459; this.comment_text(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5539; + this.state = 5461; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5540; + this.state = 5462; this.match(PostgreSQLParser.KW_ON); - this.state = 5541; + this.state = 5463; this.match(PostgreSQLParser.KW_RULE); - this.state = 5542; + this.state = 5464; this.name(); - this.state = 5543; + this.state = 5465; this.match(PostgreSQLParser.KW_ON); - this.state = 5544; + this.state = 5466; this.any_name(); - this.state = 5545; + this.state = 5467; this.match(PostgreSQLParser.KW_IS); - this.state = 5546; + this.state = 5468; this.comment_text(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5548; + this.state = 5470; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5549; + this.state = 5471; this.match(PostgreSQLParser.KW_ON); - this.state = 5550; + this.state = 5472; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 5551; + this.state = 5473; this.name(); - this.state = 5552; + this.state = 5474; this.match(PostgreSQLParser.KW_ON); - this.state = 5553; + this.state = 5475; this.any_name(); - this.state = 5554; + this.state = 5476; this.match(PostgreSQLParser.KW_IS); - this.state = 5555; + this.state = 5477; this.comment_text(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5557; + this.state = 5479; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5558; + this.state = 5480; this.match(PostgreSQLParser.KW_ON); - this.state = 5559; + this.state = 5481; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 5560; + this.state = 5482; this.procedure_with_argtypes(); - this.state = 5561; + this.state = 5483; this.match(PostgreSQLParser.KW_IS); - this.state = 5562; + this.state = 5484; this.comment_text(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5564; + this.state = 5486; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5565; + this.state = 5487; this.match(PostgreSQLParser.KW_ON); - this.state = 5566; + this.state = 5488; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 5567; + this.state = 5489; this.routine_with_argtypes(); - this.state = 5568; + this.state = 5490; this.match(PostgreSQLParser.KW_IS); - this.state = 5569; + this.state = 5491; this.comment_text(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5571; + this.state = 5493; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5572; + this.state = 5494; this.match(PostgreSQLParser.KW_ON); - this.state = 5573; + this.state = 5495; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 5574; + this.state = 5496; this.match(PostgreSQLParser.KW_FOR); - this.state = 5575; + this.state = 5497; this.typename(); - this.state = 5576; + this.state = 5498; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5577; + this.state = 5499; this.name(); - this.state = 5578; + this.state = 5500; this.match(PostgreSQLParser.KW_IS); - this.state = 5579; + this.state = 5501; this.comment_text(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5581; + this.state = 5503; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5582; + this.state = 5504; this.match(PostgreSQLParser.KW_ON); - this.state = 5583; + this.state = 5505; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5584; + this.state = 5506; this.match(PostgreSQLParser.KW_CLASS); - this.state = 5585; + this.state = 5507; this.any_name(); - this.state = 5586; + this.state = 5508; this.match(PostgreSQLParser.KW_USING); - this.state = 5587; + this.state = 5509; this.name(); - this.state = 5588; + this.state = 5510; this.match(PostgreSQLParser.KW_IS); - this.state = 5589; + this.state = 5511; this.comment_text(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5591; + this.state = 5513; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5592; + this.state = 5514; this.match(PostgreSQLParser.KW_ON); - this.state = 5593; + this.state = 5515; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 5594; + this.state = 5516; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 5595; + this.state = 5517; this.any_name(); - this.state = 5596; + this.state = 5518; this.match(PostgreSQLParser.KW_USING); - this.state = 5597; + this.state = 5519; this.name(); - this.state = 5598; + this.state = 5520; this.match(PostgreSQLParser.KW_IS); - this.state = 5599; + this.state = 5521; this.comment_text(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5601; + this.state = 5523; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5602; + this.state = 5524; this.match(PostgreSQLParser.KW_ON); - this.state = 5603; + this.state = 5525; this.match(PostgreSQLParser.KW_LARGE); - this.state = 5604; + this.state = 5526; this.match(PostgreSQLParser.KW_OBJECT); - this.state = 5605; + this.state = 5527; this.numericonly(); - this.state = 5606; + this.state = 5528; this.match(PostgreSQLParser.KW_IS); - this.state = 5607; + this.state = 5529; this.comment_text(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5609; + this.state = 5531; this.match(PostgreSQLParser.KW_COMMENT); - this.state = 5610; + this.state = 5532; this.match(PostgreSQLParser.KW_ON); - this.state = 5611; + this.state = 5533; this.match(PostgreSQLParser.KW_CAST); - this.state = 5612; + this.state = 5534; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5613; + this.state = 5535; this.typename(); - this.state = 5614; + this.state = 5536; this.match(PostgreSQLParser.KW_AS); - this.state = 5615; + this.state = 5537; this.typename(); - this.state = 5616; + this.state = 5538; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 5617; + this.state = 5539; this.match(PostgreSQLParser.KW_IS); - this.state = 5618; + this.state = 5540; this.comment_text(); } break; @@ -25236,9 +25452,9 @@ export class PostgreSQLParser extends antlr.Parser { } public comment_text(): Comment_textContext { let localContext = new Comment_textContext(this.context, this.state); - this.enterRule(localContext, 570, PostgreSQLParser.RULE_comment_text); + this.enterRule(localContext, 568, PostgreSQLParser.RULE_comment_text); try { - this.state = 5624; + this.state = 5546; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -25247,14 +25463,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 5622; + this.state = 5544; this.sconst(); } break; case PostgreSQLParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 5623; + this.state = 5545; this.match(PostgreSQLParser.KW_NULL); } break; @@ -25278,15 +25494,220 @@ export class PostgreSQLParser extends antlr.Parser { } public seclabelstmt(): SeclabelstmtContext { let localContext = new SeclabelstmtContext(this.context, this.state); - this.enterRule(localContext, 572, PostgreSQLParser.RULE_seclabelstmt); + this.enterRule(localContext, 570, PostgreSQLParser.RULE_seclabelstmt); let _la: number; try { - this.state = 5735; + this.state = 5657; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { + this.state = 5548; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5549; + this.match(PostgreSQLParser.KW_LABEL); + this.state = 5551; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 5550; + this.opt_provider(); + } + } + + this.state = 5553; + this.match(PostgreSQLParser.KW_ON); + this.state = 5554; + this.match(PostgreSQLParser.KW_COLUMN); + this.state = 5555; + this.column_name(); + this.state = 5556; + this.match(PostgreSQLParser.KW_IS); + this.state = 5557; + this.security_label(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 5559; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5560; + this.match(PostgreSQLParser.KW_LABEL); + this.state = 5562; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 5561; + this.opt_provider(); + } + } + + this.state = 5564; + this.match(PostgreSQLParser.KW_ON); + this.state = 5565; + this.match(PostgreSQLParser.KW_TYPE); + this.state = 5566; + this.typename(); + this.state = 5567; + this.match(PostgreSQLParser.KW_IS); + this.state = 5568; + this.security_label(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 5570; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5571; + this.match(PostgreSQLParser.KW_LABEL); + this.state = 5573; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 5572; + this.opt_provider(); + } + } + + this.state = 5575; + this.match(PostgreSQLParser.KW_ON); + this.state = 5576; + this.match(PostgreSQLParser.KW_DOMAIN); + this.state = 5577; + this.typename(); + this.state = 5578; + this.match(PostgreSQLParser.KW_IS); + this.state = 5579; + this.security_label(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 5581; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5582; + this.match(PostgreSQLParser.KW_LABEL); + this.state = 5584; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 5583; + this.opt_provider(); + } + } + + this.state = 5586; + this.match(PostgreSQLParser.KW_ON); + this.state = 5587; + this.match(PostgreSQLParser.KW_AGGREGATE); + this.state = 5588; + this.aggregate_with_argtypes(); + this.state = 5589; + this.match(PostgreSQLParser.KW_IS); + this.state = 5590; + this.security_label(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 5592; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5593; + this.match(PostgreSQLParser.KW_LABEL); + this.state = 5595; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 5594; + this.opt_provider(); + } + } + + this.state = 5597; + this.match(PostgreSQLParser.KW_ON); + this.state = 5598; + this.match(PostgreSQLParser.KW_FUNCTION); + this.state = 5599; + this.function_with_argtypes(); + this.state = 5600; + this.match(PostgreSQLParser.KW_IS); + this.state = 5601; + this.security_label(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 5603; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5604; + this.match(PostgreSQLParser.KW_LABEL); + this.state = 5606; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 5605; + this.opt_provider(); + } + } + + this.state = 5608; + this.match(PostgreSQLParser.KW_ON); + this.state = 5609; + this.match(PostgreSQLParser.KW_LARGE); + this.state = 5610; + this.match(PostgreSQLParser.KW_OBJECT); + this.state = 5611; + this.numericonly(); + this.state = 5612; + this.match(PostgreSQLParser.KW_IS); + this.state = 5613; + this.security_label(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 5615; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5616; + this.match(PostgreSQLParser.KW_LABEL); + this.state = 5618; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 5617; + this.opt_provider(); + } + } + + this.state = 5620; + this.match(PostgreSQLParser.KW_ON); + this.state = 5621; + this.match(PostgreSQLParser.KW_PROCEDURE); + this.state = 5622; + this.procedure_with_argtypes(); + this.state = 5623; + this.match(PostgreSQLParser.KW_IS); + this.state = 5624; + this.security_label(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { this.state = 5626; this.match(PostgreSQLParser.KW_SECURITY); this.state = 5627; @@ -25304,44 +25725,44 @@ export class PostgreSQLParser extends antlr.Parser { this.state = 5631; this.match(PostgreSQLParser.KW_ON); this.state = 5632; - this.object_type_any_name(); + this.match(PostgreSQLParser.KW_ROUTINE); this.state = 5633; - this.match(PostgreSQLParser.KW_IS); + this.routine_with_argtypes(); this.state = 5634; + this.match(PostgreSQLParser.KW_IS); + this.state = 5635; this.security_label(); } break; - case 2: - this.enterOuterAlt(localContext, 2); + case 9: + this.enterOuterAlt(localContext, 9); { - this.state = 5636; - this.match(PostgreSQLParser.KW_SECURITY); this.state = 5637; + this.match(PostgreSQLParser.KW_SECURITY); + this.state = 5638; this.match(PostgreSQLParser.KW_LABEL); - this.state = 5639; + this.state = 5640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5638; + this.state = 5639; this.opt_provider(); } } - this.state = 5641; - this.match(PostgreSQLParser.KW_ON); this.state = 5642; - this.match(PostgreSQLParser.KW_COLUMN); + this.match(PostgreSQLParser.KW_ON); this.state = 5643; - this.table_column_name(); + this.object_type_any_name(); this.state = 5644; this.match(PostgreSQLParser.KW_IS); this.state = 5645; this.security_label(); } break; - case 3: - this.enterOuterAlt(localContext, 3); + case 10: + this.enterOuterAlt(localContext, 10); { this.state = 5647; this.match(PostgreSQLParser.KW_SECURITY); @@ -25367,211 +25788,6 @@ export class PostgreSQLParser extends antlr.Parser { this.security_label(); } break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 5657; - this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5658; - this.match(PostgreSQLParser.KW_LABEL); - this.state = 5660; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 5659; - this.opt_provider(); - } - } - - this.state = 5662; - this.match(PostgreSQLParser.KW_ON); - this.state = 5663; - this.match(PostgreSQLParser.KW_TYPE); - this.state = 5664; - this.typename(); - this.state = 5665; - this.match(PostgreSQLParser.KW_IS); - this.state = 5666; - this.security_label(); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 5668; - this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5669; - this.match(PostgreSQLParser.KW_LABEL); - this.state = 5671; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 5670; - this.opt_provider(); - } - } - - this.state = 5673; - this.match(PostgreSQLParser.KW_ON); - this.state = 5674; - this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 5675; - this.typename(); - this.state = 5676; - this.match(PostgreSQLParser.KW_IS); - this.state = 5677; - this.security_label(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 5679; - this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5680; - this.match(PostgreSQLParser.KW_LABEL); - this.state = 5682; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 5681; - this.opt_provider(); - } - } - - this.state = 5684; - this.match(PostgreSQLParser.KW_ON); - this.state = 5685; - this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 5686; - this.aggregate_with_argtypes(); - this.state = 5687; - this.match(PostgreSQLParser.KW_IS); - this.state = 5688; - this.security_label(); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 5690; - this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5691; - this.match(PostgreSQLParser.KW_LABEL); - this.state = 5693; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 5692; - this.opt_provider(); - } - } - - this.state = 5695; - this.match(PostgreSQLParser.KW_ON); - this.state = 5696; - this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 5697; - this.function_with_argtypes(); - this.state = 5698; - this.match(PostgreSQLParser.KW_IS); - this.state = 5699; - this.security_label(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 5701; - this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5702; - this.match(PostgreSQLParser.KW_LABEL); - this.state = 5704; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 5703; - this.opt_provider(); - } - } - - this.state = 5706; - this.match(PostgreSQLParser.KW_ON); - this.state = 5707; - this.match(PostgreSQLParser.KW_LARGE); - this.state = 5708; - this.match(PostgreSQLParser.KW_OBJECT); - this.state = 5709; - this.numericonly(); - this.state = 5710; - this.match(PostgreSQLParser.KW_IS); - this.state = 5711; - this.security_label(); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 5713; - this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5714; - this.match(PostgreSQLParser.KW_LABEL); - this.state = 5716; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 5715; - this.opt_provider(); - } - } - - this.state = 5718; - this.match(PostgreSQLParser.KW_ON); - this.state = 5719; - this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 5720; - this.procedure_with_argtypes(); - this.state = 5721; - this.match(PostgreSQLParser.KW_IS); - this.state = 5722; - this.security_label(); - } - break; - case 10: - this.enterOuterAlt(localContext, 10); - { - this.state = 5724; - this.match(PostgreSQLParser.KW_SECURITY); - this.state = 5725; - this.match(PostgreSQLParser.KW_LABEL); - this.state = 5727; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 5726; - this.opt_provider(); - } - } - - this.state = 5729; - this.match(PostgreSQLParser.KW_ON); - this.state = 5730; - this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 5731; - this.routine_with_argtypes(); - this.state = 5732; - this.match(PostgreSQLParser.KW_IS); - this.state = 5733; - this.security_label(); - } - break; } } catch (re) { @@ -25590,13 +25806,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_provider(): Opt_providerContext { let localContext = new Opt_providerContext(this.context, this.state); - this.enterRule(localContext, 574, PostgreSQLParser.RULE_opt_provider); + this.enterRule(localContext, 572, PostgreSQLParser.RULE_opt_provider); try { this.enterOuterAlt(localContext, 1); { - this.state = 5737; + this.state = 5659; this.match(PostgreSQLParser.KW_FOR); - this.state = 5738; + this.state = 5660; this.nonreservedword_or_sconst(); } } @@ -25616,9 +25832,9 @@ export class PostgreSQLParser extends antlr.Parser { } public security_label(): Security_labelContext { let localContext = new Security_labelContext(this.context, this.state); - this.enterRule(localContext, 576, PostgreSQLParser.RULE_security_label); + this.enterRule(localContext, 574, PostgreSQLParser.RULE_security_label); try { - this.state = 5742; + this.state = 5664; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -25627,14 +25843,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 5740; + this.state = 5662; this.sconst(); } break; case PostgreSQLParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 5741; + this.state = 5663; this.match(PostgreSQLParser.KW_NULL); } break; @@ -25658,26 +25874,26 @@ export class PostgreSQLParser extends antlr.Parser { } public fetchstmt(): FetchstmtContext { let localContext = new FetchstmtContext(this.context, this.state); - this.enterRule(localContext, 578, PostgreSQLParser.RULE_fetchstmt); + this.enterRule(localContext, 576, PostgreSQLParser.RULE_fetchstmt); try { - this.state = 5748; + this.state = 5670; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FETCH: this.enterOuterAlt(localContext, 1); { - this.state = 5744; + this.state = 5666; this.match(PostgreSQLParser.KW_FETCH); - this.state = 5745; + this.state = 5667; this.fetch_args(); } break; case PostgreSQLParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 5746; + this.state = 5668; this.match(PostgreSQLParser.KW_MOVE); - this.state = 5747; + this.state = 5669; this.fetch_args(); } break; @@ -25701,303 +25917,303 @@ export class PostgreSQLParser extends antlr.Parser { } public fetch_args(): Fetch_argsContext { let localContext = new Fetch_argsContext(this.context, this.state); - this.enterRule(localContext, 580, PostgreSQLParser.RULE_fetch_args); + this.enterRule(localContext, 578, PostgreSQLParser.RULE_fetch_args); let _la: number; try { - this.state = 5835; + this.state = 5757; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 523, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5750; + this.state = 5672; this.cursor_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5751; + this.state = 5673; this.from_in(); - this.state = 5752; + this.state = 5674; this.cursor_name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5754; + this.state = 5676; this.match(PostgreSQLParser.KW_NEXT); - this.state = 5756; + this.state = 5678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5755; + this.state = 5677; this.opt_from_in(); } } - this.state = 5758; + this.state = 5680; this.cursor_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5759; + this.state = 5681; this.match(PostgreSQLParser.KW_PRIOR); - this.state = 5761; + this.state = 5683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5760; + this.state = 5682; this.opt_from_in(); } } - this.state = 5763; + this.state = 5685; this.cursor_name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5764; + this.state = 5686; this.match(PostgreSQLParser.KW_FIRST); - this.state = 5766; + this.state = 5688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5765; + this.state = 5687; this.opt_from_in(); } } - this.state = 5768; + this.state = 5690; this.cursor_name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5769; + this.state = 5691; this.match(PostgreSQLParser.KW_LAST); - this.state = 5771; + this.state = 5693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5770; + this.state = 5692; this.opt_from_in(); } } - this.state = 5773; + this.state = 5695; this.cursor_name(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5774; + this.state = 5696; this.match(PostgreSQLParser.KW_ABSOLUTE); - this.state = 5775; + this.state = 5697; this.signediconst(); - this.state = 5777; + this.state = 5699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5776; + this.state = 5698; this.opt_from_in(); } } - this.state = 5779; + this.state = 5701; this.cursor_name(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5781; + this.state = 5703; this.match(PostgreSQLParser.KW_RELATIVE); - this.state = 5782; + this.state = 5704; this.signediconst(); - this.state = 5784; + this.state = 5706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5783; + this.state = 5705; this.opt_from_in(); } } - this.state = 5786; + this.state = 5708; this.cursor_name(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5788; + this.state = 5710; this.signediconst(); - this.state = 5790; + this.state = 5712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5789; + this.state = 5711; this.opt_from_in(); } } - this.state = 5792; + this.state = 5714; this.cursor_name(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5794; + this.state = 5716; this.match(PostgreSQLParser.KW_ALL); - this.state = 5796; + this.state = 5718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5795; + this.state = 5717; this.opt_from_in(); } } - this.state = 5798; + this.state = 5720; this.cursor_name(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5799; + this.state = 5721; this.match(PostgreSQLParser.KW_FORWARD); - this.state = 5801; + this.state = 5723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5800; + this.state = 5722; this.opt_from_in(); } } - this.state = 5803; + this.state = 5725; this.cursor_name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5804; + this.state = 5726; this.match(PostgreSQLParser.KW_FORWARD); - this.state = 5805; + this.state = 5727; this.signediconst(); - this.state = 5807; + this.state = 5729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5806; + this.state = 5728; this.opt_from_in(); } } - this.state = 5809; + this.state = 5731; this.cursor_name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5811; + this.state = 5733; this.match(PostgreSQLParser.KW_FORWARD); - this.state = 5812; + this.state = 5734; this.match(PostgreSQLParser.KW_ALL); - this.state = 5814; + this.state = 5736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5813; + this.state = 5735; this.opt_from_in(); } } - this.state = 5816; + this.state = 5738; this.cursor_name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5817; + this.state = 5739; this.match(PostgreSQLParser.KW_BACKWARD); - this.state = 5819; + this.state = 5741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5818; + this.state = 5740; this.opt_from_in(); } } - this.state = 5821; + this.state = 5743; this.cursor_name(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5822; + this.state = 5744; this.match(PostgreSQLParser.KW_BACKWARD); - this.state = 5823; + this.state = 5745; this.signediconst(); - this.state = 5825; + this.state = 5747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5824; + this.state = 5746; this.opt_from_in(); } } - this.state = 5827; + this.state = 5749; this.cursor_name(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5829; + this.state = 5751; this.match(PostgreSQLParser.KW_BACKWARD); - this.state = 5830; + this.state = 5752; this.match(PostgreSQLParser.KW_ALL); - this.state = 5832; + this.state = 5754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 5831; + this.state = 5753; this.opt_from_in(); } } - this.state = 5834; + this.state = 5756; this.cursor_name(); } break; @@ -26019,12 +26235,12 @@ export class PostgreSQLParser extends antlr.Parser { } public from_in(): From_inContext { let localContext = new From_inContext(this.context, this.state); - this.enterRule(localContext, 582, PostgreSQLParser.RULE_from_in); + this.enterRule(localContext, 580, PostgreSQLParser.RULE_from_in); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5837; + this.state = 5759; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -26051,11 +26267,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_from_in(): Opt_from_inContext { let localContext = new Opt_from_inContext(this.context, this.state); - this.enterRule(localContext, 584, PostgreSQLParser.RULE_opt_from_in); + this.enterRule(localContext, 582, PostgreSQLParser.RULE_opt_from_in); try { this.enterOuterAlt(localContext, 1); { - this.state = 5839; + this.state = 5761; this.from_in(); } } @@ -26075,28 +26291,28 @@ export class PostgreSQLParser extends antlr.Parser { } public grantstmt(): GrantstmtContext { let localContext = new GrantstmtContext(this.context, this.state); - this.enterRule(localContext, 586, PostgreSQLParser.RULE_grantstmt); + this.enterRule(localContext, 584, PostgreSQLParser.RULE_grantstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 5841; + this.state = 5763; this.match(PostgreSQLParser.KW_GRANT); - this.state = 5842; + this.state = 5764; this.privileges(); - this.state = 5843; + this.state = 5765; this.match(PostgreSQLParser.KW_ON); - this.state = 5844; + this.state = 5766; this.privilege_target(); - this.state = 5845; + this.state = 5767; this.match(PostgreSQLParser.KW_TO); - this.state = 5846; + this.state = 5768; this.grantee_list(); - this.state = 5848; + this.state = 5770; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { case 1: { - this.state = 5847; + this.state = 5769; this.opt_grant_grant_option(); } break; @@ -26119,32 +26335,32 @@ export class PostgreSQLParser extends antlr.Parser { } public revokestmt(): RevokestmtContext { let localContext = new RevokestmtContext(this.context, this.state); - this.enterRule(localContext, 588, PostgreSQLParser.RULE_revokestmt); + this.enterRule(localContext, 586, PostgreSQLParser.RULE_revokestmt); try { - this.state = 5871; + this.state = 5793; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5850; + this.state = 5772; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 5851; + this.state = 5773; this.privileges(); - this.state = 5852; + this.state = 5774; this.match(PostgreSQLParser.KW_ON); - this.state = 5853; + this.state = 5775; this.privilege_target(); - this.state = 5854; + this.state = 5776; this.match(PostgreSQLParser.KW_FROM); - this.state = 5855; + this.state = 5777; this.grantee_list(); - this.state = 5857; + this.state = 5779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 530, this.context) ) { case 1: { - this.state = 5856; + this.state = 5778; this.opt_drop_behavior(); } break; @@ -26154,30 +26370,30 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5859; + this.state = 5781; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 5860; + this.state = 5782; this.match(PostgreSQLParser.KW_GRANT); - this.state = 5861; + this.state = 5783; this.match(PostgreSQLParser.KW_OPTION); - this.state = 5862; + this.state = 5784; this.match(PostgreSQLParser.KW_FOR); - this.state = 5863; + this.state = 5785; this.privileges(); - this.state = 5864; + this.state = 5786; this.match(PostgreSQLParser.KW_ON); - this.state = 5865; + this.state = 5787; this.privilege_target(); - this.state = 5866; + this.state = 5788; this.match(PostgreSQLParser.KW_FROM); - this.state = 5867; + this.state = 5789; this.grantee_list(); - this.state = 5869; + this.state = 5791; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { case 1: { - this.state = 5868; + this.state = 5790; this.opt_drop_behavior(); } break; @@ -26202,66 +26418,66 @@ export class PostgreSQLParser extends antlr.Parser { } public privileges(): PrivilegesContext { let localContext = new PrivilegesContext(this.context, this.state); - this.enterRule(localContext, 590, PostgreSQLParser.RULE_privileges); + this.enterRule(localContext, 588, PostgreSQLParser.RULE_privileges); try { - this.state = 5889; + this.state = 5811; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5873; + this.state = 5795; this.privilege_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5874; + this.state = 5796; this.match(PostgreSQLParser.KW_ALL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5875; + this.state = 5797; this.match(PostgreSQLParser.KW_ALL); - this.state = 5876; + this.state = 5798; this.match(PostgreSQLParser.KW_PRIVILEGES); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5877; + this.state = 5799; this.match(PostgreSQLParser.KW_ALL); - this.state = 5878; + this.state = 5800; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5879; + this.state = 5801; this.columnlist(); - this.state = 5880; + this.state = 5802; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5882; + this.state = 5804; this.match(PostgreSQLParser.KW_ALL); - this.state = 5883; + this.state = 5805; this.match(PostgreSQLParser.KW_PRIVILEGES); - this.state = 5884; + this.state = 5806; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 5885; + this.state = 5807; this.columnlist(); - this.state = 5886; + this.state = 5808; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5888; + this.state = 5810; this.beforeprivilegeselectlist(); } break; @@ -26283,26 +26499,26 @@ export class PostgreSQLParser extends antlr.Parser { } public beforeprivilegeselectlist(): BeforeprivilegeselectlistContext { let localContext = new BeforeprivilegeselectlistContext(this.context, this.state); - this.enterRule(localContext, 592, PostgreSQLParser.RULE_beforeprivilegeselectlist); + this.enterRule(localContext, 590, PostgreSQLParser.RULE_beforeprivilegeselectlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5891; + this.state = 5813; this.beforeprivilegeselect(); - this.state = 5896; + this.state = 5818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5892; + this.state = 5814; this.match(PostgreSQLParser.COMMA); - this.state = 5893; + this.state = 5815; this.beforeprivilegeselect(); } } - this.state = 5898; + this.state = 5820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26324,12 +26540,12 @@ export class PostgreSQLParser extends antlr.Parser { } public beforeprivilegeselect(): BeforeprivilegeselectContext { let localContext = new BeforeprivilegeselectContext(this.context, this.state); - this.enterRule(localContext, 594, PostgreSQLParser.RULE_beforeprivilegeselect); + this.enterRule(localContext, 592, PostgreSQLParser.RULE_beforeprivilegeselect); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5899; + this.state = 5821; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 88 || _la === 182 || _la === 202 || _la === 241 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 131173) !== 0) || ((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -26356,26 +26572,26 @@ export class PostgreSQLParser extends antlr.Parser { } public privilege_list(): Privilege_listContext { let localContext = new Privilege_listContext(this.context, this.state); - this.enterRule(localContext, 596, PostgreSQLParser.RULE_privilege_list); + this.enterRule(localContext, 594, PostgreSQLParser.RULE_privilege_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5901; + this.state = 5823; this.privilege(); - this.state = 5906; + this.state = 5828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5902; + this.state = 5824; this.match(PostgreSQLParser.COMMA); - this.state = 5903; + this.state = 5825; this.privilege(); } } - this.state = 5908; + this.state = 5830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26397,23 +26613,23 @@ export class PostgreSQLParser extends antlr.Parser { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 598, PostgreSQLParser.RULE_privilege); + this.enterRule(localContext, 596, PostgreSQLParser.RULE_privilege); let _la: number; try { - this.state = 5925; + this.state = 5847; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 5909; + this.state = 5831; this.match(PostgreSQLParser.KW_SELECT); - this.state = 5911; + this.state = 5833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5910; + this.state = 5832; this.opt_column_list(); } } @@ -26423,14 +26639,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_REFERENCES: this.enterOuterAlt(localContext, 2); { - this.state = 5913; + this.state = 5835; this.match(PostgreSQLParser.KW_REFERENCES); - this.state = 5915; + this.state = 5837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5914; + this.state = 5836; this.opt_column_list(); } } @@ -26440,14 +26656,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CREATE: this.enterOuterAlt(localContext, 3); { - this.state = 5917; + this.state = 5839; this.match(PostgreSQLParser.KW_CREATE); - this.state = 5919; + this.state = 5841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5918; + this.state = 5840; this.opt_column_list(); } } @@ -26457,7 +26673,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -26857,14 +27072,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 5921; + this.state = 5843; this.colid(); - this.state = 5923; + this.state = 5845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5922; + this.state = 5844; this.opt_column_list(); } } @@ -26891,224 +27106,224 @@ export class PostgreSQLParser extends antlr.Parser { } public privilege_target(): Privilege_targetContext { let localContext = new Privilege_targetContext(this.context, this.state); - this.enterRule(localContext, 600, PostgreSQLParser.RULE_privilege_target); + this.enterRule(localContext, 598, PostgreSQLParser.RULE_privilege_target); try { - this.state = 5985; + this.state = 5907; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 536, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5927; + this.state = 5849; this.qualified_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5928; + this.state = 5850; this.match(PostgreSQLParser.KW_TABLE); - this.state = 5929; + this.state = 5851; this.table_name_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5930; + this.state = 5852; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 5931; + this.state = 5853; this.qualified_name_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5932; + this.state = 5854; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5933; + this.state = 5855; this.match(PostgreSQLParser.KW_DATA); - this.state = 5934; + this.state = 5856; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 5935; + this.state = 5857; this.name_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5936; + this.state = 5858; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 5937; + this.state = 5859; this.match(PostgreSQLParser.KW_SERVER); - this.state = 5938; + this.state = 5860; this.name_list(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5939; + this.state = 5861; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 5940; + this.state = 5862; this.function_with_argtypes_list(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5941; + this.state = 5863; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 5942; + this.state = 5864; this.procedure_with_argtypes_list(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5943; + this.state = 5865; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 5944; + this.state = 5866; this.routine_with_argtypes_list(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5945; + this.state = 5867; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 5946; + this.state = 5868; this.database_nameList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5947; + this.state = 5869; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 5948; + this.state = 5870; this.any_name_list(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5949; + this.state = 5871; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 5950; + this.state = 5872; this.name_list(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5951; + this.state = 5873; this.match(PostgreSQLParser.KW_LARGE); - this.state = 5952; + this.state = 5874; this.match(PostgreSQLParser.KW_OBJECT); - this.state = 5953; + this.state = 5875; this.numericonly_list(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5954; + this.state = 5876; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5955; + this.state = 5877; this.schema_name_list(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5956; + this.state = 5878; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 5957; + this.state = 5879; this.tablespace_name_list(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5958; + this.state = 5880; this.match(PostgreSQLParser.KW_TYPE); - this.state = 5959; + this.state = 5881; this.any_name_list(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5960; + this.state = 5882; this.match(PostgreSQLParser.KW_ALL); - this.state = 5961; + this.state = 5883; this.match(PostgreSQLParser.KW_TABLES); - this.state = 5962; + this.state = 5884; this.match(PostgreSQLParser.KW_IN); - this.state = 5963; + this.state = 5885; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5964; + this.state = 5886; this.schema_name_list(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5965; + this.state = 5887; this.match(PostgreSQLParser.KW_ALL); - this.state = 5966; + this.state = 5888; this.match(PostgreSQLParser.KW_SEQUENCES); - this.state = 5967; + this.state = 5889; this.match(PostgreSQLParser.KW_IN); - this.state = 5968; + this.state = 5890; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5969; + this.state = 5891; this.schema_name_list(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5970; + this.state = 5892; this.match(PostgreSQLParser.KW_ALL); - this.state = 5971; + this.state = 5893; this.match(PostgreSQLParser.KW_FUNCTIONS); - this.state = 5972; + this.state = 5894; this.match(PostgreSQLParser.KW_IN); - this.state = 5973; + this.state = 5895; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5974; + this.state = 5896; this.schema_name_list(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5975; + this.state = 5897; this.match(PostgreSQLParser.KW_ALL); - this.state = 5976; + this.state = 5898; this.match(PostgreSQLParser.KW_PROCEDURES); - this.state = 5977; + this.state = 5899; this.match(PostgreSQLParser.KW_IN); - this.state = 5978; + this.state = 5900; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5979; + this.state = 5901; this.schema_name_list(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5980; + this.state = 5902; this.match(PostgreSQLParser.KW_ALL); - this.state = 5981; + this.state = 5903; this.match(PostgreSQLParser.KW_ROUTINES); - this.state = 5982; + this.state = 5904; this.match(PostgreSQLParser.KW_IN); - this.state = 5983; + this.state = 5905; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 5984; + this.state = 5906; this.schema_name_list(); } break; @@ -27130,26 +27345,26 @@ export class PostgreSQLParser extends antlr.Parser { } public grantee_list(): Grantee_listContext { let localContext = new Grantee_listContext(this.context, this.state); - this.enterRule(localContext, 602, PostgreSQLParser.RULE_grantee_list); + this.enterRule(localContext, 600, PostgreSQLParser.RULE_grantee_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5987; + this.state = 5909; this.grantee(); - this.state = 5992; + this.state = 5914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5988; + this.state = 5910; this.match(PostgreSQLParser.COMMA); - this.state = 5989; + this.state = 5911; this.grantee(); } } - this.state = 5994; + this.state = 5916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27171,15 +27386,14 @@ export class PostgreSQLParser extends antlr.Parser { } public grantee(): GranteeContext { let localContext = new GranteeContext(this.context, this.state); - this.enterRule(localContext, 604, PostgreSQLParser.RULE_grantee); + this.enterRule(localContext, 602, PostgreSQLParser.RULE_grantee); try { - this.state = 5998; + this.state = 5920; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_ROLE: case PostgreSQLParser.KW_CURRENT_USER: @@ -27604,16 +27818,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 5995; + this.state = 5917; this.rolespec(); } break; case PostgreSQLParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 5996; + this.state = 5918; this.match(PostgreSQLParser.KW_GROUP); - this.state = 5997; + this.state = 5919; this.rolespec(); } break; @@ -27637,15 +27851,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_grant_grant_option(): Opt_grant_grant_optionContext { let localContext = new Opt_grant_grant_optionContext(this.context, this.state); - this.enterRule(localContext, 606, PostgreSQLParser.RULE_opt_grant_grant_option); + this.enterRule(localContext, 604, PostgreSQLParser.RULE_opt_grant_grant_option); try { this.enterOuterAlt(localContext, 1); { - this.state = 6000; + this.state = 5922; this.match(PostgreSQLParser.KW_WITH); - this.state = 6001; + this.state = 5923; this.match(PostgreSQLParser.KW_GRANT); - this.state = 6002; + this.state = 5924; this.match(PostgreSQLParser.KW_OPTION); } } @@ -27665,34 +27879,34 @@ export class PostgreSQLParser extends antlr.Parser { } public grantrolestmt(): GrantrolestmtContext { let localContext = new GrantrolestmtContext(this.context, this.state); - this.enterRule(localContext, 608, PostgreSQLParser.RULE_grantrolestmt); + this.enterRule(localContext, 606, PostgreSQLParser.RULE_grantrolestmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6004; + this.state = 5926; this.match(PostgreSQLParser.KW_GRANT); - this.state = 6005; + this.state = 5927; this.privilege_list(); - this.state = 6006; + this.state = 5928; this.match(PostgreSQLParser.KW_TO); - this.state = 6007; + this.state = 5929; this.role_list(); - this.state = 6009; + this.state = 5931; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 6008; + this.state = 5930; this.opt_grant_admin_option(); } break; } - this.state = 6012; + this.state = 5934; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { - this.state = 6011; + this.state = 5933; this.opt_granted_by(); } break; @@ -27715,38 +27929,38 @@ export class PostgreSQLParser extends antlr.Parser { } public revokerolestmt(): RevokerolestmtContext { let localContext = new RevokerolestmtContext(this.context, this.state); - this.enterRule(localContext, 610, PostgreSQLParser.RULE_revokerolestmt); + this.enterRule(localContext, 608, PostgreSQLParser.RULE_revokerolestmt); try { - this.state = 6037; + this.state = 5959; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6014; + this.state = 5936; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 6015; + this.state = 5937; this.privilege_list(); - this.state = 6016; + this.state = 5938; this.match(PostgreSQLParser.KW_FROM); - this.state = 6017; + this.state = 5939; this.role_list(); - this.state = 6019; + this.state = 5941; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 541, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 6018; + this.state = 5940; this.opt_granted_by(); } break; } - this.state = 6022; + this.state = 5944; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { case 1: { - this.state = 6021; + this.state = 5943; this.opt_drop_behavior(); } break; @@ -27756,36 +27970,36 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6024; + this.state = 5946; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 6025; + this.state = 5947; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 6026; + this.state = 5948; this.match(PostgreSQLParser.KW_OPTION); - this.state = 6027; + this.state = 5949; this.match(PostgreSQLParser.KW_FOR); - this.state = 6028; + this.state = 5950; this.privilege_list(); - this.state = 6029; + this.state = 5951; this.match(PostgreSQLParser.KW_FROM); - this.state = 6030; + this.state = 5952; this.role_list(); - this.state = 6032; + this.state = 5954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 543, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: { - this.state = 6031; + this.state = 5953; this.opt_granted_by(); } break; } - this.state = 6035; + this.state = 5957; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: { - this.state = 6034; + this.state = 5956; this.opt_drop_behavior(); } break; @@ -27810,15 +28024,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_grant_admin_option(): Opt_grant_admin_optionContext { let localContext = new Opt_grant_admin_optionContext(this.context, this.state); - this.enterRule(localContext, 612, PostgreSQLParser.RULE_opt_grant_admin_option); + this.enterRule(localContext, 610, PostgreSQLParser.RULE_opt_grant_admin_option); try { this.enterOuterAlt(localContext, 1); { - this.state = 6039; + this.state = 5961; this.match(PostgreSQLParser.KW_WITH); - this.state = 6040; + this.state = 5962; this.match(PostgreSQLParser.KW_ADMIN); - this.state = 6041; + this.state = 5963; this.match(PostgreSQLParser.KW_OPTION); } } @@ -27838,15 +28052,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_granted_by(): Opt_granted_byContext { let localContext = new Opt_granted_byContext(this.context, this.state); - this.enterRule(localContext, 614, PostgreSQLParser.RULE_opt_granted_by); + this.enterRule(localContext, 612, PostgreSQLParser.RULE_opt_granted_by); try { this.enterOuterAlt(localContext, 1); { - this.state = 6043; + this.state = 5965; this.match(PostgreSQLParser.KW_GRANTED); - this.state = 6044; + this.state = 5966; this.match(PostgreSQLParser.KW_BY); - this.state = 6045; + this.state = 5967; this.rolespec(); } } @@ -27866,19 +28080,19 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdefaultprivilegesstmt(): AlterdefaultprivilegesstmtContext { let localContext = new AlterdefaultprivilegesstmtContext(this.context, this.state); - this.enterRule(localContext, 616, PostgreSQLParser.RULE_alterdefaultprivilegesstmt); + this.enterRule(localContext, 614, PostgreSQLParser.RULE_alterdefaultprivilegesstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6047; + this.state = 5969; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6048; + this.state = 5970; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 6049; + this.state = 5971; this.match(PostgreSQLParser.KW_PRIVILEGES); - this.state = 6050; + this.state = 5972; this.defacloptionlist(); - this.state = 6051; + this.state = 5973; this.defaclaction(); } } @@ -27898,22 +28112,22 @@ export class PostgreSQLParser extends antlr.Parser { } public defacloptionlist(): DefacloptionlistContext { let localContext = new DefacloptionlistContext(this.context, this.state); - this.enterRule(localContext, 618, PostgreSQLParser.RULE_defacloptionlist); + this.enterRule(localContext, 616, PostgreSQLParser.RULE_defacloptionlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6056; + this.state = 5978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { { - this.state = 6053; + this.state = 5975; this.defacloption(); } } - this.state = 6058; + this.state = 5980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27935,41 +28149,41 @@ export class PostgreSQLParser extends antlr.Parser { } public defacloption(): DefacloptionContext { let localContext = new DefacloptionContext(this.context, this.state); - this.enterRule(localContext, 620, PostgreSQLParser.RULE_defacloption); + this.enterRule(localContext, 618, PostgreSQLParser.RULE_defacloption); try { - this.state = 6068; + this.state = 5990; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6059; + this.state = 5981; this.match(PostgreSQLParser.KW_IN); - this.state = 6060; + this.state = 5982; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 6061; + this.state = 5983; this.schema_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6062; + this.state = 5984; this.match(PostgreSQLParser.KW_FOR); - this.state = 6063; + this.state = 5985; this.match(PostgreSQLParser.KW_ROLE); - this.state = 6064; + this.state = 5986; this.role_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6065; + this.state = 5987; this.match(PostgreSQLParser.KW_FOR); - this.state = 6066; + this.state = 5988; this.match(PostgreSQLParser.KW_USER); - this.state = 6067; + this.state = 5989; this.role_list(); } break; @@ -27991,32 +28205,32 @@ export class PostgreSQLParser extends antlr.Parser { } public defaclaction(): DefaclactionContext { let localContext = new DefaclactionContext(this.context, this.state); - this.enterRule(localContext, 622, PostgreSQLParser.RULE_defaclaction); + this.enterRule(localContext, 620, PostgreSQLParser.RULE_defaclaction); try { - this.state = 6100; + this.state = 6022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6070; + this.state = 5992; this.match(PostgreSQLParser.KW_GRANT); - this.state = 6071; + this.state = 5993; this.privileges(); - this.state = 6072; + this.state = 5994; this.match(PostgreSQLParser.KW_ON); - this.state = 6073; + this.state = 5995; this.defacl_privilege_target(); - this.state = 6074; + this.state = 5996; this.match(PostgreSQLParser.KW_TO); - this.state = 6075; + this.state = 5997; this.grantee_list(); - this.state = 6077; + this.state = 5999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 6076; + this.state = 5998; this.opt_grant_grant_option(); } break; @@ -28026,24 +28240,24 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6079; + this.state = 6001; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 6080; + this.state = 6002; this.privileges(); - this.state = 6081; + this.state = 6003; this.match(PostgreSQLParser.KW_ON); - this.state = 6082; + this.state = 6004; this.defacl_privilege_target(); - this.state = 6083; + this.state = 6005; this.match(PostgreSQLParser.KW_FROM); - this.state = 6084; + this.state = 6006; this.grantee_list(); - this.state = 6086; + this.state = 6008; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: { - this.state = 6085; + this.state = 6007; this.opt_drop_behavior(); } break; @@ -28053,30 +28267,30 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6088; + this.state = 6010; this.match(PostgreSQLParser.KW_REVOKE); - this.state = 6089; + this.state = 6011; this.match(PostgreSQLParser.KW_GRANT); - this.state = 6090; + this.state = 6012; this.match(PostgreSQLParser.KW_OPTION); - this.state = 6091; + this.state = 6013; this.match(PostgreSQLParser.KW_FOR); - this.state = 6092; + this.state = 6014; this.privileges(); - this.state = 6093; + this.state = 6015; this.match(PostgreSQLParser.KW_ON); - this.state = 6094; + this.state = 6016; this.defacl_privilege_target(); - this.state = 6095; + this.state = 6017; this.match(PostgreSQLParser.KW_FROM); - this.state = 6096; + this.state = 6018; this.grantee_list(); - this.state = 6098; + this.state = 6020; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 6097; + this.state = 6019; this.opt_drop_behavior(); } break; @@ -28101,12 +28315,12 @@ export class PostgreSQLParser extends antlr.Parser { } public defacl_privilege_target(): Defacl_privilege_targetContext { let localContext = new Defacl_privilege_targetContext(this.context, this.state); - this.enterRule(localContext, 624, PostgreSQLParser.RULE_defacl_privilege_target); + this.enterRule(localContext, 622, PostgreSQLParser.RULE_defacl_privilege_target); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6102; + this.state = 6024; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 361 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -28133,121 +28347,121 @@ export class PostgreSQLParser extends antlr.Parser { } public indexstmt(): IndexstmtContext { let localContext = new IndexstmtContext(this.context, this.state); - this.enterRule(localContext, 626, PostgreSQLParser.RULE_indexstmt); + this.enterRule(localContext, 624, PostgreSQLParser.RULE_indexstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6104; + this.state = 6026; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6106; + this.state = 6028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98) { { - this.state = 6105; + this.state = 6027; this.opt_unique(); } } - this.state = 6108; + this.state = 6030; this.match(PostgreSQLParser.KW_INDEX); - this.state = 6110; + this.state = 6032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6109; + this.state = 6031; this.opt_concurrently(); } } - this.state = 6113; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { - case 1: - { - this.state = 6112; - this.opt_if_not_exists(); - } - break; - } - this.state = 6116; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { - { - this.state = 6115; - this.opt_index_name(); - } - } - - this.state = 6118; - this.match(PostgreSQLParser.KW_ON); - this.state = 6119; - this.relation_expr(); - this.state = 6121; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 100) { - { - this.state = 6120; - this.access_method_clause(); - } - } - - this.state = 6123; - this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6124; - this.index_params(); - this.state = 6125; - this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6127; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { - case 1: - { - this.state = 6126; - this.opt_include(); - } - break; - } - this.state = 6130; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { - case 1: - { - this.state = 6129; - this.nulls_distinct(); - } - break; - } - this.state = 6133; + this.state = 6035; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { case 1: { - this.state = 6132; + this.state = 6034; + this.opt_if_not_exists(); + } + break; + } + this.state = 6038; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + { + this.state = 6037; + this.opt_index_name(); + } + } + + this.state = 6040; + this.match(PostgreSQLParser.KW_ON); + this.state = 6041; + this.relation_expr(); + this.state = 6043; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 100) { + { + this.state = 6042; + this.access_method_clause(); + } + } + + this.state = 6045; + this.match(PostgreSQLParser.OPEN_PAREN); + this.state = 6046; + this.index_params(); + this.state = 6047; + this.match(PostgreSQLParser.CLOSE_PAREN); + this.state = 6049; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 562, this.context) ) { + case 1: + { + this.state = 6048; + this.opt_include(); + } + break; + } + this.state = 6052; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { + case 1: + { + this.state = 6051; + this.nulls_distinct(); + } + break; + } + this.state = 6055; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { + case 1: + { + this.state = 6054; this.opt_reloptions(); } break; } - this.state = 6136; + this.state = 6058; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: { - this.state = 6135; + this.state = 6057; this.opttablespace(); } break; } - this.state = 6139; + this.state = 6061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 6138; + this.state = 6060; this.where_clause(); } } @@ -28270,11 +28484,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_unique(): Opt_uniqueContext { let localContext = new Opt_uniqueContext(this.context, this.state); - this.enterRule(localContext, 628, PostgreSQLParser.RULE_opt_unique); + this.enterRule(localContext, 626, PostgreSQLParser.RULE_opt_unique); try { this.enterOuterAlt(localContext, 1); { - this.state = 6141; + this.state = 6063; this.match(PostgreSQLParser.KW_UNIQUE); } } @@ -28294,11 +28508,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_concurrently(): Opt_concurrentlyContext { let localContext = new Opt_concurrentlyContext(this.context, this.state); - this.enterRule(localContext, 630, PostgreSQLParser.RULE_opt_concurrently); + this.enterRule(localContext, 628, PostgreSQLParser.RULE_opt_concurrently); try { this.enterOuterAlt(localContext, 1); { - this.state = 6143; + this.state = 6065; this.match(PostgreSQLParser.KW_CONCURRENTLY); } } @@ -28318,11 +28532,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_index_name(): Opt_index_nameContext { let localContext = new Opt_index_nameContext(this.context, this.state); - this.enterRule(localContext, 632, PostgreSQLParser.RULE_opt_index_name); + this.enterRule(localContext, 630, PostgreSQLParser.RULE_opt_index_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 6145; + this.state = 6067; this.name(); } } @@ -28342,13 +28556,13 @@ export class PostgreSQLParser extends antlr.Parser { } public access_method_clause(): Access_method_clauseContext { let localContext = new Access_method_clauseContext(this.context, this.state); - this.enterRule(localContext, 634, PostgreSQLParser.RULE_access_method_clause); + this.enterRule(localContext, 632, PostgreSQLParser.RULE_access_method_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6147; + this.state = 6069; this.match(PostgreSQLParser.KW_USING); - this.state = 6148; + this.state = 6070; this.name(); } } @@ -28368,26 +28582,26 @@ export class PostgreSQLParser extends antlr.Parser { } public index_params(): Index_paramsContext { let localContext = new Index_paramsContext(this.context, this.state); - this.enterRule(localContext, 636, PostgreSQLParser.RULE_index_params); + this.enterRule(localContext, 634, PostgreSQLParser.RULE_index_params); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6150; + this.state = 6072; this.index_elem(); - this.state = 6155; + this.state = 6077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6151; + this.state = 6073; this.match(PostgreSQLParser.COMMA); - this.state = 6152; + this.state = 6074; this.index_elem(); } } - this.state = 6157; + this.state = 6079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28409,51 +28623,51 @@ export class PostgreSQLParser extends antlr.Parser { } public index_elem_options(): Index_elem_optionsContext { let localContext = new Index_elem_optionsContext(this.context, this.state); - this.enterRule(localContext, 638, PostgreSQLParser.RULE_index_elem_options); + this.enterRule(localContext, 636, PostgreSQLParser.RULE_index_elem_options); let _la: number; try { - this.state = 6181; + this.state = 6103; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6159; + this.state = 6081; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: { - this.state = 6158; + this.state = 6080; this.opt_collate(); } break; } - this.state = 6162; + this.state = 6084; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { case 1: { - this.state = 6161; + this.state = 6083; this.opt_class(); } break; } - this.state = 6165; + this.state = 6087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 6164; + this.state = 6086; this.opt_asc_desc(); } } - this.state = 6168; + this.state = 6090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 6167; + this.state = 6089; this.opt_nulls_order(); } } @@ -28463,36 +28677,36 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6171; + this.state = 6093; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { case 1: { - this.state = 6170; + this.state = 6092; this.opt_collate(); } break; } - this.state = 6173; + this.state = 6095; this.any_name(); - this.state = 6174; + this.state = 6096; this.reloptions(); - this.state = 6176; + this.state = 6098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 6175; + this.state = 6097; this.opt_asc_desc(); } } - this.state = 6179; + this.state = 6101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 6178; + this.state = 6100; this.opt_nulls_order(); } } @@ -28517,39 +28731,39 @@ export class PostgreSQLParser extends antlr.Parser { } public index_elem(): Index_elemContext { let localContext = new Index_elemContext(this.context, this.state); - this.enterRule(localContext, 640, PostgreSQLParser.RULE_index_elem); + this.enterRule(localContext, 638, PostgreSQLParser.RULE_index_elem); try { - this.state = 6194; + this.state = 6116; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6183; + this.state = 6105; this.column_name(); - this.state = 6184; + this.state = 6106; this.index_elem_options(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6186; + this.state = 6108; this.func_expr_windowless(); - this.state = 6187; + this.state = 6109; this.index_elem_options(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6189; + this.state = 6111; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6190; + this.state = 6112; this.a_expr(); - this.state = 6191; + this.state = 6113; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6192; + this.state = 6114; this.index_elem_options(); } break; @@ -28571,17 +28785,17 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_include(): Opt_includeContext { let localContext = new Opt_includeContext(this.context, this.state); - this.enterRule(localContext, 642, PostgreSQLParser.RULE_opt_include); + this.enterRule(localContext, 640, PostgreSQLParser.RULE_opt_include); try { this.enterOuterAlt(localContext, 1); { - this.state = 6196; + this.state = 6118; this.match(PostgreSQLParser.KW_INCLUDE); - this.state = 6197; + this.state = 6119; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6198; + this.state = 6120; this.index_including_params(); - this.state = 6199; + this.state = 6121; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -28601,26 +28815,26 @@ export class PostgreSQLParser extends antlr.Parser { } public index_including_params(): Index_including_paramsContext { let localContext = new Index_including_paramsContext(this.context, this.state); - this.enterRule(localContext, 644, PostgreSQLParser.RULE_index_including_params); + this.enterRule(localContext, 642, PostgreSQLParser.RULE_index_including_params); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6201; + this.state = 6123; this.index_elem(); - this.state = 6206; + this.state = 6128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6202; + this.state = 6124; this.match(PostgreSQLParser.COMMA); - this.state = 6203; + this.state = 6125; this.index_elem(); } } - this.state = 6208; + this.state = 6130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28642,13 +28856,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_collate(): Opt_collateContext { let localContext = new Opt_collateContext(this.context, this.state); - this.enterRule(localContext, 646, PostgreSQLParser.RULE_opt_collate); + this.enterRule(localContext, 644, PostgreSQLParser.RULE_opt_collate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6209; + this.state = 6131; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 6210; + this.state = 6132; this.any_name(); } } @@ -28668,11 +28882,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_class(): Opt_classContext { let localContext = new Opt_classContext(this.context, this.state); - this.enterRule(localContext, 648, PostgreSQLParser.RULE_opt_class); + this.enterRule(localContext, 646, PostgreSQLParser.RULE_opt_class); try { this.enterOuterAlt(localContext, 1); { - this.state = 6212; + this.state = 6134; this.any_name(); } } @@ -28692,12 +28906,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_asc_desc(): Opt_asc_descContext { let localContext = new Opt_asc_descContext(this.context, this.state); - this.enterRule(localContext, 650, PostgreSQLParser.RULE_opt_asc_desc); + this.enterRule(localContext, 648, PostgreSQLParser.RULE_opt_asc_desc); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6214; + this.state = 6136; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -28724,26 +28938,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_nulls_order(): Opt_nulls_orderContext { let localContext = new Opt_nulls_orderContext(this.context, this.state); - this.enterRule(localContext, 652, PostgreSQLParser.RULE_opt_nulls_order); + this.enterRule(localContext, 650, PostgreSQLParser.RULE_opt_nulls_order); try { - this.state = 6220; + this.state = 6142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 573, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6216; + this.state = 6138; this.match(PostgreSQLParser.KW_NULLS); - this.state = 6217; + this.state = 6139; this.match(PostgreSQLParser.KW_FIRST); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6218; + this.state = 6140; this.match(PostgreSQLParser.KW_NULLS); - this.state = 6219; + this.state = 6141; this.match(PostgreSQLParser.KW_LAST); } break; @@ -28765,72 +28979,72 @@ export class PostgreSQLParser extends antlr.Parser { } public createfunctionstmt(): CreatefunctionstmtContext { let localContext = new CreatefunctionstmtContext(this.context, this.state); - this.enterRule(localContext, 654, PostgreSQLParser.RULE_createfunctionstmt); + this.enterRule(localContext, 652, PostgreSQLParser.RULE_createfunctionstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6222; + this.state = 6144; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6224; + this.state = 6146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 6223; + this.state = 6145; this.opt_or_replace(); } } - this.state = 6230; + this.state = 6152; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FUNCTION: { - this.state = 6226; + this.state = 6148; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6227; + this.state = 6149; this.function_name_create(); } break; case PostgreSQLParser.KW_PROCEDURE: { - this.state = 6228; + this.state = 6150; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6229; + this.state = 6151; this.procedure_name_create(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6232; + this.state = 6154; this.func_args_with_defaults(); - this.state = 6242; + this.state = 6164; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 6233; + this.state = 6155; this.match(PostgreSQLParser.KW_RETURNS); - this.state = 6240; + this.state = 6162; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 6234; + this.state = 6156; this.func_return(); } break; case 2: { - this.state = 6235; + this.state = 6157; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6236; + this.state = 6158; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6237; + this.state = 6159; this.table_func_column_list(); - this.state = 6238; + this.state = 6160; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -28838,16 +29052,16 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 6244; + this.state = 6166; this.createfunc_opt_list(); - this.state = 6247; + this.state = 6169; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 6245; + this.state = 6167; this.match(PostgreSQLParser.KW_WITH); - this.state = 6246; + this.state = 6168; this.attrilist(); } break; @@ -28870,32 +29084,32 @@ export class PostgreSQLParser extends antlr.Parser { } public attrilist(): AttrilistContext { let localContext = new AttrilistContext(this.context, this.state); - this.enterRule(localContext, 656, PostgreSQLParser.RULE_attrilist); + this.enterRule(localContext, 654, PostgreSQLParser.RULE_attrilist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6249; + this.state = 6171; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6250; + this.state = 6172; this.colid(); - this.state = 6255; + this.state = 6177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6251; + this.state = 6173; this.match(PostgreSQLParser.COMMA); - this.state = 6252; + this.state = 6174; this.colid(); } } - this.state = 6257; + this.state = 6179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6258; + this.state = 6180; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -28915,13 +29129,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_or_replace(): Opt_or_replaceContext { let localContext = new Opt_or_replaceContext(this.context, this.state); - this.enterRule(localContext, 658, PostgreSQLParser.RULE_opt_or_replace); + this.enterRule(localContext, 656, PostgreSQLParser.RULE_opt_or_replace); try { this.enterOuterAlt(localContext, 1); { - this.state = 6260; + this.state = 6182; this.match(PostgreSQLParser.KW_OR); - this.state = 6261; + this.state = 6183; this.match(PostgreSQLParser.KW_REPLACE); } } @@ -28941,24 +29155,24 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args(): Func_argsContext { let localContext = new Func_argsContext(this.context, this.state); - this.enterRule(localContext, 660, PostgreSQLParser.RULE_func_args); + this.enterRule(localContext, 658, PostgreSQLParser.RULE_func_args); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6263; + this.state = 6185; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6265; + this.state = 6187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 6264; + this.state = 6186; this.func_args_list(); } } - this.state = 6267; + this.state = 6189; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -28978,26 +29192,26 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args_list(): Func_args_listContext { let localContext = new Func_args_listContext(this.context, this.state); - this.enterRule(localContext, 662, PostgreSQLParser.RULE_func_args_list); + this.enterRule(localContext, 660, PostgreSQLParser.RULE_func_args_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6269; + this.state = 6191; this.func_arg(); - this.state = 6274; + this.state = 6196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6270; + this.state = 6192; this.match(PostgreSQLParser.COMMA); - this.state = 6271; + this.state = 6193; this.func_arg(); } } - this.state = 6276; + this.state = 6198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29019,26 +29233,26 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_with_argtypes_list(): Routine_with_argtypes_listContext { let localContext = new Routine_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 664, PostgreSQLParser.RULE_routine_with_argtypes_list); + this.enterRule(localContext, 662, PostgreSQLParser.RULE_routine_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6277; + this.state = 6199; this.routine_with_argtypes(); - this.state = 6282; + this.state = 6204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6278; + this.state = 6200; this.match(PostgreSQLParser.COMMA); - this.state = 6279; + this.state = 6201; this.routine_with_argtypes(); } } - this.state = 6284; + this.state = 6206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29060,39 +29274,39 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_with_argtypes(): Routine_with_argtypesContext { let localContext = new Routine_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 666, PostgreSQLParser.RULE_routine_with_argtypes); + this.enterRule(localContext, 664, PostgreSQLParser.RULE_routine_with_argtypes); let _la: number; try { - this.state = 6293; + this.state = 6215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6285; + this.state = 6207; this.routine_name(); - this.state = 6286; + this.state = 6208; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6288; + this.state = 6210; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6289; + this.state = 6211; this.colid(); - this.state = 6291; + this.state = 6213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 6290; + this.state = 6212; this.indirection(); } } @@ -29117,26 +29331,26 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_with_argtypes_list(): Procedure_with_argtypes_listContext { let localContext = new Procedure_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 668, PostgreSQLParser.RULE_procedure_with_argtypes_list); + this.enterRule(localContext, 666, PostgreSQLParser.RULE_procedure_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6295; + this.state = 6217; this.procedure_with_argtypes(); - this.state = 6300; + this.state = 6222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6296; + this.state = 6218; this.match(PostgreSQLParser.COMMA); - this.state = 6297; + this.state = 6219; this.procedure_with_argtypes(); } } - this.state = 6302; + this.state = 6224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29158,39 +29372,39 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_with_argtypes(): Procedure_with_argtypesContext { let localContext = new Procedure_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 670, PostgreSQLParser.RULE_procedure_with_argtypes); + this.enterRule(localContext, 668, PostgreSQLParser.RULE_procedure_with_argtypes); let _la: number; try { - this.state = 6311; + this.state = 6233; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6303; + this.state = 6225; this.procedure_name(); - this.state = 6304; + this.state = 6226; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6306; + this.state = 6228; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6307; + this.state = 6229; this.colid(); - this.state = 6309; + this.state = 6231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 6308; + this.state = 6230; this.indirection(); } } @@ -29215,26 +29429,26 @@ export class PostgreSQLParser extends antlr.Parser { } public function_with_argtypes_list(): Function_with_argtypes_listContext { let localContext = new Function_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 672, PostgreSQLParser.RULE_function_with_argtypes_list); + this.enterRule(localContext, 670, PostgreSQLParser.RULE_function_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6313; + this.state = 6235; this.function_with_argtypes(); - this.state = 6318; + this.state = 6240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6314; + this.state = 6236; this.match(PostgreSQLParser.COMMA); - this.state = 6315; + this.state = 6237; this.function_with_argtypes(); } } - this.state = 6320; + this.state = 6242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29256,39 +29470,39 @@ export class PostgreSQLParser extends antlr.Parser { } public function_with_argtypes(): Function_with_argtypesContext { let localContext = new Function_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 674, PostgreSQLParser.RULE_function_with_argtypes); + this.enterRule(localContext, 672, PostgreSQLParser.RULE_function_with_argtypes); let _la: number; try { - this.state = 6329; + this.state = 6251; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6321; + this.state = 6243; this.function_name(); - this.state = 6322; + this.state = 6244; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6324; + this.state = 6246; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6325; + this.state = 6247; this.colid(); - this.state = 6327; + this.state = 6249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 6326; + this.state = 6248; this.indirection(); } } @@ -29313,24 +29527,24 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args_with_defaults(): Func_args_with_defaultsContext { let localContext = new Func_args_with_defaultsContext(this.context, this.state); - this.enterRule(localContext, 676, PostgreSQLParser.RULE_func_args_with_defaults); + this.enterRule(localContext, 674, PostgreSQLParser.RULE_func_args_with_defaults); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6331; + this.state = 6253; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6333; + this.state = 6255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || _la === 68 || _la === 92 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 6332; + this.state = 6254; this.func_args_with_defaults_list(); } } - this.state = 6335; + this.state = 6257; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -29350,26 +29564,26 @@ export class PostgreSQLParser extends antlr.Parser { } public func_args_with_defaults_list(): Func_args_with_defaults_listContext { let localContext = new Func_args_with_defaults_listContext(this.context, this.state); - this.enterRule(localContext, 678, PostgreSQLParser.RULE_func_args_with_defaults_list); + this.enterRule(localContext, 676, PostgreSQLParser.RULE_func_args_with_defaults_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6337; + this.state = 6259; this.func_arg_with_default(); - this.state = 6342; + this.state = 6264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6338; + this.state = 6260; this.match(PostgreSQLParser.COMMA); - this.state = 6339; + this.state = 6261; this.func_arg_with_default(); } } - this.state = 6344; + this.state = 6266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29391,53 +29605,53 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg(): Func_argContext { let localContext = new Func_argContext(this.context, this.state); - this.enterRule(localContext, 680, PostgreSQLParser.RULE_func_arg); + this.enterRule(localContext, 678, PostgreSQLParser.RULE_func_arg); try { - this.state = 6358; + this.state = 6280; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6345; + this.state = 6267; this.arg_class(); - this.state = 6347; + this.state = 6269; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 6346; + this.state = 6268; this.param_name(); } break; } - this.state = 6349; + this.state = 6271; this.func_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6351; + this.state = 6273; this.param_name(); - this.state = 6353; + this.state = 6275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: { - this.state = 6352; + this.state = 6274; this.arg_class(); } break; } - this.state = 6355; + this.state = 6277; this.func_type(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6357; + this.state = 6279; this.func_type(); } break; @@ -29459,22 +29673,22 @@ export class PostgreSQLParser extends antlr.Parser { } public arg_class(): Arg_classContext { let localContext = new Arg_classContext(this.context, this.state); - this.enterRule(localContext, 682, PostgreSQLParser.RULE_arg_class); + this.enterRule(localContext, 680, PostgreSQLParser.RULE_arg_class); try { - this.state = 6367; + this.state = 6289; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 6360; + this.state = 6282; this.match(PostgreSQLParser.KW_IN); - this.state = 6362; + this.state = 6284; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 596, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { case 1: { - this.state = 6361; + this.state = 6283; this.match(PostgreSQLParser.KW_OUT); } break; @@ -29484,21 +29698,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OUT: this.enterOuterAlt(localContext, 2); { - this.state = 6364; + this.state = 6286; this.match(PostgreSQLParser.KW_OUT); } break; case PostgreSQLParser.KW_INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 6365; + this.state = 6287; this.match(PostgreSQLParser.KW_INOUT); } break; case PostgreSQLParser.KW_VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 6366; + this.state = 6288; this.match(PostgreSQLParser.KW_VARIADIC); } break; @@ -29522,11 +29736,11 @@ export class PostgreSQLParser extends antlr.Parser { } public param_name(): Param_nameContext { let localContext = new Param_nameContext(this.context, this.state); - this.enterRule(localContext, 684, PostgreSQLParser.RULE_param_name); + this.enterRule(localContext, 682, PostgreSQLParser.RULE_param_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 6369; + this.state = 6291; this.type_function_name(); } } @@ -29546,11 +29760,11 @@ export class PostgreSQLParser extends antlr.Parser { } public func_return(): Func_returnContext { let localContext = new Func_returnContext(this.context, this.state); - this.enterRule(localContext, 686, PostgreSQLParser.RULE_func_return); + this.enterRule(localContext, 684, PostgreSQLParser.RULE_func_return); try { this.enterOuterAlt(localContext, 1); { - this.state = 6371; + this.state = 6293; this.func_type(); } } @@ -29570,43 +29784,43 @@ export class PostgreSQLParser extends antlr.Parser { } public func_type(): Func_typeContext { let localContext = new Func_typeContext(this.context, this.state); - this.enterRule(localContext, 688, PostgreSQLParser.RULE_func_type); + this.enterRule(localContext, 686, PostgreSQLParser.RULE_func_type); try { - this.state = 6385; + this.state = 6307; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6373; + this.state = 6295; this.typename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6374; + this.state = 6296; this.type_function_name(); - this.state = 6375; + this.state = 6297; this.attrs(); - this.state = 6376; + this.state = 6298; this.match(PostgreSQLParser.PERCENT); - this.state = 6377; + this.state = 6299; this.match(PostgreSQLParser.KW_TYPE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6379; + this.state = 6301; this.match(PostgreSQLParser.KW_SETOF); - this.state = 6380; + this.state = 6302; this.type_function_name(); - this.state = 6381; + this.state = 6303; this.attrs(); - this.state = 6382; + this.state = 6304; this.match(PostgreSQLParser.PERCENT); - this.state = 6383; + this.state = 6305; this.match(PostgreSQLParser.KW_TYPE); } break; @@ -29628,19 +29842,19 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg_with_default(): Func_arg_with_defaultContext { let localContext = new Func_arg_with_defaultContext(this.context, this.state); - this.enterRule(localContext, 690, PostgreSQLParser.RULE_func_arg_with_default); + this.enterRule(localContext, 688, PostgreSQLParser.RULE_func_arg_with_default); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6387; + this.state = 6309; this.func_arg(); - this.state = 6390; + this.state = 6312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 53) { { - this.state = 6388; + this.state = 6310; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 53)) { this.errorHandler.recoverInline(this); @@ -29649,7 +29863,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6389; + this.state = 6311; this.a_expr(); } } @@ -29672,11 +29886,11 @@ export class PostgreSQLParser extends antlr.Parser { } public aggr_arg(): Aggr_argContext { let localContext = new Aggr_argContext(this.context, this.state); - this.enterRule(localContext, 692, PostgreSQLParser.RULE_aggr_arg); + this.enterRule(localContext, 690, PostgreSQLParser.RULE_aggr_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 6392; + this.state = 6314; this.func_arg(); } } @@ -29696,51 +29910,51 @@ export class PostgreSQLParser extends antlr.Parser { } public aggr_args(): Aggr_argsContext { let localContext = new Aggr_argsContext(this.context, this.state); - this.enterRule(localContext, 694, PostgreSQLParser.RULE_aggr_args); + this.enterRule(localContext, 692, PostgreSQLParser.RULE_aggr_args); try { this.enterOuterAlt(localContext, 1); { - this.state = 6394; + this.state = 6316; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6405; + this.state = 6327; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { case 1: { - this.state = 6395; + this.state = 6317; this.match(PostgreSQLParser.STAR); } break; case 2: { - this.state = 6396; + this.state = 6318; this.aggr_args_list(); } break; case 3: { - this.state = 6397; + this.state = 6319; this.match(PostgreSQLParser.KW_ORDER); - this.state = 6398; + this.state = 6320; this.match(PostgreSQLParser.KW_BY); - this.state = 6399; + this.state = 6321; this.aggr_args_list(); } break; case 4: { - this.state = 6400; + this.state = 6322; this.aggr_args_list(); - this.state = 6401; + this.state = 6323; this.match(PostgreSQLParser.KW_ORDER); - this.state = 6402; + this.state = 6324; this.match(PostgreSQLParser.KW_BY); - this.state = 6403; + this.state = 6325; this.aggr_args_list(); } break; } - this.state = 6407; + this.state = 6329; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -29760,26 +29974,26 @@ export class PostgreSQLParser extends antlr.Parser { } public aggr_args_list(): Aggr_args_listContext { let localContext = new Aggr_args_listContext(this.context, this.state); - this.enterRule(localContext, 696, PostgreSQLParser.RULE_aggr_args_list); + this.enterRule(localContext, 694, PostgreSQLParser.RULE_aggr_args_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6409; + this.state = 6331; this.aggr_arg(); - this.state = 6414; + this.state = 6336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6410; + this.state = 6332; this.match(PostgreSQLParser.COMMA); - this.state = 6411; + this.state = 6333; this.aggr_arg(); } } - this.state = 6416; + this.state = 6338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29801,13 +30015,13 @@ export class PostgreSQLParser extends antlr.Parser { } public aggregate_with_argtypes(): Aggregate_with_argtypesContext { let localContext = new Aggregate_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 698, PostgreSQLParser.RULE_aggregate_with_argtypes); + this.enterRule(localContext, 696, PostgreSQLParser.RULE_aggregate_with_argtypes); try { this.enterOuterAlt(localContext, 1); { - this.state = 6417; + this.state = 6339; this.function_name(); - this.state = 6418; + this.state = 6340; this.aggr_args(); } } @@ -29827,26 +30041,26 @@ export class PostgreSQLParser extends antlr.Parser { } public aggregate_with_argtypes_list(): Aggregate_with_argtypes_listContext { let localContext = new Aggregate_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 700, PostgreSQLParser.RULE_aggregate_with_argtypes_list); + this.enterRule(localContext, 698, PostgreSQLParser.RULE_aggregate_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6420; + this.state = 6342; this.aggregate_with_argtypes(); - this.state = 6425; + this.state = 6347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6421; + this.state = 6343; this.match(PostgreSQLParser.COMMA); - this.state = 6422; + this.state = 6344; this.aggregate_with_argtypes(); } } - this.state = 6427; + this.state = 6349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29868,12 +30082,12 @@ export class PostgreSQLParser extends antlr.Parser { } public createfunc_opt_list(): Createfunc_opt_listContext { let localContext = new Createfunc_opt_listContext(this.context, this.state); - this.enterRule(localContext, 702, PostgreSQLParser.RULE_createfunc_opt_list); + this.enterRule(localContext, 700, PostgreSQLParser.RULE_createfunc_opt_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6429; + this.state = 6351; this.errorHandler.sync(this); alternative = 1; do { @@ -29881,7 +30095,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 6428; + this.state = 6350; this.createfunc_opt_item(); } } @@ -29889,9 +30103,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6431; + this.state = 6353; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 608, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29911,163 +30125,163 @@ export class PostgreSQLParser extends antlr.Parser { } public common_func_opt_item(): Common_func_opt_itemContext { let localContext = new Common_func_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 704, PostgreSQLParser.RULE_common_func_opt_item); + this.enterRule(localContext, 702, PostgreSQLParser.RULE_common_func_opt_item); try { - this.state = 6468; + this.state = 6390; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6433; + this.state = 6355; this.match(PostgreSQLParser.KW_CALLED); - this.state = 6434; + this.state = 6356; this.match(PostgreSQLParser.KW_ON); - this.state = 6435; + this.state = 6357; this.match(PostgreSQLParser.KW_NULL); - this.state = 6436; + this.state = 6358; this.match(PostgreSQLParser.KW_INPUT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6437; + this.state = 6359; this.match(PostgreSQLParser.KW_RETURNS); - this.state = 6438; + this.state = 6360; this.match(PostgreSQLParser.KW_NULL); - this.state = 6439; + this.state = 6361; this.match(PostgreSQLParser.KW_ON); - this.state = 6440; + this.state = 6362; this.match(PostgreSQLParser.KW_NULL); - this.state = 6441; + this.state = 6363; this.match(PostgreSQLParser.KW_INPUT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6442; + this.state = 6364; this.match(PostgreSQLParser.KW_STRICT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6443; + this.state = 6365; this.match(PostgreSQLParser.KW_IMMUTABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6444; + this.state = 6366; this.match(PostgreSQLParser.KW_STABLE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6445; + this.state = 6367; this.match(PostgreSQLParser.KW_VOLATILE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6446; + this.state = 6368; this.match(PostgreSQLParser.KW_EXTERNAL); - this.state = 6447; + this.state = 6369; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6448; + this.state = 6370; this.match(PostgreSQLParser.KW_DEFINER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6449; + this.state = 6371; this.match(PostgreSQLParser.KW_EXTERNAL); - this.state = 6450; + this.state = 6372; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6451; + this.state = 6373; this.match(PostgreSQLParser.KW_INVOKER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6452; + this.state = 6374; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6453; + this.state = 6375; this.match(PostgreSQLParser.KW_DEFINER); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 6454; + this.state = 6376; this.match(PostgreSQLParser.KW_SECURITY); - this.state = 6455; + this.state = 6377; this.match(PostgreSQLParser.KW_INVOKER); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 6456; + this.state = 6378; this.match(PostgreSQLParser.KW_LEAKPROOF); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 6457; + this.state = 6379; this.match(PostgreSQLParser.KW_NOT); - this.state = 6458; + this.state = 6380; this.match(PostgreSQLParser.KW_LEAKPROOF); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 6459; + this.state = 6381; this.match(PostgreSQLParser.KW_COST); - this.state = 6460; + this.state = 6382; this.numericonly(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 6461; + this.state = 6383; this.match(PostgreSQLParser.KW_ROWS); - this.state = 6462; + this.state = 6384; this.numericonly(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 6463; + this.state = 6385; this.match(PostgreSQLParser.KW_SUPPORT); - this.state = 6464; + this.state = 6386; this.any_name(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 6465; + this.state = 6387; this.functionsetresetclause(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 6466; + this.state = 6388; this.match(PostgreSQLParser.KW_PARALLEL); - this.state = 6467; + this.state = 6389; this.colid(); } break; @@ -30089,80 +30303,80 @@ export class PostgreSQLParser extends antlr.Parser { } public createfunc_opt_item(): Createfunc_opt_itemContext { let localContext = new Createfunc_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 706, PostgreSQLParser.RULE_createfunc_opt_item); + this.enterRule(localContext, 704, PostgreSQLParser.RULE_createfunc_opt_item); try { - this.state = 6495; + this.state = 6417; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6470; + this.state = 6392; this.match(PostgreSQLParser.KW_AS); - this.state = 6471; + this.state = 6393; this.sconst(); - this.state = 6472; + this.state = 6394; this.match(PostgreSQLParser.COMMA); - this.state = 6473; + this.state = 6395; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6475; + this.state = 6397; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6476; + this.state = 6398; this.nonreservedword_or_sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6477; + this.state = 6399; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 6478; + this.state = 6400; this.transform_type_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6479; + this.state = 6401; this.match(PostgreSQLParser.KW_WINDOW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6480; + this.state = 6402; this.match(PostgreSQLParser.KW_SET); - this.state = 6481; + this.state = 6403; this.colid(); - this.state = 6488; + this.state = 6410; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_TO: { - this.state = 6482; + this.state = 6404; this.match(PostgreSQLParser.KW_TO); - this.state = 6483; + this.state = 6405; this.colid(); } break; case PostgreSQLParser.EQUAL: { - this.state = 6484; + this.state = 6406; this.match(PostgreSQLParser.EQUAL); - this.state = 6485; + this.state = 6407; this.colid(); } break; case PostgreSQLParser.KW_FROM: { - this.state = 6486; + this.state = 6408; this.match(PostgreSQLParser.KW_FROM); - this.state = 6487; + this.state = 6409; this.match(PostgreSQLParser.KW_CURRENT); } break; @@ -30174,30 +30388,30 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6490; + this.state = 6412; this.match(PostgreSQLParser.KW_AS); - this.state = 6491; + this.state = 6413; this.colid(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6492; + this.state = 6414; this.stmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6493; + this.state = 6415; this.common_func_opt_item(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6494; + this.state = 6416; this.colid(); } break; @@ -30219,34 +30433,34 @@ export class PostgreSQLParser extends antlr.Parser { } public transform_type_list(): Transform_type_listContext { let localContext = new Transform_type_listContext(this.context, this.state); - this.enterRule(localContext, 708, PostgreSQLParser.RULE_transform_type_list); + this.enterRule(localContext, 706, PostgreSQLParser.RULE_transform_type_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6497; + this.state = 6419; this.match(PostgreSQLParser.KW_FOR); - this.state = 6498; + this.state = 6420; this.match(PostgreSQLParser.KW_TYPE); - this.state = 6499; + this.state = 6421; this.typename(); - this.state = 6506; + this.state = 6428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6500; + this.state = 6422; this.match(PostgreSQLParser.COMMA); - this.state = 6501; + this.state = 6423; this.match(PostgreSQLParser.KW_FOR); - this.state = 6502; + this.state = 6424; this.match(PostgreSQLParser.KW_TYPE); - this.state = 6503; + this.state = 6425; this.typename(); } } - this.state = 6508; + this.state = 6430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30268,13 +30482,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_definition(): Opt_definitionContext { let localContext = new Opt_definitionContext(this.context, this.state); - this.enterRule(localContext, 710, PostgreSQLParser.RULE_opt_definition); + this.enterRule(localContext, 708, PostgreSQLParser.RULE_opt_definition); try { this.enterOuterAlt(localContext, 1); { - this.state = 6509; + this.state = 6431; this.match(PostgreSQLParser.KW_WITH); - this.state = 6510; + this.state = 6432; this.definition(); } } @@ -30294,13 +30508,13 @@ export class PostgreSQLParser extends antlr.Parser { } public table_func_column(): Table_func_columnContext { let localContext = new Table_func_columnContext(this.context, this.state); - this.enterRule(localContext, 712, PostgreSQLParser.RULE_table_func_column); + this.enterRule(localContext, 710, PostgreSQLParser.RULE_table_func_column); try { this.enterOuterAlt(localContext, 1); { - this.state = 6512; + this.state = 6434; this.column_name(); - this.state = 6513; + this.state = 6435; this.func_type(); } } @@ -30320,26 +30534,26 @@ export class PostgreSQLParser extends antlr.Parser { } public table_func_column_list(): Table_func_column_listContext { let localContext = new Table_func_column_listContext(this.context, this.state); - this.enterRule(localContext, 714, PostgreSQLParser.RULE_table_func_column_list); + this.enterRule(localContext, 712, PostgreSQLParser.RULE_table_func_column_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6515; + this.state = 6437; this.table_func_column(); - this.state = 6520; + this.state = 6442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6516; + this.state = 6438; this.match(PostgreSQLParser.COMMA); - this.state = 6517; + this.state = 6439; this.table_func_column(); } } - this.state = 6522; + this.state = 6444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30361,22 +30575,22 @@ export class PostgreSQLParser extends antlr.Parser { } public alterfunctionstmt(): AlterfunctionstmtContext { let localContext = new AlterfunctionstmtContext(this.context, this.state); - this.enterRule(localContext, 716, PostgreSQLParser.RULE_alterfunctionstmt); + this.enterRule(localContext, 714, PostgreSQLParser.RULE_alterfunctionstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6523; + this.state = 6445; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6524; + this.state = 6446; this.alterFunctionTypeClause(); - this.state = 6525; + this.state = 6447; this.alterfunc_opt_list(); - this.state = 6527; + this.state = 6449; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 6526; + this.state = 6448; this.opt_restrict(); } break; @@ -30399,35 +30613,35 @@ export class PostgreSQLParser extends antlr.Parser { } public alterFunctionTypeClause(): AlterFunctionTypeClauseContext { let localContext = new AlterFunctionTypeClauseContext(this.context, this.state); - this.enterRule(localContext, 718, PostgreSQLParser.RULE_alterFunctionTypeClause); + this.enterRule(localContext, 716, PostgreSQLParser.RULE_alterFunctionTypeClause); try { - this.state = 6535; + this.state = 6457; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 6529; + this.state = 6451; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6530; + this.state = 6452; this.function_with_argtypes(); } break; case PostgreSQLParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 6531; + this.state = 6453; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6532; + this.state = 6454; this.procedure_with_argtypes(); } break; case PostgreSQLParser.KW_ROUTINE: this.enterOuterAlt(localContext, 3); { - this.state = 6533; + this.state = 6455; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 6534; + this.state = 6456; this.routine_with_argtypes(); } break; @@ -30451,12 +30665,12 @@ export class PostgreSQLParser extends antlr.Parser { } public alterfunc_opt_list(): Alterfunc_opt_listContext { let localContext = new Alterfunc_opt_listContext(this.context, this.state); - this.enterRule(localContext, 720, PostgreSQLParser.RULE_alterfunc_opt_list); + this.enterRule(localContext, 718, PostgreSQLParser.RULE_alterfunc_opt_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6538; + this.state = 6460; this.errorHandler.sync(this); alternative = 1; do { @@ -30464,7 +30678,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 6537; + this.state = 6459; this.common_func_opt_item(); } } @@ -30472,9 +30686,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6540; + this.state = 6462; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 611, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 616, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -30494,11 +30708,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_restrict(): Opt_restrictContext { let localContext = new Opt_restrictContext(this.context, this.state); - this.enterRule(localContext, 722, PostgreSQLParser.RULE_opt_restrict); + this.enterRule(localContext, 720, PostgreSQLParser.RULE_opt_restrict); try { this.enterOuterAlt(localContext, 1); { - this.state = 6542; + this.state = 6464; this.match(PostgreSQLParser.KW_RESTRICT); } } @@ -30518,36 +30732,36 @@ export class PostgreSQLParser extends antlr.Parser { } public removefuncstmt(): RemovefuncstmtContext { let localContext = new RemovefuncstmtContext(this.context, this.state); - this.enterRule(localContext, 724, PostgreSQLParser.RULE_removefuncstmt); + this.enterRule(localContext, 722, PostgreSQLParser.RULE_removefuncstmt); try { - this.state = 6571; + this.state = 6493; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6544; + this.state = 6466; this.match(PostgreSQLParser.KW_DROP); - this.state = 6545; + this.state = 6467; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6547; + this.state = 6469; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 6546; + this.state = 6468; this.opt_if_exists(); } break; } - this.state = 6549; + this.state = 6471; this.function_with_argtypes_list(); - this.state = 6551; + this.state = 6473; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 6550; + this.state = 6472; this.opt_drop_behavior(); } break; @@ -30557,28 +30771,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6553; + this.state = 6475; this.match(PostgreSQLParser.KW_DROP); - this.state = 6554; + this.state = 6476; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6556; + this.state = 6478; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 619, this.context) ) { case 1: { - this.state = 6555; + this.state = 6477; this.opt_if_exists(); } break; } - this.state = 6558; + this.state = 6480; this.procedure_with_argtypes_list(); - this.state = 6560; + this.state = 6482; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 6559; + this.state = 6481; this.opt_drop_behavior(); } break; @@ -30588,28 +30802,28 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6562; + this.state = 6484; this.match(PostgreSQLParser.KW_DROP); - this.state = 6563; + this.state = 6485; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 6565; + this.state = 6487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { case 1: { - this.state = 6564; + this.state = 6486; this.opt_if_exists(); } break; } - this.state = 6567; + this.state = 6489; this.routine_with_argtypes_list(); - this.state = 6569; + this.state = 6491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 6568; + this.state = 6490; this.opt_drop_behavior(); } break; @@ -30634,32 +30848,32 @@ export class PostgreSQLParser extends antlr.Parser { } public removeaggrstmt(): RemoveaggrstmtContext { let localContext = new RemoveaggrstmtContext(this.context, this.state); - this.enterRule(localContext, 726, PostgreSQLParser.RULE_removeaggrstmt); + this.enterRule(localContext, 724, PostgreSQLParser.RULE_removeaggrstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6573; + this.state = 6495; this.match(PostgreSQLParser.KW_DROP); - this.state = 6574; + this.state = 6496; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 6576; + this.state = 6498; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 619, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: { - this.state = 6575; + this.state = 6497; this.opt_if_exists(); } break; } - this.state = 6578; + this.state = 6500; this.aggregate_with_argtypes_list(); - this.state = 6580; + this.state = 6502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { case 1: { - this.state = 6579; + this.state = 6501; this.opt_drop_behavior(); } break; @@ -30682,32 +30896,32 @@ export class PostgreSQLParser extends antlr.Parser { } public removeoperstmt(): RemoveoperstmtContext { let localContext = new RemoveoperstmtContext(this.context, this.state); - this.enterRule(localContext, 728, PostgreSQLParser.RULE_removeoperstmt); + this.enterRule(localContext, 726, PostgreSQLParser.RULE_removeoperstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6582; + this.state = 6504; this.match(PostgreSQLParser.KW_DROP); - this.state = 6583; + this.state = 6505; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 6585; + this.state = 6507; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 6584; + this.state = 6506; this.opt_if_exists(); } break; } - this.state = 6587; + this.state = 6509; this.operator_with_argtypes_list(); - this.state = 6589; + this.state = 6511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: { - this.state = 6588; + this.state = 6510; this.opt_drop_behavior(); } break; @@ -30730,64 +30944,64 @@ export class PostgreSQLParser extends antlr.Parser { } public oper_argtypes(): Oper_argtypesContext { let localContext = new Oper_argtypesContext(this.context, this.state); - this.enterRule(localContext, 730, PostgreSQLParser.RULE_oper_argtypes); + this.enterRule(localContext, 728, PostgreSQLParser.RULE_oper_argtypes); try { - this.state = 6613; + this.state = 6535; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6591; + this.state = 6513; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6592; + this.state = 6514; this.typename(); - this.state = 6593; + this.state = 6515; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6595; + this.state = 6517; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6596; + this.state = 6518; this.typename(); - this.state = 6597; + this.state = 6519; this.match(PostgreSQLParser.COMMA); - this.state = 6598; + this.state = 6520; this.typename(); - this.state = 6599; + this.state = 6521; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6601; + this.state = 6523; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6602; + this.state = 6524; this.match(PostgreSQLParser.KW_NONE); - this.state = 6603; + this.state = 6525; this.match(PostgreSQLParser.COMMA); - this.state = 6604; + this.state = 6526; this.typename(); - this.state = 6605; + this.state = 6527; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6607; + this.state = 6529; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6608; + this.state = 6530; this.typename(); - this.state = 6609; + this.state = 6531; this.match(PostgreSQLParser.COMMA); - this.state = 6610; + this.state = 6532; this.match(PostgreSQLParser.KW_NONE); - this.state = 6611; + this.state = 6533; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -30809,28 +31023,28 @@ export class PostgreSQLParser extends antlr.Parser { } public any_operator(): Any_operatorContext { let localContext = new Any_operatorContext(this.context, this.state); - this.enterRule(localContext, 732, PostgreSQLParser.RULE_any_operator); + this.enterRule(localContext, 730, PostgreSQLParser.RULE_any_operator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6620; + this.state = 6542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { { - this.state = 6615; + this.state = 6537; this.colid(); - this.state = 6616; + this.state = 6538; this.match(PostgreSQLParser.DOT); } } - this.state = 6622; + this.state = 6544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6623; + this.state = 6545; this.all_op(); } } @@ -30850,26 +31064,26 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_with_argtypes_list(): Operator_with_argtypes_listContext { let localContext = new Operator_with_argtypes_listContext(this.context, this.state); - this.enterRule(localContext, 734, PostgreSQLParser.RULE_operator_with_argtypes_list); + this.enterRule(localContext, 732, PostgreSQLParser.RULE_operator_with_argtypes_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6625; + this.state = 6547; this.operator_with_argtypes(); - this.state = 6630; + this.state = 6552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6626; + this.state = 6548; this.match(PostgreSQLParser.COMMA); - this.state = 6627; + this.state = 6549; this.operator_with_argtypes(); } } - this.state = 6632; + this.state = 6554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30891,13 +31105,13 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_with_argtypes(): Operator_with_argtypesContext { let localContext = new Operator_with_argtypesContext(this.context, this.state); - this.enterRule(localContext, 736, PostgreSQLParser.RULE_operator_with_argtypes); + this.enterRule(localContext, 734, PostgreSQLParser.RULE_operator_with_argtypes); try { this.enterOuterAlt(localContext, 1); { - this.state = 6633; + this.state = 6555; this.any_operator(); - this.state = 6634; + this.state = 6556; this.oper_argtypes(); } } @@ -30917,13 +31131,13 @@ export class PostgreSQLParser extends antlr.Parser { } public dostmt(): DostmtContext { let localContext = new DostmtContext(this.context, this.state); - this.enterRule(localContext, 738, PostgreSQLParser.RULE_dostmt); + this.enterRule(localContext, 736, PostgreSQLParser.RULE_dostmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 6636; + this.state = 6558; this.match(PostgreSQLParser.KW_DO); - this.state = 6637; + this.state = 6559; this.dostmt_opt_list(); } } @@ -30943,12 +31157,12 @@ export class PostgreSQLParser extends antlr.Parser { } public dostmt_opt_list(): Dostmt_opt_listContext { let localContext = new Dostmt_opt_listContext(this.context, this.state); - this.enterRule(localContext, 740, PostgreSQLParser.RULE_dostmt_opt_list); + this.enterRule(localContext, 738, PostgreSQLParser.RULE_dostmt_opt_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6640; + this.state = 6562; this.errorHandler.sync(this); alternative = 1; do { @@ -30956,7 +31170,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 6639; + this.state = 6561; this.dostmt_opt_item(); } } @@ -30964,9 +31178,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 6642; + this.state = 6564; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 626, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 631, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -30986,9 +31200,9 @@ export class PostgreSQLParser extends antlr.Parser { } public dostmt_opt_item(): Dostmt_opt_itemContext { let localContext = new Dostmt_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 742, PostgreSQLParser.RULE_dostmt_opt_item); + this.enterRule(localContext, 740, PostgreSQLParser.RULE_dostmt_opt_item); try { - this.state = 6647; + this.state = 6569; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -30997,16 +31211,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 6644; + this.state = 6566; this.sconst(); } break; case PostgreSQLParser.KW_LANGUAGE: this.enterOuterAlt(localContext, 2); { - this.state = 6645; + this.state = 6567; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6646; + this.state = 6568; this.nonreservedword_or_sconst(); } break; @@ -31030,40 +31244,40 @@ export class PostgreSQLParser extends antlr.Parser { } public createcaststmt(): CreatecaststmtContext { let localContext = new CreatecaststmtContext(this.context, this.state); - this.enterRule(localContext, 744, PostgreSQLParser.RULE_createcaststmt); + this.enterRule(localContext, 742, PostgreSQLParser.RULE_createcaststmt); try { - this.state = 6686; + this.state = 6608; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 636, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6649; + this.state = 6571; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6650; + this.state = 6572; this.match(PostgreSQLParser.KW_CAST); - this.state = 6651; + this.state = 6573; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6652; + this.state = 6574; this.typename(); - this.state = 6653; + this.state = 6575; this.match(PostgreSQLParser.KW_AS); - this.state = 6654; + this.state = 6576; this.typename(); - this.state = 6655; + this.state = 6577; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6656; + this.state = 6578; this.match(PostgreSQLParser.KW_WITH); - this.state = 6657; + this.state = 6579; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6658; + this.state = 6580; this.function_with_argtypes(); - this.state = 6660; + this.state = 6582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: { - this.state = 6659; + this.state = 6581; this.cast_context(); } break; @@ -31073,30 +31287,30 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6662; + this.state = 6584; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6663; + this.state = 6585; this.match(PostgreSQLParser.KW_CAST); - this.state = 6664; + this.state = 6586; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6665; + this.state = 6587; this.typename(); - this.state = 6666; + this.state = 6588; this.match(PostgreSQLParser.KW_AS); - this.state = 6667; + this.state = 6589; this.typename(); - this.state = 6668; + this.state = 6590; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6669; + this.state = 6591; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 6670; + this.state = 6592; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6672; + this.state = 6594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { case 1: { - this.state = 6671; + this.state = 6593; this.cast_context(); } break; @@ -31106,30 +31320,30 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6674; + this.state = 6596; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6675; + this.state = 6597; this.match(PostgreSQLParser.KW_CAST); - this.state = 6676; + this.state = 6598; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6677; + this.state = 6599; this.typename(); - this.state = 6678; + this.state = 6600; this.match(PostgreSQLParser.KW_AS); - this.state = 6679; + this.state = 6601; this.typename(); - this.state = 6680; + this.state = 6602; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6681; + this.state = 6603; this.match(PostgreSQLParser.KW_WITH); - this.state = 6682; + this.state = 6604; this.match(PostgreSQLParser.KW_INOUT); - this.state = 6684; + this.state = 6606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { case 1: { - this.state = 6683; + this.state = 6605; this.cast_context(); } break; @@ -31154,26 +31368,26 @@ export class PostgreSQLParser extends antlr.Parser { } public cast_context(): Cast_contextContext { let localContext = new Cast_contextContext(this.context, this.state); - this.enterRule(localContext, 746, PostgreSQLParser.RULE_cast_context); + this.enterRule(localContext, 744, PostgreSQLParser.RULE_cast_context); try { - this.state = 6692; + this.state = 6614; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6688; + this.state = 6610; this.match(PostgreSQLParser.KW_AS); - this.state = 6689; + this.state = 6611; this.match(PostgreSQLParser.KW_IMPLICIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6690; + this.state = 6612; this.match(PostgreSQLParser.KW_AS); - this.state = 6691; + this.state = 6613; this.match(PostgreSQLParser.KW_ASSIGNMENT); } break; @@ -31195,13 +31409,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_if_exists(): Opt_if_existsContext { let localContext = new Opt_if_existsContext(this.context, this.state); - this.enterRule(localContext, 748, PostgreSQLParser.RULE_opt_if_exists); + this.enterRule(localContext, 746, PostgreSQLParser.RULE_opt_if_exists); try { this.enterOuterAlt(localContext, 1); { - this.state = 6694; + this.state = 6616; this.match(PostgreSQLParser.KW_IF); - this.state = 6695; + this.state = 6617; this.match(PostgreSQLParser.KW_EXISTS); } } @@ -31221,38 +31435,38 @@ export class PostgreSQLParser extends antlr.Parser { } public createtransformstmt(): CreatetransformstmtContext { let localContext = new CreatetransformstmtContext(this.context, this.state); - this.enterRule(localContext, 750, PostgreSQLParser.RULE_createtransformstmt); + this.enterRule(localContext, 748, PostgreSQLParser.RULE_createtransformstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6697; + this.state = 6619; this.match(PostgreSQLParser.KW_CREATE); - this.state = 6699; + this.state = 6621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 6698; + this.state = 6620; this.opt_or_replace(); } } - this.state = 6701; + this.state = 6623; this.match(PostgreSQLParser.KW_TRANSFORM); - this.state = 6702; + this.state = 6624; this.match(PostgreSQLParser.KW_FOR); - this.state = 6703; + this.state = 6625; this.typename(); - this.state = 6704; + this.state = 6626; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6705; + this.state = 6627; this.name(); - this.state = 6706; + this.state = 6628; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6707; + this.state = 6629; this.transform_element_list(); - this.state = 6708; + this.state = 6630; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -31272,92 +31486,92 @@ export class PostgreSQLParser extends antlr.Parser { } public transform_element_list(): Transform_element_listContext { let localContext = new Transform_element_listContext(this.context, this.state); - this.enterRule(localContext, 752, PostgreSQLParser.RULE_transform_element_list); + this.enterRule(localContext, 750, PostgreSQLParser.RULE_transform_element_list); try { - this.state = 6744; + this.state = 6666; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6710; + this.state = 6632; this.match(PostgreSQLParser.KW_FROM); - this.state = 6711; + this.state = 6633; this.match(PostgreSQLParser.KW_SQL); - this.state = 6712; + this.state = 6634; this.match(PostgreSQLParser.KW_WITH); - this.state = 6713; + this.state = 6635; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6714; + this.state = 6636; this.function_with_argtypes(); - this.state = 6715; + this.state = 6637; this.match(PostgreSQLParser.COMMA); - this.state = 6716; + this.state = 6638; this.match(PostgreSQLParser.KW_TO); - this.state = 6717; + this.state = 6639; this.match(PostgreSQLParser.KW_SQL); - this.state = 6718; + this.state = 6640; this.match(PostgreSQLParser.KW_WITH); - this.state = 6719; + this.state = 6641; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6720; + this.state = 6642; this.function_with_argtypes(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6722; + this.state = 6644; this.match(PostgreSQLParser.KW_TO); - this.state = 6723; + this.state = 6645; this.match(PostgreSQLParser.KW_SQL); - this.state = 6724; + this.state = 6646; this.match(PostgreSQLParser.KW_WITH); - this.state = 6725; + this.state = 6647; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6726; + this.state = 6648; this.function_with_argtypes(); - this.state = 6727; + this.state = 6649; this.match(PostgreSQLParser.COMMA); - this.state = 6728; + this.state = 6650; this.match(PostgreSQLParser.KW_FROM); - this.state = 6729; + this.state = 6651; this.match(PostgreSQLParser.KW_SQL); - this.state = 6730; + this.state = 6652; this.match(PostgreSQLParser.KW_WITH); - this.state = 6731; + this.state = 6653; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6732; + this.state = 6654; this.function_with_argtypes(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6734; + this.state = 6656; this.match(PostgreSQLParser.KW_FROM); - this.state = 6735; + this.state = 6657; this.match(PostgreSQLParser.KW_SQL); - this.state = 6736; + this.state = 6658; this.match(PostgreSQLParser.KW_WITH); - this.state = 6737; + this.state = 6659; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6738; + this.state = 6660; this.function_with_argtypes(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6739; + this.state = 6661; this.match(PostgreSQLParser.KW_TO); - this.state = 6740; + this.state = 6662; this.match(PostgreSQLParser.KW_SQL); - this.state = 6741; + this.state = 6663; this.match(PostgreSQLParser.KW_WITH); - this.state = 6742; + this.state = 6664; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6743; + this.state = 6665; this.function_with_argtypes(); } break; @@ -31379,56 +31593,56 @@ export class PostgreSQLParser extends antlr.Parser { } public reindexstmt(): ReindexstmtContext { let localContext = new ReindexstmtContext(this.context, this.state); - this.enterRule(localContext, 754, PostgreSQLParser.RULE_reindexstmt); + this.enterRule(localContext, 752, PostgreSQLParser.RULE_reindexstmt); try { - this.state = 6762; + this.state = 6684; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 640, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6746; + this.state = 6668; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6747; + this.state = 6669; this.reindex_target_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6748; + this.state = 6670; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6749; + this.state = 6671; this.reindex_target_multitable(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6750; + this.state = 6672; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6751; + this.state = 6673; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6752; + this.state = 6674; this.reindex_option_list(); - this.state = 6753; + this.state = 6675; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6754; + this.state = 6676; this.reindex_target_type(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6756; + this.state = 6678; this.match(PostgreSQLParser.KW_REINDEX); - this.state = 6757; + this.state = 6679; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 6758; + this.state = 6680; this.reindex_option_list(); - this.state = 6759; + this.state = 6681; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 6760; + this.state = 6682; this.reindex_target_multitable(); } break; @@ -31450,29 +31664,29 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_target_type(): Reindex_target_typeContext { let localContext = new Reindex_target_typeContext(this.context, this.state); - this.enterRule(localContext, 756, PostgreSQLParser.RULE_reindex_target_type); + this.enterRule(localContext, 754, PostgreSQLParser.RULE_reindex_target_type); let _la: number; try { - this.state = 6774; + this.state = 6696; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_INDEX: this.enterOuterAlt(localContext, 1); { { - this.state = 6764; + this.state = 6686; this.match(PostgreSQLParser.KW_INDEX); - this.state = 6766; + this.state = 6688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6765; + this.state = 6687; this.opt_concurrently(); } } - this.state = 6768; + this.state = 6690; this.qualified_name(); } } @@ -31481,19 +31695,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 6769; + this.state = 6691; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6771; + this.state = 6693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6770; + this.state = 6692; this.opt_concurrently(); } } - this.state = 6773; + this.state = 6695; this.table_name(); } } @@ -31518,29 +31732,29 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_target_multitable(): Reindex_target_multitableContext { let localContext = new Reindex_target_multitableContext(this.context, this.state); - this.enterRule(localContext, 758, PostgreSQLParser.RULE_reindex_target_multitable); + this.enterRule(localContext, 756, PostgreSQLParser.RULE_reindex_target_multitable); let _la: number; try { - this.state = 6791; + this.state = 6713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SCHEMA: this.enterOuterAlt(localContext, 1); { { - this.state = 6776; + this.state = 6698; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 6778; + this.state = 6700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6777; + this.state = 6699; this.opt_concurrently(); } } - this.state = 6780; + this.state = 6702; this.schema_name(); } } @@ -31549,19 +31763,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 6781; + this.state = 6703; this.match(PostgreSQLParser.KW_SYSTEM); - this.state = 6783; + this.state = 6705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6782; + this.state = 6704; this.opt_concurrently(); } } - this.state = 6785; + this.state = 6707; this.name(); } } @@ -31570,19 +31784,19 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 6786; + this.state = 6708; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 6788; + this.state = 6710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 6787; + this.state = 6709; this.opt_concurrently(); } } - this.state = 6790; + this.state = 6712; this.database_name(); } } @@ -31607,26 +31821,26 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_option_list(): Reindex_option_listContext { let localContext = new Reindex_option_listContext(this.context, this.state); - this.enterRule(localContext, 760, PostgreSQLParser.RULE_reindex_option_list); + this.enterRule(localContext, 758, PostgreSQLParser.RULE_reindex_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6793; + this.state = 6715; this.reindex_option_elem(); - this.state = 6798; + this.state = 6720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6794; + this.state = 6716; this.match(PostgreSQLParser.COMMA); - this.state = 6795; + this.state = 6717; this.reindex_option_elem(); } } - this.state = 6800; + this.state = 6722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -31648,11 +31862,11 @@ export class PostgreSQLParser extends antlr.Parser { } public reindex_option_elem(): Reindex_option_elemContext { let localContext = new Reindex_option_elemContext(this.context, this.state); - this.enterRule(localContext, 762, PostgreSQLParser.RULE_reindex_option_elem); + this.enterRule(localContext, 760, PostgreSQLParser.RULE_reindex_option_elem); try { this.enterOuterAlt(localContext, 1); { - this.state = 6801; + this.state = 6723; this.match(PostgreSQLParser.KW_VERBOSE); } } @@ -31672,38 +31886,38 @@ export class PostgreSQLParser extends antlr.Parser { } public altertblspcstmt(): AltertblspcstmtContext { let localContext = new AltertblspcstmtContext(this.context, this.state); - this.enterRule(localContext, 764, PostgreSQLParser.RULE_altertblspcstmt); + this.enterRule(localContext, 762, PostgreSQLParser.RULE_altertblspcstmt); try { - this.state = 6815; + this.state = 6737; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6803; + this.state = 6725; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6804; + this.state = 6726; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 6805; + this.state = 6727; this.tablespace_name(); - this.state = 6806; + this.state = 6728; this.match(PostgreSQLParser.KW_SET); - this.state = 6807; + this.state = 6729; this.reloptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6809; + this.state = 6731; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6810; + this.state = 6732; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 6811; + this.state = 6733; this.tablespace_name(); - this.state = 6812; + this.state = 6734; this.match(PostgreSQLParser.KW_RESET); - this.state = 6813; + this.state = 6735; this.reloptions(); } break; @@ -31725,991 +31939,991 @@ export class PostgreSQLParser extends antlr.Parser { } public renamestmt(): RenamestmtContext { let localContext = new RenamestmtContext(this.context, this.state); - this.enterRule(localContext, 766, PostgreSQLParser.RULE_renamestmt); + this.enterRule(localContext, 764, PostgreSQLParser.RULE_renamestmt); let _la: number; try { - this.state = 7208; + this.state = 7130; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 663, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 668, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6817; + this.state = 6739; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6818; + this.state = 6740; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 6819; + this.state = 6741; this.aggregate_with_argtypes(); - this.state = 6820; + this.state = 6742; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6821; + this.state = 6743; this.match(PostgreSQLParser.KW_TO); - this.state = 6822; + this.state = 6744; this.name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6824; + this.state = 6746; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6825; + this.state = 6747; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 6826; + this.state = 6748; this.any_name(); - this.state = 6827; + this.state = 6749; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6828; + this.state = 6750; this.match(PostgreSQLParser.KW_TO); - this.state = 6829; + this.state = 6751; this.name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6831; + this.state = 6753; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6832; + this.state = 6754; this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 6833; + this.state = 6755; this.any_name(); - this.state = 6834; + this.state = 6756; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6835; + this.state = 6757; this.match(PostgreSQLParser.KW_TO); - this.state = 6836; + this.state = 6758; this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6838; + this.state = 6760; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6839; + this.state = 6761; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 6840; + this.state = 6762; this.database_name(); - this.state = 6841; + this.state = 6763; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6842; + this.state = 6764; this.match(PostgreSQLParser.KW_TO); - this.state = 6843; + this.state = 6765; this.database_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 6845; + this.state = 6767; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6846; + this.state = 6768; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 6847; + this.state = 6769; this.any_name(); - this.state = 6848; + this.state = 6770; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6849; + this.state = 6771; this.match(PostgreSQLParser.KW_TO); - this.state = 6850; + this.state = 6772; this.name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 6852; + this.state = 6774; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6853; + this.state = 6775; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 6854; + this.state = 6776; this.any_name(); - this.state = 6855; + this.state = 6777; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6856; + this.state = 6778; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 6857; + this.state = 6779; this.name(); - this.state = 6858; + this.state = 6780; this.match(PostgreSQLParser.KW_TO); - this.state = 6859; + this.state = 6781; this.name(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 6861; + this.state = 6783; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6862; + this.state = 6784; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 6863; + this.state = 6785; this.match(PostgreSQLParser.KW_DATA); - this.state = 6864; + this.state = 6786; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 6865; + this.state = 6787; this.name(); - this.state = 6866; + this.state = 6788; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6867; + this.state = 6789; this.match(PostgreSQLParser.KW_TO); - this.state = 6868; + this.state = 6790; this.name(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 6870; + this.state = 6792; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6871; + this.state = 6793; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 6872; + this.state = 6794; this.function_with_argtypes(); - this.state = 6873; + this.state = 6795; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6874; + this.state = 6796; this.match(PostgreSQLParser.KW_TO); - this.state = 6875; + this.state = 6797; this.function_name_create(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 6877; + this.state = 6799; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6878; + this.state = 6800; this.match(PostgreSQLParser.KW_GROUP); - this.state = 6879; + this.state = 6801; this.roleid(); - this.state = 6880; + this.state = 6802; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6881; + this.state = 6803; this.match(PostgreSQLParser.KW_TO); - this.state = 6882; + this.state = 6804; this.roleid(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 6884; + this.state = 6806; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6886; + this.state = 6808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 6885; + this.state = 6807; this.opt_procedural(); } } - this.state = 6888; + this.state = 6810; this.match(PostgreSQLParser.KW_LANGUAGE); - this.state = 6889; + this.state = 6811; this.name(); - this.state = 6890; + this.state = 6812; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6891; + this.state = 6813; this.match(PostgreSQLParser.KW_TO); - this.state = 6892; + this.state = 6814; this.name(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 6894; + this.state = 6816; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6895; + this.state = 6817; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 6896; + this.state = 6818; this.match(PostgreSQLParser.KW_CLASS); - this.state = 6897; + this.state = 6819; this.any_name(); - this.state = 6898; + this.state = 6820; this.match(PostgreSQLParser.KW_USING); - this.state = 6899; + this.state = 6821; this.name(); - this.state = 6900; + this.state = 6822; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6901; + this.state = 6823; this.match(PostgreSQLParser.KW_TO); - this.state = 6902; + this.state = 6824; this.name(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 6904; + this.state = 6826; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6905; + this.state = 6827; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 6906; + this.state = 6828; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 6907; + this.state = 6829; this.any_name(); - this.state = 6908; + this.state = 6830; this.match(PostgreSQLParser.KW_USING); - this.state = 6909; + this.state = 6831; this.name(); - this.state = 6910; + this.state = 6832; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6911; + this.state = 6833; this.match(PostgreSQLParser.KW_TO); - this.state = 6912; + this.state = 6834; this.name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 6914; + this.state = 6836; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6915; + this.state = 6837; this.match(PostgreSQLParser.KW_POLICY); - this.state = 6917; + this.state = 6839; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { case 1: { - this.state = 6916; + this.state = 6838; this.opt_if_exists(); } break; } - this.state = 6919; + this.state = 6841; this.name(); - this.state = 6920; + this.state = 6842; this.match(PostgreSQLParser.KW_ON); - this.state = 6921; + this.state = 6843; this.qualified_name(); - this.state = 6922; + this.state = 6844; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6923; + this.state = 6845; this.match(PostgreSQLParser.KW_TO); - this.state = 6924; + this.state = 6846; this.name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 6926; + this.state = 6848; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6927; + this.state = 6849; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 6928; + this.state = 6850; this.procedure_with_argtypes(); - this.state = 6929; + this.state = 6851; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6930; + this.state = 6852; this.match(PostgreSQLParser.KW_TO); - this.state = 6931; + this.state = 6853; this.procedure_name_create(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 6933; + this.state = 6855; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6934; + this.state = 6856; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 6935; + this.state = 6857; this.name(); - this.state = 6936; + this.state = 6858; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6937; + this.state = 6859; this.match(PostgreSQLParser.KW_TO); - this.state = 6938; + this.state = 6860; this.name(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 6940; + this.state = 6862; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6941; + this.state = 6863; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 6942; + this.state = 6864; this.routine_with_argtypes(); - this.state = 6943; + this.state = 6865; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6944; + this.state = 6866; this.match(PostgreSQLParser.KW_TO); - this.state = 6945; + this.state = 6867; this.name(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 6947; + this.state = 6869; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6948; + this.state = 6870; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 6949; + this.state = 6871; this.schema_name(); - this.state = 6950; + this.state = 6872; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6951; + this.state = 6873; this.match(PostgreSQLParser.KW_TO); - this.state = 6952; + this.state = 6874; this.schema_name_create(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 6954; + this.state = 6876; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6955; + this.state = 6877; this.match(PostgreSQLParser.KW_SERVER); - this.state = 6956; + this.state = 6878; this.name(); - this.state = 6957; + this.state = 6879; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6958; + this.state = 6880; this.match(PostgreSQLParser.KW_TO); - this.state = 6959; + this.state = 6881; this.name(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 6961; + this.state = 6883; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6962; + this.state = 6884; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 6963; + this.state = 6885; this.name(); - this.state = 6964; + this.state = 6886; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6965; + this.state = 6887; this.match(PostgreSQLParser.KW_TO); - this.state = 6966; + this.state = 6888; this.name(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 6968; + this.state = 6890; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6969; + this.state = 6891; this.match(PostgreSQLParser.KW_TABLE); - this.state = 6971; + this.state = 6893; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 647, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 652, this.context) ) { case 1: { - this.state = 6970; + this.state = 6892; this.opt_if_exists(); } break; } - this.state = 6973; + this.state = 6895; this.relation_expr(); - this.state = 6974; + this.state = 6896; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6975; + this.state = 6897; this.match(PostgreSQLParser.KW_TO); - this.state = 6976; + this.state = 6898; this.table_name_create(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 6978; + this.state = 6900; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6979; + this.state = 6901; this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 6981; + this.state = 6903; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { case 1: { - this.state = 6980; + this.state = 6902; this.opt_if_exists(); } break; } - this.state = 6983; + this.state = 6905; this.qualified_name(); - this.state = 6984; + this.state = 6906; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6985; + this.state = 6907; this.match(PostgreSQLParser.KW_TO); - this.state = 6986; + this.state = 6908; this.name(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 6988; + this.state = 6910; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6989; + this.state = 6911; this.match(PostgreSQLParser.KW_VIEW); - this.state = 6991; + this.state = 6913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: { - this.state = 6990; + this.state = 6912; this.opt_if_exists(); } break; } - this.state = 6993; + this.state = 6915; this.view_name(); - this.state = 6994; + this.state = 6916; this.match(PostgreSQLParser.KW_RENAME); - this.state = 6995; + this.state = 6917; this.match(PostgreSQLParser.KW_TO); - this.state = 6996; + this.state = 6918; this.view_name_create(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 6998; + this.state = 6920; this.match(PostgreSQLParser.KW_ALTER); - this.state = 6999; + this.state = 6921; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 7000; + this.state = 6922; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7002; + this.state = 6924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { case 1: { - this.state = 7001; + this.state = 6923; this.opt_if_exists(); } break; } - this.state = 7004; + this.state = 6926; this.view_name(); - this.state = 7005; + this.state = 6927; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7006; + this.state = 6928; this.match(PostgreSQLParser.KW_TO); - this.state = 7007; + this.state = 6929; this.view_name_create(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7009; + this.state = 6931; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7010; + this.state = 6932; this.match(PostgreSQLParser.KW_INDEX); - this.state = 7012; + this.state = 6934; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { case 1: { - this.state = 7011; + this.state = 6933; this.opt_if_exists(); } break; } - this.state = 7014; + this.state = 6936; this.qualified_name(); - this.state = 7015; + this.state = 6937; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7016; + this.state = 6938; this.match(PostgreSQLParser.KW_TO); - this.state = 7017; + this.state = 6939; this.name(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7019; + this.state = 6941; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7020; + this.state = 6942; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 7021; + this.state = 6943; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7023; + this.state = 6945; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 652, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 657, this.context) ) { case 1: { - this.state = 7022; + this.state = 6944; this.opt_if_exists(); } break; } - this.state = 7025; + this.state = 6947; this.relation_expr(); - this.state = 7026; + this.state = 6948; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7027; + this.state = 6949; this.match(PostgreSQLParser.KW_TO); - this.state = 7028; + this.state = 6950; this.table_name_create(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7030; + this.state = 6952; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7031; + this.state = 6953; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7033; + this.state = 6955; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 658, this.context) ) { case 1: { - this.state = 7032; + this.state = 6954; this.opt_if_exists(); } break; } - this.state = 7035; + this.state = 6957; this.relation_expr(); - this.state = 7036; + this.state = 6958; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7038; + this.state = 6960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 7037; - this.opt_column(); + this.state = 6959; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 7040; + + this.state = 6962; this.column_name(); - this.state = 7041; + this.state = 6963; this.match(PostgreSQLParser.KW_TO); - this.state = 7042; + this.state = 6964; this.column_name_create(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7044; + this.state = 6966; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7045; + this.state = 6967; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7047; + this.state = 6969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 660, this.context) ) { case 1: { - this.state = 7046; + this.state = 6968; this.opt_if_exists(); } break; } - this.state = 7049; + this.state = 6971; this.view_name(); - this.state = 7050; + this.state = 6972; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7052; + this.state = 6974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 7051; - this.opt_column(); + this.state = 6973; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 7054; + + this.state = 6976; this.column_name(); - this.state = 7055; + this.state = 6977; this.match(PostgreSQLParser.KW_TO); - this.state = 7056; + this.state = 6978; this.column_name_create(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7058; + this.state = 6980; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7059; + this.state = 6981; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 7060; + this.state = 6982; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7062; + this.state = 6984; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 657, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { case 1: { - this.state = 7061; + this.state = 6983; this.opt_if_exists(); } break; } - this.state = 7064; + this.state = 6986; this.view_name(); - this.state = 7065; + this.state = 6987; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7067; + this.state = 6989; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 658, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 7066; - this.opt_column(); + this.state = 6988; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 7069; + + this.state = 6991; this.column_name(); - this.state = 7070; + this.state = 6992; this.match(PostgreSQLParser.KW_TO); - this.state = 7071; + this.state = 6993; this.column_name_create(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7073; + this.state = 6995; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7074; + this.state = 6996; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7076; + this.state = 6998; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 659, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 664, this.context) ) { case 1: { - this.state = 7075; + this.state = 6997; this.opt_if_exists(); } break; } - this.state = 7078; + this.state = 7000; this.relation_expr(); - this.state = 7079; + this.state = 7001; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7080; + this.state = 7002; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 7081; + this.state = 7003; this.name(); - this.state = 7082; + this.state = 7004; this.match(PostgreSQLParser.KW_TO); - this.state = 7083; + this.state = 7005; this.name(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7085; + this.state = 7007; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7086; + this.state = 7008; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 7087; + this.state = 7009; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7089; + this.state = 7011; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 660, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { case 1: { - this.state = 7088; + this.state = 7010; this.opt_if_exists(); } break; } - this.state = 7091; + this.state = 7013; this.relation_expr(); - this.state = 7092; + this.state = 7014; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7094; + this.state = 7016; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 7093; - this.opt_column(); + this.state = 7015; + this.match(PostgreSQLParser.KW_COLUMN); } - break; } - this.state = 7096; + + this.state = 7018; this.column_name(); - this.state = 7097; + this.state = 7019; this.match(PostgreSQLParser.KW_TO); - this.state = 7098; + this.state = 7020; this.column_name_create(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7100; + this.state = 7022; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7101; + this.state = 7023; this.match(PostgreSQLParser.KW_RULE); - this.state = 7102; + this.state = 7024; this.name(); - this.state = 7103; + this.state = 7025; this.match(PostgreSQLParser.KW_ON); - this.state = 7104; + this.state = 7026; this.qualified_name(); - this.state = 7105; + this.state = 7027; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7106; + this.state = 7028; this.match(PostgreSQLParser.KW_TO); - this.state = 7107; + this.state = 7029; this.name(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7109; + this.state = 7031; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7110; + this.state = 7032; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 7111; + this.state = 7033; this.name(); - this.state = 7112; + this.state = 7034; this.match(PostgreSQLParser.KW_ON); - this.state = 7113; + this.state = 7035; this.qualified_name(); - this.state = 7114; + this.state = 7036; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7115; + this.state = 7037; this.match(PostgreSQLParser.KW_TO); - this.state = 7116; + this.state = 7038; this.name(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7118; + this.state = 7040; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7119; + this.state = 7041; this.match(PostgreSQLParser.KW_EVENT); - this.state = 7120; + this.state = 7042; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 7121; + this.state = 7043; this.name(); - this.state = 7122; + this.state = 7044; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7123; + this.state = 7045; this.match(PostgreSQLParser.KW_TO); - this.state = 7124; + this.state = 7046; this.name(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7126; + this.state = 7048; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7127; + this.state = 7049; this.match(PostgreSQLParser.KW_ROLE); - this.state = 7128; + this.state = 7050; this.roleid(); - this.state = 7129; + this.state = 7051; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7130; + this.state = 7052; this.match(PostgreSQLParser.KW_TO); - this.state = 7131; + this.state = 7053; this.roleid(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7133; + this.state = 7055; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7134; + this.state = 7056; this.match(PostgreSQLParser.KW_USER); - this.state = 7135; + this.state = 7057; this.roleid(); - this.state = 7136; + this.state = 7058; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7137; + this.state = 7059; this.match(PostgreSQLParser.KW_TO); - this.state = 7138; + this.state = 7060; this.roleid(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7140; + this.state = 7062; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7141; + this.state = 7063; this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 7142; + this.state = 7064; this.tablespace_name(); - this.state = 7143; + this.state = 7065; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7144; + this.state = 7066; this.match(PostgreSQLParser.KW_TO); - this.state = 7145; + this.state = 7067; this.tablespace_name_create(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7147; + this.state = 7069; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7148; + this.state = 7070; this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 7149; + this.state = 7071; this.any_name(); - this.state = 7150; + this.state = 7072; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7151; + this.state = 7073; this.match(PostgreSQLParser.KW_TO); - this.state = 7152; + this.state = 7074; this.name(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7154; + this.state = 7076; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7155; + this.state = 7077; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7156; + this.state = 7078; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7157; + this.state = 7079; this.match(PostgreSQLParser.KW_PARSER); - this.state = 7158; + this.state = 7080; this.any_name(); - this.state = 7159; + this.state = 7081; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7160; + this.state = 7082; this.match(PostgreSQLParser.KW_TO); - this.state = 7161; + this.state = 7083; this.name(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7163; + this.state = 7085; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7164; + this.state = 7086; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7165; + this.state = 7087; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7166; + this.state = 7088; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 7167; + this.state = 7089; this.any_name(); - this.state = 7168; + this.state = 7090; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7169; + this.state = 7091; this.match(PostgreSQLParser.KW_TO); - this.state = 7170; + this.state = 7092; this.name(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7172; + this.state = 7094; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7173; + this.state = 7095; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7174; + this.state = 7096; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7175; + this.state = 7097; this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 7176; + this.state = 7098; this.any_name(); - this.state = 7177; + this.state = 7099; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7178; + this.state = 7100; this.match(PostgreSQLParser.KW_TO); - this.state = 7179; + this.state = 7101; this.name(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7181; + this.state = 7103; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7182; + this.state = 7104; this.match(PostgreSQLParser.KW_TEXT); - this.state = 7183; + this.state = 7105; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7184; + this.state = 7106; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 7185; + this.state = 7107; this.any_name(); - this.state = 7186; + this.state = 7108; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7187; + this.state = 7109; this.match(PostgreSQLParser.KW_TO); - this.state = 7188; + this.state = 7110; this.name(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7190; + this.state = 7112; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7191; + this.state = 7113; this.match(PostgreSQLParser.KW_TYPE); - this.state = 7192; + this.state = 7114; this.any_name(); - this.state = 7193; + this.state = 7115; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7194; + this.state = 7116; this.match(PostgreSQLParser.KW_TO); - this.state = 7195; + this.state = 7117; this.name(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7197; + this.state = 7119; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7198; + this.state = 7120; this.match(PostgreSQLParser.KW_TYPE); - this.state = 7199; + this.state = 7121; this.any_name(); - this.state = 7200; + this.state = 7122; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7201; + this.state = 7123; this.match(PostgreSQLParser.KW_ATTRIBUTE); - this.state = 7202; + this.state = 7124; this.name(); - this.state = 7203; + this.state = 7125; this.match(PostgreSQLParser.KW_TO); - this.state = 7204; + this.state = 7126; this.name(); - this.state = 7206; + this.state = 7128; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 667, this.context) ) { case 1: { - this.state = 7205; + this.state = 7127; this.opt_drop_behavior(); } break; @@ -32732,39 +32946,15 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public opt_column(): Opt_columnContext { - let localContext = new Opt_columnContext(this.context, this.state); - this.enterRule(localContext, 768, PostgreSQLParser.RULE_opt_column); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7210; - this.match(PostgreSQLParser.KW_COLUMN); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public opt_set_data(): Opt_set_dataContext { let localContext = new Opt_set_dataContext(this.context, this.state); - this.enterRule(localContext, 770, PostgreSQLParser.RULE_opt_set_data); + this.enterRule(localContext, 766, PostgreSQLParser.RULE_opt_set_data); try { this.enterOuterAlt(localContext, 1); { - this.state = 7212; + this.state = 7132; this.match(PostgreSQLParser.KW_SET); - this.state = 7213; + this.state = 7133; this.match(PostgreSQLParser.KW_DATA); } } @@ -32784,189 +32974,189 @@ export class PostgreSQLParser extends antlr.Parser { } public alterobjectdependsstmt(): AlterobjectdependsstmtContext { let localContext = new AlterobjectdependsstmtContext(this.context, this.state); - this.enterRule(localContext, 772, PostgreSQLParser.RULE_alterobjectdependsstmt); + this.enterRule(localContext, 768, PostgreSQLParser.RULE_alterobjectdependsstmt); let _la: number; try { - this.state = 7284; + this.state = 7204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 670, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 675, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7215; + this.state = 7135; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7216; + this.state = 7136; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 7217; + this.state = 7137; this.function_with_argtypes(); - this.state = 7219; + this.state = 7139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7218; + this.state = 7138; this.opt_no(); } } - this.state = 7221; + this.state = 7141; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7222; + this.state = 7142; this.match(PostgreSQLParser.KW_ON); - this.state = 7223; + this.state = 7143; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7224; + this.state = 7144; this.name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7226; + this.state = 7146; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7227; + this.state = 7147; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 7228; + this.state = 7148; this.procedure_with_argtypes(); - this.state = 7230; + this.state = 7150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7229; + this.state = 7149; this.opt_no(); } } - this.state = 7232; + this.state = 7152; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7233; + this.state = 7153; this.match(PostgreSQLParser.KW_ON); - this.state = 7234; + this.state = 7154; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7235; + this.state = 7155; this.name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7237; + this.state = 7157; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7238; + this.state = 7158; this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 7239; + this.state = 7159; this.routine_with_argtypes(); - this.state = 7241; + this.state = 7161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7240; + this.state = 7160; this.opt_no(); } } - this.state = 7243; + this.state = 7163; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7244; + this.state = 7164; this.match(PostgreSQLParser.KW_ON); - this.state = 7245; + this.state = 7165; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7246; + this.state = 7166; this.name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7248; + this.state = 7168; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7249; + this.state = 7169; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 7250; + this.state = 7170; this.name(); - this.state = 7251; + this.state = 7171; this.match(PostgreSQLParser.KW_ON); - this.state = 7252; + this.state = 7172; this.qualified_name(); - this.state = 7254; + this.state = 7174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7253; + this.state = 7173; this.opt_no(); } } - this.state = 7256; + this.state = 7176; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7257; + this.state = 7177; this.match(PostgreSQLParser.KW_ON); - this.state = 7258; + this.state = 7178; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7259; + this.state = 7179; this.name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7261; + this.state = 7181; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7262; + this.state = 7182; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 7263; + this.state = 7183; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7264; + this.state = 7184; this.view_name(); - this.state = 7266; + this.state = 7186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7265; + this.state = 7185; this.opt_no(); } } - this.state = 7268; + this.state = 7188; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7269; + this.state = 7189; this.match(PostgreSQLParser.KW_ON); - this.state = 7270; + this.state = 7190; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7271; + this.state = 7191; this.name(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7273; + this.state = 7193; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7274; + this.state = 7194; this.match(PostgreSQLParser.KW_INDEX); - this.state = 7275; + this.state = 7195; this.qualified_name(); - this.state = 7277; + this.state = 7197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7276; + this.state = 7196; this.opt_no(); } } - this.state = 7279; + this.state = 7199; this.match(PostgreSQLParser.KW_DEPENDS); - this.state = 7280; + this.state = 7200; this.match(PostgreSQLParser.KW_ON); - this.state = 7281; + this.state = 7201; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7282; + this.state = 7202; this.name(); } break; @@ -32988,11 +33178,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_no(): Opt_noContext { let localContext = new Opt_noContext(this.context, this.state); - this.enterRule(localContext, 774, PostgreSQLParser.RULE_opt_no); + this.enterRule(localContext, 770, PostgreSQLParser.RULE_opt_no); try { this.enterOuterAlt(localContext, 1); { - this.state = 7286; + this.state = 7206; this.match(PostgreSQLParser.KW_NO); } } @@ -33012,185 +33202,384 @@ export class PostgreSQLParser extends antlr.Parser { } public alterobjectschemastmt(): AlterobjectschemastmtContext { let localContext = new AlterobjectschemastmtContext(this.context, this.state); - this.enterRule(localContext, 776, PostgreSQLParser.RULE_alterobjectschemastmt); + this.enterRule(localContext, 772, PostgreSQLParser.RULE_alterobjectschemastmt); try { - this.state = 7473; + this.state = 7393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 676, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 681, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7288; + this.state = 7208; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7289; + this.state = 7209; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 7290; + this.state = 7210; this.aggregate_with_argtypes(); - this.state = 7291; + this.state = 7211; this.match(PostgreSQLParser.KW_SET); - this.state = 7292; + this.state = 7212; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7293; + this.state = 7213; this.schema_name_create(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7295; + this.state = 7215; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7296; + this.state = 7216; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 7297; + this.state = 7217; this.any_name(); - this.state = 7298; + this.state = 7218; this.match(PostgreSQLParser.KW_SET); - this.state = 7299; + this.state = 7219; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7300; + this.state = 7220; this.schema_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7302; + this.state = 7222; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7303; + this.state = 7223; this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 7304; + this.state = 7224; this.any_name(); - this.state = 7305; + this.state = 7225; this.match(PostgreSQLParser.KW_SET); - this.state = 7306; + this.state = 7226; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7307; + this.state = 7227; this.schema_name_create(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7309; + this.state = 7229; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7310; + this.state = 7230; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 7311; + this.state = 7231; this.any_name(); - this.state = 7312; + this.state = 7232; this.match(PostgreSQLParser.KW_SET); - this.state = 7313; + this.state = 7233; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7314; + this.state = 7234; this.schema_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7316; + this.state = 7236; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7317; + this.state = 7237; this.match(PostgreSQLParser.KW_EXTENSION); - this.state = 7318; + this.state = 7238; this.name(); - this.state = 7319; + this.state = 7239; this.match(PostgreSQLParser.KW_SET); - this.state = 7320; + this.state = 7240; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7321; + this.state = 7241; this.schema_name_create(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7323; + this.state = 7243; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7324; + this.state = 7244; this.match(PostgreSQLParser.KW_FUNCTION); - this.state = 7325; + this.state = 7245; this.function_with_argtypes(); - this.state = 7326; + this.state = 7246; this.match(PostgreSQLParser.KW_SET); - this.state = 7327; + this.state = 7247; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7328; + this.state = 7248; this.schema_name_create(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7330; + this.state = 7250; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7331; + this.state = 7251; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7332; + this.state = 7252; this.operator_with_argtypes(); - this.state = 7333; + this.state = 7253; this.match(PostgreSQLParser.KW_SET); - this.state = 7334; + this.state = 7254; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7335; + this.state = 7255; this.schema_name_create(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7337; + this.state = 7257; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7338; + this.state = 7258; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7339; + this.state = 7259; this.match(PostgreSQLParser.KW_CLASS); - this.state = 7340; + this.state = 7260; this.any_name(); - this.state = 7341; + this.state = 7261; this.match(PostgreSQLParser.KW_USING); - this.state = 7342; + this.state = 7262; this.name(); - this.state = 7343; + this.state = 7263; this.match(PostgreSQLParser.KW_SET); - this.state = 7344; + this.state = 7264; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7345; + this.state = 7265; this.schema_name_create(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7347; + this.state = 7267; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7348; + this.state = 7268; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7349; + this.state = 7269; this.match(PostgreSQLParser.KW_FAMILY); - this.state = 7350; + this.state = 7270; this.any_name(); - this.state = 7351; + this.state = 7271; this.match(PostgreSQLParser.KW_USING); - this.state = 7352; + this.state = 7272; this.name(); - this.state = 7353; + this.state = 7273; this.match(PostgreSQLParser.KW_SET); - this.state = 7354; + this.state = 7274; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7355; + this.state = 7275; this.schema_name_create(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7357; + this.state = 7277; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7358; + this.state = 7278; this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 7359; + this.state = 7279; this.procedure_with_argtypes(); + this.state = 7280; + this.match(PostgreSQLParser.KW_SET); + this.state = 7281; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7282; + this.schema_name_create(); + } + break; + case 11: + this.enterOuterAlt(localContext, 11); + { + this.state = 7284; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7285; + this.match(PostgreSQLParser.KW_ROUTINE); + this.state = 7286; + this.routine_with_argtypes(); + this.state = 7287; + this.match(PostgreSQLParser.KW_SET); + this.state = 7288; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7289; + this.schema_name_create(); + } + break; + case 12: + this.enterOuterAlt(localContext, 12); + { + this.state = 7291; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7292; + this.match(PostgreSQLParser.KW_TABLE); + this.state = 7294; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 676, this.context) ) { + case 1: + { + this.state = 7293; + this.opt_if_exists(); + } + break; + } + this.state = 7296; + this.relation_expr(); + this.state = 7297; + this.match(PostgreSQLParser.KW_SET); + this.state = 7298; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7299; + this.schema_name_create(); + } + break; + case 13: + this.enterOuterAlt(localContext, 13); + { + this.state = 7301; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7302; + this.match(PostgreSQLParser.KW_STATISTICS); + this.state = 7303; + this.any_name(); + this.state = 7304; + this.match(PostgreSQLParser.KW_SET); + this.state = 7305; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7306; + this.schema_name_create(); + } + break; + case 14: + this.enterOuterAlt(localContext, 14); + { + this.state = 7308; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7309; + this.match(PostgreSQLParser.KW_TEXT); + this.state = 7310; + this.match(PostgreSQLParser.KW_SEARCH); + this.state = 7311; + this.match(PostgreSQLParser.KW_PARSER); + this.state = 7312; + this.any_name(); + this.state = 7313; + this.match(PostgreSQLParser.KW_SET); + this.state = 7314; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7315; + this.schema_name_create(); + } + break; + case 15: + this.enterOuterAlt(localContext, 15); + { + this.state = 7317; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7318; + this.match(PostgreSQLParser.KW_TEXT); + this.state = 7319; + this.match(PostgreSQLParser.KW_SEARCH); + this.state = 7320; + this.match(PostgreSQLParser.KW_DICTIONARY); + this.state = 7321; + this.any_name(); + this.state = 7322; + this.match(PostgreSQLParser.KW_SET); + this.state = 7323; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7324; + this.schema_name_create(); + } + break; + case 16: + this.enterOuterAlt(localContext, 16); + { + this.state = 7326; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7327; + this.match(PostgreSQLParser.KW_TEXT); + this.state = 7328; + this.match(PostgreSQLParser.KW_SEARCH); + this.state = 7329; + this.match(PostgreSQLParser.KW_TEMPLATE); + this.state = 7330; + this.any_name(); + this.state = 7331; + this.match(PostgreSQLParser.KW_SET); + this.state = 7332; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7333; + this.schema_name_create(); + } + break; + case 17: + this.enterOuterAlt(localContext, 17); + { + this.state = 7335; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7336; + this.match(PostgreSQLParser.KW_TEXT); + this.state = 7337; + this.match(PostgreSQLParser.KW_SEARCH); + this.state = 7338; + this.match(PostgreSQLParser.KW_CONFIGURATION); + this.state = 7339; + this.any_name(); + this.state = 7340; + this.match(PostgreSQLParser.KW_SET); + this.state = 7341; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7342; + this.schema_name_create(); + } + break; + case 18: + this.enterOuterAlt(localContext, 18); + { + this.state = 7344; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7345; + this.match(PostgreSQLParser.KW_SEQUENCE); + this.state = 7347; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 677, this.context) ) { + case 1: + { + this.state = 7346; + this.opt_if_exists(); + } + break; + } + this.state = 7349; + this.qualified_name(); + this.state = 7350; + this.match(PostgreSQLParser.KW_SET); + this.state = 7351; + this.match(PostgreSQLParser.KW_SCHEMA); + this.state = 7352; + this.schema_name_create(); + } + break; + case 19: + this.enterOuterAlt(localContext, 19); + { + this.state = 7354; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7355; + this.match(PostgreSQLParser.KW_VIEW); + this.state = 7357; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 678, this.context) ) { + case 1: + { + this.state = 7356; + this.opt_if_exists(); + } + break; + } + this.state = 7359; + this.view_name(); this.state = 7360; this.match(PostgreSQLParser.KW_SET); this.state = 7361; @@ -33199,277 +33588,78 @@ export class PostgreSQLParser extends antlr.Parser { this.schema_name_create(); } break; - case 11: - this.enterOuterAlt(localContext, 11); + case 20: + this.enterOuterAlt(localContext, 20); { this.state = 7364; this.match(PostgreSQLParser.KW_ALTER); this.state = 7365; - this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 7366; - this.routine_with_argtypes(); - this.state = 7367; - this.match(PostgreSQLParser.KW_SET); - this.state = 7368; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7369; - this.schema_name_create(); - } - break; - case 12: - this.enterOuterAlt(localContext, 12); - { - this.state = 7371; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7372; - this.match(PostgreSQLParser.KW_TABLE); - this.state = 7374; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 671, this.context) ) { - case 1: - { - this.state = 7373; - this.opt_if_exists(); - } - break; - } - this.state = 7376; - this.relation_expr(); - this.state = 7377; - this.match(PostgreSQLParser.KW_SET); - this.state = 7378; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7379; - this.schema_name_create(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 7381; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7382; - this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 7383; - this.any_name(); - this.state = 7384; - this.match(PostgreSQLParser.KW_SET); - this.state = 7385; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7386; - this.schema_name_create(); - } - break; - case 14: - this.enterOuterAlt(localContext, 14); - { - this.state = 7388; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7389; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 7390; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7391; - this.match(PostgreSQLParser.KW_PARSER); - this.state = 7392; - this.any_name(); - this.state = 7393; - this.match(PostgreSQLParser.KW_SET); - this.state = 7394; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7395; - this.schema_name_create(); - } - break; - case 15: - this.enterOuterAlt(localContext, 15); - { - this.state = 7397; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7398; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 7399; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7400; - this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 7401; - this.any_name(); - this.state = 7402; - this.match(PostgreSQLParser.KW_SET); - this.state = 7403; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7404; - this.schema_name_create(); - } - break; - case 16: - this.enterOuterAlt(localContext, 16); - { - this.state = 7406; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7407; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 7408; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7409; - this.match(PostgreSQLParser.KW_TEMPLATE); - this.state = 7410; - this.any_name(); - this.state = 7411; - this.match(PostgreSQLParser.KW_SET); - this.state = 7412; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7413; - this.schema_name_create(); - } - break; - case 17: - this.enterOuterAlt(localContext, 17); - { - this.state = 7415; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7416; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 7417; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7418; - this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 7419; - this.any_name(); - this.state = 7420; - this.match(PostgreSQLParser.KW_SET); - this.state = 7421; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7422; - this.schema_name_create(); - } - break; - case 18: - this.enterOuterAlt(localContext, 18); - { - this.state = 7424; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7425; - this.match(PostgreSQLParser.KW_SEQUENCE); - this.state = 7427; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 672, this.context) ) { - case 1: - { - this.state = 7426; - this.opt_if_exists(); - } - break; - } - this.state = 7429; - this.qualified_name(); - this.state = 7430; - this.match(PostgreSQLParser.KW_SET); - this.state = 7431; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7432; - this.schema_name_create(); - } - break; - case 19: - this.enterOuterAlt(localContext, 19); - { - this.state = 7434; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7435; - this.match(PostgreSQLParser.KW_VIEW); - this.state = 7437; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { - case 1: - { - this.state = 7436; - this.opt_if_exists(); - } - break; - } - this.state = 7439; - this.view_name(); - this.state = 7440; - this.match(PostgreSQLParser.KW_SET); - this.state = 7441; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7442; - this.schema_name_create(); - } - break; - case 20: - this.enterOuterAlt(localContext, 20); - { - this.state = 7444; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7445; this.match(PostgreSQLParser.KW_MATERIALIZED); - this.state = 7446; + this.state = 7366; this.match(PostgreSQLParser.KW_VIEW); - this.state = 7448; + this.state = 7368; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 679, this.context) ) { case 1: { - this.state = 7447; + this.state = 7367; this.opt_if_exists(); } break; } - this.state = 7450; + this.state = 7370; this.view_name(); - this.state = 7451; + this.state = 7371; this.match(PostgreSQLParser.KW_SET); - this.state = 7452; + this.state = 7372; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7453; + this.state = 7373; this.schema_name_create(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7455; + this.state = 7375; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7456; + this.state = 7376; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 7457; + this.state = 7377; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7459; + this.state = 7379; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 675, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 680, this.context) ) { case 1: { - this.state = 7458; + this.state = 7378; this.opt_if_exists(); } break; } - this.state = 7461; + this.state = 7381; this.relation_expr(); - this.state = 7462; + this.state = 7382; this.match(PostgreSQLParser.KW_SET); - this.state = 7463; + this.state = 7383; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7464; + this.state = 7384; this.schema_name_create(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7466; + this.state = 7386; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7467; + this.state = 7387; this.match(PostgreSQLParser.KW_TYPE); - this.state = 7468; + this.state = 7388; this.any_name(); - this.state = 7469; + this.state = 7389; this.match(PostgreSQLParser.KW_SET); - this.state = 7470; + this.state = 7390; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7471; + this.state = 7391; this.schema_name_create(); } break; @@ -33491,23 +33681,23 @@ export class PostgreSQLParser extends antlr.Parser { } public alteroperatorstmt(): AlteroperatorstmtContext { let localContext = new AlteroperatorstmtContext(this.context, this.state); - this.enterRule(localContext, 778, PostgreSQLParser.RULE_alteroperatorstmt); + this.enterRule(localContext, 774, PostgreSQLParser.RULE_alteroperatorstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7475; + this.state = 7395; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7476; + this.state = 7396; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7477; + this.state = 7397; this.operator_with_argtypes(); - this.state = 7478; + this.state = 7398; this.match(PostgreSQLParser.KW_SET); - this.state = 7479; + this.state = 7399; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7480; + this.state = 7400; this.operator_def_list(); - this.state = 7481; + this.state = 7401; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -33527,26 +33717,26 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_def_list(): Operator_def_listContext { let localContext = new Operator_def_listContext(this.context, this.state); - this.enterRule(localContext, 780, PostgreSQLParser.RULE_operator_def_list); + this.enterRule(localContext, 776, PostgreSQLParser.RULE_operator_def_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7483; + this.state = 7403; this.operator_def_elem(); - this.state = 7488; + this.state = 7408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7484; + this.state = 7404; this.match(PostgreSQLParser.COMMA); - this.state = 7485; + this.state = 7405; this.operator_def_elem(); } } - this.state = 7490; + this.state = 7410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33568,30 +33758,30 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_def_elem(): Operator_def_elemContext { let localContext = new Operator_def_elemContext(this.context, this.state); - this.enterRule(localContext, 782, PostgreSQLParser.RULE_operator_def_elem); + this.enterRule(localContext, 778, PostgreSQLParser.RULE_operator_def_elem); try { - this.state = 7499; + this.state = 7419; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 678, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 683, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7491; + this.state = 7411; this.collabel(); - this.state = 7492; + this.state = 7412; this.match(PostgreSQLParser.EQUAL); - this.state = 7493; + this.state = 7413; this.match(PostgreSQLParser.KW_NONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7495; + this.state = 7415; this.collabel(); - this.state = 7496; + this.state = 7416; this.match(PostgreSQLParser.EQUAL); - this.state = 7497; + this.state = 7417; this.operator_def_arg(); } break; @@ -33613,43 +33803,43 @@ export class PostgreSQLParser extends antlr.Parser { } public operator_def_arg(): Operator_def_argContext { let localContext = new Operator_def_argContext(this.context, this.state); - this.enterRule(localContext, 784, PostgreSQLParser.RULE_operator_def_arg); + this.enterRule(localContext, 780, PostgreSQLParser.RULE_operator_def_arg); try { - this.state = 7506; + this.state = 7426; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 679, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 684, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7501; + this.state = 7421; this.func_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7502; + this.state = 7422; this.reserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7503; + this.state = 7423; this.qual_all_op(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7504; + this.state = 7424; this.numericonly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7505; + this.state = 7425; this.sconst(); } break; @@ -33671,23 +33861,23 @@ export class PostgreSQLParser extends antlr.Parser { } public altertypestmt(): AltertypestmtContext { let localContext = new AltertypestmtContext(this.context, this.state); - this.enterRule(localContext, 786, PostgreSQLParser.RULE_altertypestmt); + this.enterRule(localContext, 782, PostgreSQLParser.RULE_altertypestmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7508; + this.state = 7428; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7509; + this.state = 7429; this.match(PostgreSQLParser.KW_TYPE); - this.state = 7510; + this.state = 7430; this.any_name(); - this.state = 7511; + this.state = 7431; this.match(PostgreSQLParser.KW_SET); - this.state = 7512; + this.state = 7432; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7513; + this.state = 7433; this.operator_def_list(); - this.state = 7514; + this.state = 7434; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -33707,21 +33897,215 @@ export class PostgreSQLParser extends antlr.Parser { } public alterownerstmt(): AlterownerstmtContext { let localContext = new AlterownerstmtContext(this.context, this.state); - this.enterRule(localContext, 788, PostgreSQLParser.RULE_alterownerstmt); + this.enterRule(localContext, 784, PostgreSQLParser.RULE_alterownerstmt); let _la: number; try { - this.state = 7701; + this.state = 7621; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 681, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7516; + this.state = 7436; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7517; + this.state = 7437; this.match(PostgreSQLParser.KW_AGGREGATE); - this.state = 7518; + this.state = 7438; this.aggregate_with_argtypes(); + this.state = 7439; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7440; + this.match(PostgreSQLParser.KW_TO); + this.state = 7441; + this.rolespec(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7443; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7444; + this.match(PostgreSQLParser.KW_COLLATION); + this.state = 7445; + this.any_name(); + this.state = 7446; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7447; + this.match(PostgreSQLParser.KW_TO); + this.state = 7448; + this.rolespec(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7450; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7451; + this.match(PostgreSQLParser.KW_CONVERSION); + this.state = 7452; + this.any_name(); + this.state = 7453; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7454; + this.match(PostgreSQLParser.KW_TO); + this.state = 7455; + this.rolespec(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7457; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7458; + this.match(PostgreSQLParser.KW_DATABASE); + this.state = 7459; + this.database_name(); + this.state = 7460; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7461; + this.match(PostgreSQLParser.KW_TO); + this.state = 7462; + this.rolespec(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 7464; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7465; + this.match(PostgreSQLParser.KW_DOMAIN); + this.state = 7466; + this.any_name(); + this.state = 7467; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7468; + this.match(PostgreSQLParser.KW_TO); + this.state = 7469; + this.rolespec(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 7471; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7472; + this.match(PostgreSQLParser.KW_FUNCTION); + this.state = 7473; + this.function_with_argtypes(); + this.state = 7474; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7475; + this.match(PostgreSQLParser.KW_TO); + this.state = 7476; + this.rolespec(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 7478; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7480; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 295) { + { + this.state = 7479; + this.opt_procedural(); + } + } + + this.state = 7482; + this.match(PostgreSQLParser.KW_LANGUAGE); + this.state = 7483; + this.name(); + this.state = 7484; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7485; + this.match(PostgreSQLParser.KW_TO); + this.state = 7486; + this.rolespec(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 7488; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7489; + this.match(PostgreSQLParser.KW_LARGE); + this.state = 7490; + this.match(PostgreSQLParser.KW_OBJECT); + this.state = 7491; + this.numericonly(); + this.state = 7492; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7493; + this.match(PostgreSQLParser.KW_TO); + this.state = 7494; + this.rolespec(); + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { + this.state = 7496; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7497; + this.match(PostgreSQLParser.KW_OPERATOR); + this.state = 7498; + this.operator_with_argtypes(); + this.state = 7499; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7500; + this.match(PostgreSQLParser.KW_TO); + this.state = 7501; + this.rolespec(); + } + break; + case 10: + this.enterOuterAlt(localContext, 10); + { + this.state = 7503; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7504; + this.match(PostgreSQLParser.KW_OPERATOR); + this.state = 7505; + this.match(PostgreSQLParser.KW_CLASS); + this.state = 7506; + this.any_name(); + this.state = 7507; + this.match(PostgreSQLParser.KW_USING); + this.state = 7508; + this.name(); + this.state = 7509; + this.match(PostgreSQLParser.KW_OWNER); + this.state = 7510; + this.match(PostgreSQLParser.KW_TO); + this.state = 7511; + this.rolespec(); + } + break; + case 11: + this.enterOuterAlt(localContext, 11); + { + this.state = 7513; + this.match(PostgreSQLParser.KW_ALTER); + this.state = 7514; + this.match(PostgreSQLParser.KW_OPERATOR); + this.state = 7515; + this.match(PostgreSQLParser.KW_FAMILY); + this.state = 7516; + this.any_name(); + this.state = 7517; + this.match(PostgreSQLParser.KW_USING); + this.state = 7518; + this.name(); this.state = 7519; this.match(PostgreSQLParser.KW_OWNER); this.state = 7520; @@ -33730,15 +34114,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 2: - this.enterOuterAlt(localContext, 2); + case 12: + this.enterOuterAlt(localContext, 12); { this.state = 7523; this.match(PostgreSQLParser.KW_ALTER); this.state = 7524; - this.match(PostgreSQLParser.KW_COLLATION); + this.match(PostgreSQLParser.KW_PROCEDURE); this.state = 7525; - this.any_name(); + this.procedure_with_argtypes(); this.state = 7526; this.match(PostgreSQLParser.KW_OWNER); this.state = 7527; @@ -33747,15 +34131,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 3: - this.enterOuterAlt(localContext, 3); + case 13: + this.enterOuterAlt(localContext, 13); { this.state = 7530; this.match(PostgreSQLParser.KW_ALTER); this.state = 7531; - this.match(PostgreSQLParser.KW_CONVERSION); + this.match(PostgreSQLParser.KW_ROUTINE); this.state = 7532; - this.any_name(); + this.routine_with_argtypes(); this.state = 7533; this.match(PostgreSQLParser.KW_OWNER); this.state = 7534; @@ -33764,15 +34148,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 4: - this.enterOuterAlt(localContext, 4); + case 14: + this.enterOuterAlt(localContext, 14); { this.state = 7537; this.match(PostgreSQLParser.KW_ALTER); this.state = 7538; - this.match(PostgreSQLParser.KW_DATABASE); + this.match(PostgreSQLParser.KW_SCHEMA); this.state = 7539; - this.database_name(); + this.schema_name(); this.state = 7540; this.match(PostgreSQLParser.KW_OWNER); this.state = 7541; @@ -33781,13 +34165,13 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 5: - this.enterOuterAlt(localContext, 5); + case 15: + this.enterOuterAlt(localContext, 15); { this.state = 7544; this.match(PostgreSQLParser.KW_ALTER); this.state = 7545; - this.match(PostgreSQLParser.KW_DOMAIN); + this.match(PostgreSQLParser.KW_TYPE); this.state = 7546; this.any_name(); this.state = 7547; @@ -33798,15 +34182,15 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 6: - this.enterOuterAlt(localContext, 6); + case 16: + this.enterOuterAlt(localContext, 16); { this.state = 7551; this.match(PostgreSQLParser.KW_ALTER); this.state = 7552; - this.match(PostgreSQLParser.KW_FUNCTION); + this.match(PostgreSQLParser.KW_TABLESPACE); this.state = 7553; - this.function_with_argtypes(); + this.tablespace_name(); this.state = 7554; this.match(PostgreSQLParser.KW_OWNER); this.state = 7555; @@ -33815,61 +34199,57 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 7: - this.enterOuterAlt(localContext, 7); + case 17: + this.enterOuterAlt(localContext, 17); { this.state = 7558; this.match(PostgreSQLParser.KW_ALTER); + this.state = 7559; + this.match(PostgreSQLParser.KW_STATISTICS); this.state = 7560; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 295) { - { - this.state = 7559; - this.opt_procedural(); - } - } - + this.any_name(); + this.state = 7561; + this.match(PostgreSQLParser.KW_OWNER); this.state = 7562; - this.match(PostgreSQLParser.KW_LANGUAGE); + this.match(PostgreSQLParser.KW_TO); this.state = 7563; - this.name(); - this.state = 7564; - this.match(PostgreSQLParser.KW_OWNER); + this.rolespec(); + } + break; + case 18: + this.enterOuterAlt(localContext, 18); + { this.state = 7565; - this.match(PostgreSQLParser.KW_TO); + this.match(PostgreSQLParser.KW_ALTER); this.state = 7566; - this.rolespec(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { + this.match(PostgreSQLParser.KW_TEXT); + this.state = 7567; + this.match(PostgreSQLParser.KW_SEARCH); this.state = 7568; - this.match(PostgreSQLParser.KW_ALTER); + this.match(PostgreSQLParser.KW_DICTIONARY); this.state = 7569; - this.match(PostgreSQLParser.KW_LARGE); + this.any_name(); this.state = 7570; - this.match(PostgreSQLParser.KW_OBJECT); - this.state = 7571; - this.numericonly(); - this.state = 7572; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7573; + this.state = 7571; this.match(PostgreSQLParser.KW_TO); - this.state = 7574; + this.state = 7572; this.rolespec(); } break; - case 9: - this.enterOuterAlt(localContext, 9); + case 19: + this.enterOuterAlt(localContext, 19); { - this.state = 7576; + this.state = 7574; this.match(PostgreSQLParser.KW_ALTER); + this.state = 7575; + this.match(PostgreSQLParser.KW_TEXT); + this.state = 7576; + this.match(PostgreSQLParser.KW_SEARCH); this.state = 7577; - this.match(PostgreSQLParser.KW_OPERATOR); + this.match(PostgreSQLParser.KW_CONFIGURATION); this.state = 7578; - this.operator_with_argtypes(); + this.any_name(); this.state = 7579; this.match(PostgreSQLParser.KW_OWNER); this.state = 7580; @@ -33878,284 +34258,94 @@ export class PostgreSQLParser extends antlr.Parser { this.rolespec(); } break; - case 10: - this.enterOuterAlt(localContext, 10); + case 20: + this.enterOuterAlt(localContext, 20); { this.state = 7583; this.match(PostgreSQLParser.KW_ALTER); this.state = 7584; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7585; - this.match(PostgreSQLParser.KW_CLASS); - this.state = 7586; - this.any_name(); - this.state = 7587; - this.match(PostgreSQLParser.KW_USING); - this.state = 7588; - this.name(); - this.state = 7589; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7590; - this.match(PostgreSQLParser.KW_TO); - this.state = 7591; - this.rolespec(); - } - break; - case 11: - this.enterOuterAlt(localContext, 11); - { - this.state = 7593; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7594; - this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 7595; - this.match(PostgreSQLParser.KW_FAMILY); - this.state = 7596; - this.any_name(); - this.state = 7597; - this.match(PostgreSQLParser.KW_USING); - this.state = 7598; - this.name(); - this.state = 7599; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7600; - this.match(PostgreSQLParser.KW_TO); - this.state = 7601; - this.rolespec(); - } - break; - case 12: - this.enterOuterAlt(localContext, 12); - { - this.state = 7603; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7604; - this.match(PostgreSQLParser.KW_PROCEDURE); - this.state = 7605; - this.procedure_with_argtypes(); - this.state = 7606; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7607; - this.match(PostgreSQLParser.KW_TO); - this.state = 7608; - this.rolespec(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 7610; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7611; - this.match(PostgreSQLParser.KW_ROUTINE); - this.state = 7612; - this.routine_with_argtypes(); - this.state = 7613; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7614; - this.match(PostgreSQLParser.KW_TO); - this.state = 7615; - this.rolespec(); - } - break; - case 14: - this.enterOuterAlt(localContext, 14); - { - this.state = 7617; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7618; - this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 7619; - this.schema_name(); - this.state = 7620; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7621; - this.match(PostgreSQLParser.KW_TO); - this.state = 7622; - this.rolespec(); - } - break; - case 15: - this.enterOuterAlt(localContext, 15); - { - this.state = 7624; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7625; - this.match(PostgreSQLParser.KW_TYPE); - this.state = 7626; - this.any_name(); - this.state = 7627; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7628; - this.match(PostgreSQLParser.KW_TO); - this.state = 7629; - this.rolespec(); - } - break; - case 16: - this.enterOuterAlt(localContext, 16); - { - this.state = 7631; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7632; - this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 7633; - this.tablespace_name(); - this.state = 7634; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7635; - this.match(PostgreSQLParser.KW_TO); - this.state = 7636; - this.rolespec(); - } - break; - case 17: - this.enterOuterAlt(localContext, 17); - { - this.state = 7638; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7639; - this.match(PostgreSQLParser.KW_STATISTICS); - this.state = 7640; - this.any_name(); - this.state = 7641; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7642; - this.match(PostgreSQLParser.KW_TO); - this.state = 7643; - this.rolespec(); - } - break; - case 18: - this.enterOuterAlt(localContext, 18); - { - this.state = 7645; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7646; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 7647; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7648; - this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 7649; - this.any_name(); - this.state = 7650; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7651; - this.match(PostgreSQLParser.KW_TO); - this.state = 7652; - this.rolespec(); - } - break; - case 19: - this.enterOuterAlt(localContext, 19); - { - this.state = 7654; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7655; - this.match(PostgreSQLParser.KW_TEXT); - this.state = 7656; - this.match(PostgreSQLParser.KW_SEARCH); - this.state = 7657; - this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 7658; - this.any_name(); - this.state = 7659; - this.match(PostgreSQLParser.KW_OWNER); - this.state = 7660; - this.match(PostgreSQLParser.KW_TO); - this.state = 7661; - this.rolespec(); - } - break; - case 20: - this.enterOuterAlt(localContext, 20); - { - this.state = 7663; - this.match(PostgreSQLParser.KW_ALTER); - this.state = 7664; this.match(PostgreSQLParser.KW_FOREIGN); - this.state = 7665; + this.state = 7585; this.match(PostgreSQLParser.KW_DATA); - this.state = 7666; + this.state = 7586; this.match(PostgreSQLParser.KW_WRAPPER); - this.state = 7667; + this.state = 7587; this.name(); - this.state = 7668; + this.state = 7588; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7669; + this.state = 7589; this.match(PostgreSQLParser.KW_TO); - this.state = 7670; + this.state = 7590; this.rolespec(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7672; + this.state = 7592; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7673; + this.state = 7593; this.match(PostgreSQLParser.KW_SERVER); - this.state = 7674; + this.state = 7594; this.name(); - this.state = 7675; + this.state = 7595; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7676; + this.state = 7596; this.match(PostgreSQLParser.KW_TO); - this.state = 7677; + this.state = 7597; this.rolespec(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7679; + this.state = 7599; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7680; + this.state = 7600; this.match(PostgreSQLParser.KW_EVENT); - this.state = 7681; + this.state = 7601; this.match(PostgreSQLParser.KW_TRIGGER); - this.state = 7682; + this.state = 7602; this.name(); - this.state = 7683; + this.state = 7603; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7684; + this.state = 7604; this.match(PostgreSQLParser.KW_TO); - this.state = 7685; + this.state = 7605; this.rolespec(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7687; + this.state = 7607; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7688; + this.state = 7608; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7689; + this.state = 7609; this.name(); - this.state = 7690; + this.state = 7610; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7691; + this.state = 7611; this.match(PostgreSQLParser.KW_TO); - this.state = 7692; + this.state = 7612; this.rolespec(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7694; + this.state = 7614; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7695; + this.state = 7615; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7696; + this.state = 7616; this.name(); - this.state = 7697; + this.state = 7617; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7698; + this.state = 7618; this.match(PostgreSQLParser.KW_TO); - this.state = 7699; + this.state = 7619; this.rolespec(); } break; @@ -34177,33 +34367,33 @@ export class PostgreSQLParser extends antlr.Parser { } public createpublicationstmt(): CreatepublicationstmtContext { let localContext = new CreatepublicationstmtContext(this.context, this.state); - this.enterRule(localContext, 790, PostgreSQLParser.RULE_createpublicationstmt); + this.enterRule(localContext, 786, PostgreSQLParser.RULE_createpublicationstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7703; + this.state = 7623; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7704; + this.state = 7624; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7705; + this.state = 7625; this.name(); - this.state = 7707; + this.state = 7627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7706; + this.state = 7626; this.opt_publication_for_tables(); } } - this.state = 7710; + this.state = 7630; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 683, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 688, this.context) ) { case 1: { - this.state = 7709; + this.state = 7629; this.opt_definition(); } break; @@ -34226,11 +34416,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_publication_for_tables(): Opt_publication_for_tablesContext { let localContext = new Opt_publication_for_tablesContext(this.context, this.state); - this.enterRule(localContext, 792, PostgreSQLParser.RULE_opt_publication_for_tables); + this.enterRule(localContext, 788, PostgreSQLParser.RULE_opt_publication_for_tables); try { this.enterOuterAlt(localContext, 1); { - this.state = 7712; + this.state = 7632; this.publication_for_tables(); } } @@ -34250,30 +34440,30 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_for_tables(): Publication_for_tablesContext { let localContext = new Publication_for_tablesContext(this.context, this.state); - this.enterRule(localContext, 794, PostgreSQLParser.RULE_publication_for_tables); + this.enterRule(localContext, 790, PostgreSQLParser.RULE_publication_for_tables); try { - this.state = 7720; + this.state = 7640; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 684, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7714; + this.state = 7634; this.match(PostgreSQLParser.KW_FOR); - this.state = 7715; + this.state = 7635; this.match(PostgreSQLParser.KW_TABLE); - this.state = 7716; + this.state = 7636; this.relation_expr_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7717; + this.state = 7637; this.match(PostgreSQLParser.KW_FOR); - this.state = 7718; + this.state = 7638; this.match(PostgreSQLParser.KW_ALL); - this.state = 7719; + this.state = 7639; this.match(PostgreSQLParser.KW_TABLES); } break; @@ -34295,102 +34485,102 @@ export class PostgreSQLParser extends antlr.Parser { } public alterpublicationstmt(): AlterpublicationstmtContext { let localContext = new AlterpublicationstmtContext(this.context, this.state); - this.enterRule(localContext, 796, PostgreSQLParser.RULE_alterpublicationstmt); + this.enterRule(localContext, 792, PostgreSQLParser.RULE_alterpublicationstmt); try { - this.state = 7760; + this.state = 7680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 685, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7722; + this.state = 7642; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7723; + this.state = 7643; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7724; + this.state = 7644; this.name(); - this.state = 7725; + this.state = 7645; this.match(PostgreSQLParser.KW_SET); - this.state = 7726; + this.state = 7646; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7728; + this.state = 7648; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7729; + this.state = 7649; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7730; + this.state = 7650; this.name(); - this.state = 7731; + this.state = 7651; this.match(PostgreSQLParser.KW_ADD); - this.state = 7732; + this.state = 7652; this.publication_relation_expr_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7734; + this.state = 7654; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7735; + this.state = 7655; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7736; + this.state = 7656; this.name(); - this.state = 7737; + this.state = 7657; this.match(PostgreSQLParser.KW_SET); - this.state = 7738; + this.state = 7658; this.publication_relation_expr_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7740; + this.state = 7660; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7741; + this.state = 7661; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7742; + this.state = 7662; this.name(); - this.state = 7743; + this.state = 7663; this.match(PostgreSQLParser.KW_DROP); - this.state = 7744; + this.state = 7664; this.publication_relation_expr_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7746; + this.state = 7666; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7747; + this.state = 7667; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7748; + this.state = 7668; this.name(); - this.state = 7749; + this.state = 7669; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7750; + this.state = 7670; this.match(PostgreSQLParser.KW_TO); - this.state = 7751; + this.state = 7671; this.rolespec(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7753; + this.state = 7673; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7754; + this.state = 7674; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7755; + this.state = 7675; this.name(); - this.state = 7756; + this.state = 7676; this.match(PostgreSQLParser.KW_RENAME); - this.state = 7757; + this.state = 7677; this.match(PostgreSQLParser.KW_TO); - this.state = 7758; + this.state = 7678; this.name(); } break; @@ -34412,30 +34602,30 @@ export class PostgreSQLParser extends antlr.Parser { } public createsubscriptionstmt(): CreatesubscriptionstmtContext { let localContext = new CreatesubscriptionstmtContext(this.context, this.state); - this.enterRule(localContext, 798, PostgreSQLParser.RULE_createsubscriptionstmt); + this.enterRule(localContext, 794, PostgreSQLParser.RULE_createsubscriptionstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7762; + this.state = 7682; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7763; + this.state = 7683; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7764; + this.state = 7684; this.name(); - this.state = 7765; + this.state = 7685; this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 7766; + this.state = 7686; this.sconst(); - this.state = 7767; + this.state = 7687; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7768; + this.state = 7688; this.publication_name_list(); - this.state = 7770; + this.state = 7690; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 691, this.context) ) { case 1: { - this.state = 7769; + this.state = 7689; this.opt_definition(); } break; @@ -34458,26 +34648,26 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_name_list(): Publication_name_listContext { let localContext = new Publication_name_listContext(this.context, this.state); - this.enterRule(localContext, 800, PostgreSQLParser.RULE_publication_name_list); + this.enterRule(localContext, 796, PostgreSQLParser.RULE_publication_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7772; + this.state = 7692; this.publication_name_item(); - this.state = 7777; + this.state = 7697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7773; + this.state = 7693; this.match(PostgreSQLParser.COMMA); - this.state = 7774; + this.state = 7694; this.publication_name_item(); } } - this.state = 7779; + this.state = 7699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34499,11 +34689,11 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_name_item(): Publication_name_itemContext { let localContext = new Publication_name_itemContext(this.context, this.state); - this.enterRule(localContext, 802, PostgreSQLParser.RULE_publication_name_item); + this.enterRule(localContext, 798, PostgreSQLParser.RULE_publication_name_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 7780; + this.state = 7700; this.collabel(); } } @@ -34523,60 +34713,60 @@ export class PostgreSQLParser extends antlr.Parser { } public altersubscriptionstmt(): AltersubscriptionstmtContext { let localContext = new AltersubscriptionstmtContext(this.context, this.state); - this.enterRule(localContext, 804, PostgreSQLParser.RULE_altersubscriptionstmt); + this.enterRule(localContext, 800, PostgreSQLParser.RULE_altersubscriptionstmt); try { - this.state = 7860; + this.state = 7780; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 692, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7782; + this.state = 7702; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7783; + this.state = 7703; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7784; + this.state = 7704; this.name(); - this.state = 7785; + this.state = 7705; this.match(PostgreSQLParser.KW_SET); - this.state = 7786; + this.state = 7706; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7788; + this.state = 7708; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7789; + this.state = 7709; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7790; + this.state = 7710; this.name(); - this.state = 7791; + this.state = 7711; this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 7792; + this.state = 7712; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7794; + this.state = 7714; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7795; + this.state = 7715; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7796; + this.state = 7716; this.name(); - this.state = 7797; + this.state = 7717; this.match(PostgreSQLParser.KW_REFRESH); - this.state = 7798; + this.state = 7718; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7800; + this.state = 7720; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 688, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 693, this.context) ) { case 1: { - this.state = 7799; + this.state = 7719; this.opt_definition(); } break; @@ -34586,24 +34776,24 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7802; + this.state = 7722; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7803; + this.state = 7723; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7804; + this.state = 7724; this.name(); - this.state = 7805; + this.state = 7725; this.match(PostgreSQLParser.KW_SET); - this.state = 7806; + this.state = 7726; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7807; + this.state = 7727; this.publication_name_list(); - this.state = 7809; + this.state = 7729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 694, this.context) ) { case 1: { - this.state = 7808; + this.state = 7728; this.opt_definition(); } break; @@ -34613,24 +34803,24 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7811; + this.state = 7731; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7812; + this.state = 7732; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7813; + this.state = 7733; this.name(); - this.state = 7814; + this.state = 7734; this.match(PostgreSQLParser.KW_ADD); - this.state = 7815; + this.state = 7735; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7816; + this.state = 7736; this.publication_name_list(); - this.state = 7818; + this.state = 7738; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 695, this.context) ) { case 1: { - this.state = 7817; + this.state = 7737; this.opt_definition(); } break; @@ -34640,24 +34830,24 @@ export class PostgreSQLParser extends antlr.Parser { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7820; + this.state = 7740; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7821; + this.state = 7741; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7822; + this.state = 7742; this.name(); - this.state = 7823; + this.state = 7743; this.match(PostgreSQLParser.KW_DROP); - this.state = 7824; + this.state = 7744; this.match(PostgreSQLParser.KW_PUBLICATION); - this.state = 7825; + this.state = 7745; this.publication_name_list(); - this.state = 7827; + this.state = 7747; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 691, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 7826; + this.state = 7746; this.opt_definition(); } break; @@ -34667,77 +34857,77 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7829; + this.state = 7749; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7830; + this.state = 7750; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7831; + this.state = 7751; this.name(); - this.state = 7832; + this.state = 7752; this.match(PostgreSQLParser.KW_ENABLE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7834; + this.state = 7754; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7835; + this.state = 7755; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7836; + this.state = 7756; this.name(); - this.state = 7837; + this.state = 7757; this.match(PostgreSQLParser.KW_DISABLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7839; + this.state = 7759; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7840; + this.state = 7760; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7841; + this.state = 7761; this.name(); - this.state = 7842; + this.state = 7762; this.match(PostgreSQLParser.KW_SET); - this.state = 7843; + this.state = 7763; this.definition(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7845; + this.state = 7765; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7846; + this.state = 7766; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7847; + this.state = 7767; this.name(); - this.state = 7848; + this.state = 7768; this.match(PostgreSQLParser.KW_SKIP); - this.state = 7849; + this.state = 7769; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7850; + this.state = 7770; this.old_aggr_elem(); - this.state = 7851; + this.state = 7771; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7853; + this.state = 7773; this.match(PostgreSQLParser.KW_ALTER); - this.state = 7854; + this.state = 7774; this.match(PostgreSQLParser.KW_SUBSCRIPTION); - this.state = 7855; + this.state = 7775; this.name(); - this.state = 7856; + this.state = 7776; this.match(PostgreSQLParser.KW_OWNER); - this.state = 7857; + this.state = 7777; this.match(PostgreSQLParser.KW_TO); - this.state = 7858; + this.state = 7778; this.rolespec(); } break; @@ -34759,60 +34949,60 @@ export class PostgreSQLParser extends antlr.Parser { } public rulestmt(): RulestmtContext { let localContext = new RulestmtContext(this.context, this.state); - this.enterRule(localContext, 806, PostgreSQLParser.RULE_rulestmt); + this.enterRule(localContext, 802, PostgreSQLParser.RULE_rulestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7862; + this.state = 7782; this.match(PostgreSQLParser.KW_CREATE); - this.state = 7864; + this.state = 7784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 7863; + this.state = 7783; this.opt_or_replace(); } } - this.state = 7866; + this.state = 7786; this.match(PostgreSQLParser.KW_RULE); - this.state = 7867; + this.state = 7787; this.name(); - this.state = 7868; + this.state = 7788; this.match(PostgreSQLParser.KW_AS); - this.state = 7869; + this.state = 7789; this.match(PostgreSQLParser.KW_ON); - this.state = 7870; + this.state = 7790; this.event(); - this.state = 7871; + this.state = 7791; this.match(PostgreSQLParser.KW_TO); - this.state = 7872; + this.state = 7792; this.qualified_name(); - this.state = 7874; + this.state = 7794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 7873; + this.state = 7793; this.where_clause(); } } - this.state = 7876; + this.state = 7796; this.match(PostgreSQLParser.KW_DO); - this.state = 7878; + this.state = 7798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137 || _la === 242) { { - this.state = 7877; + this.state = 7797; this.opt_instead(); } } - this.state = 7880; + this.state = 7800; this.ruleactionlist(); } } @@ -34832,33 +35022,33 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionlist(): RuleactionlistContext { let localContext = new RuleactionlistContext(this.context, this.state); - this.enterRule(localContext, 808, PostgreSQLParser.RULE_ruleactionlist); + this.enterRule(localContext, 804, PostgreSQLParser.RULE_ruleactionlist); try { - this.state = 7888; + this.state = 7808; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7882; + this.state = 7802; this.match(PostgreSQLParser.KW_NOTHING); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7883; + this.state = 7803; this.ruleactionstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7884; + this.state = 7804; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 7885; + this.state = 7805; this.ruleactionmulti(); - this.state = 7886; + this.state = 7806; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -34880,42 +35070,42 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionmulti(): RuleactionmultiContext { let localContext = new RuleactionmultiContext(this.context, this.state); - this.enterRule(localContext, 810, PostgreSQLParser.RULE_ruleactionmulti); + this.enterRule(localContext, 806, PostgreSQLParser.RULE_ruleactionmulti); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7891; + this.state = 7811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 7890; + this.state = 7810; this.ruleactionstmtOrEmpty(); } } - this.state = 7899; + this.state = 7819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 7893; + this.state = 7813; this.match(PostgreSQLParser.SEMI); - this.state = 7895; + this.state = 7815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 7894; + this.state = 7814; this.ruleactionstmtOrEmpty(); } } } } - this.state = 7901; + this.state = 7821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34937,43 +35127,43 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionstmt(): RuleactionstmtContext { let localContext = new RuleactionstmtContext(this.context, this.state); - this.enterRule(localContext, 812, PostgreSQLParser.RULE_ruleactionstmt); + this.enterRule(localContext, 808, PostgreSQLParser.RULE_ruleactionstmt); try { - this.state = 7907; + this.state = 7827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 705, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7902; + this.state = 7822; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7903; + this.state = 7823; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7904; + this.state = 7824; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7905; + this.state = 7825; this.deletestmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7906; + this.state = 7826; this.notifystmt(); } break; @@ -34995,11 +35185,11 @@ export class PostgreSQLParser extends antlr.Parser { } public ruleactionstmtOrEmpty(): RuleactionstmtOrEmptyContext { let localContext = new RuleactionstmtOrEmptyContext(this.context, this.state); - this.enterRule(localContext, 814, PostgreSQLParser.RULE_ruleactionstmtOrEmpty); + this.enterRule(localContext, 810, PostgreSQLParser.RULE_ruleactionstmtOrEmpty); try { this.enterOuterAlt(localContext, 1); { - this.state = 7909; + this.state = 7829; this.ruleactionstmt(); } } @@ -35019,12 +35209,12 @@ export class PostgreSQLParser extends antlr.Parser { } public event(): EventContext { let localContext = new EventContext(this.context, this.state); - this.enterRule(localContext, 816, PostgreSQLParser.RULE_event); + this.enterRule(localContext, 812, PostgreSQLParser.RULE_event); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7911; + this.state = 7831; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -35051,12 +35241,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_instead(): Opt_insteadContext { let localContext = new Opt_insteadContext(this.context, this.state); - this.enterRule(localContext, 818, PostgreSQLParser.RULE_opt_instead); + this.enterRule(localContext, 814, PostgreSQLParser.RULE_opt_instead); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7913; + this.state = 7833; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -35083,21 +35273,21 @@ export class PostgreSQLParser extends antlr.Parser { } public notifystmt(): NotifystmtContext { let localContext = new NotifystmtContext(this.context, this.state); - this.enterRule(localContext, 820, PostgreSQLParser.RULE_notifystmt); + this.enterRule(localContext, 816, PostgreSQLParser.RULE_notifystmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7915; + this.state = 7835; this.match(PostgreSQLParser.KW_NOTIFY); - this.state = 7916; + this.state = 7836; this.colid(); - this.state = 7918; + this.state = 7838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7917; + this.state = 7837; this.notify_payload(); } } @@ -35120,13 +35310,13 @@ export class PostgreSQLParser extends antlr.Parser { } public notify_payload(): Notify_payloadContext { let localContext = new Notify_payloadContext(this.context, this.state); - this.enterRule(localContext, 822, PostgreSQLParser.RULE_notify_payload); + this.enterRule(localContext, 818, PostgreSQLParser.RULE_notify_payload); try { this.enterOuterAlt(localContext, 1); { - this.state = 7920; + this.state = 7840; this.match(PostgreSQLParser.COMMA); - this.state = 7921; + this.state = 7841; this.sconst(); } } @@ -35146,13 +35336,13 @@ export class PostgreSQLParser extends antlr.Parser { } public listenstmt(): ListenstmtContext { let localContext = new ListenstmtContext(this.context, this.state); - this.enterRule(localContext, 824, PostgreSQLParser.RULE_listenstmt); + this.enterRule(localContext, 820, PostgreSQLParser.RULE_listenstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 7923; + this.state = 7843; this.match(PostgreSQLParser.KW_LISTEN); - this.state = 7924; + this.state = 7844; this.colid(); } } @@ -35172,26 +35362,26 @@ export class PostgreSQLParser extends antlr.Parser { } public unlistenstmt(): UnlistenstmtContext { let localContext = new UnlistenstmtContext(this.context, this.state); - this.enterRule(localContext, 826, PostgreSQLParser.RULE_unlistenstmt); + this.enterRule(localContext, 822, PostgreSQLParser.RULE_unlistenstmt); try { - this.state = 7930; + this.state = 7850; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7926; + this.state = 7846; this.match(PostgreSQLParser.KW_UNLISTEN); - this.state = 7927; + this.state = 7847; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7928; + this.state = 7848; this.match(PostgreSQLParser.KW_UNLISTEN); - this.state = 7929; + this.state = 7849; this.match(PostgreSQLParser.STAR); } break; @@ -35213,33 +35403,33 @@ export class PostgreSQLParser extends antlr.Parser { } public transactionstmt(): TransactionstmtContext { let localContext = new TransactionstmtContext(this.context, this.state); - this.enterRule(localContext, 828, PostgreSQLParser.RULE_transactionstmt); + this.enterRule(localContext, 824, PostgreSQLParser.RULE_transactionstmt); let _la: number; try { - this.state = 8001; + this.state = 7917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 716, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 722, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7932; + this.state = 7852; this.match(PostgreSQLParser.KW_ABORT); - this.state = 7934; + this.state = 7854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 703, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { case 1: { - this.state = 7933; + this.state = 7853; this.opt_transaction(); } break; } - this.state = 7937; + this.state = 7857; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { case 1: { - this.state = 7936; + this.state = 7856; this.opt_transaction_chain(); } break; @@ -35249,24 +35439,24 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7939; + this.state = 7859; this.match(PostgreSQLParser.KW_BEGIN); - this.state = 7941; + this.state = 7861; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 705, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 710, this.context) ) { case 1: { - this.state = 7940; + this.state = 7860; this.opt_transaction(); } break; } - this.state = 7944; + this.state = 7864; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 706, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: { - this.state = 7943; + this.state = 7863; this.transaction_mode_list_or_empty(); } break; @@ -35276,16 +35466,16 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7946; + this.state = 7866; this.match(PostgreSQLParser.KW_START); - this.state = 7947; + this.state = 7867; this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 7949; + this.state = 7869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 712, this.context) ) { case 1: { - this.state = 7948; + this.state = 7868; this.transaction_mode_list_or_empty(); } break; @@ -35295,24 +35485,24 @@ export class PostgreSQLParser extends antlr.Parser { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7951; - this.match(PostgreSQLParser.KW_COMMIT); - this.state = 7953; + this.state = 7871; + this.match(PostgreSQLParser.KW_END); + this.state = 7873; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 713, this.context) ) { case 1: { - this.state = 7952; + this.state = 7872; this.opt_transaction(); } break; } - this.state = 7956; + this.state = 7876; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { case 1: { - this.state = 7955; + this.state = 7875; this.opt_transaction_chain(); } break; @@ -35322,161 +35512,147 @@ export class PostgreSQLParser extends antlr.Parser { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7958; - this.match(PostgreSQLParser.KW_END); - this.state = 7960; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 710, this.context) ) { - case 1: - { - this.state = 7959; - this.opt_transaction(); - } - break; - } - this.state = 7963; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { - case 1: - { - this.state = 7962; - this.opt_transaction_chain(); - } - break; - } + this.state = 7878; + this.match(PostgreSQLParser.KW_SAVEPOINT); + this.state = 7879; + this.colid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7965; - this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 7967; + this.state = 7880; + this.match(PostgreSQLParser.KW_RELEASE); + this.state = 7882; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 712, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 715, this.context) ) { case 1: { - this.state = 7966; + this.state = 7881; + this.match(PostgreSQLParser.KW_SAVEPOINT); + } + break; + } + this.state = 7884; + this.colid(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 7885; + this.match(PostgreSQLParser.KW_PREPARE); + this.state = 7886; + this.match(PostgreSQLParser.KW_TRANSACTION); + this.state = 7887; + this.sconst(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 7888; + this.match(PostgreSQLParser.KW_COMMIT); + this.state = 7889; + this.match(PostgreSQLParser.KW_PREPARED); + this.state = 7890; + this.sconst(); + } + break; + case 9: + this.enterOuterAlt(localContext, 9); + { + this.state = 7891; + this.match(PostgreSQLParser.KW_COMMIT); + this.state = 7893; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 716, this.context) ) { + case 1: + { + this.state = 7892; this.opt_transaction(); } break; } - this.state = 7970; + this.state = 7896; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 713, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 717, this.context) ) { case 1: { - this.state = 7969; + this.state = 7895; this.opt_transaction_chain(); } break; } } break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 7972; - this.match(PostgreSQLParser.KW_SAVEPOINT); - this.state = 7973; - this.colid(); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 7974; - this.match(PostgreSQLParser.KW_RELEASE); - this.state = 7975; - this.match(PostgreSQLParser.KW_SAVEPOINT); - this.state = 7976; - this.colid(); - } - break; - case 9: - this.enterOuterAlt(localContext, 9); - { - this.state = 7977; - this.match(PostgreSQLParser.KW_RELEASE); - this.state = 7978; - this.colid(); - } - break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7979; + this.state = 7898; this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 7981; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 356 || _la === 380) { - { - this.state = 7980; - this.opt_transaction(); - } - } - - this.state = 7983; - this.match(PostgreSQLParser.KW_TO); - this.state = 7984; - this.match(PostgreSQLParser.KW_SAVEPOINT); - this.state = 7985; - this.colid(); + this.state = 7899; + this.match(PostgreSQLParser.KW_PREPARED); + this.state = 7900; + this.sconst(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7986; + this.state = 7901; this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 7988; + this.state = 7903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 356 || _la === 380) { { - this.state = 7987; + this.state = 7902; this.opt_transaction(); } } - this.state = 7990; + this.state = 7905; this.match(PostgreSQLParser.KW_TO); - this.state = 7991; + this.state = 7907; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { + case 1: + { + this.state = 7906; + this.match(PostgreSQLParser.KW_SAVEPOINT); + } + break; + } + this.state = 7909; this.colid(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7992; - this.match(PostgreSQLParser.KW_PREPARE); - this.state = 7993; - this.match(PostgreSQLParser.KW_TRANSACTION); - this.state = 7994; - this.sconst(); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 7995; - this.match(PostgreSQLParser.KW_COMMIT); - this.state = 7996; - this.match(PostgreSQLParser.KW_PREPARED); - this.state = 7997; - this.sconst(); - } - break; - case 14: - this.enterOuterAlt(localContext, 14); - { - this.state = 7998; + this.state = 7910; this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 7999; - this.match(PostgreSQLParser.KW_PREPARED); - this.state = 8000; - this.sconst(); + this.state = 7912; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { + case 1: + { + this.state = 7911; + this.opt_transaction(); + } + break; + } + this.state = 7915; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 721, this.context) ) { + case 1: + { + this.state = 7914; + this.opt_transaction_chain(); + } + break; + } } break; } @@ -35497,12 +35673,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_transaction(): Opt_transactionContext { let localContext = new Opt_transactionContext(this.context, this.state); - this.enterRule(localContext, 830, PostgreSQLParser.RULE_opt_transaction); + this.enterRule(localContext, 826, PostgreSQLParser.RULE_opt_transaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8003; + this.state = 7919; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -35529,53 +35705,53 @@ export class PostgreSQLParser extends antlr.Parser { } public transaction_mode_item(): Transaction_mode_itemContext { let localContext = new Transaction_mode_itemContext(this.context, this.state); - this.enterRule(localContext, 832, PostgreSQLParser.RULE_transaction_mode_item); + this.enterRule(localContext, 828, PostgreSQLParser.RULE_transaction_mode_item); try { - this.state = 8015; + this.state = 7931; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 717, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8005; + this.state = 7921; this.match(PostgreSQLParser.KW_ISOLATION); - this.state = 8006; + this.state = 7922; this.match(PostgreSQLParser.KW_LEVEL); - this.state = 8007; + this.state = 7923; this.iso_level(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8008; + this.state = 7924; this.match(PostgreSQLParser.KW_READ); - this.state = 8009; + this.state = 7925; this.match(PostgreSQLParser.KW_ONLY); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8010; + this.state = 7926; this.match(PostgreSQLParser.KW_READ); - this.state = 8011; + this.state = 7927; this.match(PostgreSQLParser.KW_WRITE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8012; + this.state = 7928; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8013; + this.state = 7929; this.match(PostgreSQLParser.KW_NOT); - this.state = 8014; + this.state = 7930; this.match(PostgreSQLParser.KW_DEFERRABLE); } break; @@ -35597,39 +35773,39 @@ export class PostgreSQLParser extends antlr.Parser { } public transaction_mode_list(): Transaction_mode_listContext { let localContext = new Transaction_mode_listContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSQLParser.RULE_transaction_mode_list); + this.enterRule(localContext, 830, PostgreSQLParser.RULE_transaction_mode_list); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8017; + this.state = 7933; this.transaction_mode_item(); - this.state = 8024; + this.state = 7940; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 719, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 725, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8019; + this.state = 7935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8018; + this.state = 7934; this.match(PostgreSQLParser.COMMA); } } - this.state = 8021; + this.state = 7937; this.transaction_mode_item(); } } } - this.state = 8026; + this.state = 7942; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 719, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 725, this.context); } } } @@ -35649,11 +35825,11 @@ export class PostgreSQLParser extends antlr.Parser { } public transaction_mode_list_or_empty(): Transaction_mode_list_or_emptyContext { let localContext = new Transaction_mode_list_or_emptyContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSQLParser.RULE_transaction_mode_list_or_empty); + this.enterRule(localContext, 832, PostgreSQLParser.RULE_transaction_mode_list_or_empty); try { this.enterOuterAlt(localContext, 1); { - this.state = 8027; + this.state = 7943; this.transaction_mode_list(); } } @@ -35673,24 +35849,24 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_transaction_chain(): Opt_transaction_chainContext { let localContext = new Opt_transaction_chainContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSQLParser.RULE_opt_transaction_chain); + this.enterRule(localContext, 834, PostgreSQLParser.RULE_opt_transaction_chain); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8029; + this.state = 7945; this.match(PostgreSQLParser.KW_AND); - this.state = 8031; + this.state = 7947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8030; + this.state = 7946; this.match(PostgreSQLParser.KW_NO); } } - this.state = 8033; + this.state = 7949; this.match(PostgreSQLParser.KW_CHAIN); } } @@ -35710,60 +35886,60 @@ export class PostgreSQLParser extends antlr.Parser { } public viewstmt(): ViewstmtContext { let localContext = new ViewstmtContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSQLParser.RULE_viewstmt); + this.enterRule(localContext, 836, PostgreSQLParser.RULE_viewstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8035; + this.state = 7951; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8038; + this.state = 7954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 8036; + this.state = 7952; this.match(PostgreSQLParser.KW_OR); - this.state = 8037; + this.state = 7953; this.match(PostgreSQLParser.KW_REPLACE); } } - this.state = 8041; + this.state = 7957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 8040; + this.state = 7956; this.opttemp(); } } - this.state = 8060; + this.state = 7976; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VIEW: { - this.state = 8043; + this.state = 7959; this.match(PostgreSQLParser.KW_VIEW); - this.state = 8044; + this.state = 7960; this.view_name_create(); - this.state = 8046; + this.state = 7962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8045; + this.state = 7961; this.opt_column_list(); } } - this.state = 8049; + this.state = 7965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8048; + this.state = 7964; this.opt_reloptions(); } } @@ -35772,24 +35948,24 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_RECURSIVE: { - this.state = 8051; + this.state = 7967; this.match(PostgreSQLParser.KW_RECURSIVE); - this.state = 8052; + this.state = 7968; this.match(PostgreSQLParser.KW_VIEW); - this.state = 8053; + this.state = 7969; this.view_name_create(); - this.state = 8054; + this.state = 7970; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8055; + this.state = 7971; this.columnlist(); - this.state = 8056; + this.state = 7972; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8058; + this.state = 7974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8057; + this.state = 7973; this.opt_reloptions(); } } @@ -35799,16 +35975,16 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 8062; + this.state = 7978; this.match(PostgreSQLParser.KW_AS); - this.state = 8063; + this.state = 7979; this.selectstmt(); - this.state = 8065; + this.state = 7981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 727, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 733, this.context) ) { case 1: { - this.state = 8064; + this.state = 7980; this.opt_check_option(); } break; @@ -35831,19 +36007,19 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_check_option(): Opt_check_optionContext { let localContext = new Opt_check_optionContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSQLParser.RULE_opt_check_option); + this.enterRule(localContext, 838, PostgreSQLParser.RULE_opt_check_option); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8067; + this.state = 7983; this.match(PostgreSQLParser.KW_WITH); - this.state = 8069; + this.state = 7985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 254) { { - this.state = 8068; + this.state = 7984; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -35855,9 +36031,9 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 8071; + this.state = 7987; this.match(PostgreSQLParser.KW_CHECK); - this.state = 8072; + this.state = 7988; this.match(PostgreSQLParser.KW_OPTION); } } @@ -35877,13 +36053,13 @@ export class PostgreSQLParser extends antlr.Parser { } public loadstmt(): LoadstmtContext { let localContext = new LoadstmtContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSQLParser.RULE_loadstmt); + this.enterRule(localContext, 840, PostgreSQLParser.RULE_loadstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8074; + this.state = 7990; this.match(PostgreSQLParser.KW_LOAD); - this.state = 8075; + this.state = 7991; this.file_name(); } } @@ -35903,32 +36079,32 @@ export class PostgreSQLParser extends antlr.Parser { } public createdbstmt(): CreatedbstmtContext { let localContext = new CreatedbstmtContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSQLParser.RULE_createdbstmt); + this.enterRule(localContext, 842, PostgreSQLParser.RULE_createdbstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8077; + this.state = 7993; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8078; + this.state = 7994; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 8079; + this.state = 7995; this.database_name_create(); - this.state = 8081; + this.state = 7997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 729, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { case 1: { - this.state = 8080; + this.state = 7996; this.opt_with(); } break; } - this.state = 8084; + this.state = 8000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 730, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 736, this.context) ) { case 1: { - this.state = 8083; + this.state = 7999; this.createdb_opt_list(); } break; @@ -35951,11 +36127,11 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_list(): Createdb_opt_listContext { let localContext = new Createdb_opt_listContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSQLParser.RULE_createdb_opt_list); + this.enterRule(localContext, 844, PostgreSQLParser.RULE_createdb_opt_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 8086; + this.state = 8002; this.createdb_opt_items(); } } @@ -35975,12 +36151,12 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_items(): Createdb_opt_itemsContext { let localContext = new Createdb_opt_itemsContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSQLParser.RULE_createdb_opt_items); + this.enterRule(localContext, 846, PostgreSQLParser.RULE_createdb_opt_items); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8089; + this.state = 8005; this.errorHandler.sync(this); alternative = 1; do { @@ -35988,7 +36164,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 8088; + this.state = 8004; this.createdb_opt_item(); } } @@ -35996,9 +36172,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 8091; + this.state = 8007; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 731, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 737, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -36018,41 +36194,41 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_item(): Createdb_opt_itemContext { let localContext = new Createdb_opt_itemContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSQLParser.RULE_createdb_opt_item); + this.enterRule(localContext, 848, PostgreSQLParser.RULE_createdb_opt_item); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8093; + this.state = 8009; this.createdb_opt_name(); - this.state = 8095; + this.state = 8011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 8094; + this.state = 8010; this.opt_equal(); } } - this.state = 8100; + this.state = 8016; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 733, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { case 1: { - this.state = 8097; + this.state = 8013; this.signediconst(); } break; case 2: { - this.state = 8098; + this.state = 8014; this.opt_boolean_or_string(); } break; case 3: { - this.state = 8099; + this.state = 8015; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -36075,15 +36251,58 @@ export class PostgreSQLParser extends antlr.Parser { } public createdb_opt_name(): Createdb_opt_nameContext { let localContext = new Createdb_opt_nameContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSQLParser.RULE_createdb_opt_name); + this.enterRule(localContext, 850, PostgreSQLParser.RULE_createdb_opt_name); try { - this.state = 8110; + this.state = 8026; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.KW_CONNECTION: + this.enterOuterAlt(localContext, 1); + { + this.state = 8018; + this.match(PostgreSQLParser.KW_CONNECTION); + this.state = 8019; + this.match(PostgreSQLParser.KW_LIMIT); + } + break; + case PostgreSQLParser.KW_ENCODING: + this.enterOuterAlt(localContext, 2); + { + this.state = 8020; + this.match(PostgreSQLParser.KW_ENCODING); + } + break; + case PostgreSQLParser.KW_LOCATION: + this.enterOuterAlt(localContext, 3); + { + this.state = 8021; + this.match(PostgreSQLParser.KW_LOCATION); + } + break; + case PostgreSQLParser.KW_OWNER: + this.enterOuterAlt(localContext, 4); + { + this.state = 8022; + this.match(PostgreSQLParser.KW_OWNER); + } + break; + case PostgreSQLParser.KW_TABLESPACE: + this.enterOuterAlt(localContext, 5); + { + this.state = 8023; + this.match(PostgreSQLParser.KW_TABLESPACE); + } + break; + case PostgreSQLParser.KW_TEMPLATE: + this.enterOuterAlt(localContext, 6); + { + this.state = 8024; + this.match(PostgreSQLParser.KW_TEMPLATE); + } + break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -36154,54 +36373,10 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLVARIABLENAME: case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); - { - this.state = 8102; - this.identifier(); - } - break; - case PostgreSQLParser.KW_CONNECTION: - this.enterOuterAlt(localContext, 2); - { - this.state = 8103; - this.match(PostgreSQLParser.KW_CONNECTION); - this.state = 8104; - this.match(PostgreSQLParser.KW_LIMIT); - } - break; - case PostgreSQLParser.KW_ENCODING: - this.enterOuterAlt(localContext, 3); - { - this.state = 8105; - this.match(PostgreSQLParser.KW_ENCODING); - } - break; - case PostgreSQLParser.KW_LOCATION: - this.enterOuterAlt(localContext, 4); - { - this.state = 8106; - this.match(PostgreSQLParser.KW_LOCATION); - } - break; - case PostgreSQLParser.KW_OWNER: - this.enterOuterAlt(localContext, 5); - { - this.state = 8107; - this.match(PostgreSQLParser.KW_OWNER); - } - break; - case PostgreSQLParser.KW_TABLESPACE: - this.enterOuterAlt(localContext, 6); - { - this.state = 8108; - this.match(PostgreSQLParser.KW_TABLESPACE); - } - break; - case PostgreSQLParser.KW_TEMPLATE: this.enterOuterAlt(localContext, 7); { - this.state = 8109; - this.match(PostgreSQLParser.KW_TEMPLATE); + this.state = 8025; + this.identifier(); } break; default: @@ -36224,11 +36399,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_equal(): Opt_equalContext { let localContext = new Opt_equalContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSQLParser.RULE_opt_equal); + this.enterRule(localContext, 852, PostgreSQLParser.RULE_opt_equal); try { this.enterOuterAlt(localContext, 1); { - this.state = 8112; + this.state = 8028; this.match(PostgreSQLParser.EQUAL); } } @@ -36248,39 +36423,33 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdatabasestmt(): AlterdatabasestmtContext { let localContext = new AlterdatabasestmtContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSQLParser.RULE_alterdatabasestmt); + this.enterRule(localContext, 854, PostgreSQLParser.RULE_alterdatabasestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8114; + this.state = 8030; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8115; + this.state = 8031; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 8116; + this.state = 8032; this.database_name(); - this.state = 8131; + this.state = 8044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 744, this.context) ) { case 1: { - this.state = 8121; + this.state = 8036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 736, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { case 1: { - this.state = 8118; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105) { - { - this.state = 8117; - this.match(PostgreSQLParser.KW_WITH); - } - } - - this.state = 8120; - this.createdb_opt_list(); + this.state = 8033; + this.match(PostgreSQLParser.KW_SET); + this.state = 8034; + this.match(PostgreSQLParser.KW_TABLESPACE); + this.state = 8035; + this.tablespace_name_create(); } break; } @@ -36288,31 +36457,23 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8124; + this.state = 8042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { case 1: { - this.state = 8123; - this.createdb_opt_list(); + this.state = 8039; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 105) { + { + this.state = 8038; + this.match(PostgreSQLParser.KW_WITH); + } } - break; - } - } - break; - case 3: - { - this.state = 8129; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { - case 1: - { - this.state = 8126; - this.match(PostgreSQLParser.KW_SET); - this.state = 8127; - this.match(PostgreSQLParser.KW_TABLESPACE); - this.state = 8128; - this.tablespace_name_create(); + + this.state = 8041; + this.createdb_opt_list(); } break; } @@ -36337,22 +36498,22 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdatabasesetstmt(): AlterdatabasesetstmtContext { let localContext = new AlterdatabasesetstmtContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSQLParser.RULE_alterdatabasesetstmt); + this.enterRule(localContext, 856, PostgreSQLParser.RULE_alterdatabasesetstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8133; + this.state = 8046; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8134; + this.state = 8047; this.match(PostgreSQLParser.KW_DATABASE); - this.state = 8135; + this.state = 8048; this.database_name(); - this.state = 8137; + this.state = 8050; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 740, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 8136; + this.state = 8049; this.setresetclause(); } break; @@ -36375,26 +36536,26 @@ export class PostgreSQLParser extends antlr.Parser { } public drop_option_list(): Drop_option_listContext { let localContext = new Drop_option_listContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSQLParser.RULE_drop_option_list); + this.enterRule(localContext, 858, PostgreSQLParser.RULE_drop_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8139; + this.state = 8052; this.drop_option(); - this.state = 8144; + this.state = 8057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8140; + this.state = 8053; this.match(PostgreSQLParser.COMMA); - this.state = 8141; + this.state = 8054; this.drop_option(); } } - this.state = 8146; + this.state = 8059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36416,11 +36577,11 @@ export class PostgreSQLParser extends antlr.Parser { } public drop_option(): Drop_optionContext { let localContext = new Drop_optionContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSQLParser.RULE_drop_option); + this.enterRule(localContext, 860, PostgreSQLParser.RULE_drop_option); try { this.enterOuterAlt(localContext, 1); { - this.state = 8147; + this.state = 8060; this.match(PostgreSQLParser.KW_FORCE); } } @@ -36440,19 +36601,19 @@ export class PostgreSQLParser extends antlr.Parser { } public altercollationstmt(): AltercollationstmtContext { let localContext = new AltercollationstmtContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSQLParser.RULE_altercollationstmt); + this.enterRule(localContext, 862, PostgreSQLParser.RULE_altercollationstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8149; + this.state = 8062; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8150; + this.state = 8063; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 8151; + this.state = 8064; this.any_name(); - this.state = 8152; + this.state = 8065; this.match(PostgreSQLParser.KW_REFRESH); - this.state = 8153; + this.state = 8066; this.match(PostgreSQLParser.KW_VERSION); } } @@ -36472,16 +36633,16 @@ export class PostgreSQLParser extends antlr.Parser { } public altersystemstmt(): AltersystemstmtContext { let localContext = new AltersystemstmtContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSQLParser.RULE_altersystemstmt); + this.enterRule(localContext, 864, PostgreSQLParser.RULE_altersystemstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8155; + this.state = 8068; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8156; + this.state = 8069; this.match(PostgreSQLParser.KW_SYSTEM); - this.state = 8157; + this.state = 8070; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -36490,7 +36651,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8158; + this.state = 8071; this.generic_set(); } } @@ -36510,30 +36671,30 @@ export class PostgreSQLParser extends antlr.Parser { } public createdomainstmt(): CreatedomainstmtContext { let localContext = new CreatedomainstmtContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSQLParser.RULE_createdomainstmt); + this.enterRule(localContext, 866, PostgreSQLParser.RULE_createdomainstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8160; + this.state = 8073; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8161; + this.state = 8074; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 8162; + this.state = 8075; this.any_name(); - this.state = 8164; + this.state = 8077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8163; + this.state = 8076; this.opt_as(); } } - this.state = 8166; + this.state = 8079; this.typename(); - this.state = 8167; + this.state = 8080; this.colquallist(); } } @@ -36553,77 +36714,77 @@ export class PostgreSQLParser extends antlr.Parser { } public alterdomainstmt(): AlterdomainstmtContext { let localContext = new AlterdomainstmtContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSQLParser.RULE_alterdomainstmt); + this.enterRule(localContext, 868, PostgreSQLParser.RULE_alterdomainstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8169; + this.state = 8082; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8170; + this.state = 8083; this.match(PostgreSQLParser.KW_DOMAIN); - this.state = 8171; + this.state = 8084; this.any_name(); - this.state = 8193; + this.state = 8106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 750, this.context) ) { case 1: { - this.state = 8172; + this.state = 8085; this.alter_column_default(); } break; case 2: { - this.state = 8173; + this.state = 8086; this.match(PostgreSQLParser.KW_DROP); - this.state = 8174; + this.state = 8087; this.match(PostgreSQLParser.KW_NOT); - this.state = 8175; + this.state = 8088; this.match(PostgreSQLParser.KW_NULL); } break; case 3: { - this.state = 8176; + this.state = 8089; this.match(PostgreSQLParser.KW_SET); - this.state = 8177; + this.state = 8090; this.match(PostgreSQLParser.KW_NOT); - this.state = 8178; + this.state = 8091; this.match(PostgreSQLParser.KW_NULL); } break; case 4: { - this.state = 8179; + this.state = 8092; this.match(PostgreSQLParser.KW_ADD); - this.state = 8180; + this.state = 8093; this.tableconstraint(); } break; case 5: { - this.state = 8181; + this.state = 8094; this.match(PostgreSQLParser.KW_DROP); - this.state = 8182; + this.state = 8095; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 8184; + this.state = 8097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 748, this.context) ) { case 1: { - this.state = 8183; + this.state = 8096; this.opt_if_exists(); } break; } - this.state = 8186; + this.state = 8099; this.name(); - this.state = 8188; + this.state = 8101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 744, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { - this.state = 8187; + this.state = 8100; this.opt_drop_behavior(); } break; @@ -36632,11 +36793,11 @@ export class PostgreSQLParser extends antlr.Parser { break; case 6: { - this.state = 8190; + this.state = 8103; this.match(PostgreSQLParser.KW_VALIDATE); - this.state = 8191; + this.state = 8104; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 8192; + this.state = 8105; this.name(); } break; @@ -36659,11 +36820,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_as(): Opt_asContext { let localContext = new Opt_asContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSQLParser.RULE_opt_as); + this.enterRule(localContext, 870, PostgreSQLParser.RULE_opt_as); try { this.enterOuterAlt(localContext, 1); { - this.state = 8195; + this.state = 8108; this.match(PostgreSQLParser.KW_AS); } } @@ -36683,21 +36844,21 @@ export class PostgreSQLParser extends antlr.Parser { } public altertsdictionarystmt(): AltertsdictionarystmtContext { let localContext = new AltertsdictionarystmtContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSQLParser.RULE_altertsdictionarystmt); + this.enterRule(localContext, 872, PostgreSQLParser.RULE_altertsdictionarystmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8197; + this.state = 8110; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8198; + this.state = 8111; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8199; + this.state = 8112; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8200; + this.state = 8113; this.match(PostgreSQLParser.KW_DICTIONARY); - this.state = 8201; + this.state = 8114; this.any_name(); - this.state = 8202; + this.state = 8115; this.definition(); } } @@ -36717,154 +36878,154 @@ export class PostgreSQLParser extends antlr.Parser { } public altertsconfigurationstmt(): AltertsconfigurationstmtContext { let localContext = new AltertsconfigurationstmtContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSQLParser.RULE_altertsconfigurationstmt); + this.enterRule(localContext, 874, PostgreSQLParser.RULE_altertsconfigurationstmt); let _la: number; try { - this.state = 8267; + this.state = 8180; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 752, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8204; + this.state = 8117; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8205; + this.state = 8118; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8206; + this.state = 8119; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8207; + this.state = 8120; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8208; + this.state = 8121; this.any_name(); - this.state = 8209; + this.state = 8122; this.match(PostgreSQLParser.KW_ADD); - this.state = 8210; + this.state = 8123; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8211; + this.state = 8124; this.match(PostgreSQLParser.KW_FOR); - this.state = 8212; + this.state = 8125; this.name_list(); - this.state = 8213; + this.state = 8126; this.any_with(); - this.state = 8214; + this.state = 8127; this.any_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8216; + this.state = 8129; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8217; + this.state = 8130; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8218; + this.state = 8131; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8219; + this.state = 8132; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8220; + this.state = 8133; this.any_name(); - this.state = 8221; + this.state = 8134; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8222; + this.state = 8135; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8223; + this.state = 8136; this.match(PostgreSQLParser.KW_FOR); - this.state = 8224; + this.state = 8137; this.name_list(); - this.state = 8225; + this.state = 8138; this.any_with(); - this.state = 8226; + this.state = 8139; this.any_name_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8228; + this.state = 8141; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8229; + this.state = 8142; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8230; + this.state = 8143; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8231; + this.state = 8144; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8232; + this.state = 8145; this.any_name(); - this.state = 8233; + this.state = 8146; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8234; + this.state = 8147; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8235; + this.state = 8148; this.match(PostgreSQLParser.KW_REPLACE); - this.state = 8236; + this.state = 8149; this.any_name(); - this.state = 8237; + this.state = 8150; this.any_with(); - this.state = 8238; + this.state = 8151; this.any_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8240; + this.state = 8153; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8241; + this.state = 8154; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8242; + this.state = 8155; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8243; + this.state = 8156; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8244; + this.state = 8157; this.any_name(); - this.state = 8245; + this.state = 8158; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8246; + this.state = 8159; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8247; + this.state = 8160; this.match(PostgreSQLParser.KW_FOR); - this.state = 8248; + this.state = 8161; this.name_list(); - this.state = 8249; + this.state = 8162; this.match(PostgreSQLParser.KW_REPLACE); - this.state = 8250; + this.state = 8163; this.any_name(); - this.state = 8251; + this.state = 8164; this.any_with(); - this.state = 8252; + this.state = 8165; this.any_name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8254; + this.state = 8167; this.match(PostgreSQLParser.KW_ALTER); - this.state = 8255; + this.state = 8168; this.match(PostgreSQLParser.KW_TEXT); - this.state = 8256; + this.state = 8169; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8257; + this.state = 8170; this.match(PostgreSQLParser.KW_CONFIGURATION); - this.state = 8258; + this.state = 8171; this.any_name(); - this.state = 8259; + this.state = 8172; this.match(PostgreSQLParser.KW_DROP); - this.state = 8260; + this.state = 8173; this.match(PostgreSQLParser.KW_MAPPING); - this.state = 8262; + this.state = 8175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 8261; + this.state = 8174; this.opt_if_exists(); } } - this.state = 8264; + this.state = 8177; this.match(PostgreSQLParser.KW_FOR); - this.state = 8265; + this.state = 8178; this.name_list(); } break; @@ -36886,11 +37047,11 @@ export class PostgreSQLParser extends antlr.Parser { } public any_with(): Any_withContext { let localContext = new Any_withContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSQLParser.RULE_any_with); + this.enterRule(localContext, 876, PostgreSQLParser.RULE_any_with); try { this.enterOuterAlt(localContext, 1); { - this.state = 8269; + this.state = 8182; this.match(PostgreSQLParser.KW_WITH); } } @@ -36910,38 +37071,38 @@ export class PostgreSQLParser extends antlr.Parser { } public createconversionstmt(): CreateconversionstmtContext { let localContext = new CreateconversionstmtContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSQLParser.RULE_createconversionstmt); + this.enterRule(localContext, 878, PostgreSQLParser.RULE_createconversionstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8271; + this.state = 8184; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8273; + this.state = 8186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 8272; + this.state = 8185; this.opt_default(); } } - this.state = 8275; + this.state = 8188; this.match(PostgreSQLParser.KW_CONVERSION); - this.state = 8276; + this.state = 8189; this.any_name(); - this.state = 8277; + this.state = 8190; this.match(PostgreSQLParser.KW_FOR); - this.state = 8278; + this.state = 8191; this.sconst(); - this.state = 8279; + this.state = 8192; this.match(PostgreSQLParser.KW_TO); - this.state = 8280; + this.state = 8193; this.sconst(); - this.state = 8281; + this.state = 8194; this.match(PostgreSQLParser.KW_FROM); - this.state = 8282; + this.state = 8195; this.any_name(); } } @@ -36961,35 +37122,35 @@ export class PostgreSQLParser extends antlr.Parser { } public clusterstmt(): ClusterstmtContext { let localContext = new ClusterstmtContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSQLParser.RULE_clusterstmt); + this.enterRule(localContext, 880, PostgreSQLParser.RULE_clusterstmt); let _la: number; try { - this.state = 8302; + this.state = 8215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 753, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 758, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8284; + this.state = 8197; this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 8286; + this.state = 8199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8285; + this.state = 8198; this.opt_verbose(); } } - this.state = 8288; + this.state = 8201; this.table_name(); - this.state = 8290; + this.state = 8203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8289; + this.state = 8202; this.cluster_index_specification(); } } @@ -36999,14 +37160,14 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8292; + this.state = 8205; this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 8294; + this.state = 8207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8293; + this.state = 8206; this.opt_verbose(); } } @@ -37016,18 +37177,18 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8296; + this.state = 8209; this.match(PostgreSQLParser.KW_CLUSTER); - this.state = 8297; + this.state = 8210; this.opt_verbose_list(); - this.state = 8298; + this.state = 8211; this.table_name(); - this.state = 8300; + this.state = 8213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8299; + this.state = 8212; this.cluster_index_specification(); } } @@ -37052,32 +37213,32 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_verbose_list(): Opt_verbose_listContext { let localContext = new Opt_verbose_listContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSQLParser.RULE_opt_verbose_list); + this.enterRule(localContext, 882, PostgreSQLParser.RULE_opt_verbose_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8304; + this.state = 8217; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8305; + this.state = 8218; this.opt_verbose(); - this.state = 8310; + this.state = 8223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8306; + this.state = 8219; this.match(PostgreSQLParser.COMMA); - this.state = 8307; + this.state = 8220; this.opt_verbose(); } } - this.state = 8312; + this.state = 8225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8313; + this.state = 8226; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -37097,13 +37258,13 @@ export class PostgreSQLParser extends antlr.Parser { } public cluster_index_specification(): Cluster_index_specificationContext { let localContext = new Cluster_index_specificationContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSQLParser.RULE_cluster_index_specification); + this.enterRule(localContext, 884, PostgreSQLParser.RULE_cluster_index_specification); try { this.enterOuterAlt(localContext, 1); { - this.state = 8315; + this.state = 8228; this.match(PostgreSQLParser.KW_USING); - this.state = 8316; + this.state = 8229; this.name(); } } @@ -37123,63 +37284,63 @@ export class PostgreSQLParser extends antlr.Parser { } public vacuumstmt(): VacuumstmtContext { let localContext = new VacuumstmtContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSQLParser.RULE_vacuumstmt); + this.enterRule(localContext, 886, PostgreSQLParser.RULE_vacuumstmt); let _la: number; try { - this.state = 8344; + this.state = 8257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 762, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8318; + this.state = 8231; this.match(PostgreSQLParser.KW_VACUUM); - this.state = 8320; + this.state = 8233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 8319; + this.state = 8232; this.opt_full(); } } - this.state = 8323; + this.state = 8236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 8322; + this.state = 8235; this.opt_freeze(); } } - this.state = 8326; + this.state = 8239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8325; + this.state = 8238; this.opt_verbose(); } } - this.state = 8329; + this.state = 8242; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 758, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 763, this.context) ) { case 1: { - this.state = 8328; + this.state = 8241; this.opt_analyze(); } break; } - this.state = 8332; + this.state = 8245; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 764, this.context) ) { case 1: { - this.state = 8331; + this.state = 8244; this.opt_vacuum_relation_list(); } break; @@ -37189,28 +37350,28 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8334; + this.state = 8247; this.match(PostgreSQLParser.KW_VACUUM); - this.state = 8339; + this.state = 8252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 760, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 765, this.context) ) { case 1: { - this.state = 8335; + this.state = 8248; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8336; + this.state = 8249; this.vac_analyze_option_list(); - this.state = 8337; + this.state = 8250; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 8342; + this.state = 8255; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { case 1: { - this.state = 8341; + this.state = 8254; this.opt_vacuum_relation_list(); } break; @@ -37235,33 +37396,33 @@ export class PostgreSQLParser extends antlr.Parser { } public analyzestmt(): AnalyzestmtContext { let localContext = new AnalyzestmtContext(this.context, this.state); - this.enterRule(localContext, 892, PostgreSQLParser.RULE_analyzestmt); + this.enterRule(localContext, 888, PostgreSQLParser.RULE_analyzestmt); let _la: number; try { - this.state = 8360; + this.state = 8273; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 766, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8346; + this.state = 8259; this.analyze_keyword(); - this.state = 8348; + this.state = 8261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8347; + this.state = 8260; this.opt_verbose(); } } - this.state = 8351; + this.state = 8264; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 764, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { case 1: { - this.state = 8350; + this.state = 8263; this.opt_vacuum_relation_list(); } break; @@ -37271,20 +37432,20 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8353; + this.state = 8266; this.analyze_keyword(); - this.state = 8354; + this.state = 8267; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8355; + this.state = 8268; this.analyze_options_list(); - this.state = 8356; + this.state = 8269; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8358; + this.state = 8271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 765, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 770, this.context) ) { case 1: { - this.state = 8357; + this.state = 8270; this.opt_vacuum_relation_list(); } break; @@ -37309,26 +37470,26 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_list(): Vac_analyze_option_listContext { let localContext = new Vac_analyze_option_listContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSQLParser.RULE_vac_analyze_option_list); + this.enterRule(localContext, 890, PostgreSQLParser.RULE_vac_analyze_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8362; + this.state = 8275; this.vac_analyze_option_elem(); - this.state = 8367; + this.state = 8280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8363; + this.state = 8276; this.match(PostgreSQLParser.COMMA); - this.state = 8364; + this.state = 8277; this.vac_analyze_option_elem(); } } - this.state = 8369; + this.state = 8282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37350,12 +37511,12 @@ export class PostgreSQLParser extends antlr.Parser { } public analyze_keyword(): Analyze_keywordContext { let localContext = new Analyze_keywordContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSQLParser.RULE_analyze_keyword); + this.enterRule(localContext, 892, PostgreSQLParser.RULE_analyze_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8370; + this.state = 8283; _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 32)) { this.errorHandler.recoverInline(this); @@ -37382,19 +37543,19 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_elem(): Vac_analyze_option_elemContext { let localContext = new Vac_analyze_option_elemContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSQLParser.RULE_vac_analyze_option_elem); + this.enterRule(localContext, 894, PostgreSQLParser.RULE_vac_analyze_option_elem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8372; + this.state = 8285; this.vac_analyze_option_name(); - this.state = 8374; + this.state = 8287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 12 || _la === 13 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420486149) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { + if (_la === 12 || _la === 13 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420484101) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { { - this.state = 8373; + this.state = 8286; this.vac_analyze_option_arg(); } } @@ -37417,15 +37578,14 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_name(): Vac_analyze_option_nameContext { let localContext = new Vac_analyze_option_nameContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSQLParser.RULE_vac_analyze_option_name); + this.enterRule(localContext, 896, PostgreSQLParser.RULE_vac_analyze_option_name); try { - this.state = 8378; + this.state = 8291; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -37846,7 +38006,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8376; + this.state = 8289; this.nonreservedword(); } break; @@ -37854,7 +38014,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ANALYZE: this.enterOuterAlt(localContext, 2); { - this.state = 8377; + this.state = 8290; this.analyze_keyword(); } break; @@ -37878,15 +38038,14 @@ export class PostgreSQLParser extends antlr.Parser { } public vac_analyze_option_arg(): Vac_analyze_option_argContext { let localContext = new Vac_analyze_option_argContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSQLParser.RULE_vac_analyze_option_arg); + this.enterRule(localContext, 898, PostgreSQLParser.RULE_vac_analyze_option_arg); try { - this.state = 8382; + this.state = 8295; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -38310,7 +38469,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8380; + this.state = 8293; this.opt_boolean_or_string(); } break; @@ -38320,7 +38479,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 8381; + this.state = 8294; this.numericonly(); } break; @@ -38344,11 +38503,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_analyze(): Opt_analyzeContext { let localContext = new Opt_analyzeContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSQLParser.RULE_opt_analyze); + this.enterRule(localContext, 900, PostgreSQLParser.RULE_opt_analyze); try { this.enterOuterAlt(localContext, 1); { - this.state = 8384; + this.state = 8297; this.analyze_keyword(); } } @@ -38368,26 +38527,26 @@ export class PostgreSQLParser extends antlr.Parser { } public analyze_options_list(): Analyze_options_listContext { let localContext = new Analyze_options_listContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSQLParser.RULE_analyze_options_list); + this.enterRule(localContext, 902, PostgreSQLParser.RULE_analyze_options_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8386; + this.state = 8299; this.analyze_option_elem(); - this.state = 8391; + this.state = 8304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8387; + this.state = 8300; this.match(PostgreSQLParser.COMMA); - this.state = 8388; + this.state = 8301; this.analyze_option_elem(); } } - this.state = 8393; + this.state = 8306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38409,29 +38568,29 @@ export class PostgreSQLParser extends antlr.Parser { } public analyze_option_elem(): Analyze_option_elemContext { let localContext = new Analyze_option_elemContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSQLParser.RULE_analyze_option_elem); + this.enterRule(localContext, 904, PostgreSQLParser.RULE_analyze_option_elem); try { - this.state = 8397; + this.state = 8310; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VERBOSE: this.enterOuterAlt(localContext, 1); { - this.state = 8394; + this.state = 8307; this.opt_verbose(); } break; case PostgreSQLParser.KW_SKIP_LOCKED: this.enterOuterAlt(localContext, 2); { - this.state = 8395; + this.state = 8308; this.opt_skiplock(); } break; case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 3); { - this.state = 8396; + this.state = 8309; this.opt_buffer_usage_limit(); } break; @@ -38455,19 +38614,19 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_verbose(): Opt_verboseContext { let localContext = new Opt_verboseContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSQLParser.RULE_opt_verbose); + this.enterRule(localContext, 906, PostgreSQLParser.RULE_opt_verbose); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8399; + this.state = 8312; this.match(PostgreSQLParser.KW_VERBOSE); - this.state = 8401; + this.state = 8314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 8400; + this.state = 8313; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -38497,19 +38656,19 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_skiplock(): Opt_skiplockContext { let localContext = new Opt_skiplockContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSQLParser.RULE_opt_skiplock); + this.enterRule(localContext, 908, PostgreSQLParser.RULE_opt_skiplock); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8403; + this.state = 8316; this.match(PostgreSQLParser.KW_SKIP_LOCKED); - this.state = 8405; + this.state = 8318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 8404; + this.state = 8317; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -38539,13 +38698,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_buffer_usage_limit(): Opt_buffer_usage_limitContext { let localContext = new Opt_buffer_usage_limitContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSQLParser.RULE_opt_buffer_usage_limit); + this.enterRule(localContext, 910, PostgreSQLParser.RULE_opt_buffer_usage_limit); try { this.enterOuterAlt(localContext, 1); { - this.state = 8407; + this.state = 8320; this.match(PostgreSQLParser.KW_BUFFER_USAGE_LIMIT); - this.state = 8410; + this.state = 8323; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.PLUS: @@ -38553,7 +38712,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Integral: case PostgreSQLParser.Numeric: { - this.state = 8408; + this.state = 8321; this.numericonly(); } break; @@ -38562,7 +38721,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 8409; + this.state = 8322; this.sconst(); } break; @@ -38587,11 +38746,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_full(): Opt_fullContext { let localContext = new Opt_fullContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSQLParser.RULE_opt_full); + this.enterRule(localContext, 912, PostgreSQLParser.RULE_opt_full); try { this.enterOuterAlt(localContext, 1); { - this.state = 8412; + this.state = 8325; this.match(PostgreSQLParser.KW_FULL); } } @@ -38611,11 +38770,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_freeze(): Opt_freezeContext { let localContext = new Opt_freezeContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSQLParser.RULE_opt_freeze); + this.enterRule(localContext, 914, PostgreSQLParser.RULE_opt_freeze); try { this.enterOuterAlt(localContext, 1); { - this.state = 8414; + this.state = 8327; this.match(PostgreSQLParser.KW_FREEZE); } } @@ -38635,15 +38794,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_name_list(): Opt_name_listContext { let localContext = new Opt_name_listContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSQLParser.RULE_opt_name_list); + this.enterRule(localContext, 916, PostgreSQLParser.RULE_opt_name_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 8416; + this.state = 8329; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8417; + this.state = 8330; this.columnlist(); - this.state = 8418; + this.state = 8331; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -38663,18 +38822,18 @@ export class PostgreSQLParser extends antlr.Parser { } public vacuum_relation(): Vacuum_relationContext { let localContext = new Vacuum_relationContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSQLParser.RULE_vacuum_relation); + this.enterRule(localContext, 918, PostgreSQLParser.RULE_vacuum_relation); try { this.enterOuterAlt(localContext, 1); { - this.state = 8420; + this.state = 8333; this.table_name(); - this.state = 8422; + this.state = 8335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { case 1: { - this.state = 8421; + this.state = 8334; this.opt_name_list(); } break; @@ -38697,26 +38856,26 @@ export class PostgreSQLParser extends antlr.Parser { } public vacuum_relation_list(): Vacuum_relation_listContext { let localContext = new Vacuum_relation_listContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSQLParser.RULE_vacuum_relation_list); + this.enterRule(localContext, 920, PostgreSQLParser.RULE_vacuum_relation_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8424; + this.state = 8337; this.vacuum_relation(); - this.state = 8429; + this.state = 8342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8425; + this.state = 8338; this.match(PostgreSQLParser.COMMA); - this.state = 8426; + this.state = 8339; this.vacuum_relation(); } } - this.state = 8431; + this.state = 8344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38738,11 +38897,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_vacuum_relation_list(): Opt_vacuum_relation_listContext { let localContext = new Opt_vacuum_relation_listContext(this.context, this.state); - this.enterRule(localContext, 926, PostgreSQLParser.RULE_opt_vacuum_relation_list); + this.enterRule(localContext, 922, PostgreSQLParser.RULE_opt_vacuum_relation_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 8432; + this.state = 8345; this.vacuum_relation_list(); } } @@ -38762,65 +38921,65 @@ export class PostgreSQLParser extends antlr.Parser { } public explainstmt(): ExplainstmtContext { let localContext = new ExplainstmtContext(this.context, this.state); - this.enterRule(localContext, 928, PostgreSQLParser.RULE_explainstmt); + this.enterRule(localContext, 924, PostgreSQLParser.RULE_explainstmt); let _la: number; try { - this.state = 8452; + this.state = 8365; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8434; + this.state = 8347; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8435; + this.state = 8348; this.explainablestmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8436; + this.state = 8349; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8437; + this.state = 8350; this.analyze_keyword(); - this.state = 8439; + this.state = 8352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 8438; + this.state = 8351; this.opt_verbose(); } } - this.state = 8441; + this.state = 8354; this.explainablestmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8443; + this.state = 8356; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8444; + this.state = 8357; this.match(PostgreSQLParser.KW_VERBOSE); - this.state = 8445; + this.state = 8358; this.explainablestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8446; + this.state = 8359; this.match(PostgreSQLParser.KW_EXPLAIN); - this.state = 8447; + this.state = 8360; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8448; + this.state = 8361; this.explain_option_list(); - this.state = 8449; + this.state = 8362; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8450; + this.state = 8363; this.explainablestmt(); } break; @@ -38842,71 +39001,71 @@ export class PostgreSQLParser extends antlr.Parser { } public explainablestmt(): ExplainablestmtContext { let localContext = new ExplainablestmtContext(this.context, this.state); - this.enterRule(localContext, 930, PostgreSQLParser.RULE_explainablestmt); + this.enterRule(localContext, 926, PostgreSQLParser.RULE_explainablestmt); try { - this.state = 8463; + this.state = 8376; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 780, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8454; + this.state = 8367; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8455; + this.state = 8368; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8456; + this.state = 8369; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8457; + this.state = 8370; this.deletestmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8458; + this.state = 8371; this.declarecursorstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8459; + this.state = 8372; this.createasstmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8460; + this.state = 8373; this.creatematviewstmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 8461; + this.state = 8374; this.refreshmatviewstmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 8462; + this.state = 8375; this.executestmt(); } break; @@ -38928,26 +39087,26 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_list(): Explain_option_listContext { let localContext = new Explain_option_listContext(this.context, this.state); - this.enterRule(localContext, 932, PostgreSQLParser.RULE_explain_option_list); + this.enterRule(localContext, 928, PostgreSQLParser.RULE_explain_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8465; + this.state = 8378; this.explain_option_elem(); - this.state = 8470; + this.state = 8383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8466; + this.state = 8379; this.match(PostgreSQLParser.COMMA); - this.state = 8467; + this.state = 8380; this.explain_option_elem(); } } - this.state = 8472; + this.state = 8385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38969,19 +39128,19 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_elem(): Explain_option_elemContext { let localContext = new Explain_option_elemContext(this.context, this.state); - this.enterRule(localContext, 934, PostgreSQLParser.RULE_explain_option_elem); + this.enterRule(localContext, 930, PostgreSQLParser.RULE_explain_option_elem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8473; + this.state = 8386; this.explain_option_name(); - this.state = 8475; + this.state = 8388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 12 || _la === 13 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420486149) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { + if (_la === 12 || _la === 13 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 420484101) !== 0) || ((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 4227928065) !== 0) || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 4294967295) !== 0) || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 4294967295) !== 0) || ((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 4294967295) !== 0) || ((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 3223322623) !== 0) || ((((_la - 240)) & ~0x1F) === 0 && ((1 << (_la - 240)) & 4294967295) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 4294967295) !== 0) || ((((_la - 304)) & ~0x1F) === 0 && ((1 << (_la - 304)) & 4294967295) !== 0) || ((((_la - 336)) & ~0x1F) === 0 && ((1 << (_la - 336)) & 4294967295) !== 0) || ((((_la - 368)) & ~0x1F) === 0 && ((1 << (_la - 368)) & 4294967295) !== 0) || ((((_la - 400)) & ~0x1F) === 0 && ((1 << (_la - 400)) & 4294967295) !== 0) || ((((_la - 432)) & ~0x1F) === 0 && ((1 << (_la - 432)) & 4290772991) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 4294967295) !== 0) || ((((_la - 496)) & ~0x1F) === 0 && ((1 << (_la - 496)) & 25165183) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 486582415) !== 0) || _la === 584) { { - this.state = 8474; + this.state = 8387; this.explain_option_arg(); } } @@ -39004,15 +39163,14 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_name(): Explain_option_nameContext { let localContext = new Explain_option_nameContext(this.context, this.state); - this.enterRule(localContext, 936, PostgreSQLParser.RULE_explain_option_name); + this.enterRule(localContext, 932, PostgreSQLParser.RULE_explain_option_name); try { - this.state = 8479; + this.state = 8392; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -39433,7 +39591,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8477; + this.state = 8390; this.nonreservedword(); } break; @@ -39441,7 +39599,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ANALYZE: this.enterOuterAlt(localContext, 2); { - this.state = 8478; + this.state = 8391; this.analyze_keyword(); } break; @@ -39465,15 +39623,14 @@ export class PostgreSQLParser extends antlr.Parser { } public explain_option_arg(): Explain_option_argContext { let localContext = new Explain_option_argContext(this.context, this.state); - this.enterRule(localContext, 938, PostgreSQLParser.RULE_explain_option_arg); + this.enterRule(localContext, 934, PostgreSQLParser.RULE_explain_option_arg); try { - this.state = 8483; + this.state = 8396; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -39897,7 +40054,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8481; + this.state = 8394; this.opt_boolean_or_string(); } break; @@ -39907,7 +40064,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 8482; + this.state = 8395; this.numericonly(); } break; @@ -39931,28 +40088,28 @@ export class PostgreSQLParser extends antlr.Parser { } public preparestmt(): PreparestmtContext { let localContext = new PreparestmtContext(this.context, this.state); - this.enterRule(localContext, 940, PostgreSQLParser.RULE_preparestmt); + this.enterRule(localContext, 936, PostgreSQLParser.RULE_preparestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8485; + this.state = 8398; this.match(PostgreSQLParser.KW_PREPARE); - this.state = 8486; + this.state = 8399; this.name(); - this.state = 8488; + this.state = 8401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8487; + this.state = 8400; this.prep_type_clause(); } } - this.state = 8490; + this.state = 8403; this.match(PostgreSQLParser.KW_AS); - this.state = 8491; + this.state = 8404; this.preparablestmt(); } } @@ -39972,15 +40129,15 @@ export class PostgreSQLParser extends antlr.Parser { } public prep_type_clause(): Prep_type_clauseContext { let localContext = new Prep_type_clauseContext(this.context, this.state); - this.enterRule(localContext, 942, PostgreSQLParser.RULE_prep_type_clause); + this.enterRule(localContext, 938, PostgreSQLParser.RULE_prep_type_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8493; + this.state = 8406; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8494; + this.state = 8407; this.type_list(); - this.state = 8495; + this.state = 8408; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -40000,36 +40157,36 @@ export class PostgreSQLParser extends antlr.Parser { } public preparablestmt(): PreparablestmtContext { let localContext = new PreparablestmtContext(this.context, this.state); - this.enterRule(localContext, 944, PostgreSQLParser.RULE_preparablestmt); + this.enterRule(localContext, 940, PostgreSQLParser.RULE_preparablestmt); try { - this.state = 8501; + this.state = 8414; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 786, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8497; + this.state = 8410; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8498; + this.state = 8411; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8499; + this.state = 8412; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8500; + this.state = 8413; this.deletestmt(); } break; @@ -40051,25 +40208,25 @@ export class PostgreSQLParser extends antlr.Parser { } public executestmt(): ExecutestmtContext { let localContext = new ExecutestmtContext(this.context, this.state); - this.enterRule(localContext, 946, PostgreSQLParser.RULE_executestmt); + this.enterRule(localContext, 942, PostgreSQLParser.RULE_executestmt); let _la: number; try { - this.state = 8526; + this.state = 8439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_EXECUTE: this.enterOuterAlt(localContext, 1); { - this.state = 8503; + this.state = 8416; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 8504; + this.state = 8417; this.name(); - this.state = 8506; + this.state = 8419; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 8505; + this.state = 8418; this.execute_param_clause(); } break; @@ -40079,54 +40236,54 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CREATE: this.enterOuterAlt(localContext, 2); { - this.state = 8508; + this.state = 8421; this.match(PostgreSQLParser.KW_CREATE); - this.state = 8510; + this.state = 8423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 8509; + this.state = 8422; this.opttemp(); } } - this.state = 8512; + this.state = 8425; this.match(PostgreSQLParser.KW_TABLE); - this.state = 8514; + this.state = 8427; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 789, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { case 1: { - this.state = 8513; + this.state = 8426; this.opt_if_not_exists(); } break; } - this.state = 8516; + this.state = 8429; this.create_as_target(); - this.state = 8517; + this.state = 8430; this.match(PostgreSQLParser.KW_AS); - this.state = 8518; + this.state = 8431; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 8519; + this.state = 8432; this.name(); - this.state = 8521; + this.state = 8434; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 795, this.context) ) { case 1: { - this.state = 8520; + this.state = 8433; this.execute_param_clause(); } break; } - this.state = 8524; + this.state = 8437; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { case 1: { - this.state = 8523; + this.state = 8436; this.opt_with_data(); } break; @@ -40153,15 +40310,15 @@ export class PostgreSQLParser extends antlr.Parser { } public execute_param_clause(): Execute_param_clauseContext { let localContext = new Execute_param_clauseContext(this.context, this.state); - this.enterRule(localContext, 948, PostgreSQLParser.RULE_execute_param_clause); + this.enterRule(localContext, 944, PostgreSQLParser.RULE_execute_param_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8528; + this.state = 8441; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8529; + this.state = 8442; this.expr_list(); - this.state = 8530; + this.state = 8443; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -40181,51 +40338,439 @@ export class PostgreSQLParser extends antlr.Parser { } public deallocatestmt(): DeallocatestmtContext { let localContext = new DeallocatestmtContext(this.context, this.state); - this.enterRule(localContext, 950, PostgreSQLParser.RULE_deallocatestmt); + this.enterRule(localContext, 946, PostgreSQLParser.RULE_deallocatestmt); try { - this.state = 8542; + this.enterOuterAlt(localContext, 1); + { + this.state = 8445; + this.match(PostgreSQLParser.KW_DEALLOCATE); + this.state = 8447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 793, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { case 1: - this.enterOuterAlt(localContext, 1); { - this.state = 8532; - this.match(PostgreSQLParser.KW_DEALLOCATE); - this.state = 8533; + this.state = 8446; + this.match(PostgreSQLParser.KW_PREPARE); + } + break; + } + this.state = 8451; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.KW_AND: + case PostgreSQLParser.KW_ARRAY: + case PostgreSQLParser.KW_COLLATE: + case PostgreSQLParser.KW_CONSTRAINT: + case PostgreSQLParser.KW_DEFAULT: + case PostgreSQLParser.KW_DO: + case PostgreSQLParser.KW_FETCH: + case PostgreSQLParser.KW_TABLE: + case PostgreSQLParser.KW_IS: + case PostgreSQLParser.KW_OUTER: + case PostgreSQLParser.KW_OVER: + case PostgreSQLParser.KW_ABORT: + case PostgreSQLParser.KW_ABSOLUTE: + case PostgreSQLParser.KW_ACCESS: + case PostgreSQLParser.KW_ACTION: + case PostgreSQLParser.KW_ADD: + case PostgreSQLParser.KW_ADMIN: + case PostgreSQLParser.KW_AFTER: + case PostgreSQLParser.KW_AGGREGATE: + case PostgreSQLParser.KW_ALSO: + case PostgreSQLParser.KW_ALTER: + case PostgreSQLParser.KW_ALWAYS: + case PostgreSQLParser.KW_ASSERTION: + case PostgreSQLParser.KW_ASSIGNMENT: + case PostgreSQLParser.KW_AT: + case PostgreSQLParser.KW_ATTRIBUTE: + case PostgreSQLParser.KW_BACKWARD: + case PostgreSQLParser.KW_BEFORE: + case PostgreSQLParser.KW_BEGIN: + case PostgreSQLParser.KW_BY: + case PostgreSQLParser.KW_CACHE: + case PostgreSQLParser.KW_CALLED: + case PostgreSQLParser.KW_CASCADE: + case PostgreSQLParser.KW_CASCADED: + case PostgreSQLParser.KW_CATALOG: + case PostgreSQLParser.KW_CHAIN: + case PostgreSQLParser.KW_CHARACTERISTICS: + case PostgreSQLParser.KW_CHECKPOINT: + case PostgreSQLParser.KW_CLASS: + case PostgreSQLParser.KW_CLOSE: + case PostgreSQLParser.KW_CLUSTER: + case PostgreSQLParser.KW_COMMENT: + case PostgreSQLParser.KW_COMMENTS: + case PostgreSQLParser.KW_COMMIT: + case PostgreSQLParser.KW_COMMITTED: + case PostgreSQLParser.KW_CONFIGURATION: + case PostgreSQLParser.KW_CONNECTION: + case PostgreSQLParser.KW_CONSTRAINTS: + case PostgreSQLParser.KW_CONTENT: + case PostgreSQLParser.KW_CONTINUE: + case PostgreSQLParser.KW_CONVERSION: + case PostgreSQLParser.KW_COPY: + case PostgreSQLParser.KW_COST: + case PostgreSQLParser.KW_CSV: + case PostgreSQLParser.KW_CURSOR: + case PostgreSQLParser.KW_CYCLE: + case PostgreSQLParser.KW_DATA: + case PostgreSQLParser.KW_DATABASE: + case PostgreSQLParser.KW_DAY: + case PostgreSQLParser.KW_DEALLOCATE: + case PostgreSQLParser.KW_DECLARE: + case PostgreSQLParser.KW_DEFAULTS: + case PostgreSQLParser.KW_DEFERRED: + case PostgreSQLParser.KW_DEFINER: + case PostgreSQLParser.KW_DELETE: + case PostgreSQLParser.KW_DELIMITER: + case PostgreSQLParser.KW_DELIMITERS: + case PostgreSQLParser.KW_DICTIONARY: + case PostgreSQLParser.KW_DISABLE: + case PostgreSQLParser.KW_DISCARD: + case PostgreSQLParser.KW_DOCUMENT: + case PostgreSQLParser.KW_DOMAIN: + case PostgreSQLParser.KW_DOUBLE: + case PostgreSQLParser.KW_DROP: + case PostgreSQLParser.KW_EACH: + case PostgreSQLParser.KW_ENABLE: + case PostgreSQLParser.KW_ENCODING: + case PostgreSQLParser.KW_ENCRYPTED: + case PostgreSQLParser.KW_ENUM: + case PostgreSQLParser.KW_ESCAPE: + case PostgreSQLParser.KW_EVENT: + case PostgreSQLParser.KW_EXCLUDE: + case PostgreSQLParser.KW_EXCLUDING: + case PostgreSQLParser.KW_EXCLUSIVE: + case PostgreSQLParser.KW_EXECUTE: + case PostgreSQLParser.KW_EXPLAIN: + case PostgreSQLParser.KW_EXTENSION: + case PostgreSQLParser.KW_EXTERNAL: + case PostgreSQLParser.KW_FAMILY: + case PostgreSQLParser.KW_FIRST: + case PostgreSQLParser.KW_FOLLOWING: + case PostgreSQLParser.KW_FORCE: + case PostgreSQLParser.KW_FORWARD: + case PostgreSQLParser.KW_FUNCTION: + case PostgreSQLParser.KW_FUNCTIONS: + case PostgreSQLParser.KW_GLOBAL: + case PostgreSQLParser.KW_GRANTED: + case PostgreSQLParser.KW_HANDLER: + case PostgreSQLParser.KW_HEADER: + case PostgreSQLParser.KW_HOLD: + case PostgreSQLParser.KW_HOUR: + case PostgreSQLParser.KW_IDENTITY: + case PostgreSQLParser.KW_IF: + case PostgreSQLParser.KW_IMMEDIATE: + case PostgreSQLParser.KW_IMMUTABLE: + case PostgreSQLParser.KW_IMPLICIT: + case PostgreSQLParser.KW_INCLUDING: + case PostgreSQLParser.KW_INCREMENT: + case PostgreSQLParser.KW_INDEX: + case PostgreSQLParser.KW_INDEXES: + case PostgreSQLParser.KW_INHERIT: + case PostgreSQLParser.KW_INHERITS: + case PostgreSQLParser.KW_INLINE: + case PostgreSQLParser.KW_INSENSITIVE: + case PostgreSQLParser.KW_INSERT: + case PostgreSQLParser.KW_INSTEAD: + case PostgreSQLParser.KW_INVOKER: + case PostgreSQLParser.KW_ISOLATION: + case PostgreSQLParser.KW_KEY: + case PostgreSQLParser.KW_LABEL: + case PostgreSQLParser.KW_LANGUAGE: + case PostgreSQLParser.KW_LARGE: + case PostgreSQLParser.KW_LAST: + case PostgreSQLParser.KW_LEAKPROOF: + case PostgreSQLParser.KW_LEVEL: + case PostgreSQLParser.KW_LISTEN: + case PostgreSQLParser.KW_LOAD: + case PostgreSQLParser.KW_LOCAL: + case PostgreSQLParser.KW_LOCATION: + case PostgreSQLParser.KW_LOCK: + case PostgreSQLParser.KW_MAPPING: + case PostgreSQLParser.KW_MATCH: + case PostgreSQLParser.KW_MATERIALIZED: + case PostgreSQLParser.KW_MAXVALUE: + case PostgreSQLParser.KW_MINUTE: + case PostgreSQLParser.KW_MINVALUE: + case PostgreSQLParser.KW_MODE: + case PostgreSQLParser.KW_MONTH: + case PostgreSQLParser.KW_MOVE: + case PostgreSQLParser.KW_NAME: + case PostgreSQLParser.KW_NAMES: + case PostgreSQLParser.KW_NEXT: + case PostgreSQLParser.KW_NO: + case PostgreSQLParser.KW_NOTHING: + case PostgreSQLParser.KW_NOTIFY: + case PostgreSQLParser.KW_NOWAIT: + case PostgreSQLParser.KW_NULLS: + case PostgreSQLParser.KW_OBJECT: + case PostgreSQLParser.KW_OF: + case PostgreSQLParser.KW_OFF: + case PostgreSQLParser.KW_OIDS: + case PostgreSQLParser.KW_OPERATOR: + case PostgreSQLParser.KW_OPTION: + case PostgreSQLParser.KW_OPTIONS: + case PostgreSQLParser.KW_OWNED: + case PostgreSQLParser.KW_OWNER: + case PostgreSQLParser.KW_PARSER: + case PostgreSQLParser.KW_PARTIAL: + case PostgreSQLParser.KW_PARTITION: + case PostgreSQLParser.KW_PASSING: + case PostgreSQLParser.KW_PASSWORD: + case PostgreSQLParser.KW_PLANS: + case PostgreSQLParser.KW_PRECEDING: + case PostgreSQLParser.KW_PREPARE: + case PostgreSQLParser.KW_PREPARED: + case PostgreSQLParser.KW_PRESERVE: + case PostgreSQLParser.KW_PRIOR: + case PostgreSQLParser.KW_PRIVILEGES: + case PostgreSQLParser.KW_PROCEDURAL: + case PostgreSQLParser.KW_PROCEDURE: + case PostgreSQLParser.KW_PROGRAM: + case PostgreSQLParser.KW_QUOTE: + case PostgreSQLParser.KW_RANGE: + case PostgreSQLParser.KW_READ: + case PostgreSQLParser.KW_REASSIGN: + case PostgreSQLParser.KW_RECHECK: + case PostgreSQLParser.KW_RECURSIVE: + case PostgreSQLParser.KW_REF: + case PostgreSQLParser.KW_REFRESH: + case PostgreSQLParser.KW_REINDEX: + case PostgreSQLParser.KW_RELATIVE: + case PostgreSQLParser.KW_RELEASE: + case PostgreSQLParser.KW_RENAME: + case PostgreSQLParser.KW_REPEATABLE: + case PostgreSQLParser.KW_REPLACE: + case PostgreSQLParser.KW_REPLICA: + case PostgreSQLParser.KW_RESET: + case PostgreSQLParser.KW_RESTART: + case PostgreSQLParser.KW_RESTRICT: + case PostgreSQLParser.KW_RETURNS: + case PostgreSQLParser.KW_REVOKE: + case PostgreSQLParser.KW_ROLE: + case PostgreSQLParser.KW_ROLLBACK: + case PostgreSQLParser.KW_ROWS: + case PostgreSQLParser.KW_RULE: + case PostgreSQLParser.KW_SAVEPOINT: + case PostgreSQLParser.KW_SCHEMA: + case PostgreSQLParser.KW_SCROLL: + case PostgreSQLParser.KW_SEARCH: + case PostgreSQLParser.KW_SECOND: + case PostgreSQLParser.KW_SECURITY: + case PostgreSQLParser.KW_SEQUENCE: + case PostgreSQLParser.KW_SEQUENCES: + case PostgreSQLParser.KW_SERIALIZABLE: + case PostgreSQLParser.KW_SERVER: + case PostgreSQLParser.KW_SESSION: + case PostgreSQLParser.KW_SET: + case PostgreSQLParser.KW_SHARE: + case PostgreSQLParser.KW_SHOW: + case PostgreSQLParser.KW_SIMPLE: + case PostgreSQLParser.KW_SNAPSHOT: + case PostgreSQLParser.KW_STABLE: + case PostgreSQLParser.KW_STANDALONE: + case PostgreSQLParser.KW_START: + case PostgreSQLParser.KW_STATEMENT: + case PostgreSQLParser.KW_STATISTICS: + case PostgreSQLParser.KW_STDIN: + case PostgreSQLParser.KW_STDOUT: + case PostgreSQLParser.KW_STORAGE: + case PostgreSQLParser.KW_STRICT: + case PostgreSQLParser.KW_STRIP: + case PostgreSQLParser.KW_SYSID: + case PostgreSQLParser.KW_SYSTEM: + case PostgreSQLParser.KW_TABLES: + case PostgreSQLParser.KW_TABLESPACE: + case PostgreSQLParser.KW_TEMP: + case PostgreSQLParser.KW_TEMPLATE: + case PostgreSQLParser.KW_TEMPORARY: + case PostgreSQLParser.KW_TEXT: + case PostgreSQLParser.KW_TRANSACTION: + case PostgreSQLParser.KW_TRIGGER: + case PostgreSQLParser.KW_TRUNCATE: + case PostgreSQLParser.KW_TRUSTED: + case PostgreSQLParser.KW_TYPE: + case PostgreSQLParser.KW_TYPES: + case PostgreSQLParser.KW_UNBOUNDED: + case PostgreSQLParser.KW_UNCOMMITTED: + case PostgreSQLParser.KW_UNENCRYPTED: + case PostgreSQLParser.KW_UNKNOWN: + case PostgreSQLParser.KW_UNLISTEN: + case PostgreSQLParser.KW_UNLOGGED: + case PostgreSQLParser.KW_UNTIL: + case PostgreSQLParser.KW_UPDATE: + case PostgreSQLParser.KW_VACUUM: + case PostgreSQLParser.KW_VALID: + case PostgreSQLParser.KW_VALIDATE: + case PostgreSQLParser.KW_VALIDATOR: + case PostgreSQLParser.KW_VARYING: + case PostgreSQLParser.KW_VERSION: + case PostgreSQLParser.KW_VIEW: + case PostgreSQLParser.KW_VOLATILE: + case PostgreSQLParser.KW_WHITESPACE: + case PostgreSQLParser.KW_WITHOUT: + case PostgreSQLParser.KW_WORK: + case PostgreSQLParser.KW_WRAPPER: + case PostgreSQLParser.KW_WRITE: + case PostgreSQLParser.KW_XML: + case PostgreSQLParser.KW_YEAR: + case PostgreSQLParser.KW_YES: + case PostgreSQLParser.KW_ZONE: + case PostgreSQLParser.KW_BETWEEN: + case PostgreSQLParser.KW_BIGINT: + case PostgreSQLParser.KW_BIT: + case PostgreSQLParser.KW_BOOLEAN: + case PostgreSQLParser.KW_CHAR: + case PostgreSQLParser.KW_CHARACTER: + case PostgreSQLParser.KW_COALESCE: + case PostgreSQLParser.KW_DEC: + case PostgreSQLParser.KW_DECIMAL: + case PostgreSQLParser.KW_EXISTS: + case PostgreSQLParser.KW_EXTRACT: + case PostgreSQLParser.KW_FLOAT: + case PostgreSQLParser.KW_GREATEST: + case PostgreSQLParser.KW_INOUT: + case PostgreSQLParser.KW_INT: + case PostgreSQLParser.KW_INTEGER: + case PostgreSQLParser.KW_INTERVAL: + case PostgreSQLParser.KW_LEAST: + case PostgreSQLParser.KW_NATIONAL: + case PostgreSQLParser.KW_NCHAR: + case PostgreSQLParser.KW_NONE: + case PostgreSQLParser.KW_NULLIF: + case PostgreSQLParser.KW_NUMERIC: + case PostgreSQLParser.KW_OVERLAY: + case PostgreSQLParser.KW_POSITION: + case PostgreSQLParser.KW_PRECISION: + case PostgreSQLParser.KW_REAL: + case PostgreSQLParser.KW_ROW: + case PostgreSQLParser.KW_SETOF: + case PostgreSQLParser.KW_SMALLINT: + case PostgreSQLParser.KW_SUBSTRING: + case PostgreSQLParser.KW_TIME: + case PostgreSQLParser.KW_TIMESTAMP: + case PostgreSQLParser.KW_TREAT: + case PostgreSQLParser.KW_TRIM: + case PostgreSQLParser.KW_VALUES: + case PostgreSQLParser.KW_VARCHAR: + case PostgreSQLParser.KW_XMLATTRIBUTES: + case PostgreSQLParser.KW_XMLCONCAT: + case PostgreSQLParser.KW_XMLELEMENT: + case PostgreSQLParser.KW_XMLEXISTS: + case PostgreSQLParser.KW_XMLFOREST: + case PostgreSQLParser.KW_XMLPARSE: + case PostgreSQLParser.KW_XMLPI: + case PostgreSQLParser.KW_XMLROOT: + case PostgreSQLParser.KW_XMLSERIALIZE: + case PostgreSQLParser.KW_CALL: + case PostgreSQLParser.KW_CURRENT: + case PostgreSQLParser.KW_ATTACH: + case PostgreSQLParser.KW_DETACH: + case PostgreSQLParser.KW_EXPRESSION: + case PostgreSQLParser.KW_GENERATED: + case PostgreSQLParser.KW_LOGGED: + case PostgreSQLParser.KW_STORED: + case PostgreSQLParser.KW_INCLUDE: + case PostgreSQLParser.KW_ROUTINE: + case PostgreSQLParser.KW_TRANSFORM: + case PostgreSQLParser.KW_IMPORT: + case PostgreSQLParser.KW_POLICY: + case PostgreSQLParser.KW_METHOD: + case PostgreSQLParser.KW_REFERENCING: + case PostgreSQLParser.KW_NEW: + case PostgreSQLParser.KW_OLD: + case PostgreSQLParser.KW_VALUE: + case PostgreSQLParser.KW_SUBSCRIPTION: + case PostgreSQLParser.KW_PUBLICATION: + case PostgreSQLParser.KW_OUT: + case PostgreSQLParser.KW_ROUTINES: + case PostgreSQLParser.KW_SCHEMAS: + case PostgreSQLParser.KW_PROCEDURES: + case PostgreSQLParser.KW_INPUT: + case PostgreSQLParser.KW_SUPPORT: + case PostgreSQLParser.KW_PARALLEL: + case PostgreSQLParser.KW_SQL: + case PostgreSQLParser.KW_DEPENDS: + case PostgreSQLParser.KW_OVERRIDING: + case PostgreSQLParser.KW_CONFLICT: + case PostgreSQLParser.KW_SKIP: + case PostgreSQLParser.KW_LOCKED: + case PostgreSQLParser.KW_TIES: + case PostgreSQLParser.KW_ROLLUP: + case PostgreSQLParser.KW_CUBE: + case PostgreSQLParser.KW_GROUPING: + case PostgreSQLParser.KW_SETS: + case PostgreSQLParser.KW_ORDINALITY: + case PostgreSQLParser.KW_XMLTABLE: + case PostgreSQLParser.KW_COLUMNS: + case PostgreSQLParser.KW_XMLNAMESPACES: + case PostgreSQLParser.KW_ROWTYPE: + case PostgreSQLParser.KW_NORMALIZED: + case PostgreSQLParser.KW_WITHIN: + case PostgreSQLParser.KW_FILTER: + case PostgreSQLParser.KW_GROUPS: + case PostgreSQLParser.KW_OTHERS: + case PostgreSQLParser.KW_NFC: + case PostgreSQLParser.KW_NFD: + case PostgreSQLParser.KW_NFKC: + case PostgreSQLParser.KW_NFKD: + case PostgreSQLParser.KW_UESCAPE: + case PostgreSQLParser.KW_VIEWS: + case PostgreSQLParser.KW_NORMALIZE: + case PostgreSQLParser.KW_DUMP: + case PostgreSQLParser.KW_PRINT_STRICT_PARAMS: + case PostgreSQLParser.KW_VARIABLE_CONFLICT: + case PostgreSQLParser.KW_ERROR: + case PostgreSQLParser.KW_USE_VARIABLE: + case PostgreSQLParser.KW_USE_COLUMN: + case PostgreSQLParser.KW_ALIAS: + case PostgreSQLParser.KW_CONSTANT: + case PostgreSQLParser.KW_PERFORM: + case PostgreSQLParser.KW_GET: + case PostgreSQLParser.KW_DIAGNOSTICS: + case PostgreSQLParser.KW_STACKED: + case PostgreSQLParser.KW_ELSIF: + case PostgreSQLParser.KW_REVERSE: + case PostgreSQLParser.KW_SLICE: + case PostgreSQLParser.KW_EXIT: + case PostgreSQLParser.KW_RETURN: + case PostgreSQLParser.KW_QUERY: + case PostgreSQLParser.KW_RAISE: + case PostgreSQLParser.KW_SQLSTATE: + case PostgreSQLParser.KW_DEBUG: + case PostgreSQLParser.KW_LOG: + case PostgreSQLParser.KW_INFO: + case PostgreSQLParser.KW_NOTICE: + case PostgreSQLParser.KW_WARNING: + case PostgreSQLParser.KW_EXCEPTION: + case PostgreSQLParser.KW_ASSERT: + case PostgreSQLParser.KW_OPEN: + case PostgreSQLParser.KW_SKIP_LOCKED: + case PostgreSQLParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSQLParser.Identifier: + case PostgreSQLParser.QuotedIdentifier: + case PostgreSQLParser.UnicodeQuotedIdentifier: + case PostgreSQLParser.StringConstant: + case PostgreSQLParser.UnicodeEscapeStringConstant: + case PostgreSQLParser.BeginDollarStringConstant: + case PostgreSQLParser.PLSQLVARIABLENAME: + case PostgreSQLParser.PLSQLIDENTIFIER: + case PostgreSQLParser.EscapeStringConstant: + { + this.state = 8449; this.name(); } break; - case 2: - this.enterOuterAlt(localContext, 2); + case PostgreSQLParser.KW_ALL: { - this.state = 8534; - this.match(PostgreSQLParser.KW_DEALLOCATE); - this.state = 8535; - this.match(PostgreSQLParser.KW_PREPARE); - this.state = 8536; - this.name(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 8537; - this.match(PostgreSQLParser.KW_DEALLOCATE); - this.state = 8538; - this.match(PostgreSQLParser.KW_ALL); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 8539; - this.match(PostgreSQLParser.KW_DEALLOCATE); - this.state = 8540; - this.match(PostgreSQLParser.KW_PREPARE); - this.state = 8541; + this.state = 8450; this.match(PostgreSQLParser.KW_ALL); } break; + default: + throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -40244,45 +40789,45 @@ export class PostgreSQLParser extends antlr.Parser { } public insertstmt(): InsertstmtContext { let localContext = new InsertstmtContext(this.context, this.state); - this.enterRule(localContext, 952, PostgreSQLParser.RULE_insertstmt); + this.enterRule(localContext, 948, PostgreSQLParser.RULE_insertstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8545; + this.state = 8454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8544; + this.state = 8453; this.opt_with_clause(); } } - this.state = 8547; + this.state = 8456; this.match(PostgreSQLParser.KW_INSERT); - this.state = 8548; + this.state = 8457; this.match(PostgreSQLParser.KW_INTO); - this.state = 8549; + this.state = 8458; this.insert_target(); - this.state = 8550; + this.state = 8459; this.insert_rest(); - this.state = 8552; + this.state = 8461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 8551; + this.state = 8460; this.opt_on_conflict(); } } - this.state = 8555; + this.state = 8464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8554; + this.state = 8463; this.returning_clause(); } } @@ -40305,21 +40850,21 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_target(): Insert_targetContext { let localContext = new Insert_targetContext(this.context, this.state); - this.enterRule(localContext, 954, PostgreSQLParser.RULE_insert_target); + this.enterRule(localContext, 950, PostgreSQLParser.RULE_insert_target); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8557; + this.state = 8466; this.table_name(); - this.state = 8560; + this.state = 8469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8558; + this.state = 8467; this.match(PostgreSQLParser.KW_AS); - this.state = 8559; + this.state = 8468; this.colid(); } } @@ -40342,51 +40887,51 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_rest(): Insert_restContext { let localContext = new Insert_restContext(this.context, this.state); - this.enterRule(localContext, 956, PostgreSQLParser.RULE_insert_rest); + this.enterRule(localContext, 952, PostgreSQLParser.RULE_insert_rest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8566; + this.state = 8475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { case 1: { - this.state = 8562; + this.state = 8471; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8563; + this.state = 8472; this.insert_column_list(); - this.state = 8564; + this.state = 8473; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 8572; + this.state = 8481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8568; + this.state = 8477; this.match(PostgreSQLParser.KW_OVERRIDING); - this.state = 8569; + this.state = 8478; this.override_kind(); - this.state = 8570; + this.state = 8479; this.match(PostgreSQLParser.KW_VALUE); } } - this.state = 8576; + this.state = 8485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 800, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 806, this.context) ) { case 1: { - this.state = 8574; + this.state = 8483; this.default_values_or_values(); } break; case 2: { - this.state = 8575; + this.state = 8484; this.selectstmt(); } break; @@ -40409,12 +40954,12 @@ export class PostgreSQLParser extends antlr.Parser { } public override_kind(): Override_kindContext { let localContext = new Override_kindContext(this.context, this.state); - this.enterRule(localContext, 958, PostgreSQLParser.RULE_override_kind); + this.enterRule(localContext, 954, PostgreSQLParser.RULE_override_kind); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8578; + this.state = 8487; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -40441,26 +40986,26 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_column_list(): Insert_column_listContext { let localContext = new Insert_column_listContext(this.context, this.state); - this.enterRule(localContext, 960, PostgreSQLParser.RULE_insert_column_list); + this.enterRule(localContext, 956, PostgreSQLParser.RULE_insert_column_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8580; + this.state = 8489; this.insert_column_item(); - this.state = 8585; + this.state = 8494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8581; + this.state = 8490; this.match(PostgreSQLParser.COMMA); - this.state = 8582; + this.state = 8491; this.insert_column_item(); } } - this.state = 8587; + this.state = 8496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40482,13 +41027,13 @@ export class PostgreSQLParser extends antlr.Parser { } public insert_column_item(): Insert_column_itemContext { let localContext = new Insert_column_itemContext(this.context, this.state); - this.enterRule(localContext, 962, PostgreSQLParser.RULE_insert_column_item); + this.enterRule(localContext, 958, PostgreSQLParser.RULE_insert_column_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 8588; + this.state = 8497; this.column_name(); - this.state = 8589; + this.state = 8498; this.opt_indirection(); } } @@ -40508,44 +41053,44 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_on_conflict(): Opt_on_conflictContext { let localContext = new Opt_on_conflictContext(this.context, this.state); - this.enterRule(localContext, 964, PostgreSQLParser.RULE_opt_on_conflict); + this.enterRule(localContext, 960, PostgreSQLParser.RULE_opt_on_conflict); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8591; + this.state = 8500; this.match(PostgreSQLParser.KW_ON); - this.state = 8592; + this.state = 8501; this.match(PostgreSQLParser.KW_CONFLICT); - this.state = 8594; + this.state = 8503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 80) { { - this.state = 8593; + this.state = 8502; this.opt_conf_expr(); } } - this.state = 8596; + this.state = 8505; this.match(PostgreSQLParser.KW_DO); - this.state = 8604; + this.state = 8513; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UPDATE: { - this.state = 8597; + this.state = 8506; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 8598; + this.state = 8507; this.match(PostgreSQLParser.KW_SET); - this.state = 8599; + this.state = 8508; this.set_clause_list(); - this.state = 8601; + this.state = 8510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8600; + this.state = 8509; this.where_clause(); } } @@ -40554,7 +41099,7 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_NOTHING: { - this.state = 8603; + this.state = 8512; this.match(PostgreSQLParser.KW_NOTHING); } break; @@ -40579,27 +41124,27 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_conf_expr(): Opt_conf_exprContext { let localContext = new Opt_conf_exprContext(this.context, this.state); - this.enterRule(localContext, 966, PostgreSQLParser.RULE_opt_conf_expr); + this.enterRule(localContext, 962, PostgreSQLParser.RULE_opt_conf_expr); let _la: number; try { - this.state = 8615; + this.state = 8524; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 8606; + this.state = 8515; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8607; + this.state = 8516; this.index_params(); - this.state = 8608; + this.state = 8517; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8610; + this.state = 8519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8609; + this.state = 8518; this.where_clause(); } } @@ -40609,11 +41154,11 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 8612; + this.state = 8521; this.match(PostgreSQLParser.KW_ON); - this.state = 8613; + this.state = 8522; this.match(PostgreSQLParser.KW_CONSTRAINT); - this.state = 8614; + this.state = 8523; this.name(); } break; @@ -40637,13 +41182,13 @@ export class PostgreSQLParser extends antlr.Parser { } public returning_clause(): Returning_clauseContext { let localContext = new Returning_clauseContext(this.context, this.state); - this.enterRule(localContext, 968, PostgreSQLParser.RULE_returning_clause); + this.enterRule(localContext, 964, PostgreSQLParser.RULE_returning_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8617; + this.state = 8526; this.match(PostgreSQLParser.KW_RETURNING); - this.state = 8618; + this.state = 8527; this.target_list(); } } @@ -40663,53 +41208,53 @@ export class PostgreSQLParser extends antlr.Parser { } public deletestmt(): DeletestmtContext { let localContext = new DeletestmtContext(this.context, this.state); - this.enterRule(localContext, 970, PostgreSQLParser.RULE_deletestmt); + this.enterRule(localContext, 966, PostgreSQLParser.RULE_deletestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8621; + this.state = 8530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8620; + this.state = 8529; this.opt_with_clause(); } } - this.state = 8623; + this.state = 8532; this.match(PostgreSQLParser.KW_DELETE); - this.state = 8624; + this.state = 8533; this.match(PostgreSQLParser.KW_FROM); - this.state = 8625; + this.state = 8534; this.relation_expr_opt_alias(); - this.state = 8627; + this.state = 8536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8626; + this.state = 8535; this.using_clause(); } } - this.state = 8630; + this.state = 8539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8629; + this.state = 8538; this.where_or_current_clause(); } } - this.state = 8633; + this.state = 8542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8632; + this.state = 8541; this.returning_clause(); } } @@ -40732,13 +41277,13 @@ export class PostgreSQLParser extends antlr.Parser { } public using_clause(): Using_clauseContext { let localContext = new Using_clauseContext(this.context, this.state); - this.enterRule(localContext, 972, PostgreSQLParser.RULE_using_clause); + this.enterRule(localContext, 968, PostgreSQLParser.RULE_using_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8635; + this.state = 8544; this.match(PostgreSQLParser.KW_USING); - this.state = 8636; + this.state = 8545; this.from_list(); } } @@ -40758,41 +41303,41 @@ export class PostgreSQLParser extends antlr.Parser { } public lockstmt(): LockstmtContext { let localContext = new LockstmtContext(this.context, this.state); - this.enterRule(localContext, 974, PostgreSQLParser.RULE_lockstmt); + this.enterRule(localContext, 970, PostgreSQLParser.RULE_lockstmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8638; + this.state = 8547; this.match(PostgreSQLParser.KW_LOCK); - this.state = 8640; + this.state = 8549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 811, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 817, this.context) ) { case 1: { - this.state = 8639; + this.state = 8548; this.opt_table(); } break; } - this.state = 8642; + this.state = 8551; this.relation_expr_list(); - this.state = 8644; + this.state = 8553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 8643; + this.state = 8552; this.opt_lock(); } } - this.state = 8647; + this.state = 8556; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { case 1: { - this.state = 8646; + this.state = 8555; this.opt_nowait(); } break; @@ -40815,15 +41360,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_lock(): Opt_lockContext { let localContext = new Opt_lockContext(this.context, this.state); - this.enterRule(localContext, 976, PostgreSQLParser.RULE_opt_lock); + this.enterRule(localContext, 972, PostgreSQLParser.RULE_opt_lock); try { this.enterOuterAlt(localContext, 1); { - this.state = 8649; + this.state = 8558; this.match(PostgreSQLParser.KW_IN); - this.state = 8650; + this.state = 8559; this.lock_type(); - this.state = 8651; + this.state = 8560; this.match(PostgreSQLParser.KW_MODE); } } @@ -40843,18 +41388,18 @@ export class PostgreSQLParser extends antlr.Parser { } public lock_type(): Lock_typeContext { let localContext = new Lock_typeContext(this.context, this.state); - this.enterRule(localContext, 978, PostgreSQLParser.RULE_lock_type); + this.enterRule(localContext, 974, PostgreSQLParser.RULE_lock_type); let _la: number; try { - this.state = 8665; + this.state = 8574; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ACCESS: this.enterOuterAlt(localContext, 1); { - this.state = 8653; + this.state = 8562; this.match(PostgreSQLParser.KW_ACCESS); - this.state = 8654; + this.state = 8563; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -40868,9 +41413,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ROW: this.enterOuterAlt(localContext, 2); { - this.state = 8655; + this.state = 8564; this.match(PostgreSQLParser.KW_ROW); - this.state = 8656; + this.state = 8565; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -40884,24 +41429,24 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SHARE: this.enterOuterAlt(localContext, 3); { - this.state = 8657; + this.state = 8566; this.match(PostgreSQLParser.KW_SHARE); - this.state = 8662; + this.state = 8571; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UPDATE: { - this.state = 8658; + this.state = 8567; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 8659; + this.state = 8568; this.match(PostgreSQLParser.KW_EXCLUSIVE); } break; case PostgreSQLParser.KW_ROW: { - this.state = 8660; + this.state = 8569; this.match(PostgreSQLParser.KW_ROW); - this.state = 8661; + this.state = 8570; this.match(PostgreSQLParser.KW_EXCLUSIVE); } break; @@ -40915,7 +41460,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCLUSIVE: this.enterOuterAlt(localContext, 4); { - this.state = 8664; + this.state = 8573; this.match(PostgreSQLParser.KW_EXCLUSIVE); } break; @@ -40939,11 +41484,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_nowait(): Opt_nowaitContext { let localContext = new Opt_nowaitContext(this.context, this.state); - this.enterRule(localContext, 980, PostgreSQLParser.RULE_opt_nowait); + this.enterRule(localContext, 976, PostgreSQLParser.RULE_opt_nowait); try { this.enterOuterAlt(localContext, 1); { - this.state = 8667; + this.state = 8576; this.match(PostgreSQLParser.KW_NOWAIT); } } @@ -40963,24 +41508,24 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_nowait_or_skip(): Opt_nowait_or_skipContext { let localContext = new Opt_nowait_or_skipContext(this.context, this.state); - this.enterRule(localContext, 982, PostgreSQLParser.RULE_opt_nowait_or_skip); + this.enterRule(localContext, 978, PostgreSQLParser.RULE_opt_nowait_or_skip); try { - this.state = 8672; + this.state = 8581; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NOWAIT: this.enterOuterAlt(localContext, 1); { - this.state = 8669; + this.state = 8578; this.match(PostgreSQLParser.KW_NOWAIT); } break; case PostgreSQLParser.KW_SKIP: this.enterOuterAlt(localContext, 2); { - this.state = 8670; + this.state = 8579; this.match(PostgreSQLParser.KW_SKIP); - this.state = 8671; + this.state = 8580; this.match(PostgreSQLParser.KW_LOCKED); } break; @@ -41004,55 +41549,55 @@ export class PostgreSQLParser extends antlr.Parser { } public updatestmt(): UpdatestmtContext { let localContext = new UpdatestmtContext(this.context, this.state); - this.enterRule(localContext, 984, PostgreSQLParser.RULE_updatestmt); + this.enterRule(localContext, 980, PostgreSQLParser.RULE_updatestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8675; + this.state = 8584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8674; + this.state = 8583; this.opt_with_clause(); } } - this.state = 8677; + this.state = 8586; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 8678; + this.state = 8587; this.relation_expr_opt_alias(); - this.state = 8679; + this.state = 8588; this.match(PostgreSQLParser.KW_SET); - this.state = 8680; + this.state = 8589; this.set_clause_list(); - this.state = 8682; + this.state = 8591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8681; + this.state = 8590; this.from_clause(); } } - this.state = 8685; + this.state = 8594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8684; + this.state = 8593; this.where_or_current_clause(); } } - this.state = 8688; + this.state = 8597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8687; + this.state = 8596; this.returning_clause(); } } @@ -41075,26 +41620,26 @@ export class PostgreSQLParser extends antlr.Parser { } public set_clause_list(): Set_clause_listContext { let localContext = new Set_clause_listContext(this.context, this.state); - this.enterRule(localContext, 986, PostgreSQLParser.RULE_set_clause_list); + this.enterRule(localContext, 982, PostgreSQLParser.RULE_set_clause_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8690; + this.state = 8599; this.set_clause(); - this.state = 8695; + this.state = 8604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8691; + this.state = 8600; this.match(PostgreSQLParser.COMMA); - this.state = 8692; + this.state = 8601; this.set_clause(); } } - this.state = 8697; + this.state = 8606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41116,15 +41661,14 @@ export class PostgreSQLParser extends antlr.Parser { } public set_clause(): Set_clauseContext { let localContext = new Set_clauseContext(this.context, this.state); - this.enterRule(localContext, 988, PostgreSQLParser.RULE_set_clause); + this.enterRule(localContext, 984, PostgreSQLParser.RULE_set_clause); try { - this.state = 8716; + this.state = 8625; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -41524,51 +42068,51 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8698; + this.state = 8607; this.set_target(); - this.state = 8699; + this.state = 8608; this.match(PostgreSQLParser.EQUAL); - this.state = 8700; + this.state = 8609; this.a_expr(); } break; case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 8702; + this.state = 8611; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8703; + this.state = 8612; this.set_target_list(); - this.state = 8704; + this.state = 8613; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8705; + this.state = 8614; this.match(PostgreSQLParser.EQUAL); - this.state = 8714; + this.state = 8623; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 823, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: { - this.state = 8707; + this.state = 8616; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { case 1: { - this.state = 8706; + this.state = 8615; this.match(PostgreSQLParser.KW_ROW); } break; } - this.state = 8709; + this.state = 8618; this.a_expr(); } break; case 2: { - this.state = 8710; + this.state = 8619; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8711; + this.state = 8620; this.select_clause(); - this.state = 8712; + this.state = 8621; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -41595,13 +42139,13 @@ export class PostgreSQLParser extends antlr.Parser { } public set_target(): Set_targetContext { let localContext = new Set_targetContext(this.context, this.state); - this.enterRule(localContext, 990, PostgreSQLParser.RULE_set_target); + this.enterRule(localContext, 986, PostgreSQLParser.RULE_set_target); try { this.enterOuterAlt(localContext, 1); { - this.state = 8718; + this.state = 8627; this.column_name(); - this.state = 8719; + this.state = 8628; this.opt_indirection(); } } @@ -41621,26 +42165,26 @@ export class PostgreSQLParser extends antlr.Parser { } public set_target_list(): Set_target_listContext { let localContext = new Set_target_listContext(this.context, this.state); - this.enterRule(localContext, 992, PostgreSQLParser.RULE_set_target_list); + this.enterRule(localContext, 988, PostgreSQLParser.RULE_set_target_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8721; + this.state = 8630; this.set_target(); - this.state = 8726; + this.state = 8635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8722; + this.state = 8631; this.match(PostgreSQLParser.COMMA); - this.state = 8723; + this.state = 8632; this.set_target(); } } - this.state = 8728; + this.state = 8637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41662,23 +42206,23 @@ export class PostgreSQLParser extends antlr.Parser { } public declarecursorstmt(): DeclarecursorstmtContext { let localContext = new DeclarecursorstmtContext(this.context, this.state); - this.enterRule(localContext, 994, PostgreSQLParser.RULE_declarecursorstmt); + this.enterRule(localContext, 990, PostgreSQLParser.RULE_declarecursorstmt); try { this.enterOuterAlt(localContext, 1); { - this.state = 8729; + this.state = 8638; this.match(PostgreSQLParser.KW_DECLARE); - this.state = 8730; + this.state = 8639; this.cursor_name(); - this.state = 8731; + this.state = 8640; this.cursor_options(); - this.state = 8732; + this.state = 8641; this.match(PostgreSQLParser.KW_CURSOR); - this.state = 8733; + this.state = 8642; this.opt_hold(); - this.state = 8734; + this.state = 8643; this.match(PostgreSQLParser.KW_FOR); - this.state = 8735; + this.state = 8644; this.selectstmt(); } } @@ -41698,11 +42242,11 @@ export class PostgreSQLParser extends antlr.Parser { } public cursor_name(): Cursor_nameContext { let localContext = new Cursor_nameContext(this.context, this.state); - this.enterRule(localContext, 996, PostgreSQLParser.RULE_cursor_name); + this.enterRule(localContext, 992, PostgreSQLParser.RULE_cursor_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 8737; + this.state = 8646; this.name(); } } @@ -41722,42 +42266,42 @@ export class PostgreSQLParser extends antlr.Parser { } public cursor_options(): Cursor_optionsContext { let localContext = new Cursor_optionsContext(this.context, this.state); - this.enterRule(localContext, 998, PostgreSQLParser.RULE_cursor_options); + this.enterRule(localContext, 994, PostgreSQLParser.RULE_cursor_options); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8746; + this.state = 8655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { { - this.state = 8744; + this.state = 8653; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NO: { - this.state = 8739; + this.state = 8648; this.match(PostgreSQLParser.KW_NO); - this.state = 8740; + this.state = 8649; this.match(PostgreSQLParser.KW_SCROLL); } break; case PostgreSQLParser.KW_SCROLL: { - this.state = 8741; + this.state = 8650; this.match(PostgreSQLParser.KW_SCROLL); } break; case PostgreSQLParser.KW_BINARY: { - this.state = 8742; + this.state = 8651; this.match(PostgreSQLParser.KW_BINARY); } break; case PostgreSQLParser.KW_INSENSITIVE: { - this.state = 8743; + this.state = 8652; this.match(PostgreSQLParser.KW_INSENSITIVE); } break; @@ -41765,7 +42309,7 @@ export class PostgreSQLParser extends antlr.Parser { throw new antlr.NoViableAltException(this); } } - this.state = 8748; + this.state = 8657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41787,9 +42331,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_hold(): Opt_holdContext { let localContext = new Opt_holdContext(this.context, this.state); - this.enterRule(localContext, 1000, PostgreSQLParser.RULE_opt_hold); + this.enterRule(localContext, 996, PostgreSQLParser.RULE_opt_hold); try { - this.state = 8754; + this.state = 8663; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -41801,18 +42345,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 8750; + this.state = 8659; this.match(PostgreSQLParser.KW_WITH); - this.state = 8751; + this.state = 8660; this.match(PostgreSQLParser.KW_HOLD); } break; case PostgreSQLParser.KW_WITHOUT: this.enterOuterAlt(localContext, 3); { - this.state = 8752; + this.state = 8661; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 8753; + this.state = 8662; this.match(PostgreSQLParser.KW_HOLD); } break; @@ -41836,22 +42380,22 @@ export class PostgreSQLParser extends antlr.Parser { } public selectstmt(): SelectstmtContext { let localContext = new SelectstmtContext(this.context, this.state); - this.enterRule(localContext, 1002, PostgreSQLParser.RULE_selectstmt); + this.enterRule(localContext, 998, PostgreSQLParser.RULE_selectstmt); try { - this.state = 8758; + this.state = 8667; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 835, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8756; + this.state = 8665; this.select_no_parens(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8757; + this.state = 8666; this.select_with_parens(); } break; @@ -41873,30 +42417,30 @@ export class PostgreSQLParser extends antlr.Parser { } public select_with_parens(): Select_with_parensContext { let localContext = new Select_with_parensContext(this.context, this.state); - this.enterRule(localContext, 1004, PostgreSQLParser.RULE_select_with_parens); + this.enterRule(localContext, 1000, PostgreSQLParser.RULE_select_with_parens); try { - this.state = 8768; + this.state = 8677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 830, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8760; + this.state = 8669; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8761; + this.state = 8670; this.select_no_parens(); - this.state = 8762; + this.state = 8671; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8764; + this.state = 8673; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8765; + this.state = 8674; this.select_with_parens(); - this.state = 8766; + this.state = 8675; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -41918,10 +42462,10 @@ export class PostgreSQLParser extends antlr.Parser { } public select_no_parens(): Select_no_parensContext { let localContext = new Select_no_parensContext(this.context, this.state); - this.enterRule(localContext, 1006, PostgreSQLParser.RULE_select_no_parens); + this.enterRule(localContext, 1002, PostgreSQLParser.RULE_select_no_parens); let _la: number; try { - this.state = 8799; + this.state = 8708; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -41930,31 +42474,31 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8770; + this.state = 8679; this.select_clause(); - this.state = 8772; + this.state = 8681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 8771; + this.state = 8680; this.opt_sort_clause(); } } - this.state = 8782; + this.state = 8691; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { case 1: { - this.state = 8774; + this.state = 8683; this.for_locking_clause(); - this.state = 8776; + this.state = 8685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 832, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 8775; + this.state = 8684; this.opt_select_limit(); } break; @@ -41963,14 +42507,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8778; + this.state = 8687; this.select_limit(); - this.state = 8780; + this.state = 8689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 8779; + this.state = 8688; this.opt_for_locking_clause(); } } @@ -41983,33 +42527,33 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 8784; + this.state = 8693; this.with_clause(); - this.state = 8785; + this.state = 8694; this.select_clause(); - this.state = 8787; + this.state = 8696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 8786; + this.state = 8695; this.opt_sort_clause(); } } - this.state = 8797; + this.state = 8706; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 844, this.context) ) { case 1: { - this.state = 8789; + this.state = 8698; this.for_locking_clause(); - this.state = 8791; + this.state = 8700; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { case 1: { - this.state = 8790; + this.state = 8699; this.opt_select_limit(); } break; @@ -42018,14 +42562,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8793; + this.state = 8702; this.select_limit(); - this.state = 8795; + this.state = 8704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 8794; + this.state = 8703; this.opt_for_locking_clause(); } } @@ -42055,22 +42599,22 @@ export class PostgreSQLParser extends antlr.Parser { } public select_clause(): Select_clauseContext { let localContext = new Select_clauseContext(this.context, this.state); - this.enterRule(localContext, 1008, PostgreSQLParser.RULE_select_clause); + this.enterRule(localContext, 1004, PostgreSQLParser.RULE_select_clause); try { - this.state = 8803; + this.state = 8712; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8801; + this.state = 8710; this.simple_select(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8802; + this.state = 8711; this.select_with_parens(); } break; @@ -42092,50 +42636,50 @@ export class PostgreSQLParser extends antlr.Parser { } public simple_select(): Simple_selectContext { let localContext = new Simple_selectContext(this.context, this.state); - this.enterRule(localContext, 1010, PostgreSQLParser.RULE_simple_select); + this.enterRule(localContext, 1006, PostgreSQLParser.RULE_simple_select); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8850; + this.state = 8759; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SELECT: { - this.state = 8805; + this.state = 8714; this.match(PostgreSQLParser.KW_SELECT); - this.state = 8821; + this.state = 8730; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { case 1: { - this.state = 8807; + this.state = 8716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 8806; + this.state = 8715; this.opt_all_clause(); } } - this.state = 8810; + this.state = 8719; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: { - this.state = 8809; + this.state = 8718; this.into_clause(); } break; } - this.state = 8813; + this.state = 8722; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 843, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { case 1: { - this.state = 8812; + this.state = 8721; this.opt_target_list(); } break; @@ -42144,22 +42688,22 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 8816; + this.state = 8725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 56) { { - this.state = 8815; + this.state = 8724; this.distinct_clause(); } } - this.state = 8819; + this.state = 8728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 851, this.context) ) { case 1: { - this.state = 8818; + this.state = 8727; this.target_list(); } break; @@ -42167,62 +42711,62 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 8824; + this.state = 8733; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { case 1: { - this.state = 8823; + this.state = 8732; this.into_clause(); } break; } - this.state = 8827; + this.state = 8736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8826; + this.state = 8735; this.from_clause(); } } - this.state = 8830; + this.state = 8739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8829; + this.state = 8738; this.where_clause(); } } - this.state = 8833; + this.state = 8742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8832; + this.state = 8741; this.group_clause(); } } - this.state = 8836; + this.state = 8745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8835; + this.state = 8744; this.having_clause(); } } - this.state = 8839; + this.state = 8748; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 858, this.context) ) { case 1: { - this.state = 8838; + this.state = 8747; this.window_clause(); } break; @@ -42231,36 +42775,36 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_VALUES: { - this.state = 8841; + this.state = 8750; this.values_clause(); } break; case PostgreSQLParser.KW_TABLE: { - this.state = 8842; + this.state = 8751; this.match(PostgreSQLParser.KW_TABLE); - this.state = 8843; + this.state = 8752; this.relation_expr(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 8844; + this.state = 8753; this.select_with_parens(); - this.state = 8845; + this.state = 8754; this.set_operator_with_all_or_distinct(); - this.state = 8848; + this.state = 8757; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { case 1: { - this.state = 8846; + this.state = 8755; this.simple_select(); } break; case 2: { - this.state = 8847; + this.state = 8756; this.select_with_parens(); } break; @@ -42270,27 +42814,27 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 8859; + this.state = 8768; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 856, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8852; + this.state = 8761; this.set_operator_with_all_or_distinct(); - this.state = 8855; + this.state = 8764; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { case 1: { - this.state = 8853; + this.state = 8762; this.simple_select(); } break; case 2: { - this.state = 8854; + this.state = 8763; this.select_with_parens(); } break; @@ -42298,9 +42842,9 @@ export class PostgreSQLParser extends antlr.Parser { } } } - this.state = 8861; + this.state = 8770; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 856, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); } } } @@ -42320,16 +42864,16 @@ export class PostgreSQLParser extends antlr.Parser { } public set_operator(): Set_operatorContext { let localContext = new Set_operatorContext(this.context, this.state); - this.enterRule(localContext, 1012, PostgreSQLParser.RULE_set_operator); + this.enterRule(localContext, 1008, PostgreSQLParser.RULE_set_operator); try { - this.state = 8865; + this.state = 8774; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UNION: localContext = new UnionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 8862; + this.state = 8771; this.match(PostgreSQLParser.KW_UNION); } break; @@ -42337,7 +42881,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new IntersectContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 8863; + this.state = 8772; this.match(PostgreSQLParser.KW_INTERSECT); } break; @@ -42345,7 +42889,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new ExceptContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 8864; + this.state = 8773; this.match(PostgreSQLParser.KW_EXCEPT); } break; @@ -42369,19 +42913,19 @@ export class PostgreSQLParser extends antlr.Parser { } public set_operator_with_all_or_distinct(): Set_operator_with_all_or_distinctContext { let localContext = new Set_operator_with_all_or_distinctContext(this.context, this.state); - this.enterRule(localContext, 1014, PostgreSQLParser.RULE_set_operator_with_all_or_distinct); + this.enterRule(localContext, 1010, PostgreSQLParser.RULE_set_operator_with_all_or_distinct); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8867; + this.state = 8776; this.set_operator(); - this.state = 8869; + this.state = 8778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 56) { { - this.state = 8868; + this.state = 8777; this.all_or_distinct(); } } @@ -42404,23 +42948,23 @@ export class PostgreSQLParser extends antlr.Parser { } public with_clause(): With_clauseContext { let localContext = new With_clauseContext(this.context, this.state); - this.enterRule(localContext, 1016, PostgreSQLParser.RULE_with_clause); + this.enterRule(localContext, 1012, PostgreSQLParser.RULE_with_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8871; + this.state = 8780; this.match(PostgreSQLParser.KW_WITH); - this.state = 8873; + this.state = 8782; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 865, this.context) ) { case 1: { - this.state = 8872; + this.state = 8781; this.match(PostgreSQLParser.KW_RECURSIVE); } break; } - this.state = 8875; + this.state = 8784; this.cte_list(); } } @@ -42440,30 +42984,30 @@ export class PostgreSQLParser extends antlr.Parser { } public cte_list(): Cte_listContext { let localContext = new Cte_listContext(this.context, this.state); - this.enterRule(localContext, 1018, PostgreSQLParser.RULE_cte_list); + this.enterRule(localContext, 1014, PostgreSQLParser.RULE_cte_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8877; + this.state = 8786; this.common_table_expr(); - this.state = 8882; + this.state = 8791; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 866, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8878; + this.state = 8787; this.match(PostgreSQLParser.COMMA); - this.state = 8879; + this.state = 8788; this.common_table_expr(); } } } - this.state = 8884; + this.state = 8793; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 866, this.context); } } } @@ -42483,57 +43027,57 @@ export class PostgreSQLParser extends antlr.Parser { } public common_table_expr(): Common_table_exprContext { let localContext = new Common_table_exprContext(this.context, this.state); - this.enterRule(localContext, 1020, PostgreSQLParser.RULE_common_table_expr); + this.enterRule(localContext, 1016, PostgreSQLParser.RULE_common_table_expr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8885; + this.state = 8794; this.name(); - this.state = 8887; + this.state = 8796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8886; + this.state = 8795; this.opt_name_list(); } } - this.state = 8889; + this.state = 8798; this.match(PostgreSQLParser.KW_AS); - this.state = 8891; + this.state = 8800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77 || _la === 259) { { - this.state = 8890; + this.state = 8799; this.opt_materialized(); } } - this.state = 8893; + this.state = 8802; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8894; + this.state = 8803; this.preparablestmt(); - this.state = 8895; + this.state = 8804; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 8897; + this.state = 8806; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { case 1: { - this.state = 8896; + this.state = 8805; this.search_cluase(); } break; } - this.state = 8900; + this.state = 8809; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 870, this.context) ) { case 1: { - this.state = 8899; + this.state = 8808; this.cycle_cluase(); } break; @@ -42556,14 +43100,14 @@ export class PostgreSQLParser extends antlr.Parser { } public search_cluase(): Search_cluaseContext { let localContext = new Search_cluaseContext(this.context, this.state); - this.enterRule(localContext, 1022, PostgreSQLParser.RULE_search_cluase); + this.enterRule(localContext, 1018, PostgreSQLParser.RULE_search_cluase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8902; + this.state = 8811; this.match(PostgreSQLParser.KW_SEARCH); - this.state = 8903; + this.state = 8812; _la = this.tokenStream.LA(1); if(!(_la === 527 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -42572,15 +43116,15 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8904; + this.state = 8813; this.match(PostgreSQLParser.KW_FIRST); - this.state = 8905; + this.state = 8814; this.match(PostgreSQLParser.KW_BY); - this.state = 8906; + this.state = 8815; this.columnlist(); - this.state = 8907; + this.state = 8816; this.match(PostgreSQLParser.KW_SET); - this.state = 8908; + this.state = 8817; this.column_name(); } } @@ -42600,38 +43144,38 @@ export class PostgreSQLParser extends antlr.Parser { } public cycle_cluase(): Cycle_cluaseContext { let localContext = new Cycle_cluaseContext(this.context, this.state); - this.enterRule(localContext, 1024, PostgreSQLParser.RULE_cycle_cluase); + this.enterRule(localContext, 1020, PostgreSQLParser.RULE_cycle_cluase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8910; + this.state = 8819; this.match(PostgreSQLParser.KW_CYCLE); - this.state = 8911; + this.state = 8820; this.columnlist(); - this.state = 8912; + this.state = 8821; this.match(PostgreSQLParser.KW_SET); - this.state = 8913; + this.state = 8822; this.column_name(); - this.state = 8919; + this.state = 8828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 8914; + this.state = 8823; this.match(PostgreSQLParser.KW_TO); - this.state = 8915; + this.state = 8824; this.name(); - this.state = 8916; + this.state = 8825; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 8917; + this.state = 8826; this.name(); } } - this.state = 8921; + this.state = 8830; this.match(PostgreSQLParser.KW_USING); - this.state = 8922; + this.state = 8831; this.column_name(); } } @@ -42651,24 +43195,24 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_materialized(): Opt_materializedContext { let localContext = new Opt_materializedContext(this.context, this.state); - this.enterRule(localContext, 1026, PostgreSQLParser.RULE_opt_materialized); + this.enterRule(localContext, 1022, PostgreSQLParser.RULE_opt_materialized); try { - this.state = 8927; + this.state = 8836; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_MATERIALIZED: this.enterOuterAlt(localContext, 1); { - this.state = 8924; + this.state = 8833; this.match(PostgreSQLParser.KW_MATERIALIZED); } break; case PostgreSQLParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 8925; + this.state = 8834; this.match(PostgreSQLParser.KW_NOT); - this.state = 8926; + this.state = 8835; this.match(PostgreSQLParser.KW_MATERIALIZED); } break; @@ -42692,11 +43236,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_with_clause(): Opt_with_clauseContext { let localContext = new Opt_with_clauseContext(this.context, this.state); - this.enterRule(localContext, 1028, PostgreSQLParser.RULE_opt_with_clause); + this.enterRule(localContext, 1024, PostgreSQLParser.RULE_opt_with_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8929; + this.state = 8838; this.with_clause(); } } @@ -42716,26 +43260,26 @@ export class PostgreSQLParser extends antlr.Parser { } public into_clause(): Into_clauseContext { let localContext = new Into_clauseContext(this.context, this.state); - this.enterRule(localContext, 1030, PostgreSQLParser.RULE_into_clause); + this.enterRule(localContext, 1026, PostgreSQLParser.RULE_into_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8931; + this.state = 8840; this.match(PostgreSQLParser.KW_INTO); - this.state = 8936; + this.state = 8845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 867, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 873, this.context) ) { case 1: { - this.state = 8932; + this.state = 8841; this.opt_strict(); - this.state = 8933; + this.state = 8842; this.opttempTableName(); } break; case 2: { - this.state = 8935; + this.state = 8844; this.into_target(); } break; @@ -42758,11 +43302,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_strict(): Opt_strictContext { let localContext = new Opt_strictContext(this.context, this.state); - this.enterRule(localContext, 1032, PostgreSQLParser.RULE_opt_strict); + this.enterRule(localContext, 1028, PostgreSQLParser.RULE_opt_strict); try { - this.state = 8940; + this.state = 8849; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 868, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -42772,7 +43316,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8939; + this.state = 8848; this.match(PostgreSQLParser.KW_STRICT); } break; @@ -42794,21 +43338,21 @@ export class PostgreSQLParser extends antlr.Parser { } public opttempTableName(): OpttempTableNameContext { let localContext = new OpttempTableNameContext(this.context, this.state); - this.enterRule(localContext, 1034, PostgreSQLParser.RULE_opttempTableName); + this.enterRule(localContext, 1030, PostgreSQLParser.RULE_opttempTableName); let _la: number; try { - this.state = 8958; + this.state = 8867; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 872, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 878, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8943; + this.state = 8852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254) { { - this.state = 8942; + this.state = 8851; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -42820,7 +43364,7 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 8945; + this.state = 8854; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -42829,52 +43373,52 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8947; + this.state = 8856; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 870, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 876, this.context) ) { case 1: { - this.state = 8946; + this.state = 8855; this.opt_table(); } break; } - this.state = 8949; + this.state = 8858; this.table_name_create(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8950; + this.state = 8859; this.match(PostgreSQLParser.KW_UNLOGGED); - this.state = 8952; + this.state = 8861; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 871, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { case 1: { - this.state = 8951; + this.state = 8860; this.opt_table(); } break; } - this.state = 8954; + this.state = 8863; this.table_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8955; + this.state = 8864; this.match(PostgreSQLParser.KW_TABLE); - this.state = 8956; + this.state = 8865; this.table_name_create(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8957; + this.state = 8866; this.table_name_create(); } break; @@ -42896,11 +43440,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_table(): Opt_tableContext { let localContext = new Opt_tableContext(this.context, this.state); - this.enterRule(localContext, 1036, PostgreSQLParser.RULE_opt_table); + this.enterRule(localContext, 1032, PostgreSQLParser.RULE_opt_table); try { this.enterOuterAlt(localContext, 1); { - this.state = 8960; + this.state = 8869; this.match(PostgreSQLParser.KW_TABLE); } } @@ -42920,12 +43464,12 @@ export class PostgreSQLParser extends antlr.Parser { } public all_or_distinct(): All_or_distinctContext { let localContext = new All_or_distinctContext(this.context, this.state); - this.enterRule(localContext, 1038, PostgreSQLParser.RULE_all_or_distinct); + this.enterRule(localContext, 1034, PostgreSQLParser.RULE_all_or_distinct); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8962; + this.state = 8871; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -42952,24 +43496,24 @@ export class PostgreSQLParser extends antlr.Parser { } public distinct_clause(): Distinct_clauseContext { let localContext = new Distinct_clauseContext(this.context, this.state); - this.enterRule(localContext, 1040, PostgreSQLParser.RULE_distinct_clause); + this.enterRule(localContext, 1036, PostgreSQLParser.RULE_distinct_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8964; + this.state = 8873; this.match(PostgreSQLParser.KW_DISTINCT); - this.state = 8970; + this.state = 8879; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 873, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { case 1: { - this.state = 8965; + this.state = 8874; this.match(PostgreSQLParser.KW_ON); - this.state = 8966; + this.state = 8875; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 8967; + this.state = 8876; this.expr_list(); - this.state = 8968; + this.state = 8877; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -42992,11 +43536,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_all_clause(): Opt_all_clauseContext { let localContext = new Opt_all_clauseContext(this.context, this.state); - this.enterRule(localContext, 1042, PostgreSQLParser.RULE_opt_all_clause); + this.enterRule(localContext, 1038, PostgreSQLParser.RULE_opt_all_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8972; + this.state = 8881; this.match(PostgreSQLParser.KW_ALL); } } @@ -43016,11 +43560,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_sort_clause(): Opt_sort_clauseContext { let localContext = new Opt_sort_clauseContext(this.context, this.state); - this.enterRule(localContext, 1044, PostgreSQLParser.RULE_opt_sort_clause); + this.enterRule(localContext, 1040, PostgreSQLParser.RULE_opt_sort_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8974; + this.state = 8883; this.sort_clause(); } } @@ -43040,15 +43584,15 @@ export class PostgreSQLParser extends antlr.Parser { } public sort_clause(): Sort_clauseContext { let localContext = new Sort_clauseContext(this.context, this.state); - this.enterRule(localContext, 1046, PostgreSQLParser.RULE_sort_clause); + this.enterRule(localContext, 1042, PostgreSQLParser.RULE_sort_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 8976; + this.state = 8885; this.match(PostgreSQLParser.KW_ORDER); - this.state = 8977; + this.state = 8886; this.match(PostgreSQLParser.KW_BY); - this.state = 8978; + this.state = 8887; this.sortby_list(); } } @@ -43068,26 +43612,26 @@ export class PostgreSQLParser extends antlr.Parser { } public sortby_list(): Sortby_listContext { let localContext = new Sortby_listContext(this.context, this.state); - this.enterRule(localContext, 1048, PostgreSQLParser.RULE_sortby_list); + this.enterRule(localContext, 1044, PostgreSQLParser.RULE_sortby_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8980; + this.state = 8889; this.sortby(); - this.state = 8985; + this.state = 8894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8981; + this.state = 8890; this.match(PostgreSQLParser.COMMA); - this.state = 8982; + this.state = 8891; this.sortby(); } } - this.state = 8987; + this.state = 8896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43109,27 +43653,27 @@ export class PostgreSQLParser extends antlr.Parser { } public sortby(): SortbyContext { let localContext = new SortbyContext(this.context, this.state); - this.enterRule(localContext, 1050, PostgreSQLParser.RULE_sortby); + this.enterRule(localContext, 1046, PostgreSQLParser.RULE_sortby); try { this.enterOuterAlt(localContext, 1); { - this.state = 8988; + this.state = 8897; this.column_expr_noparen(); - this.state = 8992; + this.state = 8901; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_USING: { - this.state = 8989; + this.state = 8898; this.match(PostgreSQLParser.KW_USING); - this.state = 8990; + this.state = 8899; this.qual_all_op(); } break; case PostgreSQLParser.KW_ASC: case PostgreSQLParser.KW_DESC: { - this.state = 8991; + this.state = 8900; this.opt_asc_desc(); } break; @@ -43144,7 +43688,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_AS: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CREATE: case PostgreSQLParser.KW_DEFAULT: @@ -43563,12 +44106,12 @@ export class PostgreSQLParser extends antlr.Parser { default: break; } - this.state = 8995; + this.state = 8904; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 876, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { case 1: { - this.state = 8994; + this.state = 8903; this.opt_nulls_order(); } break; @@ -43591,23 +44134,23 @@ export class PostgreSQLParser extends antlr.Parser { } public select_limit(): Select_limitContext { let localContext = new Select_limitContext(this.context, this.state); - this.enterRule(localContext, 1052, PostgreSQLParser.RULE_select_limit); + this.enterRule(localContext, 1048, PostgreSQLParser.RULE_select_limit); let _la: number; try { - this.state = 9009; + this.state = 8918; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LIMIT: this.enterOuterAlt(localContext, 1); { - this.state = 8997; + this.state = 8906; this.limit_clause(); - this.state = 8999; + this.state = 8908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 8998; + this.state = 8907; this.offset_clause(); } } @@ -43617,14 +44160,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OFFSET: this.enterOuterAlt(localContext, 2); { - this.state = 9001; + this.state = 8910; this.offset_clause(); - this.state = 9003; + this.state = 8912; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 878, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { case 1: { - this.state = 9002; + this.state = 8911; this.fetch_clause(); } break; @@ -43634,14 +44177,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_FETCH: this.enterOuterAlt(localContext, 3); { - this.state = 9005; + this.state = 8914; this.fetch_clause(); - this.state = 9007; + this.state = 8916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 9006; + this.state = 8915; this.offset_clause(); } } @@ -43668,11 +44211,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_select_limit(): Opt_select_limitContext { let localContext = new Opt_select_limitContext(this.context, this.state); - this.enterRule(localContext, 1054, PostgreSQLParser.RULE_opt_select_limit); + this.enterRule(localContext, 1050, PostgreSQLParser.RULE_opt_select_limit); try { this.enterOuterAlt(localContext, 1); { - this.state = 9011; + this.state = 8920; this.select_limit(); } } @@ -43692,23 +44235,23 @@ export class PostgreSQLParser extends antlr.Parser { } public limit_clause(): Limit_clauseContext { let localContext = new Limit_clauseContext(this.context, this.state); - this.enterRule(localContext, 1056, PostgreSQLParser.RULE_limit_clause); + this.enterRule(localContext, 1052, PostgreSQLParser.RULE_limit_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9013; + this.state = 8922; this.match(PostgreSQLParser.KW_LIMIT); - this.state = 9014; + this.state = 8923; this.select_limit_value(); - this.state = 9017; + this.state = 8926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 9015; + this.state = 8924; this.match(PostgreSQLParser.COMMA); - this.state = 9016; + this.state = 8925; this.select_offset_value(); } } @@ -43731,37 +44274,37 @@ export class PostgreSQLParser extends antlr.Parser { } public fetch_clause(): Fetch_clauseContext { let localContext = new Fetch_clauseContext(this.context, this.state); - this.enterRule(localContext, 1058, PostgreSQLParser.RULE_fetch_clause); + this.enterRule(localContext, 1054, PostgreSQLParser.RULE_fetch_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9019; + this.state = 8928; this.match(PostgreSQLParser.KW_FETCH); - this.state = 9020; + this.state = 8929; this.first_or_next(); - this.state = 9034; + this.state = 8943; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 890, this.context) ) { case 1: { - this.state = 9021; + this.state = 8930; this.select_fetch_first_value(); - this.state = 9022; + this.state = 8931; this.row_or_rows(); - this.state = 9026; + this.state = 8935; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ONLY: { - this.state = 9023; + this.state = 8932; this.match(PostgreSQLParser.KW_ONLY); } break; case PostgreSQLParser.KW_WITH: { - this.state = 9024; + this.state = 8933; this.match(PostgreSQLParser.KW_WITH); - this.state = 9025; + this.state = 8934; this.match(PostgreSQLParser.KW_TIES); } break; @@ -43772,22 +44315,22 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 9028; + this.state = 8937; this.row_or_rows(); - this.state = 9032; + this.state = 8941; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ONLY: { - this.state = 9029; + this.state = 8938; this.match(PostgreSQLParser.KW_ONLY); } break; case PostgreSQLParser.KW_WITH: { - this.state = 9030; + this.state = 8939; this.match(PostgreSQLParser.KW_WITH); - this.state = 9031; + this.state = 8940; this.match(PostgreSQLParser.KW_TIES); } break; @@ -43815,27 +44358,27 @@ export class PostgreSQLParser extends antlr.Parser { } public offset_clause(): Offset_clauseContext { let localContext = new Offset_clauseContext(this.context, this.state); - this.enterRule(localContext, 1060, PostgreSQLParser.RULE_offset_clause); + this.enterRule(localContext, 1056, PostgreSQLParser.RULE_offset_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9036; + this.state = 8945; this.match(PostgreSQLParser.KW_OFFSET); - this.state = 9041; + this.state = 8950; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 891, this.context) ) { case 1: { - this.state = 9037; - this.select_offset_value(); + this.state = 8946; + this.select_fetch_first_value(); + this.state = 8947; + this.row_or_rows(); } break; case 2: { - this.state = 9038; - this.select_fetch_first_value(); - this.state = 9039; - this.row_or_rows(); + this.state = 8949; + this.select_offset_value(); } break; } @@ -43857,9 +44400,9 @@ export class PostgreSQLParser extends antlr.Parser { } public select_limit_value(): Select_limit_valueContext { let localContext = new Select_limit_valueContext(this.context, this.state); - this.enterRule(localContext, 1062, PostgreSQLParser.RULE_select_limit_value); + this.enterRule(localContext, 1058, PostgreSQLParser.RULE_select_limit_value); try { - this.state = 9045; + this.state = 8954; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -43872,7 +44415,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CASE: case PostgreSQLParser.KW_CAST: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_CATALOG: case PostgreSQLParser.KW_CURRENT_DATE: @@ -44312,14 +44854,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 9043; + this.state = 8952; this.a_expr(); } break; case PostgreSQLParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 9044; + this.state = 8953; this.match(PostgreSQLParser.KW_ALL); } break; @@ -44343,11 +44885,11 @@ export class PostgreSQLParser extends antlr.Parser { } public select_offset_value(): Select_offset_valueContext { let localContext = new Select_offset_valueContext(this.context, this.state); - this.enterRule(localContext, 1064, PostgreSQLParser.RULE_select_offset_value); + this.enterRule(localContext, 1060, PostgreSQLParser.RULE_select_offset_value); try { this.enterOuterAlt(localContext, 1); { - this.state = 9047; + this.state = 8956; this.a_expr(); } } @@ -44367,11 +44909,29 @@ export class PostgreSQLParser extends antlr.Parser { } public select_fetch_first_value(): Select_fetch_first_valueContext { let localContext = new Select_fetch_first_valueContext(this.context, this.state); - this.enterRule(localContext, 1066, PostgreSQLParser.RULE_select_fetch_first_value); + this.enterRule(localContext, 1062, PostgreSQLParser.RULE_select_fetch_first_value); try { - this.state = 9054; + this.state = 8963; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSQLParser.PLUS: + this.enterOuterAlt(localContext, 1); + { + this.state = 8958; + this.match(PostgreSQLParser.PLUS); + this.state = 8959; + this.i_or_f_const(); + } + break; + case PostgreSQLParser.MINUS: + this.enterOuterAlt(localContext, 2); + { + this.state = 8960; + this.match(PostgreSQLParser.MINUS); + this.state = 8961; + this.i_or_f_const(); + } + break; case PostgreSQLParser.OPEN_PAREN: case PostgreSQLParser.PARAM: case PostgreSQLParser.KW_AND: @@ -44379,7 +44939,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CASE: case PostgreSQLParser.KW_CAST: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_CATALOG: case PostgreSQLParser.KW_CURRENT_DATE: @@ -44816,28 +45375,10 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLVARIABLENAME: case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: - this.enterOuterAlt(localContext, 1); - { - this.state = 9049; - this.c_expr(); - } - break; - case PostgreSQLParser.PLUS: - this.enterOuterAlt(localContext, 2); - { - this.state = 9050; - this.match(PostgreSQLParser.PLUS); - this.state = 9051; - this.i_or_f_const(); - } - break; - case PostgreSQLParser.MINUS: this.enterOuterAlt(localContext, 3); { - this.state = 9052; - this.match(PostgreSQLParser.MINUS); - this.state = 9053; - this.i_or_f_const(); + this.state = 8962; + this.c_expr(); } break; default: @@ -44860,22 +45401,22 @@ export class PostgreSQLParser extends antlr.Parser { } public i_or_f_const(): I_or_f_constContext { let localContext = new I_or_f_constContext(this.context, this.state); - this.enterRule(localContext, 1068, PostgreSQLParser.RULE_i_or_f_const); + this.enterRule(localContext, 1064, PostgreSQLParser.RULE_i_or_f_const); try { - this.state = 9058; + this.state = 8967; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Integral: this.enterOuterAlt(localContext, 1); { - this.state = 9056; + this.state = 8965; this.iconst(); } break; case PostgreSQLParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 9057; + this.state = 8966; this.fconst(); } break; @@ -44899,12 +45440,12 @@ export class PostgreSQLParser extends antlr.Parser { } public row_or_rows(): Row_or_rowsContext { let localContext = new Row_or_rowsContext(this.context, this.state); - this.enterRule(localContext, 1070, PostgreSQLParser.RULE_row_or_rows); + this.enterRule(localContext, 1066, PostgreSQLParser.RULE_row_or_rows); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9060; + this.state = 8969; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -44931,12 +45472,12 @@ export class PostgreSQLParser extends antlr.Parser { } public first_or_next(): First_or_nextContext { let localContext = new First_or_nextContext(this.context, this.state); - this.enterRule(localContext, 1072, PostgreSQLParser.RULE_first_or_next); + this.enterRule(localContext, 1068, PostgreSQLParser.RULE_first_or_next); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9062; + this.state = 8971; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -44963,26 +45504,26 @@ export class PostgreSQLParser extends antlr.Parser { } public group_clause(): Group_clauseContext { let localContext = new Group_clauseContext(this.context, this.state); - this.enterRule(localContext, 1074, PostgreSQLParser.RULE_group_clause); + this.enterRule(localContext, 1070, PostgreSQLParser.RULE_group_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9064; + this.state = 8973; this.match(PostgreSQLParser.KW_GROUP); - this.state = 9065; + this.state = 8974; this.match(PostgreSQLParser.KW_BY); - this.state = 9067; + this.state = 8976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 56) { { - this.state = 9066; + this.state = 8975; this.all_or_distinct(); } } - this.state = 9069; + this.state = 8978; this.group_by_list(); } } @@ -45002,30 +45543,30 @@ export class PostgreSQLParser extends antlr.Parser { } public group_by_list(): Group_by_listContext { let localContext = new Group_by_listContext(this.context, this.state); - this.enterRule(localContext, 1076, PostgreSQLParser.RULE_group_by_list); + this.enterRule(localContext, 1072, PostgreSQLParser.RULE_group_by_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9071; + this.state = 8980; this.group_by_item(); - this.state = 9076; + this.state = 8985; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 890, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 896, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9072; + this.state = 8981; this.match(PostgreSQLParser.COMMA); - this.state = 9073; + this.state = 8982; this.group_by_item(); } } } - this.state = 9078; + this.state = 8987; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 890, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 896, this.context); } } } @@ -45045,54 +45586,54 @@ export class PostgreSQLParser extends antlr.Parser { } public group_by_item(): Group_by_itemContext { let localContext = new Group_by_itemContext(this.context, this.state); - this.enterRule(localContext, 1078, PostgreSQLParser.RULE_group_by_item); + this.enterRule(localContext, 1074, PostgreSQLParser.RULE_group_by_item); try { - this.state = 9088; + this.state = 8997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 891, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 897, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9079; + this.state = 8988; this.column_expr_noparen(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9080; + this.state = 8989; this.empty_grouping_set(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9081; + this.state = 8990; this.cube_clause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9082; + this.state = 8991; this.rollup_clause(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9083; + this.state = 8992; this.grouping_sets_clause(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9084; + this.state = 8993; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9085; + this.state = 8994; this.column_expr_list_noparen(); - this.state = 9086; + this.state = 8995; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -45114,13 +45655,13 @@ export class PostgreSQLParser extends antlr.Parser { } public empty_grouping_set(): Empty_grouping_setContext { let localContext = new Empty_grouping_setContext(this.context, this.state); - this.enterRule(localContext, 1080, PostgreSQLParser.RULE_empty_grouping_set); + this.enterRule(localContext, 1076, PostgreSQLParser.RULE_empty_grouping_set); try { this.enterOuterAlt(localContext, 1); { - this.state = 9090; + this.state = 8999; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9091; + this.state = 9000; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45140,17 +45681,17 @@ export class PostgreSQLParser extends antlr.Parser { } public rollup_clause(): Rollup_clauseContext { let localContext = new Rollup_clauseContext(this.context, this.state); - this.enterRule(localContext, 1082, PostgreSQLParser.RULE_rollup_clause); + this.enterRule(localContext, 1078, PostgreSQLParser.RULE_rollup_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9093; + this.state = 9002; this.match(PostgreSQLParser.KW_ROLLUP); - this.state = 9094; + this.state = 9003; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9095; + this.state = 9004; this.column_expr_list_noparen(); - this.state = 9096; + this.state = 9005; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45170,17 +45711,17 @@ export class PostgreSQLParser extends antlr.Parser { } public cube_clause(): Cube_clauseContext { let localContext = new Cube_clauseContext(this.context, this.state); - this.enterRule(localContext, 1084, PostgreSQLParser.RULE_cube_clause); + this.enterRule(localContext, 1080, PostgreSQLParser.RULE_cube_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9098; + this.state = 9007; this.match(PostgreSQLParser.KW_CUBE); - this.state = 9099; + this.state = 9008; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9100; + this.state = 9009; this.column_expr_list_noparen(); - this.state = 9101; + this.state = 9010; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45200,19 +45741,19 @@ export class PostgreSQLParser extends antlr.Parser { } public grouping_sets_clause(): Grouping_sets_clauseContext { let localContext = new Grouping_sets_clauseContext(this.context, this.state); - this.enterRule(localContext, 1086, PostgreSQLParser.RULE_grouping_sets_clause); + this.enterRule(localContext, 1082, PostgreSQLParser.RULE_grouping_sets_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9103; + this.state = 9012; this.match(PostgreSQLParser.KW_GROUPING); - this.state = 9104; + this.state = 9013; this.match(PostgreSQLParser.KW_SETS); - this.state = 9105; + this.state = 9014; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9106; + this.state = 9015; this.group_by_list(); - this.state = 9107; + this.state = 9016; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -45232,13 +45773,13 @@ export class PostgreSQLParser extends antlr.Parser { } public having_clause(): Having_clauseContext { let localContext = new Having_clauseContext(this.context, this.state); - this.enterRule(localContext, 1088, PostgreSQLParser.RULE_having_clause); + this.enterRule(localContext, 1084, PostgreSQLParser.RULE_having_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9109; + this.state = 9018; this.match(PostgreSQLParser.KW_HAVING); - this.state = 9110; + this.state = 9019; this.a_expr(); } } @@ -45258,26 +45799,26 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_clause(): For_locking_clauseContext { let localContext = new For_locking_clauseContext(this.context, this.state); - this.enterRule(localContext, 1090, PostgreSQLParser.RULE_for_locking_clause); + this.enterRule(localContext, 1086, PostgreSQLParser.RULE_for_locking_clause); try { - this.state = 9116; + this.state = 9025; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 898, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9112; + this.state = 9021; this.for_locking_items(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9113; + this.state = 9022; this.match(PostgreSQLParser.KW_FOR); - this.state = 9114; + this.state = 9023; this.match(PostgreSQLParser.KW_READ); - this.state = 9115; + this.state = 9024; this.match(PostgreSQLParser.KW_ONLY); } break; @@ -45299,11 +45840,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_for_locking_clause(): Opt_for_locking_clauseContext { let localContext = new Opt_for_locking_clauseContext(this.context, this.state); - this.enterRule(localContext, 1092, PostgreSQLParser.RULE_opt_for_locking_clause); + this.enterRule(localContext, 1088, PostgreSQLParser.RULE_opt_for_locking_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9118; + this.state = 9027; this.for_locking_clause(); } } @@ -45323,22 +45864,22 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_items(): For_locking_itemsContext { let localContext = new For_locking_itemsContext(this.context, this.state); - this.enterRule(localContext, 1094, PostgreSQLParser.RULE_for_locking_items); + this.enterRule(localContext, 1090, PostgreSQLParser.RULE_for_locking_items); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9121; + this.state = 9030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 9120; + this.state = 9029; this.for_locking_item(); } } - this.state = 9123; + this.state = 9032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 62); @@ -45360,28 +45901,28 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_item(): For_locking_itemContext { let localContext = new For_locking_itemContext(this.context, this.state); - this.enterRule(localContext, 1096, PostgreSQLParser.RULE_for_locking_item); + this.enterRule(localContext, 1092, PostgreSQLParser.RULE_for_locking_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 9125; + this.state = 9034; this.for_locking_strength(); - this.state = 9127; + this.state = 9036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 900, this.context) ) { case 1: { - this.state = 9126; + this.state = 9035; this.locked_rels_list(); } break; } - this.state = 9130; + this.state = 9039; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 901, this.context) ) { case 1: { - this.state = 9129; + this.state = 9038; this.opt_nowait_or_skip(); } break; @@ -45404,49 +45945,49 @@ export class PostgreSQLParser extends antlr.Parser { } public for_locking_strength(): For_locking_strengthContext { let localContext = new For_locking_strengthContext(this.context, this.state); - this.enterRule(localContext, 1098, PostgreSQLParser.RULE_for_locking_strength); + this.enterRule(localContext, 1094, PostgreSQLParser.RULE_for_locking_strength); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9132; + this.state = 9041; this.match(PostgreSQLParser.KW_FOR); - this.state = 9142; + this.state = 9051; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NO: case PostgreSQLParser.KW_UPDATE: { - this.state = 9135; + this.state = 9044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 9133; + this.state = 9042; this.match(PostgreSQLParser.KW_NO); - this.state = 9134; + this.state = 9043; this.match(PostgreSQLParser.KW_KEY); } } - this.state = 9137; + this.state = 9046; this.match(PostgreSQLParser.KW_UPDATE); } break; case PostgreSQLParser.KW_KEY: case PostgreSQLParser.KW_SHARE: { - this.state = 9139; + this.state = 9048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 9138; + this.state = 9047; this.match(PostgreSQLParser.KW_KEY); } } - this.state = 9141; + this.state = 9050; this.match(PostgreSQLParser.KW_SHARE); } break; @@ -45471,13 +46012,13 @@ export class PostgreSQLParser extends antlr.Parser { } public locked_rels_list(): Locked_rels_listContext { let localContext = new Locked_rels_listContext(this.context, this.state); - this.enterRule(localContext, 1100, PostgreSQLParser.RULE_locked_rels_list); + this.enterRule(localContext, 1096, PostgreSQLParser.RULE_locked_rels_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 9144; + this.state = 9053; this.match(PostgreSQLParser.KW_OF); - this.state = 9145; + this.state = 9054; this.qualified_name_list(); } } @@ -45497,36 +46038,36 @@ export class PostgreSQLParser extends antlr.Parser { } public values_clause(): Values_clauseContext { let localContext = new Values_clauseContext(this.context, this.state); - this.enterRule(localContext, 1102, PostgreSQLParser.RULE_values_clause); + this.enterRule(localContext, 1098, PostgreSQLParser.RULE_values_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9147; + this.state = 9056; this.match(PostgreSQLParser.KW_VALUES); - this.state = 9148; + this.state = 9057; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9149; + this.state = 9058; this.expr_list(); - this.state = 9150; + this.state = 9059; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9158; + this.state = 9067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9151; + this.state = 9060; this.match(PostgreSQLParser.COMMA); - this.state = 9152; + this.state = 9061; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9153; + this.state = 9062; this.expr_list(); - this.state = 9154; + this.state = 9063; this.match(PostgreSQLParser.CLOSE_PAREN); } } - this.state = 9160; + this.state = 9069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -45548,13 +46089,13 @@ export class PostgreSQLParser extends antlr.Parser { } public from_clause(): From_clauseContext { let localContext = new From_clauseContext(this.context, this.state); - this.enterRule(localContext, 1104, PostgreSQLParser.RULE_from_clause); + this.enterRule(localContext, 1100, PostgreSQLParser.RULE_from_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9161; + this.state = 9070; this.match(PostgreSQLParser.KW_FROM); - this.state = 9162; + this.state = 9071; this.from_list(); } } @@ -45574,30 +46115,30 @@ export class PostgreSQLParser extends antlr.Parser { } public from_list(): From_listContext { let localContext = new From_listContext(this.context, this.state); - this.enterRule(localContext, 1106, PostgreSQLParser.RULE_from_list); + this.enterRule(localContext, 1102, PostgreSQLParser.RULE_from_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9164; + this.state = 9073; this.table_ref(); - this.state = 9169; + this.state = 9078; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 900, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 906, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9165; + this.state = 9074; this.match(PostgreSQLParser.COMMA); - this.state = 9166; + this.state = 9075; this.table_ref(); } } } - this.state = 9171; + this.state = 9080; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 900, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 906, this.context); } } } @@ -45617,49 +46158,49 @@ export class PostgreSQLParser extends antlr.Parser { } public table_ref(): Table_refContext { let localContext = new Table_refContext(this.context, this.state); - this.enterRule(localContext, 1108, PostgreSQLParser.RULE_table_ref); + this.enterRule(localContext, 1104, PostgreSQLParser.RULE_table_ref); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9233; + this.state = 9142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 915, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: { - this.state = 9174; + this.state = 9083; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 901, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { case 1: { - this.state = 9172; + this.state = 9081; this.relation_expr(); } break; case 2: { - this.state = 9173; + this.state = 9082; this.view_relation_expr(); } break; } - this.state = 9177; + this.state = 9086; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 902, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 9176; + this.state = 9085; this.opt_alias_clause(); } break; } - this.state = 9180; + this.state = 9089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 472) { { - this.state = 9179; + this.state = 9088; this.tablesample_clause(); } } @@ -45668,14 +46209,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 9182; + this.state = 9091; this.func_table(); - this.state = 9184; + this.state = 9093; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { case 1: { - this.state = 9183; + this.state = 9092; this.func_alias_clause(); } break; @@ -45684,14 +46225,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 3: { - this.state = 9186; + this.state = 9095; this.xmltable(); - this.state = 9188; + this.state = 9097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: { - this.state = 9187; + this.state = 9096; this.opt_alias_clause(); } break; @@ -45700,14 +46241,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 4: { - this.state = 9190; + this.state = 9099; this.select_with_parens(); - this.state = 9192; + this.state = 9101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 912, this.context) ) { case 1: { - this.state = 9191; + this.state = 9100; this.opt_alias_clause(); } break; @@ -45716,21 +46257,21 @@ export class PostgreSQLParser extends antlr.Parser { break; case 5: { - this.state = 9194; + this.state = 9103; this.match(PostgreSQLParser.KW_LATERAL); - this.state = 9207; + this.state = 9116; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: { - this.state = 9195; + this.state = 9104; this.xmltable(); - this.state = 9197; + this.state = 9106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { case 1: { - this.state = 9196; + this.state = 9105; this.opt_alias_clause(); } break; @@ -45739,14 +46280,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 9199; + this.state = 9108; this.func_table(); - this.state = 9201; + this.state = 9110; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 9200; + this.state = 9109; this.func_alias_clause(); } break; @@ -45755,14 +46296,14 @@ export class PostgreSQLParser extends antlr.Parser { break; case 3: { - this.state = 9203; + this.state = 9112; this.select_with_parens(); - this.state = 9205; + this.state = 9114; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 915, this.context) ) { case 1: { - this.state = 9204; + this.state = 9113; this.opt_alias_clause(); } break; @@ -45774,40 +46315,40 @@ export class PostgreSQLParser extends antlr.Parser { break; case 6: { - this.state = 9209; + this.state = 9118; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9210; + this.state = 9119; this.table_ref(); - this.state = 9227; + this.state = 9136; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CROSS: { - this.state = 9211; + this.state = 9120; this.match(PostgreSQLParser.KW_CROSS); - this.state = 9212; + this.state = 9121; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9213; + this.state = 9122; this.table_ref(); } break; case PostgreSQLParser.KW_NATURAL: { - this.state = 9214; + this.state = 9123; this.match(PostgreSQLParser.KW_NATURAL); - this.state = 9216; + this.state = 9125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9215; + this.state = 9124; this.join_type(); } } - this.state = 9218; + this.state = 9127; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9219; + this.state = 9128; this.table_ref(); } break; @@ -45817,21 +46358,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LEFT: case PostgreSQLParser.KW_RIGHT: { - this.state = 9221; + this.state = 9130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9220; + this.state = 9129; this.join_type(); } } - this.state = 9223; + this.state = 9132; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9224; + this.state = 9133; this.table_ref(); - this.state = 9225; + this.state = 9134; this.join_qual(); } break; @@ -45840,14 +46381,14 @@ export class PostgreSQLParser extends antlr.Parser { default: break; } - this.state = 9229; + this.state = 9138; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9231; + this.state = 9140; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 920, this.context) ) { case 1: { - this.state = 9230; + this.state = 9139; this.opt_alias_clause(); } break; @@ -45855,42 +46396,42 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 9253; + this.state = 9162; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 919, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 925, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 9251; + this.state = 9160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CROSS: { - this.state = 9235; + this.state = 9144; this.match(PostgreSQLParser.KW_CROSS); - this.state = 9236; + this.state = 9145; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9237; + this.state = 9146; this.table_ref(); } break; case PostgreSQLParser.KW_NATURAL: { - this.state = 9238; + this.state = 9147; this.match(PostgreSQLParser.KW_NATURAL); - this.state = 9240; + this.state = 9149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9239; + this.state = 9148; this.join_type(); } } - this.state = 9242; + this.state = 9151; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9243; + this.state = 9152; this.table_ref(); } break; @@ -45900,21 +46441,21 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LEFT: case PostgreSQLParser.KW_RIGHT: { - this.state = 9245; + this.state = 9154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 9244; + this.state = 9153; this.join_type(); } } - this.state = 9247; + this.state = 9156; this.match(PostgreSQLParser.KW_JOIN); - this.state = 9248; + this.state = 9157; this.table_ref(); - this.state = 9249; + this.state = 9158; this.join_qual(); } break; @@ -45923,9 +46464,9 @@ export class PostgreSQLParser extends antlr.Parser { } } } - this.state = 9255; + this.state = 9164; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 919, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 925, this.context); } } } @@ -45945,33 +46486,33 @@ export class PostgreSQLParser extends antlr.Parser { } public alias_clause(): Alias_clauseContext { let localContext = new Alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1110, PostgreSQLParser.RULE_alias_clause); + this.enterRule(localContext, 1106, PostgreSQLParser.RULE_alias_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9257; + this.state = 9166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 9256; + this.state = 9165; this.match(PostgreSQLParser.KW_AS); } } - this.state = 9259; + this.state = 9168; this.colid(); - this.state = 9264; + this.state = 9173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 927, this.context) ) { case 1: { - this.state = 9260; + this.state = 9169; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9261; + this.state = 9170; this.name_list(); - this.state = 9262; + this.state = 9171; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -45994,11 +46535,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_alias_clause(): Opt_alias_clauseContext { let localContext = new Opt_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1112, PostgreSQLParser.RULE_opt_alias_clause); + this.enterRule(localContext, 1108, PostgreSQLParser.RULE_opt_alias_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9266; + this.state = 9175; this.alias_clause(); } } @@ -46018,35 +46559,35 @@ export class PostgreSQLParser extends antlr.Parser { } public func_alias_clause(): Func_alias_clauseContext { let localContext = new Func_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 1114, PostgreSQLParser.RULE_func_alias_clause); + this.enterRule(localContext, 1110, PostgreSQLParser.RULE_func_alias_clause); let _la: number; try { - this.state = 9280; + this.state = 9189; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 930, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9268; + this.state = 9177; this.alias_clause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9274; + this.state = 9183; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AS: { - this.state = 9269; + this.state = 9178; this.match(PostgreSQLParser.KW_AS); - this.state = 9271; + this.state = 9180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 9270; + this.state = 9179; this.colid(); } } @@ -46056,7 +46597,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -46455,18 +46995,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9273; + this.state = 9182; this.colid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 9276; + this.state = 9185; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9277; + this.state = 9186; this.tablefuncelementlist(); - this.state = 9278; + this.state = 9187; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -46488,12 +47028,12 @@ export class PostgreSQLParser extends antlr.Parser { } public join_type(): Join_typeContext { let localContext = new Join_typeContext(this.context, this.state); - this.enterRule(localContext, 1116, PostgreSQLParser.RULE_join_type); + this.enterRule(localContext, 1112, PostgreSQLParser.RULE_join_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9282; + this.state = 9191; _la = this.tokenStream.LA(1); if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { this.errorHandler.recoverInline(this); @@ -46502,12 +47042,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9284; + this.state = 9193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 9283; + this.state = 9192; this.match(PostgreSQLParser.KW_OUTER); } } @@ -46530,30 +47070,30 @@ export class PostgreSQLParser extends antlr.Parser { } public join_qual(): Join_qualContext { let localContext = new Join_qualContext(this.context, this.state); - this.enterRule(localContext, 1118, PostgreSQLParser.RULE_join_qual); + this.enterRule(localContext, 1114, PostgreSQLParser.RULE_join_qual); try { - this.state = 9293; + this.state = 9202; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 1); { - this.state = 9286; + this.state = 9195; this.match(PostgreSQLParser.KW_USING); - this.state = 9287; + this.state = 9196; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9288; + this.state = 9197; this.columnlist(); - this.state = 9289; + this.state = 9198; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 9291; + this.state = 9200; this.match(PostgreSQLParser.KW_ON); - this.state = 9292; + this.state = 9201; this.a_expr(); } break; @@ -46577,71 +47117,50 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_expr(): Relation_exprContext { let localContext = new Relation_exprContext(this.context, this.state); - this.enterRule(localContext, 1120, PostgreSQLParser.RULE_relation_expr); + this.enterRule(localContext, 1116, PostgreSQLParser.RULE_relation_expr); let _la: number; try { - this.state = 9322; + this.state = 9225; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 933, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9296; + this.state = 9205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 9295; + this.state = 9204; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 9298; + this.state = 9207; this.table_name(); - this.state = 9300; + this.state = 9209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 9299; + this.state = 9208; this.match(PostgreSQLParser.STAR); } } - this.state = 9303; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { - case 1: - { - this.state = 9302; - this.columnlist(); - } - break; - } - this.state = 9306; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 930, this.context) ) { - case 1: - { - this.state = 9305; - this.where_clause(); - } - break; - } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9308; + this.state = 9211; this.match(PostgreSQLParser.KW_ONLY); - this.state = 9314; + this.state = 9217; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -47040,17 +47559,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9309; + this.state = 9212; this.table_name(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 9310; + this.state = 9213; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9311; + this.state = 9214; this.table_name(); - this.state = 9312; + this.state = 9215; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -47062,17 +47581,16 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9316; + this.state = 9219; this.match(PostgreSQLParser.KW_IN); - this.state = 9317; + this.state = 9220; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 9320; + this.state = 9223; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -47471,13 +47989,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9318; + this.state = 9221; this.schema_name(); } break; case PostgreSQLParser.KW_CURRENT_SCHEMA: { - this.state = 9319; + this.state = 9222; this.match(PostgreSQLParser.KW_CURRENT_SCHEMA); } break; @@ -47504,53 +48022,33 @@ export class PostgreSQLParser extends antlr.Parser { } public view_relation_expr(): View_relation_exprContext { let localContext = new View_relation_exprContext(this.context, this.state); - this.enterRule(localContext, 1122, PostgreSQLParser.RULE_view_relation_expr); + this.enterRule(localContext, 1118, PostgreSQLParser.RULE_view_relation_expr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9325; + this.state = 9228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 9324; + this.state = 9227; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 9327; + this.state = 9230; this.view_name(); - this.state = 9329; + this.state = 9232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 9328; + this.state = 9231; this.match(PostgreSQLParser.STAR); } } - this.state = 9332; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { - case 1: - { - this.state = 9331; - this.columnlist(); - } - break; - } - this.state = 9335; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { - case 1: - { - this.state = 9334; - this.where_clause(); - } - break; - } } } catch (re) { @@ -47569,59 +48067,59 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_relation_expr(): Publication_relation_exprContext { let localContext = new Publication_relation_exprContext(this.context, this.state); - this.enterRule(localContext, 1124, PostgreSQLParser.RULE_publication_relation_expr); + this.enterRule(localContext, 1120, PostgreSQLParser.RULE_publication_relation_expr); let _la: number; try { - this.state = 9370; + this.state = 9267; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9337; + this.state = 9234; this.match(PostgreSQLParser.KW_TABLE); - this.state = 9339; + this.state = 9236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 9338; + this.state = 9235; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 9341; + this.state = 9238; this.table_name(); - this.state = 9343; + this.state = 9240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 9342; + this.state = 9239; this.match(PostgreSQLParser.STAR); } } - this.state = 9349; + this.state = 9246; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 940, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { case 1: { - this.state = 9345; + this.state = 9242; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9346; + this.state = 9243; this.columnlist(); - this.state = 9347; + this.state = 9244; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 9352; + this.state = 9249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 9351; + this.state = 9248; this.where_clause(); } } @@ -47631,17 +48129,16 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9354; + this.state = 9251; this.match(PostgreSQLParser.KW_TABLE); - this.state = 9355; + this.state = 9252; this.match(PostgreSQLParser.KW_ONLY); - this.state = 9361; + this.state = 9258; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -48040,17 +48537,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9356; + this.state = 9253; this.table_name(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 9357; + this.state = 9254; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9358; + this.state = 9255; this.table_name(); - this.state = 9359; + this.state = 9256; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -48062,19 +48559,18 @@ export class PostgreSQLParser extends antlr.Parser { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9363; + this.state = 9260; this.match(PostgreSQLParser.KW_TABLES); - this.state = 9364; + this.state = 9261; this.match(PostgreSQLParser.KW_IN); - this.state = 9365; + this.state = 9262; this.match(PostgreSQLParser.KW_SCHEMA); - this.state = 9368; + this.state = 9265; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -48473,13 +48969,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9366; + this.state = 9263; this.schema_name(); } break; case PostgreSQLParser.KW_CURRENT_SCHEMA: { - this.state = 9367; + this.state = 9264; this.match(PostgreSQLParser.KW_CURRENT_SCHEMA); } break; @@ -48506,26 +49002,26 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_expr_list(): Relation_expr_listContext { let localContext = new Relation_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1126, PostgreSQLParser.RULE_relation_expr_list); + this.enterRule(localContext, 1122, PostgreSQLParser.RULE_relation_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9372; + this.state = 9269; this.relation_expr(); - this.state = 9377; + this.state = 9274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9373; + this.state = 9270; this.match(PostgreSQLParser.COMMA); - this.state = 9374; + this.state = 9271; this.relation_expr(); } } - this.state = 9379; + this.state = 9276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48547,26 +49043,26 @@ export class PostgreSQLParser extends antlr.Parser { } public publication_relation_expr_list(): Publication_relation_expr_listContext { let localContext = new Publication_relation_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1128, PostgreSQLParser.RULE_publication_relation_expr_list); + this.enterRule(localContext, 1124, PostgreSQLParser.RULE_publication_relation_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9380; + this.state = 9277; this.publication_relation_expr(); - this.state = 9385; + this.state = 9282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9381; + this.state = 9278; this.match(PostgreSQLParser.COMMA); - this.state = 9382; + this.state = 9279; this.publication_relation_expr(); } } - this.state = 9387; + this.state = 9284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48588,29 +49084,29 @@ export class PostgreSQLParser extends antlr.Parser { } public relation_expr_opt_alias(): Relation_expr_opt_aliasContext { let localContext = new Relation_expr_opt_aliasContext(this.context, this.state); - this.enterRule(localContext, 1130, PostgreSQLParser.RULE_relation_expr_opt_alias); + this.enterRule(localContext, 1126, PostgreSQLParser.RULE_relation_expr_opt_alias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9388; + this.state = 9285; this.relation_expr(); - this.state = 9393; + this.state = 9290; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { case 1: { - this.state = 9390; + this.state = 9287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 9389; + this.state = 9286; this.match(PostgreSQLParser.KW_AS); } } - this.state = 9392; + this.state = 9289; this.colid(); } break; @@ -48633,26 +49129,26 @@ export class PostgreSQLParser extends antlr.Parser { } public tablesample_clause(): Tablesample_clauseContext { let localContext = new Tablesample_clauseContext(this.context, this.state); - this.enterRule(localContext, 1132, PostgreSQLParser.RULE_tablesample_clause); + this.enterRule(localContext, 1128, PostgreSQLParser.RULE_tablesample_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9395; + this.state = 9292; this.match(PostgreSQLParser.KW_TABLESAMPLE); - this.state = 9396; + this.state = 9293; this.function_name(); - this.state = 9397; + this.state = 9294; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9398; + this.state = 9295; this.expr_list(); - this.state = 9399; + this.state = 9296; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9401; + this.state = 9298; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { case 1: { - this.state = 9400; + this.state = 9297; this.opt_repeatable_clause(); } break; @@ -48675,17 +49171,17 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_repeatable_clause(): Opt_repeatable_clauseContext { let localContext = new Opt_repeatable_clauseContext(this.context, this.state); - this.enterRule(localContext, 1134, PostgreSQLParser.RULE_opt_repeatable_clause); + this.enterRule(localContext, 1130, PostgreSQLParser.RULE_opt_repeatable_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9403; + this.state = 9300; this.match(PostgreSQLParser.KW_REPEATABLE); - this.state = 9404; + this.state = 9301; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9405; + this.state = 9302; this.a_expr(); - this.state = 9406; + this.state = 9303; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -48705,22 +49201,22 @@ export class PostgreSQLParser extends antlr.Parser { } public func_table(): Func_tableContext { let localContext = new Func_tableContext(this.context, this.state); - this.enterRule(localContext, 1136, PostgreSQLParser.RULE_func_table); + this.enterRule(localContext, 1132, PostgreSQLParser.RULE_func_table); try { - this.state = 9420; + this.state = 9317; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9408; + this.state = 9305; this.func_expr_windowless(); - this.state = 9410; + this.state = 9307; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { case 1: { - this.state = 9409; + this.state = 9306; this.opt_ordinality(); } break; @@ -48730,22 +49226,22 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9412; + this.state = 9309; this.match(PostgreSQLParser.KW_ROWS); - this.state = 9413; + this.state = 9310; this.match(PostgreSQLParser.KW_FROM); - this.state = 9414; + this.state = 9311; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9415; + this.state = 9312; this.rowsfrom_list(); - this.state = 9416; + this.state = 9313; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9418; + this.state = 9315; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { case 1: { - this.state = 9417; + this.state = 9314; this.opt_ordinality(); } break; @@ -48770,19 +49266,19 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsfrom_item(): Rowsfrom_itemContext { let localContext = new Rowsfrom_itemContext(this.context, this.state); - this.enterRule(localContext, 1138, PostgreSQLParser.RULE_rowsfrom_item); + this.enterRule(localContext, 1134, PostgreSQLParser.RULE_rowsfrom_item); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9422; + this.state = 9319; this.func_expr_windowless(); - this.state = 9424; + this.state = 9321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 9423; + this.state = 9320; this.opt_col_def_list(); } } @@ -48805,26 +49301,26 @@ export class PostgreSQLParser extends antlr.Parser { } public rowsfrom_list(): Rowsfrom_listContext { let localContext = new Rowsfrom_listContext(this.context, this.state); - this.enterRule(localContext, 1140, PostgreSQLParser.RULE_rowsfrom_list); + this.enterRule(localContext, 1136, PostgreSQLParser.RULE_rowsfrom_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9426; + this.state = 9323; this.rowsfrom_item(); - this.state = 9431; + this.state = 9328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9427; + this.state = 9324; this.match(PostgreSQLParser.COMMA); - this.state = 9428; + this.state = 9325; this.rowsfrom_item(); } } - this.state = 9433; + this.state = 9330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48846,17 +49342,17 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_col_def_list(): Opt_col_def_listContext { let localContext = new Opt_col_def_listContext(this.context, this.state); - this.enterRule(localContext, 1142, PostgreSQLParser.RULE_opt_col_def_list); + this.enterRule(localContext, 1138, PostgreSQLParser.RULE_opt_col_def_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 9434; + this.state = 9331; this.match(PostgreSQLParser.KW_AS); - this.state = 9435; + this.state = 9332; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9436; + this.state = 9333; this.tablefuncelementlist(); - this.state = 9437; + this.state = 9334; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -48876,13 +49372,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_ordinality(): Opt_ordinalityContext { let localContext = new Opt_ordinalityContext(this.context, this.state); - this.enterRule(localContext, 1144, PostgreSQLParser.RULE_opt_ordinality); + this.enterRule(localContext, 1140, PostgreSQLParser.RULE_opt_ordinality); try { this.enterOuterAlt(localContext, 1); { - this.state = 9439; + this.state = 9336; this.match(PostgreSQLParser.KW_WITH); - this.state = 9440; + this.state = 9337; this.match(PostgreSQLParser.KW_ORDINALITY); } } @@ -48902,13 +49398,13 @@ export class PostgreSQLParser extends antlr.Parser { } public where_clause(): Where_clauseContext { let localContext = new Where_clauseContext(this.context, this.state); - this.enterRule(localContext, 1146, PostgreSQLParser.RULE_where_clause); + this.enterRule(localContext, 1142, PostgreSQLParser.RULE_where_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9442; + this.state = 9339; this.match(PostgreSQLParser.KW_WHERE); - this.state = 9443; + this.state = 9340; this.column_expr_noparen(); } } @@ -48928,28 +49424,28 @@ export class PostgreSQLParser extends antlr.Parser { } public where_or_current_clause(): Where_or_current_clauseContext { let localContext = new Where_or_current_clauseContext(this.context, this.state); - this.enterRule(localContext, 1148, PostgreSQLParser.RULE_where_or_current_clause); + this.enterRule(localContext, 1144, PostgreSQLParser.RULE_where_or_current_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 9445; + this.state = 9342; this.match(PostgreSQLParser.KW_WHERE); - this.state = 9450; + this.state = 9347; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { case 1: { - this.state = 9446; + this.state = 9343; this.match(PostgreSQLParser.KW_CURRENT); - this.state = 9447; + this.state = 9344; this.match(PostgreSQLParser.KW_OF); - this.state = 9448; + this.state = 9345; this.cursor_name(); } break; case 2: { - this.state = 9449; + this.state = 9346; this.a_expr(); } break; @@ -48972,11 +49468,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opttablefuncelementlist(): OpttablefuncelementlistContext { let localContext = new OpttablefuncelementlistContext(this.context, this.state); - this.enterRule(localContext, 1150, PostgreSQLParser.RULE_opttablefuncelementlist); + this.enterRule(localContext, 1146, PostgreSQLParser.RULE_opttablefuncelementlist); try { this.enterOuterAlt(localContext, 1); { - this.state = 9452; + this.state = 9349; this.tablefuncelementlist(); } } @@ -48996,26 +49492,26 @@ export class PostgreSQLParser extends antlr.Parser { } public tablefuncelementlist(): TablefuncelementlistContext { let localContext = new TablefuncelementlistContext(this.context, this.state); - this.enterRule(localContext, 1152, PostgreSQLParser.RULE_tablefuncelementlist); + this.enterRule(localContext, 1148, PostgreSQLParser.RULE_tablefuncelementlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9454; + this.state = 9351; this.tablefuncelement(); - this.state = 9459; + this.state = 9356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9455; + this.state = 9352; this.match(PostgreSQLParser.COMMA); - this.state = 9456; + this.state = 9353; this.tablefuncelement(); } } - this.state = 9461; + this.state = 9358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49037,20 +49533,20 @@ export class PostgreSQLParser extends antlr.Parser { } public tablefuncelement(): TablefuncelementContext { let localContext = new TablefuncelementContext(this.context, this.state); - this.enterRule(localContext, 1154, PostgreSQLParser.RULE_tablefuncelement); + this.enterRule(localContext, 1150, PostgreSQLParser.RULE_tablefuncelement); try { this.enterOuterAlt(localContext, 1); { - this.state = 9462; + this.state = 9359; this.colid(); - this.state = 9463; + this.state = 9360; this.typename(); - this.state = 9465; + this.state = 9362; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 959, this.context) ) { case 1: { - this.state = 9464; + this.state = 9361; this.opt_collate_clause(); } break; @@ -49073,53 +49569,53 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable(): XmltableContext { let localContext = new XmltableContext(this.context, this.state); - this.enterRule(localContext, 1156, PostgreSQLParser.RULE_xmltable); + this.enterRule(localContext, 1152, PostgreSQLParser.RULE_xmltable); try { this.enterOuterAlt(localContext, 1); { - this.state = 9467; + this.state = 9364; this.match(PostgreSQLParser.KW_XMLTABLE); - this.state = 9468; + this.state = 9365; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9484; + this.state = 9381; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 958, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 9469; + this.state = 9366; this.c_expr(); - this.state = 9470; + this.state = 9367; this.xmlexists_argument(); - this.state = 9471; + this.state = 9368; this.match(PostgreSQLParser.KW_COLUMNS); - this.state = 9472; + this.state = 9369; this.xmltable_column_list(); } break; case 2: { - this.state = 9474; + this.state = 9371; this.match(PostgreSQLParser.KW_XMLNAMESPACES); - this.state = 9475; + this.state = 9372; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9476; + this.state = 9373; this.xml_namespace_list(); - this.state = 9477; + this.state = 9374; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9478; + this.state = 9375; this.match(PostgreSQLParser.COMMA); - this.state = 9479; + this.state = 9376; this.c_expr(); - this.state = 9480; + this.state = 9377; this.xmlexists_argument(); - this.state = 9481; + this.state = 9378; this.match(PostgreSQLParser.KW_COLUMNS); - this.state = 9482; + this.state = 9379; this.xmltable_column_list(); } break; } - this.state = 9486; + this.state = 9383; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -49139,26 +49635,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_list(): Xmltable_column_listContext { let localContext = new Xmltable_column_listContext(this.context, this.state); - this.enterRule(localContext, 1158, PostgreSQLParser.RULE_xmltable_column_list); + this.enterRule(localContext, 1154, PostgreSQLParser.RULE_xmltable_column_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9488; + this.state = 9385; this.xmltable_column_el(); - this.state = 9493; + this.state = 9390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9489; + this.state = 9386; this.match(PostgreSQLParser.COMMA); - this.state = 9490; + this.state = 9387; this.xmltable_column_el(); } } - this.state = 9495; + this.state = 9392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49180,20 +49676,19 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_el(): Xmltable_column_elContext { let localContext = new Xmltable_column_elContext(this.context, this.state); - this.enterRule(localContext, 1160, PostgreSQLParser.RULE_xmltable_column_el); + this.enterRule(localContext, 1156, PostgreSQLParser.RULE_xmltable_column_el); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9496; + this.state = 9393; this.colid(); - this.state = 9503; + this.state = 9400; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -49613,14 +50108,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9497; + this.state = 9394; this.typename(); - this.state = 9499; + this.state = 9396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584) { { - this.state = 9498; + this.state = 9395; this.xmltable_column_option_list(); } } @@ -49629,9 +50124,9 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_FOR: { - this.state = 9501; + this.state = 9398; this.match(PostgreSQLParser.KW_FOR); - this.state = 9502; + this.state = 9399; this.match(PostgreSQLParser.KW_ORDINALITY); } break; @@ -49656,25 +50151,25 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_option_list(): Xmltable_column_option_listContext { let localContext = new Xmltable_column_option_listContext(this.context, this.state); - this.enterRule(localContext, 1162, PostgreSQLParser.RULE_xmltable_column_option_list); + this.enterRule(localContext, 1158, PostgreSQLParser.RULE_xmltable_column_option_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9506; + this.state = 9403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 9505; + this.state = 9402; this.xmltable_column_option_el(); } } - this.state = 9508; + this.state = 9405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584); + } while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 32771) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 268451969) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 540945) !== 0) || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584); } } catch (re) { @@ -49693,42 +50188,42 @@ export class PostgreSQLParser extends antlr.Parser { } public xmltable_column_option_el(): Xmltable_column_option_elContext { let localContext = new Xmltable_column_option_elContext(this.context, this.state); - this.enterRule(localContext, 1164, PostgreSQLParser.RULE_xmltable_column_option_el); + this.enterRule(localContext, 1160, PostgreSQLParser.RULE_xmltable_column_option_el); try { - this.state = 9518; + this.state = 9415; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9510; + this.state = 9407; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 9511; + this.state = 9408; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9512; + this.state = 9409; this.identifier(); - this.state = 9513; + this.state = 9410; this.a_expr(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9515; + this.state = 9412; this.match(PostgreSQLParser.KW_NOT); - this.state = 9516; + this.state = 9413; this.match(PostgreSQLParser.KW_NULL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9517; + this.state = 9414; this.match(PostgreSQLParser.KW_NULL); } break; @@ -49750,26 +50245,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_namespace_list(): Xml_namespace_listContext { let localContext = new Xml_namespace_listContext(this.context, this.state); - this.enterRule(localContext, 1166, PostgreSQLParser.RULE_xml_namespace_list); + this.enterRule(localContext, 1162, PostgreSQLParser.RULE_xml_namespace_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9520; + this.state = 9417; this.xml_namespace_el(); - this.state = 9525; + this.state = 9422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 9521; + this.state = 9418; this.match(PostgreSQLParser.COMMA); - this.state = 9522; + this.state = 9419; this.xml_namespace_el(); } } - this.state = 9527; + this.state = 9424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49791,28 +50286,28 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_namespace_el(): Xml_namespace_elContext { let localContext = new Xml_namespace_elContext(this.context, this.state); - this.enterRule(localContext, 1168, PostgreSQLParser.RULE_xml_namespace_el); + this.enterRule(localContext, 1164, PostgreSQLParser.RULE_xml_namespace_el); try { - this.state = 9534; + this.state = 9431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9528; + this.state = 9425; this.b_expr(0); - this.state = 9529; + this.state = 9426; this.match(PostgreSQLParser.KW_AS); - this.state = 9530; + this.state = 9427; this.collabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9532; + this.state = 9429; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 9533; + this.state = 9430; this.b_expr(0); } break; @@ -49834,50 +50329,50 @@ export class PostgreSQLParser extends antlr.Parser { } public typename(): TypenameContext { let localContext = new TypenameContext(this.context, this.state); - this.enterRule(localContext, 1170, PostgreSQLParser.RULE_typename); + this.enterRule(localContext, 1166, PostgreSQLParser.RULE_typename); let _la: number; try { - this.state = 9554; + this.state = 9451; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9537; + this.state = 9434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 9536; + this.state = 9433; this.match(PostgreSQLParser.KW_SETOF); } } - this.state = 9539; + this.state = 9436; this.simpletypename(); - this.state = 9548; + this.state = 9445; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { case 1: { - this.state = 9540; + this.state = 9437; this.opt_array_bounds(); } break; case 2: { - this.state = 9541; + this.state = 9438; this.match(PostgreSQLParser.KW_ARRAY); - this.state = 9546; + this.state = 9443; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { case 1: { - this.state = 9542; + this.state = 9439; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 9543; + this.state = 9440; this.iconst(); - this.state = 9544; + this.state = 9441; this.match(PostgreSQLParser.CLOSE_BRACKET); } break; @@ -49890,11 +50385,11 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9550; + this.state = 9447; this.qualified_name(); - this.state = 9551; + this.state = 9448; this.match(PostgreSQLParser.PERCENT); - this.state = 9552; + this.state = 9449; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -49923,39 +50418,39 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_array_bounds(): Opt_array_boundsContext { let localContext = new Opt_array_boundsContext(this.context, this.state); - this.enterRule(localContext, 1172, PostgreSQLParser.RULE_opt_array_bounds); + this.enterRule(localContext, 1168, PostgreSQLParser.RULE_opt_array_bounds); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9563; + this.state = 9460; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 971, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 973, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9556; + this.state = 9453; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 9558; + this.state = 9455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 571) { { - this.state = 9557; + this.state = 9454; this.iconst(); } } - this.state = 9560; + this.state = 9457; this.match(PostgreSQLParser.CLOSE_BRACKET); } } } - this.state = 9565; + this.state = 9462; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 971, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 973, this.context); } } } @@ -49975,62 +50470,62 @@ export class PostgreSQLParser extends antlr.Parser { } public simpletypename(): SimpletypenameContext { let localContext = new SimpletypenameContext(this.context, this.state); - this.enterRule(localContext, 1174, PostgreSQLParser.RULE_simpletypename); + this.enterRule(localContext, 1170, PostgreSQLParser.RULE_simpletypename); try { - this.state = 9581; + this.state = 9478; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9566; + this.state = 9463; this.generictype(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9567; + this.state = 9464; this.numeric(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9568; + this.state = 9465; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9569; + this.state = 9466; this.character(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9570; + this.state = 9467; this.constdatetime(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9571; + this.state = 9468; this.constinterval(); - this.state = 9579; + this.state = 9476; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: { - this.state = 9573; + this.state = 9470; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: { - this.state = 9572; + this.state = 9469; this.opt_interval(); } break; @@ -50039,11 +50534,11 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 9575; + this.state = 9472; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9576; + this.state = 9473; this.iconst(); - this.state = 9577; + this.state = 9474; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -50068,9 +50563,9 @@ export class PostgreSQLParser extends antlr.Parser { } public consttypename(): ConsttypenameContext { let localContext = new ConsttypenameContext(this.context, this.state); - this.enterRule(localContext, 1176, PostgreSQLParser.RULE_consttypename); + this.enterRule(localContext, 1172, PostgreSQLParser.RULE_consttypename); try { - this.state = 9587; + this.state = 9484; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DOUBLE: @@ -50086,14 +50581,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SMALLINT: this.enterOuterAlt(localContext, 1); { - this.state = 9583; + this.state = 9480; this.numeric(); } break; case PostgreSQLParser.KW_BIT: this.enterOuterAlt(localContext, 2); { - this.state = 9584; + this.state = 9481; this.constbit(); } break; @@ -50104,7 +50599,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_VARCHAR: this.enterOuterAlt(localContext, 3); { - this.state = 9585; + this.state = 9482; this.constcharacter(); } break; @@ -50112,7 +50607,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 9586; + this.state = 9483; this.constdatetime(); } break; @@ -50136,28 +50631,28 @@ export class PostgreSQLParser extends antlr.Parser { } public generictype(): GenerictypeContext { let localContext = new GenerictypeContext(this.context, this.state); - this.enterRule(localContext, 1178, PostgreSQLParser.RULE_generictype); + this.enterRule(localContext, 1174, PostgreSQLParser.RULE_generictype); try { this.enterOuterAlt(localContext, 1); { - this.state = 9589; + this.state = 9486; this.type_function_name(); - this.state = 9591; + this.state = 9488; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 9590; + this.state = 9487; this.attrs(); } break; } - this.state = 9594; + this.state = 9491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { case 1: { - this.state = 9593; + this.state = 9490; this.opt_type_modifiers(); } break; @@ -50180,15 +50675,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_type_modifiers(): Opt_type_modifiersContext { let localContext = new Opt_type_modifiersContext(this.context, this.state); - this.enterRule(localContext, 1180, PostgreSQLParser.RULE_opt_type_modifiers); + this.enterRule(localContext, 1176, PostgreSQLParser.RULE_opt_type_modifiers); try { this.enterOuterAlt(localContext, 1); { - this.state = 9596; + this.state = 9493; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9597; + this.state = 9494; this.expr_list(); - this.state = 9598; + this.state = 9495; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -50208,57 +50703,57 @@ export class PostgreSQLParser extends antlr.Parser { } public numeric(): NumericContext { let localContext = new NumericContext(this.context, this.state); - this.enterRule(localContext, 1182, PostgreSQLParser.RULE_numeric); + this.enterRule(localContext, 1178, PostgreSQLParser.RULE_numeric); try { - this.state = 9624; + this.state = 9521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_INT: this.enterOuterAlt(localContext, 1); { - this.state = 9600; + this.state = 9497; this.match(PostgreSQLParser.KW_INT); } break; case PostgreSQLParser.KW_INTEGER: this.enterOuterAlt(localContext, 2); { - this.state = 9601; + this.state = 9498; this.match(PostgreSQLParser.KW_INTEGER); } break; case PostgreSQLParser.KW_SMALLINT: this.enterOuterAlt(localContext, 3); { - this.state = 9602; + this.state = 9499; this.match(PostgreSQLParser.KW_SMALLINT); } break; case PostgreSQLParser.KW_BIGINT: this.enterOuterAlt(localContext, 4); { - this.state = 9603; + this.state = 9500; this.match(PostgreSQLParser.KW_BIGINT); } break; case PostgreSQLParser.KW_REAL: this.enterOuterAlt(localContext, 5); { - this.state = 9604; + this.state = 9501; this.match(PostgreSQLParser.KW_REAL); } break; case PostgreSQLParser.KW_FLOAT: this.enterOuterAlt(localContext, 6); { - this.state = 9605; + this.state = 9502; this.match(PostgreSQLParser.KW_FLOAT); - this.state = 9607; + this.state = 9504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 980, this.context) ) { case 1: { - this.state = 9606; + this.state = 9503; this.opt_float(); } break; @@ -50268,23 +50763,23 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DOUBLE: this.enterOuterAlt(localContext, 7); { - this.state = 9609; + this.state = 9506; this.match(PostgreSQLParser.KW_DOUBLE); - this.state = 9610; + this.state = 9507; this.match(PostgreSQLParser.KW_PRECISION); } break; case PostgreSQLParser.KW_DECIMAL: this.enterOuterAlt(localContext, 8); { - this.state = 9611; + this.state = 9508; this.match(PostgreSQLParser.KW_DECIMAL); - this.state = 9613; + this.state = 9510; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 981, this.context) ) { case 1: { - this.state = 9612; + this.state = 9509; this.opt_type_modifiers(); } break; @@ -50294,14 +50789,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DEC: this.enterOuterAlt(localContext, 9); { - this.state = 9615; + this.state = 9512; this.match(PostgreSQLParser.KW_DEC); - this.state = 9617; + this.state = 9514; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 980, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { case 1: { - this.state = 9616; + this.state = 9513; this.opt_type_modifiers(); } break; @@ -50311,14 +50806,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NUMERIC: this.enterOuterAlt(localContext, 10); { - this.state = 9619; + this.state = 9516; this.match(PostgreSQLParser.KW_NUMERIC); - this.state = 9621; + this.state = 9518; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 981, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { case 1: { - this.state = 9620; + this.state = 9517; this.opt_type_modifiers(); } break; @@ -50328,7 +50823,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_BOOLEAN: this.enterOuterAlt(localContext, 11); { - this.state = 9623; + this.state = 9520; this.match(PostgreSQLParser.KW_BOOLEAN); } break; @@ -50352,15 +50847,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_float(): Opt_floatContext { let localContext = new Opt_floatContext(this.context, this.state); - this.enterRule(localContext, 1184, PostgreSQLParser.RULE_opt_float); + this.enterRule(localContext, 1180, PostgreSQLParser.RULE_opt_float); try { this.enterOuterAlt(localContext, 1); { - this.state = 9626; + this.state = 9523; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9627; + this.state = 9524; this.iconst(); - this.state = 9628; + this.state = 9525; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -50380,22 +50875,22 @@ export class PostgreSQLParser extends antlr.Parser { } public bit(): BitContext { let localContext = new BitContext(this.context, this.state); - this.enterRule(localContext, 1186, PostgreSQLParser.RULE_bit); + this.enterRule(localContext, 1182, PostgreSQLParser.RULE_bit); try { - this.state = 9632; + this.state = 9529; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 985, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9630; + this.state = 9527; this.bitwithlength(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9631; + this.state = 9528; this.bitwithoutlength(); } break; @@ -50417,22 +50912,22 @@ export class PostgreSQLParser extends antlr.Parser { } public constbit(): ConstbitContext { let localContext = new ConstbitContext(this.context, this.state); - this.enterRule(localContext, 1188, PostgreSQLParser.RULE_constbit); + this.enterRule(localContext, 1184, PostgreSQLParser.RULE_constbit); try { - this.state = 9636; + this.state = 9533; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9634; + this.state = 9531; this.bitwithlength(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9635; + this.state = 9532; this.bitwithoutlength(); } break; @@ -50454,28 +50949,28 @@ export class PostgreSQLParser extends antlr.Parser { } public bitwithlength(): BitwithlengthContext { let localContext = new BitwithlengthContext(this.context, this.state); - this.enterRule(localContext, 1190, PostgreSQLParser.RULE_bitwithlength); + this.enterRule(localContext, 1186, PostgreSQLParser.RULE_bitwithlength); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9638; + this.state = 9535; this.match(PostgreSQLParser.KW_BIT); - this.state = 9640; + this.state = 9537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 9639; + this.state = 9536; this.opt_varying(); } } - this.state = 9642; + this.state = 9539; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9643; + this.state = 9540; this.expr_list(); - this.state = 9644; + this.state = 9541; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -50495,18 +50990,18 @@ export class PostgreSQLParser extends antlr.Parser { } public bitwithoutlength(): BitwithoutlengthContext { let localContext = new BitwithoutlengthContext(this.context, this.state); - this.enterRule(localContext, 1192, PostgreSQLParser.RULE_bitwithoutlength); + this.enterRule(localContext, 1188, PostgreSQLParser.RULE_bitwithoutlength); try { this.enterOuterAlt(localContext, 1); { - this.state = 9646; + this.state = 9543; this.match(PostgreSQLParser.KW_BIT); - this.state = 9648; + this.state = 9545; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { case 1: { - this.state = 9647; + this.state = 9544; this.opt_varying(); } break; @@ -50529,22 +51024,22 @@ export class PostgreSQLParser extends antlr.Parser { } public character(): CharacterContext { let localContext = new CharacterContext(this.context, this.state); - this.enterRule(localContext, 1194, PostgreSQLParser.RULE_character); + this.enterRule(localContext, 1190, PostgreSQLParser.RULE_character); try { this.enterOuterAlt(localContext, 1); { - this.state = 9650; + this.state = 9547; this.character_c(); - this.state = 9655; + this.state = 9552; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { case 1: { - this.state = 9651; + this.state = 9548; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9652; + this.state = 9549; this.iconst(); - this.state = 9653; + this.state = 9550; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -50567,23 +51062,23 @@ export class PostgreSQLParser extends antlr.Parser { } public constcharacter(): ConstcharacterContext { let localContext = new ConstcharacterContext(this.context, this.state); - this.enterRule(localContext, 1196, PostgreSQLParser.RULE_constcharacter); + this.enterRule(localContext, 1192, PostgreSQLParser.RULE_constcharacter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9657; + this.state = 9554; this.character_c(); - this.state = 9662; + this.state = 9559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 9658; + this.state = 9555; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9659; + this.state = 9556; this.iconst(); - this.state = 9660; + this.state = 9557; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -50606,10 +51101,10 @@ export class PostgreSQLParser extends antlr.Parser { } public character_c(): Character_cContext { let localContext = new Character_cContext(this.context, this.state); - this.enterRule(localContext, 1198, PostgreSQLParser.RULE_character_c); + this.enterRule(localContext, 1194, PostgreSQLParser.RULE_character_c); let _la: number; try { - this.state = 9674; + this.state = 9571; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CHAR: @@ -50617,7 +51112,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 9664; + this.state = 9561; _la = this.tokenStream.LA(1); if(!(((((_la - 391)) & ~0x1F) === 0 && ((1 << (_la - 391)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -50626,12 +51121,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9666; + this.state = 9563; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { - this.state = 9665; + this.state = 9562; this.opt_varying(); } break; @@ -50641,16 +51136,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 9668; + this.state = 9565; this.match(PostgreSQLParser.KW_VARCHAR); } break; case PostgreSQLParser.KW_NATIONAL: this.enterOuterAlt(localContext, 3); { - this.state = 9669; + this.state = 9566; this.match(PostgreSQLParser.KW_NATIONAL); - this.state = 9670; + this.state = 9567; _la = this.tokenStream.LA(1); if(!(_la === 391 || _la === 392)) { this.errorHandler.recoverInline(this); @@ -50659,12 +51154,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9672; + this.state = 9569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { case 1: { - this.state = 9671; + this.state = 9568; this.opt_varying(); } break; @@ -50691,11 +51186,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_varying(): Opt_varyingContext { let localContext = new Opt_varyingContext(this.context, this.state); - this.enterRule(localContext, 1200, PostgreSQLParser.RULE_opt_varying); + this.enterRule(localContext, 1196, PostgreSQLParser.RULE_opt_varying); try { this.enterOuterAlt(localContext, 1); { - this.state = 9676; + this.state = 9573; this.match(PostgreSQLParser.KW_VARYING); } } @@ -50715,12 +51210,12 @@ export class PostgreSQLParser extends antlr.Parser { } public constdatetime(): ConstdatetimeContext { let localContext = new ConstdatetimeContext(this.context, this.state); - this.enterRule(localContext, 1202, PostgreSQLParser.RULE_constdatetime); + this.enterRule(localContext, 1198, PostgreSQLParser.RULE_constdatetime); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9678; + this.state = 9575; _la = this.tokenStream.LA(1); if(!(_la === 418 || _la === 419)) { this.errorHandler.recoverInline(this); @@ -50729,26 +51224,26 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9683; + this.state = 9580; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { case 1: { - this.state = 9679; + this.state = 9576; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9680; + this.state = 9577; this.iconst(); - this.state = 9681; + this.state = 9578; this.match(PostgreSQLParser.CLOSE_PAREN); } break; } - this.state = 9686; + this.state = 9583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: { - this.state = 9685; + this.state = 9582; this.opt_timezone(); } break; @@ -50771,11 +51266,11 @@ export class PostgreSQLParser extends antlr.Parser { } public constinterval(): ConstintervalContext { let localContext = new ConstintervalContext(this.context, this.state); - this.enterRule(localContext, 1204, PostgreSQLParser.RULE_constinterval); + this.enterRule(localContext, 1200, PostgreSQLParser.RULE_constinterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 9688; + this.state = 9585; this.match(PostgreSQLParser.KW_INTERVAL); } } @@ -50795,30 +51290,30 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_timezone(): Opt_timezoneContext { let localContext = new Opt_timezoneContext(this.context, this.state); - this.enterRule(localContext, 1206, PostgreSQLParser.RULE_opt_timezone); + this.enterRule(localContext, 1202, PostgreSQLParser.RULE_opt_timezone); try { - this.state = 9696; + this.state = 9593; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 9690; + this.state = 9587; this.match(PostgreSQLParser.KW_WITH); - this.state = 9691; + this.state = 9588; this.match(PostgreSQLParser.KW_TIME); - this.state = 9692; + this.state = 9589; this.match(PostgreSQLParser.KW_ZONE); } break; case PostgreSQLParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 9693; + this.state = 9590; this.match(PostgreSQLParser.KW_WITHOUT); - this.state = 9694; + this.state = 9591; this.match(PostgreSQLParser.KW_TIME); - this.state = 9695; + this.state = 9592; this.match(PostgreSQLParser.KW_ZONE); } break; @@ -50842,89 +51337,89 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_interval(): Opt_intervalContext { let localContext = new Opt_intervalContext(this.context, this.state); - this.enterRule(localContext, 1208, PostgreSQLParser.RULE_opt_interval); + this.enterRule(localContext, 1204, PostgreSQLParser.RULE_opt_interval); try { - this.state = 9723; + this.state = 9620; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 9698; + this.state = 9595; this.match(PostgreSQLParser.KW_YEAR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 9699; + this.state = 9596; this.match(PostgreSQLParser.KW_MONTH); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 9700; + this.state = 9597; this.match(PostgreSQLParser.KW_DAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 9701; + this.state = 9598; this.match(PostgreSQLParser.KW_HOUR); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 9702; + this.state = 9599; this.match(PostgreSQLParser.KW_MINUTE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 9703; + this.state = 9600; this.interval_second(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 9704; + this.state = 9601; this.match(PostgreSQLParser.KW_YEAR); - this.state = 9705; + this.state = 9602; this.match(PostgreSQLParser.KW_TO); - this.state = 9706; + this.state = 9603; this.match(PostgreSQLParser.KW_MONTH); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 9707; + this.state = 9604; this.match(PostgreSQLParser.KW_DAY); - this.state = 9708; + this.state = 9605; this.match(PostgreSQLParser.KW_TO); - this.state = 9712; + this.state = 9609; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_HOUR: { - this.state = 9709; + this.state = 9606; this.match(PostgreSQLParser.KW_HOUR); } break; case PostgreSQLParser.KW_MINUTE: { - this.state = 9710; + this.state = 9607; this.match(PostgreSQLParser.KW_MINUTE); } break; case PostgreSQLParser.KW_SECOND: { - this.state = 9711; + this.state = 9608; this.interval_second(); } break; @@ -50936,22 +51431,22 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 9714; + this.state = 9611; this.match(PostgreSQLParser.KW_HOUR); - this.state = 9715; + this.state = 9612; this.match(PostgreSQLParser.KW_TO); - this.state = 9718; + this.state = 9615; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_MINUTE: { - this.state = 9716; + this.state = 9613; this.match(PostgreSQLParser.KW_MINUTE); } break; case PostgreSQLParser.KW_SECOND: { - this.state = 9717; + this.state = 9614; this.interval_second(); } break; @@ -50963,11 +51458,11 @@ export class PostgreSQLParser extends antlr.Parser { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 9720; + this.state = 9617; this.match(PostgreSQLParser.KW_MINUTE); - this.state = 9721; + this.state = 9618; this.match(PostgreSQLParser.KW_TO); - this.state = 9722; + this.state = 9619; this.interval_second(); } break; @@ -50989,22 +51484,22 @@ export class PostgreSQLParser extends antlr.Parser { } public interval_second(): Interval_secondContext { let localContext = new Interval_secondContext(this.context, this.state); - this.enterRule(localContext, 1210, PostgreSQLParser.RULE_interval_second); + this.enterRule(localContext, 1206, PostgreSQLParser.RULE_interval_second); try { this.enterOuterAlt(localContext, 1); { - this.state = 9725; + this.state = 9622; this.match(PostgreSQLParser.KW_SECOND); - this.state = 9730; + this.state = 9627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { case 1: { - this.state = 9726; + this.state = 9623; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9727; + this.state = 9624; this.iconst(); - this.state = 9728; + this.state = 9625; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -51027,13 +51522,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_escape(): Opt_escapeContext { let localContext = new Opt_escapeContext(this.context, this.state); - this.enterRule(localContext, 1212, PostgreSQLParser.RULE_opt_escape); + this.enterRule(localContext, 1208, PostgreSQLParser.RULE_opt_escape); try { this.enterOuterAlt(localContext, 1); { - this.state = 9732; + this.state = 9629; this.match(PostgreSQLParser.KW_ESCAPE); - this.state = 9733; + this.state = 9630; this.a_expr(); } } @@ -51053,11 +51548,11 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr(): A_exprContext { let localContext = new A_exprContext(this.context, this.state); - this.enterRule(localContext, 1214, PostgreSQLParser.RULE_a_expr); + this.enterRule(localContext, 1210, PostgreSQLParser.RULE_a_expr); try { this.enterOuterAlt(localContext, 1); { - this.state = 9735; + this.state = 9632; this.a_expr_qual(); } } @@ -51077,18 +51572,18 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_qual(): A_expr_qualContext { let localContext = new A_expr_qualContext(this.context, this.state); - this.enterRule(localContext, 1216, PostgreSQLParser.RULE_a_expr_qual); + this.enterRule(localContext, 1212, PostgreSQLParser.RULE_a_expr_qual); try { this.enterOuterAlt(localContext, 1); { - this.state = 9737; + this.state = 9634; this.a_expr_lessless(); - this.state = 9739; + this.state = 9636; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { case 1: { - this.state = 9738; + this.state = 9635; this.qual_op(); } break; @@ -51111,22 +51606,22 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_lessless(): A_expr_lesslessContext { let localContext = new A_expr_lesslessContext(this.context, this.state); - this.enterRule(localContext, 1218, PostgreSQLParser.RULE_a_expr_lessless); + this.enterRule(localContext, 1214, PostgreSQLParser.RULE_a_expr_lessless); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9741; + this.state = 9638; this.a_expr_or(); - this.state = 9746; + this.state = 9643; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9742; + this.state = 9639; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 19)) { this.errorHandler.recoverInline(this); @@ -51135,98 +51630,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9743; + this.state = 9640; this.a_expr_or(); } } } - this.state = 9748; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public a_expr_or(): A_expr_orContext { - let localContext = new A_expr_orContext(this.context, this.state); - this.enterRule(localContext, 1220, PostgreSQLParser.RULE_a_expr_or); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 9749; - this.a_expr_and(); - this.state = 9754; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 9750; - this.match(PostgreSQLParser.KW_OR); - this.state = 9751; - this.a_expr_and(); - } - } - } - this.state = 9756; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public a_expr_and(): A_expr_andContext { - let localContext = new A_expr_andContext(this.context, this.state); - this.enterRule(localContext, 1222, PostgreSQLParser.RULE_a_expr_and); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 9757; - this.a_expr_in(); - this.state = 9762; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 9758; - this.match(PostgreSQLParser.KW_AND); - this.state = 9759; - this.a_expr_in(); - } - } - } - this.state = 9764; + this.state = 9645; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context); } @@ -51246,33 +51655,119 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } + public a_expr_or(): A_expr_orContext { + let localContext = new A_expr_orContext(this.context, this.state); + this.enterRule(localContext, 1216, PostgreSQLParser.RULE_a_expr_or); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 9646; + this.a_expr_and(); + this.state = 9651; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 9647; + this.match(PostgreSQLParser.KW_OR); + this.state = 9648; + this.a_expr_and(); + } + } + } + this.state = 9653; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public a_expr_and(): A_expr_andContext { + let localContext = new A_expr_andContext(this.context, this.state); + this.enterRule(localContext, 1218, PostgreSQLParser.RULE_a_expr_and); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 9654; + this.a_expr_in(); + this.state = 9659; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 9655; + this.match(PostgreSQLParser.KW_AND); + this.state = 9656; + this.a_expr_in(); + } + } + } + this.state = 9661; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public a_expr_in(): A_expr_inContext { let localContext = new A_expr_inContext(this.context, this.state); - this.enterRule(localContext, 1224, PostgreSQLParser.RULE_a_expr_in); + this.enterRule(localContext, 1220, PostgreSQLParser.RULE_a_expr_in); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9765; + this.state = 9662; this.a_expr_unary_not(); - this.state = 9771; + this.state = 9668; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 9767; + this.state = 9664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9766; + this.state = 9663; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9769; + this.state = 9666; this.match(PostgreSQLParser.KW_IN); - this.state = 9770; + this.state = 9667; this.in_expr(); } break; @@ -51295,22 +51790,22 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_unary_not(): A_expr_unary_notContext { let localContext = new A_expr_unary_notContext(this.context, this.state); - this.enterRule(localContext, 1226, PostgreSQLParser.RULE_a_expr_unary_not); + this.enterRule(localContext, 1222, PostgreSQLParser.RULE_a_expr_unary_not); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9774; + this.state = 9671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9773; + this.state = 9670; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9776; + this.state = 9673; this.a_expr_isnull(); } } @@ -51330,19 +51825,19 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_isnull(): A_expr_isnullContext { let localContext = new A_expr_isnullContext(this.context, this.state); - this.enterRule(localContext, 1228, PostgreSQLParser.RULE_a_expr_isnull); + this.enterRule(localContext, 1224, PostgreSQLParser.RULE_a_expr_isnull); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9778; + this.state = 9675; this.a_expr_is_not(); - this.state = 9780; + this.state = 9677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { case 1: { - this.state = 9779; + this.state = 9676; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -51372,82 +51867,82 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_is_not(): A_expr_is_notContext { let localContext = new A_expr_is_notContext(this.context, this.state); - this.enterRule(localContext, 1230, PostgreSQLParser.RULE_a_expr_is_not); + this.enterRule(localContext, 1226, PostgreSQLParser.RULE_a_expr_is_not); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9782; + this.state = 9679; this.a_expr_compare(); - this.state = 9806; + this.state = 9703; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { case 1: { - this.state = 9783; + this.state = 9680; this.match(PostgreSQLParser.KW_IS); - this.state = 9785; + this.state = 9682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9784; + this.state = 9681; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9804; + this.state = 9701; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_NULL: { - this.state = 9787; + this.state = 9684; this.match(PostgreSQLParser.KW_NULL); } break; case PostgreSQLParser.KW_TRUE: { - this.state = 9788; + this.state = 9685; this.match(PostgreSQLParser.KW_TRUE); } break; case PostgreSQLParser.KW_FALSE: { - this.state = 9789; + this.state = 9686; this.match(PostgreSQLParser.KW_FALSE); } break; case PostgreSQLParser.KW_UNKNOWN: { - this.state = 9790; + this.state = 9687; this.match(PostgreSQLParser.KW_UNKNOWN); } break; case PostgreSQLParser.KW_DISTINCT: { - this.state = 9791; + this.state = 9688; this.match(PostgreSQLParser.KW_DISTINCT); - this.state = 9792; + this.state = 9689; this.match(PostgreSQLParser.KW_FROM); - this.state = 9793; + this.state = 9690; this.a_expr(); } break; case PostgreSQLParser.KW_OF: { - this.state = 9794; + this.state = 9691; this.match(PostgreSQLParser.KW_OF); - this.state = 9795; + this.state = 9692; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9796; + this.state = 9693; this.type_list(); - this.state = 9797; + this.state = 9694; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_DOCUMENT: { - this.state = 9799; + this.state = 9696; this.match(PostgreSQLParser.KW_DOCUMENT); } break; @@ -51457,17 +51952,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NFKC: case PostgreSQLParser.KW_NFKD: { - this.state = 9801; + this.state = 9698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0)) { { - this.state = 9800; + this.state = 9697; this.unicode_normal_form(); } } - this.state = 9803; + this.state = 9700; this.match(PostgreSQLParser.KW_NORMALIZED); } break; @@ -51495,19 +51990,19 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_compare(): A_expr_compareContext { let localContext = new A_expr_compareContext(this.context, this.state); - this.enterRule(localContext, 1232, PostgreSQLParser.RULE_a_expr_compare); + this.enterRule(localContext, 1228, PostgreSQLParser.RULE_a_expr_compare); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9808; + this.state = 9705; this.a_expr_like(); - this.state = 9820; + this.state = 9717; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { case 1: { - this.state = 9809; + this.state = 9706; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -51516,32 +52011,32 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9810; + this.state = 9707; this.a_expr_like(); } break; case 2: { - this.state = 9811; + this.state = 9708; this.subquery_Op(); - this.state = 9812; + this.state = 9709; this.sub_type(); - this.state = 9818; + this.state = 9715; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { case 1: { - this.state = 9813; + this.state = 9710; this.select_with_parens(); } break; case 2: { - this.state = 9814; + this.state = 9711; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9815; + this.state = 9712; this.a_expr(); - this.state = 9816; + this.state = 9713; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -51567,61 +52062,61 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_like(): A_expr_likeContext { let localContext = new A_expr_likeContext(this.context, this.state); - this.enterRule(localContext, 1234, PostgreSQLParser.RULE_a_expr_like); + this.enterRule(localContext, 1230, PostgreSQLParser.RULE_a_expr_like); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9822; + this.state = 9719; this.a_expr_qual_op(); - this.state = 9840; + this.state = 9737; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { case 1: { - this.state = 9824; + this.state = 9721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9823; + this.state = 9720; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9834; + this.state = 9731; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LIKE: { - this.state = 9826; + this.state = 9723; this.match(PostgreSQLParser.KW_LIKE); } break; case PostgreSQLParser.KW_ILIKE: { - this.state = 9827; + this.state = 9724; this.match(PostgreSQLParser.KW_ILIKE); } break; case PostgreSQLParser.KW_SIMILAR: { - this.state = 9828; + this.state = 9725; this.match(PostgreSQLParser.KW_SIMILAR); - this.state = 9829; + this.state = 9726; this.match(PostgreSQLParser.KW_TO); } break; case PostgreSQLParser.KW_BETWEEN: { - this.state = 9830; + this.state = 9727; this.match(PostgreSQLParser.KW_BETWEEN); - this.state = 9832; + this.state = 9729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 9831; + this.state = 9728; this.match(PostgreSQLParser.KW_SYMMETRIC); } } @@ -51631,14 +52126,14 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 9836; + this.state = 9733; this.a_expr_qual_op(); - this.state = 9838; + this.state = 9735; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { case 1: { - this.state = 9837; + this.state = 9734; this.opt_escape(); } break; @@ -51664,113 +52159,28 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_qual_op(): A_expr_qual_opContext { let localContext = new A_expr_qual_opContext(this.context, this.state); - this.enterRule(localContext, 1236, PostgreSQLParser.RULE_a_expr_qual_op); + this.enterRule(localContext, 1232, PostgreSQLParser.RULE_a_expr_qual_op); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9842; + this.state = 9739; this.a_expr_unary_qualop(); - this.state = 9848; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 9843; - this.qual_op(); - this.state = 9844; - this.a_expr_unary_qualop(); - } - } - } - this.state = 9850; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public a_expr_unary_qualop(): A_expr_unary_qualopContext { - let localContext = new A_expr_unary_qualopContext(this.context, this.state); - this.enterRule(localContext, 1238, PostgreSQLParser.RULE_a_expr_unary_qualop); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 9852; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { - case 1: - { - this.state = 9851; - this.qual_op(); - } - break; - } - this.state = 9854; - this.a_expr_add(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public a_expr_add(): A_expr_addContext { - let localContext = new A_expr_addContext(this.context, this.state); - this.enterRule(localContext, 1240, PostgreSQLParser.RULE_a_expr_add); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 9856; - this.a_expr_mul(); - this.state = 9861; + this.state = 9745; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9857; - _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 9858; - this.a_expr_mul(); + this.state = 9740; + this.qual_op(); + this.state = 9741; + this.a_expr_unary_qualop(); } } } - this.state = 9863; + this.state = 9747; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context); } @@ -51790,24 +52200,109 @@ export class PostgreSQLParser extends antlr.Parser { } return localContext; } - public a_expr_mul(): A_expr_mulContext { - let localContext = new A_expr_mulContext(this.context, this.state); - this.enterRule(localContext, 1242, PostgreSQLParser.RULE_a_expr_mul); + public a_expr_unary_qualop(): A_expr_unary_qualopContext { + let localContext = new A_expr_unary_qualopContext(this.context, this.state); + this.enterRule(localContext, 1234, PostgreSQLParser.RULE_a_expr_unary_qualop); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 9749; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context) ) { + case 1: + { + this.state = 9748; + this.qual_op(); + } + break; + } + this.state = 9751; + this.a_expr_add(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public a_expr_add(): A_expr_addContext { + let localContext = new A_expr_addContext(this.context, this.state); + this.enterRule(localContext, 1236, PostgreSQLParser.RULE_a_expr_add); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9864; - this.a_expr_caret(); - this.state = 9869; + this.state = 9753; + this.a_expr_mul(); + this.state = 9758; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 9865; + this.state = 9754; + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 9755; + this.a_expr_mul(); + } + } + } + this.state = 9760; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public a_expr_mul(): A_expr_mulContext { + let localContext = new A_expr_mulContext(this.context, this.state); + this.enterRule(localContext, 1238, PostgreSQLParser.RULE_a_expr_mul); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 9761; + this.a_expr_caret(); + this.state = 9766; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 9762; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { this.errorHandler.recoverInline(this); @@ -51816,14 +52311,14 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9866; + this.state = 9763; this.a_expr_caret(); } } } - this.state = 9871; + this.state = 9768; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context); } } } @@ -51843,20 +52338,20 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_caret(): A_expr_caretContext { let localContext = new A_expr_caretContext(this.context, this.state); - this.enterRule(localContext, 1244, PostgreSQLParser.RULE_a_expr_caret); + this.enterRule(localContext, 1240, PostgreSQLParser.RULE_a_expr_caret); try { this.enterOuterAlt(localContext, 1); { - this.state = 9872; + this.state = 9769; this.a_expr_unary_sign(); - this.state = 9875; + this.state = 9772; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { case 1: { - this.state = 9873; + this.state = 9770; this.match(PostgreSQLParser.CARET); - this.state = 9874; + this.state = 9771; this.a_expr(); } break; @@ -51879,17 +52374,17 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_unary_sign(): A_expr_unary_signContext { let localContext = new A_expr_unary_signContext(this.context, this.state); - this.enterRule(localContext, 1246, PostgreSQLParser.RULE_a_expr_unary_sign); + this.enterRule(localContext, 1242, PostgreSQLParser.RULE_a_expr_unary_sign); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9878; + this.state = 9775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 9877; + this.state = 9774; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -51901,7 +52396,7 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 9880; + this.state = 9777; this.a_expr_at_time_zone(); } } @@ -51921,24 +52416,24 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_at_time_zone(): A_expr_at_time_zoneContext { let localContext = new A_expr_at_time_zoneContext(this.context, this.state); - this.enterRule(localContext, 1248, PostgreSQLParser.RULE_a_expr_at_time_zone); + this.enterRule(localContext, 1244, PostgreSQLParser.RULE_a_expr_at_time_zone); try { this.enterOuterAlt(localContext, 1); { - this.state = 9882; + this.state = 9779; this.a_expr_collate(); - this.state = 9887; + this.state = 9784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: { - this.state = 9883; + this.state = 9780; this.match(PostgreSQLParser.KW_AT); - this.state = 9884; + this.state = 9781; this.match(PostgreSQLParser.KW_TIME); - this.state = 9885; + this.state = 9782; this.match(PostgreSQLParser.KW_ZONE); - this.state = 9886; + this.state = 9783; this.a_expr(); } break; @@ -51961,20 +52456,20 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_collate(): A_expr_collateContext { let localContext = new A_expr_collateContext(this.context, this.state); - this.enterRule(localContext, 1250, PostgreSQLParser.RULE_a_expr_collate); + this.enterRule(localContext, 1246, PostgreSQLParser.RULE_a_expr_collate); try { this.enterOuterAlt(localContext, 1); { - this.state = 9889; + this.state = 9786; this.a_expr_typecast(); - this.state = 9892; + this.state = 9789; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: { - this.state = 9890; + this.state = 9787; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 9891; + this.state = 9788; this.any_name(); } break; @@ -51997,26 +52492,26 @@ export class PostgreSQLParser extends antlr.Parser { } public a_expr_typecast(): A_expr_typecastContext { let localContext = new A_expr_typecastContext(this.context, this.state); - this.enterRule(localContext, 1252, PostgreSQLParser.RULE_a_expr_typecast); + this.enterRule(localContext, 1248, PostgreSQLParser.RULE_a_expr_typecast); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9894; + this.state = 9791; this.c_expr(); - this.state = 9899; + this.state = 9796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 26) { { { - this.state = 9895; + this.state = 9792; this.match(PostgreSQLParser.TYPECAST); - this.state = 9896; + this.state = 9793; this.typename(); } } - this.state = 9901; + this.state = 9798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -52048,25 +52543,25 @@ export class PostgreSQLParser extends antlr.Parser { let parentState = this.state; let localContext = new B_exprContext(this.context, parentState); let previousContext = localContext; - let _startState = 1254; - this.enterRecursionRule(localContext, 1254, PostgreSQLParser.RULE_b_expr, _p); + let _startState = 1250; + this.enterRecursionRule(localContext, 1250, PostgreSQLParser.RULE_b_expr, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 9909; + this.state = 9806; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: { - this.state = 9903; + this.state = 9800; this.c_expr(); } break; case 2: { - this.state = 9904; + this.state = 9801; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -52075,23 +52570,23 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9905; + this.state = 9802; this.b_expr(9); } break; case 3: { - this.state = 9906; + this.state = 9803; this.qual_op(); - this.state = 9907; + this.state = 9804; this.b_expr(3); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 9950; + this.state = 9847; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -52099,20 +52594,20 @@ export class PostgreSQLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 9948; + this.state = 9845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1030, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { case 1: { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9911; + this.state = 9808; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 9912; + this.state = 9809; this.match(PostgreSQLParser.CARET); - this.state = 9913; + this.state = 9810; this.b_expr(9); } break; @@ -52120,11 +52615,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9914; + this.state = 9811; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 9915; + this.state = 9812; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { this.errorHandler.recoverInline(this); @@ -52133,7 +52628,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9916; + this.state = 9813; this.b_expr(8); } break; @@ -52141,11 +52636,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9917; + this.state = 9814; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 9918; + this.state = 9815; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -52154,7 +52649,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9919; + this.state = 9816; this.b_expr(7); } break; @@ -52162,13 +52657,13 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9920; + this.state = 9817; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 9921; + this.state = 9818; this.qual_op(); - this.state = 9922; + this.state = 9819; this.b_expr(6); } break; @@ -52176,11 +52671,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9924; + this.state = 9821; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 9925; + this.state = 9822; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -52189,7 +52684,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 9926; + this.state = 9823; this.b_expr(5); } break; @@ -52197,13 +52692,13 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9927; + this.state = 9824; if (!(this.precpred(this.context, 10))) { throw this.createFailedPredicateException("this.precpred(this.context, 10)"); } - this.state = 9928; + this.state = 9825; this.match(PostgreSQLParser.TYPECAST); - this.state = 9929; + this.state = 9826; this.typename(); } break; @@ -52211,11 +52706,11 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9930; + this.state = 9827; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 9931; + this.state = 9828; this.qual_op(); } break; @@ -52223,50 +52718,50 @@ export class PostgreSQLParser extends antlr.Parser { { localContext = new B_exprContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSQLParser.RULE_b_expr); - this.state = 9932; + this.state = 9829; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 9933; + this.state = 9830; this.match(PostgreSQLParser.KW_IS); - this.state = 9935; + this.state = 9832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 9934; + this.state = 9831; this.match(PostgreSQLParser.KW_NOT); } } - this.state = 9946; + this.state = 9843; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DISTINCT: { - this.state = 9937; + this.state = 9834; this.match(PostgreSQLParser.KW_DISTINCT); - this.state = 9938; + this.state = 9835; this.match(PostgreSQLParser.KW_FROM); - this.state = 9939; + this.state = 9836; this.b_expr(0); } break; case PostgreSQLParser.KW_OF: { - this.state = 9940; + this.state = 9837; this.match(PostgreSQLParser.KW_OF); - this.state = 9941; + this.state = 9838; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9942; + this.state = 9839; this.type_list(); - this.state = 9943; + this.state = 9840; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_DOCUMENT: { - this.state = 9945; + this.state = 9842; this.match(PostgreSQLParser.KW_DOCUMENT); } break; @@ -52278,9 +52773,9 @@ export class PostgreSQLParser extends antlr.Parser { } } } - this.state = 9952; + this.state = 9849; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); } } } @@ -52300,18 +52795,18 @@ export class PostgreSQLParser extends antlr.Parser { } public c_expr(): C_exprContext { let localContext = new C_exprContext(this.context, this.state); - this.enterRule(localContext, 1256, PostgreSQLParser.RULE_c_expr); + this.enterRule(localContext, 1252, PostgreSQLParser.RULE_c_expr); try { - this.state = 9989; + this.state = 9886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: localContext = new C_expr_existsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 9953; + this.state = 9850; this.match(PostgreSQLParser.KW_EXISTS); - this.state = 9954; + this.state = 9851; this.select_with_parens(); } break; @@ -52319,20 +52814,20 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 9955; + this.state = 9852; this.match(PostgreSQLParser.KW_ARRAY); - this.state = 9958; + this.state = 9855; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 9956; + this.state = 9853; this.select_with_parens(); } break; case PostgreSQLParser.OPEN_BRACKET: { - this.state = 9957; + this.state = 9854; this.array_expr(); } break; @@ -52345,9 +52840,9 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 9960; + this.state = 9857; this.match(PostgreSQLParser.PARAM); - this.state = 9961; + this.state = 9858; this.opt_indirection(); } break; @@ -52355,13 +52850,13 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 9962; + this.state = 9859; this.match(PostgreSQLParser.KW_GROUPING); - this.state = 9963; + this.state = 9860; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9964; + this.state = 9861; this.expr_list(); - this.state = 9965; + this.state = 9862; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -52369,9 +52864,9 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 9967; + this.state = 9864; this.match(PostgreSQLParser.KW_UNIQUE); - this.state = 9968; + this.state = 9865; this.select_with_parens(); } break; @@ -52379,100 +52874,100 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 9969; - this.columnref(); + this.state = 9866; + this.aexprconst(); } break; case 7: localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 9970; - this.aexprconst(); + this.state = 9867; + this.plsqlvariablename(); } break; case 8: localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 9971; - this.plsqlvariablename(); - } - break; - case 9: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 9); - { - this.state = 9972; + this.state = 9868; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 9973; + this.state = 9869; (localContext as C_expr_exprContext)._a_expr_in_parens = this.a_expr(); - this.state = 9974; + this.state = 9870; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 9975; + this.state = 9871; this.opt_indirection(); } break; - case 10: + case 9: localContext = new C_expr_caseContext(localContext); + this.enterOuterAlt(localContext, 9); + { + this.state = 9873; + this.case_expr(); + } + break; + case 10: + localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 9977; - this.case_expr(); + this.state = 9874; + this.func_expr(); } break; case 11: localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 9978; - this.func_expr(); - } - break; - case 12: - localContext = new C_expr_exprContext(localContext); - this.enterOuterAlt(localContext, 12); - { - this.state = 9979; + this.state = 9875; this.select_with_parens(); - this.state = 9981; + this.state = 9877; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { case 1: { - this.state = 9980; + this.state = 9876; this.indirection(); } break; } } break; + case 12: + localContext = new C_expr_exprContext(localContext); + this.enterOuterAlt(localContext, 12); + { + this.state = 9879; + this.explicit_row(); + } + break; case 13: localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 9983; - this.explicit_row(); + this.state = 9880; + this.implicit_row(); } break; case 14: localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 9984; - this.implicit_row(); + this.state = 9881; + this.row(); + this.state = 9882; + this.match(PostgreSQLParser.KW_OVERLAPS); + this.state = 9883; + this.row(); } break; case 15: localContext = new C_expr_exprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 9985; - this.row(); - this.state = 9986; - this.match(PostgreSQLParser.KW_OVERLAPS); - this.state = 9987; - this.row(); + this.state = 9885; + this.columnref(); } break; } @@ -52493,11 +52988,11 @@ export class PostgreSQLParser extends antlr.Parser { } public plsqlvariablename(): PlsqlvariablenameContext { let localContext = new PlsqlvariablenameContext(this.context, this.state); - this.enterRule(localContext, 1258, PostgreSQLParser.RULE_plsqlvariablename); + this.enterRule(localContext, 1254, PostgreSQLParser.RULE_plsqlvariablename); try { this.enterOuterAlt(localContext, 1); { - this.state = 9991; + this.state = 9888; this.match(PostgreSQLParser.PLSQLVARIABLENAME); } } @@ -52517,21 +53012,21 @@ export class PostgreSQLParser extends antlr.Parser { } public func_application(): Func_applicationContext { let localContext = new Func_applicationContext(this.context, this.state); - this.enterRule(localContext, 1260, PostgreSQLParser.RULE_func_application); + this.enterRule(localContext, 1256, PostgreSQLParser.RULE_func_application); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 9993; + this.state = 9890; this.function_name(); - this.state = 10019; + this.state = 9916; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { case 1: { - this.state = 9994; + this.state = 9891; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10016; + this.state = 9913; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -52544,7 +53039,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CASE: case PostgreSQLParser.KW_CAST: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_CATALOG: case PostgreSQLParser.KW_CURRENT_DATE: @@ -52983,28 +53477,28 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 9995; + this.state = 9892; this.func_arg_list(); - this.state = 9999; + this.state = 9896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 9996; + this.state = 9893; this.match(PostgreSQLParser.COMMA); - this.state = 9997; + this.state = 9894; this.match(PostgreSQLParser.KW_VARIADIC); - this.state = 9998; + this.state = 9895; this.func_arg_expr(); } } - this.state = 10002; + this.state = 9899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 10001; + this.state = 9898; this.opt_sort_clause(); } } @@ -53013,16 +53507,16 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.KW_VARIADIC: { - this.state = 10004; + this.state = 9901; this.match(PostgreSQLParser.KW_VARIADIC); - this.state = 10005; + this.state = 9902; this.func_arg_expr(); - this.state = 10007; + this.state = 9904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 10006; + this.state = 9903; this.opt_sort_clause(); } } @@ -53032,7 +53526,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ALL: case PostgreSQLParser.KW_DISTINCT: { - this.state = 10009; + this.state = 9906; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -53041,14 +53535,14 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 10010; + this.state = 9907; this.func_arg_list(); - this.state = 10012; + this.state = 9909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 10011; + this.state = 9908; this.opt_sort_clause(); } } @@ -53057,7 +53551,7 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.STAR: { - this.state = 10014; + this.state = 9911; this.match(PostgreSQLParser.STAR); } break; @@ -53069,7 +53563,7 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 10018; + this.state = 9915; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53092,42 +53586,42 @@ export class PostgreSQLParser extends antlr.Parser { } public func_expr(): Func_exprContext { let localContext = new Func_exprContext(this.context, this.state); - this.enterRule(localContext, 1262, PostgreSQLParser.RULE_func_expr); + this.enterRule(localContext, 1258, PostgreSQLParser.RULE_func_expr); try { - this.state = 10032; + this.state = 9929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10021; + this.state = 9918; this.func_application(); - this.state = 10023; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { - case 1: - { - this.state = 10022; - this.within_group_clause(); - } - break; - } - this.state = 10026; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { - case 1: - { - this.state = 10025; - this.filter_clause(); - } - break; - } - this.state = 10029; + this.state = 9920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { case 1: { - this.state = 10028; + this.state = 9919; + this.within_group_clause(); + } + break; + } + this.state = 9923; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { + case 1: + { + this.state = 9922; + this.filter_clause(); + } + break; + } + this.state = 9926; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + case 1: + { + this.state = 9925; this.over_clause(); } break; @@ -53137,7 +53631,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10031; + this.state = 9928; this.func_expr_common_subexpr(); } break; @@ -53159,22 +53653,22 @@ export class PostgreSQLParser extends antlr.Parser { } public func_expr_windowless(): Func_expr_windowlessContext { let localContext = new Func_expr_windowlessContext(this.context, this.state); - this.enterRule(localContext, 1264, PostgreSQLParser.RULE_func_expr_windowless); + this.enterRule(localContext, 1260, PostgreSQLParser.RULE_func_expr_windowless); try { - this.state = 10036; + this.state = 9933; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10034; + this.state = 9931; this.func_application(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10035; + this.state = 9932; this.func_expr_common_subexpr(); } break; @@ -53196,49 +53690,49 @@ export class PostgreSQLParser extends antlr.Parser { } public func_expr_common_subexpr(): Func_expr_common_subexprContext { let localContext = new Func_expr_common_subexprContext(this.context, this.state); - this.enterRule(localContext, 1266, PostgreSQLParser.RULE_func_expr_common_subexpr); + this.enterRule(localContext, 1262, PostgreSQLParser.RULE_func_expr_common_subexpr); let _la: number; try { - this.state = 10222; + this.state = 10119; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 10038; + this.state = 9935; this.match(PostgreSQLParser.KW_COLLATION); - this.state = 10039; + this.state = 9936; this.match(PostgreSQLParser.KW_FOR); - this.state = 10040; + this.state = 9937; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10041; + this.state = 9938; this.a_expr(); - this.state = 10042; + this.state = 9939; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 10044; + this.state = 9941; this.match(PostgreSQLParser.KW_CURRENT_DATE); } break; case PostgreSQLParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 3); { - this.state = 10045; + this.state = 9942; this.match(PostgreSQLParser.KW_CURRENT_TIME); - this.state = 10050; + this.state = 9947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: { - this.state = 10046; + this.state = 9943; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10047; + this.state = 9944; this.iconst(); - this.state = 10048; + this.state = 9945; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53248,18 +53742,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 10052; + this.state = 9949; this.match(PostgreSQLParser.KW_CURRENT_TIMESTAMP); - this.state = 10057; + this.state = 9954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 10053; + this.state = 9950; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10054; + this.state = 9951; this.iconst(); - this.state = 10055; + this.state = 9952; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53269,18 +53763,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 5); { - this.state = 10059; + this.state = 9956; this.match(PostgreSQLParser.KW_LOCALTIME); - this.state = 10064; + this.state = 9961; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: { - this.state = 10060; + this.state = 9957; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10061; + this.state = 9958; this.iconst(); - this.state = 10062; + this.state = 9959; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53290,18 +53784,18 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 10066; + this.state = 9963; this.match(PostgreSQLParser.KW_LOCALTIMESTAMP); - this.state = 10071; + this.state = 9968; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: { - this.state = 10067; + this.state = 9964; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10068; + this.state = 9965; this.iconst(); - this.state = 10069; + this.state = 9966; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53311,193 +53805,193 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 7); { - this.state = 10073; + this.state = 9970; this.match(PostgreSQLParser.KW_CURRENT_ROLE); } break; case PostgreSQLParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 8); { - this.state = 10074; + this.state = 9971; this.match(PostgreSQLParser.KW_CURRENT_USER); } break; case PostgreSQLParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 9); { - this.state = 10075; + this.state = 9972; this.match(PostgreSQLParser.KW_SESSION_USER); } break; case PostgreSQLParser.KW_USER: this.enterOuterAlt(localContext, 10); { - this.state = 10076; + this.state = 9973; this.match(PostgreSQLParser.KW_USER); } break; case PostgreSQLParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 11); { - this.state = 10077; + this.state = 9974; this.match(PostgreSQLParser.KW_CURRENT_CATALOG); } break; case PostgreSQLParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 12); { - this.state = 10078; + this.state = 9975; this.match(PostgreSQLParser.KW_CURRENT_SCHEMA); } break; case PostgreSQLParser.KW_CAST: this.enterOuterAlt(localContext, 13); { - this.state = 10079; + this.state = 9976; this.match(PostgreSQLParser.KW_CAST); - this.state = 10080; + this.state = 9977; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10081; + this.state = 9978; this.a_expr(); - this.state = 10082; + this.state = 9979; this.match(PostgreSQLParser.KW_AS); - this.state = 10083; + this.state = 9980; this.typename(); - this.state = 10084; + this.state = 9981; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_EXTRACT: this.enterOuterAlt(localContext, 14); { - this.state = 10086; + this.state = 9983; this.match(PostgreSQLParser.KW_EXTRACT); - this.state = 10087; + this.state = 9984; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10089; + this.state = 9986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 545) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 2057) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 428867841) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1059905) !== 0) || _la === 360 || _la === 384 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 545) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 2057) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 428867841) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1059905) !== 0) || _la === 360 || _la === 384 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0) || ((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 100674083) !== 0) || _la === 584) { { - this.state = 10088; + this.state = 9985; this.extract_list(); } } - this.state = 10091; + this.state = 9988; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 15); { - this.state = 10092; + this.state = 9989; this.match(PostgreSQLParser.KW_NORMALIZE); - this.state = 10093; + this.state = 9990; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10094; + this.state = 9991; this.a_expr(); - this.state = 10097; + this.state = 9994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 10095; + this.state = 9992; this.match(PostgreSQLParser.COMMA); - this.state = 10096; + this.state = 9993; this.unicode_normal_form(); } } - this.state = 10099; + this.state = 9996; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_OVERLAY: this.enterOuterAlt(localContext, 16); { - this.state = 10101; + this.state = 9998; this.match(PostgreSQLParser.KW_OVERLAY); - this.state = 10102; + this.state = 9999; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10103; + this.state = 10000; this.overlay_list(); - this.state = 10104; + this.state = 10001; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_POSITION: this.enterOuterAlt(localContext, 17); { - this.state = 10106; + this.state = 10003; this.match(PostgreSQLParser.KW_POSITION); - this.state = 10107; + this.state = 10004; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10109; + this.state = 10006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894091) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894091) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10108; + this.state = 10005; this.position_list(); } } - this.state = 10111; + this.state = 10008; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 18); { - this.state = 10112; + this.state = 10009; this.match(PostgreSQLParser.KW_SUBSTRING); - this.state = 10113; + this.state = 10010; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10115; + this.state = 10012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10114; + this.state = 10011; this.substr_list(); } } - this.state = 10117; + this.state = 10014; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_TREAT: this.enterOuterAlt(localContext, 19); { - this.state = 10118; + this.state = 10015; this.match(PostgreSQLParser.KW_TREAT); - this.state = 10119; + this.state = 10016; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10120; + this.state = 10017; this.a_expr(); - this.state = 10121; + this.state = 10018; this.match(PostgreSQLParser.KW_AS); - this.state = 10122; + this.state = 10019; this.typename(); - this.state = 10123; + this.state = 10020; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_TRIM: this.enterOuterAlt(localContext, 20); { - this.state = 10125; + this.state = 10022; this.match(PostgreSQLParser.KW_TRIM); - this.state = 10126; + this.state = 10023; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10128; + this.state = 10025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 73 || _la === 95) { { - this.state = 10127; + this.state = 10024; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -53509,111 +54003,111 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 10130; + this.state = 10027; this.trim_list(); - this.state = 10131; + this.state = 10028; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_NULLIF: this.enterOuterAlt(localContext, 21); { - this.state = 10133; + this.state = 10030; this.match(PostgreSQLParser.KW_NULLIF); - this.state = 10134; + this.state = 10031; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10135; + this.state = 10032; this.a_expr(); - this.state = 10136; + this.state = 10033; this.match(PostgreSQLParser.COMMA); - this.state = 10137; + this.state = 10034; this.a_expr(); - this.state = 10138; + this.state = 10035; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_COALESCE: this.enterOuterAlt(localContext, 22); { - this.state = 10140; + this.state = 10037; this.match(PostgreSQLParser.KW_COALESCE); - this.state = 10141; + this.state = 10038; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10142; + this.state = 10039; this.expr_list(); - this.state = 10143; + this.state = 10040; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_GREATEST: this.enterOuterAlt(localContext, 23); { - this.state = 10145; + this.state = 10042; this.match(PostgreSQLParser.KW_GREATEST); - this.state = 10146; + this.state = 10043; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10147; + this.state = 10044; this.expr_list(); - this.state = 10148; + this.state = 10045; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_LEAST: this.enterOuterAlt(localContext, 24); { - this.state = 10150; + this.state = 10047; this.match(PostgreSQLParser.KW_LEAST); - this.state = 10151; + this.state = 10048; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10152; + this.state = 10049; this.expr_list(); - this.state = 10153; + this.state = 10050; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 25); { - this.state = 10155; + this.state = 10052; this.match(PostgreSQLParser.KW_XMLCONCAT); - this.state = 10156; + this.state = 10053; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10157; + this.state = 10054; this.expr_list(); - this.state = 10158; + this.state = 10055; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 26); { - this.state = 10160; + this.state = 10057; this.match(PostgreSQLParser.KW_XMLELEMENT); - this.state = 10161; + this.state = 10058; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10162; + this.state = 10059; this.match(PostgreSQLParser.KW_NAME); - this.state = 10163; + this.state = 10060; this.collabel(); - this.state = 10169; + this.state = 10066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 10164; + this.state = 10061; this.match(PostgreSQLParser.COMMA); - this.state = 10167; + this.state = 10064; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { case 1: { - this.state = 10165; + this.state = 10062; this.xml_attributes(); } break; case 2: { - this.state = 10166; + this.state = 10063; this.expr_list(); } break; @@ -53621,135 +54115,135 @@ export class PostgreSQLParser extends antlr.Parser { } } - this.state = 10171; + this.state = 10068; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 27); { - this.state = 10173; + this.state = 10070; this.match(PostgreSQLParser.KW_XMLEXISTS); - this.state = 10174; + this.state = 10071; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10175; + this.state = 10072; this.c_expr(); - this.state = 10176; + this.state = 10073; this.xmlexists_argument(); - this.state = 10177; + this.state = 10074; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 28); { - this.state = 10179; + this.state = 10076; this.match(PostgreSQLParser.KW_XMLFOREST); - this.state = 10180; + this.state = 10077; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10181; + this.state = 10078; this.xml_attribute_list(); - this.state = 10182; + this.state = 10079; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 29); { - this.state = 10184; + this.state = 10081; this.match(PostgreSQLParser.KW_XMLPARSE); - this.state = 10185; + this.state = 10082; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10186; + this.state = 10083; this.document_or_content(); - this.state = 10187; + this.state = 10084; this.a_expr(); - this.state = 10189; + this.state = 10086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 10188; + this.state = 10085; this.xml_whitespace_option(); } } - this.state = 10191; + this.state = 10088; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLPI: this.enterOuterAlt(localContext, 30); { - this.state = 10193; + this.state = 10090; this.match(PostgreSQLParser.KW_XMLPI); - this.state = 10194; + this.state = 10091; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10195; + this.state = 10092; this.match(PostgreSQLParser.KW_NAME); - this.state = 10196; + this.state = 10093; this.collabel(); - this.state = 10199; + this.state = 10096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 10197; + this.state = 10094; this.match(PostgreSQLParser.COMMA); - this.state = 10198; + this.state = 10095; this.a_expr(); } } - this.state = 10201; + this.state = 10098; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLROOT: this.enterOuterAlt(localContext, 31); { - this.state = 10203; + this.state = 10100; this.match(PostgreSQLParser.KW_XMLROOT); - this.state = 10204; + this.state = 10101; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10205; + this.state = 10102; this.match(PostgreSQLParser.KW_XML); - this.state = 10206; + this.state = 10103; this.a_expr(); - this.state = 10207; + this.state = 10104; this.match(PostgreSQLParser.COMMA); - this.state = 10208; + this.state = 10105; this.xml_root_version(); - this.state = 10210; + this.state = 10107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 10209; + this.state = 10106; this.opt_xml_root_standalone(); } } - this.state = 10212; + this.state = 10109; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 32); { - this.state = 10214; + this.state = 10111; this.match(PostgreSQLParser.KW_XMLSERIALIZE); - this.state = 10215; + this.state = 10112; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10216; + this.state = 10113; this.document_or_content(); - this.state = 10217; + this.state = 10114; this.a_expr(); - this.state = 10218; + this.state = 10115; this.match(PostgreSQLParser.KW_AS); - this.state = 10219; + this.state = 10116; this.simpletypename(); - this.state = 10220; + this.state = 10117; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -53773,28 +54267,28 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_root_version(): Xml_root_versionContext { let localContext = new Xml_root_versionContext(this.context, this.state); - this.enterRule(localContext, 1268, PostgreSQLParser.RULE_xml_root_version); + this.enterRule(localContext, 1264, PostgreSQLParser.RULE_xml_root_version); try { - this.state = 10229; + this.state = 10126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10224; + this.state = 10121; this.match(PostgreSQLParser.KW_VERSION); - this.state = 10225; + this.state = 10122; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10226; + this.state = 10123; this.match(PostgreSQLParser.KW_VERSION); - this.state = 10227; + this.state = 10124; this.match(PostgreSQLParser.KW_NO); - this.state = 10228; + this.state = 10125; this.match(PostgreSQLParser.KW_VALUE); } break; @@ -53816,43 +54310,43 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_xml_root_standalone(): Opt_xml_root_standaloneContext { let localContext = new Opt_xml_root_standaloneContext(this.context, this.state); - this.enterRule(localContext, 1270, PostgreSQLParser.RULE_opt_xml_root_standalone); + this.enterRule(localContext, 1266, PostgreSQLParser.RULE_opt_xml_root_standalone); try { - this.state = 10241; + this.state = 10138; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10231; + this.state = 10128; this.match(PostgreSQLParser.COMMA); - this.state = 10232; + this.state = 10129; this.match(PostgreSQLParser.KW_STANDALONE); - this.state = 10233; + this.state = 10130; this.match(PostgreSQLParser.KW_YES); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10234; + this.state = 10131; this.match(PostgreSQLParser.COMMA); - this.state = 10235; + this.state = 10132; this.match(PostgreSQLParser.KW_STANDALONE); - this.state = 10236; + this.state = 10133; this.match(PostgreSQLParser.KW_NO); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10237; + this.state = 10134; this.match(PostgreSQLParser.COMMA); - this.state = 10238; + this.state = 10135; this.match(PostgreSQLParser.KW_STANDALONE); - this.state = 10239; + this.state = 10136; this.match(PostgreSQLParser.KW_NO); - this.state = 10240; + this.state = 10137; this.match(PostgreSQLParser.KW_VALUE); } break; @@ -53874,17 +54368,17 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_attributes(): Xml_attributesContext { let localContext = new Xml_attributesContext(this.context, this.state); - this.enterRule(localContext, 1272, PostgreSQLParser.RULE_xml_attributes); + this.enterRule(localContext, 1268, PostgreSQLParser.RULE_xml_attributes); try { this.enterOuterAlt(localContext, 1); { - this.state = 10243; + this.state = 10140; this.match(PostgreSQLParser.KW_XMLATTRIBUTES); - this.state = 10244; + this.state = 10141; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10245; + this.state = 10142; this.xml_attribute_list(); - this.state = 10246; + this.state = 10143; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -53904,26 +54398,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_attribute_list(): Xml_attribute_listContext { let localContext = new Xml_attribute_listContext(this.context, this.state); - this.enterRule(localContext, 1274, PostgreSQLParser.RULE_xml_attribute_list); + this.enterRule(localContext, 1270, PostgreSQLParser.RULE_xml_attribute_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10248; + this.state = 10145; this.xml_attribute_el(); - this.state = 10253; + this.state = 10150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10249; + this.state = 10146; this.match(PostgreSQLParser.COMMA); - this.state = 10250; + this.state = 10147; this.xml_attribute_el(); } } - this.state = 10255; + this.state = 10152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -53945,21 +54439,21 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_attribute_el(): Xml_attribute_elContext { let localContext = new Xml_attribute_elContext(this.context, this.state); - this.enterRule(localContext, 1276, PostgreSQLParser.RULE_xml_attribute_el); + this.enterRule(localContext, 1272, PostgreSQLParser.RULE_xml_attribute_el); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10256; + this.state = 10153; this.a_expr(); - this.state = 10259; + this.state = 10156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 10257; + this.state = 10154; this.match(PostgreSQLParser.KW_AS); - this.state = 10258; + this.state = 10155; this.collabel(); } } @@ -53982,12 +54476,12 @@ export class PostgreSQLParser extends antlr.Parser { } public document_or_content(): Document_or_contentContext { let localContext = new Document_or_contentContext(this.context, this.state); - this.enterRule(localContext, 1278, PostgreSQLParser.RULE_document_or_content); + this.enterRule(localContext, 1274, PostgreSQLParser.RULE_document_or_content); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10261; + this.state = 10158; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -54014,26 +54508,26 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_whitespace_option(): Xml_whitespace_optionContext { let localContext = new Xml_whitespace_optionContext(this.context, this.state); - this.enterRule(localContext, 1280, PostgreSQLParser.RULE_xml_whitespace_option); + this.enterRule(localContext, 1276, PostgreSQLParser.RULE_xml_whitespace_option); try { - this.state = 10267; + this.state = 10164; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_PRESERVE: this.enterOuterAlt(localContext, 1); { - this.state = 10263; + this.state = 10160; this.match(PostgreSQLParser.KW_PRESERVE); - this.state = 10264; + this.state = 10161; this.match(PostgreSQLParser.KW_WHITESPACE); } break; case PostgreSQLParser.KW_STRIP: this.enterOuterAlt(localContext, 2); { - this.state = 10265; + this.state = 10162; this.match(PostgreSQLParser.KW_STRIP); - this.state = 10266; + this.state = 10163; this.match(PostgreSQLParser.KW_WHITESPACE); } break; @@ -54057,52 +54551,52 @@ export class PostgreSQLParser extends antlr.Parser { } public xmlexists_argument(): Xmlexists_argumentContext { let localContext = new Xmlexists_argumentContext(this.context, this.state); - this.enterRule(localContext, 1282, PostgreSQLParser.RULE_xmlexists_argument); + this.enterRule(localContext, 1278, PostgreSQLParser.RULE_xmlexists_argument); try { - this.state = 10284; + this.state = 10181; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10269; + this.state = 10166; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10270; + this.state = 10167; this.c_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10271; + this.state = 10168; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10272; + this.state = 10169; this.c_expr(); - this.state = 10273; + this.state = 10170; this.xml_passing_mech(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10275; + this.state = 10172; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10276; + this.state = 10173; this.xml_passing_mech(); - this.state = 10277; + this.state = 10174; this.c_expr(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10279; + this.state = 10176; this.match(PostgreSQLParser.KW_PASSING); - this.state = 10280; + this.state = 10177; this.xml_passing_mech(); - this.state = 10281; + this.state = 10178; this.c_expr(); - this.state = 10282; + this.state = 10179; this.xml_passing_mech(); } break; @@ -54124,14 +54618,14 @@ export class PostgreSQLParser extends antlr.Parser { } public xml_passing_mech(): Xml_passing_mechContext { let localContext = new Xml_passing_mechContext(this.context, this.state); - this.enterRule(localContext, 1284, PostgreSQLParser.RULE_xml_passing_mech); + this.enterRule(localContext, 1280, PostgreSQLParser.RULE_xml_passing_mech); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10286; + this.state = 10183; this.match(PostgreSQLParser.KW_BY); - this.state = 10287; + this.state = 10184; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -54158,19 +54652,19 @@ export class PostgreSQLParser extends antlr.Parser { } public within_group_clause(): Within_group_clauseContext { let localContext = new Within_group_clauseContext(this.context, this.state); - this.enterRule(localContext, 1286, PostgreSQLParser.RULE_within_group_clause); + this.enterRule(localContext, 1282, PostgreSQLParser.RULE_within_group_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10289; + this.state = 10186; this.match(PostgreSQLParser.KW_WITHIN); - this.state = 10290; + this.state = 10187; this.match(PostgreSQLParser.KW_GROUP); - this.state = 10291; + this.state = 10188; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10292; + this.state = 10189; this.sort_clause(); - this.state = 10293; + this.state = 10190; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -54190,19 +54684,19 @@ export class PostgreSQLParser extends antlr.Parser { } public filter_clause(): Filter_clauseContext { let localContext = new Filter_clauseContext(this.context, this.state); - this.enterRule(localContext, 1288, PostgreSQLParser.RULE_filter_clause); + this.enterRule(localContext, 1284, PostgreSQLParser.RULE_filter_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10295; + this.state = 10192; this.match(PostgreSQLParser.KW_FILTER); - this.state = 10296; + this.state = 10193; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10297; + this.state = 10194; this.match(PostgreSQLParser.KW_WHERE); - this.state = 10298; + this.state = 10195; this.a_expr(); - this.state = 10299; + this.state = 10196; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -54222,13 +54716,13 @@ export class PostgreSQLParser extends antlr.Parser { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 1290, PostgreSQLParser.RULE_window_clause); + this.enterRule(localContext, 1286, PostgreSQLParser.RULE_window_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10301; + this.state = 10198; this.match(PostgreSQLParser.KW_WINDOW); - this.state = 10302; + this.state = 10199; this.window_definition_list(); } } @@ -54248,30 +54742,30 @@ export class PostgreSQLParser extends antlr.Parser { } public window_definition_list(): Window_definition_listContext { let localContext = new Window_definition_listContext(this.context, this.state); - this.enterRule(localContext, 1292, PostgreSQLParser.RULE_window_definition_list); + this.enterRule(localContext, 1288, PostgreSQLParser.RULE_window_definition_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10304; + this.state = 10201; this.window_definition(); - this.state = 10309; + this.state = 10206; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10305; + this.state = 10202; this.match(PostgreSQLParser.COMMA); - this.state = 10306; + this.state = 10203; this.window_definition(); } } } - this.state = 10311; + this.state = 10208; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); } } } @@ -54291,15 +54785,15 @@ export class PostgreSQLParser extends antlr.Parser { } public window_definition(): Window_definitionContext { let localContext = new Window_definitionContext(this.context, this.state); - this.enterRule(localContext, 1294, PostgreSQLParser.RULE_window_definition); + this.enterRule(localContext, 1290, PostgreSQLParser.RULE_window_definition); try { this.enterOuterAlt(localContext, 1); { - this.state = 10312; + this.state = 10209; this.colid(); - this.state = 10313; + this.state = 10210; this.match(PostgreSQLParser.KW_AS); - this.state = 10314; + this.state = 10211; this.window_specification(); } } @@ -54319,25 +54813,24 @@ export class PostgreSQLParser extends antlr.Parser { } public over_clause(): Over_clauseContext { let localContext = new Over_clauseContext(this.context, this.state); - this.enterRule(localContext, 1296, PostgreSQLParser.RULE_over_clause); + this.enterRule(localContext, 1292, PostgreSQLParser.RULE_over_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10316; + this.state = 10213; this.match(PostgreSQLParser.KW_OVER); - this.state = 10319; + this.state = 10216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: { - this.state = 10317; + this.state = 10214; this.window_specification(); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -54736,7 +55229,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10318; + this.state = 10215; this.colid(); } break; @@ -54761,54 +55254,54 @@ export class PostgreSQLParser extends antlr.Parser { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 1298, PostgreSQLParser.RULE_window_specification); + this.enterRule(localContext, 1294, PostgreSQLParser.RULE_window_specification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10321; + this.state = 10218; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10323; + this.state = 10220; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context) ) { case 1: { - this.state = 10322; + this.state = 10219; this.opt_existing_window_name(); } break; } - this.state = 10326; + this.state = 10223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 10325; + this.state = 10222; this.opt_partition_clause(); } } - this.state = 10329; + this.state = 10226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 10328; + this.state = 10225; this.opt_sort_clause(); } } - this.state = 10332; + this.state = 10229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 10331; + this.state = 10228; this.opt_frame_clause(); } } - this.state = 10334; + this.state = 10231; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -54828,11 +55321,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_existing_window_name(): Opt_existing_window_nameContext { let localContext = new Opt_existing_window_nameContext(this.context, this.state); - this.enterRule(localContext, 1300, PostgreSQLParser.RULE_opt_existing_window_name); + this.enterRule(localContext, 1296, PostgreSQLParser.RULE_opt_existing_window_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 10336; + this.state = 10233; this.colid(); } } @@ -54852,15 +55345,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_partition_clause(): Opt_partition_clauseContext { let localContext = new Opt_partition_clauseContext(this.context, this.state); - this.enterRule(localContext, 1302, PostgreSQLParser.RULE_opt_partition_clause); + this.enterRule(localContext, 1298, PostgreSQLParser.RULE_opt_partition_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10338; + this.state = 10235; this.match(PostgreSQLParser.KW_PARTITION); - this.state = 10339; + this.state = 10236; this.match(PostgreSQLParser.KW_BY); - this.state = 10340; + this.state = 10237; this.expr_list(); } } @@ -54880,25 +55373,25 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_frame_clause(): Opt_frame_clauseContext { let localContext = new Opt_frame_clauseContext(this.context, this.state); - this.enterRule(localContext, 1304, PostgreSQLParser.RULE_opt_frame_clause); + this.enterRule(localContext, 1300, PostgreSQLParser.RULE_opt_frame_clause); let _la: number; try { - this.state = 10357; + this.state = 10254; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 10342; + this.state = 10239; this.match(PostgreSQLParser.KW_RANGE); - this.state = 10343; + this.state = 10240; this.frame_extent(); - this.state = 10345; + this.state = 10242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 10344; + this.state = 10241; this.opt_window_exclusion_clause(); } } @@ -54908,16 +55401,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 10347; + this.state = 10244; this.match(PostgreSQLParser.KW_ROWS); - this.state = 10348; + this.state = 10245; this.frame_extent(); - this.state = 10350; + this.state = 10247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 10349; + this.state = 10246; this.opt_window_exclusion_clause(); } } @@ -54927,16 +55420,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_GROUPS: this.enterOuterAlt(localContext, 3); { - this.state = 10352; + this.state = 10249; this.match(PostgreSQLParser.KW_GROUPS); - this.state = 10353; + this.state = 10250; this.frame_extent(); - this.state = 10355; + this.state = 10252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 10354; + this.state = 10251; this.opt_window_exclusion_clause(); } } @@ -54963,28 +55456,28 @@ export class PostgreSQLParser extends antlr.Parser { } public frame_extent(): Frame_extentContext { let localContext = new Frame_extentContext(this.context, this.state); - this.enterRule(localContext, 1306, PostgreSQLParser.RULE_frame_extent); + this.enterRule(localContext, 1302, PostgreSQLParser.RULE_frame_extent); try { - this.state = 10365; + this.state = 10262; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10359; + this.state = 10256; this.frame_bound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10360; + this.state = 10257; this.match(PostgreSQLParser.KW_BETWEEN); - this.state = 10361; + this.state = 10258; this.frame_bound(); - this.state = 10362; + this.state = 10259; this.match(PostgreSQLParser.KW_AND); - this.state = 10363; + this.state = 10260; this.frame_bound(); } break; @@ -55006,18 +55499,18 @@ export class PostgreSQLParser extends antlr.Parser { } public frame_bound(): Frame_boundContext { let localContext = new Frame_boundContext(this.context, this.state); - this.enterRule(localContext, 1308, PostgreSQLParser.RULE_frame_bound); + this.enterRule(localContext, 1304, PostgreSQLParser.RULE_frame_bound); let _la: number; try { - this.state = 10374; + this.state = 10271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1080, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10367; + this.state = 10264; this.match(PostgreSQLParser.KW_UNBOUNDED); - this.state = 10368; + this.state = 10265; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -55031,18 +55524,18 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10369; + this.state = 10266; this.match(PostgreSQLParser.KW_CURRENT); - this.state = 10370; + this.state = 10267; this.match(PostgreSQLParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10371; + this.state = 10268; this.a_expr(); - this.state = 10372; + this.state = 10269; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -55071,40 +55564,40 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_window_exclusion_clause(): Opt_window_exclusion_clauseContext { let localContext = new Opt_window_exclusion_clauseContext(this.context, this.state); - this.enterRule(localContext, 1310, PostgreSQLParser.RULE_opt_window_exclusion_clause); + this.enterRule(localContext, 1306, PostgreSQLParser.RULE_opt_window_exclusion_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10376; + this.state = 10273; this.match(PostgreSQLParser.KW_EXCLUDE); - this.state = 10383; + this.state = 10280; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CURRENT: { - this.state = 10377; + this.state = 10274; this.match(PostgreSQLParser.KW_CURRENT); - this.state = 10378; + this.state = 10275; this.match(PostgreSQLParser.KW_ROW); } break; case PostgreSQLParser.KW_GROUP: { - this.state = 10379; + this.state = 10276; this.match(PostgreSQLParser.KW_GROUP); } break; case PostgreSQLParser.KW_TIES: { - this.state = 10380; + this.state = 10277; this.match(PostgreSQLParser.KW_TIES); } break; case PostgreSQLParser.KW_NO: { - this.state = 10381; + this.state = 10278; this.match(PostgreSQLParser.KW_NO); - this.state = 10382; + this.state = 10279; this.match(PostgreSQLParser.KW_OTHERS); } break; @@ -55129,45 +55622,45 @@ export class PostgreSQLParser extends antlr.Parser { } public row(): RowContext { let localContext = new RowContext(this.context, this.state); - this.enterRule(localContext, 1312, PostgreSQLParser.RULE_row); + this.enterRule(localContext, 1308, PostgreSQLParser.RULE_row); let _la: number; try { - this.state = 10397; + this.state = 10294; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 10385; + this.state = 10282; this.match(PostgreSQLParser.KW_ROW); - this.state = 10386; + this.state = 10283; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10388; + this.state = 10285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10387; + this.state = 10284; this.expr_list(); } } - this.state = 10390; + this.state = 10287; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 10391; + this.state = 10288; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10392; + this.state = 10289; this.expr_list(); - this.state = 10393; + this.state = 10290; this.match(PostgreSQLParser.COMMA); - this.state = 10394; + this.state = 10291; this.a_expr(); - this.state = 10395; + this.state = 10292; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -55191,26 +55684,26 @@ export class PostgreSQLParser extends antlr.Parser { } public explicit_row(): Explicit_rowContext { let localContext = new Explicit_rowContext(this.context, this.state); - this.enterRule(localContext, 1314, PostgreSQLParser.RULE_explicit_row); + this.enterRule(localContext, 1310, PostgreSQLParser.RULE_explicit_row); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10399; + this.state = 10296; this.match(PostgreSQLParser.KW_ROW); - this.state = 10400; + this.state = 10297; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10402; + this.state = 10299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10401; + this.state = 10298; this.expr_list(); } } - this.state = 10404; + this.state = 10301; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -55230,19 +55723,19 @@ export class PostgreSQLParser extends antlr.Parser { } public implicit_row(): Implicit_rowContext { let localContext = new Implicit_rowContext(this.context, this.state); - this.enterRule(localContext, 1316, PostgreSQLParser.RULE_implicit_row); + this.enterRule(localContext, 1312, PostgreSQLParser.RULE_implicit_row); try { this.enterOuterAlt(localContext, 1); { - this.state = 10406; + this.state = 10303; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10407; - this.expr_list(); - this.state = 10408; - this.match(PostgreSQLParser.COMMA); - this.state = 10409; + this.state = 10304; this.a_expr(); - this.state = 10410; + this.state = 10305; + this.match(PostgreSQLParser.COMMA); + this.state = 10306; + this.expr_list(); + this.state = 10307; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -55262,12 +55755,12 @@ export class PostgreSQLParser extends antlr.Parser { } public sub_type(): Sub_typeContext { let localContext = new Sub_typeContext(this.context, this.state); - this.enterRule(localContext, 1318, PostgreSQLParser.RULE_sub_type); + this.enterRule(localContext, 1314, PostgreSQLParser.RULE_sub_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10412; + this.state = 10309; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -55294,15 +55787,15 @@ export class PostgreSQLParser extends antlr.Parser { } public all_op(): All_opContext { let localContext = new All_opContext(this.context, this.state); - this.enterRule(localContext, 1320, PostgreSQLParser.RULE_all_op); + this.enterRule(localContext, 1316, PostgreSQLParser.RULE_all_op); try { - this.state = 10416; + this.state = 10313; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 10414; + this.state = 10311; this.match(PostgreSQLParser.Operator); } break; @@ -55320,7 +55813,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 10415; + this.state = 10312; this.mathop(); } break; @@ -55344,12 +55837,12 @@ export class PostgreSQLParser extends antlr.Parser { } public mathop(): MathopContext { let localContext = new MathopContext(this.context, this.state); - this.enterRule(localContext, 1322, PostgreSQLParser.RULE_mathop); + this.enterRule(localContext, 1318, PostgreSQLParser.RULE_mathop); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10418; + this.state = 10315; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -55376,28 +55869,28 @@ export class PostgreSQLParser extends antlr.Parser { } public qual_op(): Qual_opContext { let localContext = new Qual_opContext(this.context, this.state); - this.enterRule(localContext, 1324, PostgreSQLParser.RULE_qual_op); + this.enterRule(localContext, 1320, PostgreSQLParser.RULE_qual_op); try { - this.state = 10426; + this.state = 10323; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 10420; + this.state = 10317; this.match(PostgreSQLParser.Operator); } break; case PostgreSQLParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 10421; + this.state = 10318; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 10422; + this.state = 10319; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10423; + this.state = 10320; this.any_operator(); - this.state = 10424; + this.state = 10321; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -55421,9 +55914,9 @@ export class PostgreSQLParser extends antlr.Parser { } public qual_all_op(): Qual_all_opContext { let localContext = new Qual_all_opContext(this.context, this.state); - this.enterRule(localContext, 1326, PostgreSQLParser.RULE_qual_all_op); + this.enterRule(localContext, 1322, PostgreSQLParser.RULE_qual_all_op); try { - this.state = 10434; + this.state = 10331; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.STAR: @@ -55441,20 +55934,20 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 10428; + this.state = 10325; this.all_op(); } break; case PostgreSQLParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 10429; + this.state = 10326; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 10430; + this.state = 10327; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10431; + this.state = 10328; this.any_operator(); - this.state = 10432; + this.state = 10329; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -55478,60 +55971,60 @@ export class PostgreSQLParser extends antlr.Parser { } public subquery_Op(): Subquery_OpContext { let localContext = new Subquery_OpContext(this.context, this.state); - this.enterRule(localContext, 1328, PostgreSQLParser.RULE_subquery_Op); + this.enterRule(localContext, 1324, PostgreSQLParser.RULE_subquery_Op); try { - this.state = 10448; + this.state = 10345; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10436; + this.state = 10333; this.all_op(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10437; + this.state = 10334; this.match(PostgreSQLParser.KW_OPERATOR); - this.state = 10438; + this.state = 10335; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10439; + this.state = 10336; this.any_operator(); - this.state = 10440; + this.state = 10337; this.match(PostgreSQLParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10442; + this.state = 10339; this.match(PostgreSQLParser.KW_LIKE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10443; + this.state = 10340; this.match(PostgreSQLParser.KW_NOT); - this.state = 10444; + this.state = 10341; this.match(PostgreSQLParser.KW_LIKE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10445; + this.state = 10342; this.match(PostgreSQLParser.KW_ILIKE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10446; + this.state = 10343; this.match(PostgreSQLParser.KW_NOT); - this.state = 10447; + this.state = 10344; this.match(PostgreSQLParser.KW_ILIKE); } break; @@ -55553,30 +56046,30 @@ export class PostgreSQLParser extends antlr.Parser { } public expr_list(): Expr_listContext { let localContext = new Expr_listContext(this.context, this.state); - this.enterRule(localContext, 1330, PostgreSQLParser.RULE_expr_list); + this.enterRule(localContext, 1326, PostgreSQLParser.RULE_expr_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10450; + this.state = 10347; this.a_expr(); - this.state = 10455; + this.state = 10352; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10451; + this.state = 10348; this.match(PostgreSQLParser.COMMA); - this.state = 10452; + this.state = 10349; this.a_expr(); } } } - this.state = 10457; + this.state = 10354; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context); } } } @@ -55596,26 +56089,26 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr_list_noparen(): Column_expr_list_noparenContext { let localContext = new Column_expr_list_noparenContext(this.context, this.state); - this.enterRule(localContext, 1332, PostgreSQLParser.RULE_column_expr_list_noparen); + this.enterRule(localContext, 1328, PostgreSQLParser.RULE_column_expr_list_noparen); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10458; + this.state = 10355; this.column_expr_noparen(); - this.state = 10463; + this.state = 10360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10459; + this.state = 10356; this.match(PostgreSQLParser.COMMA); - this.state = 10460; + this.state = 10357; this.column_expr_noparen(); } } - this.state = 10465; + this.state = 10362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -55637,26 +56130,26 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr_list(): Column_expr_listContext { let localContext = new Column_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1334, PostgreSQLParser.RULE_column_expr_list); + this.enterRule(localContext, 1330, PostgreSQLParser.RULE_column_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10466; + this.state = 10363; this.column_expr(); - this.state = 10471; + this.state = 10368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10467; + this.state = 10364; this.match(PostgreSQLParser.COMMA); - this.state = 10468; + this.state = 10365; this.column_expr(); } } - this.state = 10473; + this.state = 10370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -55678,15 +56171,14 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr(): Column_exprContext { let localContext = new Column_exprContext(this.context, this.state); - this.enterRule(localContext, 1336, PostgreSQLParser.RULE_column_expr); + this.enterRule(localContext, 1332, PostgreSQLParser.RULE_column_expr); try { - this.state = 10479; + this.state = 10376; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -56086,7 +56578,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 10474; + this.state = 10371; this.column_name(); } break; @@ -56094,11 +56586,11 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 10475; + this.state = 10372; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10476; + this.state = 10373; this.a_expr(); - this.state = 10477; + this.state = 10374; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -56123,22 +56615,22 @@ export class PostgreSQLParser extends antlr.Parser { } public column_expr_noparen(): Column_expr_noparenContext { let localContext = new Column_expr_noparenContext(this.context, this.state); - this.enterRule(localContext, 1338, PostgreSQLParser.RULE_column_expr_noparen); + this.enterRule(localContext, 1334, PostgreSQLParser.RULE_column_expr_noparen); try { - this.state = 10483; + this.state = 10380; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10481; + this.state = 10378; this.column_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10482; + this.state = 10379; this.a_expr(); } break; @@ -56160,30 +56652,30 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg_list(): Func_arg_listContext { let localContext = new Func_arg_listContext(this.context, this.state); - this.enterRule(localContext, 1340, PostgreSQLParser.RULE_func_arg_list); + this.enterRule(localContext, 1336, PostgreSQLParser.RULE_func_arg_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10485; + this.state = 10382; this.func_arg_expr(); - this.state = 10490; + this.state = 10387; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10486; + this.state = 10383; this.match(PostgreSQLParser.COMMA); - this.state = 10487; + this.state = 10384; this.func_arg_expr(); } } } - this.state = 10492; + this.state = 10389; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); } } } @@ -56203,25 +56695,25 @@ export class PostgreSQLParser extends antlr.Parser { } public func_arg_expr(): Func_arg_exprContext { let localContext = new Func_arg_exprContext(this.context, this.state); - this.enterRule(localContext, 1342, PostgreSQLParser.RULE_func_arg_expr); + this.enterRule(localContext, 1338, PostgreSQLParser.RULE_func_arg_expr); let _la: number; try { - this.state = 10498; + this.state = 10395; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10493; + this.state = 10390; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10494; + this.state = 10391; this.param_name(); - this.state = 10495; + this.state = 10392; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -56230,7 +56722,7 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 10496; + this.state = 10393; this.a_expr(); } break; @@ -56252,26 +56744,26 @@ export class PostgreSQLParser extends antlr.Parser { } public type_list(): Type_listContext { let localContext = new Type_listContext(this.context, this.state); - this.enterRule(localContext, 1344, PostgreSQLParser.RULE_type_list); + this.enterRule(localContext, 1340, PostgreSQLParser.RULE_type_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10500; + this.state = 10397; this.typename(); - this.state = 10505; + this.state = 10402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10501; + this.state = 10398; this.match(PostgreSQLParser.COMMA); - this.state = 10502; + this.state = 10399; this.typename(); } } - this.state = 10507; + this.state = 10404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -56293,13 +56785,13 @@ export class PostgreSQLParser extends antlr.Parser { } public array_expr(): Array_exprContext { let localContext = new Array_exprContext(this.context, this.state); - this.enterRule(localContext, 1346, PostgreSQLParser.RULE_array_expr); + this.enterRule(localContext, 1342, PostgreSQLParser.RULE_array_expr); try { this.enterOuterAlt(localContext, 1); { - this.state = 10508; + this.state = 10405; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 10511; + this.state = 10408; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -56312,7 +56804,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CASE: case PostgreSQLParser.KW_CAST: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_CATALOG: case PostgreSQLParser.KW_CURRENT_DATE: @@ -56751,13 +57242,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10509; + this.state = 10406; this.expr_list(); } break; case PostgreSQLParser.OPEN_BRACKET: { - this.state = 10510; + this.state = 10407; this.array_expr_list(); } break; @@ -56766,7 +57257,7 @@ export class PostgreSQLParser extends antlr.Parser { default: break; } - this.state = 10513; + this.state = 10410; this.match(PostgreSQLParser.CLOSE_BRACKET); } } @@ -56786,26 +57277,26 @@ export class PostgreSQLParser extends antlr.Parser { } public array_expr_list(): Array_expr_listContext { let localContext = new Array_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1348, PostgreSQLParser.RULE_array_expr_list); + this.enterRule(localContext, 1344, PostgreSQLParser.RULE_array_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10515; + this.state = 10412; this.array_expr(); - this.state = 10520; + this.state = 10417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10516; + this.state = 10413; this.match(PostgreSQLParser.COMMA); - this.state = 10517; + this.state = 10414; this.array_expr(); } } - this.state = 10522; + this.state = 10419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -56827,15 +57318,15 @@ export class PostgreSQLParser extends antlr.Parser { } public extract_list(): Extract_listContext { let localContext = new Extract_listContext(this.context, this.state); - this.enterRule(localContext, 1350, PostgreSQLParser.RULE_extract_list); + this.enterRule(localContext, 1346, PostgreSQLParser.RULE_extract_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 10523; + this.state = 10420; this.extract_arg(); - this.state = 10524; + this.state = 10421; this.match(PostgreSQLParser.KW_FROM); - this.state = 10525; + this.state = 10422; this.a_expr(); } } @@ -56855,64 +57346,64 @@ export class PostgreSQLParser extends antlr.Parser { } public extract_arg(): Extract_argContext { let localContext = new Extract_argContext(this.context, this.state); - this.enterRule(localContext, 1352, PostgreSQLParser.RULE_extract_arg); + this.enterRule(localContext, 1348, PostgreSQLParser.RULE_extract_arg); try { - this.state = 10535; + this.state = 10432; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10527; + this.state = 10424; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10528; + this.state = 10425; this.match(PostgreSQLParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10529; + this.state = 10426; this.match(PostgreSQLParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10530; + this.state = 10427; this.match(PostgreSQLParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10531; + this.state = 10428; this.match(PostgreSQLParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10532; + this.state = 10429; this.match(PostgreSQLParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10533; + this.state = 10430; this.match(PostgreSQLParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10534; + this.state = 10431; this.sconst(); } break; @@ -56934,12 +57425,12 @@ export class PostgreSQLParser extends antlr.Parser { } public unicode_normal_form(): Unicode_normal_formContext { let localContext = new Unicode_normal_formContext(this.context, this.state); - this.enterRule(localContext, 1354, PostgreSQLParser.RULE_unicode_normal_form); + this.enterRule(localContext, 1350, PostgreSQLParser.RULE_unicode_normal_form); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10537; + this.state = 10434; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -56966,29 +57457,29 @@ export class PostgreSQLParser extends antlr.Parser { } public overlay_list(): Overlay_listContext { let localContext = new Overlay_listContext(this.context, this.state); - this.enterRule(localContext, 1356, PostgreSQLParser.RULE_overlay_list); + this.enterRule(localContext, 1352, PostgreSQLParser.RULE_overlay_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10539; + this.state = 10436; this.a_expr(); - this.state = 10540; + this.state = 10437; this.match(PostgreSQLParser.KW_PLACING); - this.state = 10541; + this.state = 10438; this.a_expr(); - this.state = 10542; + this.state = 10439; this.match(PostgreSQLParser.KW_FROM); - this.state = 10543; + this.state = 10440; this.a_expr(); - this.state = 10546; + this.state = 10443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 10544; + this.state = 10441; this.match(PostgreSQLParser.KW_FOR); - this.state = 10545; + this.state = 10442; this.a_expr(); } } @@ -57011,15 +57502,15 @@ export class PostgreSQLParser extends antlr.Parser { } public position_list(): Position_listContext { let localContext = new Position_listContext(this.context, this.state); - this.enterRule(localContext, 1358, PostgreSQLParser.RULE_position_list); + this.enterRule(localContext, 1354, PostgreSQLParser.RULE_position_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 10548; + this.state = 10445; this.b_expr(0); - this.state = 10549; + this.state = 10446; this.match(PostgreSQLParser.KW_IN); - this.state = 10550; + this.state = 10447; this.b_expr(0); } } @@ -57039,82 +57530,82 @@ export class PostgreSQLParser extends antlr.Parser { } public substr_list(): Substr_listContext { let localContext = new Substr_listContext(this.context, this.state); - this.enterRule(localContext, 1360, PostgreSQLParser.RULE_substr_list); + this.enterRule(localContext, 1356, PostgreSQLParser.RULE_substr_list); try { - this.state = 10579; + this.state = 10476; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10552; + this.state = 10449; this.a_expr(); - this.state = 10553; + this.state = 10450; this.match(PostgreSQLParser.KW_FROM); - this.state = 10554; + this.state = 10451; this.a_expr(); - this.state = 10555; + this.state = 10452; this.match(PostgreSQLParser.KW_FOR); - this.state = 10556; + this.state = 10453; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10558; + this.state = 10455; this.a_expr(); - this.state = 10559; + this.state = 10456; this.match(PostgreSQLParser.KW_FOR); - this.state = 10560; + this.state = 10457; this.a_expr(); - this.state = 10561; + this.state = 10458; this.match(PostgreSQLParser.KW_FROM); - this.state = 10562; + this.state = 10459; this.a_expr(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10564; + this.state = 10461; this.a_expr(); - this.state = 10565; + this.state = 10462; this.match(PostgreSQLParser.KW_FROM); - this.state = 10566; + this.state = 10463; this.a_expr(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10568; + this.state = 10465; this.a_expr(); - this.state = 10569; + this.state = 10466; this.match(PostgreSQLParser.KW_FOR); - this.state = 10570; + this.state = 10467; this.a_expr(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10572; + this.state = 10469; this.a_expr(); - this.state = 10573; + this.state = 10470; this.match(PostgreSQLParser.KW_SIMILAR); - this.state = 10574; + this.state = 10471; this.a_expr(); - this.state = 10575; + this.state = 10472; this.match(PostgreSQLParser.KW_ESCAPE); - this.state = 10576; + this.state = 10473; this.a_expr(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10578; + this.state = 10475; this.expr_list(); } break; @@ -57136,35 +57627,35 @@ export class PostgreSQLParser extends antlr.Parser { } public trim_list(): Trim_listContext { let localContext = new Trim_listContext(this.context, this.state); - this.enterRule(localContext, 1362, PostgreSQLParser.RULE_trim_list); + this.enterRule(localContext, 1358, PostgreSQLParser.RULE_trim_list); try { - this.state = 10588; + this.state = 10485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10581; + this.state = 10478; this.a_expr(); - this.state = 10582; + this.state = 10479; this.match(PostgreSQLParser.KW_FROM); - this.state = 10583; + this.state = 10480; this.expr_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10585; + this.state = 10482; this.match(PostgreSQLParser.KW_FROM); - this.state = 10586; + this.state = 10483; this.expr_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10587; + this.state = 10484; this.expr_list(); } break; @@ -57186,16 +57677,16 @@ export class PostgreSQLParser extends antlr.Parser { } public in_expr(): In_exprContext { let localContext = new In_exprContext(this.context, this.state); - this.enterRule(localContext, 1364, PostgreSQLParser.RULE_in_expr); + this.enterRule(localContext, 1360, PostgreSQLParser.RULE_in_expr); try { - this.state = 10595; + this.state = 10492; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { case 1: localContext = new In_expr_selectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10590; + this.state = 10487; this.select_with_parens(); } break; @@ -57203,11 +57694,11 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new In_expr_listContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10591; + this.state = 10488; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10592; + this.state = 10489; this.expr_list(); - this.state = 10593; + this.state = 10490; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -57229,36 +57720,36 @@ export class PostgreSQLParser extends antlr.Parser { } public case_expr(): Case_exprContext { let localContext = new Case_exprContext(this.context, this.state); - this.enterRule(localContext, 1366, PostgreSQLParser.RULE_case_expr); + this.enterRule(localContext, 1362, PostgreSQLParser.RULE_case_expr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10597; + this.state = 10494; this.match(PostgreSQLParser.KW_CASE); - this.state = 10599; + this.state = 10496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10598; + this.state = 10495; this.case_arg(); } } - this.state = 10601; + this.state = 10498; this.when_clause_list(); - this.state = 10603; + this.state = 10500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 10602; + this.state = 10499; this.case_default(); } } - this.state = 10605; + this.state = 10502; this.match(PostgreSQLParser.KW_END); } } @@ -57278,22 +57769,22 @@ export class PostgreSQLParser extends antlr.Parser { } public when_clause_list(): When_clause_listContext { let localContext = new When_clause_listContext(this.context, this.state); - this.enterRule(localContext, 1368, PostgreSQLParser.RULE_when_clause_list); + this.enterRule(localContext, 1364, PostgreSQLParser.RULE_when_clause_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10608; + this.state = 10505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 10607; + this.state = 10504; this.when_clause(); } } - this.state = 10610; + this.state = 10507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -57315,17 +57806,17 @@ export class PostgreSQLParser extends antlr.Parser { } public when_clause(): When_clauseContext { let localContext = new When_clauseContext(this.context, this.state); - this.enterRule(localContext, 1370, PostgreSQLParser.RULE_when_clause); + this.enterRule(localContext, 1366, PostgreSQLParser.RULE_when_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 10612; + this.state = 10509; this.match(PostgreSQLParser.KW_WHEN); - this.state = 10613; + this.state = 10510; this.a_expr(); - this.state = 10614; + this.state = 10511; this.match(PostgreSQLParser.KW_THEN); - this.state = 10615; + this.state = 10512; this.a_expr(); } } @@ -57345,13 +57836,13 @@ export class PostgreSQLParser extends antlr.Parser { } public case_default(): Case_defaultContext { let localContext = new Case_defaultContext(this.context, this.state); - this.enterRule(localContext, 1372, PostgreSQLParser.RULE_case_default); + this.enterRule(localContext, 1368, PostgreSQLParser.RULE_case_default); try { this.enterOuterAlt(localContext, 1); { - this.state = 10617; + this.state = 10514; this.match(PostgreSQLParser.KW_ELSE); - this.state = 10618; + this.state = 10515; this.a_expr(); } } @@ -57371,11 +57862,11 @@ export class PostgreSQLParser extends antlr.Parser { } public case_arg(): Case_argContext { let localContext = new Case_argContext(this.context, this.state); - this.enterRule(localContext, 1374, PostgreSQLParser.RULE_case_arg); + this.enterRule(localContext, 1370, PostgreSQLParser.RULE_case_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 10620; + this.state = 10517; this.a_expr(); } } @@ -57395,18 +57886,18 @@ export class PostgreSQLParser extends antlr.Parser { } public columnref(): ColumnrefContext { let localContext = new ColumnrefContext(this.context, this.state); - this.enterRule(localContext, 1376, PostgreSQLParser.RULE_columnref); + this.enterRule(localContext, 1372, PostgreSQLParser.RULE_columnref); try { this.enterOuterAlt(localContext, 1); { - this.state = 10622; + this.state = 10519; this.colid(); - this.state = 10624; + this.state = 10521; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { case 1: { - this.state = 10623; + this.state = 10520; this.indirection(); } break; @@ -57429,18 +57920,18 @@ export class PostgreSQLParser extends antlr.Parser { } public indirection_el(): Indirection_elContext { let localContext = new Indirection_elContext(this.context, this.state); - this.enterRule(localContext, 1378, PostgreSQLParser.RULE_indirection_el); + this.enterRule(localContext, 1374, PostgreSQLParser.RULE_indirection_el); let _la: number; try { - this.state = 10643; + this.state = 10540; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 10626; + this.state = 10523; this.match(PostgreSQLParser.DOT); - this.state = 10629; + this.state = 10526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_ALL: @@ -57933,13 +58424,13 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10627; + this.state = 10524; this.attr_name(); } break; case PostgreSQLParser.STAR: { - this.state = 10628; + this.state = 10525; this.match(PostgreSQLParser.STAR); } break; @@ -57951,37 +58442,37 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 10631; + this.state = 10528; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 10640; + this.state = 10537; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { case 1: { - this.state = 10632; + this.state = 10529; this.a_expr(); } break; case 2: { - this.state = 10634; + this.state = 10531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10633; + this.state = 10530; this.opt_slice_bound(); } } - this.state = 10636; + this.state = 10533; this.match(PostgreSQLParser.COLON); - this.state = 10638; + this.state = 10535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 10637; + this.state = 10534; this.opt_slice_bound(); } } @@ -57989,7 +58480,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 10642; + this.state = 10539; this.match(PostgreSQLParser.CLOSE_BRACKET); } break; @@ -58013,11 +58504,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_slice_bound(): Opt_slice_boundContext { let localContext = new Opt_slice_boundContext(this.context, this.state); - this.enterRule(localContext, 1380, PostgreSQLParser.RULE_opt_slice_bound); + this.enterRule(localContext, 1376, PostgreSQLParser.RULE_opt_slice_bound); try { this.enterOuterAlt(localContext, 1); { - this.state = 10645; + this.state = 10542; this.a_expr(); } } @@ -58037,12 +58528,12 @@ export class PostgreSQLParser extends antlr.Parser { } public indirection(): IndirectionContext { let localContext = new IndirectionContext(this.context, this.state); - this.enterRule(localContext, 1382, PostgreSQLParser.RULE_indirection); + this.enterRule(localContext, 1378, PostgreSQLParser.RULE_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10648; + this.state = 10545; this.errorHandler.sync(this); alternative = 1; do { @@ -58050,7 +58541,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 10647; + this.state = 10544; this.indirection_el(); } } @@ -58058,9 +58549,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 10650; + this.state = 10547; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -58080,26 +58571,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_indirection(): Opt_indirectionContext { let localContext = new Opt_indirectionContext(this.context, this.state); - this.enterRule(localContext, 1384, PostgreSQLParser.RULE_opt_indirection); + this.enterRule(localContext, 1380, PostgreSQLParser.RULE_opt_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10655; + this.state = 10552; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10652; + this.state = 10549; this.indirection_el(); } } } - this.state = 10657; + this.state = 10554; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context); } } } @@ -58119,11 +58610,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_target_list(): Opt_target_listContext { let localContext = new Opt_target_listContext(this.context, this.state); - this.enterRule(localContext, 1386, PostgreSQLParser.RULE_opt_target_list); + this.enterRule(localContext, 1382, PostgreSQLParser.RULE_opt_target_list); try { this.enterOuterAlt(localContext, 1); { - this.state = 10658; + this.state = 10555; this.target_list(); } } @@ -58143,30 +58634,30 @@ export class PostgreSQLParser extends antlr.Parser { } public target_list(): Target_listContext { let localContext = new Target_listContext(this.context, this.state); - this.enterRule(localContext, 1388, PostgreSQLParser.RULE_target_list); + this.enterRule(localContext, 1384, PostgreSQLParser.RULE_target_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10660; + this.state = 10557; this.target_el(); - this.state = 10665; + this.state = 10562; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 10661; + this.state = 10558; this.match(PostgreSQLParser.COMMA); - this.state = 10662; + this.state = 10559; this.target_el(); } } } - this.state = 10667; + this.state = 10564; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context); } } } @@ -58186,9 +58677,9 @@ export class PostgreSQLParser extends antlr.Parser { } public target_el(): Target_elContext { let localContext = new Target_elContext(this.context, this.state); - this.enterRule(localContext, 1390, PostgreSQLParser.RULE_target_el); + this.enterRule(localContext, 1386, PostgreSQLParser.RULE_target_el); try { - this.state = 10676; + this.state = 10573; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -58201,7 +58692,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CASE: case PostgreSQLParser.KW_CAST: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_CATALOG: case PostgreSQLParser.KW_CURRENT_DATE: @@ -58642,22 +59132,22 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 10668; + this.state = 10565; this.column_expr_noparen(); - this.state = 10673; + this.state = 10570; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 10669; + this.state = 10566; this.match(PostgreSQLParser.KW_AS); - this.state = 10670; + this.state = 10567; this.collabel(); } break; case 2: { - this.state = 10671; + this.state = 10568; this.identifier(); } break; @@ -58673,7 +59163,7 @@ export class PostgreSQLParser extends antlr.Parser { localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 10675; + this.state = 10572; this.match(PostgreSQLParser.STAR); } break; @@ -58697,26 +59187,26 @@ export class PostgreSQLParser extends antlr.Parser { } public qualified_name_list(): Qualified_name_listContext { let localContext = new Qualified_name_listContext(this.context, this.state); - this.enterRule(localContext, 1392, PostgreSQLParser.RULE_qualified_name_list); + this.enterRule(localContext, 1388, PostgreSQLParser.RULE_qualified_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10678; + this.state = 10575; this.qualified_name(); - this.state = 10683; + this.state = 10580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10679; + this.state = 10576; this.match(PostgreSQLParser.COMMA); - this.state = 10680; + this.state = 10577; this.qualified_name(); } } - this.state = 10685; + this.state = 10582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -58738,26 +59228,26 @@ export class PostgreSQLParser extends antlr.Parser { } public table_name_list(): Table_name_listContext { let localContext = new Table_name_listContext(this.context, this.state); - this.enterRule(localContext, 1394, PostgreSQLParser.RULE_table_name_list); + this.enterRule(localContext, 1390, PostgreSQLParser.RULE_table_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10686; + this.state = 10583; this.table_name(); - this.state = 10691; + this.state = 10588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10687; + this.state = 10584; this.match(PostgreSQLParser.COMMA); - this.state = 10688; + this.state = 10585; this.table_name(); } } - this.state = 10693; + this.state = 10590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -58779,26 +59269,26 @@ export class PostgreSQLParser extends antlr.Parser { } public schema_name_list(): Schema_name_listContext { let localContext = new Schema_name_listContext(this.context, this.state); - this.enterRule(localContext, 1396, PostgreSQLParser.RULE_schema_name_list); + this.enterRule(localContext, 1392, PostgreSQLParser.RULE_schema_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10694; + this.state = 10591; this.schema_name(); - this.state = 10699; + this.state = 10596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10695; + this.state = 10592; this.match(PostgreSQLParser.COMMA); - this.state = 10696; + this.state = 10593; this.schema_name(); } } - this.state = 10701; + this.state = 10598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -58820,26 +59310,26 @@ export class PostgreSQLParser extends antlr.Parser { } public database_nameList(): Database_nameListContext { let localContext = new Database_nameListContext(this.context, this.state); - this.enterRule(localContext, 1398, PostgreSQLParser.RULE_database_nameList); + this.enterRule(localContext, 1394, PostgreSQLParser.RULE_database_nameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10702; + this.state = 10599; this.database_name(); - this.state = 10707; + this.state = 10604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10703; + this.state = 10600; this.match(PostgreSQLParser.COMMA); - this.state = 10704; + this.state = 10601; this.database_name(); } } - this.state = 10709; + this.state = 10606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -58861,26 +59351,26 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_name_list(): Procedure_name_listContext { let localContext = new Procedure_name_listContext(this.context, this.state); - this.enterRule(localContext, 1400, PostgreSQLParser.RULE_procedure_name_list); + this.enterRule(localContext, 1396, PostgreSQLParser.RULE_procedure_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10710; + this.state = 10607; this.procedure_name(); - this.state = 10715; + this.state = 10612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10711; + this.state = 10608; this.match(PostgreSQLParser.COMMA); - this.state = 10712; + this.state = 10609; this.procedure_name(); } } - this.state = 10717; + this.state = 10614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -58902,19 +59392,19 @@ export class PostgreSQLParser extends antlr.Parser { } public tablespace_name_create(): Tablespace_name_createContext { let localContext = new Tablespace_name_createContext(this.context, this.state); - this.enterRule(localContext, 1402, PostgreSQLParser.RULE_tablespace_name_create); + this.enterRule(localContext, 1398, PostgreSQLParser.RULE_tablespace_name_create); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10718; + this.state = 10615; this.colid(); - this.state = 10720; + this.state = 10617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10719; + this.state = 10616; this.indirection(); } } @@ -58937,19 +59427,19 @@ export class PostgreSQLParser extends antlr.Parser { } public tablespace_name(): Tablespace_nameContext { let localContext = new Tablespace_nameContext(this.context, this.state); - this.enterRule(localContext, 1404, PostgreSQLParser.RULE_tablespace_name); + this.enterRule(localContext, 1400, PostgreSQLParser.RULE_tablespace_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10722; + this.state = 10619; this.colid(); - this.state = 10724; + this.state = 10621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10723; + this.state = 10620; this.indirection(); } } @@ -58972,19 +59462,19 @@ export class PostgreSQLParser extends antlr.Parser { } public table_name_create(): Table_name_createContext { let localContext = new Table_name_createContext(this.context, this.state); - this.enterRule(localContext, 1406, PostgreSQLParser.RULE_table_name_create); + this.enterRule(localContext, 1402, PostgreSQLParser.RULE_table_name_create); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10726; + this.state = 10623; this.colid(); - this.state = 10728; + this.state = 10625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10727; + this.state = 10624; this.indirection(); } } @@ -59007,22 +59497,23 @@ export class PostgreSQLParser extends antlr.Parser { } public table_name(): Table_nameContext { let localContext = new Table_nameContext(this.context, this.state); - this.enterRule(localContext, 1408, PostgreSQLParser.RULE_table_name); + this.enterRule(localContext, 1404, PostgreSQLParser.RULE_table_name); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10730; + this.state = 10627; this.colid(); - this.state = 10732; + this.state = 10629; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 4 || _la === 11) { { - this.state = 10731; + this.state = 10628; this.indirection(); } - break; } + } } catch (re) { @@ -59041,19 +59532,19 @@ export class PostgreSQLParser extends antlr.Parser { } public view_name_create(): View_name_createContext { let localContext = new View_name_createContext(this.context, this.state); - this.enterRule(localContext, 1410, PostgreSQLParser.RULE_view_name_create); + this.enterRule(localContext, 1406, PostgreSQLParser.RULE_view_name_create); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10734; + this.state = 10631; this.colid(); - this.state = 10736; + this.state = 10633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10735; + this.state = 10632; this.indirection(); } } @@ -59076,19 +59567,19 @@ export class PostgreSQLParser extends antlr.Parser { } public view_name(): View_nameContext { let localContext = new View_nameContext(this.context, this.state); - this.enterRule(localContext, 1412, PostgreSQLParser.RULE_view_name); + this.enterRule(localContext, 1408, PostgreSQLParser.RULE_view_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10738; + this.state = 10635; this.colid(); - this.state = 10740; + this.state = 10637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 10739; + this.state = 10636; this.attrs(); } } @@ -59111,19 +59602,19 @@ export class PostgreSQLParser extends antlr.Parser { } public qualified_name(): Qualified_nameContext { let localContext = new Qualified_nameContext(this.context, this.state); - this.enterRule(localContext, 1414, PostgreSQLParser.RULE_qualified_name); + this.enterRule(localContext, 1410, PostgreSQLParser.RULE_qualified_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10742; + this.state = 10639; this.colid(); - this.state = 10744; + this.state = 10641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 11) { { - this.state = 10743; + this.state = 10640; this.indirection(); } } @@ -59146,26 +59637,26 @@ export class PostgreSQLParser extends antlr.Parser { } public tablespace_name_list(): Tablespace_name_listContext { let localContext = new Tablespace_name_listContext(this.context, this.state); - this.enterRule(localContext, 1416, PostgreSQLParser.RULE_tablespace_name_list); + this.enterRule(localContext, 1412, PostgreSQLParser.RULE_tablespace_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10746; + this.state = 10643; this.tablespace_name(); - this.state = 10751; + this.state = 10648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10747; + this.state = 10644; this.match(PostgreSQLParser.COMMA); - this.state = 10748; + this.state = 10645; this.tablespace_name(); } } - this.state = 10753; + this.state = 10650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59187,26 +59678,26 @@ export class PostgreSQLParser extends antlr.Parser { } public name_list(): Name_listContext { let localContext = new Name_listContext(this.context, this.state); - this.enterRule(localContext, 1418, PostgreSQLParser.RULE_name_list); + this.enterRule(localContext, 1414, PostgreSQLParser.RULE_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10754; + this.state = 10651; this.name(); - this.state = 10759; + this.state = 10656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10755; + this.state = 10652; this.match(PostgreSQLParser.COMMA); - this.state = 10756; + this.state = 10653; this.name(); } } - this.state = 10761; + this.state = 10658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -59228,19 +59719,19 @@ export class PostgreSQLParser extends antlr.Parser { } public database_name_create(): Database_name_createContext { let localContext = new Database_name_createContext(this.context, this.state); - this.enterRule(localContext, 1420, PostgreSQLParser.RULE_database_name_create); + this.enterRule(localContext, 1416, PostgreSQLParser.RULE_database_name_create); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10762; + this.state = 10659; this.colid(); - this.state = 10764; + this.state = 10661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 10763; + this.state = 10660; this.attrs(); } } @@ -59263,19 +59754,19 @@ export class PostgreSQLParser extends antlr.Parser { } public database_name(): Database_nameContext { let localContext = new Database_nameContext(this.context, this.state); - this.enterRule(localContext, 1422, PostgreSQLParser.RULE_database_name); + this.enterRule(localContext, 1418, PostgreSQLParser.RULE_database_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10766; + this.state = 10663; this.colid(); - this.state = 10768; + this.state = 10665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 10767; + this.state = 10664; this.attrs(); } } @@ -59298,19 +59789,19 @@ export class PostgreSQLParser extends antlr.Parser { } public schema_name(): Schema_nameContext { let localContext = new Schema_nameContext(this.context, this.state); - this.enterRule(localContext, 1424, PostgreSQLParser.RULE_schema_name); + this.enterRule(localContext, 1420, PostgreSQLParser.RULE_schema_name); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10770; + this.state = 10667; this.colid(); - this.state = 10772; + this.state = 10669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 10771; + this.state = 10668; this.attrs(); } } @@ -59333,11 +59824,11 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_name_create(): Routine_name_createContext { let localContext = new Routine_name_createContext(this.context, this.state); - this.enterRule(localContext, 1426, PostgreSQLParser.RULE_routine_name_create); + this.enterRule(localContext, 1422, PostgreSQLParser.RULE_routine_name_create); try { this.enterOuterAlt(localContext, 1); { - this.state = 10774; + this.state = 10671; this.colid(); } } @@ -59357,11 +59848,11 @@ export class PostgreSQLParser extends antlr.Parser { } public routine_name(): Routine_nameContext { let localContext = new Routine_nameContext(this.context, this.state); - this.enterRule(localContext, 1428, PostgreSQLParser.RULE_routine_name); + this.enterRule(localContext, 1424, PostgreSQLParser.RULE_routine_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 10776; + this.state = 10673; this.colid(); } } @@ -59381,24 +59872,24 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_name(): Procedure_nameContext { let localContext = new Procedure_nameContext(this.context, this.state); - this.enterRule(localContext, 1430, PostgreSQLParser.RULE_procedure_name); + this.enterRule(localContext, 1426, PostgreSQLParser.RULE_procedure_name); try { - this.state = 10782; + this.state = 10679; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10778; + this.state = 10675; this.type_function_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10779; + this.state = 10676; this.colid(); - this.state = 10780; + this.state = 10677; this.indirection(); } break; @@ -59420,24 +59911,24 @@ export class PostgreSQLParser extends antlr.Parser { } public procedure_name_create(): Procedure_name_createContext { let localContext = new Procedure_name_createContext(this.context, this.state); - this.enterRule(localContext, 1432, PostgreSQLParser.RULE_procedure_name_create); + this.enterRule(localContext, 1428, PostgreSQLParser.RULE_procedure_name_create); try { - this.state = 10788; + this.state = 10685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10784; + this.state = 10681; this.type_function_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10785; + this.state = 10682; this.colid(); - this.state = 10786; + this.state = 10683; this.indirection(); } break; @@ -59459,12 +59950,29 @@ export class PostgreSQLParser extends antlr.Parser { } public column_name(): Column_nameContext { let localContext = new Column_nameContext(this.context, this.state); - this.enterRule(localContext, 1434, PostgreSQLParser.RULE_column_name); + this.enterRule(localContext, 1430, PostgreSQLParser.RULE_column_name); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 10790; + this.state = 10687; this.colid(); + this.state = 10691; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 10688; + this.indirection_el(); + } + } + } + this.state = 10693; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context); + } } } catch (re) { @@ -59483,11 +59991,11 @@ export class PostgreSQLParser extends antlr.Parser { } public column_name_create(): Column_name_createContext { let localContext = new Column_name_createContext(this.context, this.state); - this.enterRule(localContext, 1436, PostgreSQLParser.RULE_column_name_create); + this.enterRule(localContext, 1432, PostgreSQLParser.RULE_column_name_create); try { this.enterOuterAlt(localContext, 1); { - this.state = 10792; + this.state = 10694; this.colid(); } } @@ -59507,11 +60015,11 @@ export class PostgreSQLParser extends antlr.Parser { } public name(): NameContext { let localContext = new NameContext(this.context, this.state); - this.enterRule(localContext, 1438, PostgreSQLParser.RULE_name); + this.enterRule(localContext, 1434, PostgreSQLParser.RULE_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 10794; + this.state = 10696; this.colid(); } } @@ -59531,11 +60039,11 @@ export class PostgreSQLParser extends antlr.Parser { } public attr_name(): Attr_nameContext { let localContext = new Attr_nameContext(this.context, this.state); - this.enterRule(localContext, 1440, PostgreSQLParser.RULE_attr_name); + this.enterRule(localContext, 1436, PostgreSQLParser.RULE_attr_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 10796; + this.state = 10698; this.collabel(); } } @@ -59555,11 +60063,11 @@ export class PostgreSQLParser extends antlr.Parser { } public file_name(): File_nameContext { let localContext = new File_nameContext(this.context, this.state); - this.enterRule(localContext, 1442, PostgreSQLParser.RULE_file_name); + this.enterRule(localContext, 1438, PostgreSQLParser.RULE_file_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 10798; + this.state = 10700; this.sconst(); } } @@ -59579,24 +60087,24 @@ export class PostgreSQLParser extends antlr.Parser { } public function_name_create(): Function_name_createContext { let localContext = new Function_name_createContext(this.context, this.state); - this.enterRule(localContext, 1444, PostgreSQLParser.RULE_function_name_create); + this.enterRule(localContext, 1440, PostgreSQLParser.RULE_function_name_create); try { - this.state = 10804; + this.state = 10706; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10800; + this.state = 10702; this.type_function_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10801; + this.state = 10703; this.colid(); - this.state = 10802; + this.state = 10704; this.indirection(); } break; @@ -59618,24 +60126,24 @@ export class PostgreSQLParser extends antlr.Parser { } public function_name(): Function_nameContext { let localContext = new Function_nameContext(this.context, this.state); - this.enterRule(localContext, 1446, PostgreSQLParser.RULE_function_name); + this.enterRule(localContext, 1442, PostgreSQLParser.RULE_function_name); try { - this.state = 10810; + this.state = 10712; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10806; + this.state = 10708; this.type_function_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10807; + this.state = 10709; this.colid(); - this.state = 10808; + this.state = 10710; this.indirection(); } break; @@ -59657,24 +60165,24 @@ export class PostgreSQLParser extends antlr.Parser { } public usual_name(): Usual_nameContext { let localContext = new Usual_nameContext(this.context, this.state); - this.enterRule(localContext, 1448, PostgreSQLParser.RULE_usual_name); + this.enterRule(localContext, 1444, PostgreSQLParser.RULE_usual_name); try { - this.state = 10816; + this.state = 10718; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10812; + this.state = 10714; this.type_usual_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10813; + this.state = 10715; this.colid(); - this.state = 10814; + this.state = 10716; this.indirection(); } break; @@ -59696,53 +60204,53 @@ export class PostgreSQLParser extends antlr.Parser { } public aexprconst(): AexprconstContext { let localContext = new AexprconstContext(this.context, this.state); - this.enterRule(localContext, 1450, PostgreSQLParser.RULE_aexprconst); + this.enterRule(localContext, 1446, PostgreSQLParser.RULE_aexprconst); let _la: number; try { - this.state = 10853; + this.state = 10755; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10818; + this.state = 10720; this.iconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10819; + this.state = 10721; this.fconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10820; + this.state = 10722; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10821; + this.state = 10723; this.bconst(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10822; + this.state = 10724; this.xconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10823; + this.state = 10725; this.function_name(); - this.state = 10833; + this.state = 10735; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -59750,29 +60258,29 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10824; + this.state = 10726; this.sconst(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 10825; + this.state = 10727; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10826; + this.state = 10728; this.func_arg_list(); - this.state = 10828; + this.state = 10730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 10827; + this.state = 10729; this.opt_sort_clause(); } } - this.state = 10830; + this.state = 10732; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 10831; + this.state = 10733; this.sconst(); } break; @@ -59784,18 +60292,18 @@ export class PostgreSQLParser extends antlr.Parser { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10835; + this.state = 10737; this.consttypename(); - this.state = 10836; + this.state = 10738; this.sconst(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10838; + this.state = 10740; this.constinterval(); - this.state = 10848; + this.state = 10750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: @@ -59803,14 +60311,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.BeginDollarStringConstant: case PostgreSQLParser.EscapeStringConstant: { - this.state = 10839; + this.state = 10741; this.sconst(); - this.state = 10841; + this.state = 10743; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 10840; + this.state = 10742; this.opt_interval(); } break; @@ -59819,13 +60327,13 @@ export class PostgreSQLParser extends antlr.Parser { break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 10843; + this.state = 10745; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10844; + this.state = 10746; this.iconst(); - this.state = 10845; + this.state = 10747; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 10846; + this.state = 10748; this.sconst(); } break; @@ -59837,21 +60345,21 @@ export class PostgreSQLParser extends antlr.Parser { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 10850; + this.state = 10752; this.match(PostgreSQLParser.KW_TRUE); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 10851; + this.state = 10753; this.match(PostgreSQLParser.KW_FALSE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 10852; + this.state = 10754; this.match(PostgreSQLParser.KW_NULL); } break; @@ -59873,11 +60381,11 @@ export class PostgreSQLParser extends antlr.Parser { } public xconst(): XconstContext { let localContext = new XconstContext(this.context, this.state); - this.enterRule(localContext, 1452, PostgreSQLParser.RULE_xconst); + this.enterRule(localContext, 1448, PostgreSQLParser.RULE_xconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10855; + this.state = 10757; this.match(PostgreSQLParser.HexadecimalStringConstant); } } @@ -59897,11 +60405,11 @@ export class PostgreSQLParser extends antlr.Parser { } public bconst(): BconstContext { let localContext = new BconstContext(this.context, this.state); - this.enterRule(localContext, 1454, PostgreSQLParser.RULE_bconst); + this.enterRule(localContext, 1450, PostgreSQLParser.RULE_bconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10857; + this.state = 10759; this.match(PostgreSQLParser.BinaryStringConstant); } } @@ -59921,11 +60429,11 @@ export class PostgreSQLParser extends antlr.Parser { } public fconst(): FconstContext { let localContext = new FconstContext(this.context, this.state); - this.enterRule(localContext, 1456, PostgreSQLParser.RULE_fconst); + this.enterRule(localContext, 1452, PostgreSQLParser.RULE_fconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10859; + this.state = 10761; this.match(PostgreSQLParser.Numeric); } } @@ -59945,11 +60453,11 @@ export class PostgreSQLParser extends antlr.Parser { } public iconst(): IconstContext { let localContext = new IconstContext(this.context, this.state); - this.enterRule(localContext, 1458, PostgreSQLParser.RULE_iconst); + this.enterRule(localContext, 1454, PostgreSQLParser.RULE_iconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10861; + this.state = 10763; this.match(PostgreSQLParser.Integral); } } @@ -59969,18 +60477,18 @@ export class PostgreSQLParser extends antlr.Parser { } public sconst(): SconstContext { let localContext = new SconstContext(this.context, this.state); - this.enterRule(localContext, 1460, PostgreSQLParser.RULE_sconst); + this.enterRule(localContext, 1456, PostgreSQLParser.RULE_sconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 10863; + this.state = 10765; this.anysconst(); - this.state = 10865; + this.state = 10767; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 10864; + this.state = 10766; this.opt_uescape(); } break; @@ -60003,53 +60511,53 @@ export class PostgreSQLParser extends antlr.Parser { } public anysconst(): AnysconstContext { let localContext = new AnysconstContext(this.context, this.state); - this.enterRule(localContext, 1462, PostgreSQLParser.RULE_anysconst); + this.enterRule(localContext, 1458, PostgreSQLParser.RULE_anysconst); let _la: number; try { - this.state = 10878; + this.state = 10780; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 10867; + this.state = 10769; this.match(PostgreSQLParser.StringConstant); } break; case PostgreSQLParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 10868; + this.state = 10770; this.match(PostgreSQLParser.UnicodeEscapeStringConstant); } break; case PostgreSQLParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 10869; + this.state = 10771; this.match(PostgreSQLParser.BeginDollarStringConstant); - this.state = 10873; + this.state = 10775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 588) { { { - this.state = 10870; + this.state = 10772; this.match(PostgreSQLParser.DollarText); } } - this.state = 10875; + this.state = 10777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 10876; + this.state = 10778; this.match(PostgreSQLParser.EndDollarStringConstant); } break; case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 10877; + this.state = 10779; this.match(PostgreSQLParser.EscapeStringConstant); } break; @@ -60073,13 +60581,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_uescape(): Opt_uescapeContext { let localContext = new Opt_uescapeContext(this.context, this.state); - this.enterRule(localContext, 1464, PostgreSQLParser.RULE_opt_uescape); + this.enterRule(localContext, 1460, PostgreSQLParser.RULE_opt_uescape); try { this.enterOuterAlt(localContext, 1); { - this.state = 10880; + this.state = 10782; this.match(PostgreSQLParser.KW_UESCAPE); - this.state = 10881; + this.state = 10783; this.anysconst(); } } @@ -60099,33 +60607,33 @@ export class PostgreSQLParser extends antlr.Parser { } public signediconst(): SignediconstContext { let localContext = new SignediconstContext(this.context, this.state); - this.enterRule(localContext, 1466, PostgreSQLParser.RULE_signediconst); + this.enterRule(localContext, 1462, PostgreSQLParser.RULE_signediconst); try { - this.state = 10888; + this.state = 10790; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Integral: this.enterOuterAlt(localContext, 1); { - this.state = 10883; + this.state = 10785; this.iconst(); } break; case PostgreSQLParser.PLUS: this.enterOuterAlt(localContext, 2); { - this.state = 10884; + this.state = 10786; this.match(PostgreSQLParser.PLUS); - this.state = 10885; + this.state = 10787; this.iconst(); } break; case PostgreSQLParser.MINUS: this.enterOuterAlt(localContext, 3); { - this.state = 10886; + this.state = 10788; this.match(PostgreSQLParser.MINUS); - this.state = 10887; + this.state = 10789; this.iconst(); } break; @@ -60149,11 +60657,11 @@ export class PostgreSQLParser extends antlr.Parser { } public groupname(): GroupnameContext { let localContext = new GroupnameContext(this.context, this.state); - this.enterRule(localContext, 1468, PostgreSQLParser.RULE_groupname); + this.enterRule(localContext, 1464, PostgreSQLParser.RULE_groupname); try { this.enterOuterAlt(localContext, 1); { - this.state = 10890; + this.state = 10792; this.rolespec(); } } @@ -60173,11 +60681,11 @@ export class PostgreSQLParser extends antlr.Parser { } public roleid(): RoleidContext { let localContext = new RoleidContext(this.context, this.state); - this.enterRule(localContext, 1470, PostgreSQLParser.RULE_roleid); + this.enterRule(localContext, 1466, PostgreSQLParser.RULE_roleid); try { this.enterOuterAlt(localContext, 1); { - this.state = 10892; + this.state = 10794; this.rolespec(); } } @@ -60197,15 +60705,14 @@ export class PostgreSQLParser extends antlr.Parser { } public rolespec(): RolespecContext { let localContext = new RolespecContext(this.context, this.state); - this.enterRule(localContext, 1472, PostgreSQLParser.RULE_rolespec); + this.enterRule(localContext, 1468, PostgreSQLParser.RULE_rolespec); try { - this.state = 10899; + this.state = 10801; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -60626,35 +61133,35 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 10894; + this.state = 10796; this.nonreservedword(); } break; case PostgreSQLParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 2); { - this.state = 10895; + this.state = 10797; this.match(PostgreSQLParser.KW_CURRENT_USER); } break; case PostgreSQLParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 10896; + this.state = 10798; this.match(PostgreSQLParser.KW_CURRENT_ROLE); } break; case PostgreSQLParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 4); { - this.state = 10897; + this.state = 10799; this.match(PostgreSQLParser.KW_SESSION_USER); } break; case PostgreSQLParser.KW_PUBLIC: this.enterOuterAlt(localContext, 5); { - this.state = 10898; + this.state = 10800; this.match(PostgreSQLParser.KW_PUBLIC); } break; @@ -60678,26 +61185,26 @@ export class PostgreSQLParser extends antlr.Parser { } public role_list(): Role_listContext { let localContext = new Role_listContext(this.context, this.state); - this.enterRule(localContext, 1474, PostgreSQLParser.RULE_role_list); + this.enterRule(localContext, 1470, PostgreSQLParser.RULE_role_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10901; + this.state = 10803; this.rolespec(); - this.state = 10906; + this.state = 10808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 10902; + this.state = 10804; this.match(PostgreSQLParser.COMMA); - this.state = 10903; + this.state = 10805; this.rolespec(); } } - this.state = 10908; + this.state = 10810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -60719,36 +61226,36 @@ export class PostgreSQLParser extends antlr.Parser { } public colid(): ColidContext { let localContext = new ColidContext(this.context, this.state); - this.enterRule(localContext, 1476, PostgreSQLParser.RULE_colid); + this.enterRule(localContext, 1472, PostgreSQLParser.RULE_colid); try { - this.state = 10913; + this.state = 10815; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10909; + this.state = 10811; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10910; + this.state = 10812; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10911; + this.state = 10813; this.col_name_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10912; + this.state = 10814; this.plsql_unreserved_keyword(); } break; @@ -60770,11 +61277,11 @@ export class PostgreSQLParser extends antlr.Parser { } public index_method_choices(): Index_method_choicesContext { let localContext = new Index_method_choicesContext(this.context, this.state); - this.enterRule(localContext, 1478, PostgreSQLParser.RULE_index_method_choices); + this.enterRule(localContext, 1474, PostgreSQLParser.RULE_index_method_choices); try { this.enterOuterAlt(localContext, 1); { - this.state = 10915; + this.state = 10817; this.identifier(); } } @@ -60794,16 +61301,16 @@ export class PostgreSQLParser extends antlr.Parser { } public exclude_element(): Exclude_elementContext { let localContext = new Exclude_elementContext(this.context, this.state); - this.enterRule(localContext, 1480, PostgreSQLParser.RULE_exclude_element); + this.enterRule(localContext, 1476, PostgreSQLParser.RULE_exclude_element); let _la: number; try { - this.state = 10929; + this.state = 10831; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 10917; + this.state = 10819; this.opt_definition(); } break; @@ -60811,31 +61318,31 @@ export class PostgreSQLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 10918; + this.state = 10820; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 10919; + this.state = 10821; this.a_expr(); - this.state = 10920; + this.state = 10822; this.match(PostgreSQLParser.CLOSE_PAREN); } - this.state = 10922; + this.state = 10824; this.identifier(); - this.state = 10924; + this.state = 10826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 10923; + this.state = 10825; this.opt_asc_desc(); } } - this.state = 10927; + this.state = 10829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 10926; + this.state = 10828; this.opt_nulls_order(); } } @@ -60862,29 +61369,29 @@ export class PostgreSQLParser extends antlr.Parser { } public index_paramenters(): Index_paramentersContext { let localContext = new Index_paramentersContext(this.context, this.state); - this.enterRule(localContext, 1482, PostgreSQLParser.RULE_index_paramenters); + this.enterRule(localContext, 1478, PostgreSQLParser.RULE_index_paramenters); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10933; + this.state = 10835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 10931; + this.state = 10833; this.match(PostgreSQLParser.KW_WITH); - this.state = 10932; + this.state = 10834; this.reloptions(); } } - this.state = 10936; + this.state = 10838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 10935; + this.state = 10837; this.optconstablespace(); } } @@ -60907,36 +61414,36 @@ export class PostgreSQLParser extends antlr.Parser { } public type_function_name(): Type_function_nameContext { let localContext = new Type_function_nameContext(this.context, this.state); - this.enterRule(localContext, 1484, PostgreSQLParser.RULE_type_function_name); + this.enterRule(localContext, 1480, PostgreSQLParser.RULE_type_function_name); try { - this.state = 10942; + this.state = 10844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10938; + this.state = 10840; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10939; + this.state = 10841; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10940; + this.state = 10842; this.plsql_unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10941; + this.state = 10843; this.type_func_name_keyword(); } break; @@ -60958,36 +61465,36 @@ export class PostgreSQLParser extends antlr.Parser { } public type_usual_name(): Type_usual_nameContext { let localContext = new Type_usual_nameContext(this.context, this.state); - this.enterRule(localContext, 1486, PostgreSQLParser.RULE_type_usual_name); + this.enterRule(localContext, 1482, PostgreSQLParser.RULE_type_usual_name); try { - this.state = 10948; + this.state = 10850; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10944; + this.state = 10846; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10945; + this.state = 10847; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10946; + this.state = 10848; this.plsql_unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10947; + this.state = 10849; this.type_func_name_keyword(); } break; @@ -61009,22 +61516,22 @@ export class PostgreSQLParser extends antlr.Parser { } public nonreservedword_column(): Nonreservedword_columnContext { let localContext = new Nonreservedword_columnContext(this.context, this.state); - this.enterRule(localContext, 1488, PostgreSQLParser.RULE_nonreservedword_column); + this.enterRule(localContext, 1484, PostgreSQLParser.RULE_nonreservedword_column); try { - this.state = 10952; + this.state = 10854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10950; + this.state = 10852; this.column_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10951; + this.state = 10853; this.type_func_name_keyword(); } break; @@ -61046,36 +61553,36 @@ export class PostgreSQLParser extends antlr.Parser { } public nonreservedword(): NonreservedwordContext { let localContext = new NonreservedwordContext(this.context, this.state); - this.enterRule(localContext, 1490, PostgreSQLParser.RULE_nonreservedword); + this.enterRule(localContext, 1486, PostgreSQLParser.RULE_nonreservedword); try { - this.state = 10958; + this.state = 10860; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10954; + this.state = 10856; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10955; + this.state = 10857; this.unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10956; + this.state = 10858; this.col_name_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10957; + this.state = 10859; this.type_func_name_keyword(); } break; @@ -61097,50 +61604,50 @@ export class PostgreSQLParser extends antlr.Parser { } public collabel(): CollabelContext { let localContext = new CollabelContext(this.context, this.state); - this.enterRule(localContext, 1492, PostgreSQLParser.RULE_collabel); + this.enterRule(localContext, 1488, PostgreSQLParser.RULE_collabel); try { - this.state = 10966; + this.state = 10868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10960; + this.state = 10862; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10961; + this.state = 10863; this.plsql_unreserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10962; + this.state = 10864; this.unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10963; + this.state = 10865; this.col_name_keyword(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10964; + this.state = 10866; this.type_func_name_keyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10965; + this.state = 10867; this.reserved_keyword(); } break; @@ -61162,22 +61669,22 @@ export class PostgreSQLParser extends antlr.Parser { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 1494, PostgreSQLParser.RULE_identifier); + this.enterRule(localContext, 1490, PostgreSQLParser.RULE_identifier); try { - this.state = 10978; + this.state = 10880; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 10968; + this.state = 10870; this.match(PostgreSQLParser.Identifier); - this.state = 10970; + this.state = 10872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1163, this.context) ) { case 1: { - this.state = 10969; + this.state = 10871; this.opt_uescape(); } break; @@ -61190,42 +61697,41 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 10972; + this.state = 10874; this.sconst(); } break; case PostgreSQLParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 10973; + this.state = 10875; this.match(PostgreSQLParser.QuotedIdentifier); } break; case PostgreSQLParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 10974; + this.state = 10876; this.match(PostgreSQLParser.UnicodeQuotedIdentifier); } break; case PostgreSQLParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 10975; + this.state = 10877; this.plsqlvariablename(); } break; case PostgreSQLParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 10976; + this.state = 10878; this.plsqlidentifier(); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -61289,7 +61795,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_OPEN: this.enterOuterAlt(localContext, 7); { - this.state = 10977; + this.state = 10879; this.plsql_unreserved_keyword(); } break; @@ -61313,11 +61819,11 @@ export class PostgreSQLParser extends antlr.Parser { } public plsqlidentifier(): PlsqlidentifierContext { let localContext = new PlsqlidentifierContext(this.context, this.state); - this.enterRule(localContext, 1496, PostgreSQLParser.RULE_plsqlidentifier); + this.enterRule(localContext, 1492, PostgreSQLParser.RULE_plsqlidentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 10980; + this.state = 10882; this.match(PostgreSQLParser.PLSQLIDENTIFIER); } } @@ -61337,12 +61843,12 @@ export class PostgreSQLParser extends antlr.Parser { } public unreserved_keyword(): Unreserved_keywordContext { let localContext = new Unreserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1498, PostgreSQLParser.RULE_unreserved_keyword); + this.enterRule(localContext, 1494, PostgreSQLParser.RULE_unreserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 10982; + this.state = 10884; _la = this.tokenStream.LA(1); if(!(((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 127) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 16770399) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -61369,365 +61875,365 @@ export class PostgreSQLParser extends antlr.Parser { } public col_name_keyword(): Col_name_keywordContext { let localContext = new Col_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 1500, PostgreSQLParser.RULE_col_name_keyword); + this.enterRule(localContext, 1496, PostgreSQLParser.RULE_col_name_keyword); try { - this.state = 11035; + this.state = 10937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 10984; + this.state = 10886; this.match(PostgreSQLParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 10985; + this.state = 10887; this.match(PostgreSQLParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 10986; + this.state = 10888; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 10987; + this.state = 10889; this.match(PostgreSQLParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 10988; + this.state = 10890; this.match(PostgreSQLParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 10989; + this.state = 10891; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 10990; + this.state = 10892; this.match(PostgreSQLParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 10991; + this.state = 10893; this.match(PostgreSQLParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 10992; + this.state = 10894; this.match(PostgreSQLParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 10993; + this.state = 10895; this.match(PostgreSQLParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 10994; + this.state = 10896; this.match(PostgreSQLParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 10995; + this.state = 10897; this.match(PostgreSQLParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 10996; + this.state = 10898; this.match(PostgreSQLParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 10997; + this.state = 10899; this.match(PostgreSQLParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 10998; + this.state = 10900; this.match(PostgreSQLParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 10999; + this.state = 10901; this.match(PostgreSQLParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 11000; + this.state = 10902; this.match(PostgreSQLParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 11001; + this.state = 10903; this.match(PostgreSQLParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 11002; + this.state = 10904; this.match(PostgreSQLParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 11003; + this.state = 10905; this.match(PostgreSQLParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 11004; + this.state = 10906; this.match(PostgreSQLParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 11005; + this.state = 10907; this.match(PostgreSQLParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 11006; + this.state = 10908; this.match(PostgreSQLParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 11007; + this.state = 10909; this.match(PostgreSQLParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 11008; + this.state = 10910; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 11009; + this.state = 10911; this.match(PostgreSQLParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 11010; + this.state = 10912; this.match(PostgreSQLParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 11011; + this.state = 10913; this.match(PostgreSQLParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 11012; + this.state = 10914; this.match(PostgreSQLParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 11013; + this.state = 10915; this.match(PostgreSQLParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 11014; + this.state = 10916; this.match(PostgreSQLParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 11015; + this.state = 10917; this.match(PostgreSQLParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 11016; + this.state = 10918; this.match(PostgreSQLParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 11017; + this.state = 10919; this.match(PostgreSQLParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 11018; + this.state = 10920; this.match(PostgreSQLParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 11019; + this.state = 10921; this.match(PostgreSQLParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 11020; + this.state = 10922; this.match(PostgreSQLParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 11021; + this.state = 10923; this.match(PostgreSQLParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 11022; + this.state = 10924; this.match(PostgreSQLParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 11023; + this.state = 10925; this.match(PostgreSQLParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 11024; + this.state = 10926; this.match(PostgreSQLParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 11025; + this.state = 10927; this.match(PostgreSQLParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 11026; + this.state = 10928; this.match(PostgreSQLParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 11027; + this.state = 10929; this.match(PostgreSQLParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 11028; + this.state = 10930; this.match(PostgreSQLParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 11029; + this.state = 10931; this.match(PostgreSQLParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 11030; + this.state = 10932; this.match(PostgreSQLParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 11031; + this.state = 10933; this.match(PostgreSQLParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 11032; + this.state = 10934; this.match(PostgreSQLParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 11033; + this.state = 10935; this.match(PostgreSQLParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 11034; + this.state = 10936; this.match(PostgreSQLParser.KW_XMLTABLE); } break; @@ -61749,12 +62255,12 @@ export class PostgreSQLParser extends antlr.Parser { } public type_func_name_keyword(): Type_func_name_keywordContext { let localContext = new Type_func_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 1502, PostgreSQLParser.RULE_type_func_name_keyword); + this.enterRule(localContext, 1498, PostgreSQLParser.RULE_type_func_name_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11037; + this.state = 10939; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -61781,12 +62287,12 @@ export class PostgreSQLParser extends antlr.Parser { } public reserved_keyword(): Reserved_keywordContext { let localContext = new Reserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1504, PostgreSQLParser.RULE_reserved_keyword); + this.enterRule(localContext, 1500, PostgreSQLParser.RULE_reserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11039; + this.state = 10941; _la = this.tokenStream.LA(1); if(!(((((_la - 30)) & ~0x1F) === 0 && ((1 << (_la - 30)) & 4286578687) !== 0) || ((((_la - 62)) & ~0x1F) === 0 && ((1 << (_la - 62)) & 4294966783) !== 0) || ((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 4095) !== 0) || _la === 454)) { this.errorHandler.recoverInline(this); @@ -61813,15 +62319,15 @@ export class PostgreSQLParser extends antlr.Parser { } public pl_function(): Pl_functionContext { let localContext = new Pl_functionContext(this.context, this.state); - this.enterRule(localContext, 1506, PostgreSQLParser.RULE_pl_function); + this.enterRule(localContext, 1502, PostgreSQLParser.RULE_pl_function); try { this.enterOuterAlt(localContext, 1); { - this.state = 11041; + this.state = 10943; this.comp_options(); - this.state = 11042; + this.state = 10944; this.pl_block(); - this.state = 11043; + this.state = 10945; this.opt_semi(); } } @@ -61841,22 +62347,22 @@ export class PostgreSQLParser extends antlr.Parser { } public comp_options(): Comp_optionsContext { let localContext = new Comp_optionsContext(this.context, this.state); - this.enterRule(localContext, 1508, PostgreSQLParser.RULE_comp_options); + this.enterRule(localContext, 1504, PostgreSQLParser.RULE_comp_options); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11048; + this.state = 10950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 29) { { { - this.state = 11045; + this.state = 10947; this.comp_option(); } } - this.state = 11050; + this.state = 10952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -61878,63 +62384,63 @@ export class PostgreSQLParser extends antlr.Parser { } public comp_option(): Comp_optionContext { let localContext = new Comp_optionContext(this.context, this.state); - this.enterRule(localContext, 1510, PostgreSQLParser.RULE_comp_option); + this.enterRule(localContext, 1506, PostgreSQLParser.RULE_comp_option); try { - this.state = 11071; + this.state = 10973; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11051; + this.state = 10953; this.sharp(); - this.state = 11052; + this.state = 10954; this.match(PostgreSQLParser.KW_OPTION); - this.state = 11053; + this.state = 10955; this.match(PostgreSQLParser.KW_DUMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11055; + this.state = 10957; this.sharp(); - this.state = 11056; + this.state = 10958; this.match(PostgreSQLParser.KW_PRINT_STRICT_PARAMS); - this.state = 11057; + this.state = 10959; this.option_value(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11059; + this.state = 10961; this.sharp(); - this.state = 11060; + this.state = 10962; this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); - this.state = 11061; + this.state = 10963; this.match(PostgreSQLParser.KW_ERROR); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11063; + this.state = 10965; this.sharp(); - this.state = 11064; + this.state = 10966; this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); - this.state = 11065; + this.state = 10967; this.match(PostgreSQLParser.KW_USE_VARIABLE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 11067; + this.state = 10969; this.sharp(); - this.state = 11068; + this.state = 10970; this.match(PostgreSQLParser.KW_VARIABLE_CONFLICT); - this.state = 11069; + this.state = 10971; this.match(PostgreSQLParser.KW_USE_COLUMN); } break; @@ -61956,11 +62462,11 @@ export class PostgreSQLParser extends antlr.Parser { } public sharp(): SharpContext { let localContext = new SharpContext(this.context, this.state); - this.enterRule(localContext, 1512, PostgreSQLParser.RULE_sharp); + this.enterRule(localContext, 1508, PostgreSQLParser.RULE_sharp); try { this.enterOuterAlt(localContext, 1); { - this.state = 11073; + this.state = 10975; this.match(PostgreSQLParser.Operator); } } @@ -61980,36 +62486,36 @@ export class PostgreSQLParser extends antlr.Parser { } public option_value(): Option_valueContext { let localContext = new Option_valueContext(this.context, this.state); - this.enterRule(localContext, 1514, PostgreSQLParser.RULE_option_value); + this.enterRule(localContext, 1510, PostgreSQLParser.RULE_option_value); try { - this.state = 11079; + this.state = 10981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11075; + this.state = 10977; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11076; + this.state = 10978; this.reserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11077; + this.state = 10979; this.plsql_unreserved_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11078; + this.state = 10980; this.unreserved_keyword(); } break; @@ -62031,9 +62537,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_semi(): Opt_semiContext { let localContext = new Opt_semiContext(this.context, this.state); - this.enterRule(localContext, 1516, PostgreSQLParser.RULE_opt_semi); + this.enterRule(localContext, 1512, PostgreSQLParser.RULE_opt_semi); try { - this.state = 11083; + this.state = 10985; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EOF: @@ -62045,7 +62551,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 11082; + this.state = 10984; this.match(PostgreSQLParser.SEMI); } break; @@ -62069,21 +62575,21 @@ export class PostgreSQLParser extends antlr.Parser { } public pl_block(): Pl_blockContext { let localContext = new Pl_blockContext(this.context, this.state); - this.enterRule(localContext, 1518, PostgreSQLParser.RULE_pl_block); + this.enterRule(localContext, 1514, PostgreSQLParser.RULE_pl_block); try { this.enterOuterAlt(localContext, 1); { - this.state = 11085; + this.state = 10987; this.decl_sect(); - this.state = 11086; + this.state = 10988; this.match(PostgreSQLParser.KW_BEGIN); - this.state = 11087; + this.state = 10989; this.proc_sect(); - this.state = 11088; + this.state = 10990; this.exception_sect(); - this.state = 11089; + this.state = 10991; this.match(PostgreSQLParser.KW_END); - this.state = 11090; + this.state = 10992; this.opt_label(); } } @@ -62103,26 +62609,26 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_sect(): Decl_sectContext { let localContext = new Decl_sectContext(this.context, this.state); - this.enterRule(localContext, 1520, PostgreSQLParser.RULE_decl_sect); + this.enterRule(localContext, 1516, PostgreSQLParser.RULE_decl_sect); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11092; + this.state = 10994; this.opt_block_label(); - this.state = 11097; + this.state = 10999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 11093; + this.state = 10995; this.decl_start(); - this.state = 11095; + this.state = 10997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1170, this.context) ) { case 1: { - this.state = 11094; + this.state = 10996; this.decl_stmts(); } break; @@ -62148,11 +62654,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_start(): Decl_startContext { let localContext = new Decl_startContext(this.context, this.state); - this.enterRule(localContext, 1522, PostgreSQLParser.RULE_decl_start); + this.enterRule(localContext, 1518, PostgreSQLParser.RULE_decl_start); try { this.enterOuterAlt(localContext, 1); { - this.state = 11099; + this.state = 11001; this.match(PostgreSQLParser.KW_DECLARE); } } @@ -62172,12 +62678,12 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_stmts(): Decl_stmtsContext { let localContext = new Decl_stmtsContext(this.context, this.state); - this.enterRule(localContext, 1524, PostgreSQLParser.RULE_decl_stmts); + this.enterRule(localContext, 1520, PostgreSQLParser.RULE_decl_stmts); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 11102; + this.state = 11004; this.errorHandler.sync(this); alternative = 1; do { @@ -62185,7 +62691,7 @@ export class PostgreSQLParser extends antlr.Parser { case 1: { { - this.state = 11101; + this.state = 11003; this.decl_stmt(); } } @@ -62193,9 +62699,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 11104; + this.state = 11006; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -62215,15 +62721,15 @@ export class PostgreSQLParser extends antlr.Parser { } public label_decl(): Label_declContext { let localContext = new Label_declContext(this.context, this.state); - this.enterRule(localContext, 1526, PostgreSQLParser.RULE_label_decl); + this.enterRule(localContext, 1522, PostgreSQLParser.RULE_label_decl); try { this.enterOuterAlt(localContext, 1); { - this.state = 11106; + this.state = 11008; this.match(PostgreSQLParser.LESS_LESS); - this.state = 11107; + this.state = 11009; this.any_identifier(); - this.state = 11108; + this.state = 11010; this.match(PostgreSQLParser.GREATER_GREATER); } } @@ -62243,29 +62749,29 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_stmt(): Decl_stmtContext { let localContext = new Decl_stmtContext(this.context, this.state); - this.enterRule(localContext, 1528, PostgreSQLParser.RULE_decl_stmt); + this.enterRule(localContext, 1524, PostgreSQLParser.RULE_decl_stmt); try { - this.state = 11113; + this.state = 11015; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1170, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1173, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11110; + this.state = 11012; this.decl_statement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11111; + this.state = 11013; this.match(PostgreSQLParser.KW_DECLARE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11112; + this.state = 11014; this.label_decl(); } break; @@ -62287,55 +62793,55 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_statement(): Decl_statementContext { let localContext = new Decl_statementContext(this.context, this.state); - this.enterRule(localContext, 1530, PostgreSQLParser.RULE_decl_statement); + this.enterRule(localContext, 1526, PostgreSQLParser.RULE_decl_statement); try { this.enterOuterAlt(localContext, 1); { - this.state = 11115; + this.state = 11017; this.decl_varname(); - this.state = 11131; + this.state = 11033; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1174, this.context) ) { case 1: { - this.state = 11116; + this.state = 11018; this.match(PostgreSQLParser.KW_ALIAS); - this.state = 11117; + this.state = 11019; this.match(PostgreSQLParser.KW_FOR); - this.state = 11118; + this.state = 11020; this.decl_aliasitem(); } break; case 2: { - this.state = 11119; + this.state = 11021; this.decl_const(); - this.state = 11120; + this.state = 11022; this.decl_datatype(); - this.state = 11121; + this.state = 11023; this.decl_collate(); - this.state = 11122; + this.state = 11024; this.decl_notnull(); - this.state = 11123; + this.state = 11025; this.decl_defval(); } break; case 3: { - this.state = 11125; + this.state = 11027; this.opt_scrollable(); - this.state = 11126; + this.state = 11028; this.match(PostgreSQLParser.KW_CURSOR); - this.state = 11127; + this.state = 11029; this.decl_cursor_args(); - this.state = 11128; + this.state = 11030; this.decl_is_for(); - this.state = 11129; + this.state = 11031; this.decl_cursor_query(); } break; } - this.state = 11133; + this.state = 11035; this.match(PostgreSQLParser.SEMI); } } @@ -62355,9 +62861,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_scrollable(): Opt_scrollableContext { let localContext = new Opt_scrollableContext(this.context, this.state); - this.enterRule(localContext, 1532, PostgreSQLParser.RULE_opt_scrollable); + this.enterRule(localContext, 1528, PostgreSQLParser.RULE_opt_scrollable); try { - this.state = 11139; + this.state = 11041; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CURSOR: @@ -62369,16 +62875,16 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 11136; + this.state = 11038; this.match(PostgreSQLParser.KW_NO); - this.state = 11137; + this.state = 11039; this.match(PostgreSQLParser.KW_SCROLL); } break; case PostgreSQLParser.KW_SCROLL: this.enterOuterAlt(localContext, 3); { - this.state = 11138; + this.state = 11040; this.match(PostgreSQLParser.KW_SCROLL); } break; @@ -62402,11 +62908,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_query(): Decl_cursor_queryContext { let localContext = new Decl_cursor_queryContext(this.context, this.state); - this.enterRule(localContext, 1534, PostgreSQLParser.RULE_decl_cursor_query); + this.enterRule(localContext, 1530, PostgreSQLParser.RULE_decl_cursor_query); try { this.enterOuterAlt(localContext, 1); { - this.state = 11141; + this.state = 11043; this.selectstmt(); } } @@ -62426,9 +62932,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_args(): Decl_cursor_argsContext { let localContext = new Decl_cursor_argsContext(this.context, this.state); - this.enterRule(localContext, 1536, PostgreSQLParser.RULE_decl_cursor_args); + this.enterRule(localContext, 1532, PostgreSQLParser.RULE_decl_cursor_args); try { - this.state = 11148; + this.state = 11050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -62441,11 +62947,11 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 11144; + this.state = 11046; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11145; + this.state = 11047; this.decl_cursor_arglist(); - this.state = 11146; + this.state = 11048; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -62469,26 +62975,26 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_arglist(): Decl_cursor_arglistContext { let localContext = new Decl_cursor_arglistContext(this.context, this.state); - this.enterRule(localContext, 1538, PostgreSQLParser.RULE_decl_cursor_arglist); + this.enterRule(localContext, 1534, PostgreSQLParser.RULE_decl_cursor_arglist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11150; + this.state = 11052; this.decl_cursor_arg(); - this.state = 11155; + this.state = 11057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11151; + this.state = 11053; this.match(PostgreSQLParser.COMMA); - this.state = 11152; + this.state = 11054; this.decl_cursor_arg(); } } - this.state = 11157; + this.state = 11059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -62510,13 +63016,13 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_cursor_arg(): Decl_cursor_argContext { let localContext = new Decl_cursor_argContext(this.context, this.state); - this.enterRule(localContext, 1540, PostgreSQLParser.RULE_decl_cursor_arg); + this.enterRule(localContext, 1536, PostgreSQLParser.RULE_decl_cursor_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 11158; + this.state = 11060; this.decl_varname(); - this.state = 11159; + this.state = 11061; this.decl_datatype(); } } @@ -62536,12 +63042,12 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_is_for(): Decl_is_forContext { let localContext = new Decl_is_forContext(this.context, this.state); - this.enterRule(localContext, 1542, PostgreSQLParser.RULE_decl_is_for); + this.enterRule(localContext, 1538, PostgreSQLParser.RULE_decl_is_for); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11161; + this.state = 11063; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -62568,22 +63074,21 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_aliasitem(): Decl_aliasitemContext { let localContext = new Decl_aliasitemContext(this.context, this.state); - this.enterRule(localContext, 1544, PostgreSQLParser.RULE_decl_aliasitem); + this.enterRule(localContext, 1540, PostgreSQLParser.RULE_decl_aliasitem); try { - this.state = 11165; + this.state = 11067; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.PARAM: this.enterOuterAlt(localContext, 1); { - this.state = 11163; + this.state = 11065; this.match(PostgreSQLParser.PARAM); } break; case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -62983,7 +63488,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 11164; + this.state = 11066; this.colid(); } break; @@ -63007,11 +63512,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_varname(): Decl_varnameContext { let localContext = new Decl_varnameContext(this.context, this.state); - this.enterRule(localContext, 1546, PostgreSQLParser.RULE_decl_varname); + this.enterRule(localContext, 1542, PostgreSQLParser.RULE_decl_varname); try { this.enterOuterAlt(localContext, 1); { - this.state = 11167; + this.state = 11069; this.any_identifier(); } } @@ -63031,11 +63536,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_const(): Decl_constContext { let localContext = new Decl_constContext(this.context, this.state); - this.enterRule(localContext, 1548, PostgreSQLParser.RULE_decl_const); + this.enterRule(localContext, 1544, PostgreSQLParser.RULE_decl_const); try { - this.state = 11171; + this.state = 11073; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -63045,7 +63550,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11170; + this.state = 11072; this.match(PostgreSQLParser.KW_CONSTANT); } break; @@ -63067,11 +63572,11 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_datatype(): Decl_datatypeContext { let localContext = new Decl_datatypeContext(this.context, this.state); - this.enterRule(localContext, 1550, PostgreSQLParser.RULE_decl_datatype); + this.enterRule(localContext, 1546, PostgreSQLParser.RULE_decl_datatype); try { this.enterOuterAlt(localContext, 1); { - this.state = 11173; + this.state = 11075; this.typename(); } } @@ -63091,9 +63596,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_collate(): Decl_collateContext { let localContext = new Decl_collateContext(this.context, this.state); - this.enterRule(localContext, 1552, PostgreSQLParser.RULE_decl_collate); + this.enterRule(localContext, 1548, PostgreSQLParser.RULE_decl_collate); try { - this.state = 11178; + this.state = 11080; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -63109,9 +63614,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_COLLATE: this.enterOuterAlt(localContext, 2); { - this.state = 11176; + this.state = 11078; this.match(PostgreSQLParser.KW_COLLATE); - this.state = 11177; + this.state = 11079; this.any_name(); } break; @@ -63135,9 +63640,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_notnull(): Decl_notnullContext { let localContext = new Decl_notnullContext(this.context, this.state); - this.enterRule(localContext, 1554, PostgreSQLParser.RULE_decl_notnull); + this.enterRule(localContext, 1550, PostgreSQLParser.RULE_decl_notnull); try { - this.state = 11183; + this.state = 11085; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -63152,9 +63657,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 11181; + this.state = 11083; this.match(PostgreSQLParser.KW_NOT); - this.state = 11182; + this.state = 11084; this.match(PostgreSQLParser.KW_NULL); } break; @@ -63178,9 +63683,9 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_defval(): Decl_defvalContext { let localContext = new Decl_defvalContext(this.context, this.state); - this.enterRule(localContext, 1556, PostgreSQLParser.RULE_decl_defval); + this.enterRule(localContext, 1552, PostgreSQLParser.RULE_decl_defval); try { - this.state = 11189; + this.state = 11091; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -63194,9 +63699,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 11186; + this.state = 11088; this.decl_defkey(); - this.state = 11187; + this.state = 11089; this.sql_expression(); } break; @@ -63220,23 +63725,23 @@ export class PostgreSQLParser extends antlr.Parser { } public decl_defkey(): Decl_defkeyContext { let localContext = new Decl_defkeyContext(this.context, this.state); - this.enterRule(localContext, 1558, PostgreSQLParser.RULE_decl_defkey); + this.enterRule(localContext, 1554, PostgreSQLParser.RULE_decl_defkey); try { - this.state = 11193; + this.state = 11095; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EQUAL: case PostgreSQLParser.COLON_EQUALS: this.enterOuterAlt(localContext, 1); { - this.state = 11191; + this.state = 11093; this.assign_operator(); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 11192; + this.state = 11094; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -63260,12 +63765,12 @@ export class PostgreSQLParser extends antlr.Parser { } public assign_operator(): Assign_operatorContext { let localContext = new Assign_operatorContext(this.context, this.state); - this.enterRule(localContext, 1560, PostgreSQLParser.RULE_assign_operator); + this.enterRule(localContext, 1556, PostgreSQLParser.RULE_assign_operator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11195; + this.state = 11097; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -63292,26 +63797,26 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_sect(): Proc_sectContext { let localContext = new Proc_sectContext(this.context, this.state); - this.enterRule(localContext, 1562, PostgreSQLParser.RULE_proc_sect); + this.enterRule(localContext, 1558, PostgreSQLParser.RULE_proc_sect); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 11200; + this.state = 11102; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 11197; + this.state = 11099; this.proc_stmt(); } } } - this.state = 11202; + this.state = 11104; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context); } } } @@ -63331,185 +63836,185 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_stmt(): Proc_stmtContext { let localContext = new Proc_stmtContext(this.context, this.state); - this.enterRule(localContext, 1564, PostgreSQLParser.RULE_proc_stmt); + this.enterRule(localContext, 1560, PostgreSQLParser.RULE_proc_stmt); try { - this.state = 11230; + this.state = 11132; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11203; + this.state = 11105; this.pl_block(); - this.state = 11204; + this.state = 11106; this.match(PostgreSQLParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11206; + this.state = 11108; this.stmt_return(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11207; + this.state = 11109; this.stmt_raise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11208; + this.state = 11110; this.stmt_assign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 11209; + this.state = 11111; this.stmt_if(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 11210; + this.state = 11112; this.stmt_case(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 11211; + this.state = 11113; this.stmt_loop(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 11212; + this.state = 11114; this.stmt_while(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 11213; + this.state = 11115; this.stmt_for(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 11214; + this.state = 11116; this.stmt_foreach_a(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 11215; + this.state = 11117; this.stmt_exit(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 11216; + this.state = 11118; this.stmt_assert(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 11217; + this.state = 11119; this.stmt_execsql(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 11218; + this.state = 11120; this.stmt_dynexecute(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 11219; + this.state = 11121; this.stmt_perform(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 11220; + this.state = 11122; this.stmt_call(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 11221; + this.state = 11123; this.stmt_getdiag(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 11222; + this.state = 11124; this.stmt_open(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 11223; + this.state = 11125; this.stmt_fetch(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 11224; + this.state = 11126; this.stmt_move(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 11225; + this.state = 11127; this.stmt_close(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 11226; + this.state = 11128; this.stmt_null(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 11227; + this.state = 11129; this.stmt_commit(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 11228; + this.state = 11130; this.stmt_rollback(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 11229; + this.state = 11131; this.stmt_set(); } break; @@ -63531,15 +64036,15 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_perform(): Stmt_performContext { let localContext = new Stmt_performContext(this.context, this.state); - this.enterRule(localContext, 1566, PostgreSQLParser.RULE_stmt_perform); + this.enterRule(localContext, 1562, PostgreSQLParser.RULE_stmt_perform); try { this.enterOuterAlt(localContext, 1); { - this.state = 11232; + this.state = 11134; this.match(PostgreSQLParser.KW_PERFORM); - this.state = 11233; + this.state = 11135; this.expr_until_semi(); - this.state = 11234; + this.state = 11136; this.match(PostgreSQLParser.SEMI); } } @@ -63559,30 +64064,30 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_call(): Stmt_callContext { let localContext = new Stmt_callContext(this.context, this.state); - this.enterRule(localContext, 1568, PostgreSQLParser.RULE_stmt_call); + this.enterRule(localContext, 1564, PostgreSQLParser.RULE_stmt_call); try { - this.state = 11252; + this.state = 11154; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 11236; + this.state = 11138; this.match(PostgreSQLParser.KW_CALL); - this.state = 11237; + this.state = 11139; this.any_identifier(); - this.state = 11243; + this.state = 11145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { case 1: { - this.state = 11238; + this.state = 11140; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11239; + this.state = 11141; this.opt_expr_list(); - this.state = 11240; + this.state = 11142; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 11241; + this.state = 11143; this.match(PostgreSQLParser.SEMI); } break; @@ -63592,17 +64097,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 11245; + this.state = 11147; this.match(PostgreSQLParser.KW_DO); - this.state = 11246; + this.state = 11148; this.any_identifier(); - this.state = 11247; + this.state = 11149; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11248; + this.state = 11150; this.opt_expr_list(); - this.state = 11249; + this.state = 11151; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 11250; + this.state = 11152; this.match(PostgreSQLParser.SEMI); } break; @@ -63626,9 +64131,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_expr_list(): Opt_expr_listContext { let localContext = new Opt_expr_listContext(this.context, this.state); - this.enterRule(localContext, 1570, PostgreSQLParser.RULE_opt_expr_list); + this.enterRule(localContext, 1566, PostgreSQLParser.RULE_opt_expr_list); try { - this.state = 11256; + this.state = 11158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.CLOSE_PAREN: @@ -63647,7 +64152,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CASE: case PostgreSQLParser.KW_CAST: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_CURRENT_CATALOG: case PostgreSQLParser.KW_CURRENT_DATE: @@ -64087,7 +64591,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 11255; + this.state = 11157; this.expr_list(); } break; @@ -64111,17 +64615,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_assign(): Stmt_assignContext { let localContext = new Stmt_assignContext(this.context, this.state); - this.enterRule(localContext, 1572, PostgreSQLParser.RULE_stmt_assign); + this.enterRule(localContext, 1568, PostgreSQLParser.RULE_stmt_assign); try { this.enterOuterAlt(localContext, 1); { - this.state = 11258; + this.state = 11160; this.assign_var(); - this.state = 11259; + this.state = 11161; this.assign_operator(); - this.state = 11260; + this.state = 11162; this.sql_expression(); - this.state = 11261; + this.state = 11163; this.match(PostgreSQLParser.SEMI); } } @@ -64141,19 +64645,19 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_getdiag(): Stmt_getdiagContext { let localContext = new Stmt_getdiagContext(this.context, this.state); - this.enterRule(localContext, 1574, PostgreSQLParser.RULE_stmt_getdiag); + this.enterRule(localContext, 1570, PostgreSQLParser.RULE_stmt_getdiag); try { this.enterOuterAlt(localContext, 1); { - this.state = 11263; + this.state = 11165; this.match(PostgreSQLParser.KW_GET); - this.state = 11264; + this.state = 11166; this.getdiag_area_opt(); - this.state = 11265; + this.state = 11167; this.match(PostgreSQLParser.KW_DIAGNOSTICS); - this.state = 11266; + this.state = 11168; this.getdiag_list(); - this.state = 11267; + this.state = 11169; this.match(PostgreSQLParser.SEMI); } } @@ -64173,9 +64677,9 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_area_opt(): Getdiag_area_optContext { let localContext = new Getdiag_area_optContext(this.context, this.state); - this.enterRule(localContext, 1576, PostgreSQLParser.RULE_getdiag_area_opt); + this.enterRule(localContext, 1572, PostgreSQLParser.RULE_getdiag_area_opt); try { - this.state = 11272; + this.state = 11174; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_DIAGNOSTICS: @@ -64187,14 +64691,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 11270; + this.state = 11172; this.match(PostgreSQLParser.KW_CURRENT); } break; case PostgreSQLParser.KW_STACKED: this.enterOuterAlt(localContext, 3); { - this.state = 11271; + this.state = 11173; this.match(PostgreSQLParser.KW_STACKED); } break; @@ -64218,26 +64722,26 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_list(): Getdiag_listContext { let localContext = new Getdiag_listContext(this.context, this.state); - this.enterRule(localContext, 1578, PostgreSQLParser.RULE_getdiag_list); + this.enterRule(localContext, 1574, PostgreSQLParser.RULE_getdiag_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11274; + this.state = 11176; this.getdiag_list_item(); - this.state = 11279; + this.state = 11181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11275; + this.state = 11177; this.match(PostgreSQLParser.COMMA); - this.state = 11276; + this.state = 11178; this.getdiag_list_item(); } } - this.state = 11281; + this.state = 11183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -64259,15 +64763,15 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_list_item(): Getdiag_list_itemContext { let localContext = new Getdiag_list_itemContext(this.context, this.state); - this.enterRule(localContext, 1580, PostgreSQLParser.RULE_getdiag_list_item); + this.enterRule(localContext, 1576, PostgreSQLParser.RULE_getdiag_list_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 11282; + this.state = 11184; this.getdiag_target(); - this.state = 11283; + this.state = 11185; this.assign_operator(); - this.state = 11284; + this.state = 11186; this.getdiag_item(); } } @@ -64287,11 +64791,11 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_item(): Getdiag_itemContext { let localContext = new Getdiag_itemContext(this.context, this.state); - this.enterRule(localContext, 1582, PostgreSQLParser.RULE_getdiag_item); + this.enterRule(localContext, 1578, PostgreSQLParser.RULE_getdiag_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 11286; + this.state = 11188; this.colid(); } } @@ -64311,11 +64815,11 @@ export class PostgreSQLParser extends antlr.Parser { } public getdiag_target(): Getdiag_targetContext { let localContext = new Getdiag_targetContext(this.context, this.state); - this.enterRule(localContext, 1584, PostgreSQLParser.RULE_getdiag_target); + this.enterRule(localContext, 1580, PostgreSQLParser.RULE_getdiag_target); try { this.enterOuterAlt(localContext, 1); { - this.state = 11288; + this.state = 11190; this.assign_var(); } } @@ -64335,18 +64839,17 @@ export class PostgreSQLParser extends antlr.Parser { } public assign_var(): Assign_varContext { let localContext = new Assign_varContext(this.context, this.state); - this.enterRule(localContext, 1586, PostgreSQLParser.RULE_assign_var); + this.enterRule(localContext, 1582, PostgreSQLParser.RULE_assign_var); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11292; + this.state = 11194; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -64745,34 +65248,34 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 11290; + this.state = 11192; this.any_name(); } break; case PostgreSQLParser.PARAM: { - this.state = 11291; + this.state = 11193; this.match(PostgreSQLParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 11300; + this.state = 11202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 11294; + this.state = 11196; this.match(PostgreSQLParser.OPEN_BRACKET); - this.state = 11295; + this.state = 11197; this.expr_until_rightbracket(); - this.state = 11296; + this.state = 11198; this.match(PostgreSQLParser.CLOSE_BRACKET); } } - this.state = 11302; + this.state = 11204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -64794,27 +65297,27 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_if(): Stmt_ifContext { let localContext = new Stmt_ifContext(this.context, this.state); - this.enterRule(localContext, 1588, PostgreSQLParser.RULE_stmt_if); + this.enterRule(localContext, 1584, PostgreSQLParser.RULE_stmt_if); try { this.enterOuterAlt(localContext, 1); { - this.state = 11303; + this.state = 11205; this.match(PostgreSQLParser.KW_IF); - this.state = 11304; + this.state = 11206; this.expr_until_then(); - this.state = 11305; + this.state = 11207; this.match(PostgreSQLParser.KW_THEN); - this.state = 11306; + this.state = 11208; this.proc_sect(); - this.state = 11307; + this.state = 11209; this.stmt_elsifs(); - this.state = 11308; + this.state = 11210; this.stmt_else(); - this.state = 11309; + this.state = 11211; this.match(PostgreSQLParser.KW_END); - this.state = 11310; + this.state = 11212; this.match(PostgreSQLParser.KW_IF); - this.state = 11311; + this.state = 11213; this.match(PostgreSQLParser.SEMI); } } @@ -64834,28 +65337,28 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_elsifs(): Stmt_elsifsContext { let localContext = new Stmt_elsifsContext(this.context, this.state); - this.enterRule(localContext, 1590, PostgreSQLParser.RULE_stmt_elsifs); + this.enterRule(localContext, 1586, PostgreSQLParser.RULE_stmt_elsifs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11320; + this.state = 11222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 11313; + this.state = 11215; this.match(PostgreSQLParser.KW_ELSIF); - this.state = 11314; + this.state = 11216; this.a_expr(); - this.state = 11315; + this.state = 11217; this.match(PostgreSQLParser.KW_THEN); - this.state = 11316; + this.state = 11218; this.proc_sect(); } } - this.state = 11322; + this.state = 11224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -64877,9 +65380,9 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_else(): Stmt_elseContext { let localContext = new Stmt_elseContext(this.context, this.state); - this.enterRule(localContext, 1592, PostgreSQLParser.RULE_stmt_else); + this.enterRule(localContext, 1588, PostgreSQLParser.RULE_stmt_else); try { - this.state = 11326; + this.state = 11228; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_END: @@ -64891,9 +65394,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ELSE: this.enterOuterAlt(localContext, 2); { - this.state = 11324; + this.state = 11226; this.match(PostgreSQLParser.KW_ELSE); - this.state = 11325; + this.state = 11227; this.proc_sect(); } break; @@ -64917,23 +65420,23 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_case(): Stmt_caseContext { let localContext = new Stmt_caseContext(this.context, this.state); - this.enterRule(localContext, 1594, PostgreSQLParser.RULE_stmt_case); + this.enterRule(localContext, 1590, PostgreSQLParser.RULE_stmt_case); try { this.enterOuterAlt(localContext, 1); { - this.state = 11328; + this.state = 11230; this.match(PostgreSQLParser.KW_CASE); - this.state = 11329; + this.state = 11231; this.opt_expr_until_when(); - this.state = 11330; + this.state = 11232; this.case_when_list(); - this.state = 11331; + this.state = 11233; this.opt_case_else(); - this.state = 11332; + this.state = 11234; this.match(PostgreSQLParser.KW_END); - this.state = 11333; + this.state = 11235; this.match(PostgreSQLParser.KW_CASE); - this.state = 11334; + this.state = 11236; this.match(PostgreSQLParser.SEMI); } } @@ -64953,11 +65456,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_expr_until_when(): Opt_expr_until_whenContext { let localContext = new Opt_expr_until_whenContext(this.context, this.state); - this.enterRule(localContext, 1596, PostgreSQLParser.RULE_opt_expr_until_when); + this.enterRule(localContext, 1592, PostgreSQLParser.RULE_opt_expr_until_when); try { - this.state = 11338; + this.state = 11240; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1192, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1195, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -64967,7 +65470,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11337; + this.state = 11239; this.sql_expression(); } break; @@ -64989,22 +65492,22 @@ export class PostgreSQLParser extends antlr.Parser { } public case_when_list(): Case_when_listContext { let localContext = new Case_when_listContext(this.context, this.state); - this.enterRule(localContext, 1598, PostgreSQLParser.RULE_case_when_list); + this.enterRule(localContext, 1594, PostgreSQLParser.RULE_case_when_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11341; + this.state = 11243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11340; + this.state = 11242; this.case_when(); } } - this.state = 11343; + this.state = 11245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -65026,17 +65529,17 @@ export class PostgreSQLParser extends antlr.Parser { } public case_when(): Case_whenContext { let localContext = new Case_whenContext(this.context, this.state); - this.enterRule(localContext, 1600, PostgreSQLParser.RULE_case_when); + this.enterRule(localContext, 1596, PostgreSQLParser.RULE_case_when); try { this.enterOuterAlt(localContext, 1); { - this.state = 11345; + this.state = 11247; this.match(PostgreSQLParser.KW_WHEN); - this.state = 11346; + this.state = 11248; this.expr_list(); - this.state = 11347; + this.state = 11249; this.match(PostgreSQLParser.KW_THEN); - this.state = 11348; + this.state = 11250; this.proc_sect(); } } @@ -65056,9 +65559,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_case_else(): Opt_case_elseContext { let localContext = new Opt_case_elseContext(this.context, this.state); - this.enterRule(localContext, 1602, PostgreSQLParser.RULE_opt_case_else); + this.enterRule(localContext, 1598, PostgreSQLParser.RULE_opt_case_else); try { - this.state = 11353; + this.state = 11255; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_END: @@ -65070,9 +65573,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_ELSE: this.enterOuterAlt(localContext, 2); { - this.state = 11351; + this.state = 11253; this.match(PostgreSQLParser.KW_ELSE); - this.state = 11352; + this.state = 11254; this.proc_sect(); } break; @@ -65096,13 +65599,13 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_loop(): Stmt_loopContext { let localContext = new Stmt_loopContext(this.context, this.state); - this.enterRule(localContext, 1604, PostgreSQLParser.RULE_stmt_loop); + this.enterRule(localContext, 1600, PostgreSQLParser.RULE_stmt_loop); try { this.enterOuterAlt(localContext, 1); { - this.state = 11355; + this.state = 11257; this.opt_loop_label(); - this.state = 11356; + this.state = 11258; this.loop_body(); } } @@ -65122,17 +65625,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_while(): Stmt_whileContext { let localContext = new Stmt_whileContext(this.context, this.state); - this.enterRule(localContext, 1606, PostgreSQLParser.RULE_stmt_while); + this.enterRule(localContext, 1602, PostgreSQLParser.RULE_stmt_while); try { this.enterOuterAlt(localContext, 1); { - this.state = 11358; + this.state = 11260; this.opt_loop_label(); - this.state = 11359; + this.state = 11261; this.match(PostgreSQLParser.KW_WHILE); - this.state = 11360; + this.state = 11262; this.expr_until_loop(); - this.state = 11361; + this.state = 11263; this.loop_body(); } } @@ -65152,17 +65655,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_for(): Stmt_forContext { let localContext = new Stmt_forContext(this.context, this.state); - this.enterRule(localContext, 1608, PostgreSQLParser.RULE_stmt_for); + this.enterRule(localContext, 1604, PostgreSQLParser.RULE_stmt_for); try { this.enterOuterAlt(localContext, 1); { - this.state = 11363; + this.state = 11265; this.opt_loop_label(); - this.state = 11364; + this.state = 11266; this.match(PostgreSQLParser.KW_FOR); - this.state = 11365; + this.state = 11267; this.for_control(); - this.state = 11366; + this.state = 11268; this.loop_body(); } } @@ -65182,58 +65685,58 @@ export class PostgreSQLParser extends antlr.Parser { } public for_control(): For_controlContext { let localContext = new For_controlContext(this.context, this.state); - this.enterRule(localContext, 1610, PostgreSQLParser.RULE_for_control); + this.enterRule(localContext, 1606, PostgreSQLParser.RULE_for_control); try { this.enterOuterAlt(localContext, 1); { - this.state = 11368; + this.state = 11270; this.for_variable(); - this.state = 11369; + this.state = 11271; this.match(PostgreSQLParser.KW_IN); - this.state = 11385; + this.state = 11287; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1198, this.context) ) { case 1: { - this.state = 11370; + this.state = 11272; this.cursor_name(); - this.state = 11371; + this.state = 11273; this.opt_cursor_parameters(); } break; case 2: { - this.state = 11373; + this.state = 11275; this.selectstmt(); } break; case 3: { - this.state = 11374; + this.state = 11276; this.explainstmt(); } break; case 4: { - this.state = 11375; + this.state = 11277; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11376; + this.state = 11278; this.a_expr(); - this.state = 11377; + this.state = 11279; this.opt_for_using_expression(); } break; case 5: { - this.state = 11379; + this.state = 11281; this.opt_reverse(); - this.state = 11380; + this.state = 11282; this.a_expr(); - this.state = 11381; + this.state = 11283; this.match(PostgreSQLParser.DOT_DOT); - this.state = 11382; + this.state = 11284; this.a_expr(); - this.state = 11383; + this.state = 11285; this.opt_by_expression(); } break; @@ -65256,9 +65759,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_for_using_expression(): Opt_for_using_expressionContext { let localContext = new Opt_for_using_expressionContext(this.context, this.state); - this.enterRule(localContext, 1612, PostgreSQLParser.RULE_opt_for_using_expression); + this.enterRule(localContext, 1608, PostgreSQLParser.RULE_opt_for_using_expression); try { - this.state = 11390; + this.state = 11292; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -65271,9 +65774,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11388; + this.state = 11290; this.match(PostgreSQLParser.KW_USING); - this.state = 11389; + this.state = 11291; this.expr_list(); } break; @@ -65297,10 +65800,10 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_cursor_parameters(): Opt_cursor_parametersContext { let localContext = new Opt_cursor_parametersContext(this.context, this.state); - this.enterRule(localContext, 1614, PostgreSQLParser.RULE_opt_cursor_parameters); + this.enterRule(localContext, 1610, PostgreSQLParser.RULE_opt_cursor_parameters); let _la: number; try { - this.state = 11404; + this.state = 11306; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LOOP: @@ -65312,27 +65815,27 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 11393; + this.state = 11295; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11394; + this.state = 11296; this.a_expr(); - this.state = 11399; + this.state = 11301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11395; + this.state = 11297; this.match(PostgreSQLParser.COMMA); - this.state = 11396; + this.state = 11298; this.a_expr(); } } - this.state = 11401; + this.state = 11303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 11402; + this.state = 11304; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -65356,11 +65859,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_reverse(): Opt_reverseContext { let localContext = new Opt_reverseContext(this.context, this.state); - this.enterRule(localContext, 1616, PostgreSQLParser.RULE_opt_reverse); + this.enterRule(localContext, 1612, PostgreSQLParser.RULE_opt_reverse); try { - this.state = 11408; + this.state = 11310; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1199, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1202, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -65370,7 +65873,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11407; + this.state = 11309; this.match(PostgreSQLParser.KW_REVERSE); } break; @@ -65392,9 +65895,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_by_expression(): Opt_by_expressionContext { let localContext = new Opt_by_expressionContext(this.context, this.state); - this.enterRule(localContext, 1618, PostgreSQLParser.RULE_opt_by_expression); + this.enterRule(localContext, 1614, PostgreSQLParser.RULE_opt_by_expression); try { - this.state = 11413; + this.state = 11315; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_LOOP: @@ -65406,9 +65909,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 11411; + this.state = 11313; this.match(PostgreSQLParser.KW_BY); - this.state = 11412; + this.state = 11314; this.a_expr(); } break; @@ -65432,11 +65935,11 @@ export class PostgreSQLParser extends antlr.Parser { } public for_variable(): For_variableContext { let localContext = new For_variableContext(this.context, this.state); - this.enterRule(localContext, 1620, PostgreSQLParser.RULE_for_variable); + this.enterRule(localContext, 1616, PostgreSQLParser.RULE_for_variable); try { this.enterOuterAlt(localContext, 1); { - this.state = 11415; + this.state = 11317; this.any_name_list(); } } @@ -65456,25 +65959,25 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_foreach_a(): Stmt_foreach_aContext { let localContext = new Stmt_foreach_aContext(this.context, this.state); - this.enterRule(localContext, 1622, PostgreSQLParser.RULE_stmt_foreach_a); + this.enterRule(localContext, 1618, PostgreSQLParser.RULE_stmt_foreach_a); try { this.enterOuterAlt(localContext, 1); { - this.state = 11417; + this.state = 11319; this.opt_loop_label(); - this.state = 11418; + this.state = 11320; this.match(PostgreSQLParser.KW_FOREACH); - this.state = 11419; + this.state = 11321; this.for_variable(); - this.state = 11420; + this.state = 11322; this.foreach_slice(); - this.state = 11421; + this.state = 11323; this.match(PostgreSQLParser.KW_IN); - this.state = 11422; + this.state = 11324; this.match(PostgreSQLParser.KW_ARRAY); - this.state = 11423; + this.state = 11325; this.a_expr(); - this.state = 11424; + this.state = 11326; this.loop_body(); } } @@ -65494,9 +65997,9 @@ export class PostgreSQLParser extends antlr.Parser { } public foreach_slice(): Foreach_sliceContext { let localContext = new Foreach_sliceContext(this.context, this.state); - this.enterRule(localContext, 1624, PostgreSQLParser.RULE_foreach_slice); + this.enterRule(localContext, 1620, PostgreSQLParser.RULE_foreach_slice); try { - this.state = 11429; + this.state = 11331; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_IN: @@ -65508,9 +66011,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SLICE: this.enterOuterAlt(localContext, 2); { - this.state = 11427; + this.state = 11329; this.match(PostgreSQLParser.KW_SLICE); - this.state = 11428; + this.state = 11330; this.iconst(); } break; @@ -65534,26 +66037,26 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_exit(): Stmt_exitContext { let localContext = new Stmt_exitContext(this.context, this.state); - this.enterRule(localContext, 1626, PostgreSQLParser.RULE_stmt_exit); + this.enterRule(localContext, 1622, PostgreSQLParser.RULE_stmt_exit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11431; + this.state = 11333; this.exit_type(); - this.state = 11432; + this.state = 11334; this.opt_label(); - this.state = 11434; + this.state = 11336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 11433; + this.state = 11335; this.opt_exitcond(); } } - this.state = 11436; + this.state = 11338; this.match(PostgreSQLParser.SEMI); } } @@ -65573,12 +66076,12 @@ export class PostgreSQLParser extends antlr.Parser { } public exit_type(): Exit_typeContext { let localContext = new Exit_typeContext(this.context, this.state); - this.enterRule(localContext, 1628, PostgreSQLParser.RULE_exit_type); + this.enterRule(localContext, 1624, PostgreSQLParser.RULE_exit_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11438; + this.state = 11340; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -65605,37 +66108,37 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_return(): Stmt_returnContext { let localContext = new Stmt_returnContext(this.context, this.state); - this.enterRule(localContext, 1630, PostgreSQLParser.RULE_stmt_return); + this.enterRule(localContext, 1626, PostgreSQLParser.RULE_stmt_return); try { this.enterOuterAlt(localContext, 1); { - this.state = 11440; + this.state = 11342; this.match(PostgreSQLParser.KW_RETURN); - this.state = 11452; + this.state = 11354; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1204, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1207, this.context) ) { case 1: { - this.state = 11441; + this.state = 11343; this.match(PostgreSQLParser.KW_NEXT); - this.state = 11442; + this.state = 11344; this.sql_expression(); } break; case 2: { - this.state = 11443; + this.state = 11345; this.match(PostgreSQLParser.KW_QUERY); - this.state = 11449; + this.state = 11351; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_EXECUTE: { - this.state = 11444; + this.state = 11346; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11445; + this.state = 11347; this.a_expr(); - this.state = 11446; + this.state = 11348; this.opt_for_using_expression(); } break; @@ -65645,7 +66148,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: case PostgreSQLParser.KW_VALUES: { - this.state = 11448; + this.state = 11350; this.selectstmt(); } break; @@ -65656,12 +66159,12 @@ export class PostgreSQLParser extends antlr.Parser { break; case 3: { - this.state = 11451; + this.state = 11353; this.opt_return_result(); } break; } - this.state = 11454; + this.state = 11356; this.match(PostgreSQLParser.SEMI); } } @@ -65681,11 +66184,11 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_return_result(): Opt_return_resultContext { let localContext = new Opt_return_resultContext(this.context, this.state); - this.enterRule(localContext, 1632, PostgreSQLParser.RULE_opt_return_result); + this.enterRule(localContext, 1628, PostgreSQLParser.RULE_opt_return_result); try { - this.state = 11458; + this.state = 11360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1205, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -65695,7 +66198,7 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11457; + this.state = 11359; this.sql_expression(); } break; @@ -65717,110 +66220,110 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_raise(): Stmt_raiseContext { let localContext = new Stmt_raiseContext(this.context, this.state); - this.enterRule(localContext, 1634, PostgreSQLParser.RULE_stmt_raise); + this.enterRule(localContext, 1630, PostgreSQLParser.RULE_stmt_raise); let _la: number; try { - this.state = 11494; + this.state = 11396; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1210, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11460; + this.state = 11362; this.match(PostgreSQLParser.KW_RAISE); - this.state = 11462; + this.state = 11364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0)) { { - this.state = 11461; + this.state = 11363; this.opt_stmt_raise_level(); } } - this.state = 11464; + this.state = 11366; this.sconst(); - this.state = 11465; + this.state = 11367; this.opt_raise_list(); - this.state = 11466; + this.state = 11368; this.opt_raise_using(); - this.state = 11467; + this.state = 11369; this.match(PostgreSQLParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11469; + this.state = 11371; this.match(PostgreSQLParser.KW_RAISE); - this.state = 11471; + this.state = 11373; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1210, this.context) ) { case 1: { - this.state = 11470; + this.state = 11372; this.opt_stmt_raise_level(); } break; } - this.state = 11473; + this.state = 11375; this.identifier(); - this.state = 11474; + this.state = 11376; this.opt_raise_using(); - this.state = 11475; + this.state = 11377; this.match(PostgreSQLParser.SEMI); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11477; + this.state = 11379; this.match(PostgreSQLParser.KW_RAISE); - this.state = 11479; + this.state = 11381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0)) { { - this.state = 11478; + this.state = 11380; this.opt_stmt_raise_level(); } } - this.state = 11481; + this.state = 11383; this.match(PostgreSQLParser.KW_SQLSTATE); - this.state = 11482; + this.state = 11384; this.sconst(); - this.state = 11483; + this.state = 11385; this.opt_raise_using(); - this.state = 11484; + this.state = 11386; this.match(PostgreSQLParser.SEMI); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11486; + this.state = 11388; this.match(PostgreSQLParser.KW_RAISE); - this.state = 11488; + this.state = 11390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0)) { { - this.state = 11487; + this.state = 11389; this.opt_stmt_raise_level(); } } - this.state = 11490; + this.state = 11392; this.opt_raise_using(); - this.state = 11491; + this.state = 11393; this.match(PostgreSQLParser.SEMI); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 11493; + this.state = 11395; this.match(PostgreSQLParser.KW_RAISE); } break; @@ -65842,12 +66345,12 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_stmt_raise_level(): Opt_stmt_raise_levelContext { let localContext = new Opt_stmt_raise_levelContext(this.context, this.state); - this.enterRule(localContext, 1636, PostgreSQLParser.RULE_opt_stmt_raise_level); + this.enterRule(localContext, 1632, PostgreSQLParser.RULE_opt_stmt_raise_level); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11496; + this.state = 11398; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -65874,10 +66377,10 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_list(): Opt_raise_listContext { let localContext = new Opt_raise_listContext(this.context, this.state); - this.enterRule(localContext, 1638, PostgreSQLParser.RULE_opt_raise_list); + this.enterRule(localContext, 1634, PostgreSQLParser.RULE_opt_raise_list); let _la: number; try { - this.state = 11505; + this.state = 11407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -65890,19 +66393,19 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.COMMA: this.enterOuterAlt(localContext, 2); { - this.state = 11501; + this.state = 11403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11499; + this.state = 11401; this.match(PostgreSQLParser.COMMA); - this.state = 11500; + this.state = 11402; this.a_expr(); } } - this.state = 11503; + this.state = 11405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -65928,9 +66431,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_using(): Opt_raise_usingContext { let localContext = new Opt_raise_usingContext(this.context, this.state); - this.enterRule(localContext, 1640, PostgreSQLParser.RULE_opt_raise_using); + this.enterRule(localContext, 1636, PostgreSQLParser.RULE_opt_raise_using); try { - this.state = 11510; + this.state = 11412; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -65942,9 +66445,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11508; + this.state = 11410; this.match(PostgreSQLParser.KW_USING); - this.state = 11509; + this.state = 11411; this.opt_raise_using_elem_list(); } break; @@ -65968,15 +66471,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_using_elem(): Opt_raise_using_elemContext { let localContext = new Opt_raise_using_elemContext(this.context, this.state); - this.enterRule(localContext, 1642, PostgreSQLParser.RULE_opt_raise_using_elem); + this.enterRule(localContext, 1638, PostgreSQLParser.RULE_opt_raise_using_elem); try { this.enterOuterAlt(localContext, 1); { - this.state = 11512; + this.state = 11414; this.identifier(); - this.state = 11513; + this.state = 11415; this.match(PostgreSQLParser.EQUAL); - this.state = 11514; + this.state = 11416; this.a_expr(); } } @@ -65996,26 +66499,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_raise_using_elem_list(): Opt_raise_using_elem_listContext { let localContext = new Opt_raise_using_elem_listContext(this.context, this.state); - this.enterRule(localContext, 1644, PostgreSQLParser.RULE_opt_raise_using_elem_list); + this.enterRule(localContext, 1640, PostgreSQLParser.RULE_opt_raise_using_elem_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11516; + this.state = 11418; this.opt_raise_using_elem(); - this.state = 11521; + this.state = 11423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11517; + this.state = 11419; this.match(PostgreSQLParser.COMMA); - this.state = 11518; + this.state = 11420; this.opt_raise_using_elem(); } } - this.state = 11523; + this.state = 11425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -66037,17 +66540,17 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_assert(): Stmt_assertContext { let localContext = new Stmt_assertContext(this.context, this.state); - this.enterRule(localContext, 1646, PostgreSQLParser.RULE_stmt_assert); + this.enterRule(localContext, 1642, PostgreSQLParser.RULE_stmt_assert); try { this.enterOuterAlt(localContext, 1); { - this.state = 11524; + this.state = 11426; this.match(PostgreSQLParser.KW_ASSERT); - this.state = 11525; + this.state = 11427; this.sql_expression(); - this.state = 11526; + this.state = 11428; this.opt_stmt_assert_message(); - this.state = 11527; + this.state = 11429; this.match(PostgreSQLParser.SEMI); } } @@ -66067,9 +66570,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_stmt_assert_message(): Opt_stmt_assert_messageContext { let localContext = new Opt_stmt_assert_messageContext(this.context, this.state); - this.enterRule(localContext, 1648, PostgreSQLParser.RULE_opt_stmt_assert_message); + this.enterRule(localContext, 1644, PostgreSQLParser.RULE_opt_stmt_assert_message); try { - this.state = 11532; + this.state = 11434; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66081,9 +66584,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.COMMA: this.enterOuterAlt(localContext, 2); { - this.state = 11530; + this.state = 11432; this.match(PostgreSQLParser.COMMA); - this.state = 11531; + this.state = 11433; this.sql_expression(); } break; @@ -66107,21 +66610,21 @@ export class PostgreSQLParser extends antlr.Parser { } public loop_body(): Loop_bodyContext { let localContext = new Loop_bodyContext(this.context, this.state); - this.enterRule(localContext, 1650, PostgreSQLParser.RULE_loop_body); + this.enterRule(localContext, 1646, PostgreSQLParser.RULE_loop_body); try { this.enterOuterAlt(localContext, 1); { - this.state = 11534; + this.state = 11436; this.match(PostgreSQLParser.KW_LOOP); - this.state = 11535; + this.state = 11437; this.proc_sect(); - this.state = 11536; + this.state = 11438; this.match(PostgreSQLParser.KW_END); - this.state = 11537; + this.state = 11439; this.match(PostgreSQLParser.KW_LOOP); - this.state = 11538; + this.state = 11440; this.opt_label(); - this.state = 11539; + this.state = 11441; this.match(PostgreSQLParser.SEMI); } } @@ -66141,13 +66644,13 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_execsql(): Stmt_execsqlContext { let localContext = new Stmt_execsqlContext(this.context, this.state); - this.enterRule(localContext, 1652, PostgreSQLParser.RULE_stmt_execsql); + this.enterRule(localContext, 1648, PostgreSQLParser.RULE_stmt_execsql); try { this.enterOuterAlt(localContext, 1); { - this.state = 11541; + this.state = 11443; this.make_execsql_stmt(); - this.state = 11542; + this.state = 11444; this.match(PostgreSQLParser.SEMI); } } @@ -66167,30 +66670,30 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_dynexecute(): Stmt_dynexecuteContext { let localContext = new Stmt_dynexecuteContext(this.context, this.state); - this.enterRule(localContext, 1654, PostgreSQLParser.RULE_stmt_dynexecute); + this.enterRule(localContext, 1650, PostgreSQLParser.RULE_stmt_dynexecute); try { this.enterOuterAlt(localContext, 1); { - this.state = 11544; + this.state = 11446; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11545; + this.state = 11447; this.a_expr(); - this.state = 11553; + this.state = 11455; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1219, this.context) ) { case 1: { - this.state = 11546; + this.state = 11448; this.opt_execute_into(); - this.state = 11547; + this.state = 11449; this.opt_execute_using(); } break; case 2: { - this.state = 11549; + this.state = 11451; this.opt_execute_using(); - this.state = 11550; + this.state = 11452; this.opt_execute_into(); } break; @@ -66200,7 +66703,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 11555; + this.state = 11457; this.match(PostgreSQLParser.SEMI); } } @@ -66220,9 +66723,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_execute_using(): Opt_execute_usingContext { let localContext = new Opt_execute_usingContext(this.context, this.state); - this.enterRule(localContext, 1656, PostgreSQLParser.RULE_opt_execute_using); + this.enterRule(localContext, 1652, PostgreSQLParser.RULE_opt_execute_using); try { - this.state = 11560; + this.state = 11462; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66235,9 +66738,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11558; + this.state = 11460; this.match(PostgreSQLParser.KW_USING); - this.state = 11559; + this.state = 11461; this.opt_execute_using_list(); } break; @@ -66261,26 +66764,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_execute_using_list(): Opt_execute_using_listContext { let localContext = new Opt_execute_using_listContext(this.context, this.state); - this.enterRule(localContext, 1658, PostgreSQLParser.RULE_opt_execute_using_list); + this.enterRule(localContext, 1654, PostgreSQLParser.RULE_opt_execute_using_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11562; + this.state = 11464; this.a_expr(); - this.state = 11567; + this.state = 11469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11563; + this.state = 11465; this.match(PostgreSQLParser.COMMA); - this.state = 11564; + this.state = 11466; this.a_expr(); } } - this.state = 11569; + this.state = 11471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -66302,9 +66805,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_execute_into(): Opt_execute_intoContext { let localContext = new Opt_execute_intoContext(this.context, this.state); - this.enterRule(localContext, 1660, PostgreSQLParser.RULE_opt_execute_into); + this.enterRule(localContext, 1656, PostgreSQLParser.RULE_opt_execute_into); try { - this.state = 11576; + this.state = 11478; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66317,19 +66820,19 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_INTO: this.enterOuterAlt(localContext, 2); { - this.state = 11571; + this.state = 11473; this.match(PostgreSQLParser.KW_INTO); - this.state = 11573; + this.state = 11475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1222, this.context) ) { case 1: { - this.state = 11572; + this.state = 11474; this.match(PostgreSQLParser.KW_STRICT); } break; } - this.state = 11575; + this.state = 11477; this.into_target(); } break; @@ -66353,25 +66856,25 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_open(): Stmt_openContext { let localContext = new Stmt_openContext(this.context, this.state); - this.enterRule(localContext, 1662, PostgreSQLParser.RULE_stmt_open); + this.enterRule(localContext, 1658, PostgreSQLParser.RULE_stmt_open); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11578; + this.state = 11480; this.match(PostgreSQLParser.KW_OPEN); - this.state = 11596; + this.state = 11498; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1226, this.context) ) { case 1: { - this.state = 11579; + this.state = 11481; this.cursor_variable(); - this.state = 11580; + this.state = 11482; this.opt_scroll_option(); - this.state = 11581; + this.state = 11483; this.match(PostgreSQLParser.KW_FOR); - this.state = 11587; + this.state = 11489; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.OPEN_PAREN: @@ -66380,17 +66883,17 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_WITH: case PostgreSQLParser.KW_VALUES: { - this.state = 11582; + this.state = 11484; this.selectstmt(); } break; case PostgreSQLParser.KW_EXECUTE: { - this.state = 11583; + this.state = 11485; this.match(PostgreSQLParser.KW_EXECUTE); - this.state = 11584; + this.state = 11486; this.sql_expression(); - this.state = 11585; + this.state = 11487; this.opt_open_using(); } break; @@ -66401,18 +66904,18 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 11589; + this.state = 11491; this.colid(); - this.state = 11594; + this.state = 11496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 11590; + this.state = 11492; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11591; + this.state = 11493; this.opt_open_bound_list(); - this.state = 11592; + this.state = 11494; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -66420,7 +66923,7 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 11598; + this.state = 11500; this.match(PostgreSQLParser.SEMI); } } @@ -66440,26 +66943,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_open_bound_list_item(): Opt_open_bound_list_itemContext { let localContext = new Opt_open_bound_list_itemContext(this.context, this.state); - this.enterRule(localContext, 1664, PostgreSQLParser.RULE_opt_open_bound_list_item); + this.enterRule(localContext, 1660, PostgreSQLParser.RULE_opt_open_bound_list_item); try { - this.state = 11605; + this.state = 11507; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1227, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11600; + this.state = 11502; this.colid(); - this.state = 11601; + this.state = 11503; this.match(PostgreSQLParser.COLON_EQUALS); - this.state = 11602; + this.state = 11504; this.a_expr(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11604; + this.state = 11506; this.a_expr(); } break; @@ -66481,26 +66984,26 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_open_bound_list(): Opt_open_bound_listContext { let localContext = new Opt_open_bound_listContext(this.context, this.state); - this.enterRule(localContext, 1666, PostgreSQLParser.RULE_opt_open_bound_list); + this.enterRule(localContext, 1662, PostgreSQLParser.RULE_opt_open_bound_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11607; + this.state = 11509; this.opt_open_bound_list_item(); - this.state = 11612; + this.state = 11514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11608; + this.state = 11510; this.match(PostgreSQLParser.COMMA); - this.state = 11609; + this.state = 11511; this.opt_open_bound_list_item(); } } - this.state = 11614; + this.state = 11516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -66522,9 +67025,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_open_using(): Opt_open_usingContext { let localContext = new Opt_open_usingContext(this.context, this.state); - this.enterRule(localContext, 1668, PostgreSQLParser.RULE_opt_open_using); + this.enterRule(localContext, 1664, PostgreSQLParser.RULE_opt_open_using); try { - this.state = 11618; + this.state = 11520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.SEMI: @@ -66536,9 +67039,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 11616; + this.state = 11518; this.match(PostgreSQLParser.KW_USING); - this.state = 11617; + this.state = 11519; this.expr_list(); } break; @@ -66562,9 +67065,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_scroll_option(): Opt_scroll_optionContext { let localContext = new Opt_scroll_optionContext(this.context, this.state); - this.enterRule(localContext, 1670, PostgreSQLParser.RULE_opt_scroll_option); + this.enterRule(localContext, 1666, PostgreSQLParser.RULE_opt_scroll_option); try { - this.state = 11624; + this.state = 11526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -66577,9 +67080,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_SCROLL: this.enterOuterAlt(localContext, 2); { - this.state = 11621; + this.state = 11523; this.opt_scroll_option_no(); - this.state = 11622; + this.state = 11524; this.match(PostgreSQLParser.KW_SCROLL); } break; @@ -66603,9 +67106,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_scroll_option_no(): Opt_scroll_option_noContext { let localContext = new Opt_scroll_option_noContext(this.context, this.state); - this.enterRule(localContext, 1672, PostgreSQLParser.RULE_opt_scroll_option_no); + this.enterRule(localContext, 1668, PostgreSQLParser.RULE_opt_scroll_option_no); try { - this.state = 11628; + this.state = 11530; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SCROLL: @@ -66617,7 +67120,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 11627; + this.state = 11529; this.match(PostgreSQLParser.KW_NO); } break; @@ -66641,31 +67144,31 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_fetch(): Stmt_fetchContext { let localContext = new Stmt_fetchContext(this.context, this.state); - this.enterRule(localContext, 1674, PostgreSQLParser.RULE_stmt_fetch); + this.enterRule(localContext, 1670, PostgreSQLParser.RULE_stmt_fetch); try { this.enterOuterAlt(localContext, 1); { - this.state = 11630; + this.state = 11532; this.match(PostgreSQLParser.KW_FETCH); - this.state = 11632; + this.state = 11534; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1232, this.context) ) { case 1: { - this.state = 11631; + this.state = 11533; localContext._direction = this.opt_fetch_direction(); } break; } - this.state = 11634; + this.state = 11536; this.opt_cursor_from(); - this.state = 11635; + this.state = 11537; this.cursor_variable(); - this.state = 11636; + this.state = 11538; this.match(PostgreSQLParser.KW_INTO); - this.state = 11637; + this.state = 11539; this.into_target(); - this.state = 11638; + this.state = 11540; this.match(PostgreSQLParser.SEMI); } } @@ -66685,11 +67188,11 @@ export class PostgreSQLParser extends antlr.Parser { } public into_target(): Into_targetContext { let localContext = new Into_targetContext(this.context, this.state); - this.enterRule(localContext, 1676, PostgreSQLParser.RULE_into_target); + this.enterRule(localContext, 1672, PostgreSQLParser.RULE_into_target); try { this.enterOuterAlt(localContext, 1); { - this.state = 11640; + this.state = 11542; this.expr_list(); } } @@ -66709,16 +67212,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_cursor_from(): Opt_cursor_fromContext { let localContext = new Opt_cursor_fromContext(this.context, this.state); - this.enterRule(localContext, 1678, PostgreSQLParser.RULE_opt_cursor_from); + this.enterRule(localContext, 1674, PostgreSQLParser.RULE_opt_cursor_from); try { - this.state = 11645; + this.state = 11547; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.PARAM: case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -67124,14 +67626,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 11643; + this.state = 11545; this.match(PostgreSQLParser.KW_FROM); } break; case PostgreSQLParser.KW_IN: this.enterOuterAlt(localContext, 3); { - this.state = 11644; + this.state = 11546; this.match(PostgreSQLParser.KW_IN); } break; @@ -67155,76 +67657,76 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_fetch_direction(): Opt_fetch_directionContext { let localContext = new Opt_fetch_directionContext(this.context, this.state); - this.enterRule(localContext, 1680, PostgreSQLParser.RULE_opt_fetch_direction); + this.enterRule(localContext, 1676, PostgreSQLParser.RULE_opt_fetch_direction); let _la: number; try { - this.state = 11662; + this.state = 11564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11647; + this.state = 11549; this.match(PostgreSQLParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11648; + this.state = 11550; this.match(PostgreSQLParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 11649; + this.state = 11551; this.match(PostgreSQLParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 11650; + this.state = 11552; this.match(PostgreSQLParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 11651; + this.state = 11553; this.match(PostgreSQLParser.KW_ABSOLUTE); - this.state = 11652; + this.state = 11554; this.a_expr(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 11653; + this.state = 11555; this.match(PostgreSQLParser.KW_RELATIVE); - this.state = 11654; + this.state = 11556; this.a_expr(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 11655; + this.state = 11557; this.a_expr(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 11656; + this.state = 11558; this.match(PostgreSQLParser.KW_ALL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 11657; + this.state = 11559; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -67233,18 +67735,18 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 11660; + this.state = 11562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1234, this.context) ) { case 1: { - this.state = 11658; + this.state = 11560; this.a_expr(); } break; case 2: { - this.state = 11659; + this.state = 11561; this.match(PostgreSQLParser.KW_ALL); } break; @@ -67269,25 +67771,25 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_move(): Stmt_moveContext { let localContext = new Stmt_moveContext(this.context, this.state); - this.enterRule(localContext, 1682, PostgreSQLParser.RULE_stmt_move); + this.enterRule(localContext, 1678, PostgreSQLParser.RULE_stmt_move); try { this.enterOuterAlt(localContext, 1); { - this.state = 11664; + this.state = 11566; this.match(PostgreSQLParser.KW_MOVE); - this.state = 11666; + this.state = 11568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1236, this.context) ) { case 1: { - this.state = 11665; + this.state = 11567; this.opt_fetch_direction(); } break; } - this.state = 11668; + this.state = 11570; this.cursor_variable(); - this.state = 11669; + this.state = 11571; this.match(PostgreSQLParser.SEMI); } } @@ -67307,86 +67809,86 @@ export class PostgreSQLParser extends antlr.Parser { } public mergestmt(): MergestmtContext { let localContext = new MergestmtContext(this.context, this.state); - this.enterRule(localContext, 1684, PostgreSQLParser.RULE_mergestmt); + this.enterRule(localContext, 1680, PostgreSQLParser.RULE_mergestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11672; + this.state = 11574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 11671; + this.state = 11573; this.with_clause(); } } - this.state = 11674; + this.state = 11576; this.match(PostgreSQLParser.KW_MERGE); - this.state = 11675; + this.state = 11577; this.match(PostgreSQLParser.KW_INTO); - this.state = 11677; + this.state = 11579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 11676; + this.state = 11578; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 11679; + this.state = 11581; this.table_name(); - this.state = 11681; + this.state = 11583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 11680; + this.state = 11582; this.match(PostgreSQLParser.STAR); } } - this.state = 11687; + this.state = 11589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268429) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266381) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 11684; + this.state = 11586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 11683; + this.state = 11585; this.match(PostgreSQLParser.KW_AS); } } - this.state = 11686; + this.state = 11588; this.colid(); } } - this.state = 11689; + this.state = 11591; this.match(PostgreSQLParser.KW_USING); - this.state = 11690; + this.state = 11592; this.data_source(); - this.state = 11691; + this.state = 11593; this.match(PostgreSQLParser.KW_ON); - this.state = 11692; + this.state = 11594; this.join_condition(); - this.state = 11694; + this.state = 11596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11693; + this.state = 11595; this.merge_when_clause(); } } - this.state = 11696; + this.state = 11598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -67408,34 +67910,34 @@ export class PostgreSQLParser extends antlr.Parser { } public data_source(): Data_sourceContext { let localContext = new Data_sourceContext(this.context, this.state); - this.enterRule(localContext, 1686, PostgreSQLParser.RULE_data_source); + this.enterRule(localContext, 1682, PostgreSQLParser.RULE_data_source); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11709; + this.state = 11611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1246, this.context) ) { case 1: { - this.state = 11699; + this.state = 11601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 11698; + this.state = 11600; this.match(PostgreSQLParser.KW_ONLY); } } - this.state = 11701; + this.state = 11603; this.table_name(); - this.state = 11703; + this.state = 11605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 11702; + this.state = 11604; this.match(PostgreSQLParser.STAR); } } @@ -67444,18 +67946,18 @@ export class PostgreSQLParser extends antlr.Parser { break; case 2: { - this.state = 11707; + this.state = 11609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1245, this.context) ) { case 1: { - this.state = 11705; + this.state = 11607; this.select_no_parens(); } break; case 2: { - this.state = 11706; + this.state = 11608; this.values_clause(); } break; @@ -67463,22 +67965,22 @@ export class PostgreSQLParser extends antlr.Parser { } break; } - this.state = 11715; + this.state = 11617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268429) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { + if (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266381) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 124)) & ~0x1F) === 0 && ((1 << (_la - 124)) & 4294967265) !== 0) || ((((_la - 156)) & ~0x1F) === 0 && ((1 << (_la - 156)) & 4294967295) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 4294967295) !== 0) || ((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 4294705663) !== 0) || ((((_la - 252)) & ~0x1F) === 0 && ((1 << (_la - 252)) & 4294967295) !== 0) || ((((_la - 284)) & ~0x1F) === 0 && ((1 << (_la - 284)) & 4294967295) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 4294967295) !== 0) || ((((_la - 348)) & ~0x1F) === 0 && ((1 << (_la - 348)) & 4294967295) !== 0) || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 4294967295) !== 0) || ((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 4294967295) !== 0) || ((((_la - 444)) & ~0x1F) === 0 && ((1 << (_la - 444)) & 4026530815) !== 0) || ((((_la - 476)) & ~0x1F) === 0 && ((1 << (_la - 476)) & 3623878655) !== 0) || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6143) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 11712; + this.state = 11614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 11711; + this.state = 11613; this.match(PostgreSQLParser.KW_AS); } } - this.state = 11714; + this.state = 11616; this.colid(); } } @@ -67501,11 +68003,11 @@ export class PostgreSQLParser extends antlr.Parser { } public join_condition(): Join_conditionContext { let localContext = new Join_conditionContext(this.context, this.state); - this.enterRule(localContext, 1688, PostgreSQLParser.RULE_join_condition); + this.enterRule(localContext, 1684, PostgreSQLParser.RULE_join_condition); try { this.enterOuterAlt(localContext, 1); { - this.state = 11717; + this.state = 11619; this.a_expr(); } } @@ -67525,53 +68027,53 @@ export class PostgreSQLParser extends antlr.Parser { } public merge_when_clause(): Merge_when_clauseContext { let localContext = new Merge_when_clauseContext(this.context, this.state); - this.enterRule(localContext, 1690, PostgreSQLParser.RULE_merge_when_clause); + this.enterRule(localContext, 1686, PostgreSQLParser.RULE_merge_when_clause); let _la: number; try { - this.state = 11745; + this.state = 11647; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1253, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11719; + this.state = 11621; this.match(PostgreSQLParser.KW_WHEN); - this.state = 11720; + this.state = 11622; this.match(PostgreSQLParser.KW_MATCHED); - this.state = 11723; + this.state = 11625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11721; + this.state = 11623; this.match(PostgreSQLParser.KW_AND); - this.state = 11722; + this.state = 11624; this.a_expr(); } } - this.state = 11725; + this.state = 11627; this.match(PostgreSQLParser.KW_THEN); - this.state = 11730; + this.state = 11632; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_UPDATE: { - this.state = 11726; + this.state = 11628; this.merge_update(); } break; case PostgreSQLParser.KW_DELETE: { - this.state = 11727; + this.state = 11629; this.match(PostgreSQLParser.KW_DELETE); } break; case PostgreSQLParser.KW_DO: { - this.state = 11728; + this.state = 11630; this.match(PostgreSQLParser.KW_DO); - this.state = 11729; + this.state = 11631; this.match(PostgreSQLParser.KW_NOTHING); } break; @@ -67583,40 +68085,40 @@ export class PostgreSQLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11732; + this.state = 11634; this.match(PostgreSQLParser.KW_WHEN); - this.state = 11733; + this.state = 11635; this.match(PostgreSQLParser.KW_NOT); - this.state = 11734; + this.state = 11636; this.match(PostgreSQLParser.KW_MATCHED); - this.state = 11737; + this.state = 11639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11735; + this.state = 11637; this.match(PostgreSQLParser.KW_AND); - this.state = 11736; + this.state = 11638; this.a_expr(); } } - this.state = 11739; + this.state = 11641; this.match(PostgreSQLParser.KW_THEN); - this.state = 11743; + this.state = 11645; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_INSERT: { - this.state = 11740; + this.state = 11642; this.merge_insert(); } break; case PostgreSQLParser.KW_DO: { - this.state = 11741; + this.state = 11643; this.match(PostgreSQLParser.KW_DO); - this.state = 11742; + this.state = 11644; this.match(PostgreSQLParser.KW_NOTHING); } break; @@ -67643,35 +68145,35 @@ export class PostgreSQLParser extends antlr.Parser { } public merge_insert(): Merge_insertContext { let localContext = new Merge_insertContext(this.context, this.state); - this.enterRule(localContext, 1692, PostgreSQLParser.RULE_merge_insert); + this.enterRule(localContext, 1688, PostgreSQLParser.RULE_merge_insert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11747; + this.state = 11649; this.match(PostgreSQLParser.KW_INSERT); - this.state = 11752; + this.state = 11654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 11748; + this.state = 11650; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11749; + this.state = 11651; this.columnlist(); - this.state = 11750; + this.state = 11652; this.match(PostgreSQLParser.CLOSE_PAREN); } } - this.state = 11757; + this.state = 11659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 11754; + this.state = 11656; this.match(PostgreSQLParser.KW_OVERRIDING); - this.state = 11755; + this.state = 11657; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -67680,12 +68182,12 @@ export class PostgreSQLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 11756; + this.state = 11658; this.match(PostgreSQLParser.KW_VALUE); } } - this.state = 11759; + this.state = 11661; this.default_values_or_values(); } } @@ -67705,29 +68207,28 @@ export class PostgreSQLParser extends antlr.Parser { } public merge_update(): Merge_updateContext { let localContext = new Merge_updateContext(this.context, this.state); - this.enterRule(localContext, 1694, PostgreSQLParser.RULE_merge_update); + this.enterRule(localContext, 1690, PostgreSQLParser.RULE_merge_update); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 11761; + this.state = 11663; this.match(PostgreSQLParser.KW_UPDATE); - this.state = 11762; + this.state = 11664; this.match(PostgreSQLParser.KW_SET); - this.state = 11775; + this.state = 11677; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 11775; + this.state = 11677; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -68126,29 +68627,29 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 11763; + this.state = 11665; this.column_name(); - this.state = 11764; + this.state = 11666; this.match(PostgreSQLParser.EQUAL); - this.state = 11765; + this.state = 11667; this.exprofdefault(); } break; case PostgreSQLParser.OPEN_PAREN: { - this.state = 11767; + this.state = 11669; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11768; + this.state = 11670; this.columnlist(); - this.state = 11769; + this.state = 11671; this.match(PostgreSQLParser.CLOSE_PAREN); - this.state = 11770; + this.state = 11672; this.match(PostgreSQLParser.EQUAL); - this.state = 11771; + this.state = 11673; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11772; + this.state = 11674; this.exprofdefaultlist(); - this.state = 11773; + this.state = 11675; this.match(PostgreSQLParser.CLOSE_PAREN); } break; @@ -68160,9 +68661,9 @@ export class PostgreSQLParser extends antlr.Parser { default: throw new antlr.NoViableAltException(this); } - this.state = 11777; + this.state = 11679; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1254, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1257, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -68182,26 +68683,26 @@ export class PostgreSQLParser extends antlr.Parser { } public default_values_or_values(): Default_values_or_valuesContext { let localContext = new Default_values_or_valuesContext(this.context, this.state); - this.enterRule(localContext, 1696, PostgreSQLParser.RULE_default_values_or_values); + this.enterRule(localContext, 1692, PostgreSQLParser.RULE_default_values_or_values); try { - this.state = 11783; + this.state = 11685; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 11779; + this.state = 11681; this.match(PostgreSQLParser.KW_VALUES); - this.state = 11780; + this.state = 11682; this.exprofdefaultlist(); } break; case PostgreSQLParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 11781; + this.state = 11683; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 11782; + this.state = 11684; this.match(PostgreSQLParser.KW_VALUES); } break; @@ -68225,32 +68726,32 @@ export class PostgreSQLParser extends antlr.Parser { } public exprofdefaultlist(): ExprofdefaultlistContext { let localContext = new ExprofdefaultlistContext(this.context, this.state); - this.enterRule(localContext, 1698, PostgreSQLParser.RULE_exprofdefaultlist); + this.enterRule(localContext, 1694, PostgreSQLParser.RULE_exprofdefaultlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11785; + this.state = 11687; this.match(PostgreSQLParser.OPEN_PAREN); - this.state = 11786; + this.state = 11688; this.exprofdefault(); - this.state = 11791; + this.state = 11693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 11787; + this.state = 11689; this.match(PostgreSQLParser.COMMA); - this.state = 11788; + this.state = 11690; this.exprofdefault(); } } - this.state = 11793; + this.state = 11695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 11794; + this.state = 11696; this.match(PostgreSQLParser.CLOSE_PAREN); } } @@ -68270,22 +68771,22 @@ export class PostgreSQLParser extends antlr.Parser { } public exprofdefault(): ExprofdefaultContext { let localContext = new ExprofdefaultContext(this.context, this.state); - this.enterRule(localContext, 1700, PostgreSQLParser.RULE_exprofdefault); + this.enterRule(localContext, 1696, PostgreSQLParser.RULE_exprofdefault); try { - this.state = 11798; + this.state = 11700; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1260, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11796; + this.state = 11698; this.sortby(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11797; + this.state = 11699; this.match(PostgreSQLParser.KW_DEFAULT); } break; @@ -68307,15 +68808,15 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_close(): Stmt_closeContext { let localContext = new Stmt_closeContext(this.context, this.state); - this.enterRule(localContext, 1702, PostgreSQLParser.RULE_stmt_close); + this.enterRule(localContext, 1698, PostgreSQLParser.RULE_stmt_close); try { this.enterOuterAlt(localContext, 1); { - this.state = 11800; + this.state = 11702; this.match(PostgreSQLParser.KW_CLOSE); - this.state = 11801; + this.state = 11703; this.cursor_variable(); - this.state = 11802; + this.state = 11704; this.match(PostgreSQLParser.SEMI); } } @@ -68335,13 +68836,13 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_null(): Stmt_nullContext { let localContext = new Stmt_nullContext(this.context, this.state); - this.enterRule(localContext, 1704, PostgreSQLParser.RULE_stmt_null); + this.enterRule(localContext, 1700, PostgreSQLParser.RULE_stmt_null); try { this.enterOuterAlt(localContext, 1); { - this.state = 11804; + this.state = 11706; this.match(PostgreSQLParser.KW_NULL); - this.state = 11805; + this.state = 11707; this.match(PostgreSQLParser.SEMI); } } @@ -68361,24 +68862,24 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_commit(): Stmt_commitContext { let localContext = new Stmt_commitContext(this.context, this.state); - this.enterRule(localContext, 1706, PostgreSQLParser.RULE_stmt_commit); + this.enterRule(localContext, 1702, PostgreSQLParser.RULE_stmt_commit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11807; + this.state = 11709; this.match(PostgreSQLParser.KW_COMMIT); - this.state = 11809; + this.state = 11711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11808; + this.state = 11710; this.plsql_opt_transaction_chain(); } } - this.state = 11811; + this.state = 11713; this.match(PostgreSQLParser.SEMI); } } @@ -68398,24 +68899,24 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_rollback(): Stmt_rollbackContext { let localContext = new Stmt_rollbackContext(this.context, this.state); - this.enterRule(localContext, 1708, PostgreSQLParser.RULE_stmt_rollback); + this.enterRule(localContext, 1704, PostgreSQLParser.RULE_stmt_rollback); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11813; + this.state = 11715; this.match(PostgreSQLParser.KW_ROLLBACK); - this.state = 11815; + this.state = 11717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 11814; + this.state = 11716; this.plsql_opt_transaction_chain(); } } - this.state = 11817; + this.state = 11719; this.match(PostgreSQLParser.SEMI); } } @@ -68435,24 +68936,24 @@ export class PostgreSQLParser extends antlr.Parser { } public plsql_opt_transaction_chain(): Plsql_opt_transaction_chainContext { let localContext = new Plsql_opt_transaction_chainContext(this.context, this.state); - this.enterRule(localContext, 1710, PostgreSQLParser.RULE_plsql_opt_transaction_chain); + this.enterRule(localContext, 1706, PostgreSQLParser.RULE_plsql_opt_transaction_chain); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11819; + this.state = 11721; this.match(PostgreSQLParser.KW_AND); - this.state = 11821; + this.state = 11723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 11820; + this.state = 11722; this.match(PostgreSQLParser.KW_NO); } } - this.state = 11823; + this.state = 11725; this.match(PostgreSQLParser.KW_CHAIN); } } @@ -68472,38 +68973,37 @@ export class PostgreSQLParser extends antlr.Parser { } public stmt_set(): Stmt_setContext { let localContext = new Stmt_setContext(this.context, this.state); - this.enterRule(localContext, 1712, PostgreSQLParser.RULE_stmt_set); + this.enterRule(localContext, 1708, PostgreSQLParser.RULE_stmt_set); try { - this.state = 11837; + this.state = 11739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 11825; + this.state = 11727; this.match(PostgreSQLParser.KW_SET); - this.state = 11826; + this.state = 11728; this.any_name(); - this.state = 11827; + this.state = 11729; this.match(PostgreSQLParser.KW_TO); - this.state = 11828; + this.state = 11730; this.match(PostgreSQLParser.KW_DEFAULT); - this.state = 11829; + this.state = 11731; this.match(PostgreSQLParser.SEMI); } break; case PostgreSQLParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 11831; + this.state = 11733; this.match(PostgreSQLParser.KW_RESET); - this.state = 11834; + this.state = 11736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -68902,20 +69402,20 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.PLSQLIDENTIFIER: case PostgreSQLParser.EscapeStringConstant: { - this.state = 11832; + this.state = 11734; this.any_name(); } break; case PostgreSQLParser.KW_ALL: { - this.state = 11833; + this.state = 11735; this.match(PostgreSQLParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 11836; + this.state = 11738; this.match(PostgreSQLParser.SEMI); } break; @@ -68939,15 +69439,14 @@ export class PostgreSQLParser extends antlr.Parser { } public cursor_variable(): Cursor_variableContext { let localContext = new Cursor_variableContext(this.context, this.state); - this.enterRule(localContext, 1714, PostgreSQLParser.RULE_cursor_variable); + this.enterRule(localContext, 1710, PostgreSQLParser.RULE_cursor_variable); try { - this.state = 11841; + this.state = 11743; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -69347,14 +69846,14 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 11839; + this.state = 11741; this.colid(); } break; case PostgreSQLParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 11840; + this.state = 11742; this.match(PostgreSQLParser.PARAM); } break; @@ -69378,9 +69877,9 @@ export class PostgreSQLParser extends antlr.Parser { } public exception_sect(): Exception_sectContext { let localContext = new Exception_sectContext(this.context, this.state); - this.enterRule(localContext, 1716, PostgreSQLParser.RULE_exception_sect); + this.enterRule(localContext, 1712, PostgreSQLParser.RULE_exception_sect); try { - this.state = 11846; + this.state = 11748; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_END: @@ -69392,9 +69891,9 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_EXCEPTION: this.enterOuterAlt(localContext, 2); { - this.state = 11844; + this.state = 11746; this.match(PostgreSQLParser.KW_EXCEPTION); - this.state = 11845; + this.state = 11747; this.proc_exceptions(); } break; @@ -69418,22 +69917,22 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_exceptions(): Proc_exceptionsContext { let localContext = new Proc_exceptionsContext(this.context, this.state); - this.enterRule(localContext, 1718, PostgreSQLParser.RULE_proc_exceptions); + this.enterRule(localContext, 1714, PostgreSQLParser.RULE_proc_exceptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11849; + this.state = 11751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 11848; + this.state = 11750; this.proc_exception(); } } - this.state = 11851; + this.state = 11753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -69455,17 +69954,17 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_exception(): Proc_exceptionContext { let localContext = new Proc_exceptionContext(this.context, this.state); - this.enterRule(localContext, 1720, PostgreSQLParser.RULE_proc_exception); + this.enterRule(localContext, 1716, PostgreSQLParser.RULE_proc_exception); try { this.enterOuterAlt(localContext, 1); { - this.state = 11853; + this.state = 11755; this.match(PostgreSQLParser.KW_WHEN); - this.state = 11854; + this.state = 11756; this.proc_conditions(); - this.state = 11855; + this.state = 11757; this.match(PostgreSQLParser.KW_THEN); - this.state = 11856; + this.state = 11758; this.proc_sect(); } } @@ -69485,26 +69984,26 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_conditions(): Proc_conditionsContext { let localContext = new Proc_conditionsContext(this.context, this.state); - this.enterRule(localContext, 1722, PostgreSQLParser.RULE_proc_conditions); + this.enterRule(localContext, 1718, PostgreSQLParser.RULE_proc_conditions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11858; + this.state = 11760; this.proc_condition(); - this.state = 11863; + this.state = 11765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 11859; + this.state = 11761; this.match(PostgreSQLParser.KW_OR); - this.state = 11860; + this.state = 11762; this.proc_condition(); } } - this.state = 11865; + this.state = 11767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -69526,24 +70025,24 @@ export class PostgreSQLParser extends antlr.Parser { } public proc_condition(): Proc_conditionContext { let localContext = new Proc_conditionContext(this.context, this.state); - this.enterRule(localContext, 1724, PostgreSQLParser.RULE_proc_condition); + this.enterRule(localContext, 1720, PostgreSQLParser.RULE_proc_condition); try { - this.state = 11869; + this.state = 11771; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1270, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11866; + this.state = 11768; this.any_identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11867; + this.state = 11769; this.match(PostgreSQLParser.KW_SQLSTATE); - this.state = 11868; + this.state = 11770; this.sconst(); } break; @@ -69565,9 +70064,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_block_label(): Opt_block_labelContext { let localContext = new Opt_block_labelContext(this.context, this.state); - this.enterRule(localContext, 1726, PostgreSQLParser.RULE_opt_block_label); + this.enterRule(localContext, 1722, PostgreSQLParser.RULE_opt_block_label); try { - this.state = 11873; + this.state = 11775; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_BEGIN: @@ -69580,7 +70079,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.LESS_LESS: this.enterOuterAlt(localContext, 2); { - this.state = 11872; + this.state = 11774; this.label_decl(); } break; @@ -69604,9 +70103,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_loop_label(): Opt_loop_labelContext { let localContext = new Opt_loop_labelContext(this.context, this.state); - this.enterRule(localContext, 1728, PostgreSQLParser.RULE_opt_loop_label); + this.enterRule(localContext, 1724, PostgreSQLParser.RULE_opt_loop_label); try { - this.state = 11877; + this.state = 11779; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.KW_FOR: @@ -69621,7 +70120,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.LESS_LESS: this.enterOuterAlt(localContext, 2); { - this.state = 11876; + this.state = 11778; this.label_decl(); } break; @@ -69645,9 +70144,9 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_label(): Opt_labelContext { let localContext = new Opt_labelContext(this.context, this.state); - this.enterRule(localContext, 1730, PostgreSQLParser.RULE_opt_label); + this.enterRule(localContext, 1726, PostgreSQLParser.RULE_opt_label); try { - this.state = 11881; + this.state = 11783; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSQLParser.EOF: @@ -69661,7 +70160,6 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.KW_AND: case PostgreSQLParser.KW_ARRAY: case PostgreSQLParser.KW_COLLATE: - case PostgreSQLParser.KW_COLUMN: case PostgreSQLParser.KW_CONSTRAINT: case PostgreSQLParser.KW_DEFAULT: case PostgreSQLParser.KW_DO: @@ -70061,7 +70559,7 @@ export class PostgreSQLParser extends antlr.Parser { case PostgreSQLParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 11880; + this.state = 11782; this.any_identifier(); } break; @@ -70085,13 +70583,13 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_exitcond(): Opt_exitcondContext { let localContext = new Opt_exitcondContext(this.context, this.state); - this.enterRule(localContext, 1732, PostgreSQLParser.RULE_opt_exitcond); + this.enterRule(localContext, 1728, PostgreSQLParser.RULE_opt_exitcond); try { this.enterOuterAlt(localContext, 1); { - this.state = 11883; + this.state = 11785; this.match(PostgreSQLParser.KW_WHEN); - this.state = 11884; + this.state = 11786; this.expr_until_semi(); } } @@ -70111,22 +70609,22 @@ export class PostgreSQLParser extends antlr.Parser { } public any_identifier(): Any_identifierContext { let localContext = new Any_identifierContext(this.context, this.state); - this.enterRule(localContext, 1734, PostgreSQLParser.RULE_any_identifier); + this.enterRule(localContext, 1730, PostgreSQLParser.RULE_any_identifier); try { - this.state = 11888; + this.state = 11790; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 11886; + this.state = 11788; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 11887; + this.state = 11789; this.plsql_unreserved_keyword(); } break; @@ -70148,14 +70646,14 @@ export class PostgreSQLParser extends antlr.Parser { } public plsql_unreserved_keyword(): Plsql_unreserved_keywordContext { let localContext = new Plsql_unreserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 1736, PostgreSQLParser.RULE_plsql_unreserved_keyword); + this.enterRule(localContext, 1732, PostgreSQLParser.RULE_plsql_unreserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11890; + this.state = 11792; _la = this.tokenStream.LA(1); - if(!(((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286268421) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || _la === 167 || _la === 172 || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0))) { + if(!(((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 286266373) !== 0) || ((((_la - 92)) & ~0x1F) === 0 && ((1 << (_la - 92)) & 2164260865) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2290106369) !== 0) || _la === 167 || _la === 172 || _la === 207 || _la === 210 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 419430657) !== 0) || ((((_la - 279)) & ~0x1F) === 0 && ((1 << (_la - 279)) & 268451841) !== 0) || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 1051713) !== 0) || _la === 360 || _la === 433 || _la === 434 || ((((_la - 477)) & ~0x1F) === 0 && ((1 << (_la - 477)) & 3959414785) !== 0) || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3071) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -70180,77 +70678,77 @@ export class PostgreSQLParser extends antlr.Parser { } public sql_expression(): Sql_expressionContext { let localContext = new Sql_expressionContext(this.context, this.state); - this.enterRule(localContext, 1738, PostgreSQLParser.RULE_sql_expression); + this.enterRule(localContext, 1734, PostgreSQLParser.RULE_sql_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11893; + this.state = 11795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805319172) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421518725) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805319172) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 421516677) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174894095) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 100660735) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 11892; + this.state = 11794; this.opt_target_list(); } } - this.state = 11896; + this.state = 11798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 11895; + this.state = 11797; this.into_clause(); } } - this.state = 11899; + this.state = 11801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 11898; + this.state = 11800; this.from_clause(); } } - this.state = 11902; + this.state = 11804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 11901; + this.state = 11803; this.where_clause(); } } - this.state = 11905; + this.state = 11807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 11904; + this.state = 11806; this.group_clause(); } } - this.state = 11908; + this.state = 11810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 11907; + this.state = 11809; this.having_clause(); } } - this.state = 11911; + this.state = 11813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 11910; + this.state = 11812; this.window_clause(); } } @@ -70273,11 +70771,11 @@ export class PostgreSQLParser extends antlr.Parser { } public expr_until_then(): Expr_until_thenContext { let localContext = new Expr_until_thenContext(this.context, this.state); - this.enterRule(localContext, 1740, PostgreSQLParser.RULE_expr_until_then); + this.enterRule(localContext, 1736, PostgreSQLParser.RULE_expr_until_then); try { this.enterOuterAlt(localContext, 1); { - this.state = 11913; + this.state = 11815; this.sql_expression(); } } @@ -70297,11 +70795,11 @@ export class PostgreSQLParser extends antlr.Parser { } public expr_until_semi(): Expr_until_semiContext { let localContext = new Expr_until_semiContext(this.context, this.state); - this.enterRule(localContext, 1742, PostgreSQLParser.RULE_expr_until_semi); + this.enterRule(localContext, 1738, PostgreSQLParser.RULE_expr_until_semi); try { this.enterOuterAlt(localContext, 1); { - this.state = 11915; + this.state = 11817; this.sql_expression(); } } @@ -70321,11 +70819,11 @@ export class PostgreSQLParser extends antlr.Parser { } public expr_until_rightbracket(): Expr_until_rightbracketContext { let localContext = new Expr_until_rightbracketContext(this.context, this.state); - this.enterRule(localContext, 1744, PostgreSQLParser.RULE_expr_until_rightbracket); + this.enterRule(localContext, 1740, PostgreSQLParser.RULE_expr_until_rightbracket); try { this.enterOuterAlt(localContext, 1); { - this.state = 11917; + this.state = 11819; this.a_expr(); } } @@ -70345,11 +70843,11 @@ export class PostgreSQLParser extends antlr.Parser { } public expr_until_loop(): Expr_until_loopContext { let localContext = new Expr_until_loopContext(this.context, this.state); - this.enterRule(localContext, 1746, PostgreSQLParser.RULE_expr_until_loop); + this.enterRule(localContext, 1742, PostgreSQLParser.RULE_expr_until_loop); try { this.enterOuterAlt(localContext, 1); { - this.state = 11919; + this.state = 11821; this.a_expr(); } } @@ -70369,19 +70867,19 @@ export class PostgreSQLParser extends antlr.Parser { } public make_execsql_stmt(): Make_execsql_stmtContext { let localContext = new Make_execsql_stmtContext(this.context, this.state); - this.enterRule(localContext, 1748, PostgreSQLParser.RULE_make_execsql_stmt); + this.enterRule(localContext, 1744, PostgreSQLParser.RULE_make_execsql_stmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 11921; + this.state = 11823; this.stmt(); - this.state = 11923; + this.state = 11825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 11922; + this.state = 11824; this.opt_returning_clause_into(); } } @@ -70404,15 +70902,15 @@ export class PostgreSQLParser extends antlr.Parser { } public opt_returning_clause_into(): Opt_returning_clause_intoContext { let localContext = new Opt_returning_clause_intoContext(this.context, this.state); - this.enterRule(localContext, 1750, PostgreSQLParser.RULE_opt_returning_clause_into); + this.enterRule(localContext, 1746, PostgreSQLParser.RULE_opt_returning_clause_into); try { this.enterOuterAlt(localContext, 1); { - this.state = 11925; + this.state = 11827; this.match(PostgreSQLParser.KW_INTO); - this.state = 11926; + this.state = 11828; this.opt_strict(); - this.state = 11927; + this.state = 11829; this.into_target(); } } @@ -70433,7 +70931,7 @@ export class PostgreSQLParser extends antlr.Parser { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 627: + case 625: return this.b_expr_sempred(localContext as B_exprContext, predIndex); } return true; @@ -70461,7 +70959,7 @@ export class PostgreSQLParser extends antlr.Parser { } public static readonly _serializedATN: number[] = [ - 4,1,590,11930,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2, + 4,1,590,11832,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2, 6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13, 7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19, 2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26, @@ -70617,207 +71115,204 @@ export class PostgreSQLParser extends antlr.Parser { 2,857,7,857,2,858,7,858,2,859,7,859,2,860,7,860,2,861,7,861,2,862, 7,862,2,863,7,863,2,864,7,864,2,865,7,865,2,866,7,866,2,867,7,867, 2,868,7,868,2,869,7,869,2,870,7,870,2,871,7,871,2,872,7,872,2,873, - 7,873,2,874,7,874,2,875,7,875,1,0,5,0,1754,8,0,10,0,12,0,1757,9, - 0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,1765,8,2,1,3,1,3,1,3,1,3,1,3,1,3,1, + 7,873,1,0,5,0,1750,8,0,10,0,12,0,1753,9,0,1,0,1,0,1,1,1,1,1,2,1, + 2,3,2,1761,8,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1, - 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1884, - 8,3,1,4,1,4,3,4,1888,8,4,1,5,1,5,1,5,1,6,1,6,1,6,1,6,3,6,1897,8, - 6,1,6,1,6,1,7,1,7,1,8,5,8,1904,8,8,10,8,12,8,1907,9,8,1,9,5,9,1910, - 8,9,10,9,12,9,1913,9,9,1,10,1,10,1,10,3,10,1918,8,10,1,10,1,10,1, - 10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1, - 10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1, - 10,1,10,3,10,1950,8,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1, - 11,1,11,3,11,1962,8,11,1,12,1,12,1,12,1,12,3,12,1968,8,12,1,12,1, - 12,1,13,1,13,1,13,1,13,3,13,1976,8,13,1,13,1,13,1,14,1,14,1,14,1, - 14,3,14,1984,8,14,1,15,1,15,1,15,1,15,3,15,1990,8,15,1,15,1,15,1, - 15,1,16,1,16,1,16,1,16,3,16,1999,8,16,1,16,1,16,1,17,1,17,3,17,2005, - 8,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,3,17,2017, - 8,17,1,17,1,17,1,17,1,17,3,17,2023,8,17,1,18,1,18,5,18,2027,8,18, - 10,18,12,18,2030,9,18,1,19,1,19,1,19,1,19,3,19,2036,8,19,1,19,1, - 19,3,19,2040,8,19,1,19,1,19,1,19,3,19,2045,8,19,1,19,1,19,3,19,2049, - 8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19, - 2062,8,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,2073, - 8,19,1,20,1,20,1,20,1,20,3,20,2079,8,20,1,20,1,20,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,1,22,1,22,1,23,1,23,1,23,3,23,2095,8,23,1,23, - 3,23,2098,8,23,1,23,1,23,1,23,3,23,2103,8,23,1,23,1,23,1,24,1,24, - 3,24,2109,8,24,1,25,5,25,2112,8,25,10,25,12,25,2115,9,25,1,26,1, - 26,1,26,1,26,1,26,1,26,3,26,2123,8,26,1,27,1,27,3,27,2127,8,27,1, - 27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,3,28,2139,8,28,1, - 29,1,29,3,29,2143,8,29,1,29,3,29,2146,8,29,1,29,1,29,3,29,2150,8, - 29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, - 30,1,30,3,30,2166,8,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, - 30,1,30,1,30,3,30,2179,8,30,1,31,1,31,1,31,5,31,2184,8,31,10,31, - 12,31,2187,9,31,1,32,1,32,1,32,5,32,2192,8,32,10,32,12,32,2195,9, - 32,1,33,1,33,3,33,2199,8,33,1,34,1,34,1,34,1,34,1,34,3,34,2206,8, - 34,1,35,1,35,1,35,1,35,3,35,2212,8,35,1,36,1,36,1,36,1,36,3,36,2218, - 8,36,1,37,1,37,1,37,1,37,1,37,3,37,2225,8,37,1,37,1,37,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,3,37,2236,8,37,1,38,1,38,3,38,2240,8,38, - 1,39,1,39,3,39,2244,8,39,1,40,1,40,3,40,2248,8,40,1,41,1,41,1,41, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,2261,8,42,1,43,1,43, - 3,43,2265,8,43,1,44,1,44,1,44,3,44,2270,8,44,1,45,1,45,1,45,3,45, - 2275,8,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46, - 2287,8,46,1,47,1,47,1,47,1,47,1,47,1,48,1,48,3,48,2296,8,48,1,49, - 1,49,1,50,1,50,1,51,1,51,1,51,1,52,1,52,1,52,3,52,2308,8,52,1,52, - 1,52,1,52,3,52,2313,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52, - 1,52,3,52,2324,8,52,1,52,1,52,1,52,1,52,3,52,2330,8,52,1,52,1,52, - 1,52,3,52,2335,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52, - 2345,8,52,1,52,1,52,1,52,3,52,2350,8,52,1,52,1,52,1,52,1,52,1,52, - 3,52,2357,8,52,1,52,1,52,1,52,3,52,2362,8,52,1,52,1,52,1,52,3,52, - 2367,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2378, - 8,52,1,52,1,52,1,52,1,52,3,52,2384,8,52,1,52,1,52,1,52,3,52,2389, - 8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2397,8,52,1,52,1,52,1,52, - 1,52,1,52,1,52,1,52,3,52,2406,8,52,1,52,1,52,1,52,1,52,1,52,1,52, - 1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2421,8,52,1,52,1,52,1,52, - 1,52,3,52,2427,8,52,1,52,1,52,1,52,1,52,3,52,2433,8,52,1,52,1,52, - 1,52,3,52,2438,8,52,1,53,1,53,1,53,5,53,2443,8,53,10,53,12,53,2446, - 9,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2457,8,54, - 1,55,1,55,1,55,1,55,5,55,2463,8,55,10,55,12,55,2466,9,55,1,55,1, - 55,1,56,1,56,1,56,3,56,2473,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1, - 57,1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2491,8,58,1, - 59,1,59,1,59,1,59,1,60,1,60,3,60,2499,8,60,1,60,3,60,2502,8,60,1, - 60,1,60,1,60,3,60,2507,8,60,1,60,1,60,1,60,1,60,1,60,3,60,2514,8, - 60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2523,8,60,1,60,1,60,1, - 60,1,60,1,60,1,60,1,60,3,60,2532,8,60,1,60,1,60,1,60,1,60,3,60,2538, - 8,60,1,60,1,60,3,60,2542,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 3,60,2551,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2560,8,60, - 1,60,1,60,1,60,1,60,1,60,1,60,3,60,2568,8,60,1,60,1,60,1,60,1,60, - 1,60,1,60,3,60,2576,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60, - 2585,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2594,8,60,1,60, - 1,60,3,60,2598,8,60,1,60,1,60,1,60,1,60,1,60,3,60,2605,8,60,1,60, - 1,60,1,60,1,60,3,60,2611,8,60,1,60,1,60,3,60,2615,8,60,1,60,3,60, - 2618,8,60,1,60,1,60,3,60,2622,8,60,1,60,1,60,3,60,2626,8,60,1,60, - 1,60,3,60,2630,8,60,1,60,1,60,1,60,3,60,2635,8,60,1,60,3,60,2638, - 8,60,1,60,1,60,3,60,2642,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2660,8,60,1,60, - 1,60,3,60,2664,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, + 3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1880,8,3,1,4,1,4,3,4,1884, + 8,4,1,5,1,5,1,5,1,6,1,6,1,6,1,6,3,6,1893,8,6,1,6,1,6,1,7,1,7,1,8, + 5,8,1900,8,8,10,8,12,8,1903,9,8,1,9,5,9,1906,8,9,10,9,12,9,1909, + 9,9,1,10,1,10,1,10,3,10,1914,8,10,1,10,1,10,1,10,1,10,1,10,1,10, + 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, + 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1946, + 8,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1958, + 8,11,1,12,1,12,1,12,1,12,3,12,1964,8,12,1,12,1,12,1,13,1,13,1,13, + 1,13,3,13,1972,8,13,1,13,1,13,1,14,1,14,1,14,1,14,3,14,1980,8,14, + 1,15,1,15,1,15,1,15,3,15,1986,8,15,1,15,1,15,1,15,1,16,1,16,1,16, + 1,16,3,16,1995,8,16,1,16,1,16,1,17,1,17,3,17,2001,8,17,1,17,1,17, + 1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,3,17,2013,8,17,1,17,1,17, + 1,17,1,17,3,17,2019,8,17,1,18,1,18,5,18,2023,8,18,10,18,12,18,2026, + 9,18,1,19,1,19,1,19,1,19,3,19,2032,8,19,1,19,1,19,3,19,2036,8,19, + 1,19,1,19,1,19,3,19,2041,8,19,1,19,1,19,3,19,2045,8,19,1,19,1,19, + 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,2058,8,19,1,19, + 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,2069,8,19,1,20,1,20, + 1,20,1,20,3,20,2075,8,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,22,1,22,1,23,1,23,1,23,3,23,2091,8,23,1,23,3,23,2094,8,23, + 1,23,1,23,1,23,3,23,2099,8,23,1,23,1,23,1,24,1,24,3,24,2105,8,24, + 1,25,5,25,2108,8,25,10,25,12,25,2111,9,25,1,26,1,26,1,26,1,26,1, + 26,1,26,3,26,2119,8,26,1,27,1,27,3,27,2123,8,27,1,27,1,27,1,28,1, + 28,1,28,1,28,1,28,1,28,1,28,1,28,3,28,2135,8,28,1,29,1,29,3,29,2139, + 8,29,1,29,3,29,2142,8,29,1,29,1,29,3,29,2146,8,29,1,30,1,30,1,30, + 1,30,1,30,1,30,1,30,1,30,1,30,3,30,2157,8,30,1,30,1,30,1,30,1,30, + 1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,3,30, + 2175,8,30,1,31,1,31,1,31,5,31,2180,8,31,10,31,12,31,2183,9,31,1, + 32,1,32,1,32,5,32,2188,8,32,10,32,12,32,2191,9,32,1,33,1,33,3,33, + 2195,8,33,1,34,1,34,1,34,1,34,1,34,3,34,2202,8,34,1,35,1,35,1,35, + 1,35,3,35,2208,8,35,1,36,1,36,1,36,1,36,3,36,2214,8,36,1,37,1,37, + 1,37,1,37,1,37,3,37,2221,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, + 1,37,1,37,3,37,2232,8,37,1,38,1,38,3,38,2236,8,38,1,39,1,39,3,39, + 2240,8,39,1,40,1,40,3,40,2244,8,40,1,41,1,41,1,41,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,3,42,2257,8,42,1,43,1,43,3,43,2261,8,43, + 1,44,1,44,1,44,3,44,2266,8,44,1,45,1,45,1,45,3,45,2271,8,45,1,46, + 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,2283,8,46,1,47, + 1,47,1,47,1,47,1,47,1,48,1,48,3,48,2292,8,48,1,49,1,49,1,50,1,50, + 1,51,1,51,1,51,1,52,1,52,1,52,3,52,2304,8,52,1,52,1,52,1,52,3,52, + 2309,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2320, + 8,52,1,52,1,52,1,52,1,52,3,52,2326,8,52,1,52,1,52,1,52,3,52,2331, + 8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2341,8,52,1,52, + 1,52,1,52,3,52,2346,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2353,8,52, + 1,52,1,52,1,52,3,52,2358,8,52,1,52,1,52,1,52,3,52,2363,8,52,1,52, + 1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2374,8,52,1,52,1,52, + 1,52,1,52,3,52,2380,8,52,1,52,1,52,1,52,3,52,2385,8,52,1,52,1,52, + 1,52,1,52,1,52,1,52,3,52,2393,8,52,1,52,1,52,1,52,1,52,1,52,1,52, + 1,52,3,52,2402,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52, + 1,52,1,52,1,52,1,52,3,52,2417,8,52,1,52,1,52,1,52,1,52,3,52,2423, + 8,52,1,52,1,52,1,52,1,52,3,52,2429,8,52,1,52,1,52,1,52,3,52,2434, + 8,52,1,53,1,53,1,53,5,53,2439,8,53,10,53,12,53,2442,9,53,1,54,1, + 54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,2453,8,54,1,55,1,55,1, + 55,1,55,5,55,2459,8,55,10,55,12,55,2462,9,55,1,55,1,55,1,56,1,56, + 1,56,3,56,2469,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2487,8,58,1,59,1,59,1,59, + 1,59,1,60,1,60,1,60,3,60,2496,8,60,1,60,1,60,1,60,1,60,1,60,1,60, + 1,60,1,60,1,60,1,60,1,60,1,60,3,60,2510,8,60,1,60,1,60,3,60,2514, + 8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, + 1,60,3,60,2529,8,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2537,8,60, + 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2547,8,60,1,60,1,60, 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,3,60,2759,8,60,1,61,1,61,1,61,1,61, - 1,61,3,61,2766,8,61,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,65, - 1,65,1,65,1,65,1,65,1,65,3,65,2782,8,65,1,66,1,66,1,66,1,66,1,67, - 1,67,1,67,1,68,1,68,1,68,5,68,2794,8,68,10,68,12,68,2797,9,68,1, - 69,1,69,1,69,1,69,1,69,1,69,1,69,3,69,2806,8,69,3,69,2808,8,69,1, - 70,4,70,2811,8,70,11,70,12,70,2812,1,71,1,71,3,71,2817,8,71,1,71, - 3,71,2820,8,71,1,71,1,71,1,71,1,71,3,71,2826,8,71,3,71,2828,8,71, + 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2587,8,60, + 1,60,3,60,2590,8,60,1,60,1,60,3,60,2594,8,60,1,60,1,60,3,60,2598, + 8,60,1,60,3,60,2601,8,60,1,60,1,60,1,60,3,60,2606,8,60,1,60,1,60, + 1,60,1,60,1,60,3,60,2613,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, + 3,60,2622,8,60,1,60,1,60,1,60,1,60,3,60,2628,8,60,1,60,1,60,3,60, + 2632,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,2641,8,60,1,60, + 1,60,1,60,1,60,1,60,1,60,3,60,2649,8,60,1,60,1,60,1,60,1,60,1,60, + 1,60,1,60,3,60,2658,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60, + 2667,8,60,1,60,1,60,3,60,2671,8,60,1,60,1,60,1,60,1,60,1,60,3,60, + 2678,8,60,1,60,1,60,1,60,1,60,3,60,2684,8,60,1,60,1,60,3,60,2688, + 8,60,1,60,1,60,3,60,2692,8,60,1,60,1,60,1,60,3,60,2697,8,60,1,60, + 3,60,2700,8,60,1,60,1,60,3,60,2704,8,60,1,60,1,60,1,60,1,60,3,60, + 2710,8,60,1,61,1,61,1,61,1,61,1,61,3,61,2717,8,61,1,62,1,62,1,63, + 1,63,1,63,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2733, + 8,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,68,1,68,1,68,5,68,2745, + 8,68,10,68,12,68,2748,9,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3, + 69,2757,8,69,3,69,2759,8,69,1,70,4,70,2762,8,70,11,70,12,70,2763, + 1,71,1,71,3,71,2768,8,71,1,71,3,71,2771,8,71,1,71,1,71,1,71,1,71, + 3,71,2777,8,71,3,71,2779,8,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72, 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 3,72,2856,8,72,1,73,1,73,1,73,1,74,1,74,1,74,5,74,2864,8,74,10,74, - 12,74,2867,9,74,1,75,1,75,1,75,1,75,1,75,1,76,1,76,1,76,5,76,2877, - 8,76,10,76,12,76,2880,9,76,1,77,1,77,1,77,1,77,3,77,2886,8,77,1, - 77,1,77,1,77,3,77,2891,8,77,1,77,1,77,3,77,2895,8,77,1,77,1,77,1, - 77,1,77,3,77,2901,8,77,1,77,1,77,1,77,3,77,2906,8,77,1,77,3,77,2909, - 8,77,3,77,2911,8,77,1,78,1,78,1,78,3,78,2916,8,78,1,79,1,79,3,79, - 2920,8,79,1,79,1,79,3,79,2924,8,79,1,79,1,79,3,79,2928,8,79,1,79, - 1,79,3,79,2932,8,79,1,79,3,79,2935,8,79,1,79,1,79,3,79,2939,8,79, - 1,79,1,79,1,79,1,79,1,79,1,79,3,79,2947,8,79,1,79,1,79,3,79,2951, - 8,79,1,79,1,79,3,79,2955,8,79,1,80,1,80,1,81,1,81,1,82,1,82,1,82, - 3,82,2964,8,82,1,83,1,83,1,83,1,83,1,83,3,83,2971,8,83,1,84,5,84, - 2974,8,84,10,84,12,84,2977,9,84,1,85,1,85,1,85,1,85,3,85,2983,8, - 85,1,85,1,85,1,85,3,85,2988,8,85,1,85,1,85,1,85,1,85,1,85,3,85,2995, - 8,85,1,85,1,85,1,85,3,85,3000,8,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,3,85,3018,8,85, - 1,86,1,86,1,87,3,87,3023,8,87,1,87,1,87,1,87,1,88,1,88,1,89,1,89, - 1,89,5,89,3033,8,89,10,89,12,89,3036,9,89,1,90,1,90,3,90,3040,8, - 90,1,91,1,91,1,91,1,91,1,91,1,91,1,91,3,91,3049,8,91,1,92,1,92,1, - 92,5,92,3054,8,92,10,92,12,92,3057,9,92,1,93,1,93,1,94,1,94,3,94, - 3063,8,94,1,94,1,94,3,94,3067,8,94,1,94,1,94,1,94,3,94,3072,8,94, - 1,94,1,94,3,94,3076,8,94,1,94,3,94,3079,8,94,1,94,3,94,3082,8,94, - 1,94,3,94,3085,8,94,1,94,3,94,3088,8,94,1,94,3,94,3091,8,94,1,94, - 1,94,1,94,3,94,3096,8,94,1,94,3,94,3099,8,94,1,94,3,94,3102,8,94, - 1,94,3,94,3105,8,94,1,94,3,94,3108,8,94,1,94,3,94,3111,8,94,1,94, - 1,94,1,94,1,94,3,94,3117,8,94,1,94,1,94,3,94,3121,8,94,1,94,3,94, - 3124,8,94,1,94,3,94,3127,8,94,1,94,3,94,3130,8,94,1,94,3,94,3133, - 8,94,3,94,3135,8,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,3,95,3144, - 8,95,1,96,1,96,1,97,1,97,1,98,1,98,1,98,1,98,1,99,1,99,1,99,5,99, - 3157,8,99,10,99,12,99,3160,9,99,1,100,1,100,1,100,5,100,3165,8,100, - 10,100,12,100,3168,9,100,1,101,1,101,1,101,3,101,3173,8,101,1,102, - 1,102,3,102,3177,8,102,1,103,1,103,1,103,3,103,3182,8,103,1,103, - 3,103,3185,8,103,1,103,3,103,3188,8,103,1,103,1,103,3,103,3192,8, - 103,1,103,1,103,3,103,3196,8,103,1,103,1,103,1,104,1,104,1,104,3, - 104,3203,8,104,1,104,3,104,3206,8,104,1,104,3,104,3209,8,104,1,104, - 1,104,3,104,3213,8,104,1,104,1,104,3,104,3217,8,104,1,104,1,104, - 1,105,1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,3,106, - 3231,8,106,1,107,1,107,1,107,3,107,3236,8,107,1,107,1,107,1,108, - 5,108,3241,8,108,10,108,12,108,3244,9,108,1,109,1,109,3,109,3248, - 8,109,1,109,1,109,3,109,3252,8,109,1,109,3,109,3255,8,109,1,109, - 1,109,3,109,3259,8,109,1,109,3,109,3262,8,109,3,109,3264,8,109,1, - 110,1,110,1,110,1,110,1,110,3,110,3271,8,110,1,110,3,110,3274,8, - 110,1,110,1,110,3,110,3278,8,110,1,110,1,110,1,110,1,110,3,110,3284, - 8,110,1,110,3,110,3287,8,110,1,110,1,110,1,110,1,110,1,110,3,110, - 3294,8,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,3303, - 8,110,1,110,1,110,1,110,1,110,1,110,3,110,3310,8,110,1,110,1,110, - 1,110,3,110,3315,8,110,1,110,3,110,3318,8,110,1,110,3,110,3321,8, - 110,1,110,3,110,3324,8,110,1,111,1,111,3,111,3328,8,111,1,111,1, - 111,1,112,1,112,1,112,3,112,3335,8,112,1,113,1,113,1,113,3,113,3340, - 8,113,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,116,1,116,5,116, - 3351,8,116,10,116,12,116,3354,9,116,1,117,1,117,1,118,1,118,1,118, - 1,118,1,118,3,118,3363,8,118,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,3,119,3376,8,119,1,119,3,119,3379, - 8,119,1,119,3,119,3382,8,119,1,119,1,119,1,119,1,119,1,119,3,119, - 3389,8,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3397,8,119, - 1,119,3,119,3400,8,119,1,119,3,119,3403,8,119,1,119,1,119,1,119, - 1,119,1,119,3,119,3410,8,119,1,119,1,119,3,119,3414,8,119,1,119, - 1,119,1,119,1,119,3,119,3420,8,119,1,119,3,119,3423,8,119,1,119, - 3,119,3426,8,119,1,119,3,119,3429,8,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,119,3,119,3441,8,119,1,119,3,119, - 3444,8,119,1,119,3,119,3447,8,119,1,119,1,119,3,119,3451,8,119,1, - 120,1,120,1,120,1,121,1,121,1,121,1,121,1,122,1,122,1,122,5,122, - 3463,8,122,10,122,12,122,3466,9,122,1,123,1,123,1,123,1,123,1,123, - 1,124,1,124,1,124,1,125,1,125,1,125,5,125,3479,8,125,10,125,12,125, - 3482,9,125,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,3,126, - 3492,8,126,1,127,1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128, - 1,128,1,128,1,128,1,128,3,128,3507,8,128,1,129,1,129,1,129,1,129, - 1,130,1,130,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 3,131,3524,8,131,3,131,3526,8,131,1,132,1,132,1,132,1,132,1,132, - 1,133,1,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135, - 1,135,5,135,3545,8,135,10,135,12,135,3548,9,135,1,136,1,136,3,136, - 3552,8,136,1,136,3,136,3555,8,136,1,136,1,136,3,136,3559,8,136,1, - 136,3,136,3562,8,136,1,136,1,136,1,136,1,136,3,136,3568,8,136,1, - 136,3,136,3571,8,136,3,136,3573,8,136,1,137,1,137,1,137,1,138,1, - 138,1,138,1,138,1,138,1,138,3,138,3584,8,138,1,139,1,139,1,139,1, - 139,1,139,1,139,1,139,3,139,3593,8,139,1,140,1,140,1,140,1,141,3, - 141,3599,8,141,1,141,3,141,3602,8,141,1,141,3,141,3605,8,141,1,142, - 1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,144,1,144,1,144, - 3,144,3619,8,144,1,144,3,144,3622,8,144,1,144,3,144,3625,8,144,1, - 144,1,144,1,144,3,144,3630,8,144,1,144,1,144,1,144,1,145,1,145,1, - 145,3,145,3638,8,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146,3, - 146,3647,8,146,1,146,1,146,3,146,3651,8,146,1,146,1,146,1,146,1, - 146,3,146,3657,8,146,1,147,1,147,3,147,3661,8,147,1,147,3,147,3664, - 8,147,1,147,3,147,3667,8,147,1,147,3,147,3670,8,147,1,147,3,147, - 3673,8,147,1,148,1,148,1,148,1,148,3,148,3679,8,148,1,149,1,149, - 3,149,3683,8,149,1,149,1,149,1,149,3,149,3688,8,149,1,149,1,149, - 1,149,1,149,3,149,3694,8,149,1,150,1,150,3,150,3698,8,150,1,150, - 3,150,3701,8,150,1,150,3,150,3704,8,150,1,150,3,150,3707,8,150,1, - 151,1,151,1,152,1,152,1,152,1,152,3,152,3715,8,152,1,152,1,152,3, - 152,3719,8,152,1,153,1,153,3,153,3723,8,153,1,153,1,153,3,153,3727, - 8,153,1,153,1,153,3,153,3731,8,153,1,154,1,154,1,154,3,154,3736, - 8,154,1,154,1,154,1,154,1,155,1,155,1,156,1,156,1,156,1,156,1,157, - 4,157,3748,8,157,11,157,12,157,3749,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,3,158,3759,8,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158,3776, - 8,158,1,158,1,158,1,158,3,158,3781,8,158,1,158,3,158,3784,8,158, - 3,158,3786,8,158,1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160, - 3,160,3796,8,160,1,161,1,161,1,161,5,161,3801,8,161,10,161,12,161, - 3804,9,161,1,162,1,162,3,162,3808,8,162,1,162,3,162,3811,8,162,1, - 162,3,162,3814,8,162,1,162,1,162,1,162,1,162,1,162,3,162,3821,8, - 162,1,162,3,162,3824,8,162,3,162,3826,8,162,1,163,1,163,1,164,1, - 164,3,164,3832,8,164,1,165,1,165,1,165,1,166,1,166,1,166,1,166,3, - 166,3841,8,166,1,167,1,167,1,168,1,168,1,169,1,169,1,169,1,169,3, - 169,3851,8,169,1,169,1,169,1,169,3,169,3856,8,169,1,170,1,170,1, - 170,1,171,1,171,1,171,3,171,3864,8,171,1,171,1,171,3,171,3868,8, - 171,1,171,1,171,1,172,5,172,3873,8,172,10,172,12,172,3876,9,172, - 1,173,1,173,1,173,1,173,1,173,1,173,1,173,3,173,3885,8,173,1,174, - 1,174,1,174,1,174,1,174,1,174,1,175,5,175,3894,8,175,10,175,12,175, - 3897,9,175,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177, + 1,72,1,72,1,72,1,72,1,72,1,72,3,72,2807,8,72,1,73,1,73,1,73,1,74, + 1,74,1,74,5,74,2815,8,74,10,74,12,74,2818,9,74,1,75,1,75,1,75,1, + 75,1,75,1,76,1,76,1,76,5,76,2828,8,76,10,76,12,76,2831,9,76,1,77, + 1,77,1,77,1,77,3,77,2837,8,77,1,77,1,77,1,77,3,77,2842,8,77,1,77, + 1,77,3,77,2846,8,77,1,77,1,77,1,77,1,77,3,77,2852,8,77,1,77,1,77, + 1,77,3,77,2857,8,77,1,77,3,77,2860,8,77,3,77,2862,8,77,1,78,1,78, + 1,78,3,78,2867,8,78,1,79,1,79,3,79,2871,8,79,1,79,1,79,3,79,2875, + 8,79,1,79,1,79,3,79,2879,8,79,1,79,1,79,3,79,2883,8,79,1,79,3,79, + 2886,8,79,1,79,1,79,3,79,2890,8,79,1,79,1,79,1,79,1,79,1,79,1,79, + 3,79,2898,8,79,1,79,1,79,3,79,2902,8,79,1,79,1,79,3,79,2906,8,79, + 1,80,1,80,1,81,1,81,1,82,1,82,1,82,3,82,2915,8,82,1,83,1,83,1,83, + 1,83,1,83,3,83,2922,8,83,1,84,5,84,2925,8,84,10,84,12,84,2928,9, + 84,1,85,1,85,1,85,1,85,3,85,2934,8,85,1,85,1,85,1,85,3,85,2939,8, + 85,1,85,1,85,1,85,1,85,1,85,3,85,2946,8,85,1,85,1,85,1,85,3,85,2951, + 8,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, + 1,85,1,85,1,85,1,85,3,85,2969,8,85,1,86,1,86,1,87,3,87,2974,8,87, + 1,87,1,87,1,87,1,88,1,88,1,89,1,89,1,89,5,89,2984,8,89,10,89,12, + 89,2987,9,89,1,90,1,90,3,90,2991,8,90,1,91,1,91,1,91,1,91,1,91,1, + 91,1,91,3,91,3000,8,91,1,92,1,92,1,92,5,92,3005,8,92,10,92,12,92, + 3008,9,92,1,93,1,93,1,94,1,94,3,94,3014,8,94,1,94,1,94,3,94,3018, + 8,94,1,94,1,94,1,94,3,94,3023,8,94,1,94,1,94,3,94,3027,8,94,1,94, + 3,94,3030,8,94,1,94,3,94,3033,8,94,1,94,3,94,3036,8,94,1,94,3,94, + 3039,8,94,1,94,3,94,3042,8,94,1,94,1,94,1,94,3,94,3047,8,94,1,94, + 3,94,3050,8,94,1,94,3,94,3053,8,94,1,94,3,94,3056,8,94,1,94,3,94, + 3059,8,94,1,94,3,94,3062,8,94,1,94,1,94,1,94,1,94,3,94,3068,8,94, + 1,94,1,94,3,94,3072,8,94,1,94,3,94,3075,8,94,1,94,3,94,3078,8,94, + 1,94,3,94,3081,8,94,1,94,3,94,3084,8,94,3,94,3086,8,94,1,95,1,95, + 1,95,1,95,1,95,1,95,1,95,3,95,3095,8,95,1,96,1,96,1,97,1,97,1,98, + 1,98,1,98,1,98,1,99,1,99,1,99,5,99,3108,8,99,10,99,12,99,3111,9, + 99,1,100,1,100,1,100,5,100,3116,8,100,10,100,12,100,3119,9,100,1, + 101,1,101,1,101,3,101,3124,8,101,1,102,1,102,3,102,3128,8,102,1, + 103,1,103,1,103,3,103,3133,8,103,1,103,3,103,3136,8,103,1,103,3, + 103,3139,8,103,1,103,1,103,3,103,3143,8,103,1,103,1,103,3,103,3147, + 8,103,1,103,1,103,1,104,1,104,1,104,3,104,3154,8,104,1,104,3,104, + 3157,8,104,1,104,3,104,3160,8,104,1,104,1,104,3,104,3164,8,104,1, + 104,1,104,3,104,3168,8,104,1,104,1,104,1,105,1,105,1,105,1,106,1, + 106,1,106,1,106,1,106,1,106,1,106,3,106,3182,8,106,1,107,1,107,1, + 107,3,107,3187,8,107,1,107,1,107,1,108,5,108,3192,8,108,10,108,12, + 108,3195,9,108,1,109,1,109,3,109,3199,8,109,1,109,1,109,3,109,3203, + 8,109,1,109,3,109,3206,8,109,1,109,1,109,3,109,3210,8,109,1,109, + 3,109,3213,8,109,3,109,3215,8,109,1,110,1,110,1,110,1,110,1,110, + 3,110,3222,8,110,1,110,3,110,3225,8,110,1,110,1,110,3,110,3229,8, + 110,1,110,1,110,1,110,1,110,3,110,3235,8,110,1,110,3,110,3238,8, + 110,1,110,1,110,1,110,1,110,1,110,3,110,3245,8,110,1,110,1,110,1, + 110,1,110,1,110,1,110,1,110,3,110,3254,8,110,1,110,1,110,1,110,1, + 110,1,110,3,110,3261,8,110,1,110,1,110,1,110,3,110,3266,8,110,1, + 110,3,110,3269,8,110,1,110,3,110,3272,8,110,1,110,3,110,3275,8,110, + 1,111,1,111,3,111,3279,8,111,1,111,1,111,1,112,1,112,1,112,3,112, + 3286,8,112,1,113,1,113,1,113,3,113,3291,8,113,1,114,1,114,1,114, + 1,115,1,115,1,115,1,115,1,116,1,116,5,116,3302,8,116,10,116,12,116, + 3305,9,116,1,117,1,117,1,118,1,118,1,118,1,118,1,118,3,118,3314, + 8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,3,119,3327,8,119,1,119,3,119,3330,8,119,1,119,3,119,3333,8, + 119,1,119,1,119,1,119,1,119,1,119,3,119,3340,8,119,1,119,1,119,1, + 119,1,119,1,119,1,119,3,119,3348,8,119,1,119,3,119,3351,8,119,1, + 119,3,119,3354,8,119,1,119,1,119,1,119,1,119,1,119,3,119,3361,8, + 119,1,119,1,119,3,119,3365,8,119,1,119,1,119,1,119,1,119,3,119,3371, + 8,119,1,119,3,119,3374,8,119,1,119,3,119,3377,8,119,1,119,3,119, + 3380,8,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,3,119,3392,8,119,1,119,3,119,3395,8,119,1,119,3,119,3398,8, + 119,1,119,1,119,3,119,3402,8,119,1,120,1,120,1,120,1,121,1,121,1, + 121,1,121,1,122,1,122,1,122,5,122,3414,8,122,10,122,12,122,3417, + 9,122,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,125,1,125, + 1,125,5,125,3430,8,125,10,125,12,125,3433,9,125,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,3,126,3443,8,126,1,127,1,127,1,127, + 1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,3,128, + 3458,8,128,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,3,131,3475,8,131,3,131,3477, + 8,131,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,135,1,135,1,135,5,135,3496,8,135,10,135, + 12,135,3499,9,135,1,136,1,136,3,136,3503,8,136,1,136,3,136,3506, + 8,136,1,136,1,136,3,136,3510,8,136,1,136,3,136,3513,8,136,1,136, + 1,136,1,136,1,136,3,136,3519,8,136,1,136,3,136,3522,8,136,3,136, + 3524,8,136,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,138, + 3,138,3535,8,138,1,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, + 3544,8,139,1,140,1,140,1,140,1,141,3,141,3550,8,141,1,141,3,141, + 3553,8,141,1,141,3,141,3556,8,141,1,142,1,142,1,142,1,142,1,142, + 1,143,1,143,1,143,1,143,1,144,1,144,1,144,3,144,3570,8,144,1,144, + 3,144,3573,8,144,1,144,3,144,3576,8,144,1,144,1,144,1,144,3,144, + 3581,8,144,1,144,1,144,1,144,1,145,1,145,1,145,3,145,3589,8,145, + 1,145,1,145,1,145,1,145,1,145,1,146,1,146,3,146,3598,8,146,1,146, + 1,146,3,146,3602,8,146,1,146,1,146,1,146,1,146,3,146,3608,8,146, + 1,147,1,147,3,147,3612,8,147,1,147,3,147,3615,8,147,1,147,3,147, + 3618,8,147,1,147,3,147,3621,8,147,1,147,3,147,3624,8,147,1,148,1, + 148,1,148,1,148,3,148,3630,8,148,1,149,1,149,3,149,3634,8,149,1, + 149,1,149,1,149,3,149,3639,8,149,1,149,1,149,1,149,1,149,3,149,3645, + 8,149,1,150,1,150,3,150,3649,8,150,1,150,3,150,3652,8,150,1,150, + 3,150,3655,8,150,1,150,3,150,3658,8,150,1,151,1,151,1,152,1,152, + 1,152,1,152,3,152,3666,8,152,1,152,1,152,3,152,3670,8,152,1,153, + 1,153,3,153,3674,8,153,1,153,1,153,3,153,3678,8,153,1,153,1,153, + 3,153,3682,8,153,1,154,1,154,1,154,3,154,3687,8,154,1,154,1,154, + 1,154,1,155,1,155,1,156,1,156,1,156,1,156,1,157,4,157,3699,8,157, + 11,157,12,157,3700,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158, + 3710,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, + 1,158,1,158,1,158,1,158,1,158,1,158,3,158,3727,8,158,1,158,1,158, + 1,158,3,158,3732,8,158,1,158,3,158,3735,8,158,3,158,3737,8,158,1, + 159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,3,160,3747,8,160,1, + 161,1,161,1,161,5,161,3752,8,161,10,161,12,161,3755,9,161,1,162, + 1,162,3,162,3759,8,162,1,162,3,162,3762,8,162,1,162,3,162,3765,8, + 162,1,162,1,162,1,162,1,162,1,162,3,162,3772,8,162,1,162,3,162,3775, + 8,162,3,162,3777,8,162,1,163,1,163,1,164,1,164,3,164,3783,8,164, + 1,165,1,165,1,165,1,166,1,166,1,166,1,166,3,166,3792,8,166,1,167, + 1,167,1,168,1,168,1,169,1,169,1,169,1,169,3,169,3802,8,169,1,169, + 1,169,1,169,3,169,3807,8,169,1,170,1,170,1,170,1,171,1,171,1,171, + 3,171,3815,8,171,1,171,1,171,3,171,3819,8,171,1,171,1,171,1,172, + 5,172,3824,8,172,10,172,12,172,3827,9,172,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,3,173,3836,8,173,1,174,1,174,1,174,1,174,1,174, + 1,174,1,175,5,175,3845,8,175,10,175,12,175,3848,9,175,1,176,1,176, + 1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, @@ -70826,904 +71321,901 @@ export class PostgreSQLParser extends antlr.Parser { 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,4004,8,177, - 1,178,1,178,1,178,1,178,1,178,1,178,3,178,4012,8,178,1,178,3,178, - 4015,8,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,3,179, - 4025,8,179,1,180,4,180,4028,8,180,11,180,12,180,4029,1,181,1,181, - 1,182,1,182,1,182,1,182,1,182,1,182,3,182,4040,8,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,3,182,4051,8,182,1,183, - 1,183,1,183,1,183,1,183,1,184,1,184,1,184,5,184,4061,8,184,10,184, - 12,184,4064,9,184,1,185,1,185,1,185,1,185,1,185,1,186,1,186,1,186, - 5,186,4074,8,186,10,186,12,186,4077,9,186,1,187,1,187,1,187,1,187, - 1,187,1,187,1,187,3,187,4086,8,187,1,188,1,188,1,188,1,189,1,189, - 1,190,1,190,1,191,1,191,1,191,3,191,4098,8,191,1,191,1,191,3,191, - 4102,8,191,1,191,3,191,4105,8,191,1,191,1,191,1,191,1,191,1,191, - 3,191,4112,8,191,1,192,1,192,1,192,1,193,1,193,1,193,3,193,4120, - 8,193,1,194,1,194,1,195,1,195,1,195,1,195,1,195,1,195,3,195,4130, - 8,195,3,195,4132,8,195,1,196,1,196,1,196,1,196,3,196,4138,8,196, - 1,196,1,196,1,196,3,196,4143,8,196,1,196,1,196,3,196,4147,8,196, - 1,196,1,196,1,196,3,196,4152,8,196,1,196,1,196,1,196,1,196,3,196, - 4158,8,196,1,196,1,196,1,196,1,196,1,196,3,196,4165,8,196,1,196, - 1,196,1,196,1,196,3,196,4171,8,196,3,196,4173,8,196,1,197,1,197, - 1,197,1,197,1,197,3,197,4180,8,197,1,197,1,197,1,197,1,197,1,197, - 1,197,3,197,4188,8,197,1,198,1,198,1,198,3,198,4193,8,198,1,199, - 1,199,1,199,1,199,1,199,1,200,1,200,1,200,1,200,3,200,4204,8,200, - 1,200,1,200,1,200,1,200,1,200,3,200,4211,8,200,1,201,1,201,3,201, - 4215,8,201,1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,202, - 1,203,1,203,1,203,1,203,1,203,1,203,3,203,4232,8,203,1,203,3,203, - 4235,8,203,1,203,3,203,4238,8,203,1,203,3,203,4241,8,203,1,203,3, - 203,4244,8,203,1,204,1,204,1,204,1,204,1,204,1,204,3,204,4252,8, - 204,1,204,3,204,4255,8,204,1,204,3,204,4258,8,204,1,205,1,205,1, - 205,1,205,3,205,4264,8,205,1,205,1,205,1,206,1,206,5,206,4270,8, - 206,10,206,12,206,4273,9,206,1,206,3,206,4276,8,206,1,206,1,206, - 1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,3,206,4288,8,206, - 1,206,1,206,1,206,1,206,3,206,4294,8,206,1,207,3,207,4297,8,207, - 1,207,1,207,1,207,3,207,4302,8,207,1,207,1,207,3,207,4306,8,207, - 1,207,1,207,1,207,1,207,1,207,3,207,4313,8,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,3,207,4324,8,207,1,208,1,208, - 1,208,1,208,1,208,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210, - 1,210,1,211,1,211,1,211,1,212,1,212,1,212,1,212,3,212,4347,8,212, - 1,213,1,213,1,213,1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,215, - 1,215,1,215,1,215,1,216,1,216,1,217,1,217,3,217,4367,8,217,1,217, - 1,217,1,217,1,217,1,217,1,217,1,217,3,217,4376,8,217,1,217,3,217, - 4379,8,217,1,217,3,217,4382,8,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,1,217,3,217,4392,8,217,1,217,3,217,4395,8,217,1,217, - 1,217,1,217,1,217,1,217,1,217,1,217,3,217,4404,8,217,1,217,1,217, - 3,217,4408,8,217,1,217,3,217,4411,8,217,1,217,1,217,1,217,1,217, - 1,217,1,217,3,217,4419,8,217,1,218,1,218,1,218,1,218,3,218,4425, - 8,218,1,219,1,219,3,219,4429,8,219,1,219,1,219,1,220,1,220,1,221, - 1,221,1,221,5,221,4438,8,221,10,221,12,221,4441,9,221,1,222,1,222, - 1,222,1,222,1,222,1,222,1,222,3,222,4450,8,222,1,223,1,223,1,223, - 1,224,4,224,4456,8,224,11,224,12,224,4457,1,225,1,225,1,225,3,225, - 4463,8,225,1,225,1,225,1,226,1,226,1,227,1,227,1,228,1,228,1,229, - 1,229,3,229,4475,8,229,1,229,1,229,1,230,1,230,1,231,1,231,1,232, - 1,232,1,232,1,232,1,232,1,233,1,233,1,233,1,233,3,233,4492,8,233, - 1,234,1,234,3,234,4496,8,234,1,234,1,234,5,234,4500,8,234,10,234, - 12,234,4503,9,234,1,235,1,235,1,235,1,235,3,235,4509,8,235,1,236, - 1,236,1,236,1,237,5,237,4515,8,237,10,237,12,237,4518,9,237,1,238, - 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,3,238, - 4531,8,238,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, + 1,177,1,177,1,177,1,177,3,177,3955,8,177,1,178,1,178,1,178,1,178, + 1,178,1,178,3,178,3963,8,178,1,178,3,178,3966,8,178,1,179,1,179, + 1,179,1,179,1,179,1,179,1,179,1,179,3,179,3976,8,179,1,180,4,180, + 3979,8,180,11,180,12,180,3980,1,181,1,181,1,182,1,182,1,182,1,182, + 1,182,1,182,3,182,3991,8,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,3,182,4002,8,182,1,183,1,183,1,183,1,183,1,183, + 1,184,1,184,1,184,5,184,4012,8,184,10,184,12,184,4015,9,184,1,185, + 1,185,1,185,1,185,1,185,1,186,1,186,1,186,5,186,4025,8,186,10,186, + 12,186,4028,9,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,3,187, + 4037,8,187,1,188,1,188,1,188,1,189,1,189,1,190,1,190,1,191,1,191, + 1,191,3,191,4049,8,191,1,191,1,191,3,191,4053,8,191,1,191,3,191, + 4056,8,191,1,191,1,191,1,191,1,191,1,191,3,191,4063,8,191,1,192, + 1,192,1,192,1,193,1,193,1,193,3,193,4071,8,193,1,194,1,194,1,195, + 1,195,1,195,1,195,1,195,1,195,3,195,4081,8,195,3,195,4083,8,195, + 1,196,1,196,1,196,1,196,3,196,4089,8,196,1,196,1,196,1,196,3,196, + 4094,8,196,1,196,1,196,3,196,4098,8,196,1,196,1,196,1,196,3,196, + 4103,8,196,1,196,1,196,1,196,1,196,3,196,4109,8,196,1,196,1,196, + 1,196,1,196,1,196,3,196,4116,8,196,1,196,1,196,1,196,1,196,3,196, + 4122,8,196,3,196,4124,8,196,1,197,1,197,1,197,1,197,1,197,3,197, + 4131,8,197,1,197,1,197,1,197,1,197,1,197,1,197,3,197,4139,8,197, + 1,198,1,198,1,198,3,198,4144,8,198,1,199,1,199,1,199,1,199,1,199, + 1,200,1,200,1,200,1,200,3,200,4155,8,200,1,200,1,200,1,200,1,200, + 1,200,3,200,4162,8,200,1,201,1,201,3,201,4166,8,201,1,202,1,202, + 1,202,1,202,1,202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203, + 1,203,1,203,3,203,4183,8,203,1,203,3,203,4186,8,203,1,203,3,203, + 4189,8,203,1,203,3,203,4192,8,203,1,203,3,203,4195,8,203,1,204,1, + 204,1,204,1,204,1,204,1,204,3,204,4203,8,204,1,204,3,204,4206,8, + 204,1,204,3,204,4209,8,204,1,205,1,205,1,205,1,205,3,205,4215,8, + 205,1,205,1,205,1,206,1,206,5,206,4221,8,206,10,206,12,206,4224, + 9,206,1,206,3,206,4227,8,206,1,206,1,206,1,206,1,206,1,206,1,206, + 1,206,1,206,1,206,1,206,3,206,4239,8,206,1,206,1,206,1,206,1,206, + 3,206,4245,8,206,1,207,3,207,4248,8,207,1,207,1,207,1,207,3,207, + 4253,8,207,1,207,1,207,3,207,4257,8,207,1,207,1,207,1,207,1,207, + 1,207,3,207,4264,8,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, + 1,207,1,207,3,207,4275,8,207,1,208,1,208,1,208,1,208,1,208,1,209, + 1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,211,1,211,1,211, + 1,212,1,212,1,212,1,212,3,212,4298,8,212,1,213,1,213,1,213,1,214, + 1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,216, + 1,216,1,217,1,217,3,217,4318,8,217,1,217,1,217,1,217,1,217,1,217, + 1,217,1,217,3,217,4327,8,217,1,217,3,217,4330,8,217,1,217,3,217, + 4333,8,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,3,217, + 4343,8,217,1,217,3,217,4346,8,217,1,217,1,217,1,217,1,217,1,217, + 1,217,1,217,3,217,4355,8,217,1,217,1,217,3,217,4359,8,217,1,217, + 3,217,4362,8,217,1,217,1,217,1,217,1,217,1,217,1,217,3,217,4370, + 8,217,1,218,1,218,1,218,1,218,3,218,4376,8,218,1,219,1,219,3,219, + 4380,8,219,1,219,1,219,1,220,1,220,1,221,1,221,1,221,5,221,4389, + 8,221,10,221,12,221,4392,9,221,1,222,1,222,1,222,1,222,1,222,1,222, + 1,222,3,222,4401,8,222,1,223,1,223,1,223,1,224,4,224,4407,8,224, + 11,224,12,224,4408,1,225,1,225,1,225,3,225,4414,8,225,1,225,1,225, + 1,226,1,226,1,227,1,227,1,228,1,228,1,229,1,229,3,229,4426,8,229, + 1,229,1,229,1,230,1,230,1,231,1,231,1,232,1,232,1,232,1,232,1,232, + 1,233,1,233,1,233,1,233,3,233,4443,8,233,1,234,1,234,3,234,4447, + 8,234,1,234,1,234,5,234,4451,8,234,10,234,12,234,4454,9,234,1,235, + 1,235,1,235,1,235,3,235,4460,8,235,1,236,1,236,1,236,1,237,5,237, + 4466,8,237,10,237,12,237,4469,9,237,1,238,1,238,1,238,1,238,1,238, + 1,238,1,238,1,238,1,238,1,238,1,238,3,238,4482,8,238,1,239,1,239, 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, - 1,239,1,239,1,239,1,239,3,239,4557,8,239,1,240,1,240,1,240,5,240, - 4562,8,240,10,240,12,240,4565,9,240,1,241,1,241,1,241,1,241,1,241, - 1,241,1,242,1,242,1,242,5,242,4576,8,242,10,242,12,242,4579,9,242, - 1,243,1,243,1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244,1,244, - 1,244,3,244,4593,8,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245, - 1,245,1,245,1,246,1,246,3,246,4606,8,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,3,246,4615,8,246,1,246,1,246,1,246,1,246,1,246, + 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, + 3,239,4508,8,239,1,240,1,240,1,240,5,240,4513,8,240,10,240,12,240, + 4516,9,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242, + 5,242,4527,8,242,10,242,12,242,4530,9,242,1,243,1,243,1,243,1,243, + 1,243,1,243,1,244,1,244,3,244,4540,8,244,1,244,3,244,4543,8,244, + 1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246,1,246, + 3,246,4556,8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246, + 4565,8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,4640,8,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,4651,8,246, + 1,246,1,246,1,246,3,246,4590,8,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,3,246,4601,8,246,1,246,1,246,1,246,1,246, 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,4693,8,246,1,246, - 1,246,1,246,1,246,1,246,1,246,3,246,4701,8,246,1,246,1,246,1,246, - 1,246,3,246,4707,8,246,1,247,1,247,1,247,1,247,1,248,1,248,1,248, - 5,248,4716,8,248,10,248,12,248,4719,9,248,1,249,1,249,1,249,3,249, - 4724,8,249,1,250,1,250,1,250,1,250,1,250,1,250,3,250,4732,8,250, - 1,251,1,251,1,251,1,251,1,252,1,252,1,252,5,252,4741,8,252,10,252, - 12,252,4744,9,252,1,253,1,253,1,253,1,253,1,254,1,254,1,255,1,255, - 1,255,5,255,4755,8,255,10,255,12,255,4758,9,255,1,256,1,256,1,256, - 1,256,1,256,1,256,3,256,4766,8,256,1,256,1,256,1,256,1,256,1,256, - 1,256,1,256,1,256,3,256,4776,8,256,1,256,1,256,1,256,1,256,1,256, - 1,256,1,256,1,256,1,256,1,256,3,256,4788,8,256,1,256,1,256,1,256, - 1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,3,256, - 4803,8,256,1,257,1,257,1,257,1,257,1,258,1,258,1,258,1,258,1,258, - 3,258,4814,8,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,4822, - 8,258,1,258,1,258,1,258,1,259,1,259,1,259,5,259,4830,8,259,10,259, - 12,259,4833,9,259,1,260,1,260,1,260,1,260,3,260,4839,8,260,1,260, - 3,260,4842,8,260,1,260,1,260,1,260,1,260,3,260,4848,8,260,1,260, - 3,260,4851,8,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260, - 1,260,1,260,1,260,1,260,1,260,3,260,4866,8,260,1,261,1,261,1,262, - 1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,263,3,263,4879,8,263, - 1,264,1,264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,1,266,1,266, + 1,246,1,246,1,246,3,246,4643,8,246,1,246,1,246,1,246,1,246,1,246, + 1,246,3,246,4651,8,246,1,246,1,246,1,246,1,246,3,246,4657,8,246, + 1,247,1,247,1,247,1,247,1,248,1,248,1,248,5,248,4666,8,248,10,248, + 12,248,4669,9,248,1,249,1,249,1,249,3,249,4674,8,249,1,250,1,250, + 1,250,1,250,1,250,1,250,3,250,4682,8,250,1,251,1,251,1,251,1,251, + 1,252,1,252,1,252,5,252,4691,8,252,10,252,12,252,4694,9,252,1,253, + 1,253,1,253,1,253,1,254,1,254,1,255,1,255,1,255,5,255,4705,8,255, + 10,255,12,255,4708,9,255,1,256,1,256,1,256,1,256,1,256,1,256,3,256, + 4716,8,256,1,256,1,256,1,256,3,256,4721,8,256,1,256,1,256,1,256, + 1,256,1,256,1,256,1,256,1,256,1,256,3,256,4732,8,256,1,257,1,257, + 1,257,1,257,1,258,1,258,1,258,1,258,1,258,3,258,4743,8,258,1,258, + 1,258,1,258,1,258,1,258,1,258,3,258,4751,8,258,1,258,1,258,1,258, + 1,259,1,259,1,259,5,259,4759,8,259,10,259,12,259,4762,9,259,1,260, + 1,260,1,260,1,260,3,260,4768,8,260,1,260,3,260,4771,8,260,1,260, + 1,260,1,260,1,260,3,260,4777,8,260,1,260,3,260,4780,8,260,1,260, + 1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260, + 1,260,3,260,4795,8,260,1,261,1,261,1,262,1,262,1,262,1,263,1,263, + 1,263,1,263,1,263,1,263,3,263,4808,8,263,1,264,1,264,1,265,1,265, + 1,265,1,265,1,265,1,265,1,265,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,3,266,4908,8,266,1,267,1,267,1,267, - 5,267,4913,8,267,10,267,12,267,4916,9,267,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,3,268,4930,8,268, - 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,270,1,270,1,270,3,270, - 4942,8,270,1,270,1,270,3,270,4946,8,270,1,270,1,270,1,270,3,270, - 4951,8,270,1,270,1,270,3,270,4955,8,270,1,270,1,270,1,270,3,270, - 4960,8,270,1,270,1,270,3,270,4964,8,270,1,270,1,270,1,270,1,270, - 3,270,4970,8,270,1,270,1,270,3,270,4974,8,270,1,270,1,270,1,270, - 3,270,4979,8,270,1,270,1,270,3,270,4983,8,270,1,270,1,270,1,270, - 1,270,3,270,4989,8,270,1,270,1,270,3,270,4993,8,270,1,270,1,270, - 1,270,3,270,4998,8,270,1,270,1,270,3,270,5002,8,270,1,270,1,270, - 1,270,3,270,5007,8,270,1,270,1,270,3,270,5011,8,270,1,270,1,270, - 1,270,3,270,5016,8,270,1,270,1,270,3,270,5020,8,270,1,270,1,270, - 1,270,1,270,1,270,3,270,5027,8,270,1,270,1,270,3,270,5031,8,270, - 1,270,1,270,1,270,1,270,1,270,3,270,5038,8,270,1,270,1,270,3,270, - 5042,8,270,1,270,1,270,1,270,1,270,1,270,3,270,5049,8,270,1,270, - 1,270,3,270,5053,8,270,1,270,1,270,1,270,1,270,1,270,3,270,5060, - 8,270,1,270,1,270,3,270,5064,8,270,1,270,1,270,1,270,1,270,3,270, - 5070,8,270,1,270,1,270,3,270,5074,8,270,1,270,1,270,1,270,1,270, - 3,270,5080,8,270,1,270,1,270,3,270,5084,8,270,1,270,1,270,1,270, - 3,270,5089,8,270,1,270,1,270,3,270,5093,8,270,1,270,1,270,1,270, - 1,270,1,270,3,270,5100,8,270,1,270,1,270,3,270,5104,8,270,1,270, - 1,270,3,270,5108,8,270,1,270,1,270,3,270,5112,8,270,1,270,1,270, - 3,270,5116,8,270,1,270,1,270,1,270,3,270,5121,8,270,1,270,1,270, - 3,270,5125,8,270,1,270,1,270,1,270,3,270,5130,8,270,1,270,1,270, - 3,270,5134,8,270,1,270,1,270,1,270,3,270,5139,8,270,1,270,1,270, - 3,270,5143,8,270,1,270,1,270,1,270,3,270,5148,8,270,1,270,1,270, - 1,270,1,270,3,270,5154,8,270,1,270,1,270,1,270,3,270,5159,8,270, - 1,270,1,270,1,270,1,270,3,270,5165,8,270,1,270,1,270,1,270,3,270, - 5170,8,270,1,270,1,270,1,270,1,270,3,270,5176,8,270,1,270,1,270, - 1,270,3,270,5181,8,270,1,270,1,270,3,270,5185,8,270,1,270,1,270, - 1,270,3,270,5190,8,270,1,270,1,270,3,270,5194,8,270,1,270,1,270, - 1,270,1,270,3,270,5200,8,270,1,270,1,270,3,270,5204,8,270,1,270, - 1,270,1,270,3,270,5209,8,270,1,270,1,270,1,270,1,270,1,270,1,270, - 3,270,5217,8,270,1,270,1,270,1,270,1,270,3,270,5223,8,270,1,270, - 1,270,1,270,1,270,3,270,5229,8,270,1,270,1,270,1,270,1,270,3,270, - 5235,8,270,1,270,1,270,1,270,1,270,3,270,5241,8,270,1,270,1,270, - 1,270,1,270,1,270,3,270,5248,8,270,1,270,1,270,1,270,3,270,5253, - 8,270,1,270,1,270,3,270,5257,8,270,1,270,1,270,1,270,3,270,5262, - 8,270,1,270,1,270,3,270,5266,8,270,1,270,1,270,1,270,3,270,5271, - 8,270,1,270,1,270,1,270,1,270,3,270,5277,8,270,1,270,1,270,1,270, - 1,270,1,270,3,270,5284,8,270,1,270,1,270,1,270,3,270,5289,8,270, - 1,270,1,270,1,270,1,270,1,270,3,270,5296,8,270,1,270,1,270,1,270, - 1,270,1,270,1,270,1,270,1,270,3,270,5306,8,270,1,270,1,270,3,270, - 5310,8,270,1,270,1,270,1,270,1,270,3,270,5316,8,270,3,270,5318,8, - 270,1,271,1,271,1,271,5,271,5323,8,271,10,271,12,271,5326,9,271, + 1,266,3,266,4837,8,266,1,267,1,267,1,267,5,267,4842,8,267,10,267, + 12,267,4845,9,267,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, + 1,268,1,268,1,268,1,268,3,268,4859,8,268,1,269,1,269,1,269,1,269, + 1,269,1,269,1,269,1,270,1,270,1,270,3,270,4871,8,270,1,270,1,270, + 3,270,4875,8,270,1,270,1,270,1,270,3,270,4880,8,270,1,270,1,270, + 3,270,4884,8,270,1,270,1,270,1,270,3,270,4889,8,270,1,270,1,270, + 3,270,4893,8,270,1,270,1,270,1,270,1,270,3,270,4899,8,270,1,270, + 1,270,3,270,4903,8,270,1,270,1,270,1,270,3,270,4908,8,270,1,270, + 1,270,3,270,4912,8,270,1,270,1,270,1,270,1,270,3,270,4918,8,270, + 1,270,1,270,3,270,4922,8,270,1,270,1,270,1,270,3,270,4927,8,270, + 1,270,1,270,3,270,4931,8,270,1,270,1,270,1,270,3,270,4936,8,270, + 1,270,1,270,3,270,4940,8,270,1,270,1,270,1,270,3,270,4945,8,270, + 1,270,1,270,3,270,4949,8,270,1,270,1,270,1,270,1,270,1,270,3,270, + 4956,8,270,1,270,1,270,3,270,4960,8,270,1,270,1,270,1,270,1,270, + 1,270,3,270,4967,8,270,1,270,1,270,3,270,4971,8,270,1,270,1,270, + 1,270,1,270,1,270,3,270,4978,8,270,1,270,1,270,3,270,4982,8,270, + 1,270,1,270,1,270,1,270,1,270,3,270,4989,8,270,1,270,1,270,3,270, + 4993,8,270,1,270,1,270,1,270,1,270,3,270,4999,8,270,1,270,1,270, + 3,270,5003,8,270,1,270,1,270,1,270,1,270,3,270,5009,8,270,1,270, + 1,270,3,270,5013,8,270,1,270,1,270,1,270,3,270,5018,8,270,1,270, + 1,270,3,270,5022,8,270,1,270,1,270,1,270,1,270,1,270,3,270,5029, + 8,270,1,270,1,270,3,270,5033,8,270,1,270,1,270,3,270,5037,8,270, + 1,270,1,270,3,270,5041,8,270,1,270,1,270,3,270,5045,8,270,1,270, + 1,270,1,270,3,270,5050,8,270,1,270,1,270,3,270,5054,8,270,1,270, + 1,270,1,270,3,270,5059,8,270,1,270,1,270,3,270,5063,8,270,1,270, + 1,270,1,270,3,270,5068,8,270,1,270,1,270,3,270,5072,8,270,1,270, + 1,270,1,270,3,270,5077,8,270,1,270,1,270,1,270,1,270,3,270,5083, + 8,270,1,270,1,270,1,270,3,270,5088,8,270,1,270,1,270,1,270,1,270, + 3,270,5094,8,270,1,270,1,270,1,270,3,270,5099,8,270,1,270,1,270, + 1,270,1,270,3,270,5105,8,270,1,270,1,270,1,270,3,270,5110,8,270, + 1,270,1,270,3,270,5114,8,270,1,270,1,270,1,270,3,270,5119,8,270, + 1,270,1,270,3,270,5123,8,270,1,270,1,270,1,270,1,270,3,270,5129, + 8,270,1,270,1,270,3,270,5133,8,270,1,270,1,270,1,270,3,270,5138, + 8,270,1,270,1,270,1,270,1,270,1,270,1,270,3,270,5146,8,270,1,270, + 1,270,1,270,1,270,3,270,5152,8,270,1,270,1,270,1,270,1,270,3,270, + 5158,8,270,1,270,1,270,1,270,1,270,3,270,5164,8,270,1,270,1,270, + 1,270,1,270,3,270,5170,8,270,1,270,1,270,1,270,1,270,1,270,3,270, + 5177,8,270,1,270,1,270,1,270,3,270,5182,8,270,1,270,1,270,3,270, + 5186,8,270,1,270,1,270,1,270,3,270,5191,8,270,1,270,1,270,3,270, + 5195,8,270,1,270,1,270,1,270,3,270,5200,8,270,1,270,1,270,1,270, + 1,270,3,270,5206,8,270,1,270,1,270,1,270,1,270,1,270,3,270,5213, + 8,270,1,270,1,270,1,270,3,270,5218,8,270,1,270,1,270,1,270,1,270, + 1,270,3,270,5225,8,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270, + 1,270,3,270,5235,8,270,1,270,1,270,3,270,5239,8,270,1,270,1,270, + 1,270,1,270,3,270,5245,8,270,3,270,5247,8,270,1,271,1,271,1,271, + 5,271,5252,8,271,10,271,12,271,5255,9,271,1,272,3,272,5258,8,272, + 1,272,1,272,1,272,3,272,5263,8,272,1,272,1,272,1,272,1,272,1,272, 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272, - 1,272,1,272,1,272,3,272,5364,8,272,1,273,1,273,1,273,1,273,1,273, - 1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,3,273,5379,8,273, + 3,272,5281,8,272,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273, + 1,273,1,273,1,273,1,273,1,273,3,273,5296,8,273,1,273,1,273,1,273, 1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,273, - 1,273,1,273,1,273,1,273,1,273,3,273,5397,8,273,1,274,1,274,1,275, - 1,275,1,275,5,275,5404,8,275,10,275,12,275,5407,9,275,1,276,1,276, - 1,276,1,276,1,277,1,277,1,277,1,277,1,278,1,278,3,278,5419,8,278, - 1,279,1,279,3,279,5423,8,279,1,280,1,280,4,280,5427,8,280,11,280, - 12,280,5428,1,281,1,281,1,281,5,281,5434,8,281,10,281,12,281,5437, - 9,281,1,282,1,282,3,282,5441,8,282,1,282,1,282,3,282,5445,8,282, - 1,282,3,282,5448,8,282,1,283,1,283,1,283,1,283,3,283,5454,8,283, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,3,284,5525,8,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 1,284,3,284,5621,8,284,1,285,1,285,3,285,5625,8,285,1,286,1,286, - 1,286,3,286,5630,8,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, - 1,286,3,286,5640,8,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, - 1,286,1,286,3,286,5651,8,286,1,286,1,286,1,286,1,286,1,286,1,286, - 1,286,1,286,3,286,5661,8,286,1,286,1,286,1,286,1,286,1,286,1,286, - 1,286,1,286,1,286,3,286,5672,8,286,1,286,1,286,1,286,1,286,1,286, - 1,286,1,286,1,286,1,286,3,286,5683,8,286,1,286,1,286,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,3,286,5694,8,286,1,286,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,3,286,5705,8,286,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,5717,8,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,5728, - 8,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,5736,8,286,1,287, - 1,287,1,287,1,288,1,288,3,288,5743,8,288,1,289,1,289,1,289,1,289, - 3,289,5749,8,289,1,290,1,290,1,290,1,290,1,290,1,290,3,290,5757, - 8,290,1,290,1,290,1,290,3,290,5762,8,290,1,290,1,290,1,290,3,290, - 5767,8,290,1,290,1,290,1,290,3,290,5772,8,290,1,290,1,290,1,290, - 1,290,3,290,5778,8,290,1,290,1,290,1,290,1,290,1,290,3,290,5785, - 8,290,1,290,1,290,1,290,1,290,3,290,5791,8,290,1,290,1,290,1,290, - 1,290,3,290,5797,8,290,1,290,1,290,1,290,3,290,5802,8,290,1,290, - 1,290,1,290,1,290,3,290,5808,8,290,1,290,1,290,1,290,1,290,1,290, - 3,290,5815,8,290,1,290,1,290,1,290,3,290,5820,8,290,1,290,1,290, - 1,290,1,290,3,290,5826,8,290,1,290,1,290,1,290,1,290,1,290,3,290, - 5833,8,290,1,290,3,290,5836,8,290,1,291,1,291,1,292,1,292,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,3,293,5849,8,293,1,294,1,294, - 1,294,1,294,1,294,1,294,1,294,3,294,5858,8,294,1,294,1,294,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,3,294,5870,8,294,3,294, - 5872,8,294,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295, - 1,295,1,295,1,295,1,295,1,295,1,295,1,295,3,295,5890,8,295,1,296, - 1,296,1,296,5,296,5895,8,296,10,296,12,296,5898,9,296,1,297,1,297, - 1,298,1,298,1,298,5,298,5905,8,298,10,298,12,298,5908,9,298,1,299, - 1,299,3,299,5912,8,299,1,299,1,299,3,299,5916,8,299,1,299,1,299, - 3,299,5920,8,299,1,299,1,299,3,299,5924,8,299,3,299,5926,8,299,1, - 300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, - 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, - 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, - 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, - 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, - 1,300,1,300,1,300,3,300,5986,8,300,1,301,1,301,1,301,5,301,5991, - 8,301,10,301,12,301,5994,9,301,1,302,1,302,1,302,3,302,5999,8,302, - 1,303,1,303,1,303,1,303,1,304,1,304,1,304,1,304,1,304,3,304,6010, - 8,304,1,304,3,304,6013,8,304,1,305,1,305,1,305,1,305,1,305,3,305, - 6020,8,305,1,305,3,305,6023,8,305,1,305,1,305,1,305,1,305,1,305, - 1,305,1,305,1,305,3,305,6033,8,305,1,305,3,305,6036,8,305,3,305, - 6038,8,305,1,306,1,306,1,306,1,306,1,307,1,307,1,307,1,307,1,308, - 1,308,1,308,1,308,1,308,1,308,1,309,5,309,6055,8,309,10,309,12,309, - 6058,9,309,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310, - 3,310,6069,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,3,311, - 6078,8,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,3,311,6087, - 8,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, - 3,311,6099,8,311,3,311,6101,8,311,1,312,1,312,1,313,1,313,3,313, - 6107,8,313,1,313,1,313,3,313,6111,8,313,1,313,3,313,6114,8,313,1, - 313,3,313,6117,8,313,1,313,1,313,1,313,3,313,6122,8,313,1,313,1, - 313,1,313,1,313,3,313,6128,8,313,1,313,3,313,6131,8,313,1,313,3, - 313,6134,8,313,1,313,3,313,6137,8,313,1,313,3,313,6140,8,313,1,314, - 1,314,1,315,1,315,1,316,1,316,1,317,1,317,1,317,1,318,1,318,1,318, - 5,318,6154,8,318,10,318,12,318,6157,9,318,1,319,3,319,6160,8,319, - 1,319,3,319,6163,8,319,1,319,3,319,6166,8,319,1,319,3,319,6169,8, - 319,1,319,3,319,6172,8,319,1,319,1,319,1,319,3,319,6177,8,319,1, - 319,3,319,6180,8,319,3,319,6182,8,319,1,320,1,320,1,320,1,320,1, - 320,1,320,1,320,1,320,1,320,1,320,1,320,3,320,6195,8,320,1,321,1, - 321,1,321,1,321,1,321,1,322,1,322,1,322,5,322,6205,8,322,10,322, - 12,322,6208,9,322,1,323,1,323,1,323,1,324,1,324,1,325,1,325,1,326, - 1,326,1,326,1,326,3,326,6221,8,326,1,327,1,327,3,327,6225,8,327, - 1,327,1,327,1,327,1,327,3,327,6231,8,327,1,327,1,327,1,327,1,327, - 1,327,1,327,1,327,1,327,3,327,6241,8,327,3,327,6243,8,327,1,327, - 1,327,1,327,3,327,6248,8,327,1,328,1,328,1,328,1,328,5,328,6254, - 8,328,10,328,12,328,6257,9,328,1,328,1,328,1,329,1,329,1,329,1,330, - 1,330,3,330,6266,8,330,1,330,1,330,1,331,1,331,1,331,5,331,6273, - 8,331,10,331,12,331,6276,9,331,1,332,1,332,1,332,5,332,6281,8,332, - 10,332,12,332,6284,9,332,1,333,1,333,1,333,1,333,1,333,1,333,3,333, - 6292,8,333,3,333,6294,8,333,1,334,1,334,1,334,5,334,6299,8,334,10, - 334,12,334,6302,9,334,1,335,1,335,1,335,1,335,1,335,1,335,3,335, - 6310,8,335,3,335,6312,8,335,1,336,1,336,1,336,5,336,6317,8,336,10, - 336,12,336,6320,9,336,1,337,1,337,1,337,1,337,1,337,1,337,3,337, - 6328,8,337,3,337,6330,8,337,1,338,1,338,3,338,6334,8,338,1,338,1, - 338,1,339,1,339,1,339,5,339,6341,8,339,10,339,12,339,6344,9,339, - 1,340,1,340,3,340,6348,8,340,1,340,1,340,1,340,1,340,3,340,6354, - 8,340,1,340,1,340,1,340,3,340,6359,8,340,1,341,1,341,3,341,6363, - 8,341,1,341,1,341,1,341,3,341,6368,8,341,1,342,1,342,1,343,1,343, - 1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344, - 1,344,3,344,6386,8,344,1,345,1,345,1,345,3,345,6391,8,345,1,346, - 1,346,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347, - 1,347,3,347,6406,8,347,1,347,1,347,1,348,1,348,1,348,5,348,6413, - 8,348,10,348,12,348,6416,9,348,1,349,1,349,1,349,1,350,1,350,1,350, - 5,350,6424,8,350,10,350,12,350,6427,9,350,1,351,4,351,6430,8,351, - 11,351,12,351,6431,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, - 1,352,1,352,1,352,1,352,1,352,3,352,6469,8,352,1,353,1,353,1,353, - 1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353, - 1,353,1,353,1,353,1,353,3,353,6489,8,353,1,353,1,353,1,353,1,353, - 1,353,3,353,6496,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354, - 5,354,6505,8,354,10,354,12,354,6508,9,354,1,355,1,355,1,355,1,356, - 1,356,1,356,1,357,1,357,1,357,5,357,6519,8,357,10,357,12,357,6522, - 9,357,1,358,1,358,1,358,1,358,3,358,6528,8,358,1,359,1,359,1,359, - 1,359,1,359,1,359,3,359,6536,8,359,1,360,4,360,6539,8,360,11,360, - 12,360,6540,1,361,1,361,1,362,1,362,1,362,3,362,6548,8,362,1,362, - 1,362,3,362,6552,8,362,1,362,1,362,1,362,3,362,6557,8,362,1,362, - 1,362,3,362,6561,8,362,1,362,1,362,1,362,3,362,6566,8,362,1,362, - 1,362,3,362,6570,8,362,3,362,6572,8,362,1,363,1,363,1,363,3,363, - 6577,8,363,1,363,1,363,3,363,6581,8,363,1,364,1,364,1,364,3,364, - 6586,8,364,1,364,1,364,3,364,6590,8,364,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,365,3,365,6614,8,365,1,366, - 1,366,1,366,5,366,6619,8,366,10,366,12,366,6622,9,366,1,366,1,366, - 1,367,1,367,1,367,5,367,6629,8,367,10,367,12,367,6632,9,367,1,368, - 1,368,1,368,1,369,1,369,1,369,1,370,4,370,6641,8,370,11,370,12,370, - 6642,1,371,1,371,1,371,3,371,6648,8,371,1,372,1,372,1,372,1,372, - 1,372,1,372,1,372,1,372,1,372,1,372,1,372,3,372,6661,8,372,1,372, - 1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,3,372,6673, - 8,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372, - 3,372,6685,8,372,3,372,6687,8,372,1,373,1,373,1,373,1,373,3,373, - 6693,8,373,1,374,1,374,1,374,1,375,1,375,3,375,6700,8,375,1,375, - 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,376,1,376,1,376, + 1,273,1,273,3,273,5314,8,273,1,274,1,274,1,275,1,275,1,275,5,275, + 5321,8,275,10,275,12,275,5324,9,275,1,276,1,276,1,276,1,276,1,277, + 1,277,3,277,5332,8,277,1,278,1,278,3,278,5336,8,278,1,279,1,279, + 4,279,5340,8,279,11,279,12,279,5341,1,280,1,280,1,280,5,280,5347, + 8,280,10,280,12,280,5350,9,280,1,281,1,281,3,281,5354,8,281,1,281, + 1,281,1,281,5,281,5359,8,281,10,281,12,281,5362,9,281,1,281,1,281, + 3,281,5366,8,281,1,281,3,281,5369,8,281,1,282,3,282,5372,8,282,1, + 282,1,282,3,282,5376,8,282,1,283,1,283,1,283,1,283,1,283,1,283,1, + 283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,5447,8,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,3,283,5543,8,283,1,284,1,284, + 3,284,5547,8,284,1,285,1,285,1,285,3,285,5552,8,285,1,285,1,285, + 1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285,5563,8,285,1,285, + 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285,5574,8,285, + 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285,5585, + 8,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,3,285, + 5596,8,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, + 3,285,5607,8,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, + 1,285,1,285,3,285,5619,8,285,1,285,1,285,1,285,1,285,1,285,1,285, + 1,285,1,285,1,285,3,285,5630,8,285,1,285,1,285,1,285,1,285,1,285, + 1,285,1,285,1,285,1,285,3,285,5641,8,285,1,285,1,285,1,285,1,285, + 1,285,1,285,1,285,1,285,3,285,5651,8,285,1,285,1,285,1,285,1,285, + 1,285,3,285,5658,8,285,1,286,1,286,1,286,1,287,1,287,3,287,5665, + 8,287,1,288,1,288,1,288,1,288,3,288,5671,8,288,1,289,1,289,1,289, + 1,289,1,289,1,289,3,289,5679,8,289,1,289,1,289,1,289,3,289,5684, + 8,289,1,289,1,289,1,289,3,289,5689,8,289,1,289,1,289,1,289,3,289, + 5694,8,289,1,289,1,289,1,289,1,289,3,289,5700,8,289,1,289,1,289, + 1,289,1,289,1,289,3,289,5707,8,289,1,289,1,289,1,289,1,289,3,289, + 5713,8,289,1,289,1,289,1,289,1,289,3,289,5719,8,289,1,289,1,289, + 1,289,3,289,5724,8,289,1,289,1,289,1,289,1,289,3,289,5730,8,289, + 1,289,1,289,1,289,1,289,1,289,3,289,5737,8,289,1,289,1,289,1,289, + 3,289,5742,8,289,1,289,1,289,1,289,1,289,3,289,5748,8,289,1,289, + 1,289,1,289,1,289,1,289,3,289,5755,8,289,1,289,3,289,5758,8,289, + 1,290,1,290,1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292, + 3,292,5771,8,292,1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293, + 5780,8,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, + 1,293,3,293,5792,8,293,3,293,5794,8,293,1,294,1,294,1,294,1,294, + 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, + 1,294,3,294,5812,8,294,1,295,1,295,1,295,5,295,5817,8,295,10,295, + 12,295,5820,9,295,1,296,1,296,1,297,1,297,1,297,5,297,5827,8,297, + 10,297,12,297,5830,9,297,1,298,1,298,3,298,5834,8,298,1,298,1,298, + 3,298,5838,8,298,1,298,1,298,3,298,5842,8,298,1,298,1,298,3,298, + 5846,8,298,3,298,5848,8,298,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,3,299,5908,8,299, + 1,300,1,300,1,300,5,300,5913,8,300,10,300,12,300,5916,9,300,1,301, + 1,301,1,301,3,301,5921,8,301,1,302,1,302,1,302,1,302,1,303,1,303, + 1,303,1,303,1,303,3,303,5932,8,303,1,303,3,303,5935,8,303,1,304, + 1,304,1,304,1,304,1,304,3,304,5942,8,304,1,304,3,304,5945,8,304, + 1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,3,304,5955,8,304, + 1,304,3,304,5958,8,304,3,304,5960,8,304,1,305,1,305,1,305,1,305, + 1,306,1,306,1,306,1,306,1,307,1,307,1,307,1,307,1,307,1,307,1,308, + 5,308,5977,8,308,10,308,12,308,5980,9,308,1,309,1,309,1,309,1,309, + 1,309,1,309,1,309,1,309,1,309,3,309,5991,8,309,1,310,1,310,1,310, + 1,310,1,310,1,310,1,310,3,310,6000,8,310,1,310,1,310,1,310,1,310, + 1,310,1,310,1,310,3,310,6009,8,310,1,310,1,310,1,310,1,310,1,310, + 1,310,1,310,1,310,1,310,1,310,3,310,6021,8,310,3,310,6023,8,310, + 1,311,1,311,1,312,1,312,3,312,6029,8,312,1,312,1,312,3,312,6033, + 8,312,1,312,3,312,6036,8,312,1,312,3,312,6039,8,312,1,312,1,312, + 1,312,3,312,6044,8,312,1,312,1,312,1,312,1,312,3,312,6050,8,312, + 1,312,3,312,6053,8,312,1,312,3,312,6056,8,312,1,312,3,312,6059,8, + 312,1,312,3,312,6062,8,312,1,313,1,313,1,314,1,314,1,315,1,315,1, + 316,1,316,1,316,1,317,1,317,1,317,5,317,6076,8,317,10,317,12,317, + 6079,9,317,1,318,3,318,6082,8,318,1,318,3,318,6085,8,318,1,318,3, + 318,6088,8,318,1,318,3,318,6091,8,318,1,318,3,318,6094,8,318,1,318, + 1,318,1,318,3,318,6099,8,318,1,318,3,318,6102,8,318,3,318,6104,8, + 318,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319, + 1,319,3,319,6117,8,319,1,320,1,320,1,320,1,320,1,320,1,321,1,321, + 1,321,5,321,6127,8,321,10,321,12,321,6130,9,321,1,322,1,322,1,322, + 1,323,1,323,1,324,1,324,1,325,1,325,1,325,1,325,3,325,6143,8,325, + 1,326,1,326,3,326,6147,8,326,1,326,1,326,1,326,1,326,3,326,6153, + 8,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,3,326,6163, + 8,326,3,326,6165,8,326,1,326,1,326,1,326,3,326,6170,8,326,1,327, + 1,327,1,327,1,327,5,327,6176,8,327,10,327,12,327,6179,9,327,1,327, + 1,327,1,328,1,328,1,328,1,329,1,329,3,329,6188,8,329,1,329,1,329, + 1,330,1,330,1,330,5,330,6195,8,330,10,330,12,330,6198,9,330,1,331, + 1,331,1,331,5,331,6203,8,331,10,331,12,331,6206,9,331,1,332,1,332, + 1,332,1,332,1,332,1,332,3,332,6214,8,332,3,332,6216,8,332,1,333, + 1,333,1,333,5,333,6221,8,333,10,333,12,333,6224,9,333,1,334,1,334, + 1,334,1,334,1,334,1,334,3,334,6232,8,334,3,334,6234,8,334,1,335, + 1,335,1,335,5,335,6239,8,335,10,335,12,335,6242,9,335,1,336,1,336, + 1,336,1,336,1,336,1,336,3,336,6250,8,336,3,336,6252,8,336,1,337, + 1,337,3,337,6256,8,337,1,337,1,337,1,338,1,338,1,338,5,338,6263, + 8,338,10,338,12,338,6266,9,338,1,339,1,339,3,339,6270,8,339,1,339, + 1,339,1,339,1,339,3,339,6276,8,339,1,339,1,339,1,339,3,339,6281, + 8,339,1,340,1,340,3,340,6285,8,340,1,340,1,340,1,340,3,340,6290, + 8,340,1,341,1,341,1,342,1,342,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,3,343,6308,8,343,1,344,1,344, + 1,344,3,344,6313,8,344,1,345,1,345,1,346,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,1,346,3,346,6328,8,346,1,346,1,346, + 1,347,1,347,1,347,5,347,6335,8,347,10,347,12,347,6338,9,347,1,348, + 1,348,1,348,1,349,1,349,1,349,5,349,6346,8,349,10,349,12,349,6349, + 9,349,1,350,4,350,6352,8,350,11,350,12,350,6353,1,351,1,351,1,351, + 1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, + 1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, + 1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,3,351, + 6391,8,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352, + 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,3,352,6411, + 8,352,1,352,1,352,1,352,1,352,1,352,3,352,6418,8,352,1,353,1,353, + 1,353,1,353,1,353,1,353,1,353,5,353,6427,8,353,10,353,12,353,6430, + 9,353,1,354,1,354,1,354,1,355,1,355,1,355,1,356,1,356,1,356,5,356, + 6441,8,356,10,356,12,356,6444,9,356,1,357,1,357,1,357,1,357,3,357, + 6450,8,357,1,358,1,358,1,358,1,358,1,358,1,358,3,358,6458,8,358, + 1,359,4,359,6461,8,359,11,359,12,359,6462,1,360,1,360,1,361,1,361, + 1,361,3,361,6470,8,361,1,361,1,361,3,361,6474,8,361,1,361,1,361, + 1,361,3,361,6479,8,361,1,361,1,361,3,361,6483,8,361,1,361,1,361, + 1,361,3,361,6488,8,361,1,361,1,361,3,361,6492,8,361,3,361,6494,8, + 361,1,362,1,362,1,362,3,362,6499,8,362,1,362,1,362,3,362,6503,8, + 362,1,363,1,363,1,363,3,363,6508,8,363,1,363,1,363,3,363,6512,8, + 363,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364, + 1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364, + 1,364,3,364,6536,8,364,1,365,1,365,1,365,5,365,6541,8,365,10,365, + 12,365,6544,9,365,1,365,1,365,1,366,1,366,1,366,5,366,6551,8,366, + 10,366,12,366,6554,9,366,1,367,1,367,1,367,1,368,1,368,1,368,1,369, + 4,369,6563,8,369,11,369,12,369,6564,1,370,1,370,1,370,3,370,6570, + 8,370,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, + 1,371,3,371,6583,8,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, + 1,371,1,371,1,371,3,371,6595,8,371,1,371,1,371,1,371,1,371,1,371, + 1,371,1,371,1,371,1,371,1,371,3,371,6607,8,371,3,371,6609,8,371, + 1,372,1,372,1,372,1,372,3,372,6615,8,372,1,373,1,373,1,373,1,374, + 1,374,3,374,6622,8,374,1,374,1,374,1,374,1,374,1,374,1,374,1,374, + 1,374,1,374,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, + 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, + 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, + 1,375,1,375,1,375,3,375,6667,8,375,1,376,1,376,1,376,1,376,1,376, 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376, - 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376, - 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,3,376,6745, - 8,376,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377, - 1,377,1,377,1,377,1,377,1,377,1,377,3,377,6763,8,377,1,378,1,378, - 3,378,6767,8,378,1,378,1,378,1,378,3,378,6772,8,378,1,378,3,378, - 6775,8,378,1,379,1,379,3,379,6779,8,379,1,379,1,379,1,379,3,379, - 6784,8,379,1,379,1,379,1,379,3,379,6789,8,379,1,379,3,379,6792,8, - 379,1,380,1,380,1,380,5,380,6797,8,380,10,380,12,380,6800,9,380, - 1,381,1,381,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,3,382,6816,8,382,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,6887, - 8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,6918,8,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,6972,8,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,6982,8,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,6992,8,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7003, - 8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7013, - 8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383, - 7024,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383, - 7034,8,383,1,383,1,383,1,383,3,383,7039,8,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,3,383,7048,8,383,1,383,1,383,1,383,3,383, - 7053,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383, - 7063,8,383,1,383,1,383,1,383,3,383,7068,8,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,3,383,7077,8,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7090,8,383,1,383, - 1,383,1,383,3,383,7095,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,383,3,383,7207,8,383,3,383,7209,8,383, - 1,384,1,384,1,385,1,385,1,385,1,386,1,386,1,386,1,386,3,386,7220, - 8,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386, - 7231,8,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 3,386,7242,8,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,3,386,7255,8,386,1,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,3,386,7267,8,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,3,386,7278,8,386,1,386,1,386, - 1,386,1,386,1,386,3,386,7285,8,386,1,387,1,387,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,3,388,7375,8,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,3,388,7428,8,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,3,388,7438,8,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,3,388,7449,8,388,1,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388,7460,8,388,1,388, - 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 3,388,7474,8,388,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389, - 1,390,1,390,1,390,5,390,7487,8,390,10,390,12,390,7490,9,390,1,391, - 1,391,1,391,1,391,1,391,1,391,1,391,1,391,3,391,7500,8,391,1,392, - 1,392,1,392,1,392,1,392,3,392,7507,8,392,1,393,1,393,1,393,1,393, - 1,393,1,393,1,393,1,393,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,3,394,7561,8,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,3,394,7702,8,394,1,395,1,395,1,395,1,395,3,395, - 7708,8,395,1,395,3,395,7711,8,395,1,396,1,396,1,397,1,397,1,397, - 1,397,1,397,1,397,3,397,7721,8,397,1,398,1,398,1,398,1,398,1,398, - 1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, - 1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, - 1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, - 3,398,7761,8,398,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399, - 3,399,7771,8,399,1,400,1,400,1,400,5,400,7776,8,400,10,400,12,400, - 7779,9,400,1,401,1,401,1,402,1,402,1,402,1,402,1,402,1,402,1,402, - 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, - 3,402,7801,8,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,3,402, - 7810,8,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,3,402,7819, - 8,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,3,402,7828,8,402, - 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, - 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, - 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,3,402,7861, - 8,402,1,403,1,403,3,403,7865,8,403,1,403,1,403,1,403,1,403,1,403, - 1,403,1,403,1,403,3,403,7875,8,403,1,403,1,403,3,403,7879,8,403, - 1,403,1,403,1,404,1,404,1,404,1,404,1,404,1,404,3,404,7889,8,404, - 1,405,3,405,7892,8,405,1,405,1,405,3,405,7896,8,405,5,405,7898,8, - 405,10,405,12,405,7901,9,405,1,406,1,406,1,406,1,406,1,406,3,406, - 7908,8,406,1,407,1,407,1,408,1,408,1,409,1,409,1,410,1,410,1,410, - 3,410,7919,8,410,1,411,1,411,1,411,1,412,1,412,1,412,1,413,1,413, - 1,413,1,413,3,413,7931,8,413,1,414,1,414,3,414,7935,8,414,1,414, - 3,414,7938,8,414,1,414,1,414,3,414,7942,8,414,1,414,3,414,7945,8, - 414,1,414,1,414,1,414,3,414,7950,8,414,1,414,1,414,3,414,7954,8, - 414,1,414,3,414,7957,8,414,1,414,1,414,3,414,7961,8,414,1,414,3, - 414,7964,8,414,1,414,1,414,3,414,7968,8,414,1,414,3,414,7971,8,414, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,3,414,7982, - 8,414,1,414,1,414,1,414,1,414,1,414,3,414,7989,8,414,1,414,1,414, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,3,414,8002, - 8,414,1,415,1,415,1,416,1,416,1,416,1,416,1,416,1,416,1,416,1,416, - 1,416,1,416,3,416,8016,8,416,1,417,1,417,3,417,8020,8,417,1,417, - 5,417,8023,8,417,10,417,12,417,8026,9,417,1,418,1,418,1,419,1,419, - 3,419,8032,8,419,1,419,1,419,1,420,1,420,1,420,3,420,8039,8,420, - 1,420,3,420,8042,8,420,1,420,1,420,1,420,3,420,8047,8,420,1,420, - 3,420,8050,8,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,3,420, - 8059,8,420,3,420,8061,8,420,1,420,1,420,1,420,3,420,8066,8,420,1, - 421,1,421,3,421,8070,8,421,1,421,1,421,1,421,1,422,1,422,1,422,1, - 423,1,423,1,423,1,423,3,423,8082,8,423,1,423,3,423,8085,8,423,1, - 424,1,424,1,425,4,425,8090,8,425,11,425,12,425,8091,1,426,1,426, - 3,426,8096,8,426,1,426,1,426,1,426,3,426,8101,8,426,1,427,1,427, - 1,427,1,427,1,427,1,427,1,427,1,427,3,427,8111,8,427,1,428,1,428, - 1,429,1,429,1,429,1,429,3,429,8119,8,429,1,429,3,429,8122,8,429, - 1,429,3,429,8125,8,429,1,429,1,429,1,429,3,429,8130,8,429,3,429, - 8132,8,429,1,430,1,430,1,430,1,430,3,430,8138,8,430,1,431,1,431, - 1,431,5,431,8143,8,431,10,431,12,431,8146,9,431,1,432,1,432,1,433, - 1,433,1,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,1,434,1,435, - 1,435,1,435,1,435,3,435,8165,8,435,1,435,1,435,1,435,1,436,1,436, - 1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436, - 1,436,1,436,3,436,8185,8,436,1,436,1,436,3,436,8189,8,436,1,436, - 1,436,1,436,3,436,8194,8,436,1,437,1,437,1,438,1,438,1,438,1,438, - 1,438,1,438,1,438,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439, - 1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439, - 1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439, - 1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439, - 1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439, - 1,439,1,439,1,439,1,439,1,439,1,439,3,439,8263,8,439,1,439,1,439, - 1,439,3,439,8268,8,439,1,440,1,440,1,441,1,441,3,441,8274,8,441, - 1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,442,1,442, - 3,442,8287,8,442,1,442,1,442,3,442,8291,8,442,1,442,1,442,3,442, - 8295,8,442,1,442,1,442,1,442,1,442,3,442,8301,8,442,3,442,8303,8, - 442,1,443,1,443,1,443,1,443,5,443,8309,8,443,10,443,12,443,8312, - 9,443,1,443,1,443,1,444,1,444,1,444,1,445,1,445,3,445,8321,8,445, - 1,445,3,445,8324,8,445,1,445,3,445,8327,8,445,1,445,3,445,8330,8, - 445,1,445,3,445,8333,8,445,1,445,1,445,1,445,1,445,1,445,3,445,8340, - 8,445,1,445,3,445,8343,8,445,3,445,8345,8,445,1,446,1,446,3,446, - 8349,8,446,1,446,3,446,8352,8,446,1,446,1,446,1,446,1,446,1,446, - 3,446,8359,8,446,3,446,8361,8,446,1,447,1,447,1,447,5,447,8366,8, - 447,10,447,12,447,8369,9,447,1,448,1,448,1,449,1,449,3,449,8375, - 8,449,1,450,1,450,3,450,8379,8,450,1,451,1,451,3,451,8383,8,451, - 1,452,1,452,1,453,1,453,1,453,5,453,8390,8,453,10,453,12,453,8393, - 9,453,1,454,1,454,1,454,3,454,8398,8,454,1,455,1,455,3,455,8402, - 8,455,1,456,1,456,3,456,8406,8,456,1,457,1,457,1,457,3,457,8411, - 8,457,1,458,1,458,1,459,1,459,1,460,1,460,1,460,1,460,1,461,1,461, - 3,461,8423,8,461,1,462,1,462,1,462,5,462,8428,8,462,10,462,12,462, - 8431,9,462,1,463,1,463,1,464,1,464,1,464,1,464,1,464,3,464,8440, - 8,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464, - 1,464,3,464,8453,8,464,1,465,1,465,1,465,1,465,1,465,1,465,1,465, - 1,465,1,465,3,465,8464,8,465,1,466,1,466,1,466,5,466,8469,8,466, - 10,466,12,466,8472,9,466,1,467,1,467,3,467,8476,8,467,1,468,1,468, - 3,468,8480,8,468,1,469,1,469,3,469,8484,8,469,1,470,1,470,1,470, - 3,470,8489,8,470,1,470,1,470,1,470,1,471,1,471,1,471,1,471,1,472, - 1,472,1,472,1,472,3,472,8502,8,472,1,473,1,473,1,473,3,473,8507, - 8,473,1,473,1,473,3,473,8511,8,473,1,473,1,473,3,473,8515,8,473, - 1,473,1,473,1,473,1,473,1,473,3,473,8522,8,473,1,473,3,473,8525, - 8,473,3,473,8527,8,473,1,474,1,474,1,474,1,474,1,475,1,475,1,475, - 1,475,1,475,1,475,1,475,1,475,1,475,1,475,3,475,8543,8,475,1,476, - 3,476,8546,8,476,1,476,1,476,1,476,1,476,1,476,3,476,8553,8,476, - 1,476,3,476,8556,8,476,1,477,1,477,1,477,3,477,8561,8,477,1,478, - 1,478,1,478,1,478,3,478,8567,8,478,1,478,1,478,1,478,1,478,3,478, - 8573,8,478,1,478,1,478,3,478,8577,8,478,1,479,1,479,1,480,1,480, - 1,480,5,480,8584,8,480,10,480,12,480,8587,9,480,1,481,1,481,1,481, - 1,482,1,482,1,482,3,482,8595,8,482,1,482,1,482,1,482,1,482,1,482, - 3,482,8602,8,482,1,482,3,482,8605,8,482,1,483,1,483,1,483,1,483, - 3,483,8611,8,483,1,483,1,483,1,483,3,483,8616,8,483,1,484,1,484, - 1,484,1,485,3,485,8622,8,485,1,485,1,485,1,485,1,485,3,485,8628, - 8,485,1,485,3,485,8631,8,485,1,485,3,485,8634,8,485,1,486,1,486, - 1,486,1,487,1,487,3,487,8641,8,487,1,487,1,487,3,487,8645,8,487, - 1,487,3,487,8648,8,487,1,488,1,488,1,488,1,488,1,489,1,489,1,489, - 1,489,1,489,1,489,1,489,1,489,1,489,3,489,8663,8,489,1,489,3,489, - 8666,8,489,1,490,1,490,1,491,1,491,1,491,3,491,8673,8,491,1,492, - 3,492,8676,8,492,1,492,1,492,1,492,1,492,1,492,3,492,8683,8,492, - 1,492,3,492,8686,8,492,1,492,3,492,8689,8,492,1,493,1,493,1,493, - 5,493,8694,8,493,10,493,12,493,8697,9,493,1,494,1,494,1,494,1,494, - 1,494,1,494,1,494,1,494,1,494,3,494,8708,8,494,1,494,1,494,1,494, - 1,494,1,494,3,494,8715,8,494,3,494,8717,8,494,1,495,1,495,1,495, - 1,496,1,496,1,496,5,496,8725,8,496,10,496,12,496,8728,9,496,1,497, - 1,497,1,497,1,497,1,497,1,497,1,497,1,497,1,498,1,498,1,499,1,499, - 1,499,1,499,1,499,5,499,8745,8,499,10,499,12,499,8748,9,499,1,500, - 1,500,1,500,1,500,1,500,3,500,8755,8,500,1,501,1,501,3,501,8759, - 8,501,1,502,1,502,1,502,1,502,1,502,1,502,1,502,1,502,3,502,8769, - 8,502,1,503,1,503,3,503,8773,8,503,1,503,1,503,3,503,8777,8,503, - 1,503,1,503,3,503,8781,8,503,3,503,8783,8,503,1,503,1,503,1,503, - 3,503,8788,8,503,1,503,1,503,3,503,8792,8,503,1,503,1,503,3,503, - 8796,8,503,3,503,8798,8,503,3,503,8800,8,503,1,504,1,504,3,504,8804, - 8,504,1,505,1,505,3,505,8808,8,505,1,505,3,505,8811,8,505,1,505, - 3,505,8814,8,505,1,505,3,505,8817,8,505,1,505,3,505,8820,8,505,3, - 505,8822,8,505,1,505,3,505,8825,8,505,1,505,3,505,8828,8,505,1,505, - 3,505,8831,8,505,1,505,3,505,8834,8,505,1,505,3,505,8837,8,505,1, - 505,3,505,8840,8,505,1,505,1,505,1,505,1,505,1,505,1,505,1,505,3, - 505,8849,8,505,3,505,8851,8,505,1,505,1,505,1,505,3,505,8856,8,505, - 5,505,8858,8,505,10,505,12,505,8861,9,505,1,506,1,506,1,506,3,506, - 8866,8,506,1,507,1,507,3,507,8870,8,507,1,508,1,508,3,508,8874,8, - 508,1,508,1,508,1,509,1,509,1,509,5,509,8881,8,509,10,509,12,509, - 8884,9,509,1,510,1,510,3,510,8888,8,510,1,510,1,510,3,510,8892,8, - 510,1,510,1,510,1,510,1,510,3,510,8898,8,510,1,510,3,510,8901,8, - 510,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,512,1,512, - 1,512,1,512,1,512,1,512,1,512,1,512,1,512,3,512,8920,8,512,1,512, - 1,512,1,512,1,513,1,513,1,513,3,513,8928,8,513,1,514,1,514,1,515, - 1,515,1,515,1,515,1,515,3,515,8937,8,515,1,516,1,516,3,516,8941, - 8,516,1,517,3,517,8944,8,517,1,517,1,517,3,517,8948,8,517,1,517, - 1,517,1,517,3,517,8953,8,517,1,517,1,517,1,517,1,517,3,517,8959, - 8,517,1,518,1,518,1,519,1,519,1,520,1,520,1,520,1,520,1,520,1,520, - 3,520,8971,8,520,1,521,1,521,1,522,1,522,1,523,1,523,1,523,1,523, - 1,524,1,524,1,524,5,524,8984,8,524,10,524,12,524,8987,9,524,1,525, - 1,525,1,525,1,525,3,525,8993,8,525,1,525,3,525,8996,8,525,1,526, - 1,526,3,526,9000,8,526,1,526,1,526,3,526,9004,8,526,1,526,1,526, - 3,526,9008,8,526,3,526,9010,8,526,1,527,1,527,1,528,1,528,1,528, - 1,528,3,528,9018,8,528,1,529,1,529,1,529,1,529,1,529,1,529,1,529, - 3,529,9027,8,529,1,529,1,529,1,529,1,529,3,529,9033,8,529,3,529, - 9035,8,529,1,530,1,530,1,530,1,530,1,530,3,530,9042,8,530,1,531, - 1,531,3,531,9046,8,531,1,532,1,532,1,533,1,533,1,533,1,533,1,533, - 3,533,9055,8,533,1,534,1,534,3,534,9059,8,534,1,535,1,535,1,536, - 1,536,1,537,1,537,1,537,3,537,9068,8,537,1,537,1,537,1,538,1,538, - 1,538,5,538,9075,8,538,10,538,12,538,9078,9,538,1,539,1,539,1,539, - 1,539,1,539,1,539,1,539,1,539,1,539,3,539,9089,8,539,1,540,1,540, - 1,540,1,541,1,541,1,541,1,541,1,541,1,542,1,542,1,542,1,542,1,542, - 1,543,1,543,1,543,1,543,1,543,1,543,1,544,1,544,1,544,1,545,1,545, - 1,545,1,545,3,545,9117,8,545,1,546,1,546,1,547,4,547,9122,8,547, - 11,547,12,547,9123,1,548,1,548,3,548,9128,8,548,1,548,3,548,9131, - 8,548,1,549,1,549,1,549,3,549,9136,8,549,1,549,1,549,3,549,9140, - 8,549,1,549,3,549,9143,8,549,1,550,1,550,1,550,1,551,1,551,1,551, - 1,551,1,551,1,551,1,551,1,551,1,551,5,551,9157,8,551,10,551,12,551, - 9160,9,551,1,552,1,552,1,552,1,553,1,553,1,553,5,553,9168,8,553, - 10,553,12,553,9171,9,553,1,554,1,554,3,554,9175,8,554,1,554,3,554, - 9178,8,554,1,554,3,554,9181,8,554,1,554,1,554,3,554,9185,8,554,1, - 554,1,554,3,554,9189,8,554,1,554,1,554,3,554,9193,8,554,1,554,1, - 554,1,554,3,554,9198,8,554,1,554,1,554,3,554,9202,8,554,1,554,1, - 554,3,554,9206,8,554,3,554,9208,8,554,1,554,1,554,1,554,1,554,1, - 554,1,554,1,554,3,554,9217,8,554,1,554,1,554,1,554,3,554,9222,8, - 554,1,554,1,554,1,554,1,554,3,554,9228,8,554,1,554,1,554,3,554,9232, - 8,554,3,554,9234,8,554,1,554,1,554,1,554,1,554,1,554,3,554,9241, - 8,554,1,554,1,554,1,554,3,554,9246,8,554,1,554,1,554,1,554,1,554, - 5,554,9252,8,554,10,554,12,554,9255,9,554,1,555,3,555,9258,8,555, - 1,555,1,555,1,555,1,555,1,555,3,555,9265,8,555,1,556,1,556,1,557, - 1,557,1,557,3,557,9272,8,557,1,557,3,557,9275,8,557,1,557,1,557, - 1,557,1,557,3,557,9281,8,557,1,558,1,558,3,558,9285,8,558,1,559, - 1,559,1,559,1,559,1,559,1,559,1,559,3,559,9294,8,559,1,560,3,560, - 9297,8,560,1,560,1,560,3,560,9301,8,560,1,560,3,560,9304,8,560,1, - 560,3,560,9307,8,560,1,560,1,560,1,560,1,560,1,560,1,560,3,560,9315, - 8,560,1,560,1,560,1,560,1,560,3,560,9321,8,560,3,560,9323,8,560, - 1,561,3,561,9326,8,561,1,561,1,561,3,561,9330,8,561,1,561,3,561, - 9333,8,561,1,561,3,561,9336,8,561,1,562,1,562,3,562,9340,8,562,1, - 562,1,562,3,562,9344,8,562,1,562,1,562,1,562,1,562,3,562,9350,8, - 562,1,562,3,562,9353,8,562,1,562,1,562,1,562,1,562,1,562,1,562,1, - 562,3,562,9362,8,562,1,562,1,562,1,562,1,562,1,562,3,562,9369,8, - 562,3,562,9371,8,562,1,563,1,563,1,563,5,563,9376,8,563,10,563,12, - 563,9379,9,563,1,564,1,564,1,564,5,564,9384,8,564,10,564,12,564, - 9387,9,564,1,565,1,565,3,565,9391,8,565,1,565,3,565,9394,8,565,1, - 566,1,566,1,566,1,566,1,566,1,566,3,566,9402,8,566,1,567,1,567,1, - 567,1,567,1,567,1,568,1,568,3,568,9411,8,568,1,568,1,568,1,568,1, - 568,1,568,1,568,3,568,9419,8,568,3,568,9421,8,568,1,569,1,569,3, - 569,9425,8,569,1,570,1,570,1,570,5,570,9430,8,570,10,570,12,570, - 9433,9,570,1,571,1,571,1,571,1,571,1,571,1,572,1,572,1,572,1,573, - 1,573,1,573,1,574,1,574,1,574,1,574,1,574,3,574,9451,8,574,1,575, - 1,575,1,576,1,576,1,576,5,576,9458,8,576,10,576,12,576,9461,9,576, - 1,577,1,577,1,577,3,577,9466,8,577,1,578,1,578,1,578,1,578,1,578, - 1,578,1,578,1,578,1,578,1,578,1,578,1,578,1,578,1,578,1,578,1,578, - 1,578,3,578,9485,8,578,1,578,1,578,1,579,1,579,1,579,5,579,9492, - 8,579,10,579,12,579,9495,9,579,1,580,1,580,1,580,3,580,9500,8,580, - 1,580,1,580,3,580,9504,8,580,1,581,4,581,9507,8,581,11,581,12,581, - 9508,1,582,1,582,1,582,1,582,1,582,1,582,1,582,1,582,3,582,9519, - 8,582,1,583,1,583,1,583,5,583,9524,8,583,10,583,12,583,9527,9,583, - 1,584,1,584,1,584,1,584,1,584,1,584,3,584,9535,8,584,1,585,3,585, - 9538,8,585,1,585,1,585,1,585,1,585,1,585,1,585,1,585,3,585,9547, - 8,585,3,585,9549,8,585,1,585,1,585,1,585,1,585,3,585,9555,8,585, - 1,586,1,586,3,586,9559,8,586,1,586,5,586,9562,8,586,10,586,12,586, - 9565,9,586,1,587,1,587,1,587,1,587,1,587,1,587,1,587,3,587,9574, - 8,587,1,587,1,587,1,587,1,587,3,587,9580,8,587,3,587,9582,8,587, - 1,588,1,588,1,588,1,588,3,588,9588,8,588,1,589,1,589,3,589,9592, - 8,589,1,589,3,589,9595,8,589,1,590,1,590,1,590,1,590,1,591,1,591, - 1,591,1,591,1,591,1,591,1,591,3,591,9608,8,591,1,591,1,591,1,591, - 1,591,3,591,9614,8,591,1,591,1,591,3,591,9618,8,591,1,591,1,591, - 3,591,9622,8,591,1,591,3,591,9625,8,591,1,592,1,592,1,592,1,592, - 1,593,1,593,3,593,9633,8,593,1,594,1,594,3,594,9637,8,594,1,595, - 1,595,3,595,9641,8,595,1,595,1,595,1,595,1,595,1,596,1,596,3,596, - 9649,8,596,1,597,1,597,1,597,1,597,1,597,3,597,9656,8,597,1,598, - 1,598,1,598,1,598,1,598,3,598,9663,8,598,1,599,1,599,3,599,9667, - 8,599,1,599,1,599,1,599,1,599,3,599,9673,8,599,3,599,9675,8,599, - 1,600,1,600,1,601,1,601,1,601,1,601,1,601,3,601,9684,8,601,1,601, - 3,601,9687,8,601,1,602,1,602,1,603,1,603,1,603,1,603,1,603,1,603, - 3,603,9697,8,603,1,604,1,604,1,604,1,604,1,604,1,604,1,604,1,604, - 1,604,1,604,1,604,1,604,1,604,1,604,3,604,9713,8,604,1,604,1,604, - 1,604,1,604,3,604,9719,8,604,1,604,1,604,1,604,3,604,9724,8,604, - 1,605,1,605,1,605,1,605,1,605,3,605,9731,8,605,1,606,1,606,1,606, - 1,607,1,607,1,608,1,608,3,608,9740,8,608,1,609,1,609,1,609,5,609, - 9745,8,609,10,609,12,609,9748,9,609,1,610,1,610,1,610,5,610,9753, - 8,610,10,610,12,610,9756,9,610,1,611,1,611,1,611,5,611,9761,8,611, - 10,611,12,611,9764,9,611,1,612,1,612,3,612,9768,8,612,1,612,1,612, - 3,612,9772,8,612,1,613,3,613,9775,8,613,1,613,1,613,1,614,1,614, - 3,614,9781,8,614,1,615,1,615,1,615,3,615,9786,8,615,1,615,1,615, - 1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615,1,615, - 1,615,3,615,9802,8,615,1,615,3,615,9805,8,615,3,615,9807,8,615,1, - 616,1,616,1,616,1,616,1,616,1,616,1,616,1,616,1,616,1,616,3,616, - 9819,8,616,3,616,9821,8,616,1,617,1,617,3,617,9825,8,617,1,617,1, - 617,1,617,1,617,1,617,1,617,3,617,9833,8,617,3,617,9835,8,617,1, - 617,1,617,3,617,9839,8,617,3,617,9841,8,617,1,618,1,618,1,618,1, - 618,5,618,9847,8,618,10,618,12,618,9850,9,618,1,619,3,619,9853,8, - 619,1,619,1,619,1,620,1,620,1,620,5,620,9860,8,620,10,620,12,620, - 9863,9,620,1,621,1,621,1,621,5,621,9868,8,621,10,621,12,621,9871, - 9,621,1,622,1,622,1,622,3,622,9876,8,622,1,623,3,623,9879,8,623, - 1,623,1,623,1,624,1,624,1,624,1,624,1,624,3,624,9888,8,624,1,625, - 1,625,1,625,3,625,9893,8,625,1,626,1,626,1,626,5,626,9898,8,626, - 10,626,12,626,9901,9,626,1,627,1,627,1,627,1,627,1,627,1,627,1,627, - 3,627,9910,8,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627, - 1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627,1,627, - 1,627,1,627,1,627,1,627,1,627,3,627,9936,8,627,1,627,1,627,1,627, - 1,627,1,627,1,627,1,627,1,627,1,627,3,627,9947,8,627,5,627,9949, - 8,627,10,627,12,627,9952,9,627,1,628,1,628,1,628,1,628,1,628,3,628, - 9959,8,628,1,628,1,628,1,628,1,628,1,628,1,628,1,628,1,628,1,628, - 1,628,1,628,1,628,1,628,1,628,1,628,1,628,1,628,1,628,1,628,1,628, - 1,628,3,628,9982,8,628,1,628,1,628,1,628,1,628,1,628,1,628,3,628, - 9990,8,628,1,629,1,629,1,630,1,630,1,630,1,630,1,630,1,630,3,630, - 10000,8,630,1,630,3,630,10003,8,630,1,630,1,630,1,630,3,630,10008, - 8,630,1,630,1,630,1,630,3,630,10013,8,630,1,630,1,630,3,630,10017, - 8,630,1,630,3,630,10020,8,630,1,631,1,631,3,631,10024,8,631,1,631, - 3,631,10027,8,631,1,631,3,631,10030,8,631,1,631,3,631,10033,8,631, - 1,632,1,632,3,632,10037,8,632,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,1,633,3,633,10051,8,633,1,633,1,633, - 1,633,1,633,1,633,3,633,10058,8,633,1,633,1,633,1,633,1,633,1,633, - 3,633,10065,8,633,1,633,1,633,1,633,1,633,1,633,3,633,10072,8,633, - 1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,3,633,10090,8,633,1,633,1,633,1,633, - 1,633,1,633,1,633,3,633,10098,8,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,3,633,10110,8,633,1,633,1,633,1,633, - 1,633,3,633,10116,8,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,3,633,10129,8,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, - 3,633,10168,8,633,3,633,10170,8,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,3,633,10190,8,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,3,633,10200,8,633,1,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,3,633,10211,8,633,1,633,1,633,1,633,1,633,1,633, - 1,633,1,633,1,633,1,633,1,633,3,633,10223,8,633,1,634,1,634,1,634, - 1,634,1,634,3,634,10230,8,634,1,635,1,635,1,635,1,635,1,635,1,635, - 1,635,1,635,1,635,1,635,3,635,10242,8,635,1,636,1,636,1,636,1,636, - 1,636,1,637,1,637,1,637,5,637,10252,8,637,10,637,12,637,10255,9, - 637,1,638,1,638,1,638,3,638,10260,8,638,1,639,1,639,1,640,1,640, - 1,640,1,640,3,640,10268,8,640,1,641,1,641,1,641,1,641,1,641,1,641, - 1,641,1,641,1,641,1,641,1,641,1,641,1,641,1,641,1,641,3,641,10285, - 8,641,1,642,1,642,1,642,1,643,1,643,1,643,1,643,1,643,1,643,1,644, - 1,644,1,644,1,644,1,644,1,644,1,645,1,645,1,645,1,646,1,646,1,646, - 5,646,10308,8,646,10,646,12,646,10311,9,646,1,647,1,647,1,647,1, - 647,1,648,1,648,1,648,3,648,10320,8,648,1,649,1,649,3,649,10324, - 8,649,1,649,3,649,10327,8,649,1,649,3,649,10330,8,649,1,649,3,649, - 10333,8,649,1,649,1,649,1,650,1,650,1,651,1,651,1,651,1,651,1,652, - 1,652,1,652,3,652,10346,8,652,1,652,1,652,1,652,3,652,10351,8,652, - 1,652,1,652,1,652,3,652,10356,8,652,3,652,10358,8,652,1,653,1,653, - 1,653,1,653,1,653,1,653,3,653,10366,8,653,1,654,1,654,1,654,1,654, - 1,654,1,654,1,654,3,654,10375,8,654,1,655,1,655,1,655,1,655,1,655, - 1,655,1,655,3,655,10384,8,655,1,656,1,656,1,656,3,656,10389,8,656, - 1,656,1,656,1,656,1,656,1,656,1,656,1,656,3,656,10398,8,656,1,657, - 1,657,1,657,3,657,10403,8,657,1,657,1,657,1,658,1,658,1,658,1,658, - 1,658,1,658,1,659,1,659,1,660,1,660,3,660,10417,8,660,1,661,1,661, - 1,662,1,662,1,662,1,662,1,662,1,662,3,662,10427,8,662,1,663,1,663, - 1,663,1,663,1,663,1,663,3,663,10435,8,663,1,664,1,664,1,664,1,664, - 1,664,1,664,1,664,1,664,1,664,1,664,1,664,1,664,3,664,10449,8,664, - 1,665,1,665,1,665,5,665,10454,8,665,10,665,12,665,10457,9,665,1, - 666,1,666,1,666,5,666,10462,8,666,10,666,12,666,10465,9,666,1,667, - 1,667,1,667,5,667,10470,8,667,10,667,12,667,10473,9,667,1,668,1, - 668,1,668,1,668,1,668,3,668,10480,8,668,1,669,1,669,3,669,10484, - 8,669,1,670,1,670,1,670,5,670,10489,8,670,10,670,12,670,10492,9, - 670,1,671,1,671,1,671,1,671,1,671,3,671,10499,8,671,1,672,1,672, - 1,672,5,672,10504,8,672,10,672,12,672,10507,9,672,1,673,1,673,1, - 673,3,673,10512,8,673,1,673,1,673,1,674,1,674,1,674,5,674,10519, - 8,674,10,674,12,674,10522,9,674,1,675,1,675,1,675,1,675,1,676,1, - 676,1,676,1,676,1,676,1,676,1,676,1,676,3,676,10536,8,676,1,677, - 1,677,1,678,1,678,1,678,1,678,1,678,1,678,1,678,3,678,10547,8,678, - 1,679,1,679,1,679,1,679,1,680,1,680,1,680,1,680,1,680,1,680,1,680, - 1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680, - 1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,1,680,3,680,10580, - 8,680,1,681,1,681,1,681,1,681,1,681,1,681,1,681,3,681,10589,8,681, - 1,682,1,682,1,682,1,682,1,682,3,682,10596,8,682,1,683,1,683,3,683, - 10600,8,683,1,683,1,683,3,683,10604,8,683,1,683,1,683,1,684,4,684, - 10609,8,684,11,684,12,684,10610,1,685,1,685,1,685,1,685,1,685,1, - 686,1,686,1,686,1,687,1,687,1,688,1,688,3,688,10625,8,688,1,689, - 1,689,1,689,3,689,10630,8,689,1,689,1,689,1,689,3,689,10635,8,689, - 1,689,1,689,3,689,10639,8,689,3,689,10641,8,689,1,689,3,689,10644, - 8,689,1,690,1,690,1,691,4,691,10649,8,691,11,691,12,691,10650,1, - 692,5,692,10654,8,692,10,692,12,692,10657,9,692,1,693,1,693,1,694, - 1,694,1,694,5,694,10664,8,694,10,694,12,694,10667,9,694,1,695,1, - 695,1,695,1,695,1,695,3,695,10674,8,695,1,695,3,695,10677,8,695, - 1,696,1,696,1,696,5,696,10682,8,696,10,696,12,696,10685,9,696,1, - 697,1,697,1,697,5,697,10690,8,697,10,697,12,697,10693,9,697,1,698, - 1,698,1,698,5,698,10698,8,698,10,698,12,698,10701,9,698,1,699,1, - 699,1,699,5,699,10706,8,699,10,699,12,699,10709,9,699,1,700,1,700, - 1,700,5,700,10714,8,700,10,700,12,700,10717,9,700,1,701,1,701,3, - 701,10721,8,701,1,702,1,702,3,702,10725,8,702,1,703,1,703,3,703, - 10729,8,703,1,704,1,704,3,704,10733,8,704,1,705,1,705,3,705,10737, - 8,705,1,706,1,706,3,706,10741,8,706,1,707,1,707,3,707,10745,8,707, - 1,708,1,708,1,708,5,708,10750,8,708,10,708,12,708,10753,9,708,1, - 709,1,709,1,709,5,709,10758,8,709,10,709,12,709,10761,9,709,1,710, - 1,710,3,710,10765,8,710,1,711,1,711,3,711,10769,8,711,1,712,1,712, - 3,712,10773,8,712,1,713,1,713,1,714,1,714,1,715,1,715,1,715,1,715, - 3,715,10783,8,715,1,716,1,716,1,716,1,716,3,716,10789,8,716,1,717, - 1,717,1,718,1,718,1,719,1,719,1,720,1,720,1,721,1,721,1,722,1,722, - 1,722,1,722,3,722,10805,8,722,1,723,1,723,1,723,1,723,3,723,10811, - 8,723,1,724,1,724,1,724,1,724,3,724,10817,8,724,1,725,1,725,1,725, - 1,725,1,725,1,725,1,725,1,725,1,725,1,725,3,725,10829,8,725,1,725, - 1,725,1,725,3,725,10834,8,725,1,725,1,725,1,725,1,725,1,725,1,725, - 3,725,10842,8,725,1,725,1,725,1,725,1,725,1,725,3,725,10849,8,725, - 1,725,1,725,1,725,3,725,10854,8,725,1,726,1,726,1,727,1,727,1,728, - 1,728,1,729,1,729,1,730,1,730,3,730,10866,8,730,1,731,1,731,1,731, - 1,731,5,731,10872,8,731,10,731,12,731,10875,9,731,1,731,1,731,3, - 731,10879,8,731,1,732,1,732,1,732,1,733,1,733,1,733,1,733,1,733, - 3,733,10889,8,733,1,734,1,734,1,735,1,735,1,736,1,736,1,736,1,736, - 1,736,3,736,10900,8,736,1,737,1,737,1,737,5,737,10905,8,737,10,737, - 12,737,10908,9,737,1,738,1,738,1,738,1,738,3,738,10914,8,738,1,739, - 1,739,1,740,1,740,1,740,1,740,1,740,1,740,1,740,3,740,10925,8,740, - 1,740,3,740,10928,8,740,3,740,10930,8,740,1,741,1,741,3,741,10934, - 8,741,1,741,3,741,10937,8,741,1,742,1,742,1,742,1,742,3,742,10943, - 8,742,1,743,1,743,1,743,1,743,3,743,10949,8,743,1,744,1,744,3,744, - 10953,8,744,1,745,1,745,1,745,1,745,3,745,10959,8,745,1,746,1,746, - 1,746,1,746,1,746,1,746,3,746,10967,8,746,1,747,1,747,3,747,10971, - 8,747,1,747,1,747,1,747,1,747,1,747,1,747,3,747,10979,8,747,1,748, - 1,748,1,749,1,749,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750, - 1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750, - 1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750, - 1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750, - 1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,1,750,3,750, - 11036,8,750,1,751,1,751,1,752,1,752,1,753,1,753,1,753,1,753,1,754, - 5,754,11047,8,754,10,754,12,754,11050,9,754,1,755,1,755,1,755,1, - 755,1,755,1,755,1,755,1,755,1,755,1,755,1,755,1,755,1,755,1,755, - 1,755,1,755,1,755,1,755,1,755,1,755,3,755,11072,8,755,1,756,1,756, - 1,757,1,757,1,757,1,757,3,757,11080,8,757,1,758,1,758,3,758,11084, - 8,758,1,759,1,759,1,759,1,759,1,759,1,759,1,759,1,760,1,760,1,760, - 3,760,11096,8,760,3,760,11098,8,760,1,761,1,761,1,762,4,762,11103, - 8,762,11,762,12,762,11104,1,763,1,763,1,763,1,763,1,764,1,764,1, - 764,3,764,11114,8,764,1,765,1,765,1,765,1,765,1,765,1,765,1,765, - 1,765,1,765,1,765,1,765,1,765,1,765,1,765,1,765,1,765,3,765,11132, - 8,765,1,765,1,765,1,766,1,766,1,766,1,766,3,766,11140,8,766,1,767, - 1,767,1,768,1,768,1,768,1,768,1,768,3,768,11149,8,768,1,769,1,769, - 1,769,5,769,11154,8,769,10,769,12,769,11157,9,769,1,770,1,770,1, - 770,1,771,1,771,1,772,1,772,3,772,11166,8,772,1,773,1,773,1,774, - 1,774,3,774,11172,8,774,1,775,1,775,1,776,1,776,1,776,3,776,11179, - 8,776,1,777,1,777,1,777,3,777,11184,8,777,1,778,1,778,1,778,1,778, - 3,778,11190,8,778,1,779,1,779,3,779,11194,8,779,1,780,1,780,1,781, - 5,781,11199,8,781,10,781,12,781,11202,9,781,1,782,1,782,1,782,1, - 782,1,782,1,782,1,782,1,782,1,782,1,782,1,782,1,782,1,782,1,782, - 1,782,1,782,1,782,1,782,1,782,1,782,1,782,1,782,1,782,1,782,1,782, - 1,782,1,782,3,782,11231,8,782,1,783,1,783,1,783,1,783,1,784,1,784, - 1,784,1,784,1,784,1,784,1,784,3,784,11244,8,784,1,784,1,784,1,784, - 1,784,1,784,1,784,1,784,3,784,11253,8,784,1,785,1,785,3,785,11257, - 8,785,1,786,1,786,1,786,1,786,1,786,1,787,1,787,1,787,1,787,1,787, - 1,787,1,788,1,788,1,788,3,788,11273,8,788,1,789,1,789,1,789,5,789, - 11278,8,789,10,789,12,789,11281,9,789,1,790,1,790,1,790,1,790,1, - 791,1,791,1,792,1,792,1,793,1,793,3,793,11293,8,793,1,793,1,793, - 1,793,1,793,5,793,11299,8,793,10,793,12,793,11302,9,793,1,794,1, - 794,1,794,1,794,1,794,1,794,1,794,1,794,1,794,1,794,1,795,1,795, - 1,795,1,795,1,795,5,795,11319,8,795,10,795,12,795,11322,9,795,1, - 796,1,796,1,796,3,796,11327,8,796,1,797,1,797,1,797,1,797,1,797, - 1,797,1,797,1,797,1,798,1,798,3,798,11339,8,798,1,799,4,799,11342, - 8,799,11,799,12,799,11343,1,800,1,800,1,800,1,800,1,800,1,801,1, - 801,1,801,3,801,11354,8,801,1,802,1,802,1,802,1,803,1,803,1,803, - 1,803,1,803,1,804,1,804,1,804,1,804,1,804,1,805,1,805,1,805,1,805, - 1,805,1,805,1,805,1,805,1,805,1,805,1,805,1,805,1,805,1,805,1,805, - 1,805,1,805,3,805,11386,8,805,1,806,1,806,1,806,3,806,11391,8,806, - 1,807,1,807,1,807,1,807,1,807,5,807,11398,8,807,10,807,12,807,11401, - 9,807,1,807,1,807,3,807,11405,8,807,1,808,1,808,3,808,11409,8,808, - 1,809,1,809,1,809,3,809,11414,8,809,1,810,1,810,1,811,1,811,1,811, - 1,811,1,811,1,811,1,811,1,811,1,811,1,812,1,812,1,812,3,812,11430, - 8,812,1,813,1,813,1,813,3,813,11435,8,813,1,813,1,813,1,814,1,814, - 1,815,1,815,1,815,1,815,1,815,1,815,1,815,1,815,1,815,3,815,11450, - 8,815,1,815,3,815,11453,8,815,1,815,1,815,1,816,1,816,3,816,11459, - 8,816,1,817,1,817,3,817,11463,8,817,1,817,1,817,1,817,1,817,1,817, - 1,817,1,817,3,817,11472,8,817,1,817,1,817,1,817,1,817,1,817,1,817, - 3,817,11480,8,817,1,817,1,817,1,817,1,817,1,817,1,817,1,817,3,817, - 11489,8,817,1,817,1,817,1,817,1,817,3,817,11495,8,817,1,818,1,818, - 1,819,1,819,1,819,4,819,11502,8,819,11,819,12,819,11503,3,819,11506, - 8,819,1,820,1,820,1,820,3,820,11511,8,820,1,821,1,821,1,821,1,821, - 1,822,1,822,1,822,5,822,11520,8,822,10,822,12,822,11523,9,822,1, - 823,1,823,1,823,1,823,1,823,1,824,1,824,1,824,3,824,11533,8,824, - 1,825,1,825,1,825,1,825,1,825,1,825,1,825,1,826,1,826,1,826,1,827, - 1,827,1,827,1,827,1,827,1,827,1,827,1,827,1,827,3,827,11554,8,827, - 1,827,1,827,1,828,1,828,1,828,3,828,11561,8,828,1,829,1,829,1,829, - 5,829,11566,8,829,10,829,12,829,11569,9,829,1,830,1,830,1,830,3, - 830,11574,8,830,1,830,3,830,11577,8,830,1,831,1,831,1,831,1,831, - 1,831,1,831,1,831,1,831,1,831,3,831,11588,8,831,1,831,1,831,1,831, - 1,831,1,831,3,831,11595,8,831,3,831,11597,8,831,1,831,1,831,1,832, - 1,832,1,832,1,832,1,832,3,832,11606,8,832,1,833,1,833,1,833,5,833, - 11611,8,833,10,833,12,833,11614,9,833,1,834,1,834,1,834,3,834,11619, - 8,834,1,835,1,835,1,835,1,835,3,835,11625,8,835,1,836,1,836,3,836, - 11629,8,836,1,837,1,837,3,837,11633,8,837,1,837,1,837,1,837,1,837, - 1,837,1,837,1,838,1,838,1,839,1,839,1,839,3,839,11646,8,839,1,840, - 1,840,1,840,1,840,1,840,1,840,1,840,1,840,1,840,1,840,1,840,1,840, - 1,840,3,840,11661,8,840,3,840,11663,8,840,1,841,1,841,3,841,11667, - 8,841,1,841,1,841,1,841,1,842,3,842,11673,8,842,1,842,1,842,1,842, - 3,842,11678,8,842,1,842,1,842,3,842,11682,8,842,1,842,3,842,11685, - 8,842,1,842,3,842,11688,8,842,1,842,1,842,1,842,1,842,1,842,4,842, - 11695,8,842,11,842,12,842,11696,1,843,3,843,11700,8,843,1,843,1, - 843,3,843,11704,8,843,1,843,1,843,3,843,11708,8,843,3,843,11710, - 8,843,1,843,3,843,11713,8,843,1,843,3,843,11716,8,843,1,844,1,844, - 1,845,1,845,1,845,1,845,3,845,11724,8,845,1,845,1,845,1,845,1,845, - 1,845,3,845,11731,8,845,1,845,1,845,1,845,1,845,1,845,3,845,11738, - 8,845,1,845,1,845,1,845,1,845,3,845,11744,8,845,3,845,11746,8,845, - 1,846,1,846,1,846,1,846,1,846,3,846,11753,8,846,1,846,1,846,1,846, - 3,846,11758,8,846,1,846,1,846,1,847,1,847,1,847,1,847,1,847,1,847, - 1,847,1,847,1,847,1,847,1,847,1,847,1,847,1,847,4,847,11776,8,847, - 11,847,12,847,11777,1,848,1,848,1,848,1,848,3,848,11784,8,848,1, - 849,1,849,1,849,1,849,5,849,11790,8,849,10,849,12,849,11793,9,849, - 1,849,1,849,1,850,1,850,3,850,11799,8,850,1,851,1,851,1,851,1,851, - 1,852,1,852,1,852,1,853,1,853,3,853,11810,8,853,1,853,1,853,1,854, - 1,854,3,854,11816,8,854,1,854,1,854,1,855,1,855,3,855,11822,8,855, - 1,855,1,855,1,856,1,856,1,856,1,856,1,856,1,856,1,856,1,856,1,856, - 3,856,11835,8,856,1,856,3,856,11838,8,856,1,857,1,857,3,857,11842, - 8,857,1,858,1,858,1,858,3,858,11847,8,858,1,859,4,859,11850,8,859, - 11,859,12,859,11851,1,860,1,860,1,860,1,860,1,860,1,861,1,861,1, - 861,5,861,11862,8,861,10,861,12,861,11865,9,861,1,862,1,862,1,862, - 3,862,11870,8,862,1,863,1,863,3,863,11874,8,863,1,864,1,864,3,864, - 11878,8,864,1,865,1,865,3,865,11882,8,865,1,866,1,866,1,866,1,867, - 1,867,3,867,11889,8,867,1,868,1,868,1,869,3,869,11894,8,869,1,869, - 3,869,11897,8,869,1,869,3,869,11900,8,869,1,869,3,869,11903,8,869, - 1,869,3,869,11906,8,869,1,869,3,869,11909,8,869,1,869,3,869,11912, - 8,869,1,870,1,870,1,871,1,871,1,872,1,872,1,873,1,873,1,874,1,874, - 3,874,11924,8,874,1,875,1,875,1,875,1,875,1,875,0,1,1254,876,0,2, - 4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48, - 50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92, - 94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126, - 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158, - 160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190, - 192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222, - 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, - 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, - 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, - 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, - 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, - 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, - 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, - 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, - 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, - 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, - 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, - 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, - 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, - 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, - 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, - 704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734, - 736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766, - 768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798, - 800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830, - 832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862, - 864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,894, - 896,898,900,902,904,906,908,910,912,914,916,918,920,922,924,926, - 928,930,932,934,936,938,940,942,944,946,948,950,952,954,956,958, - 960,962,964,966,968,970,972,974,976,978,980,982,984,986,988,990, - 992,994,996,998,1000,1002,1004,1006,1008,1010,1012,1014,1016,1018, - 1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044, - 1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070, - 1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096, - 1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122, - 1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148, - 1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174, - 1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200, - 1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226, - 1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252, - 1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278, - 1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304, - 1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330, - 1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356, - 1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382, - 1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408, - 1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434, - 1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460, - 1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486, - 1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512, - 1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538, - 1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564, - 1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590, - 1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616, - 1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642, - 1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668, - 1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694, - 1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720, - 1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746, - 1748,1750,0,81,2,0,195,195,364,364,1,0,228,229,1,0,236,237,1,0,234, - 235,1,0,232,233,1,0,230,231,1,0,535,536,1,0,537,538,1,0,539,540, - 2,0,66,66,318,318,2,0,99,99,318,318,1,0,529,531,2,0,10,10,94,94, - 2,0,133,133,191,191,2,0,254,254,332,332,2,0,162,162,363,363,2,0, - 180,180,221,221,5,0,30,30,288,288,329,329,352,352,354,354,2,0,109, - 109,532,532,2,0,150,150,315,315,2,0,64,64,94,94,2,0,352,352,354, - 354,2,0,200,200,224,224,9,0,30,30,160,160,165,165,179,179,219,219, - 227,227,342,342,345,345,438,438,3,0,113,113,284,284,336,336,2,0, - 53,53,78,78,3,0,173,173,260,260,262,262,2,0,9,9,94,94,5,0,30,30, - 88,88,182,182,241,241,369,369,2,0,92,92,226,226,2,0,341,341,414, - 414,1,0,448,449,2,0,92,92,414,414,3,0,66,66,99,99,318,318,3,0,321, - 321,357,357,445,445,2,0,64,64,68,68,10,0,46,46,88,88,182,182,202, - 202,241,241,352,352,354,354,357,358,369,369,521,523,5,0,212,212, - 329,329,350,350,361,361,455,456,2,0,37,37,55,55,2,0,10,10,53,53, - 4,0,88,88,182,182,241,241,369,369,2,0,137,137,242,242,2,0,356,356, - 380,380,2,0,151,151,254,254,2,0,313,313,333,333,1,0,31,32,2,0,60, + 3,376,6685,8,376,1,377,1,377,3,377,6689,8,377,1,377,1,377,1,377, + 3,377,6694,8,377,1,377,3,377,6697,8,377,1,378,1,378,3,378,6701,8, + 378,1,378,1,378,1,378,3,378,6706,8,378,1,378,1,378,1,378,3,378,6711, + 8,378,1,378,3,378,6714,8,378,1,379,1,379,1,379,5,379,6719,8,379, + 10,379,12,379,6722,9,379,1,380,1,380,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,3,381,6738,8,381,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,3,382,6809,8,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,3,382,6840,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,3,382,6894,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,3,382,6904,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,3,382,6914,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,3,382,6925,8,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,3,382,6935,8,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,3,382,6946,8,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,3,382,6956,8,382,1,382,1,382,1,382,3,382,6961, + 8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,6970,8,382, + 1,382,1,382,1,382,3,382,6975,8,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,3,382,6985,8,382,1,382,1,382,1,382,3,382,6990, + 8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,6999,8,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 3,382,7012,8,382,1,382,1,382,1,382,3,382,7017,8,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,7129, + 8,382,3,382,7131,8,382,1,383,1,383,1,383,1,384,1,384,1,384,1,384, + 3,384,7140,8,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, + 1,384,3,384,7151,8,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, + 1,384,1,384,3,384,7162,8,384,1,384,1,384,1,384,1,384,1,384,1,384, + 1,384,1,384,1,384,1,384,1,384,3,384,7175,8,384,1,384,1,384,1,384, + 1,384,1,384,1,384,1,384,1,384,1,384,1,384,3,384,7187,8,384,1,384, + 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,3,384,7198,8,384, + 1,384,1,384,1,384,1,384,1,384,3,384,7205,8,384,1,385,1,385,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7295,8,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7348,8,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7358,8,386,1,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7369,8,386, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7380, + 8,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,386,3,386,7394,8,386,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,388,1,388,1,388,5,388,7407,8,388,10,388,12,388,7410, + 9,388,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,3,389,7420, + 8,389,1,390,1,390,1,390,1,390,1,390,3,390,7427,8,390,1,391,1,391, + 1,391,1,391,1,391,1,391,1,391,1,391,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,3,392,7481,8,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, + 1,392,1,392,1,392,1,392,1,392,3,392,7622,8,392,1,393,1,393,1,393, + 1,393,3,393,7628,8,393,1,393,3,393,7631,8,393,1,394,1,394,1,395, + 1,395,1,395,1,395,1,395,1,395,3,395,7641,8,395,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,3,396,7681,8,396,1,397,1,397,1,397,1,397,1,397,1,397, + 1,397,1,397,3,397,7691,8,397,1,398,1,398,1,398,5,398,7696,8,398, + 10,398,12,398,7699,9,398,1,399,1,399,1,400,1,400,1,400,1,400,1,400, + 1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, + 1,400,1,400,3,400,7721,8,400,1,400,1,400,1,400,1,400,1,400,1,400, + 1,400,3,400,7730,8,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, + 3,400,7739,8,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,3,400, + 7748,8,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, + 1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, + 1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400,1,400, + 3,400,7781,8,400,1,401,1,401,3,401,7785,8,401,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,1,401,3,401,7795,8,401,1,401,1,401,3,401, + 7799,8,401,1,401,1,401,1,402,1,402,1,402,1,402,1,402,1,402,3,402, + 7809,8,402,1,403,3,403,7812,8,403,1,403,1,403,3,403,7816,8,403,5, + 403,7818,8,403,10,403,12,403,7821,9,403,1,404,1,404,1,404,1,404, + 1,404,3,404,7828,8,404,1,405,1,405,1,406,1,406,1,407,1,407,1,408, + 1,408,1,408,3,408,7839,8,408,1,409,1,409,1,409,1,410,1,410,1,410, + 1,411,1,411,1,411,1,411,3,411,7851,8,411,1,412,1,412,3,412,7855, + 8,412,1,412,3,412,7858,8,412,1,412,1,412,3,412,7862,8,412,1,412, + 3,412,7865,8,412,1,412,1,412,1,412,3,412,7870,8,412,1,412,1,412, + 3,412,7874,8,412,1,412,3,412,7877,8,412,1,412,1,412,1,412,1,412, + 3,412,7883,8,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, + 1,412,3,412,7894,8,412,1,412,3,412,7897,8,412,1,412,1,412,1,412, + 1,412,1,412,3,412,7904,8,412,1,412,1,412,3,412,7908,8,412,1,412, + 1,412,1,412,3,412,7913,8,412,1,412,3,412,7916,8,412,3,412,7918,8, + 412,1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, + 1,414,1,414,3,414,7932,8,414,1,415,1,415,3,415,7936,8,415,1,415, + 5,415,7939,8,415,10,415,12,415,7942,9,415,1,416,1,416,1,417,1,417, + 3,417,7948,8,417,1,417,1,417,1,418,1,418,1,418,3,418,7955,8,418, + 1,418,3,418,7958,8,418,1,418,1,418,1,418,3,418,7963,8,418,1,418, + 3,418,7966,8,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,3,418, + 7975,8,418,3,418,7977,8,418,1,418,1,418,1,418,3,418,7982,8,418,1, + 419,1,419,3,419,7986,8,419,1,419,1,419,1,419,1,420,1,420,1,420,1, + 421,1,421,1,421,1,421,3,421,7998,8,421,1,421,3,421,8001,8,421,1, + 422,1,422,1,423,4,423,8006,8,423,11,423,12,423,8007,1,424,1,424, + 3,424,8012,8,424,1,424,1,424,1,424,3,424,8017,8,424,1,425,1,425, + 1,425,1,425,1,425,1,425,1,425,1,425,3,425,8027,8,425,1,426,1,426, + 1,427,1,427,1,427,1,427,1,427,1,427,3,427,8037,8,427,1,427,3,427, + 8040,8,427,1,427,3,427,8043,8,427,3,427,8045,8,427,1,428,1,428,1, + 428,1,428,3,428,8051,8,428,1,429,1,429,1,429,5,429,8056,8,429,10, + 429,12,429,8059,9,429,1,430,1,430,1,431,1,431,1,431,1,431,1,431, + 1,431,1,432,1,432,1,432,1,432,1,432,1,433,1,433,1,433,1,433,3,433, + 8078,8,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,1,434,1,434, + 1,434,1,434,1,434,1,434,1,434,1,434,1,434,1,434,1,434,3,434,8098, + 8,434,1,434,1,434,3,434,8102,8,434,1,434,1,434,1,434,3,434,8107, + 8,434,1,435,1,435,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,437, + 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, + 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, + 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, + 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, + 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, + 1,437,1,437,3,437,8176,8,437,1,437,1,437,1,437,3,437,8181,8,437, + 1,438,1,438,1,439,1,439,3,439,8187,8,439,1,439,1,439,1,439,1,439, + 1,439,1,439,1,439,1,439,1,439,1,440,1,440,3,440,8200,8,440,1,440, + 1,440,3,440,8204,8,440,1,440,1,440,3,440,8208,8,440,1,440,1,440, + 1,440,1,440,3,440,8214,8,440,3,440,8216,8,440,1,441,1,441,1,441, + 1,441,5,441,8222,8,441,10,441,12,441,8225,9,441,1,441,1,441,1,442, + 1,442,1,442,1,443,1,443,3,443,8234,8,443,1,443,3,443,8237,8,443, + 1,443,3,443,8240,8,443,1,443,3,443,8243,8,443,1,443,3,443,8246,8, + 443,1,443,1,443,1,443,1,443,1,443,3,443,8253,8,443,1,443,3,443,8256, + 8,443,3,443,8258,8,443,1,444,1,444,3,444,8262,8,444,1,444,3,444, + 8265,8,444,1,444,1,444,1,444,1,444,1,444,3,444,8272,8,444,3,444, + 8274,8,444,1,445,1,445,1,445,5,445,8279,8,445,10,445,12,445,8282, + 9,445,1,446,1,446,1,447,1,447,3,447,8288,8,447,1,448,1,448,3,448, + 8292,8,448,1,449,1,449,3,449,8296,8,449,1,450,1,450,1,451,1,451, + 1,451,5,451,8303,8,451,10,451,12,451,8306,9,451,1,452,1,452,1,452, + 3,452,8311,8,452,1,453,1,453,3,453,8315,8,453,1,454,1,454,3,454, + 8319,8,454,1,455,1,455,1,455,3,455,8324,8,455,1,456,1,456,1,457, + 1,457,1,458,1,458,1,458,1,458,1,459,1,459,3,459,8336,8,459,1,460, + 1,460,1,460,5,460,8341,8,460,10,460,12,460,8344,9,460,1,461,1,461, + 1,462,1,462,1,462,1,462,1,462,3,462,8353,8,462,1,462,1,462,1,462, + 1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,462,3,462,8366,8,462, + 1,463,1,463,1,463,1,463,1,463,1,463,1,463,1,463,1,463,3,463,8377, + 8,463,1,464,1,464,1,464,5,464,8382,8,464,10,464,12,464,8385,9,464, + 1,465,1,465,3,465,8389,8,465,1,466,1,466,3,466,8393,8,466,1,467, + 1,467,3,467,8397,8,467,1,468,1,468,1,468,3,468,8402,8,468,1,468, + 1,468,1,468,1,469,1,469,1,469,1,469,1,470,1,470,1,470,1,470,3,470, + 8415,8,470,1,471,1,471,1,471,3,471,8420,8,471,1,471,1,471,3,471, + 8424,8,471,1,471,1,471,3,471,8428,8,471,1,471,1,471,1,471,1,471, + 1,471,3,471,8435,8,471,1,471,3,471,8438,8,471,3,471,8440,8,471,1, + 472,1,472,1,472,1,472,1,473,1,473,3,473,8448,8,473,1,473,1,473,3, + 473,8452,8,473,1,474,3,474,8455,8,474,1,474,1,474,1,474,1,474,1, + 474,3,474,8462,8,474,1,474,3,474,8465,8,474,1,475,1,475,1,475,3, + 475,8470,8,475,1,476,1,476,1,476,1,476,3,476,8476,8,476,1,476,1, + 476,1,476,1,476,3,476,8482,8,476,1,476,1,476,3,476,8486,8,476,1, + 477,1,477,1,478,1,478,1,478,5,478,8493,8,478,10,478,12,478,8496, + 9,478,1,479,1,479,1,479,1,480,1,480,1,480,3,480,8504,8,480,1,480, + 1,480,1,480,1,480,1,480,3,480,8511,8,480,1,480,3,480,8514,8,480, + 1,481,1,481,1,481,1,481,3,481,8520,8,481,1,481,1,481,1,481,3,481, + 8525,8,481,1,482,1,482,1,482,1,483,3,483,8531,8,483,1,483,1,483, + 1,483,1,483,3,483,8537,8,483,1,483,3,483,8540,8,483,1,483,3,483, + 8543,8,483,1,484,1,484,1,484,1,485,1,485,3,485,8550,8,485,1,485, + 1,485,3,485,8554,8,485,1,485,3,485,8557,8,485,1,486,1,486,1,486, + 1,486,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,3,487, + 8572,8,487,1,487,3,487,8575,8,487,1,488,1,488,1,489,1,489,1,489, + 3,489,8582,8,489,1,490,3,490,8585,8,490,1,490,1,490,1,490,1,490, + 1,490,3,490,8592,8,490,1,490,3,490,8595,8,490,1,490,3,490,8598,8, + 490,1,491,1,491,1,491,5,491,8603,8,491,10,491,12,491,8606,9,491, + 1,492,1,492,1,492,1,492,1,492,1,492,1,492,1,492,1,492,3,492,8617, + 8,492,1,492,1,492,1,492,1,492,1,492,3,492,8624,8,492,3,492,8626, + 8,492,1,493,1,493,1,493,1,494,1,494,1,494,5,494,8634,8,494,10,494, + 12,494,8637,9,494,1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495, + 1,496,1,496,1,497,1,497,1,497,1,497,1,497,5,497,8654,8,497,10,497, + 12,497,8657,9,497,1,498,1,498,1,498,1,498,1,498,3,498,8664,8,498, + 1,499,1,499,3,499,8668,8,499,1,500,1,500,1,500,1,500,1,500,1,500, + 1,500,1,500,3,500,8678,8,500,1,501,1,501,3,501,8682,8,501,1,501, + 1,501,3,501,8686,8,501,1,501,1,501,3,501,8690,8,501,3,501,8692,8, + 501,1,501,1,501,1,501,3,501,8697,8,501,1,501,1,501,3,501,8701,8, + 501,1,501,1,501,3,501,8705,8,501,3,501,8707,8,501,3,501,8709,8,501, + 1,502,1,502,3,502,8713,8,502,1,503,1,503,3,503,8717,8,503,1,503, + 3,503,8720,8,503,1,503,3,503,8723,8,503,1,503,3,503,8726,8,503,1, + 503,3,503,8729,8,503,3,503,8731,8,503,1,503,3,503,8734,8,503,1,503, + 3,503,8737,8,503,1,503,3,503,8740,8,503,1,503,3,503,8743,8,503,1, + 503,3,503,8746,8,503,1,503,3,503,8749,8,503,1,503,1,503,1,503,1, + 503,1,503,1,503,1,503,3,503,8758,8,503,3,503,8760,8,503,1,503,1, + 503,1,503,3,503,8765,8,503,5,503,8767,8,503,10,503,12,503,8770,9, + 503,1,504,1,504,1,504,3,504,8775,8,504,1,505,1,505,3,505,8779,8, + 505,1,506,1,506,3,506,8783,8,506,1,506,1,506,1,507,1,507,1,507,5, + 507,8790,8,507,10,507,12,507,8793,9,507,1,508,1,508,3,508,8797,8, + 508,1,508,1,508,3,508,8801,8,508,1,508,1,508,1,508,1,508,3,508,8807, + 8,508,1,508,3,508,8810,8,508,1,509,1,509,1,509,1,509,1,509,1,509, + 1,509,1,509,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510, + 3,510,8829,8,510,1,510,1,510,1,510,1,511,1,511,1,511,3,511,8837, + 8,511,1,512,1,512,1,513,1,513,1,513,1,513,1,513,3,513,8846,8,513, + 1,514,1,514,3,514,8850,8,514,1,515,3,515,8853,8,515,1,515,1,515, + 3,515,8857,8,515,1,515,1,515,1,515,3,515,8862,8,515,1,515,1,515, + 1,515,1,515,3,515,8868,8,515,1,516,1,516,1,517,1,517,1,518,1,518, + 1,518,1,518,1,518,1,518,3,518,8880,8,518,1,519,1,519,1,520,1,520, + 1,521,1,521,1,521,1,521,1,522,1,522,1,522,5,522,8893,8,522,10,522, + 12,522,8896,9,522,1,523,1,523,1,523,1,523,3,523,8902,8,523,1,523, + 3,523,8905,8,523,1,524,1,524,3,524,8909,8,524,1,524,1,524,3,524, + 8913,8,524,1,524,1,524,3,524,8917,8,524,3,524,8919,8,524,1,525,1, + 525,1,526,1,526,1,526,1,526,3,526,8927,8,526,1,527,1,527,1,527,1, + 527,1,527,1,527,1,527,3,527,8936,8,527,1,527,1,527,1,527,1,527,3, + 527,8942,8,527,3,527,8944,8,527,1,528,1,528,1,528,1,528,1,528,3, + 528,8951,8,528,1,529,1,529,3,529,8955,8,529,1,530,1,530,1,531,1, + 531,1,531,1,531,1,531,3,531,8964,8,531,1,532,1,532,3,532,8968,8, + 532,1,533,1,533,1,534,1,534,1,535,1,535,1,535,3,535,8977,8,535,1, + 535,1,535,1,536,1,536,1,536,5,536,8984,8,536,10,536,12,536,8987, + 9,536,1,537,1,537,1,537,1,537,1,537,1,537,1,537,1,537,1,537,3,537, + 8998,8,537,1,538,1,538,1,538,1,539,1,539,1,539,1,539,1,539,1,540, + 1,540,1,540,1,540,1,540,1,541,1,541,1,541,1,541,1,541,1,541,1,542, + 1,542,1,542,1,543,1,543,1,543,1,543,3,543,9026,8,543,1,544,1,544, + 1,545,4,545,9031,8,545,11,545,12,545,9032,1,546,1,546,3,546,9037, + 8,546,1,546,3,546,9040,8,546,1,547,1,547,1,547,3,547,9045,8,547, + 1,547,1,547,3,547,9049,8,547,1,547,3,547,9052,8,547,1,548,1,548, + 1,548,1,549,1,549,1,549,1,549,1,549,1,549,1,549,1,549,1,549,5,549, + 9066,8,549,10,549,12,549,9069,9,549,1,550,1,550,1,550,1,551,1,551, + 1,551,5,551,9077,8,551,10,551,12,551,9080,9,551,1,552,1,552,3,552, + 9084,8,552,1,552,3,552,9087,8,552,1,552,3,552,9090,8,552,1,552,1, + 552,3,552,9094,8,552,1,552,1,552,3,552,9098,8,552,1,552,1,552,3, + 552,9102,8,552,1,552,1,552,1,552,3,552,9107,8,552,1,552,1,552,3, + 552,9111,8,552,1,552,1,552,3,552,9115,8,552,3,552,9117,8,552,1,552, + 1,552,1,552,1,552,1,552,1,552,1,552,3,552,9126,8,552,1,552,1,552, + 1,552,3,552,9131,8,552,1,552,1,552,1,552,1,552,3,552,9137,8,552, + 1,552,1,552,3,552,9141,8,552,3,552,9143,8,552,1,552,1,552,1,552, + 1,552,1,552,3,552,9150,8,552,1,552,1,552,1,552,3,552,9155,8,552, + 1,552,1,552,1,552,1,552,5,552,9161,8,552,10,552,12,552,9164,9,552, + 1,553,3,553,9167,8,553,1,553,1,553,1,553,1,553,1,553,3,553,9174, + 8,553,1,554,1,554,1,555,1,555,1,555,3,555,9181,8,555,1,555,3,555, + 9184,8,555,1,555,1,555,1,555,1,555,3,555,9190,8,555,1,556,1,556, + 3,556,9194,8,556,1,557,1,557,1,557,1,557,1,557,1,557,1,557,3,557, + 9203,8,557,1,558,3,558,9206,8,558,1,558,1,558,3,558,9210,8,558,1, + 558,1,558,1,558,1,558,1,558,1,558,3,558,9218,8,558,1,558,1,558,1, + 558,1,558,3,558,9224,8,558,3,558,9226,8,558,1,559,3,559,9229,8,559, + 1,559,1,559,3,559,9233,8,559,1,560,1,560,3,560,9237,8,560,1,560, + 1,560,3,560,9241,8,560,1,560,1,560,1,560,1,560,3,560,9247,8,560, + 1,560,3,560,9250,8,560,1,560,1,560,1,560,1,560,1,560,1,560,1,560, + 3,560,9259,8,560,1,560,1,560,1,560,1,560,1,560,3,560,9266,8,560, + 3,560,9268,8,560,1,561,1,561,1,561,5,561,9273,8,561,10,561,12,561, + 9276,9,561,1,562,1,562,1,562,5,562,9281,8,562,10,562,12,562,9284, + 9,562,1,563,1,563,3,563,9288,8,563,1,563,3,563,9291,8,563,1,564, + 1,564,1,564,1,564,1,564,1,564,3,564,9299,8,564,1,565,1,565,1,565, + 1,565,1,565,1,566,1,566,3,566,9308,8,566,1,566,1,566,1,566,1,566, + 1,566,1,566,3,566,9316,8,566,3,566,9318,8,566,1,567,1,567,3,567, + 9322,8,567,1,568,1,568,1,568,5,568,9327,8,568,10,568,12,568,9330, + 9,568,1,569,1,569,1,569,1,569,1,569,1,570,1,570,1,570,1,571,1,571, + 1,571,1,572,1,572,1,572,1,572,1,572,3,572,9348,8,572,1,573,1,573, + 1,574,1,574,1,574,5,574,9355,8,574,10,574,12,574,9358,9,574,1,575, + 1,575,1,575,3,575,9363,8,575,1,576,1,576,1,576,1,576,1,576,1,576, + 1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576,1,576, + 3,576,9382,8,576,1,576,1,576,1,577,1,577,1,577,5,577,9389,8,577, + 10,577,12,577,9392,9,577,1,578,1,578,1,578,3,578,9397,8,578,1,578, + 1,578,3,578,9401,8,578,1,579,4,579,9404,8,579,11,579,12,579,9405, + 1,580,1,580,1,580,1,580,1,580,1,580,1,580,1,580,3,580,9416,8,580, + 1,581,1,581,1,581,5,581,9421,8,581,10,581,12,581,9424,9,581,1,582, + 1,582,1,582,1,582,1,582,1,582,3,582,9432,8,582,1,583,3,583,9435, + 8,583,1,583,1,583,1,583,1,583,1,583,1,583,1,583,3,583,9444,8,583, + 3,583,9446,8,583,1,583,1,583,1,583,1,583,3,583,9452,8,583,1,584, + 1,584,3,584,9456,8,584,1,584,5,584,9459,8,584,10,584,12,584,9462, + 9,584,1,585,1,585,1,585,1,585,1,585,1,585,1,585,3,585,9471,8,585, + 1,585,1,585,1,585,1,585,3,585,9477,8,585,3,585,9479,8,585,1,586, + 1,586,1,586,1,586,3,586,9485,8,586,1,587,1,587,3,587,9489,8,587, + 1,587,3,587,9492,8,587,1,588,1,588,1,588,1,588,1,589,1,589,1,589, + 1,589,1,589,1,589,1,589,3,589,9505,8,589,1,589,1,589,1,589,1,589, + 3,589,9511,8,589,1,589,1,589,3,589,9515,8,589,1,589,1,589,3,589, + 9519,8,589,1,589,3,589,9522,8,589,1,590,1,590,1,590,1,590,1,591, + 1,591,3,591,9530,8,591,1,592,1,592,3,592,9534,8,592,1,593,1,593, + 3,593,9538,8,593,1,593,1,593,1,593,1,593,1,594,1,594,3,594,9546, + 8,594,1,595,1,595,1,595,1,595,1,595,3,595,9553,8,595,1,596,1,596, + 1,596,1,596,1,596,3,596,9560,8,596,1,597,1,597,3,597,9564,8,597, + 1,597,1,597,1,597,1,597,3,597,9570,8,597,3,597,9572,8,597,1,598, + 1,598,1,599,1,599,1,599,1,599,1,599,3,599,9581,8,599,1,599,3,599, + 9584,8,599,1,600,1,600,1,601,1,601,1,601,1,601,1,601,1,601,3,601, + 9594,8,601,1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602,1,602, + 1,602,1,602,1,602,1,602,1,602,3,602,9610,8,602,1,602,1,602,1,602, + 1,602,3,602,9616,8,602,1,602,1,602,1,602,3,602,9621,8,602,1,603, + 1,603,1,603,1,603,1,603,3,603,9628,8,603,1,604,1,604,1,604,1,605, + 1,605,1,606,1,606,3,606,9637,8,606,1,607,1,607,1,607,5,607,9642, + 8,607,10,607,12,607,9645,9,607,1,608,1,608,1,608,5,608,9650,8,608, + 10,608,12,608,9653,9,608,1,609,1,609,1,609,5,609,9658,8,609,10,609, + 12,609,9661,9,609,1,610,1,610,3,610,9665,8,610,1,610,1,610,3,610, + 9669,8,610,1,611,3,611,9672,8,611,1,611,1,611,1,612,1,612,3,612, + 9678,8,612,1,613,1,613,1,613,3,613,9683,8,613,1,613,1,613,1,613, + 1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613,1,613, + 3,613,9699,8,613,1,613,3,613,9702,8,613,3,613,9704,8,613,1,614,1, + 614,1,614,1,614,1,614,1,614,1,614,1,614,1,614,1,614,3,614,9716,8, + 614,3,614,9718,8,614,1,615,1,615,3,615,9722,8,615,1,615,1,615,1, + 615,1,615,1,615,1,615,3,615,9730,8,615,3,615,9732,8,615,1,615,1, + 615,3,615,9736,8,615,3,615,9738,8,615,1,616,1,616,1,616,1,616,5, + 616,9744,8,616,10,616,12,616,9747,9,616,1,617,3,617,9750,8,617,1, + 617,1,617,1,618,1,618,1,618,5,618,9757,8,618,10,618,12,618,9760, + 9,618,1,619,1,619,1,619,5,619,9765,8,619,10,619,12,619,9768,9,619, + 1,620,1,620,1,620,3,620,9773,8,620,1,621,3,621,9776,8,621,1,621, + 1,621,1,622,1,622,1,622,1,622,1,622,3,622,9785,8,622,1,623,1,623, + 1,623,3,623,9790,8,623,1,624,1,624,1,624,5,624,9795,8,624,10,624, + 12,624,9798,9,624,1,625,1,625,1,625,1,625,1,625,1,625,1,625,3,625, + 9807,8,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625, + 1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625,1,625, + 1,625,1,625,1,625,1,625,3,625,9833,8,625,1,625,1,625,1,625,1,625, + 1,625,1,625,1,625,1,625,1,625,3,625,9844,8,625,5,625,9846,8,625, + 10,625,12,625,9849,9,625,1,626,1,626,1,626,1,626,1,626,3,626,9856, + 8,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626, + 1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,3,626, + 9878,8,626,1,626,1,626,1,626,1,626,1,626,1,626,1,626,3,626,9887, + 8,626,1,627,1,627,1,628,1,628,1,628,1,628,1,628,1,628,3,628,9897, + 8,628,1,628,3,628,9900,8,628,1,628,1,628,1,628,3,628,9905,8,628, + 1,628,1,628,1,628,3,628,9910,8,628,1,628,1,628,3,628,9914,8,628, + 1,628,3,628,9917,8,628,1,629,1,629,3,629,9921,8,629,1,629,3,629, + 9924,8,629,1,629,3,629,9927,8,629,1,629,3,629,9930,8,629,1,630,1, + 630,3,630,9934,8,630,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1, + 631,1,631,1,631,1,631,1,631,3,631,9948,8,631,1,631,1,631,1,631,1, + 631,1,631,3,631,9955,8,631,1,631,1,631,1,631,1,631,1,631,3,631,9962, + 8,631,1,631,1,631,1,631,1,631,1,631,3,631,9969,8,631,1,631,1,631, + 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,1,631,3,631,9987,8,631,1,631,1,631,1,631,1,631,1,631, + 1,631,3,631,9995,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,1,631,3,631,10007,8,631,1,631,1,631,1,631,1,631,3,631, + 10013,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,3,631,10026,8,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,3,631,10065, + 8,631,3,631,10067,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 3,631,10087,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 3,631,10097,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,3,631,10108,8,631,1,631,1,631,1,631,1,631,1,631,1,631,1,631, + 1,631,1,631,1,631,3,631,10120,8,631,1,632,1,632,1,632,1,632,1,632, + 3,632,10127,8,632,1,633,1,633,1,633,1,633,1,633,1,633,1,633,1,633, + 1,633,1,633,3,633,10139,8,633,1,634,1,634,1,634,1,634,1,634,1,635, + 1,635,1,635,5,635,10149,8,635,10,635,12,635,10152,9,635,1,636,1, + 636,1,636,3,636,10157,8,636,1,637,1,637,1,638,1,638,1,638,1,638, + 3,638,10165,8,638,1,639,1,639,1,639,1,639,1,639,1,639,1,639,1,639, + 1,639,1,639,1,639,1,639,1,639,1,639,1,639,3,639,10182,8,639,1,640, + 1,640,1,640,1,641,1,641,1,641,1,641,1,641,1,641,1,642,1,642,1,642, + 1,642,1,642,1,642,1,643,1,643,1,643,1,644,1,644,1,644,5,644,10205, + 8,644,10,644,12,644,10208,9,644,1,645,1,645,1,645,1,645,1,646,1, + 646,1,646,3,646,10217,8,646,1,647,1,647,3,647,10221,8,647,1,647, + 3,647,10224,8,647,1,647,3,647,10227,8,647,1,647,3,647,10230,8,647, + 1,647,1,647,1,648,1,648,1,649,1,649,1,649,1,649,1,650,1,650,1,650, + 3,650,10243,8,650,1,650,1,650,1,650,3,650,10248,8,650,1,650,1,650, + 1,650,3,650,10253,8,650,3,650,10255,8,650,1,651,1,651,1,651,1,651, + 1,651,1,651,3,651,10263,8,651,1,652,1,652,1,652,1,652,1,652,1,652, + 1,652,3,652,10272,8,652,1,653,1,653,1,653,1,653,1,653,1,653,1,653, + 3,653,10281,8,653,1,654,1,654,1,654,3,654,10286,8,654,1,654,1,654, + 1,654,1,654,1,654,1,654,1,654,3,654,10295,8,654,1,655,1,655,1,655, + 3,655,10300,8,655,1,655,1,655,1,656,1,656,1,656,1,656,1,656,1,656, + 1,657,1,657,1,658,1,658,3,658,10314,8,658,1,659,1,659,1,660,1,660, + 1,660,1,660,1,660,1,660,3,660,10324,8,660,1,661,1,661,1,661,1,661, + 1,661,1,661,3,661,10332,8,661,1,662,1,662,1,662,1,662,1,662,1,662, + 1,662,1,662,1,662,1,662,1,662,1,662,3,662,10346,8,662,1,663,1,663, + 1,663,5,663,10351,8,663,10,663,12,663,10354,9,663,1,664,1,664,1, + 664,5,664,10359,8,664,10,664,12,664,10362,9,664,1,665,1,665,1,665, + 5,665,10367,8,665,10,665,12,665,10370,9,665,1,666,1,666,1,666,1, + 666,1,666,3,666,10377,8,666,1,667,1,667,3,667,10381,8,667,1,668, + 1,668,1,668,5,668,10386,8,668,10,668,12,668,10389,9,668,1,669,1, + 669,1,669,1,669,1,669,3,669,10396,8,669,1,670,1,670,1,670,5,670, + 10401,8,670,10,670,12,670,10404,9,670,1,671,1,671,1,671,3,671,10409, + 8,671,1,671,1,671,1,672,1,672,1,672,5,672,10416,8,672,10,672,12, + 672,10419,9,672,1,673,1,673,1,673,1,673,1,674,1,674,1,674,1,674, + 1,674,1,674,1,674,1,674,3,674,10433,8,674,1,675,1,675,1,676,1,676, + 1,676,1,676,1,676,1,676,1,676,3,676,10444,8,676,1,677,1,677,1,677, + 1,677,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678, + 1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678,1,678, + 1,678,1,678,1,678,1,678,1,678,1,678,3,678,10477,8,678,1,679,1,679, + 1,679,1,679,1,679,1,679,1,679,3,679,10486,8,679,1,680,1,680,1,680, + 1,680,1,680,3,680,10493,8,680,1,681,1,681,3,681,10497,8,681,1,681, + 1,681,3,681,10501,8,681,1,681,1,681,1,682,4,682,10506,8,682,11,682, + 12,682,10507,1,683,1,683,1,683,1,683,1,683,1,684,1,684,1,684,1,685, + 1,685,1,686,1,686,3,686,10522,8,686,1,687,1,687,1,687,3,687,10527, + 8,687,1,687,1,687,1,687,3,687,10532,8,687,1,687,1,687,3,687,10536, + 8,687,3,687,10538,8,687,1,687,3,687,10541,8,687,1,688,1,688,1,689, + 4,689,10546,8,689,11,689,12,689,10547,1,690,5,690,10551,8,690,10, + 690,12,690,10554,9,690,1,691,1,691,1,692,1,692,1,692,5,692,10561, + 8,692,10,692,12,692,10564,9,692,1,693,1,693,1,693,1,693,1,693,3, + 693,10571,8,693,1,693,3,693,10574,8,693,1,694,1,694,1,694,5,694, + 10579,8,694,10,694,12,694,10582,9,694,1,695,1,695,1,695,5,695,10587, + 8,695,10,695,12,695,10590,9,695,1,696,1,696,1,696,5,696,10595,8, + 696,10,696,12,696,10598,9,696,1,697,1,697,1,697,5,697,10603,8,697, + 10,697,12,697,10606,9,697,1,698,1,698,1,698,5,698,10611,8,698,10, + 698,12,698,10614,9,698,1,699,1,699,3,699,10618,8,699,1,700,1,700, + 3,700,10622,8,700,1,701,1,701,3,701,10626,8,701,1,702,1,702,3,702, + 10630,8,702,1,703,1,703,3,703,10634,8,703,1,704,1,704,3,704,10638, + 8,704,1,705,1,705,3,705,10642,8,705,1,706,1,706,1,706,5,706,10647, + 8,706,10,706,12,706,10650,9,706,1,707,1,707,1,707,5,707,10655,8, + 707,10,707,12,707,10658,9,707,1,708,1,708,3,708,10662,8,708,1,709, + 1,709,3,709,10666,8,709,1,710,1,710,3,710,10670,8,710,1,711,1,711, + 1,712,1,712,1,713,1,713,1,713,1,713,3,713,10680,8,713,1,714,1,714, + 1,714,1,714,3,714,10686,8,714,1,715,1,715,5,715,10690,8,715,10,715, + 12,715,10693,9,715,1,716,1,716,1,717,1,717,1,718,1,718,1,719,1,719, + 1,720,1,720,1,720,1,720,3,720,10707,8,720,1,721,1,721,1,721,1,721, + 3,721,10713,8,721,1,722,1,722,1,722,1,722,3,722,10719,8,722,1,723, + 1,723,1,723,1,723,1,723,1,723,1,723,1,723,1,723,1,723,3,723,10731, + 8,723,1,723,1,723,1,723,3,723,10736,8,723,1,723,1,723,1,723,1,723, + 1,723,1,723,3,723,10744,8,723,1,723,1,723,1,723,1,723,1,723,3,723, + 10751,8,723,1,723,1,723,1,723,3,723,10756,8,723,1,724,1,724,1,725, + 1,725,1,726,1,726,1,727,1,727,1,728,1,728,3,728,10768,8,728,1,729, + 1,729,1,729,1,729,5,729,10774,8,729,10,729,12,729,10777,9,729,1, + 729,1,729,3,729,10781,8,729,1,730,1,730,1,730,1,731,1,731,1,731, + 1,731,1,731,3,731,10791,8,731,1,732,1,732,1,733,1,733,1,734,1,734, + 1,734,1,734,1,734,3,734,10802,8,734,1,735,1,735,1,735,5,735,10807, + 8,735,10,735,12,735,10810,9,735,1,736,1,736,1,736,1,736,3,736,10816, + 8,736,1,737,1,737,1,738,1,738,1,738,1,738,1,738,1,738,1,738,3,738, + 10827,8,738,1,738,3,738,10830,8,738,3,738,10832,8,738,1,739,1,739, + 3,739,10836,8,739,1,739,3,739,10839,8,739,1,740,1,740,1,740,1,740, + 3,740,10845,8,740,1,741,1,741,1,741,1,741,3,741,10851,8,741,1,742, + 1,742,3,742,10855,8,742,1,743,1,743,1,743,1,743,3,743,10861,8,743, + 1,744,1,744,1,744,1,744,1,744,1,744,3,744,10869,8,744,1,745,1,745, + 3,745,10873,8,745,1,745,1,745,1,745,1,745,1,745,1,745,3,745,10881, + 8,745,1,746,1,746,1,747,1,747,1,748,1,748,1,748,1,748,1,748,1,748, + 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, + 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, + 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, + 1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748,1,748, + 1,748,3,748,10938,8,748,1,749,1,749,1,750,1,750,1,751,1,751,1,751, + 1,751,1,752,5,752,10949,8,752,10,752,12,752,10952,9,752,1,753,1, + 753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753, + 1,753,1,753,1,753,1,753,1,753,1,753,1,753,1,753,3,753,10974,8,753, + 1,754,1,754,1,755,1,755,1,755,1,755,3,755,10982,8,755,1,756,1,756, + 3,756,10986,8,756,1,757,1,757,1,757,1,757,1,757,1,757,1,757,1,758, + 1,758,1,758,3,758,10998,8,758,3,758,11000,8,758,1,759,1,759,1,760, + 4,760,11005,8,760,11,760,12,760,11006,1,761,1,761,1,761,1,761,1, + 762,1,762,1,762,3,762,11016,8,762,1,763,1,763,1,763,1,763,1,763, + 1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763,1,763, + 3,763,11034,8,763,1,763,1,763,1,764,1,764,1,764,1,764,3,764,11042, + 8,764,1,765,1,765,1,766,1,766,1,766,1,766,1,766,3,766,11051,8,766, + 1,767,1,767,1,767,5,767,11056,8,767,10,767,12,767,11059,9,767,1, + 768,1,768,1,768,1,769,1,769,1,770,1,770,3,770,11068,8,770,1,771, + 1,771,1,772,1,772,3,772,11074,8,772,1,773,1,773,1,774,1,774,1,774, + 3,774,11081,8,774,1,775,1,775,1,775,3,775,11086,8,775,1,776,1,776, + 1,776,1,776,3,776,11092,8,776,1,777,1,777,3,777,11096,8,777,1,778, + 1,778,1,779,5,779,11101,8,779,10,779,12,779,11104,9,779,1,780,1, + 780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780, + 1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780,1,780, + 1,780,1,780,1,780,1,780,3,780,11133,8,780,1,781,1,781,1,781,1,781, + 1,782,1,782,1,782,1,782,1,782,1,782,1,782,3,782,11146,8,782,1,782, + 1,782,1,782,1,782,1,782,1,782,1,782,3,782,11155,8,782,1,783,1,783, + 3,783,11159,8,783,1,784,1,784,1,784,1,784,1,784,1,785,1,785,1,785, + 1,785,1,785,1,785,1,786,1,786,1,786,3,786,11175,8,786,1,787,1,787, + 1,787,5,787,11180,8,787,10,787,12,787,11183,9,787,1,788,1,788,1, + 788,1,788,1,789,1,789,1,790,1,790,1,791,1,791,3,791,11195,8,791, + 1,791,1,791,1,791,1,791,5,791,11201,8,791,10,791,12,791,11204,9, + 791,1,792,1,792,1,792,1,792,1,792,1,792,1,792,1,792,1,792,1,792, + 1,793,1,793,1,793,1,793,1,793,5,793,11221,8,793,10,793,12,793,11224, + 9,793,1,794,1,794,1,794,3,794,11229,8,794,1,795,1,795,1,795,1,795, + 1,795,1,795,1,795,1,795,1,796,1,796,3,796,11241,8,796,1,797,4,797, + 11244,8,797,11,797,12,797,11245,1,798,1,798,1,798,1,798,1,798,1, + 799,1,799,1,799,3,799,11256,8,799,1,800,1,800,1,800,1,801,1,801, + 1,801,1,801,1,801,1,802,1,802,1,802,1,802,1,802,1,803,1,803,1,803, + 1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803,1,803, + 1,803,1,803,1,803,3,803,11288,8,803,1,804,1,804,1,804,3,804,11293, + 8,804,1,805,1,805,1,805,1,805,1,805,5,805,11300,8,805,10,805,12, + 805,11303,9,805,1,805,1,805,3,805,11307,8,805,1,806,1,806,3,806, + 11311,8,806,1,807,1,807,1,807,3,807,11316,8,807,1,808,1,808,1,809, + 1,809,1,809,1,809,1,809,1,809,1,809,1,809,1,809,1,810,1,810,1,810, + 3,810,11332,8,810,1,811,1,811,1,811,3,811,11337,8,811,1,811,1,811, + 1,812,1,812,1,813,1,813,1,813,1,813,1,813,1,813,1,813,1,813,1,813, + 3,813,11352,8,813,1,813,3,813,11355,8,813,1,813,1,813,1,814,1,814, + 3,814,11361,8,814,1,815,1,815,3,815,11365,8,815,1,815,1,815,1,815, + 1,815,1,815,1,815,1,815,3,815,11374,8,815,1,815,1,815,1,815,1,815, + 1,815,1,815,3,815,11382,8,815,1,815,1,815,1,815,1,815,1,815,1,815, + 1,815,3,815,11391,8,815,1,815,1,815,1,815,1,815,3,815,11397,8,815, + 1,816,1,816,1,817,1,817,1,817,4,817,11404,8,817,11,817,12,817,11405, + 3,817,11408,8,817,1,818,1,818,1,818,3,818,11413,8,818,1,819,1,819, + 1,819,1,819,1,820,1,820,1,820,5,820,11422,8,820,10,820,12,820,11425, + 9,820,1,821,1,821,1,821,1,821,1,821,1,822,1,822,1,822,3,822,11435, + 8,822,1,823,1,823,1,823,1,823,1,823,1,823,1,823,1,824,1,824,1,824, + 1,825,1,825,1,825,1,825,1,825,1,825,1,825,1,825,1,825,3,825,11456, + 8,825,1,825,1,825,1,826,1,826,1,826,3,826,11463,8,826,1,827,1,827, + 1,827,5,827,11468,8,827,10,827,12,827,11471,9,827,1,828,1,828,1, + 828,3,828,11476,8,828,1,828,3,828,11479,8,828,1,829,1,829,1,829, + 1,829,1,829,1,829,1,829,1,829,1,829,3,829,11490,8,829,1,829,1,829, + 1,829,1,829,1,829,3,829,11497,8,829,3,829,11499,8,829,1,829,1,829, + 1,830,1,830,1,830,1,830,1,830,3,830,11508,8,830,1,831,1,831,1,831, + 5,831,11513,8,831,10,831,12,831,11516,9,831,1,832,1,832,1,832,3, + 832,11521,8,832,1,833,1,833,1,833,1,833,3,833,11527,8,833,1,834, + 1,834,3,834,11531,8,834,1,835,1,835,3,835,11535,8,835,1,835,1,835, + 1,835,1,835,1,835,1,835,1,836,1,836,1,837,1,837,1,837,3,837,11548, + 8,837,1,838,1,838,1,838,1,838,1,838,1,838,1,838,1,838,1,838,1,838, + 1,838,1,838,1,838,3,838,11563,8,838,3,838,11565,8,838,1,839,1,839, + 3,839,11569,8,839,1,839,1,839,1,839,1,840,3,840,11575,8,840,1,840, + 1,840,1,840,3,840,11580,8,840,1,840,1,840,3,840,11584,8,840,1,840, + 3,840,11587,8,840,1,840,3,840,11590,8,840,1,840,1,840,1,840,1,840, + 1,840,4,840,11597,8,840,11,840,12,840,11598,1,841,3,841,11602,8, + 841,1,841,1,841,3,841,11606,8,841,1,841,1,841,3,841,11610,8,841, + 3,841,11612,8,841,1,841,3,841,11615,8,841,1,841,3,841,11618,8,841, + 1,842,1,842,1,843,1,843,1,843,1,843,3,843,11626,8,843,1,843,1,843, + 1,843,1,843,1,843,3,843,11633,8,843,1,843,1,843,1,843,1,843,1,843, + 3,843,11640,8,843,1,843,1,843,1,843,1,843,3,843,11646,8,843,3,843, + 11648,8,843,1,844,1,844,1,844,1,844,1,844,3,844,11655,8,844,1,844, + 1,844,1,844,3,844,11660,8,844,1,844,1,844,1,845,1,845,1,845,1,845, + 1,845,1,845,1,845,1,845,1,845,1,845,1,845,1,845,1,845,1,845,4,845, + 11678,8,845,11,845,12,845,11679,1,846,1,846,1,846,1,846,3,846,11686, + 8,846,1,847,1,847,1,847,1,847,5,847,11692,8,847,10,847,12,847,11695, + 9,847,1,847,1,847,1,848,1,848,3,848,11701,8,848,1,849,1,849,1,849, + 1,849,1,850,1,850,1,850,1,851,1,851,3,851,11712,8,851,1,851,1,851, + 1,852,1,852,3,852,11718,8,852,1,852,1,852,1,853,1,853,3,853,11724, + 8,853,1,853,1,853,1,854,1,854,1,854,1,854,1,854,1,854,1,854,1,854, + 1,854,3,854,11737,8,854,1,854,3,854,11740,8,854,1,855,1,855,3,855, + 11744,8,855,1,856,1,856,1,856,3,856,11749,8,856,1,857,4,857,11752, + 8,857,11,857,12,857,11753,1,858,1,858,1,858,1,858,1,858,1,859,1, + 859,1,859,5,859,11764,8,859,10,859,12,859,11767,9,859,1,860,1,860, + 1,860,3,860,11772,8,860,1,861,1,861,3,861,11776,8,861,1,862,1,862, + 3,862,11780,8,862,1,863,1,863,3,863,11784,8,863,1,864,1,864,1,864, + 1,865,1,865,3,865,11791,8,865,1,866,1,866,1,867,3,867,11796,8,867, + 1,867,3,867,11799,8,867,1,867,3,867,11802,8,867,1,867,3,867,11805, + 8,867,1,867,3,867,11808,8,867,1,867,3,867,11811,8,867,1,867,3,867, + 11814,8,867,1,868,1,868,1,869,1,869,1,870,1,870,1,871,1,871,1,872, + 1,872,3,872,11826,8,872,1,873,1,873,1,873,1,873,1,873,0,1,1250,874, + 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44, + 46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88, + 90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124, + 126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156, + 158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188, + 190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220, + 222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252, + 254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284, + 286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316, + 318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348, + 350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380, + 382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412, + 414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444, + 446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476, + 478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508, + 510,512,514,516,518,520,522,524,526,528,530,532,534,536,538,540, + 542,544,546,548,550,552,554,556,558,560,562,564,566,568,570,572, + 574,576,578,580,582,584,586,588,590,592,594,596,598,600,602,604, + 606,608,610,612,614,616,618,620,622,624,626,628,630,632,634,636, + 638,640,642,644,646,648,650,652,654,656,658,660,662,664,666,668, + 670,672,674,676,678,680,682,684,686,688,690,692,694,696,698,700, + 702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732, + 734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764, + 766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796, + 798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828, + 830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860, + 862,864,866,868,870,872,874,876,878,880,882,884,886,888,890,892, + 894,896,898,900,902,904,906,908,910,912,914,916,918,920,922,924, + 926,928,930,932,934,936,938,940,942,944,946,948,950,952,954,956, + 958,960,962,964,966,968,970,972,974,976,978,980,982,984,986,988, + 990,992,994,996,998,1000,1002,1004,1006,1008,1010,1012,1014,1016, + 1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042, + 1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068, + 1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094, + 1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120, + 1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146, + 1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172, + 1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198, + 1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224, + 1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250, + 1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276, + 1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302, + 1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328, + 1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354, + 1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380, + 1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406, + 1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432, + 1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458, + 1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484, + 1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510, + 1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536, + 1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562, + 1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588, + 1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614, + 1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640, + 1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666, + 1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692, + 1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718, + 1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744, + 1746,0,87,2,0,195,195,364,364,1,0,228,229,1,0,236,237,1,0,234,235, + 1,0,232,233,1,0,230,231,1,0,535,536,1,0,537,538,1,0,539,540,2,0, + 66,66,318,318,2,0,99,99,318,318,1,0,529,531,2,0,10,10,94,94,2,0, + 133,133,191,191,2,0,254,254,332,332,2,0,162,162,363,363,2,0,180, + 180,221,221,5,0,30,30,288,288,329,329,352,352,354,354,2,0,109,109, + 532,532,2,0,367,367,439,439,2,0,139,139,312,312,2,0,191,191,333, + 333,2,0,313,313,333,333,2,0,150,150,315,315,2,0,64,64,94,94,2,0, + 352,352,354,354,2,0,200,200,224,224,9,0,30,30,160,160,165,165,179, + 179,219,219,227,227,342,342,345,345,438,438,3,0,113,113,284,284, + 336,336,2,0,53,53,78,78,3,0,173,173,260,260,262,262,2,0,9,9,94,94, + 5,0,30,30,88,88,182,182,241,241,369,369,2,0,92,92,226,226,2,0,341, + 341,414,414,1,0,448,449,2,0,92,92,414,414,2,0,135,135,145,145,3, + 0,66,66,99,99,318,318,4,0,163,163,185,185,283,283,353,353,3,0,321, + 321,357,357,445,445,2,0,167,167,314,314,2,0,64,64,68,68,10,0,46, + 46,88,88,182,182,202,202,241,241,352,352,354,354,357,358,369,369, + 521,523,5,0,212,212,329,329,350,350,361,361,455,456,2,0,37,37,55, + 55,2,0,10,10,53,53,4,0,88,88,182,182,241,241,369,369,2,0,137,137, + 242,242,2,0,356,356,380,380,2,0,151,151,254,254,1,0,31,32,2,0,60, 60,96,96,2,0,99,99,349,349,2,0,201,201,334,334,1,0,527,528,2,0,213, 213,254,254,2,0,30,30,56,56,2,0,320,320,414,414,2,0,207,207,268, 268,4,0,113,113,115,115,119,119,126,126,2,0,360,360,477,477,2,0, @@ -71735,4097 +72227,4055 @@ export class PostgreSQLParser extends antlr.Parser { 238,386,433,452,455,469,471,471,473,473,475,475,478,488,547,548, 3,0,106,123,125,128,472,472,4,0,30,52,54,70,72,105,454,454,2,0,62, 62,116,116,2,0,10,10,20,20,2,0,167,167,507,507,1,0,512,517,2,0,144, - 144,210,210,36,0,33,33,35,35,43,45,53,53,57,57,61,61,92,92,116,116, - 123,123,130,130,144,144,153,153,157,157,161,161,167,167,172,172, - 207,207,210,210,241,241,249,249,265,265,268,269,279,279,293,293, - 307,307,313,313,319,319,323,324,333,333,360,360,433,434,477,477, - 490,502,504,504,506,518,520,520,13276,0,1755,1,0,0,0,2,1760,1,0, - 0,0,4,1762,1,0,0,0,6,1883,1,0,0,0,8,1885,1,0,0,0,10,1889,1,0,0,0, - 12,1892,1,0,0,0,14,1900,1,0,0,0,16,1905,1,0,0,0,18,1911,1,0,0,0, - 20,1949,1,0,0,0,22,1961,1,0,0,0,24,1963,1,0,0,0,26,1971,1,0,0,0, - 28,1983,1,0,0,0,30,1985,1,0,0,0,32,1994,1,0,0,0,34,2022,1,0,0,0, - 36,2024,1,0,0,0,38,2072,1,0,0,0,40,2074,1,0,0,0,42,2082,1,0,0,0, - 44,2089,1,0,0,0,46,2091,1,0,0,0,48,2106,1,0,0,0,50,2113,1,0,0,0, - 52,2122,1,0,0,0,54,2124,1,0,0,0,56,2138,1,0,0,0,58,2142,1,0,0,0, - 60,2178,1,0,0,0,62,2180,1,0,0,0,64,2188,1,0,0,0,66,2198,1,0,0,0, - 68,2205,1,0,0,0,70,2211,1,0,0,0,72,2217,1,0,0,0,74,2235,1,0,0,0, - 76,2239,1,0,0,0,78,2243,1,0,0,0,80,2247,1,0,0,0,82,2249,1,0,0,0, - 84,2260,1,0,0,0,86,2264,1,0,0,0,88,2269,1,0,0,0,90,2274,1,0,0,0, - 92,2276,1,0,0,0,94,2288,1,0,0,0,96,2295,1,0,0,0,98,2297,1,0,0,0, - 100,2299,1,0,0,0,102,2301,1,0,0,0,104,2437,1,0,0,0,106,2439,1,0, - 0,0,108,2456,1,0,0,0,110,2458,1,0,0,0,112,2472,1,0,0,0,114,2474, - 1,0,0,0,116,2490,1,0,0,0,118,2492,1,0,0,0,120,2758,1,0,0,0,122,2765, - 1,0,0,0,124,2767,1,0,0,0,126,2769,1,0,0,0,128,2772,1,0,0,0,130,2781, - 1,0,0,0,132,2783,1,0,0,0,134,2787,1,0,0,0,136,2790,1,0,0,0,138,2798, - 1,0,0,0,140,2810,1,0,0,0,142,2827,1,0,0,0,144,2855,1,0,0,0,146,2857, - 1,0,0,0,148,2860,1,0,0,0,150,2868,1,0,0,0,152,2873,1,0,0,0,154,2910, - 1,0,0,0,156,2912,1,0,0,0,158,2954,1,0,0,0,160,2956,1,0,0,0,162,2958, - 1,0,0,0,164,2963,1,0,0,0,166,2970,1,0,0,0,168,2975,1,0,0,0,170,3017, - 1,0,0,0,172,3019,1,0,0,0,174,3022,1,0,0,0,176,3027,1,0,0,0,178,3029, - 1,0,0,0,180,3037,1,0,0,0,182,3048,1,0,0,0,184,3050,1,0,0,0,186,3058, - 1,0,0,0,188,3060,1,0,0,0,190,3143,1,0,0,0,192,3145,1,0,0,0,194,3147, - 1,0,0,0,196,3149,1,0,0,0,198,3153,1,0,0,0,200,3161,1,0,0,0,202,3172, - 1,0,0,0,204,3176,1,0,0,0,206,3178,1,0,0,0,208,3199,1,0,0,0,210,3220, - 1,0,0,0,212,3223,1,0,0,0,214,3232,1,0,0,0,216,3242,1,0,0,0,218,3263, - 1,0,0,0,220,3323,1,0,0,0,222,3325,1,0,0,0,224,3334,1,0,0,0,226,3339, - 1,0,0,0,228,3341,1,0,0,0,230,3344,1,0,0,0,232,3352,1,0,0,0,234,3355, - 1,0,0,0,236,3362,1,0,0,0,238,3450,1,0,0,0,240,3452,1,0,0,0,242,3455, - 1,0,0,0,244,3459,1,0,0,0,246,3467,1,0,0,0,248,3472,1,0,0,0,250,3475, - 1,0,0,0,252,3483,1,0,0,0,254,3493,1,0,0,0,256,3506,1,0,0,0,258,3508, - 1,0,0,0,260,3512,1,0,0,0,262,3525,1,0,0,0,264,3527,1,0,0,0,266,3532, - 1,0,0,0,268,3534,1,0,0,0,270,3541,1,0,0,0,272,3572,1,0,0,0,274,3574, - 1,0,0,0,276,3583,1,0,0,0,278,3585,1,0,0,0,280,3594,1,0,0,0,282,3598, - 1,0,0,0,284,3606,1,0,0,0,286,3611,1,0,0,0,288,3615,1,0,0,0,290,3634, - 1,0,0,0,292,3644,1,0,0,0,294,3658,1,0,0,0,296,3674,1,0,0,0,298,3680, - 1,0,0,0,300,3695,1,0,0,0,302,3708,1,0,0,0,304,3710,1,0,0,0,306,3720, - 1,0,0,0,308,3732,1,0,0,0,310,3740,1,0,0,0,312,3742,1,0,0,0,314,3747, - 1,0,0,0,316,3785,1,0,0,0,318,3787,1,0,0,0,320,3795,1,0,0,0,322,3797, - 1,0,0,0,324,3805,1,0,0,0,326,3827,1,0,0,0,328,3829,1,0,0,0,330,3833, - 1,0,0,0,332,3840,1,0,0,0,334,3842,1,0,0,0,336,3844,1,0,0,0,338,3846, - 1,0,0,0,340,3857,1,0,0,0,342,3860,1,0,0,0,344,3874,1,0,0,0,346,3884, - 1,0,0,0,348,3886,1,0,0,0,350,3895,1,0,0,0,352,3898,1,0,0,0,354,4003, - 1,0,0,0,356,4005,1,0,0,0,358,4024,1,0,0,0,360,4027,1,0,0,0,362,4031, - 1,0,0,0,364,4050,1,0,0,0,366,4052,1,0,0,0,368,4057,1,0,0,0,370,4065, - 1,0,0,0,372,4070,1,0,0,0,374,4085,1,0,0,0,376,4087,1,0,0,0,378,4090, - 1,0,0,0,380,4092,1,0,0,0,382,4094,1,0,0,0,384,4113,1,0,0,0,386,4116, - 1,0,0,0,388,4121,1,0,0,0,390,4123,1,0,0,0,392,4172,1,0,0,0,394,4174, - 1,0,0,0,396,4192,1,0,0,0,398,4194,1,0,0,0,400,4199,1,0,0,0,402,4214, - 1,0,0,0,404,4216,1,0,0,0,406,4225,1,0,0,0,408,4245,1,0,0,0,410,4259, - 1,0,0,0,412,4293,1,0,0,0,414,4323,1,0,0,0,416,4325,1,0,0,0,418,4330, - 1,0,0,0,420,4336,1,0,0,0,422,4339,1,0,0,0,424,4342,1,0,0,0,426,4348, - 1,0,0,0,428,4351,1,0,0,0,430,4353,1,0,0,0,432,4362,1,0,0,0,434,4418, - 1,0,0,0,436,4424,1,0,0,0,438,4426,1,0,0,0,440,4432,1,0,0,0,442,4434, - 1,0,0,0,444,4449,1,0,0,0,446,4451,1,0,0,0,448,4455,1,0,0,0,450,4459, - 1,0,0,0,452,4466,1,0,0,0,454,4468,1,0,0,0,456,4470,1,0,0,0,458,4472, - 1,0,0,0,460,4478,1,0,0,0,462,4480,1,0,0,0,464,4482,1,0,0,0,466,4491, - 1,0,0,0,468,4495,1,0,0,0,470,4508,1,0,0,0,472,4510,1,0,0,0,474,4516, - 1,0,0,0,476,4530,1,0,0,0,478,4556,1,0,0,0,480,4558,1,0,0,0,482,4566, - 1,0,0,0,484,4572,1,0,0,0,486,4580,1,0,0,0,488,4592,1,0,0,0,490,4594, - 1,0,0,0,492,4706,1,0,0,0,494,4708,1,0,0,0,496,4712,1,0,0,0,498,4720, - 1,0,0,0,500,4731,1,0,0,0,502,4733,1,0,0,0,504,4737,1,0,0,0,506,4745, - 1,0,0,0,508,4749,1,0,0,0,510,4751,1,0,0,0,512,4802,1,0,0,0,514,4804, - 1,0,0,0,516,4808,1,0,0,0,518,4826,1,0,0,0,520,4865,1,0,0,0,522,4867, - 1,0,0,0,524,4869,1,0,0,0,526,4878,1,0,0,0,528,4880,1,0,0,0,530,4882, - 1,0,0,0,532,4907,1,0,0,0,534,4909,1,0,0,0,536,4929,1,0,0,0,538,4931, - 1,0,0,0,540,5317,1,0,0,0,542,5319,1,0,0,0,544,5363,1,0,0,0,546,5396, - 1,0,0,0,548,5398,1,0,0,0,550,5400,1,0,0,0,552,5408,1,0,0,0,554,5412, - 1,0,0,0,556,5416,1,0,0,0,558,5420,1,0,0,0,560,5426,1,0,0,0,562,5430, - 1,0,0,0,564,5438,1,0,0,0,566,5453,1,0,0,0,568,5620,1,0,0,0,570,5624, - 1,0,0,0,572,5735,1,0,0,0,574,5737,1,0,0,0,576,5742,1,0,0,0,578,5748, - 1,0,0,0,580,5835,1,0,0,0,582,5837,1,0,0,0,584,5839,1,0,0,0,586,5841, - 1,0,0,0,588,5871,1,0,0,0,590,5889,1,0,0,0,592,5891,1,0,0,0,594,5899, - 1,0,0,0,596,5901,1,0,0,0,598,5925,1,0,0,0,600,5985,1,0,0,0,602,5987, - 1,0,0,0,604,5998,1,0,0,0,606,6000,1,0,0,0,608,6004,1,0,0,0,610,6037, - 1,0,0,0,612,6039,1,0,0,0,614,6043,1,0,0,0,616,6047,1,0,0,0,618,6056, - 1,0,0,0,620,6068,1,0,0,0,622,6100,1,0,0,0,624,6102,1,0,0,0,626,6104, - 1,0,0,0,628,6141,1,0,0,0,630,6143,1,0,0,0,632,6145,1,0,0,0,634,6147, - 1,0,0,0,636,6150,1,0,0,0,638,6181,1,0,0,0,640,6194,1,0,0,0,642,6196, - 1,0,0,0,644,6201,1,0,0,0,646,6209,1,0,0,0,648,6212,1,0,0,0,650,6214, - 1,0,0,0,652,6220,1,0,0,0,654,6222,1,0,0,0,656,6249,1,0,0,0,658,6260, - 1,0,0,0,660,6263,1,0,0,0,662,6269,1,0,0,0,664,6277,1,0,0,0,666,6293, - 1,0,0,0,668,6295,1,0,0,0,670,6311,1,0,0,0,672,6313,1,0,0,0,674,6329, - 1,0,0,0,676,6331,1,0,0,0,678,6337,1,0,0,0,680,6358,1,0,0,0,682,6367, - 1,0,0,0,684,6369,1,0,0,0,686,6371,1,0,0,0,688,6385,1,0,0,0,690,6387, - 1,0,0,0,692,6392,1,0,0,0,694,6394,1,0,0,0,696,6409,1,0,0,0,698,6417, - 1,0,0,0,700,6420,1,0,0,0,702,6429,1,0,0,0,704,6468,1,0,0,0,706,6495, - 1,0,0,0,708,6497,1,0,0,0,710,6509,1,0,0,0,712,6512,1,0,0,0,714,6515, - 1,0,0,0,716,6523,1,0,0,0,718,6535,1,0,0,0,720,6538,1,0,0,0,722,6542, - 1,0,0,0,724,6571,1,0,0,0,726,6573,1,0,0,0,728,6582,1,0,0,0,730,6613, - 1,0,0,0,732,6620,1,0,0,0,734,6625,1,0,0,0,736,6633,1,0,0,0,738,6636, - 1,0,0,0,740,6640,1,0,0,0,742,6647,1,0,0,0,744,6686,1,0,0,0,746,6692, - 1,0,0,0,748,6694,1,0,0,0,750,6697,1,0,0,0,752,6744,1,0,0,0,754,6762, - 1,0,0,0,756,6774,1,0,0,0,758,6791,1,0,0,0,760,6793,1,0,0,0,762,6801, - 1,0,0,0,764,6815,1,0,0,0,766,7208,1,0,0,0,768,7210,1,0,0,0,770,7212, - 1,0,0,0,772,7284,1,0,0,0,774,7286,1,0,0,0,776,7473,1,0,0,0,778,7475, - 1,0,0,0,780,7483,1,0,0,0,782,7499,1,0,0,0,784,7506,1,0,0,0,786,7508, - 1,0,0,0,788,7701,1,0,0,0,790,7703,1,0,0,0,792,7712,1,0,0,0,794,7720, - 1,0,0,0,796,7760,1,0,0,0,798,7762,1,0,0,0,800,7772,1,0,0,0,802,7780, - 1,0,0,0,804,7860,1,0,0,0,806,7862,1,0,0,0,808,7888,1,0,0,0,810,7891, - 1,0,0,0,812,7907,1,0,0,0,814,7909,1,0,0,0,816,7911,1,0,0,0,818,7913, - 1,0,0,0,820,7915,1,0,0,0,822,7920,1,0,0,0,824,7923,1,0,0,0,826,7930, - 1,0,0,0,828,8001,1,0,0,0,830,8003,1,0,0,0,832,8015,1,0,0,0,834,8017, - 1,0,0,0,836,8027,1,0,0,0,838,8029,1,0,0,0,840,8035,1,0,0,0,842,8067, - 1,0,0,0,844,8074,1,0,0,0,846,8077,1,0,0,0,848,8086,1,0,0,0,850,8089, - 1,0,0,0,852,8093,1,0,0,0,854,8110,1,0,0,0,856,8112,1,0,0,0,858,8114, - 1,0,0,0,860,8133,1,0,0,0,862,8139,1,0,0,0,864,8147,1,0,0,0,866,8149, - 1,0,0,0,868,8155,1,0,0,0,870,8160,1,0,0,0,872,8169,1,0,0,0,874,8195, - 1,0,0,0,876,8197,1,0,0,0,878,8267,1,0,0,0,880,8269,1,0,0,0,882,8271, - 1,0,0,0,884,8302,1,0,0,0,886,8304,1,0,0,0,888,8315,1,0,0,0,890,8344, - 1,0,0,0,892,8360,1,0,0,0,894,8362,1,0,0,0,896,8370,1,0,0,0,898,8372, - 1,0,0,0,900,8378,1,0,0,0,902,8382,1,0,0,0,904,8384,1,0,0,0,906,8386, - 1,0,0,0,908,8397,1,0,0,0,910,8399,1,0,0,0,912,8403,1,0,0,0,914,8407, - 1,0,0,0,916,8412,1,0,0,0,918,8414,1,0,0,0,920,8416,1,0,0,0,922,8420, - 1,0,0,0,924,8424,1,0,0,0,926,8432,1,0,0,0,928,8452,1,0,0,0,930,8463, - 1,0,0,0,932,8465,1,0,0,0,934,8473,1,0,0,0,936,8479,1,0,0,0,938,8483, - 1,0,0,0,940,8485,1,0,0,0,942,8493,1,0,0,0,944,8501,1,0,0,0,946,8526, - 1,0,0,0,948,8528,1,0,0,0,950,8542,1,0,0,0,952,8545,1,0,0,0,954,8557, - 1,0,0,0,956,8566,1,0,0,0,958,8578,1,0,0,0,960,8580,1,0,0,0,962,8588, - 1,0,0,0,964,8591,1,0,0,0,966,8615,1,0,0,0,968,8617,1,0,0,0,970,8621, - 1,0,0,0,972,8635,1,0,0,0,974,8638,1,0,0,0,976,8649,1,0,0,0,978,8665, - 1,0,0,0,980,8667,1,0,0,0,982,8672,1,0,0,0,984,8675,1,0,0,0,986,8690, - 1,0,0,0,988,8716,1,0,0,0,990,8718,1,0,0,0,992,8721,1,0,0,0,994,8729, - 1,0,0,0,996,8737,1,0,0,0,998,8746,1,0,0,0,1000,8754,1,0,0,0,1002, - 8758,1,0,0,0,1004,8768,1,0,0,0,1006,8799,1,0,0,0,1008,8803,1,0,0, - 0,1010,8850,1,0,0,0,1012,8865,1,0,0,0,1014,8867,1,0,0,0,1016,8871, - 1,0,0,0,1018,8877,1,0,0,0,1020,8885,1,0,0,0,1022,8902,1,0,0,0,1024, - 8910,1,0,0,0,1026,8927,1,0,0,0,1028,8929,1,0,0,0,1030,8931,1,0,0, - 0,1032,8940,1,0,0,0,1034,8958,1,0,0,0,1036,8960,1,0,0,0,1038,8962, - 1,0,0,0,1040,8964,1,0,0,0,1042,8972,1,0,0,0,1044,8974,1,0,0,0,1046, - 8976,1,0,0,0,1048,8980,1,0,0,0,1050,8988,1,0,0,0,1052,9009,1,0,0, - 0,1054,9011,1,0,0,0,1056,9013,1,0,0,0,1058,9019,1,0,0,0,1060,9036, - 1,0,0,0,1062,9045,1,0,0,0,1064,9047,1,0,0,0,1066,9054,1,0,0,0,1068, - 9058,1,0,0,0,1070,9060,1,0,0,0,1072,9062,1,0,0,0,1074,9064,1,0,0, - 0,1076,9071,1,0,0,0,1078,9088,1,0,0,0,1080,9090,1,0,0,0,1082,9093, - 1,0,0,0,1084,9098,1,0,0,0,1086,9103,1,0,0,0,1088,9109,1,0,0,0,1090, - 9116,1,0,0,0,1092,9118,1,0,0,0,1094,9121,1,0,0,0,1096,9125,1,0,0, - 0,1098,9132,1,0,0,0,1100,9144,1,0,0,0,1102,9147,1,0,0,0,1104,9161, - 1,0,0,0,1106,9164,1,0,0,0,1108,9233,1,0,0,0,1110,9257,1,0,0,0,1112, - 9266,1,0,0,0,1114,9280,1,0,0,0,1116,9282,1,0,0,0,1118,9293,1,0,0, - 0,1120,9322,1,0,0,0,1122,9325,1,0,0,0,1124,9370,1,0,0,0,1126,9372, - 1,0,0,0,1128,9380,1,0,0,0,1130,9388,1,0,0,0,1132,9395,1,0,0,0,1134, - 9403,1,0,0,0,1136,9420,1,0,0,0,1138,9422,1,0,0,0,1140,9426,1,0,0, - 0,1142,9434,1,0,0,0,1144,9439,1,0,0,0,1146,9442,1,0,0,0,1148,9445, - 1,0,0,0,1150,9452,1,0,0,0,1152,9454,1,0,0,0,1154,9462,1,0,0,0,1156, - 9467,1,0,0,0,1158,9488,1,0,0,0,1160,9496,1,0,0,0,1162,9506,1,0,0, - 0,1164,9518,1,0,0,0,1166,9520,1,0,0,0,1168,9534,1,0,0,0,1170,9554, - 1,0,0,0,1172,9563,1,0,0,0,1174,9581,1,0,0,0,1176,9587,1,0,0,0,1178, - 9589,1,0,0,0,1180,9596,1,0,0,0,1182,9624,1,0,0,0,1184,9626,1,0,0, - 0,1186,9632,1,0,0,0,1188,9636,1,0,0,0,1190,9638,1,0,0,0,1192,9646, - 1,0,0,0,1194,9650,1,0,0,0,1196,9657,1,0,0,0,1198,9674,1,0,0,0,1200, - 9676,1,0,0,0,1202,9678,1,0,0,0,1204,9688,1,0,0,0,1206,9696,1,0,0, - 0,1208,9723,1,0,0,0,1210,9725,1,0,0,0,1212,9732,1,0,0,0,1214,9735, - 1,0,0,0,1216,9737,1,0,0,0,1218,9741,1,0,0,0,1220,9749,1,0,0,0,1222, - 9757,1,0,0,0,1224,9765,1,0,0,0,1226,9774,1,0,0,0,1228,9778,1,0,0, - 0,1230,9782,1,0,0,0,1232,9808,1,0,0,0,1234,9822,1,0,0,0,1236,9842, - 1,0,0,0,1238,9852,1,0,0,0,1240,9856,1,0,0,0,1242,9864,1,0,0,0,1244, - 9872,1,0,0,0,1246,9878,1,0,0,0,1248,9882,1,0,0,0,1250,9889,1,0,0, - 0,1252,9894,1,0,0,0,1254,9909,1,0,0,0,1256,9989,1,0,0,0,1258,9991, - 1,0,0,0,1260,9993,1,0,0,0,1262,10032,1,0,0,0,1264,10036,1,0,0,0, - 1266,10222,1,0,0,0,1268,10229,1,0,0,0,1270,10241,1,0,0,0,1272,10243, - 1,0,0,0,1274,10248,1,0,0,0,1276,10256,1,0,0,0,1278,10261,1,0,0,0, - 1280,10267,1,0,0,0,1282,10284,1,0,0,0,1284,10286,1,0,0,0,1286,10289, - 1,0,0,0,1288,10295,1,0,0,0,1290,10301,1,0,0,0,1292,10304,1,0,0,0, - 1294,10312,1,0,0,0,1296,10316,1,0,0,0,1298,10321,1,0,0,0,1300,10336, - 1,0,0,0,1302,10338,1,0,0,0,1304,10357,1,0,0,0,1306,10365,1,0,0,0, - 1308,10374,1,0,0,0,1310,10376,1,0,0,0,1312,10397,1,0,0,0,1314,10399, - 1,0,0,0,1316,10406,1,0,0,0,1318,10412,1,0,0,0,1320,10416,1,0,0,0, - 1322,10418,1,0,0,0,1324,10426,1,0,0,0,1326,10434,1,0,0,0,1328,10448, - 1,0,0,0,1330,10450,1,0,0,0,1332,10458,1,0,0,0,1334,10466,1,0,0,0, - 1336,10479,1,0,0,0,1338,10483,1,0,0,0,1340,10485,1,0,0,0,1342,10498, - 1,0,0,0,1344,10500,1,0,0,0,1346,10508,1,0,0,0,1348,10515,1,0,0,0, - 1350,10523,1,0,0,0,1352,10535,1,0,0,0,1354,10537,1,0,0,0,1356,10539, - 1,0,0,0,1358,10548,1,0,0,0,1360,10579,1,0,0,0,1362,10588,1,0,0,0, - 1364,10595,1,0,0,0,1366,10597,1,0,0,0,1368,10608,1,0,0,0,1370,10612, - 1,0,0,0,1372,10617,1,0,0,0,1374,10620,1,0,0,0,1376,10622,1,0,0,0, - 1378,10643,1,0,0,0,1380,10645,1,0,0,0,1382,10648,1,0,0,0,1384,10655, - 1,0,0,0,1386,10658,1,0,0,0,1388,10660,1,0,0,0,1390,10676,1,0,0,0, - 1392,10678,1,0,0,0,1394,10686,1,0,0,0,1396,10694,1,0,0,0,1398,10702, - 1,0,0,0,1400,10710,1,0,0,0,1402,10718,1,0,0,0,1404,10722,1,0,0,0, - 1406,10726,1,0,0,0,1408,10730,1,0,0,0,1410,10734,1,0,0,0,1412,10738, - 1,0,0,0,1414,10742,1,0,0,0,1416,10746,1,0,0,0,1418,10754,1,0,0,0, - 1420,10762,1,0,0,0,1422,10766,1,0,0,0,1424,10770,1,0,0,0,1426,10774, - 1,0,0,0,1428,10776,1,0,0,0,1430,10782,1,0,0,0,1432,10788,1,0,0,0, - 1434,10790,1,0,0,0,1436,10792,1,0,0,0,1438,10794,1,0,0,0,1440,10796, - 1,0,0,0,1442,10798,1,0,0,0,1444,10804,1,0,0,0,1446,10810,1,0,0,0, - 1448,10816,1,0,0,0,1450,10853,1,0,0,0,1452,10855,1,0,0,0,1454,10857, - 1,0,0,0,1456,10859,1,0,0,0,1458,10861,1,0,0,0,1460,10863,1,0,0,0, - 1462,10878,1,0,0,0,1464,10880,1,0,0,0,1466,10888,1,0,0,0,1468,10890, - 1,0,0,0,1470,10892,1,0,0,0,1472,10899,1,0,0,0,1474,10901,1,0,0,0, - 1476,10913,1,0,0,0,1478,10915,1,0,0,0,1480,10929,1,0,0,0,1482,10933, - 1,0,0,0,1484,10942,1,0,0,0,1486,10948,1,0,0,0,1488,10952,1,0,0,0, - 1490,10958,1,0,0,0,1492,10966,1,0,0,0,1494,10978,1,0,0,0,1496,10980, - 1,0,0,0,1498,10982,1,0,0,0,1500,11035,1,0,0,0,1502,11037,1,0,0,0, - 1504,11039,1,0,0,0,1506,11041,1,0,0,0,1508,11048,1,0,0,0,1510,11071, - 1,0,0,0,1512,11073,1,0,0,0,1514,11079,1,0,0,0,1516,11083,1,0,0,0, - 1518,11085,1,0,0,0,1520,11092,1,0,0,0,1522,11099,1,0,0,0,1524,11102, - 1,0,0,0,1526,11106,1,0,0,0,1528,11113,1,0,0,0,1530,11115,1,0,0,0, - 1532,11139,1,0,0,0,1534,11141,1,0,0,0,1536,11148,1,0,0,0,1538,11150, - 1,0,0,0,1540,11158,1,0,0,0,1542,11161,1,0,0,0,1544,11165,1,0,0,0, - 1546,11167,1,0,0,0,1548,11171,1,0,0,0,1550,11173,1,0,0,0,1552,11178, - 1,0,0,0,1554,11183,1,0,0,0,1556,11189,1,0,0,0,1558,11193,1,0,0,0, - 1560,11195,1,0,0,0,1562,11200,1,0,0,0,1564,11230,1,0,0,0,1566,11232, - 1,0,0,0,1568,11252,1,0,0,0,1570,11256,1,0,0,0,1572,11258,1,0,0,0, - 1574,11263,1,0,0,0,1576,11272,1,0,0,0,1578,11274,1,0,0,0,1580,11282, - 1,0,0,0,1582,11286,1,0,0,0,1584,11288,1,0,0,0,1586,11292,1,0,0,0, - 1588,11303,1,0,0,0,1590,11320,1,0,0,0,1592,11326,1,0,0,0,1594,11328, - 1,0,0,0,1596,11338,1,0,0,0,1598,11341,1,0,0,0,1600,11345,1,0,0,0, - 1602,11353,1,0,0,0,1604,11355,1,0,0,0,1606,11358,1,0,0,0,1608,11363, - 1,0,0,0,1610,11368,1,0,0,0,1612,11390,1,0,0,0,1614,11404,1,0,0,0, - 1616,11408,1,0,0,0,1618,11413,1,0,0,0,1620,11415,1,0,0,0,1622,11417, - 1,0,0,0,1624,11429,1,0,0,0,1626,11431,1,0,0,0,1628,11438,1,0,0,0, - 1630,11440,1,0,0,0,1632,11458,1,0,0,0,1634,11494,1,0,0,0,1636,11496, - 1,0,0,0,1638,11505,1,0,0,0,1640,11510,1,0,0,0,1642,11512,1,0,0,0, - 1644,11516,1,0,0,0,1646,11524,1,0,0,0,1648,11532,1,0,0,0,1650,11534, - 1,0,0,0,1652,11541,1,0,0,0,1654,11544,1,0,0,0,1656,11560,1,0,0,0, - 1658,11562,1,0,0,0,1660,11576,1,0,0,0,1662,11578,1,0,0,0,1664,11605, - 1,0,0,0,1666,11607,1,0,0,0,1668,11618,1,0,0,0,1670,11624,1,0,0,0, - 1672,11628,1,0,0,0,1674,11630,1,0,0,0,1676,11640,1,0,0,0,1678,11645, - 1,0,0,0,1680,11662,1,0,0,0,1682,11664,1,0,0,0,1684,11672,1,0,0,0, - 1686,11709,1,0,0,0,1688,11717,1,0,0,0,1690,11745,1,0,0,0,1692,11747, - 1,0,0,0,1694,11761,1,0,0,0,1696,11783,1,0,0,0,1698,11785,1,0,0,0, - 1700,11798,1,0,0,0,1702,11800,1,0,0,0,1704,11804,1,0,0,0,1706,11807, - 1,0,0,0,1708,11813,1,0,0,0,1710,11819,1,0,0,0,1712,11837,1,0,0,0, - 1714,11841,1,0,0,0,1716,11846,1,0,0,0,1718,11849,1,0,0,0,1720,11853, - 1,0,0,0,1722,11858,1,0,0,0,1724,11869,1,0,0,0,1726,11873,1,0,0,0, - 1728,11877,1,0,0,0,1730,11881,1,0,0,0,1732,11883,1,0,0,0,1734,11888, - 1,0,0,0,1736,11890,1,0,0,0,1738,11893,1,0,0,0,1740,11913,1,0,0,0, - 1742,11915,1,0,0,0,1744,11917,1,0,0,0,1746,11919,1,0,0,0,1748,11921, - 1,0,0,0,1750,11925,1,0,0,0,1752,1754,3,4,2,0,1753,1752,1,0,0,0,1754, - 1757,1,0,0,0,1755,1753,1,0,0,0,1755,1756,1,0,0,0,1756,1758,1,0,0, - 0,1757,1755,1,0,0,0,1758,1759,5,0,0,1,1759,1,1,0,0,0,1760,1761,3, - 1506,753,0,1761,3,1,0,0,0,1762,1764,3,6,3,0,1763,1765,5,7,0,0,1764, - 1763,1,0,0,0,1764,1765,1,0,0,0,1765,5,1,0,0,0,1766,1884,3,486,243, - 0,1767,1884,3,866,433,0,1768,1884,3,858,429,0,1769,1884,3,860,430, - 0,1770,1884,3,616,308,0,1771,1884,3,872,436,0,1772,1884,3,512,256, - 0,1773,1884,3,348,174,0,1774,1884,3,354,177,0,1775,1884,3,364,182, - 0,1776,1884,3,390,195,0,1777,1884,3,716,358,0,1778,1884,3,42,21, - 0,1779,1884,3,772,386,0,1780,1884,3,776,388,0,1781,1884,3,788,394, - 0,1782,1884,3,778,389,0,1783,1884,3,786,393,0,1784,1884,3,408,204, - 0,1785,1884,3,410,205,0,1786,1884,3,308,154,0,1787,1884,3,868,434, - 0,1788,1884,3,104,52,0,1789,1884,3,764,382,0,1790,1884,3,150,75, - 0,1791,1884,3,796,398,0,1792,1884,3,30,15,0,1793,1884,3,32,16,0, - 1794,1884,3,26,13,0,1795,1884,3,804,402,0,1796,1884,3,290,145,0, - 1797,1884,3,878,439,0,1798,1884,3,876,438,0,1799,1884,3,404,202, - 0,1800,1884,3,892,446,0,1801,1884,3,10,5,0,1802,1884,3,100,50,0, - 1803,1884,3,156,78,0,1804,1884,3,884,442,0,1805,1884,3,568,284,0, - 1806,1884,3,94,47,0,1807,1884,3,158,79,0,1808,1884,3,430,215,0,1809, - 1884,3,292,146,0,1810,1884,3,490,245,0,1811,1884,3,744,372,0,1812, - 1884,3,882,441,0,1813,1884,3,870,435,0,1814,1884,3,342,171,0,1815, - 1884,3,356,178,0,1816,1884,3,382,191,0,1817,1884,3,392,196,0,1818, - 1884,3,654,327,0,1819,1884,3,40,20,0,1820,1884,3,298,149,0,1821, - 1884,3,516,258,0,1822,1884,3,530,265,0,1823,1884,3,790,395,0,1824, - 1884,3,532,266,0,1825,1884,3,406,203,0,1826,1884,3,324,162,0,1827, - 1884,3,46,23,0,1828,1884,3,306,153,0,1829,1884,3,188,94,0,1830,1884, - 3,798,399,0,1831,1884,3,288,144,0,1832,1884,3,338,169,0,1833,1884, - 3,750,375,0,1834,1884,3,434,217,0,1835,1884,3,478,239,0,1836,1884, - 3,12,6,0,1837,1884,3,24,12,0,1838,1884,3,400,200,0,1839,1884,3,846, - 423,0,1840,1884,3,950,475,0,1841,1884,3,994,497,0,1842,1884,3,492, - 246,0,1843,1884,3,970,485,0,1844,1884,3,102,51,0,1845,1884,3,738, - 369,0,1846,1884,3,540,270,0,1847,1884,3,946,473,0,1848,1884,3,928, - 464,0,1849,1884,3,578,289,0,1850,1884,3,586,293,0,1851,1884,3,608, - 304,0,1852,1884,3,1684,842,0,1853,1884,3,394,197,0,1854,1884,3,626, - 313,0,1855,1884,3,952,476,0,1856,1884,3,824,412,0,1857,1884,3,304, - 152,0,1858,1884,3,844,422,0,1859,1884,3,974,487,0,1860,1884,3,820, - 410,0,1861,1884,3,940,470,0,1862,1884,3,538,269,0,1863,1884,3,754, - 377,0,1864,1884,3,726,363,0,1865,1884,3,724,362,0,1866,1884,3,728, - 364,0,1867,1884,3,766,383,0,1868,1884,3,588,294,0,1869,1884,3,610, - 305,0,1870,1884,3,806,403,0,1871,1884,3,572,286,0,1872,1884,3,1002, - 501,0,1873,1884,3,828,414,0,1874,1884,3,564,282,0,1875,1884,3,826, - 413,0,1876,1884,3,984,492,0,1877,1884,3,890,445,0,1878,1884,3,82, - 41,0,1879,1884,3,54,27,0,1880,1884,3,92,46,0,1881,1884,3,840,420, - 0,1882,1884,3,8,4,0,1883,1766,1,0,0,0,1883,1767,1,0,0,0,1883,1768, - 1,0,0,0,1883,1769,1,0,0,0,1883,1770,1,0,0,0,1883,1771,1,0,0,0,1883, - 1772,1,0,0,0,1883,1773,1,0,0,0,1883,1774,1,0,0,0,1883,1775,1,0,0, - 0,1883,1776,1,0,0,0,1883,1777,1,0,0,0,1883,1778,1,0,0,0,1883,1779, - 1,0,0,0,1883,1780,1,0,0,0,1883,1781,1,0,0,0,1883,1782,1,0,0,0,1883, - 1783,1,0,0,0,1883,1784,1,0,0,0,1883,1785,1,0,0,0,1883,1786,1,0,0, - 0,1883,1787,1,0,0,0,1883,1788,1,0,0,0,1883,1789,1,0,0,0,1883,1790, - 1,0,0,0,1883,1791,1,0,0,0,1883,1792,1,0,0,0,1883,1793,1,0,0,0,1883, - 1794,1,0,0,0,1883,1795,1,0,0,0,1883,1796,1,0,0,0,1883,1797,1,0,0, - 0,1883,1798,1,0,0,0,1883,1799,1,0,0,0,1883,1800,1,0,0,0,1883,1801, - 1,0,0,0,1883,1802,1,0,0,0,1883,1803,1,0,0,0,1883,1804,1,0,0,0,1883, - 1805,1,0,0,0,1883,1806,1,0,0,0,1883,1807,1,0,0,0,1883,1808,1,0,0, - 0,1883,1809,1,0,0,0,1883,1810,1,0,0,0,1883,1811,1,0,0,0,1883,1812, - 1,0,0,0,1883,1813,1,0,0,0,1883,1814,1,0,0,0,1883,1815,1,0,0,0,1883, - 1816,1,0,0,0,1883,1817,1,0,0,0,1883,1818,1,0,0,0,1883,1819,1,0,0, - 0,1883,1820,1,0,0,0,1883,1821,1,0,0,0,1883,1822,1,0,0,0,1883,1823, - 1,0,0,0,1883,1824,1,0,0,0,1883,1825,1,0,0,0,1883,1826,1,0,0,0,1883, - 1827,1,0,0,0,1883,1828,1,0,0,0,1883,1829,1,0,0,0,1883,1830,1,0,0, - 0,1883,1831,1,0,0,0,1883,1832,1,0,0,0,1883,1833,1,0,0,0,1883,1834, - 1,0,0,0,1883,1835,1,0,0,0,1883,1836,1,0,0,0,1883,1837,1,0,0,0,1883, - 1838,1,0,0,0,1883,1839,1,0,0,0,1883,1840,1,0,0,0,1883,1841,1,0,0, - 0,1883,1842,1,0,0,0,1883,1843,1,0,0,0,1883,1844,1,0,0,0,1883,1845, - 1,0,0,0,1883,1846,1,0,0,0,1883,1847,1,0,0,0,1883,1848,1,0,0,0,1883, - 1849,1,0,0,0,1883,1850,1,0,0,0,1883,1851,1,0,0,0,1883,1852,1,0,0, - 0,1883,1853,1,0,0,0,1883,1854,1,0,0,0,1883,1855,1,0,0,0,1883,1856, - 1,0,0,0,1883,1857,1,0,0,0,1883,1858,1,0,0,0,1883,1859,1,0,0,0,1883, - 1860,1,0,0,0,1883,1861,1,0,0,0,1883,1862,1,0,0,0,1883,1863,1,0,0, - 0,1883,1864,1,0,0,0,1883,1865,1,0,0,0,1883,1866,1,0,0,0,1883,1867, - 1,0,0,0,1883,1868,1,0,0,0,1883,1869,1,0,0,0,1883,1870,1,0,0,0,1883, - 1871,1,0,0,0,1883,1872,1,0,0,0,1883,1873,1,0,0,0,1883,1874,1,0,0, - 0,1883,1875,1,0,0,0,1883,1876,1,0,0,0,1883,1877,1,0,0,0,1883,1878, - 1,0,0,0,1883,1879,1,0,0,0,1883,1880,1,0,0,0,1883,1881,1,0,0,0,1883, - 1882,1,0,0,0,1884,7,1,0,0,0,1885,1887,5,581,0,0,1886,1888,5,582, - 0,0,1887,1886,1,0,0,0,1887,1888,1,0,0,0,1888,9,1,0,0,0,1889,1890, - 5,433,0,0,1890,1891,3,1260,630,0,1891,11,1,0,0,0,1892,1893,5,46, - 0,0,1893,1894,5,318,0,0,1894,1896,3,1470,735,0,1895,1897,3,14,7, - 0,1896,1895,1,0,0,0,1896,1897,1,0,0,0,1897,1898,1,0,0,0,1898,1899, - 3,16,8,0,1899,13,1,0,0,0,1900,1901,5,105,0,0,1901,15,1,0,0,0,1902, - 1904,3,22,11,0,1903,1902,1,0,0,0,1904,1907,1,0,0,0,1905,1903,1,0, - 0,0,1905,1906,1,0,0,0,1906,17,1,0,0,0,1907,1905,1,0,0,0,1908,1910, - 3,20,10,0,1909,1908,1,0,0,0,1910,1913,1,0,0,0,1911,1909,1,0,0,0, - 1911,1912,1,0,0,0,1912,19,1,0,0,0,1913,1911,1,0,0,0,1914,1917,5, - 287,0,0,1915,1918,3,1460,730,0,1916,1918,5,78,0,0,1917,1915,1,0, - 0,0,1917,1916,1,0,0,0,1918,1950,1,0,0,0,1919,1920,7,0,0,0,1920,1921, - 5,287,0,0,1921,1950,3,1460,730,0,1922,1950,7,1,0,0,1923,1950,7,2, - 0,0,1924,1950,7,3,0,0,1925,1950,7,4,0,0,1926,1950,7,5,0,0,1927,1950, - 7,6,0,0,1928,1950,7,7,0,0,1929,1950,7,8,0,0,1930,1931,5,164,0,0, - 1931,1932,5,74,0,0,1932,1950,3,1466,733,0,1933,1934,5,371,0,0,1934, - 1935,5,368,0,0,1935,1950,3,1460,730,0,1936,1937,5,68,0,0,1937,1938, - 5,318,0,0,1938,1950,3,1418,709,0,1939,1940,5,68,0,0,1940,1941,5, - 66,0,0,1941,1950,3,1418,709,0,1942,1943,5,318,0,0,1943,1950,3,1474, - 737,0,1944,1945,5,134,0,0,1945,1950,3,1418,709,0,1946,1947,5,99, - 0,0,1947,1950,3,1474,737,0,1948,1950,3,1494,747,0,1949,1914,1,0, - 0,0,1949,1919,1,0,0,0,1949,1922,1,0,0,0,1949,1923,1,0,0,0,1949,1924, - 1,0,0,0,1949,1925,1,0,0,0,1949,1926,1,0,0,0,1949,1927,1,0,0,0,1949, - 1928,1,0,0,0,1949,1929,1,0,0,0,1949,1930,1,0,0,0,1949,1933,1,0,0, - 0,1949,1936,1,0,0,0,1949,1939,1,0,0,0,1949,1942,1,0,0,0,1949,1944, - 1,0,0,0,1949,1946,1,0,0,0,1949,1948,1,0,0,0,1950,21,1,0,0,0,1951, - 1962,3,20,10,0,1952,1953,5,348,0,0,1953,1962,3,1458,729,0,1954,1955, - 5,134,0,0,1955,1962,3,1474,737,0,1956,1957,5,318,0,0,1957,1962,3, - 1474,737,0,1958,1959,5,68,0,0,1959,1960,7,9,0,0,1960,1962,3,1474, - 737,0,1961,1951,1,0,0,0,1961,1952,1,0,0,0,1961,1954,1,0,0,0,1961, - 1956,1,0,0,0,1961,1958,1,0,0,0,1962,23,1,0,0,0,1963,1964,5,46,0, - 0,1964,1965,5,99,0,0,1965,1967,3,1470,735,0,1966,1968,3,14,7,0,1967, - 1966,1,0,0,0,1967,1968,1,0,0,0,1968,1969,1,0,0,0,1969,1970,3,16, - 8,0,1970,25,1,0,0,0,1971,1972,5,138,0,0,1972,1973,7,10,0,0,1973, - 1975,3,1472,736,0,1974,1976,3,14,7,0,1975,1974,1,0,0,0,1975,1976, - 1,0,0,0,1976,1977,1,0,0,0,1977,1978,3,18,9,0,1978,27,1,0,0,0,1979, - 1984,1,0,0,0,1980,1981,5,68,0,0,1981,1982,5,175,0,0,1982,1984,3, - 1422,711,0,1983,1979,1,0,0,0,1983,1980,1,0,0,0,1984,29,1,0,0,0,1985, - 1986,5,138,0,0,1986,1989,7,10,0,0,1987,1990,5,30,0,0,1988,1990,3, - 1472,736,0,1989,1987,1,0,0,0,1989,1988,1,0,0,0,1990,1991,1,0,0,0, - 1991,1992,3,28,14,0,1992,1993,3,88,44,0,1993,31,1,0,0,0,1994,1995, - 5,138,0,0,1995,1996,5,442,0,0,1996,1998,3,1428,714,0,1997,1999,3, - 660,330,0,1998,1997,1,0,0,0,1998,1999,1,0,0,0,1999,2000,1,0,0,0, - 2000,2001,3,34,17,0,2001,33,1,0,0,0,2002,2004,3,36,18,0,2003,2005, - 5,315,0,0,2004,2003,1,0,0,0,2004,2005,1,0,0,0,2005,2023,1,0,0,0, - 2006,2007,5,309,0,0,2007,2008,5,94,0,0,2008,2023,3,1426,713,0,2009, - 2010,5,282,0,0,2010,2011,5,94,0,0,2011,2023,3,1472,736,0,2012,2013, - 5,333,0,0,2013,2014,5,323,0,0,2014,2023,3,48,24,0,2015,2017,5,269, - 0,0,2016,2015,1,0,0,0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2019, - 5,462,0,0,2019,2020,5,80,0,0,2020,2021,5,204,0,0,2021,2023,3,1438, - 719,0,2022,2002,1,0,0,0,2022,2006,1,0,0,0,2022,2009,1,0,0,0,2022, - 2012,1,0,0,0,2022,2016,1,0,0,0,2023,35,1,0,0,0,2024,2028,3,38,19, - 0,2025,2027,3,38,19,0,2026,2025,1,0,0,0,2027,2030,1,0,0,0,2028,2026, - 1,0,0,0,2028,2029,1,0,0,0,2029,37,1,0,0,0,2030,2028,1,0,0,0,2031, - 2073,5,222,0,0,2032,2073,5,338,0,0,2033,2073,5,377,0,0,2034,2036, - 5,77,0,0,2035,2034,1,0,0,0,2035,2036,1,0,0,0,2036,2037,1,0,0,0,2037, - 2073,5,250,0,0,2038,2040,5,205,0,0,2039,2038,1,0,0,0,2039,2040,1, - 0,0,0,2040,2041,1,0,0,0,2041,2042,5,327,0,0,2042,2049,5,243,0,0, - 2043,2045,5,205,0,0,2044,2043,1,0,0,0,2044,2045,1,0,0,0,2045,2046, - 1,0,0,0,2046,2047,5,327,0,0,2047,2049,5,181,0,0,2048,2039,1,0,0, - 0,2048,2044,1,0,0,0,2049,2073,1,0,0,0,2050,2051,5,460,0,0,2051,2073, - 7,11,0,0,2052,2053,5,170,0,0,2053,2073,3,1440,720,0,2054,2055,5, - 320,0,0,2055,2073,3,1438,719,0,2056,2057,5,333,0,0,2057,2058,3,1438, - 719,0,2058,2061,7,12,0,0,2059,2062,3,1438,719,0,2060,2062,5,53,0, - 0,2061,2059,1,0,0,0,2061,2060,1,0,0,0,2062,2073,1,0,0,0,2063,2064, - 5,333,0,0,2064,2065,3,1438,719,0,2065,2066,5,64,0,0,2066,2067,5, - 434,0,0,2067,2073,1,0,0,0,2068,2069,5,313,0,0,2069,2073,3,1438,719, - 0,2070,2071,5,313,0,0,2071,2073,5,30,0,0,2072,2031,1,0,0,0,2072, - 2032,1,0,0,0,2072,2033,1,0,0,0,2072,2035,1,0,0,0,2072,2048,1,0,0, - 0,2072,2050,1,0,0,0,2072,2052,1,0,0,0,2072,2054,1,0,0,0,2072,2056, - 1,0,0,0,2072,2063,1,0,0,0,2072,2068,1,0,0,0,2072,2070,1,0,0,0,2073, - 39,1,0,0,0,2074,2075,5,46,0,0,2075,2076,5,66,0,0,2076,2078,3,1468, - 734,0,2077,2079,3,14,7,0,2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079, - 2080,1,0,0,0,2080,2081,3,16,8,0,2081,41,1,0,0,0,2082,2083,5,138, - 0,0,2083,2084,5,66,0,0,2084,2085,3,1472,736,0,2085,2086,3,44,22, - 0,2086,2087,5,99,0,0,2087,2088,3,1474,737,0,2088,43,1,0,0,0,2089, - 2090,7,13,0,0,2090,45,1,0,0,0,2091,2092,5,46,0,0,2092,2094,5,323, - 0,0,2093,2095,3,514,257,0,2094,2093,1,0,0,0,2094,2095,1,0,0,0,2095, - 2102,1,0,0,0,2096,2098,3,48,24,0,2097,2096,1,0,0,0,2097,2098,1,0, - 0,0,2098,2099,1,0,0,0,2099,2100,5,106,0,0,2100,2103,3,1472,736,0, - 2101,2103,3,48,24,0,2102,2097,1,0,0,0,2102,2101,1,0,0,0,2103,2104, - 1,0,0,0,2104,2105,3,50,25,0,2105,47,1,0,0,0,2106,2108,3,1476,738, - 0,2107,2109,3,560,280,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109, - 49,1,0,0,0,2110,2112,3,52,26,0,2111,2110,1,0,0,0,2112,2115,1,0,0, - 0,2113,2111,1,0,0,0,2113,2114,1,0,0,0,2114,51,1,0,0,0,2115,2113, - 1,0,0,0,2116,2123,3,188,94,0,2117,2123,3,626,313,0,2118,2123,3,306, - 153,0,2119,2123,3,434,217,0,2120,2123,3,586,293,0,2121,2123,3,840, - 420,0,2122,2116,1,0,0,0,2122,2117,1,0,0,0,2122,2118,1,0,0,0,2122, - 2119,1,0,0,0,2122,2120,1,0,0,0,2122,2121,1,0,0,0,2123,53,1,0,0,0, - 2124,2126,5,333,0,0,2125,2127,7,14,0,0,2126,2125,1,0,0,0,2126,2127, - 1,0,0,0,2127,2128,1,0,0,0,2128,2129,3,56,28,0,2129,55,1,0,0,0,2130, - 2131,5,356,0,0,2131,2139,3,834,417,0,2132,2133,5,332,0,0,2133,2134, - 5,154,0,0,2134,2135,5,36,0,0,2135,2136,5,356,0,0,2136,2139,3,834, - 417,0,2137,2139,3,60,30,0,2138,2130,1,0,0,0,2138,2132,1,0,0,0,2138, - 2137,1,0,0,0,2139,57,1,0,0,0,2140,2143,3,62,31,0,2141,2143,5,30, - 0,0,2142,2140,1,0,0,0,2142,2141,1,0,0,0,2143,2145,1,0,0,0,2144,2146, - 7,12,0,0,2145,2144,1,0,0,0,2145,2146,1,0,0,0,2146,2149,1,0,0,0,2147, - 2150,3,64,32,0,2148,2150,5,53,0,0,2149,2147,1,0,0,0,2149,2148,1, - 0,0,0,2149,2150,1,0,0,0,2150,59,1,0,0,0,2151,2179,3,58,29,0,2152, - 2153,3,62,31,0,2153,2154,5,64,0,0,2154,2155,5,434,0,0,2155,2179, - 1,0,0,0,2156,2157,5,418,0,0,2157,2158,5,386,0,0,2158,2179,3,74,37, - 0,2159,2160,5,152,0,0,2160,2179,3,1460,730,0,2161,2162,5,323,0,0, - 2162,2179,3,1424,712,0,2163,2165,5,267,0,0,2164,2166,3,76,38,0,2165, - 2164,1,0,0,0,2165,2166,1,0,0,0,2166,2179,1,0,0,0,2167,2168,5,318, - 0,0,2168,2179,3,80,40,0,2169,2170,5,332,0,0,2170,2171,5,106,0,0, - 2171,2179,3,80,40,0,2172,2173,5,383,0,0,2173,2174,5,279,0,0,2174, - 2179,3,1278,639,0,2175,2176,5,356,0,0,2176,2177,5,337,0,0,2177,2179, - 3,1460,730,0,2178,2151,1,0,0,0,2178,2152,1,0,0,0,2178,2156,1,0,0, - 0,2178,2159,1,0,0,0,2178,2161,1,0,0,0,2178,2163,1,0,0,0,2178,2167, - 1,0,0,0,2178,2169,1,0,0,0,2178,2172,1,0,0,0,2178,2175,1,0,0,0,2179, - 61,1,0,0,0,2180,2185,3,1476,738,0,2181,2182,5,11,0,0,2182,2184,3, - 1476,738,0,2183,2181,1,0,0,0,2184,2187,1,0,0,0,2185,2183,1,0,0,0, - 2185,2186,1,0,0,0,2186,63,1,0,0,0,2187,2185,1,0,0,0,2188,2193,3, - 66,33,0,2189,2190,5,6,0,0,2190,2192,3,66,33,0,2191,2189,1,0,0,0, - 2192,2195,1,0,0,0,2193,2191,1,0,0,0,2193,2194,1,0,0,0,2194,65,1, - 0,0,0,2195,2193,1,0,0,0,2196,2199,3,72,36,0,2197,2199,3,320,160, - 0,2198,2196,1,0,0,0,2198,2197,1,0,0,0,2199,67,1,0,0,0,2200,2201, - 5,300,0,0,2201,2206,7,15,0,0,2202,2203,5,310,0,0,2203,2206,5,300, - 0,0,2204,2206,5,330,0,0,2205,2200,1,0,0,0,2205,2202,1,0,0,0,2205, - 2204,1,0,0,0,2206,69,1,0,0,0,2207,2212,5,96,0,0,2208,2212,5,60,0, - 0,2209,2212,5,80,0,0,2210,2212,3,78,39,0,2211,2207,1,0,0,0,2211, - 2208,1,0,0,0,2211,2209,1,0,0,0,2211,2210,1,0,0,0,2212,71,1,0,0,0, - 2213,2218,5,96,0,0,2214,2218,5,60,0,0,2215,2218,5,80,0,0,2216,2218, - 3,80,40,0,2217,2213,1,0,0,0,2217,2214,1,0,0,0,2217,2215,1,0,0,0, - 2217,2216,1,0,0,0,2218,73,1,0,0,0,2219,2236,3,1460,730,0,2220,2236, - 3,1494,747,0,2221,2222,3,1204,602,0,2222,2224,3,1460,730,0,2223, - 2225,3,1208,604,0,2224,2223,1,0,0,0,2224,2225,1,0,0,0,2225,2236, - 1,0,0,0,2226,2227,3,1204,602,0,2227,2228,5,2,0,0,2228,2229,3,1458, - 729,0,2229,2230,5,3,0,0,2230,2231,3,1460,730,0,2231,2236,1,0,0,0, - 2232,2236,3,320,160,0,2233,2236,5,53,0,0,2234,2236,5,254,0,0,2235, - 2219,1,0,0,0,2235,2220,1,0,0,0,2235,2221,1,0,0,0,2235,2226,1,0,0, - 0,2235,2232,1,0,0,0,2235,2233,1,0,0,0,2235,2234,1,0,0,0,2236,75, - 1,0,0,0,2237,2240,3,1460,730,0,2238,2240,5,53,0,0,2239,2237,1,0, - 0,0,2239,2238,1,0,0,0,2240,77,1,0,0,0,2241,2244,3,1488,744,0,2242, - 2244,3,1460,730,0,2243,2241,1,0,0,0,2243,2242,1,0,0,0,2244,79,1, - 0,0,0,2245,2248,3,1490,745,0,2246,2248,3,1460,730,0,2247,2245,1, - 0,0,0,2247,2246,1,0,0,0,2248,81,1,0,0,0,2249,2250,5,313,0,0,2250, - 2251,3,84,42,0,2251,83,1,0,0,0,2252,2261,3,86,43,0,2253,2254,5,418, - 0,0,2254,2261,5,386,0,0,2255,2256,5,356,0,0,2256,2257,5,244,0,0, - 2257,2261,5,251,0,0,2258,2259,5,332,0,0,2259,2261,5,106,0,0,2260, - 2252,1,0,0,0,2260,2253,1,0,0,0,2260,2255,1,0,0,0,2260,2258,1,0,0, - 0,2261,85,1,0,0,0,2262,2265,3,62,31,0,2263,2265,5,30,0,0,2264,2262, - 1,0,0,0,2264,2263,1,0,0,0,2265,87,1,0,0,0,2266,2267,5,333,0,0,2267, - 2270,3,56,28,0,2268,2270,3,82,41,0,2269,2266,1,0,0,0,2269,2268,1, - 0,0,0,2270,89,1,0,0,0,2271,2272,5,333,0,0,2272,2275,3,60,30,0,2273, - 2275,3,82,41,0,2274,2271,1,0,0,0,2274,2273,1,0,0,0,2275,91,1,0,0, - 0,2276,2286,5,335,0,0,2277,2287,3,62,31,0,2278,2279,5,418,0,0,2279, - 2287,5,386,0,0,2280,2281,5,356,0,0,2281,2282,5,244,0,0,2282,2287, - 5,251,0,0,2283,2284,5,332,0,0,2284,2287,5,106,0,0,2285,2287,5,30, - 0,0,2286,2277,1,0,0,0,2286,2278,1,0,0,0,2286,2280,1,0,0,0,2286,2283, - 1,0,0,0,2286,2285,1,0,0,0,2287,93,1,0,0,0,2288,2289,5,333,0,0,2289, - 2290,5,165,0,0,2290,2291,3,96,48,0,2291,2292,3,98,49,0,2292,95,1, - 0,0,0,2293,2296,5,30,0,0,2294,2296,3,1392,696,0,2295,2293,1,0,0, - 0,2295,2294,1,0,0,0,2296,97,1,0,0,0,2297,2298,7,16,0,0,2298,99,1, - 0,0,0,2299,2300,5,155,0,0,2300,101,1,0,0,0,2301,2302,5,187,0,0,2302, - 2303,7,17,0,0,2303,103,1,0,0,0,2304,2305,5,138,0,0,2305,2307,5,92, - 0,0,2306,2308,3,748,374,0,2307,2306,1,0,0,0,2307,2308,1,0,0,0,2308, - 2309,1,0,0,0,2309,2312,3,1120,560,0,2310,2313,3,106,53,0,2311,2313, - 3,116,58,0,2312,2310,1,0,0,0,2312,2311,1,0,0,0,2313,2438,1,0,0,0, - 2314,2315,5,138,0,0,2315,2316,5,92,0,0,2316,2317,5,30,0,0,2317,2318, - 5,68,0,0,2318,2319,5,351,0,0,2319,2323,3,1404,702,0,2320,2321,5, - 281,0,0,2321,2322,5,147,0,0,2322,2324,3,1474,737,0,2323,2320,1,0, - 0,0,2323,2324,1,0,0,0,2324,2325,1,0,0,0,2325,2326,5,333,0,0,2326, - 2327,5,351,0,0,2327,2329,3,1402,701,0,2328,2330,3,980,490,0,2329, - 2328,1,0,0,0,2329,2330,1,0,0,0,2330,2438,1,0,0,0,2331,2332,5,138, - 0,0,2332,2334,5,92,0,0,2333,2335,3,748,374,0,2334,2333,1,0,0,0,2334, - 2335,1,0,0,0,2335,2336,1,0,0,0,2336,2337,3,1408,704,0,2337,2338, - 5,435,0,0,2338,2339,5,285,0,0,2339,2344,3,1414,707,0,2340,2341,5, - 62,0,0,2341,2342,5,422,0,0,2342,2345,3,108,54,0,2343,2345,5,53,0, - 0,2344,2340,1,0,0,0,2344,2343,1,0,0,0,2345,2438,1,0,0,0,2346,2347, - 5,138,0,0,2347,2349,5,92,0,0,2348,2350,3,748,374,0,2349,2348,1,0, - 0,0,2349,2350,1,0,0,0,2350,2351,1,0,0,0,2351,2352,3,1408,704,0,2352, - 2353,5,436,0,0,2353,2354,5,285,0,0,2354,2356,3,1414,707,0,2355,2357, - 7,18,0,0,2356,2355,1,0,0,0,2356,2357,1,0,0,0,2357,2438,1,0,0,0,2358, - 2359,5,138,0,0,2359,2361,5,226,0,0,2360,2362,3,748,374,0,2361,2360, - 1,0,0,0,2361,2362,1,0,0,0,2362,2363,1,0,0,0,2363,2366,3,1414,707, - 0,2364,2367,3,106,53,0,2365,2367,3,118,59,0,2366,2364,1,0,0,0,2366, - 2365,1,0,0,0,2367,2438,1,0,0,0,2368,2369,5,138,0,0,2369,2370,5,226, - 0,0,2370,2371,5,30,0,0,2371,2372,5,68,0,0,2372,2373,5,351,0,0,2373, - 2377,3,1404,702,0,2374,2375,5,281,0,0,2375,2376,5,147,0,0,2376,2378, - 3,1474,737,0,2377,2374,1,0,0,0,2377,2378,1,0,0,0,2378,2379,1,0,0, - 0,2379,2380,5,333,0,0,2380,2381,5,351,0,0,2381,2383,3,1402,701,0, - 2382,2384,3,980,490,0,2383,2382,1,0,0,0,2383,2384,1,0,0,0,2384,2438, - 1,0,0,0,2385,2386,5,138,0,0,2386,2388,5,328,0,0,2387,2389,3,748, - 374,0,2388,2387,1,0,0,0,2388,2389,1,0,0,0,2389,2390,1,0,0,0,2390, - 2391,3,1414,707,0,2391,2392,3,106,53,0,2392,2438,1,0,0,0,2393,2394, - 5,138,0,0,2394,2396,5,376,0,0,2395,2397,3,748,374,0,2396,2395,1, - 0,0,0,2396,2397,1,0,0,0,2397,2398,1,0,0,0,2398,2399,3,1412,706,0, - 2399,2400,3,106,53,0,2400,2438,1,0,0,0,2401,2402,5,138,0,0,2402, - 2403,5,259,0,0,2403,2405,5,376,0,0,2404,2406,3,748,374,0,2405,2404, - 1,0,0,0,2405,2406,1,0,0,0,2406,2407,1,0,0,0,2407,2408,3,1412,706, - 0,2408,2409,3,106,53,0,2409,2438,1,0,0,0,2410,2411,5,138,0,0,2411, - 2412,5,259,0,0,2412,2413,5,376,0,0,2413,2414,5,30,0,0,2414,2415, - 5,68,0,0,2415,2416,5,351,0,0,2416,2420,3,1404,702,0,2417,2418,5, - 281,0,0,2418,2419,5,147,0,0,2419,2421,3,1474,737,0,2420,2417,1,0, - 0,0,2420,2421,1,0,0,0,2421,2422,1,0,0,0,2422,2423,5,333,0,0,2423, - 2424,5,351,0,0,2424,2426,3,1402,701,0,2425,2427,3,980,490,0,2426, - 2425,1,0,0,0,2426,2427,1,0,0,0,2427,2438,1,0,0,0,2428,2429,5,138, - 0,0,2429,2430,5,63,0,0,2430,2432,5,92,0,0,2431,2433,3,748,374,0, - 2432,2431,1,0,0,0,2432,2433,1,0,0,0,2433,2434,1,0,0,0,2434,2435, - 3,1120,560,0,2435,2436,3,106,53,0,2436,2438,1,0,0,0,2437,2304,1, - 0,0,0,2437,2314,1,0,0,0,2437,2331,1,0,0,0,2437,2346,1,0,0,0,2437, - 2358,1,0,0,0,2437,2368,1,0,0,0,2437,2385,1,0,0,0,2437,2393,1,0,0, - 0,2437,2401,1,0,0,0,2437,2410,1,0,0,0,2437,2428,1,0,0,0,2438,105, - 1,0,0,0,2439,2444,3,120,60,0,2440,2441,5,6,0,0,2441,2443,3,120,60, - 0,2442,2440,1,0,0,0,2443,2446,1,0,0,0,2444,2442,1,0,0,0,2444,2445, - 1,0,0,0,2445,107,1,0,0,0,2446,2444,1,0,0,0,2447,2448,5,68,0,0,2448, - 2457,3,1180,590,0,2449,2450,5,64,0,0,2450,2451,3,110,55,0,2451,2452, - 5,94,0,0,2452,2453,3,110,55,0,2453,2457,1,0,0,0,2454,2455,5,105, - 0,0,2455,2457,3,114,57,0,2456,2447,1,0,0,0,2456,2449,1,0,0,0,2456, - 2454,1,0,0,0,2457,109,1,0,0,0,2458,2459,5,2,0,0,2459,2464,3,112, - 56,0,2460,2461,5,6,0,0,2461,2463,3,112,56,0,2462,2460,1,0,0,0,2463, - 2466,1,0,0,0,2464,2462,1,0,0,0,2464,2465,1,0,0,0,2465,2467,1,0,0, - 0,2466,2464,1,0,0,0,2467,2468,5,3,0,0,2468,111,1,0,0,0,2469,2473, - 3,1180,590,0,2470,2473,5,262,0,0,2471,2473,5,260,0,0,2472,2469,1, - 0,0,0,2472,2470,1,0,0,0,2472,2471,1,0,0,0,2473,113,1,0,0,0,2474, - 2475,5,2,0,0,2475,2476,5,533,0,0,2476,2477,3,320,160,0,2477,2478, - 5,6,0,0,2478,2479,5,534,0,0,2479,2480,3,320,160,0,2480,2481,5,3, - 0,0,2481,115,1,0,0,0,2482,2483,5,435,0,0,2483,2484,5,285,0,0,2484, - 2485,3,1414,707,0,2485,2486,3,144,72,0,2486,2491,1,0,0,0,2487,2488, - 5,436,0,0,2488,2489,5,285,0,0,2489,2491,3,1414,707,0,2490,2482,1, - 0,0,0,2490,2487,1,0,0,0,2491,117,1,0,0,0,2492,2493,5,435,0,0,2493, - 2494,5,285,0,0,2494,2495,3,1414,707,0,2495,119,1,0,0,0,2496,2498, - 5,133,0,0,2497,2499,3,768,384,0,2498,2497,1,0,0,0,2498,2499,1,0, - 0,0,2499,2501,1,0,0,0,2500,2502,3,514,257,0,2501,2500,1,0,0,0,2501, - 2502,1,0,0,0,2502,2503,1,0,0,0,2503,2759,3,206,103,0,2504,2506,5, - 138,0,0,2505,2507,3,768,384,0,2506,2505,1,0,0,0,2506,2507,1,0,0, - 0,2507,2508,1,0,0,0,2508,2509,3,1434,717,0,2509,2510,3,122,61,0, - 2510,2759,1,0,0,0,2511,2513,5,138,0,0,2512,2514,3,768,384,0,2513, - 2512,1,0,0,0,2513,2514,1,0,0,0,2514,2515,1,0,0,0,2515,2516,3,1434, - 717,0,2516,2517,5,191,0,0,2517,2518,5,77,0,0,2518,2519,5,78,0,0, - 2519,2759,1,0,0,0,2520,2522,5,138,0,0,2521,2523,3,768,384,0,2522, - 2521,1,0,0,0,2522,2523,1,0,0,0,2523,2524,1,0,0,0,2524,2525,3,1434, - 717,0,2525,2526,5,333,0,0,2526,2527,5,77,0,0,2527,2528,5,78,0,0, - 2528,2759,1,0,0,0,2529,2531,5,138,0,0,2530,2532,3,768,384,0,2531, - 2530,1,0,0,0,2531,2532,1,0,0,0,2532,2533,1,0,0,0,2533,2534,3,1434, - 717,0,2534,2535,5,191,0,0,2535,2537,5,437,0,0,2536,2538,3,748,374, - 0,2537,2536,1,0,0,0,2537,2538,1,0,0,0,2538,2759,1,0,0,0,2539,2541, - 5,138,0,0,2540,2542,3,768,384,0,2541,2540,1,0,0,0,2541,2542,1,0, - 0,0,2542,2543,1,0,0,0,2543,2544,3,1434,717,0,2544,2545,5,333,0,0, - 2545,2546,5,342,0,0,2546,2547,3,1466,733,0,2547,2759,1,0,0,0,2548, - 2550,5,138,0,0,2549,2551,3,768,384,0,2550,2549,1,0,0,0,2550,2551, - 1,0,0,0,2551,2552,1,0,0,0,2552,2553,3,1434,717,0,2553,2554,5,333, - 0,0,2554,2555,5,342,0,0,2555,2556,3,1466,733,0,2556,2759,1,0,0,0, - 2557,2559,5,138,0,0,2558,2560,3,768,384,0,2559,2558,1,0,0,0,2559, - 2560,1,0,0,0,2560,2561,1,0,0,0,2561,2562,3,1434,717,0,2562,2563, - 5,333,0,0,2563,2564,3,132,66,0,2564,2759,1,0,0,0,2565,2567,5,138, - 0,0,2566,2568,3,768,384,0,2567,2566,1,0,0,0,2567,2568,1,0,0,0,2568, - 2569,1,0,0,0,2569,2570,3,1434,717,0,2570,2571,5,313,0,0,2571,2572, - 3,132,66,0,2572,2759,1,0,0,0,2573,2575,5,138,0,0,2574,2576,3,768, - 384,0,2575,2574,1,0,0,0,2575,2576,1,0,0,0,2576,2577,1,0,0,0,2577, - 2578,3,1434,717,0,2578,2579,5,333,0,0,2579,2580,5,345,0,0,2580,2581, - 3,1476,738,0,2581,2759,1,0,0,0,2582,2584,5,138,0,0,2583,2585,3,768, - 384,0,2584,2583,1,0,0,0,2584,2585,1,0,0,0,2585,2586,1,0,0,0,2586, - 2587,3,1434,717,0,2587,2588,5,133,0,0,2588,2589,5,438,0,0,2589,2590, - 3,224,112,0,2590,2591,5,36,0,0,2591,2593,5,219,0,0,2592,2594,3,312, - 156,0,2593,2592,1,0,0,0,2593,2594,1,0,0,0,2594,2759,1,0,0,0,2595, - 2597,5,138,0,0,2596,2598,3,768,384,0,2597,2596,1,0,0,0,2597,2598, - 1,0,0,0,2598,2599,1,0,0,0,2599,2600,3,1434,717,0,2600,2601,3,140, - 70,0,2601,2759,1,0,0,0,2602,2604,5,138,0,0,2603,2605,3,768,384,0, - 2604,2603,1,0,0,0,2604,2605,1,0,0,0,2605,2606,1,0,0,0,2606,2607, - 3,1434,717,0,2607,2608,5,191,0,0,2608,2610,5,219,0,0,2609,2611,3, - 748,374,0,2610,2609,1,0,0,0,2610,2611,1,0,0,0,2611,2759,1,0,0,0, - 2612,2614,5,191,0,0,2613,2615,3,768,384,0,2614,2613,1,0,0,0,2614, - 2615,1,0,0,0,2615,2617,1,0,0,0,2616,2618,3,748,374,0,2617,2616,1, - 0,0,0,2617,2618,1,0,0,0,2618,2619,1,0,0,0,2619,2621,3,1434,717,0, - 2620,2622,3,124,62,0,2621,2620,1,0,0,0,2621,2622,1,0,0,0,2622,2759, - 1,0,0,0,2623,2625,5,138,0,0,2624,2626,3,768,384,0,2625,2624,1,0, - 0,0,2625,2626,1,0,0,0,2626,2627,1,0,0,0,2627,2629,3,1434,717,0,2628, - 2630,3,770,385,0,2629,2628,1,0,0,0,2629,2630,1,0,0,0,2630,2631,1, - 0,0,0,2631,2632,5,360,0,0,2632,2634,3,1170,585,0,2633,2635,3,126, - 63,0,2634,2633,1,0,0,0,2634,2635,1,0,0,0,2635,2637,1,0,0,0,2636, - 2638,3,128,64,0,2637,2636,1,0,0,0,2637,2638,1,0,0,0,2638,2759,1, - 0,0,0,2639,2641,5,138,0,0,2640,2642,3,768,384,0,2641,2640,1,0,0, - 0,2641,2642,1,0,0,0,2642,2643,1,0,0,0,2643,2644,3,1434,717,0,2644, - 2645,3,370,185,0,2645,2759,1,0,0,0,2646,2647,5,133,0,0,2647,2759, - 3,236,118,0,2648,2649,5,138,0,0,2649,2650,5,45,0,0,2650,2651,3,1438, - 719,0,2651,2652,3,474,237,0,2652,2759,1,0,0,0,2653,2654,5,372,0, - 0,2654,2655,5,45,0,0,2655,2759,3,1438,719,0,2656,2657,5,191,0,0, - 2657,2659,5,45,0,0,2658,2660,3,748,374,0,2659,2658,1,0,0,0,2659, - 2660,1,0,0,0,2660,2661,1,0,0,0,2661,2663,3,1438,719,0,2662,2664, - 3,124,62,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2759,1,0,0,0, - 2665,2666,5,333,0,0,2666,2667,5,379,0,0,2667,2759,5,277,0,0,2668, - 2669,5,158,0,0,2669,2670,5,80,0,0,2670,2759,3,1438,719,0,2671,2672, - 5,333,0,0,2672,2673,5,379,0,0,2673,2759,5,158,0,0,2674,2675,5,333, - 0,0,2675,2759,5,439,0,0,2676,2677,5,333,0,0,2677,2759,5,367,0,0, - 2678,2679,5,193,0,0,2679,2680,5,357,0,0,2680,2759,3,1438,719,0,2681, - 2682,5,193,0,0,2682,2683,5,139,0,0,2683,2684,5,357,0,0,2684,2759, - 3,1438,719,0,2685,2686,5,193,0,0,2686,2687,5,312,0,0,2687,2688,5, - 357,0,0,2688,2759,3,1438,719,0,2689,2690,5,193,0,0,2690,2691,5,357, - 0,0,2691,2759,5,30,0,0,2692,2693,5,193,0,0,2693,2694,5,357,0,0,2694, - 2759,5,99,0,0,2695,2696,5,186,0,0,2696,2697,5,357,0,0,2697,2759, - 3,1438,719,0,2698,2699,5,186,0,0,2699,2700,5,357,0,0,2700,2759,5, - 30,0,0,2701,2702,5,186,0,0,2702,2703,5,357,0,0,2703,2759,5,99,0, - 0,2704,2705,5,193,0,0,2705,2706,5,321,0,0,2706,2759,3,1438,719,0, - 2707,2708,5,193,0,0,2708,2709,5,139,0,0,2709,2710,5,321,0,0,2710, - 2759,3,1438,719,0,2711,2712,5,193,0,0,2712,2713,5,312,0,0,2713,2714, - 5,321,0,0,2714,2759,3,1438,719,0,2715,2716,5,186,0,0,2716,2717,5, - 321,0,0,2717,2759,3,1438,719,0,2718,2719,5,228,0,0,2719,2759,3,1414, - 707,0,2720,2721,5,269,0,0,2721,2722,5,228,0,0,2722,2759,3,1414,707, - 0,2723,2724,5,275,0,0,2724,2759,3,558,279,0,2725,2726,5,77,0,0,2726, - 2759,5,275,0,0,2727,2728,5,282,0,0,2728,2729,5,94,0,0,2729,2759, - 3,1472,736,0,2730,2731,5,333,0,0,2731,2732,5,351,0,0,2732,2759,3, - 1402,701,0,2733,2734,5,333,0,0,2734,2759,3,132,66,0,2735,2736,5, - 313,0,0,2736,2759,3,132,66,0,2737,2738,5,312,0,0,2738,2739,5,219, - 0,0,2739,2759,3,130,65,0,2740,2741,5,193,0,0,2741,2742,5,414,0,0, - 2742,2743,5,251,0,0,2743,2759,5,327,0,0,2744,2745,5,186,0,0,2745, - 2746,5,414,0,0,2746,2747,5,251,0,0,2747,2759,5,327,0,0,2748,2749, - 5,209,0,0,2749,2750,5,414,0,0,2750,2751,5,251,0,0,2751,2759,5,327, - 0,0,2752,2753,5,269,0,0,2753,2754,5,209,0,0,2754,2755,5,414,0,0, - 2755,2756,5,251,0,0,2756,2759,5,327,0,0,2757,2759,3,370,185,0,2758, - 2496,1,0,0,0,2758,2504,1,0,0,0,2758,2511,1,0,0,0,2758,2520,1,0,0, - 0,2758,2529,1,0,0,0,2758,2539,1,0,0,0,2758,2548,1,0,0,0,2758,2557, - 1,0,0,0,2758,2565,1,0,0,0,2758,2573,1,0,0,0,2758,2582,1,0,0,0,2758, - 2595,1,0,0,0,2758,2602,1,0,0,0,2758,2612,1,0,0,0,2758,2623,1,0,0, - 0,2758,2639,1,0,0,0,2758,2646,1,0,0,0,2758,2648,1,0,0,0,2758,2653, - 1,0,0,0,2758,2656,1,0,0,0,2758,2665,1,0,0,0,2758,2668,1,0,0,0,2758, - 2671,1,0,0,0,2758,2674,1,0,0,0,2758,2676,1,0,0,0,2758,2678,1,0,0, - 0,2758,2681,1,0,0,0,2758,2685,1,0,0,0,2758,2689,1,0,0,0,2758,2692, - 1,0,0,0,2758,2695,1,0,0,0,2758,2698,1,0,0,0,2758,2701,1,0,0,0,2758, - 2704,1,0,0,0,2758,2707,1,0,0,0,2758,2711,1,0,0,0,2758,2715,1,0,0, - 0,2758,2718,1,0,0,0,2758,2720,1,0,0,0,2758,2723,1,0,0,0,2758,2725, - 1,0,0,0,2758,2727,1,0,0,0,2758,2730,1,0,0,0,2758,2733,1,0,0,0,2758, - 2735,1,0,0,0,2758,2737,1,0,0,0,2758,2740,1,0,0,0,2758,2744,1,0,0, - 0,2758,2748,1,0,0,0,2758,2752,1,0,0,0,2758,2757,1,0,0,0,2759,121, - 1,0,0,0,2760,2761,5,333,0,0,2761,2762,5,53,0,0,2762,2766,3,1214, - 607,0,2763,2764,5,191,0,0,2764,2766,5,53,0,0,2765,2760,1,0,0,0,2765, - 2763,1,0,0,0,2766,123,1,0,0,0,2767,2768,7,19,0,0,2768,125,1,0,0, - 0,2769,2770,5,43,0,0,2770,2771,3,558,279,0,2771,127,1,0,0,0,2772, - 2773,5,100,0,0,2773,2774,3,1214,607,0,2774,129,1,0,0,0,2775,2782, - 5,270,0,0,2776,2782,5,113,0,0,2777,2782,5,53,0,0,2778,2779,5,100, - 0,0,2779,2780,5,226,0,0,2780,2782,3,1438,719,0,2781,2775,1,0,0,0, - 2781,2776,1,0,0,0,2781,2777,1,0,0,0,2781,2778,1,0,0,0,2782,131,1, - 0,0,0,2783,2784,5,2,0,0,2784,2785,3,136,68,0,2785,2786,5,3,0,0,2786, - 133,1,0,0,0,2787,2788,5,105,0,0,2788,2789,3,132,66,0,2789,135,1, - 0,0,0,2790,2795,3,138,69,0,2791,2792,5,6,0,0,2792,2794,3,138,69, - 0,2793,2791,1,0,0,0,2794,2797,1,0,0,0,2795,2793,1,0,0,0,2795,2796, - 1,0,0,0,2796,137,1,0,0,0,2797,2795,1,0,0,0,2798,2807,3,1492,746, - 0,2799,2800,5,10,0,0,2800,2808,3,500,250,0,2801,2802,5,11,0,0,2802, - 2805,3,1492,746,0,2803,2804,5,10,0,0,2804,2806,3,500,250,0,2805, - 2803,1,0,0,0,2805,2806,1,0,0,0,2806,2808,1,0,0,0,2807,2799,1,0,0, - 0,2807,2801,1,0,0,0,2807,2808,1,0,0,0,2808,139,1,0,0,0,2809,2811, - 3,142,71,0,2810,2809,1,0,0,0,2811,2812,1,0,0,0,2812,2810,1,0,0,0, - 2812,2813,1,0,0,0,2813,141,1,0,0,0,2814,2819,5,314,0,0,2815,2817, - 3,14,7,0,2816,2815,1,0,0,0,2816,2817,1,0,0,0,2817,2818,1,0,0,0,2818, - 2820,3,320,160,0,2819,2816,1,0,0,0,2819,2820,1,0,0,0,2820,2828,1, - 0,0,0,2821,2825,5,333,0,0,2822,2826,3,316,158,0,2823,2824,5,438, - 0,0,2824,2826,3,224,112,0,2825,2822,1,0,0,0,2825,2823,1,0,0,0,2826, - 2828,1,0,0,0,2827,2814,1,0,0,0,2827,2821,1,0,0,0,2828,143,1,0,0, - 0,2829,2830,5,62,0,0,2830,2831,5,422,0,0,2831,2832,5,105,0,0,2832, - 2833,5,2,0,0,2833,2834,3,148,74,0,2834,2835,5,3,0,0,2835,2856,1, - 0,0,0,2836,2837,5,62,0,0,2837,2838,5,422,0,0,2838,2839,5,68,0,0, - 2839,2840,5,2,0,0,2840,2841,3,1330,665,0,2841,2842,5,3,0,0,2842, - 2856,1,0,0,0,2843,2844,5,62,0,0,2844,2845,5,422,0,0,2845,2846,5, - 64,0,0,2846,2847,5,2,0,0,2847,2848,3,1330,665,0,2848,2849,5,3,0, - 0,2849,2850,5,94,0,0,2850,2851,5,2,0,0,2851,2852,3,1330,665,0,2852, - 2853,5,3,0,0,2853,2856,1,0,0,0,2854,2856,5,53,0,0,2855,2829,1,0, - 0,0,2855,2836,1,0,0,0,2855,2843,1,0,0,0,2855,2854,1,0,0,0,2856,145, - 1,0,0,0,2857,2858,3,1490,745,0,2858,2859,3,1458,729,0,2859,147,1, - 0,0,0,2860,2865,3,146,73,0,2861,2862,5,6,0,0,2862,2864,3,146,73, - 0,2863,2861,1,0,0,0,2864,2867,1,0,0,0,2865,2863,1,0,0,0,2865,2866, - 1,0,0,0,2866,149,1,0,0,0,2867,2865,1,0,0,0,2868,2869,5,138,0,0,2869, - 2870,5,360,0,0,2870,2871,3,558,279,0,2871,2872,3,152,76,0,2872,151, - 1,0,0,0,2873,2878,3,154,77,0,2874,2875,5,6,0,0,2875,2877,3,154,77, - 0,2876,2874,1,0,0,0,2877,2880,1,0,0,0,2878,2876,1,0,0,0,2878,2879, - 1,0,0,0,2879,153,1,0,0,0,2880,2878,1,0,0,0,2881,2882,5,133,0,0,2882, - 2883,5,143,0,0,2883,2885,3,1154,577,0,2884,2886,3,124,62,0,2885, - 2884,1,0,0,0,2885,2886,1,0,0,0,2886,2911,1,0,0,0,2887,2888,5,191, - 0,0,2888,2890,5,143,0,0,2889,2891,3,748,374,0,2890,2889,1,0,0,0, - 2890,2891,1,0,0,0,2891,2892,1,0,0,0,2892,2894,3,1476,738,0,2893, - 2895,3,124,62,0,2894,2893,1,0,0,0,2894,2895,1,0,0,0,2895,2911,1, - 0,0,0,2896,2897,5,138,0,0,2897,2898,5,143,0,0,2898,2900,3,1476,738, - 0,2899,2901,3,770,385,0,2900,2899,1,0,0,0,2900,2901,1,0,0,0,2901, - 2902,1,0,0,0,2902,2903,5,360,0,0,2903,2905,3,1170,585,0,2904,2906, - 3,126,63,0,2905,2904,1,0,0,0,2905,2906,1,0,0,0,2906,2908,1,0,0,0, - 2907,2909,3,124,62,0,2908,2907,1,0,0,0,2908,2909,1,0,0,0,2909,2911, - 1,0,0,0,2910,2881,1,0,0,0,2910,2887,1,0,0,0,2910,2896,1,0,0,0,2911, - 155,1,0,0,0,2912,2915,5,157,0,0,2913,2916,3,996,498,0,2914,2916, - 5,30,0,0,2915,2913,1,0,0,0,2915,2914,1,0,0,0,2916,157,1,0,0,0,2917, - 2919,5,169,0,0,2918,2920,3,172,86,0,2919,2918,1,0,0,0,2919,2920, - 1,0,0,0,2920,2921,1,0,0,0,2921,2923,3,1408,704,0,2922,2924,3,242, - 121,0,2923,2922,1,0,0,0,2923,2924,1,0,0,0,2924,2925,1,0,0,0,2925, - 2927,3,160,80,0,2926,2928,3,162,81,0,2927,2926,1,0,0,0,2927,2928, - 1,0,0,0,2928,2929,1,0,0,0,2929,2931,3,164,82,0,2930,2932,3,174,87, - 0,2931,2930,1,0,0,0,2931,2932,1,0,0,0,2932,2934,1,0,0,0,2933,2935, - 3,14,7,0,2934,2933,1,0,0,0,2934,2935,1,0,0,0,2935,2936,1,0,0,0,2936, - 2938,3,166,83,0,2937,2939,3,1146,573,0,2938,2937,1,0,0,0,2938,2939, - 1,0,0,0,2939,2955,1,0,0,0,2940,2941,5,169,0,0,2941,2942,5,2,0,0, - 2942,2943,3,944,472,0,2943,2944,5,3,0,0,2944,2946,5,94,0,0,2945, - 2947,3,162,81,0,2946,2945,1,0,0,0,2946,2947,1,0,0,0,2947,2948,1, - 0,0,0,2948,2950,3,164,82,0,2949,2951,3,14,7,0,2950,2949,1,0,0,0, - 2950,2951,1,0,0,0,2951,2952,1,0,0,0,2952,2953,3,166,83,0,2953,2955, - 1,0,0,0,2954,2917,1,0,0,0,2954,2940,1,0,0,0,2955,159,1,0,0,0,2956, - 2957,7,20,0,0,2957,161,1,0,0,0,2958,2959,5,297,0,0,2959,163,1,0, - 0,0,2960,2964,3,1460,730,0,2961,2964,5,343,0,0,2962,2964,5,344,0, - 0,2963,2960,1,0,0,0,2963,2961,1,0,0,0,2963,2962,1,0,0,0,2964,165, - 1,0,0,0,2965,2971,3,168,84,0,2966,2967,5,2,0,0,2967,2968,3,178,89, - 0,2968,2969,5,3,0,0,2969,2971,1,0,0,0,2970,2965,1,0,0,0,2970,2966, - 1,0,0,0,2971,167,1,0,0,0,2972,2974,3,170,85,0,2973,2972,1,0,0,0, - 2974,2977,1,0,0,0,2975,2973,1,0,0,0,2975,2976,1,0,0,0,2976,169,1, - 0,0,0,2977,2975,1,0,0,0,2978,3018,5,107,0,0,2979,3018,5,112,0,0, - 2980,2982,5,183,0,0,2981,2983,3,874,437,0,2982,2981,1,0,0,0,2982, - 2983,1,0,0,0,2983,2984,1,0,0,0,2984,3018,3,1460,730,0,2985,2987, - 5,78,0,0,2986,2988,3,874,437,0,2987,2986,1,0,0,0,2987,2988,1,0,0, - 0,2988,2989,1,0,0,0,2989,3018,3,1460,730,0,2990,3018,5,171,0,0,2991, - 3018,5,216,0,0,2992,2994,5,298,0,0,2993,2995,3,874,437,0,2994,2993, - 1,0,0,0,2994,2995,1,0,0,0,2995,2996,1,0,0,0,2996,3018,3,1460,730, - 0,2997,2999,5,197,0,0,2998,3000,3,874,437,0,2999,2998,1,0,0,0,2999, - 3000,1,0,0,0,3000,3001,1,0,0,0,3001,3018,3,1460,730,0,3002,3003, - 5,209,0,0,3003,3004,5,298,0,0,3004,3018,3,244,122,0,3005,3006,5, - 209,0,0,3006,3007,5,298,0,0,3007,3018,5,9,0,0,3008,3009,5,209,0, - 0,3009,3010,5,77,0,0,3010,3011,5,78,0,0,3011,3018,3,244,122,0,3012, - 3013,5,209,0,0,3013,3014,5,78,0,0,3014,3018,3,244,122,0,3015,3016, - 5,194,0,0,3016,3018,3,1460,730,0,3017,2978,1,0,0,0,3017,2979,1,0, - 0,0,3017,2980,1,0,0,0,3017,2985,1,0,0,0,3017,2990,1,0,0,0,3017,2991, - 1,0,0,0,3017,2992,1,0,0,0,3017,2997,1,0,0,0,3017,3002,1,0,0,0,3017, - 3005,1,0,0,0,3017,3008,1,0,0,0,3017,3012,1,0,0,0,3017,3015,1,0,0, - 0,3018,171,1,0,0,0,3019,3020,5,107,0,0,3020,173,1,0,0,0,3021,3023, - 3,176,88,0,3022,3021,1,0,0,0,3022,3023,1,0,0,0,3023,3024,1,0,0,0, - 3024,3025,5,184,0,0,3025,3026,3,1460,730,0,3026,175,1,0,0,0,3027, - 3028,5,100,0,0,3028,177,1,0,0,0,3029,3034,3,180,90,0,3030,3031,5, - 6,0,0,3031,3033,3,180,90,0,3032,3030,1,0,0,0,3033,3036,1,0,0,0,3034, - 3032,1,0,0,0,3034,3035,1,0,0,0,3035,179,1,0,0,0,3036,3034,1,0,0, - 0,3037,3039,3,1492,746,0,3038,3040,3,182,91,0,3039,3038,1,0,0,0, - 3039,3040,1,0,0,0,3040,181,1,0,0,0,3041,3049,3,72,36,0,3042,3049, - 3,320,160,0,3043,3049,5,9,0,0,3044,3045,5,2,0,0,3045,3046,3,184, - 92,0,3046,3047,5,3,0,0,3047,3049,1,0,0,0,3048,3041,1,0,0,0,3048, - 3042,1,0,0,0,3048,3043,1,0,0,0,3048,3044,1,0,0,0,3049,183,1,0,0, - 0,3050,3055,3,186,93,0,3051,3052,5,6,0,0,3052,3054,3,186,93,0,3053, - 3051,1,0,0,0,3054,3057,1,0,0,0,3055,3053,1,0,0,0,3055,3056,1,0,0, - 0,3056,185,1,0,0,0,3057,3055,1,0,0,0,3058,3059,3,70,35,0,3059,187, - 1,0,0,0,3060,3062,5,46,0,0,3061,3063,3,190,95,0,3062,3061,1,0,0, - 0,3062,3063,1,0,0,0,3063,3064,1,0,0,0,3064,3066,5,92,0,0,3065,3067, - 3,514,257,0,3066,3065,1,0,0,0,3066,3067,1,0,0,0,3067,3068,1,0,0, - 0,3068,3134,3,1406,703,0,3069,3071,5,2,0,0,3070,3072,3,192,96,0, - 3071,3070,1,0,0,0,3071,3072,1,0,0,0,3072,3073,1,0,0,0,3073,3075, - 5,3,0,0,3074,3076,3,264,132,0,3075,3074,1,0,0,0,3075,3076,1,0,0, - 0,3076,3078,1,0,0,0,3077,3079,3,266,133,0,3078,3077,1,0,0,0,3078, - 3079,1,0,0,0,3079,3081,1,0,0,0,3080,3082,3,274,137,0,3081,3080,1, - 0,0,0,3081,3082,1,0,0,0,3082,3084,1,0,0,0,3083,3085,3,276,138,0, - 3084,3083,1,0,0,0,3084,3085,1,0,0,0,3085,3087,1,0,0,0,3086,3088, - 3,278,139,0,3087,3086,1,0,0,0,3087,3088,1,0,0,0,3088,3090,1,0,0, - 0,3089,3091,3,280,140,0,3090,3089,1,0,0,0,3090,3091,1,0,0,0,3091, - 3135,1,0,0,0,3092,3093,5,275,0,0,3093,3095,3,558,279,0,3094,3096, - 3,196,98,0,3095,3094,1,0,0,0,3095,3096,1,0,0,0,3096,3098,1,0,0,0, - 3097,3099,3,266,133,0,3098,3097,1,0,0,0,3098,3099,1,0,0,0,3099,3101, - 1,0,0,0,3100,3102,3,274,137,0,3101,3100,1,0,0,0,3101,3102,1,0,0, - 0,3102,3104,1,0,0,0,3103,3105,3,276,138,0,3104,3103,1,0,0,0,3104, - 3105,1,0,0,0,3105,3107,1,0,0,0,3106,3108,3,278,139,0,3107,3106,1, - 0,0,0,3107,3108,1,0,0,0,3108,3110,1,0,0,0,3109,3111,3,280,140,0, - 3110,3109,1,0,0,0,3110,3111,1,0,0,0,3111,3135,1,0,0,0,3112,3113, - 5,285,0,0,3113,3114,5,275,0,0,3114,3116,3,1414,707,0,3115,3117,3, - 196,98,0,3116,3115,1,0,0,0,3116,3117,1,0,0,0,3117,3118,1,0,0,0,3118, - 3120,3,144,72,0,3119,3121,3,266,133,0,3120,3119,1,0,0,0,3120,3121, - 1,0,0,0,3121,3123,1,0,0,0,3122,3124,3,274,137,0,3123,3122,1,0,0, - 0,3123,3124,1,0,0,0,3124,3126,1,0,0,0,3125,3127,3,276,138,0,3126, - 3125,1,0,0,0,3126,3127,1,0,0,0,3127,3129,1,0,0,0,3128,3130,3,278, - 139,0,3129,3128,1,0,0,0,3129,3130,1,0,0,0,3130,3132,1,0,0,0,3131, - 3133,3,280,140,0,3132,3131,1,0,0,0,3132,3133,1,0,0,0,3133,3135,1, - 0,0,0,3134,3069,1,0,0,0,3134,3092,1,0,0,0,3134,3112,1,0,0,0,3135, - 189,1,0,0,0,3136,3144,5,354,0,0,3137,3144,5,352,0,0,3138,3139,5, - 254,0,0,3139,3144,7,21,0,0,3140,3141,5,213,0,0,3141,3144,7,21,0, - 0,3142,3144,5,367,0,0,3143,3136,1,0,0,0,3143,3137,1,0,0,0,3143,3138, - 1,0,0,0,3143,3140,1,0,0,0,3143,3142,1,0,0,0,3144,191,1,0,0,0,3145, - 3146,3,198,99,0,3146,193,1,0,0,0,3147,3148,3,198,99,0,3148,195,1, - 0,0,0,3149,3150,5,2,0,0,3150,3151,3,200,100,0,3151,3152,5,3,0,0, - 3152,197,1,0,0,0,3153,3158,3,202,101,0,3154,3155,5,6,0,0,3155,3157, - 3,202,101,0,3156,3154,1,0,0,0,3157,3160,1,0,0,0,3158,3156,1,0,0, - 0,3158,3159,1,0,0,0,3159,199,1,0,0,0,3160,3158,1,0,0,0,3161,3166, - 3,204,102,0,3162,3163,5,6,0,0,3163,3165,3,204,102,0,3164,3162,1, - 0,0,0,3165,3168,1,0,0,0,3166,3164,1,0,0,0,3166,3167,1,0,0,0,3167, - 201,1,0,0,0,3168,3166,1,0,0,0,3169,3173,3,208,104,0,3170,3173,3, - 230,115,0,3171,3173,3,236,118,0,3172,3169,1,0,0,0,3172,3170,1,0, - 0,0,3172,3171,1,0,0,0,3173,203,1,0,0,0,3174,3177,3,214,107,0,3175, - 3177,3,236,118,0,3176,3174,1,0,0,0,3176,3175,1,0,0,0,3177,205,1, - 0,0,0,3178,3179,3,1434,717,0,3179,3181,3,1170,585,0,3180,3182,3, - 366,183,0,3181,3180,1,0,0,0,3181,3182,1,0,0,0,3182,3184,1,0,0,0, - 3183,3185,3,212,106,0,3184,3183,1,0,0,0,3184,3185,1,0,0,0,3185,3187, - 1,0,0,0,3186,3188,3,210,105,0,3187,3186,1,0,0,0,3187,3188,1,0,0, - 0,3188,3191,1,0,0,0,3189,3190,5,43,0,0,3190,3192,3,558,279,0,3191, - 3189,1,0,0,0,3191,3192,1,0,0,0,3192,3195,1,0,0,0,3193,3194,5,105, - 0,0,3194,3196,5,280,0,0,3195,3193,1,0,0,0,3195,3196,1,0,0,0,3196, - 3197,1,0,0,0,3197,3198,3,216,108,0,3198,207,1,0,0,0,3199,3200,3, - 1434,717,0,3200,3202,3,1170,585,0,3201,3203,3,366,183,0,3202,3201, - 1,0,0,0,3202,3203,1,0,0,0,3203,3205,1,0,0,0,3204,3206,3,212,106, - 0,3205,3204,1,0,0,0,3205,3206,1,0,0,0,3206,3208,1,0,0,0,3207,3209, - 3,210,105,0,3208,3207,1,0,0,0,3208,3209,1,0,0,0,3209,3212,1,0,0, - 0,3210,3211,5,43,0,0,3211,3213,3,558,279,0,3212,3210,1,0,0,0,3212, - 3213,1,0,0,0,3213,3216,1,0,0,0,3214,3215,5,105,0,0,3215,3217,5,280, - 0,0,3216,3214,1,0,0,0,3216,3217,1,0,0,0,3217,3218,1,0,0,0,3218,3219, - 3,216,108,0,3219,209,1,0,0,0,3220,3221,5,543,0,0,3221,3222,3,1476, - 738,0,3222,211,1,0,0,0,3223,3230,5,345,0,0,3224,3231,5,544,0,0,3225, - 3231,5,205,0,0,3226,3231,5,545,0,0,3227,3231,5,546,0,0,3228,3231, - 5,53,0,0,3229,3231,3,1476,738,0,3230,3224,1,0,0,0,3230,3225,1,0, - 0,0,3230,3226,1,0,0,0,3230,3227,1,0,0,0,3230,3228,1,0,0,0,3230,3229, - 1,0,0,0,3231,213,1,0,0,0,3232,3235,3,1434,717,0,3233,3234,5,105, - 0,0,3234,3236,5,280,0,0,3235,3233,1,0,0,0,3235,3236,1,0,0,0,3236, - 3237,1,0,0,0,3237,3238,3,216,108,0,3238,215,1,0,0,0,3239,3241,3, - 218,109,0,3240,3239,1,0,0,0,3241,3244,1,0,0,0,3242,3240,1,0,0,0, - 3242,3243,1,0,0,0,3243,217,1,0,0,0,3244,3242,1,0,0,0,3245,3246,5, - 45,0,0,3246,3248,3,1438,719,0,3247,3245,1,0,0,0,3247,3248,1,0,0, - 0,3248,3249,1,0,0,0,3249,3251,3,220,110,0,3250,3252,3,226,113,0, - 3251,3250,1,0,0,0,3251,3252,1,0,0,0,3252,3254,1,0,0,0,3253,3255, - 3,228,114,0,3254,3253,1,0,0,0,3254,3255,1,0,0,0,3255,3264,1,0,0, - 0,3256,3258,3,220,110,0,3257,3259,3,226,113,0,3258,3257,1,0,0,0, - 3258,3259,1,0,0,0,3259,3261,1,0,0,0,3260,3262,3,228,114,0,3261,3260, - 1,0,0,0,3261,3262,1,0,0,0,3262,3264,1,0,0,0,3263,3247,1,0,0,0,3263, - 3256,1,0,0,0,3264,219,1,0,0,0,3265,3266,5,77,0,0,3266,3324,5,78, - 0,0,3267,3324,5,78,0,0,3268,3270,5,98,0,0,3269,3271,3,710,355,0, - 3270,3269,1,0,0,0,3270,3271,1,0,0,0,3271,3273,1,0,0,0,3272,3274, - 3,284,142,0,3273,3272,1,0,0,0,3273,3274,1,0,0,0,3274,3324,1,0,0, - 0,3275,3277,5,98,0,0,3276,3278,3,222,111,0,3277,3276,1,0,0,0,3277, - 3278,1,0,0,0,3278,3279,1,0,0,0,3279,3324,3,282,141,0,3280,3281,5, - 85,0,0,3281,3283,5,245,0,0,3282,3284,3,710,355,0,3283,3282,1,0,0, - 0,3283,3284,1,0,0,0,3284,3286,1,0,0,0,3285,3287,3,284,142,0,3286, - 3285,1,0,0,0,3286,3287,1,0,0,0,3287,3324,1,0,0,0,3288,3289,5,42, - 0,0,3289,3290,5,2,0,0,3290,3291,3,1214,607,0,3291,3293,5,3,0,0,3292, - 3294,3,240,120,0,3293,3292,1,0,0,0,3293,3294,1,0,0,0,3294,3324,1, - 0,0,0,3295,3296,5,53,0,0,3296,3324,3,1254,627,0,3297,3298,5,438, - 0,0,3298,3299,3,224,112,0,3299,3309,5,36,0,0,3300,3302,5,219,0,0, - 3301,3303,3,312,156,0,3302,3301,1,0,0,0,3302,3303,1,0,0,0,3303,3310, - 1,0,0,0,3304,3305,5,2,0,0,3305,3306,3,1214,607,0,3306,3307,5,3,0, - 0,3307,3308,5,440,0,0,3308,3310,1,0,0,0,3309,3300,1,0,0,0,3309,3304, - 1,0,0,0,3310,3324,1,0,0,0,3311,3312,5,86,0,0,3312,3314,3,1414,707, - 0,3313,3315,3,242,121,0,3314,3313,1,0,0,0,3314,3315,1,0,0,0,3315, - 3317,1,0,0,0,3316,3318,3,248,124,0,3317,3316,1,0,0,0,3317,3318,1, - 0,0,0,3318,3320,1,0,0,0,3319,3321,3,256,128,0,3320,3319,1,0,0,0, - 3320,3321,1,0,0,0,3321,3324,1,0,0,0,3322,3324,3,646,323,0,3323,3265, - 1,0,0,0,3323,3267,1,0,0,0,3323,3268,1,0,0,0,3323,3275,1,0,0,0,3323, - 3280,1,0,0,0,3323,3288,1,0,0,0,3323,3295,1,0,0,0,3323,3297,1,0,0, - 0,3323,3311,1,0,0,0,3323,3322,1,0,0,0,3324,221,1,0,0,0,3325,3327, - 5,273,0,0,3326,3328,5,77,0,0,3327,3326,1,0,0,0,3327,3328,1,0,0,0, - 3328,3329,1,0,0,0,3329,3330,5,56,0,0,3330,223,1,0,0,0,3331,3335, - 5,139,0,0,3332,3333,5,147,0,0,3333,3335,5,53,0,0,3334,3331,1,0,0, - 0,3334,3332,1,0,0,0,3335,225,1,0,0,0,3336,3340,5,54,0,0,3337,3338, - 5,77,0,0,3338,3340,5,54,0,0,3339,3336,1,0,0,0,3339,3337,1,0,0,0, - 3340,227,1,0,0,0,3341,3342,5,69,0,0,3342,3343,7,16,0,0,3343,229, - 1,0,0,0,3344,3345,5,120,0,0,3345,3346,3,1414,707,0,3346,3347,3,232, - 116,0,3347,231,1,0,0,0,3348,3349,7,22,0,0,3349,3351,3,234,117,0, - 3350,3348,1,0,0,0,3351,3354,1,0,0,0,3352,3350,1,0,0,0,3352,3353, - 1,0,0,0,3353,233,1,0,0,0,3354,3352,1,0,0,0,3355,3356,7,23,0,0,3356, - 235,1,0,0,0,3357,3358,5,45,0,0,3358,3359,3,1438,719,0,3359,3360, - 3,238,119,0,3360,3363,1,0,0,0,3361,3363,3,238,119,0,3362,3357,1, - 0,0,0,3362,3361,1,0,0,0,3363,237,1,0,0,0,3364,3365,5,42,0,0,3365, - 3366,5,2,0,0,3366,3367,3,1214,607,0,3367,3368,5,3,0,0,3368,3369, - 3,474,237,0,3369,3451,1,0,0,0,3370,3388,5,98,0,0,3371,3372,5,2,0, - 0,3372,3373,3,244,122,0,3373,3375,5,3,0,0,3374,3376,3,246,123,0, - 3375,3374,1,0,0,0,3375,3376,1,0,0,0,3376,3378,1,0,0,0,3377,3379, - 3,710,355,0,3378,3377,1,0,0,0,3378,3379,1,0,0,0,3379,3381,1,0,0, - 0,3380,3382,3,284,142,0,3381,3380,1,0,0,0,3381,3382,1,0,0,0,3382, - 3383,1,0,0,0,3383,3384,3,474,237,0,3384,3389,1,0,0,0,3385,3386,3, - 286,143,0,3386,3387,3,474,237,0,3387,3389,1,0,0,0,3388,3371,1,0, - 0,0,3388,3385,1,0,0,0,3389,3451,1,0,0,0,3390,3391,5,85,0,0,3391, - 3409,5,245,0,0,3392,3393,5,2,0,0,3393,3394,3,244,122,0,3394,3396, - 5,3,0,0,3395,3397,3,246,123,0,3396,3395,1,0,0,0,3396,3397,1,0,0, - 0,3397,3399,1,0,0,0,3398,3400,3,710,355,0,3399,3398,1,0,0,0,3399, - 3400,1,0,0,0,3400,3402,1,0,0,0,3401,3403,3,284,142,0,3402,3401,1, - 0,0,0,3402,3403,1,0,0,0,3403,3404,1,0,0,0,3404,3405,3,474,237,0, - 3405,3410,1,0,0,0,3406,3407,3,286,143,0,3407,3408,3,474,237,0,3408, - 3410,1,0,0,0,3409,3392,1,0,0,0,3409,3406,1,0,0,0,3410,3451,1,0,0, - 0,3411,3413,5,199,0,0,3412,3414,3,634,317,0,3413,3412,1,0,0,0,3413, - 3414,1,0,0,0,3414,3415,1,0,0,0,3415,3416,5,2,0,0,3416,3417,3,250, - 125,0,3417,3419,5,3,0,0,3418,3420,3,246,123,0,3419,3418,1,0,0,0, - 3419,3420,1,0,0,0,3420,3422,1,0,0,0,3421,3423,3,710,355,0,3422,3421, - 1,0,0,0,3422,3423,1,0,0,0,3423,3425,1,0,0,0,3424,3426,3,284,142, - 0,3425,3424,1,0,0,0,3425,3426,1,0,0,0,3426,3428,1,0,0,0,3427,3429, - 3,254,127,0,3428,3427,1,0,0,0,3428,3429,1,0,0,0,3429,3430,1,0,0, - 0,3430,3431,3,474,237,0,3431,3451,1,0,0,0,3432,3433,5,63,0,0,3433, - 3434,5,245,0,0,3434,3435,5,2,0,0,3435,3436,3,244,122,0,3436,3437, - 5,3,0,0,3437,3438,5,86,0,0,3438,3440,3,1414,707,0,3439,3441,3,242, - 121,0,3440,3439,1,0,0,0,3440,3441,1,0,0,0,3441,3443,1,0,0,0,3442, - 3444,3,248,124,0,3443,3442,1,0,0,0,3443,3444,1,0,0,0,3444,3446,1, - 0,0,0,3445,3447,3,256,128,0,3446,3445,1,0,0,0,3446,3447,1,0,0,0, - 3447,3448,1,0,0,0,3448,3449,3,474,237,0,3449,3451,1,0,0,0,3450,3364, - 1,0,0,0,3450,3370,1,0,0,0,3450,3390,1,0,0,0,3450,3411,1,0,0,0,3450, - 3432,1,0,0,0,3451,239,1,0,0,0,3452,3453,5,269,0,0,3453,3454,5,228, - 0,0,3454,241,1,0,0,0,3455,3456,5,2,0,0,3456,3457,3,244,122,0,3457, - 3458,5,3,0,0,3458,243,1,0,0,0,3459,3464,3,1434,717,0,3460,3461,5, - 6,0,0,3461,3463,3,1434,717,0,3462,3460,1,0,0,0,3463,3466,1,0,0,0, - 3464,3462,1,0,0,0,3464,3465,1,0,0,0,3465,245,1,0,0,0,3466,3464,1, - 0,0,0,3467,3468,5,441,0,0,3468,3469,5,2,0,0,3469,3470,3,244,122, - 0,3470,3471,5,3,0,0,3471,247,1,0,0,0,3472,3473,5,258,0,0,3473,3474, - 7,24,0,0,3474,249,1,0,0,0,3475,3480,3,252,126,0,3476,3477,5,6,0, - 0,3477,3479,3,252,126,0,3478,3476,1,0,0,0,3479,3482,1,0,0,0,3480, - 3478,1,0,0,0,3480,3481,1,0,0,0,3481,251,1,0,0,0,3482,3480,1,0,0, - 0,3483,3484,3,640,320,0,3484,3491,5,105,0,0,3485,3492,3,732,366, - 0,3486,3487,5,278,0,0,3487,3488,5,2,0,0,3488,3489,3,732,366,0,3489, - 3490,5,3,0,0,3490,3492,1,0,0,0,3491,3485,1,0,0,0,3491,3486,1,0,0, - 0,3492,253,1,0,0,0,3493,3494,5,103,0,0,3494,3495,5,2,0,0,3495,3496, - 3,1214,607,0,3496,3497,5,3,0,0,3497,255,1,0,0,0,3498,3507,3,258, - 129,0,3499,3507,3,260,130,0,3500,3501,3,258,129,0,3501,3502,3,260, - 130,0,3502,3507,1,0,0,0,3503,3504,3,260,130,0,3504,3505,3,258,129, - 0,3505,3507,1,0,0,0,3506,3498,1,0,0,0,3506,3499,1,0,0,0,3506,3500, - 1,0,0,0,3506,3503,1,0,0,0,3507,257,1,0,0,0,3508,3509,5,80,0,0,3509, - 3510,5,369,0,0,3510,3511,3,262,131,0,3511,259,1,0,0,0,3512,3513, - 5,80,0,0,3513,3514,5,182,0,0,3514,3515,3,262,131,0,3515,261,1,0, - 0,0,3516,3517,5,269,0,0,3517,3526,5,132,0,0,3518,3526,5,315,0,0, - 3519,3526,5,150,0,0,3520,3521,5,333,0,0,3521,3523,7,25,0,0,3522, - 3524,3,244,122,0,3523,3522,1,0,0,0,3523,3524,1,0,0,0,3524,3526,1, - 0,0,0,3525,3516,1,0,0,0,3525,3518,1,0,0,0,3525,3519,1,0,0,0,3525, - 3520,1,0,0,0,3526,263,1,0,0,0,3527,3528,5,238,0,0,3528,3529,5,2, - 0,0,3529,3530,3,1392,696,0,3530,3531,5,3,0,0,3531,265,1,0,0,0,3532, - 3533,3,268,134,0,3533,267,1,0,0,0,3534,3535,5,285,0,0,3535,3536, - 5,147,0,0,3536,3537,3,1476,738,0,3537,3538,5,2,0,0,3538,3539,3,270, - 135,0,3539,3540,5,3,0,0,3540,269,1,0,0,0,3541,3546,3,272,136,0,3542, - 3543,5,6,0,0,3543,3545,3,272,136,0,3544,3542,1,0,0,0,3545,3548,1, - 0,0,0,3546,3544,1,0,0,0,3546,3547,1,0,0,0,3547,271,1,0,0,0,3548, - 3546,1,0,0,0,3549,3551,3,1434,717,0,3550,3552,3,646,323,0,3551,3550, - 1,0,0,0,3551,3552,1,0,0,0,3552,3554,1,0,0,0,3553,3555,3,648,324, - 0,3554,3553,1,0,0,0,3554,3555,1,0,0,0,3555,3573,1,0,0,0,3556,3558, - 3,1264,632,0,3557,3559,3,646,323,0,3558,3557,1,0,0,0,3558,3559,1, - 0,0,0,3559,3561,1,0,0,0,3560,3562,3,648,324,0,3561,3560,1,0,0,0, - 3561,3562,1,0,0,0,3562,3573,1,0,0,0,3563,3564,5,2,0,0,3564,3565, - 3,1214,607,0,3565,3567,5,3,0,0,3566,3568,3,646,323,0,3567,3566,1, - 0,0,0,3567,3568,1,0,0,0,3568,3570,1,0,0,0,3569,3571,3,648,324,0, - 3570,3569,1,0,0,0,3570,3571,1,0,0,0,3571,3573,1,0,0,0,3572,3549, - 1,0,0,0,3572,3556,1,0,0,0,3572,3563,1,0,0,0,3573,273,1,0,0,0,3574, - 3575,5,100,0,0,3575,3576,3,1438,719,0,3576,275,1,0,0,0,3577,3578, - 5,105,0,0,3578,3584,3,132,66,0,3579,3580,5,379,0,0,3580,3584,5,277, - 0,0,3581,3582,5,105,0,0,3582,3584,5,277,0,0,3583,3577,1,0,0,0,3583, - 3579,1,0,0,0,3583,3581,1,0,0,0,3584,277,1,0,0,0,3585,3586,5,80,0, - 0,3586,3592,5,161,0,0,3587,3593,5,191,0,0,3588,3589,5,182,0,0,3589, - 3593,5,320,0,0,3590,3591,5,292,0,0,3591,3593,5,320,0,0,3592,3587, - 1,0,0,0,3592,3588,1,0,0,0,3592,3590,1,0,0,0,3593,279,1,0,0,0,3594, - 3595,5,351,0,0,3595,3596,3,1404,702,0,3596,281,1,0,0,0,3597,3599, - 3,642,321,0,3598,3597,1,0,0,0,3598,3599,1,0,0,0,3599,3601,1,0,0, - 0,3600,3602,3,1016,508,0,3601,3600,1,0,0,0,3601,3602,1,0,0,0,3602, - 3604,1,0,0,0,3603,3605,3,284,142,0,3604,3603,1,0,0,0,3604,3605,1, - 0,0,0,3605,283,1,0,0,0,3606,3607,5,100,0,0,3607,3608,5,226,0,0,3608, - 3609,5,351,0,0,3609,3610,3,1404,702,0,3610,285,1,0,0,0,3611,3612, - 5,100,0,0,3612,3613,5,226,0,0,3613,3614,3,1438,719,0,3614,287,1, - 0,0,0,3615,3616,5,46,0,0,3616,3621,5,342,0,0,3617,3619,3,514,257, - 0,3618,3617,1,0,0,0,3618,3619,1,0,0,0,3619,3620,1,0,0,0,3620,3622, - 3,558,279,0,3621,3618,1,0,0,0,3621,3622,1,0,0,0,3622,3624,1,0,0, - 0,3623,3625,3,920,460,0,3624,3623,1,0,0,0,3624,3625,1,0,0,0,3625, - 3626,1,0,0,0,3626,3629,5,80,0,0,3627,3630,3,1334,667,0,3628,3630, - 3,1330,665,0,3629,3627,1,0,0,0,3629,3628,1,0,0,0,3630,3631,1,0,0, - 0,3631,3632,5,64,0,0,3632,3633,3,1106,553,0,3633,289,1,0,0,0,3634, - 3635,5,138,0,0,3635,3637,5,342,0,0,3636,3638,3,748,374,0,3637,3636, - 1,0,0,0,3637,3638,1,0,0,0,3638,3639,1,0,0,0,3639,3640,3,558,279, - 0,3640,3641,5,333,0,0,3641,3642,5,342,0,0,3642,3643,3,1466,733,0, - 3643,291,1,0,0,0,3644,3646,5,46,0,0,3645,3647,3,190,95,0,3646,3645, - 1,0,0,0,3646,3647,1,0,0,0,3647,3648,1,0,0,0,3648,3650,5,92,0,0,3649, - 3651,3,514,257,0,3650,3649,1,0,0,0,3650,3651,1,0,0,0,3651,3652,1, - 0,0,0,3652,3653,3,294,147,0,3653,3654,5,36,0,0,3654,3656,3,1002, - 501,0,3655,3657,3,296,148,0,3656,3655,1,0,0,0,3656,3657,1,0,0,0, - 3657,293,1,0,0,0,3658,3660,3,1406,703,0,3659,3661,3,242,121,0,3660, - 3659,1,0,0,0,3660,3661,1,0,0,0,3661,3663,1,0,0,0,3662,3664,3,274, - 137,0,3663,3662,1,0,0,0,3663,3664,1,0,0,0,3664,3666,1,0,0,0,3665, - 3667,3,276,138,0,3666,3665,1,0,0,0,3666,3667,1,0,0,0,3667,3669,1, - 0,0,0,3668,3670,3,278,139,0,3669,3668,1,0,0,0,3669,3670,1,0,0,0, - 3670,3672,1,0,0,0,3671,3673,3,280,140,0,3672,3671,1,0,0,0,3672,3673, - 1,0,0,0,3673,295,1,0,0,0,3674,3678,5,105,0,0,3675,3679,5,174,0,0, - 3676,3677,5,269,0,0,3677,3679,5,174,0,0,3678,3675,1,0,0,0,3678,3676, - 1,0,0,0,3679,297,1,0,0,0,3680,3682,5,46,0,0,3681,3683,3,302,151, - 0,3682,3681,1,0,0,0,3682,3683,1,0,0,0,3683,3684,1,0,0,0,3684,3685, - 5,259,0,0,3685,3687,5,376,0,0,3686,3688,3,514,257,0,3687,3686,1, - 0,0,0,3687,3688,1,0,0,0,3688,3689,1,0,0,0,3689,3690,3,300,150,0, - 3690,3691,5,36,0,0,3691,3693,3,1002,501,0,3692,3694,3,296,148,0, - 3693,3692,1,0,0,0,3693,3694,1,0,0,0,3694,299,1,0,0,0,3695,3697,3, - 1410,705,0,3696,3698,3,242,121,0,3697,3696,1,0,0,0,3697,3698,1,0, - 0,0,3698,3700,1,0,0,0,3699,3701,3,274,137,0,3700,3699,1,0,0,0,3700, - 3701,1,0,0,0,3701,3703,1,0,0,0,3702,3704,3,134,67,0,3703,3702,1, - 0,0,0,3703,3704,1,0,0,0,3704,3706,1,0,0,0,3705,3707,3,280,140,0, - 3706,3705,1,0,0,0,3706,3707,1,0,0,0,3707,301,1,0,0,0,3708,3709,5, - 367,0,0,3709,303,1,0,0,0,3710,3711,5,305,0,0,3711,3712,5,259,0,0, - 3712,3714,5,376,0,0,3713,3715,3,630,315,0,3714,3713,1,0,0,0,3714, - 3715,1,0,0,0,3715,3716,1,0,0,0,3716,3718,3,1412,706,0,3717,3719, - 3,296,148,0,3718,3717,1,0,0,0,3718,3719,1,0,0,0,3719,305,1,0,0,0, - 3720,3722,5,46,0,0,3721,3723,3,190,95,0,3722,3721,1,0,0,0,3722,3723, - 1,0,0,0,3723,3724,1,0,0,0,3724,3726,5,328,0,0,3725,3727,3,514,257, - 0,3726,3725,1,0,0,0,3726,3727,1,0,0,0,3727,3728,1,0,0,0,3728,3730, - 3,1414,707,0,3729,3731,3,310,155,0,3730,3729,1,0,0,0,3730,3731,1, - 0,0,0,3731,307,1,0,0,0,3732,3733,5,138,0,0,3733,3735,5,328,0,0,3734, - 3736,3,748,374,0,3735,3734,1,0,0,0,3735,3736,1,0,0,0,3736,3737,1, - 0,0,0,3737,3738,3,1414,707,0,3738,3739,3,314,157,0,3739,309,1,0, - 0,0,3740,3741,3,314,157,0,3741,311,1,0,0,0,3742,3743,5,2,0,0,3743, - 3744,3,314,157,0,3744,3745,5,3,0,0,3745,313,1,0,0,0,3746,3748,3, - 316,158,0,3747,3746,1,0,0,0,3748,3749,1,0,0,0,3749,3747,1,0,0,0, - 3749,3750,1,0,0,0,3750,315,1,0,0,0,3751,3752,5,36,0,0,3752,3786, - 3,1174,587,0,3753,3754,5,148,0,0,3754,3786,3,320,160,0,3755,3786, - 5,173,0,0,3756,3758,5,225,0,0,3757,3759,3,318,159,0,3758,3757,1, - 0,0,0,3758,3759,1,0,0,0,3759,3760,1,0,0,0,3760,3786,3,320,160,0, - 3761,3762,5,260,0,0,3762,3786,3,320,160,0,3763,3764,5,262,0,0,3764, - 3786,3,320,160,0,3765,3766,5,269,0,0,3766,3786,7,26,0,0,3767,3768, - 5,281,0,0,3768,3769,5,147,0,0,3769,3786,3,552,276,0,3770,3771,5, - 328,0,0,3771,3772,5,266,0,0,3772,3786,3,558,279,0,3773,3775,5,340, - 0,0,3774,3776,3,14,7,0,3775,3774,1,0,0,0,3775,3776,1,0,0,0,3776, - 3777,1,0,0,0,3777,3786,3,320,160,0,3778,3780,5,314,0,0,3779,3781, - 3,14,7,0,3780,3779,1,0,0,0,3780,3781,1,0,0,0,3781,3783,1,0,0,0,3782, - 3784,3,320,160,0,3783,3782,1,0,0,0,3783,3784,1,0,0,0,3784,3786,1, - 0,0,0,3785,3751,1,0,0,0,3785,3753,1,0,0,0,3785,3755,1,0,0,0,3785, - 3756,1,0,0,0,3785,3761,1,0,0,0,3785,3763,1,0,0,0,3785,3765,1,0,0, - 0,3785,3767,1,0,0,0,3785,3770,1,0,0,0,3785,3773,1,0,0,0,3785,3778, - 1,0,0,0,3786,317,1,0,0,0,3787,3788,5,147,0,0,3788,319,1,0,0,0,3789, - 3796,3,1456,728,0,3790,3791,5,12,0,0,3791,3796,3,1456,728,0,3792, - 3793,5,13,0,0,3793,3796,3,1456,728,0,3794,3796,3,1466,733,0,3795, - 3789,1,0,0,0,3795,3790,1,0,0,0,3795,3792,1,0,0,0,3795,3794,1,0,0, - 0,3796,321,1,0,0,0,3797,3802,3,320,160,0,3798,3799,5,6,0,0,3799, - 3801,3,320,160,0,3800,3798,1,0,0,0,3801,3804,1,0,0,0,3802,3800,1, - 0,0,0,3802,3803,1,0,0,0,3803,323,1,0,0,0,3804,3802,1,0,0,0,3805, - 3807,5,46,0,0,3806,3808,3,658,329,0,3807,3806,1,0,0,0,3807,3808, - 1,0,0,0,3808,3810,1,0,0,0,3809,3811,3,326,163,0,3810,3809,1,0,0, - 0,3810,3811,1,0,0,0,3811,3813,1,0,0,0,3812,3814,3,336,168,0,3813, - 3812,1,0,0,0,3813,3814,1,0,0,0,3814,3815,1,0,0,0,3815,3816,5,247, - 0,0,3816,3825,3,1438,719,0,3817,3818,5,215,0,0,3818,3820,3,328,164, - 0,3819,3821,3,330,165,0,3820,3819,1,0,0,0,3820,3821,1,0,0,0,3821, - 3823,1,0,0,0,3822,3824,3,334,167,0,3823,3822,1,0,0,0,3823,3824,1, - 0,0,0,3824,3826,1,0,0,0,3825,3817,1,0,0,0,3825,3826,1,0,0,0,3826, - 325,1,0,0,0,3827,3828,5,359,0,0,3828,327,1,0,0,0,3829,3831,3,1438, - 719,0,3830,3832,3,560,280,0,3831,3830,1,0,0,0,3831,3832,1,0,0,0, - 3832,329,1,0,0,0,3833,3834,5,239,0,0,3834,3835,3,328,164,0,3835, - 331,1,0,0,0,3836,3837,5,373,0,0,3837,3841,3,328,164,0,3838,3839, - 5,269,0,0,3839,3841,5,373,0,0,3840,3836,1,0,0,0,3840,3838,1,0,0, - 0,3841,333,1,0,0,0,3842,3843,3,332,166,0,3843,335,1,0,0,0,3844,3845, - 5,295,0,0,3845,337,1,0,0,0,3846,3847,5,46,0,0,3847,3848,5,351,0, - 0,3848,3850,3,1404,702,0,3849,3851,3,340,170,0,3850,3849,1,0,0,0, - 3850,3851,1,0,0,0,3851,3852,1,0,0,0,3852,3853,5,255,0,0,3853,3855, - 3,1460,730,0,3854,3856,3,134,67,0,3855,3854,1,0,0,0,3855,3856,1, - 0,0,0,3856,339,1,0,0,0,3857,3858,5,282,0,0,3858,3859,3,1472,736, - 0,3859,341,1,0,0,0,3860,3861,5,46,0,0,3861,3863,5,204,0,0,3862,3864, - 3,514,257,0,3863,3862,1,0,0,0,3863,3864,1,0,0,0,3864,3865,1,0,0, - 0,3865,3867,3,1438,719,0,3866,3868,3,14,7,0,3867,3866,1,0,0,0,3867, - 3868,1,0,0,0,3868,3869,1,0,0,0,3869,3870,3,344,172,0,3870,343,1, - 0,0,0,3871,3873,3,346,173,0,3872,3871,1,0,0,0,3873,3876,1,0,0,0, - 3874,3872,1,0,0,0,3874,3875,1,0,0,0,3875,345,1,0,0,0,3876,3874,1, - 0,0,0,3877,3878,5,323,0,0,3878,3885,3,1424,712,0,3879,3880,5,375, - 0,0,3880,3885,3,80,40,0,3881,3882,5,64,0,0,3882,3885,3,80,40,0,3883, - 3885,5,150,0,0,3884,3877,1,0,0,0,3884,3879,1,0,0,0,3884,3881,1,0, - 0,0,3884,3883,1,0,0,0,3885,347,1,0,0,0,3886,3887,5,138,0,0,3887, - 3888,5,204,0,0,3888,3889,3,1438,719,0,3889,3890,5,369,0,0,3890,3891, - 3,350,175,0,3891,349,1,0,0,0,3892,3894,3,352,176,0,3893,3892,1,0, - 0,0,3894,3897,1,0,0,0,3895,3893,1,0,0,0,3895,3896,1,0,0,0,3896,351, - 1,0,0,0,3897,3895,1,0,0,0,3898,3899,5,94,0,0,3899,3900,3,80,40,0, - 3900,353,1,0,0,0,3901,3902,5,138,0,0,3902,3903,5,204,0,0,3903,3904, - 3,1438,719,0,3904,3905,3,44,22,0,3905,3906,3,546,273,0,3906,4004, - 1,0,0,0,3907,3908,5,138,0,0,3908,3909,5,204,0,0,3909,3910,3,1438, - 719,0,3910,3911,3,44,22,0,3911,3912,3,544,272,0,3912,4004,1,0,0, - 0,3913,3914,5,138,0,0,3914,3915,5,204,0,0,3915,3916,3,1438,719,0, - 3916,3917,3,44,22,0,3917,3918,5,136,0,0,3918,3919,3,698,349,0,3919, - 4004,1,0,0,0,3920,3921,5,138,0,0,3921,3922,5,204,0,0,3922,3923,3, - 1438,719,0,3923,3924,3,44,22,0,3924,3925,5,41,0,0,3925,3926,5,2, - 0,0,3926,3927,3,1170,585,0,3927,3928,5,36,0,0,3928,3929,3,1170,585, - 0,3929,3930,5,3,0,0,3930,4004,1,0,0,0,3931,3932,5,138,0,0,3932,3933, - 5,204,0,0,3933,3934,3,1438,719,0,3934,3935,3,44,22,0,3935,3936,5, - 189,0,0,3936,3937,3,1170,585,0,3937,4004,1,0,0,0,3938,3939,5,138, - 0,0,3939,3940,5,204,0,0,3940,3941,3,1438,719,0,3941,3942,3,44,22, - 0,3942,3943,5,211,0,0,3943,3944,3,674,337,0,3944,4004,1,0,0,0,3945, - 3946,5,138,0,0,3946,3947,5,204,0,0,3947,3948,3,1438,719,0,3948,3949, - 3,44,22,0,3949,3950,5,278,0,0,3950,3951,3,736,368,0,3951,4004,1, - 0,0,0,3952,3953,5,138,0,0,3953,3954,5,204,0,0,3954,3955,3,1438,719, - 0,3955,3956,3,44,22,0,3956,3957,5,278,0,0,3957,3958,5,156,0,0,3958, - 3959,3,558,279,0,3959,3960,5,100,0,0,3960,3961,3,1438,719,0,3961, - 4004,1,0,0,0,3962,3963,5,138,0,0,3963,3964,5,204,0,0,3964,3965,3, - 1438,719,0,3965,3966,3,44,22,0,3966,3967,5,278,0,0,3967,3968,5,206, - 0,0,3968,3969,3,558,279,0,3969,3970,5,100,0,0,3970,3971,3,1438,719, - 0,3971,4004,1,0,0,0,3972,3973,5,138,0,0,3973,3974,5,204,0,0,3974, - 3975,3,1438,719,0,3975,3976,3,44,22,0,3976,3977,5,296,0,0,3977,3978, - 3,670,335,0,3978,4004,1,0,0,0,3979,3980,5,138,0,0,3980,3981,5,204, - 0,0,3981,3982,3,1438,719,0,3982,3983,3,44,22,0,3983,3984,5,442,0, - 0,3984,3985,3,666,333,0,3985,4004,1,0,0,0,3986,3987,5,138,0,0,3987, - 3988,5,204,0,0,3988,3989,3,1438,719,0,3989,3990,3,44,22,0,3990,3991, - 5,443,0,0,3991,3992,5,62,0,0,3992,3993,3,1170,585,0,3993,3994,5, - 247,0,0,3994,3995,3,1438,719,0,3995,4004,1,0,0,0,3996,3997,5,138, - 0,0,3997,3998,5,204,0,0,3998,3999,3,1438,719,0,3999,4000,3,44,22, - 0,4000,4001,5,360,0,0,4001,4002,3,1170,585,0,4002,4004,1,0,0,0,4003, - 3901,1,0,0,0,4003,3907,1,0,0,0,4003,3913,1,0,0,0,4003,3920,1,0,0, - 0,4003,3931,1,0,0,0,4003,3938,1,0,0,0,4003,3945,1,0,0,0,4003,3952, - 1,0,0,0,4003,3962,1,0,0,0,4003,3972,1,0,0,0,4003,3979,1,0,0,0,4003, - 3986,1,0,0,0,4003,3996,1,0,0,0,4004,355,1,0,0,0,4005,4006,5,46,0, - 0,4006,4007,5,63,0,0,4007,4008,5,174,0,0,4008,4009,5,381,0,0,4009, - 4011,3,1438,719,0,4010,4012,3,362,181,0,4011,4010,1,0,0,0,4011,4012, - 1,0,0,0,4012,4014,1,0,0,0,4013,4015,3,366,183,0,4014,4013,1,0,0, - 0,4014,4015,1,0,0,0,4015,357,1,0,0,0,4016,4017,5,215,0,0,4017,4025, - 3,328,164,0,4018,4019,5,269,0,0,4019,4025,5,215,0,0,4020,4021,5, - 373,0,0,4021,4025,3,328,164,0,4022,4023,5,269,0,0,4023,4025,5,373, - 0,0,4024,4016,1,0,0,0,4024,4018,1,0,0,0,4024,4020,1,0,0,0,4024,4022, - 1,0,0,0,4025,359,1,0,0,0,4026,4028,3,358,179,0,4027,4026,1,0,0,0, - 4028,4029,1,0,0,0,4029,4027,1,0,0,0,4029,4030,1,0,0,0,4030,361,1, - 0,0,0,4031,4032,3,360,180,0,4032,363,1,0,0,0,4033,4034,5,138,0,0, - 4034,4035,5,63,0,0,4035,4036,5,174,0,0,4036,4037,5,381,0,0,4037, - 4039,3,1438,719,0,4038,4040,3,362,181,0,4039,4038,1,0,0,0,4039,4040, - 1,0,0,0,4040,4041,1,0,0,0,4041,4042,3,370,185,0,4042,4051,1,0,0, - 0,4043,4044,5,138,0,0,4044,4045,5,63,0,0,4045,4046,5,174,0,0,4046, - 4047,5,381,0,0,4047,4048,3,1438,719,0,4048,4049,3,360,180,0,4049, - 4051,1,0,0,0,4050,4033,1,0,0,0,4050,4043,1,0,0,0,4051,365,1,0,0, - 0,4052,4053,5,280,0,0,4053,4054,5,2,0,0,4054,4055,3,368,184,0,4055, - 4056,5,3,0,0,4056,367,1,0,0,0,4057,4062,3,376,188,0,4058,4059,5, - 6,0,0,4059,4061,3,376,188,0,4060,4058,1,0,0,0,4061,4064,1,0,0,0, - 4062,4060,1,0,0,0,4062,4063,1,0,0,0,4063,369,1,0,0,0,4064,4062,1, - 0,0,0,4065,4066,5,280,0,0,4066,4067,5,2,0,0,4067,4068,3,372,186, - 0,4068,4069,5,3,0,0,4069,371,1,0,0,0,4070,4075,3,374,187,0,4071, - 4072,5,6,0,0,4072,4074,3,374,187,0,4073,4071,1,0,0,0,4074,4077,1, - 0,0,0,4075,4073,1,0,0,0,4075,4076,1,0,0,0,4076,373,1,0,0,0,4077, - 4075,1,0,0,0,4078,4086,3,376,188,0,4079,4080,5,333,0,0,4080,4086, - 3,376,188,0,4081,4082,5,133,0,0,4082,4086,3,376,188,0,4083,4084, - 5,191,0,0,4084,4086,3,376,188,0,4085,4078,1,0,0,0,4085,4079,1,0, - 0,0,4085,4081,1,0,0,0,4085,4083,1,0,0,0,4086,375,1,0,0,0,4087,4088, - 3,378,189,0,4088,4089,3,380,190,0,4089,377,1,0,0,0,4090,4091,3,1492, - 746,0,4091,379,1,0,0,0,4092,4093,3,1460,730,0,4093,381,1,0,0,0,4094, - 4095,5,46,0,0,4095,4097,5,331,0,0,4096,4098,3,514,257,0,4097,4096, - 1,0,0,0,4097,4098,1,0,0,0,4098,4099,1,0,0,0,4099,4101,3,1438,719, - 0,4100,4102,3,384,192,0,4101,4100,1,0,0,0,4101,4102,1,0,0,0,4102, - 4104,1,0,0,0,4103,4105,3,388,194,0,4104,4103,1,0,0,0,4104,4105,1, - 0,0,0,4105,4106,1,0,0,0,4106,4107,5,63,0,0,4107,4108,5,174,0,0,4108, - 4109,5,381,0,0,4109,4111,3,1438,719,0,4110,4112,3,366,183,0,4111, - 4110,1,0,0,0,4111,4112,1,0,0,0,4112,383,1,0,0,0,4113,4114,5,360, - 0,0,4114,4115,3,1460,730,0,4115,385,1,0,0,0,4116,4119,5,375,0,0, - 4117,4120,3,1460,730,0,4118,4120,5,78,0,0,4119,4117,1,0,0,0,4119, - 4118,1,0,0,0,4120,387,1,0,0,0,4121,4122,3,386,193,0,4122,389,1,0, - 0,0,4123,4124,5,138,0,0,4124,4125,5,331,0,0,4125,4131,3,1438,719, - 0,4126,4132,3,370,185,0,4127,4129,3,386,193,0,4128,4130,3,370,185, - 0,4129,4128,1,0,0,0,4129,4130,1,0,0,0,4130,4132,1,0,0,0,4131,4126, - 1,0,0,0,4131,4127,1,0,0,0,4132,391,1,0,0,0,4133,4134,5,46,0,0,4134, - 4135,5,63,0,0,4135,4137,5,92,0,0,4136,4138,3,514,257,0,4137,4136, - 1,0,0,0,4137,4138,1,0,0,0,4138,4139,1,0,0,0,4139,4140,3,1406,703, - 0,4140,4142,5,2,0,0,4141,4143,3,194,97,0,4142,4141,1,0,0,0,4142, - 4143,1,0,0,0,4143,4144,1,0,0,0,4144,4146,5,3,0,0,4145,4147,3,264, - 132,0,4146,4145,1,0,0,0,4146,4147,1,0,0,0,4147,4148,1,0,0,0,4148, - 4149,5,331,0,0,4149,4151,3,1438,719,0,4150,4152,3,366,183,0,4151, - 4150,1,0,0,0,4151,4152,1,0,0,0,4152,4173,1,0,0,0,4153,4154,5,46, - 0,0,4154,4155,5,63,0,0,4155,4157,5,92,0,0,4156,4158,3,514,257,0, - 4157,4156,1,0,0,0,4157,4158,1,0,0,0,4158,4159,1,0,0,0,4159,4160, - 3,1406,703,0,4160,4161,5,285,0,0,4161,4162,5,275,0,0,4162,4164,3, - 1408,704,0,4163,4165,3,196,98,0,4164,4163,1,0,0,0,4164,4165,1,0, - 0,0,4165,4166,1,0,0,0,4166,4167,3,144,72,0,4167,4168,5,331,0,0,4168, - 4170,3,1438,719,0,4169,4171,3,366,183,0,4170,4169,1,0,0,0,4170,4171, - 1,0,0,0,4171,4173,1,0,0,0,4172,4133,1,0,0,0,4172,4153,1,0,0,0,4173, - 393,1,0,0,0,4174,4175,5,444,0,0,4175,4176,5,63,0,0,4176,4177,5,323, - 0,0,4177,4179,3,1424,712,0,4178,4180,3,398,199,0,4179,4178,1,0,0, - 0,4179,4180,1,0,0,0,4180,4181,1,0,0,0,4181,4182,5,64,0,0,4182,4183, - 5,331,0,0,4183,4184,3,1438,719,0,4184,4185,5,71,0,0,4185,4187,3, - 1438,719,0,4186,4188,3,366,183,0,4187,4186,1,0,0,0,4187,4188,1,0, - 0,0,4188,395,1,0,0,0,4189,4190,5,74,0,0,4190,4193,5,94,0,0,4191, - 4193,5,59,0,0,4192,4189,1,0,0,0,4192,4191,1,0,0,0,4193,397,1,0,0, - 0,4194,4195,3,396,198,0,4195,4196,5,2,0,0,4196,4197,3,1126,563,0, - 4197,4198,5,3,0,0,4198,399,1,0,0,0,4199,4200,5,46,0,0,4200,4201, - 5,99,0,0,4201,4203,5,257,0,0,4202,4204,3,514,257,0,4203,4202,1,0, - 0,0,4203,4204,1,0,0,0,4204,4205,1,0,0,0,4205,4206,5,62,0,0,4206, - 4207,3,402,201,0,4207,4208,5,331,0,0,4208,4210,3,1438,719,0,4209, - 4211,3,366,183,0,4210,4209,1,0,0,0,4210,4211,1,0,0,0,4211,401,1, - 0,0,0,4212,4215,3,1472,736,0,4213,4215,5,99,0,0,4214,4212,1,0,0, - 0,4214,4213,1,0,0,0,4215,403,1,0,0,0,4216,4217,5,138,0,0,4217,4218, - 5,99,0,0,4218,4219,5,257,0,0,4219,4220,5,62,0,0,4220,4221,3,402, - 201,0,4221,4222,5,331,0,0,4222,4223,3,1438,719,0,4223,4224,3,370, - 185,0,4224,405,1,0,0,0,4225,4226,5,46,0,0,4226,4227,5,445,0,0,4227, - 4228,3,1438,719,0,4228,4229,5,80,0,0,4229,4231,3,1414,707,0,4230, - 4232,3,424,212,0,4231,4230,1,0,0,0,4231,4232,1,0,0,0,4232,4234,1, - 0,0,0,4233,4235,3,426,213,0,4234,4233,1,0,0,0,4234,4235,1,0,0,0, - 4235,4237,1,0,0,0,4236,4238,3,420,210,0,4237,4236,1,0,0,0,4237,4238, - 1,0,0,0,4238,4240,1,0,0,0,4239,4241,3,416,208,0,4240,4239,1,0,0, - 0,4240,4241,1,0,0,0,4241,4243,1,0,0,0,4242,4244,3,418,209,0,4243, - 4242,1,0,0,0,4243,4244,1,0,0,0,4244,407,1,0,0,0,4245,4246,5,138, - 0,0,4246,4247,5,445,0,0,4247,4248,3,1438,719,0,4248,4249,5,80,0, - 0,4249,4251,3,1414,707,0,4250,4252,3,422,211,0,4251,4250,1,0,0,0, - 4251,4252,1,0,0,0,4252,4254,1,0,0,0,4253,4255,3,416,208,0,4254,4253, - 1,0,0,0,4254,4255,1,0,0,0,4255,4257,1,0,0,0,4256,4258,3,418,209, - 0,4257,4256,1,0,0,0,4257,4258,1,0,0,0,4258,409,1,0,0,0,4259,4260, - 5,138,0,0,4260,4261,5,296,0,0,4261,4263,3,1430,715,0,4262,4264,3, - 660,330,0,4263,4262,1,0,0,0,4263,4264,1,0,0,0,4264,4265,1,0,0,0, - 4265,4266,3,412,206,0,4266,411,1,0,0,0,4267,4271,3,414,207,0,4268, - 4270,3,414,207,0,4269,4268,1,0,0,0,4270,4273,1,0,0,0,4271,4269,1, - 0,0,0,4271,4272,1,0,0,0,4272,4275,1,0,0,0,4273,4271,1,0,0,0,4274, - 4276,5,315,0,0,4275,4274,1,0,0,0,4275,4276,1,0,0,0,4276,4294,1,0, - 0,0,4277,4278,5,309,0,0,4278,4279,5,94,0,0,4279,4294,3,1432,716, - 0,4280,4281,5,282,0,0,4281,4282,5,94,0,0,4282,4294,3,1472,736,0, - 4283,4284,5,333,0,0,4284,4285,5,323,0,0,4285,4294,3,48,24,0,4286, - 4288,5,269,0,0,4287,4286,1,0,0,0,4287,4288,1,0,0,0,4288,4289,1,0, - 0,0,4289,4290,5,462,0,0,4290,4291,5,80,0,0,4291,4292,5,204,0,0,4292, - 4294,3,1438,719,0,4293,4267,1,0,0,0,4293,4277,1,0,0,0,4293,4280, - 1,0,0,0,4293,4283,1,0,0,0,4293,4287,1,0,0,0,4294,413,1,0,0,0,4295, - 4297,5,205,0,0,4296,4295,1,0,0,0,4296,4297,1,0,0,0,4297,4298,1,0, - 0,0,4298,4299,5,327,0,0,4299,4306,5,243,0,0,4300,4302,5,205,0,0, - 4301,4300,1,0,0,0,4301,4302,1,0,0,0,4302,4303,1,0,0,0,4303,4304, - 5,327,0,0,4304,4306,5,181,0,0,4305,4296,1,0,0,0,4305,4301,1,0,0, - 0,4306,4324,1,0,0,0,4307,4308,5,333,0,0,4308,4309,3,1438,719,0,4309, - 4312,7,27,0,0,4310,4313,3,1438,719,0,4311,4313,5,53,0,0,4312,4310, - 1,0,0,0,4312,4311,1,0,0,0,4313,4324,1,0,0,0,4314,4315,5,333,0,0, - 4315,4316,3,1438,719,0,4316,4317,5,64,0,0,4317,4318,5,434,0,0,4318, - 4324,1,0,0,0,4319,4320,5,313,0,0,4320,4324,3,1438,719,0,4321,4322, - 5,313,0,0,4322,4324,5,30,0,0,4323,4305,1,0,0,0,4323,4307,1,0,0,0, - 4323,4314,1,0,0,0,4323,4319,1,0,0,0,4323,4321,1,0,0,0,4324,415,1, - 0,0,0,4325,4326,5,100,0,0,4326,4327,5,2,0,0,4327,4328,3,1214,607, - 0,4328,4329,5,3,0,0,4329,417,1,0,0,0,4330,4331,5,105,0,0,4331,4332, - 5,42,0,0,4332,4333,5,2,0,0,4333,4334,3,1214,607,0,4334,4335,5,3, - 0,0,4335,419,1,0,0,0,4336,4337,5,94,0,0,4337,4338,3,1474,737,0,4338, - 421,1,0,0,0,4339,4340,5,94,0,0,4340,4341,3,1474,737,0,4341,423,1, - 0,0,0,4342,4346,5,36,0,0,4343,4347,5,541,0,0,4344,4347,5,542,0,0, - 4345,4347,3,1494,747,0,4346,4343,1,0,0,0,4346,4344,1,0,0,0,4346, - 4345,1,0,0,0,4347,425,1,0,0,0,4348,4349,5,62,0,0,4349,4350,3,428, - 214,0,4350,427,1,0,0,0,4351,4352,7,28,0,0,4352,429,1,0,0,0,4353, - 4354,5,46,0,0,4354,4355,5,131,0,0,4355,4356,5,446,0,0,4356,4357, - 3,1438,719,0,4357,4358,5,360,0,0,4358,4359,3,432,216,0,4359,4360, - 5,215,0,0,4360,4361,3,328,164,0,4361,431,1,0,0,0,4362,4363,7,29, - 0,0,4363,433,1,0,0,0,4364,4366,5,46,0,0,4365,4367,3,658,329,0,4366, - 4365,1,0,0,0,4366,4367,1,0,0,0,4367,4368,1,0,0,0,4368,4369,5,357, - 0,0,4369,4370,3,1438,719,0,4370,4371,3,436,218,0,4371,4372,3,442, - 221,0,4372,4373,5,80,0,0,4373,4375,3,1408,704,0,4374,4376,3,446, - 223,0,4375,4374,1,0,0,0,4375,4376,1,0,0,0,4376,4378,1,0,0,0,4377, - 4379,3,458,229,0,4378,4377,1,0,0,0,4378,4379,1,0,0,0,4379,4381,1, - 0,0,0,4380,4382,3,464,232,0,4381,4380,1,0,0,0,4381,4382,1,0,0,0, - 4382,4383,1,0,0,0,4383,4384,5,202,0,0,4384,4385,3,466,233,0,4385, - 4386,5,2,0,0,4386,4387,3,468,234,0,4387,4388,5,3,0,0,4388,4419,1, - 0,0,0,4389,4391,5,46,0,0,4390,4392,3,658,329,0,4391,4390,1,0,0,0, - 4391,4392,1,0,0,0,4392,4394,1,0,0,0,4393,4395,5,45,0,0,4394,4393, - 1,0,0,0,4394,4395,1,0,0,0,4395,4396,1,0,0,0,4396,4397,5,357,0,0, - 4397,4398,3,1438,719,0,4398,4399,3,436,218,0,4399,4400,3,442,221, - 0,4400,4401,5,80,0,0,4401,4403,3,1408,704,0,4402,4404,3,472,236, - 0,4403,4402,1,0,0,0,4403,4404,1,0,0,0,4404,4405,1,0,0,0,4405,4407, - 3,474,237,0,4406,4408,3,438,219,0,4407,4406,1,0,0,0,4407,4408,1, - 0,0,0,4408,4410,1,0,0,0,4409,4411,3,464,232,0,4410,4409,1,0,0,0, - 4410,4411,1,0,0,0,4411,4412,1,0,0,0,4412,4413,5,202,0,0,4413,4414, - 3,466,233,0,4414,4415,5,2,0,0,4415,4416,3,468,234,0,4416,4417,5, - 3,0,0,4417,4419,1,0,0,0,4418,4364,1,0,0,0,4418,4389,1,0,0,0,4419, - 435,1,0,0,0,4420,4425,5,145,0,0,4421,4425,5,135,0,0,4422,4423,5, - 242,0,0,4423,4425,5,275,0,0,4424,4420,1,0,0,0,4424,4421,1,0,0,0, - 4424,4422,1,0,0,0,4425,437,1,0,0,0,4426,4428,5,62,0,0,4427,4429, - 5,192,0,0,4428,4427,1,0,0,0,4428,4429,1,0,0,0,4429,4430,1,0,0,0, - 4430,4431,3,440,220,0,4431,439,1,0,0,0,4432,4433,7,30,0,0,4433,441, - 1,0,0,0,4434,4439,3,444,222,0,4435,4436,5,82,0,0,4436,4438,3,444, - 222,0,4437,4435,1,0,0,0,4438,4441,1,0,0,0,4439,4437,1,0,0,0,4439, - 4440,1,0,0,0,4440,443,1,0,0,0,4441,4439,1,0,0,0,4442,4450,5,241, - 0,0,4443,4450,5,182,0,0,4444,4450,5,369,0,0,4445,4446,5,369,0,0, - 4446,4447,5,275,0,0,4447,4450,3,244,122,0,4448,4450,5,358,0,0,4449, - 4442,1,0,0,0,4449,4443,1,0,0,0,4449,4444,1,0,0,0,4449,4445,1,0,0, - 0,4449,4448,1,0,0,0,4450,445,1,0,0,0,4451,4452,5,447,0,0,4452,4453, - 3,448,224,0,4453,447,1,0,0,0,4454,4456,3,450,225,0,4455,4454,1,0, - 0,0,4456,4457,1,0,0,0,4457,4455,1,0,0,0,4457,4458,1,0,0,0,4458,449, - 1,0,0,0,4459,4460,3,452,226,0,4460,4462,3,454,227,0,4461,4463,3, - 874,437,0,4462,4461,1,0,0,0,4462,4463,1,0,0,0,4463,4464,1,0,0,0, - 4464,4465,3,456,228,0,4465,451,1,0,0,0,4466,4467,7,31,0,0,4467,453, - 1,0,0,0,4468,4469,7,32,0,0,4469,455,1,0,0,0,4470,4471,3,1476,738, - 0,4471,457,1,0,0,0,4472,4474,5,62,0,0,4473,4475,3,460,230,0,4474, - 4473,1,0,0,0,4474,4475,1,0,0,0,4475,4476,1,0,0,0,4476,4477,3,462, - 231,0,4477,459,1,0,0,0,4478,4479,5,192,0,0,4479,461,1,0,0,0,4480, - 4481,7,30,0,0,4481,463,1,0,0,0,4482,4483,5,102,0,0,4483,4484,5,2, - 0,0,4484,4485,3,1214,607,0,4485,4486,5,3,0,0,4486,465,1,0,0,0,4487, - 4488,5,211,0,0,4488,4492,3,1446,723,0,4489,4490,5,296,0,0,4490,4492, - 3,1430,715,0,4491,4487,1,0,0,0,4491,4489,1,0,0,0,4492,467,1,0,0, - 0,4493,4496,3,470,235,0,4494,4496,1,0,0,0,4495,4493,1,0,0,0,4495, - 4494,1,0,0,0,4496,4501,1,0,0,0,4497,4498,5,6,0,0,4498,4500,3,470, - 235,0,4499,4497,1,0,0,0,4500,4503,1,0,0,0,4501,4499,1,0,0,0,4501, - 4502,1,0,0,0,4502,469,1,0,0,0,4503,4501,1,0,0,0,4504,4509,3,1458, - 729,0,4505,4509,3,1456,728,0,4506,4509,3,1460,730,0,4507,4509,3, - 1492,746,0,4508,4504,1,0,0,0,4508,4505,1,0,0,0,4508,4506,1,0,0,0, - 4508,4507,1,0,0,0,4509,471,1,0,0,0,4510,4511,5,64,0,0,4511,4512, - 3,1414,707,0,4512,473,1,0,0,0,4513,4515,3,476,238,0,4514,4513,1, - 0,0,0,4515,4518,1,0,0,0,4516,4514,1,0,0,0,4516,4517,1,0,0,0,4517, - 475,1,0,0,0,4518,4516,1,0,0,0,4519,4520,5,77,0,0,4520,4531,5,54, - 0,0,4521,4531,5,54,0,0,4522,4523,5,69,0,0,4523,4531,5,221,0,0,4524, - 4525,5,69,0,0,4525,4531,5,180,0,0,4526,4527,5,77,0,0,4527,4531,5, - 371,0,0,4528,4529,5,269,0,0,4529,4531,5,228,0,0,4530,4519,1,0,0, - 0,4530,4521,1,0,0,0,4530,4522,1,0,0,0,4530,4524,1,0,0,0,4530,4526, - 1,0,0,0,4530,4528,1,0,0,0,4531,477,1,0,0,0,4532,4533,5,46,0,0,4533, - 4534,5,198,0,0,4534,4535,5,357,0,0,4535,4536,3,1438,719,0,4536,4537, - 5,80,0,0,4537,4538,3,1492,746,0,4538,4539,5,202,0,0,4539,4540,3, - 466,233,0,4540,4541,5,2,0,0,4541,4542,5,3,0,0,4542,4557,1,0,0,0, - 4543,4544,5,46,0,0,4544,4545,5,198,0,0,4545,4546,5,357,0,0,4546, - 4547,3,1438,719,0,4547,4548,5,80,0,0,4548,4549,3,1492,746,0,4549, - 4550,5,102,0,0,4550,4551,3,480,240,0,4551,4552,5,202,0,0,4552,4553, - 3,466,233,0,4553,4554,5,2,0,0,4554,4555,5,3,0,0,4555,4557,1,0,0, - 0,4556,4532,1,0,0,0,4556,4543,1,0,0,0,4557,479,1,0,0,0,4558,4563, - 3,482,241,0,4559,4560,5,33,0,0,4560,4562,3,482,241,0,4561,4559,1, - 0,0,0,4562,4565,1,0,0,0,4563,4561,1,0,0,0,4563,4564,1,0,0,0,4564, - 481,1,0,0,0,4565,4563,1,0,0,0,4566,4567,3,1476,738,0,4567,4568,5, - 68,0,0,4568,4569,5,2,0,0,4569,4570,3,484,242,0,4570,4571,5,3,0,0, - 4571,483,1,0,0,0,4572,4577,3,1460,730,0,4573,4574,5,6,0,0,4574,4576, - 3,1460,730,0,4575,4573,1,0,0,0,4576,4579,1,0,0,0,4577,4575,1,0,0, - 0,4577,4578,1,0,0,0,4578,485,1,0,0,0,4579,4577,1,0,0,0,4580,4581, - 5,138,0,0,4581,4582,5,198,0,0,4582,4583,5,357,0,0,4583,4584,3,1438, - 719,0,4584,4585,3,488,244,0,4585,487,1,0,0,0,4586,4593,5,193,0,0, - 4587,4588,5,193,0,0,4588,4593,5,312,0,0,4589,4590,5,193,0,0,4590, - 4593,5,139,0,0,4591,4593,5,186,0,0,4592,4586,1,0,0,0,4592,4587,1, - 0,0,0,4592,4589,1,0,0,0,4592,4591,1,0,0,0,4593,489,1,0,0,0,4594, - 4595,5,46,0,0,4595,4596,5,140,0,0,4596,4597,3,558,279,0,4597,4598, - 5,42,0,0,4598,4599,5,2,0,0,4599,4600,3,1214,607,0,4600,4601,5,3, - 0,0,4601,4602,3,474,237,0,4602,491,1,0,0,0,4603,4605,5,46,0,0,4604, - 4606,3,658,329,0,4605,4604,1,0,0,0,4605,4606,1,0,0,0,4606,4607,1, - 0,0,0,4607,4608,5,136,0,0,4608,4609,3,1446,723,0,4609,4610,3,694, - 347,0,4610,4611,3,494,247,0,4611,4707,1,0,0,0,4612,4614,5,46,0,0, - 4613,4615,3,658,329,0,4614,4613,1,0,0,0,4614,4615,1,0,0,0,4615,4616, - 1,0,0,0,4616,4617,5,136,0,0,4617,4618,3,1446,723,0,4618,4619,3,502, - 251,0,4619,4707,1,0,0,0,4620,4621,5,46,0,0,4621,4622,5,278,0,0,4622, - 4623,3,732,366,0,4623,4624,3,494,247,0,4624,4707,1,0,0,0,4625,4626, - 5,46,0,0,4626,4627,5,360,0,0,4627,4628,3,558,279,0,4628,4629,3,494, - 247,0,4629,4707,1,0,0,0,4630,4631,5,46,0,0,4631,4632,5,360,0,0,4632, - 4707,3,558,279,0,4633,4634,5,46,0,0,4634,4635,5,360,0,0,4635,4636, - 3,558,279,0,4636,4637,5,36,0,0,4637,4639,5,2,0,0,4638,4640,3,1150, - 575,0,4639,4638,1,0,0,0,4639,4640,1,0,0,0,4640,4641,1,0,0,0,4641, - 4642,5,3,0,0,4642,4707,1,0,0,0,4643,4644,5,46,0,0,4644,4645,5,360, - 0,0,4645,4646,3,558,279,0,4646,4647,5,36,0,0,4647,4648,5,196,0,0, - 4648,4650,5,2,0,0,4649,4651,3,508,254,0,4650,4649,1,0,0,0,4650,4651, - 1,0,0,0,4651,4652,1,0,0,0,4652,4653,5,3,0,0,4653,4707,1,0,0,0,4654, - 4655,5,46,0,0,4655,4656,5,360,0,0,4656,4657,3,558,279,0,4657,4658, - 5,36,0,0,4658,4659,5,299,0,0,4659,4660,3,494,247,0,4660,4707,1,0, - 0,0,4661,4662,5,46,0,0,4662,4663,5,355,0,0,4663,4664,5,325,0,0,4664, - 4665,5,283,0,0,4665,4666,3,558,279,0,4666,4667,3,494,247,0,4667, - 4707,1,0,0,0,4668,4669,5,46,0,0,4669,4670,5,355,0,0,4670,4671,5, - 325,0,0,4671,4672,5,185,0,0,4672,4673,3,558,279,0,4673,4674,3,494, - 247,0,4674,4707,1,0,0,0,4675,4676,5,46,0,0,4676,4677,5,355,0,0,4677, - 4678,5,325,0,0,4678,4679,5,353,0,0,4679,4680,3,558,279,0,4680,4681, - 3,494,247,0,4681,4707,1,0,0,0,4682,4683,5,46,0,0,4683,4684,5,355, - 0,0,4684,4685,5,325,0,0,4685,4686,5,163,0,0,4686,4687,3,558,279, - 0,4687,4688,3,494,247,0,4688,4707,1,0,0,0,4689,4690,5,46,0,0,4690, - 4692,5,108,0,0,4691,4693,3,514,257,0,4692,4691,1,0,0,0,4692,4693, - 1,0,0,0,4693,4694,1,0,0,0,4694,4695,3,558,279,0,4695,4696,3,494, - 247,0,4696,4707,1,0,0,0,4697,4698,5,46,0,0,4698,4700,5,108,0,0,4699, - 4701,3,514,257,0,4700,4699,1,0,0,0,4700,4701,1,0,0,0,4701,4702,1, - 0,0,0,4702,4703,3,558,279,0,4703,4704,5,64,0,0,4704,4705,3,558,279, - 0,4705,4707,1,0,0,0,4706,4603,1,0,0,0,4706,4612,1,0,0,0,4706,4620, - 1,0,0,0,4706,4625,1,0,0,0,4706,4630,1,0,0,0,4706,4633,1,0,0,0,4706, - 4643,1,0,0,0,4706,4654,1,0,0,0,4706,4661,1,0,0,0,4706,4668,1,0,0, - 0,4706,4675,1,0,0,0,4706,4682,1,0,0,0,4706,4689,1,0,0,0,4706,4697, - 1,0,0,0,4707,493,1,0,0,0,4708,4709,5,2,0,0,4709,4710,3,496,248,0, - 4710,4711,5,3,0,0,4711,495,1,0,0,0,4712,4717,3,498,249,0,4713,4714, - 5,6,0,0,4714,4716,3,498,249,0,4715,4713,1,0,0,0,4716,4719,1,0,0, - 0,4717,4715,1,0,0,0,4717,4718,1,0,0,0,4718,497,1,0,0,0,4719,4717, - 1,0,0,0,4720,4723,3,1492,746,0,4721,4722,5,10,0,0,4722,4724,3,500, - 250,0,4723,4721,1,0,0,0,4723,4724,1,0,0,0,4724,499,1,0,0,0,4725, - 4732,3,688,344,0,4726,4732,3,1504,752,0,4727,4732,3,1326,663,0,4728, - 4732,3,320,160,0,4729,4732,3,1460,730,0,4730,4732,5,407,0,0,4731, - 4725,1,0,0,0,4731,4726,1,0,0,0,4731,4727,1,0,0,0,4731,4728,1,0,0, - 0,4731,4729,1,0,0,0,4731,4730,1,0,0,0,4732,501,1,0,0,0,4733,4734, - 5,2,0,0,4734,4735,3,504,252,0,4735,4736,5,3,0,0,4736,503,1,0,0,0, - 4737,4742,3,506,253,0,4738,4739,5,6,0,0,4739,4741,3,506,253,0,4740, - 4738,1,0,0,0,4741,4744,1,0,0,0,4742,4740,1,0,0,0,4742,4743,1,0,0, - 0,4743,505,1,0,0,0,4744,4742,1,0,0,0,4745,4746,3,1494,747,0,4746, - 4747,5,10,0,0,4747,4748,3,500,250,0,4748,507,1,0,0,0,4749,4750,3, - 510,255,0,4750,509,1,0,0,0,4751,4756,3,1460,730,0,4752,4753,5,6, - 0,0,4753,4755,3,1460,730,0,4754,4752,1,0,0,0,4755,4758,1,0,0,0,4756, - 4754,1,0,0,0,4756,4757,1,0,0,0,4757,511,1,0,0,0,4758,4756,1,0,0, - 0,4759,4760,5,138,0,0,4760,4761,5,360,0,0,4761,4762,3,558,279,0, - 4762,4763,5,133,0,0,4763,4765,5,450,0,0,4764,4766,3,514,257,0,4765, - 4764,1,0,0,0,4765,4766,1,0,0,0,4766,4767,1,0,0,0,4767,4768,3,1460, - 730,0,4768,4803,1,0,0,0,4769,4770,5,138,0,0,4770,4771,5,360,0,0, - 4771,4772,3,558,279,0,4772,4773,5,133,0,0,4773,4775,5,450,0,0,4774, - 4776,3,514,257,0,4775,4774,1,0,0,0,4775,4776,1,0,0,0,4776,4777,1, - 0,0,0,4777,4778,3,1460,730,0,4778,4779,5,145,0,0,4779,4780,3,1460, - 730,0,4780,4803,1,0,0,0,4781,4782,5,138,0,0,4782,4783,5,360,0,0, - 4783,4784,3,558,279,0,4784,4785,5,133,0,0,4785,4787,5,450,0,0,4786, - 4788,3,514,257,0,4787,4786,1,0,0,0,4787,4788,1,0,0,0,4788,4789,1, - 0,0,0,4789,4790,3,1460,730,0,4790,4791,5,135,0,0,4791,4792,3,1460, - 730,0,4792,4803,1,0,0,0,4793,4794,5,138,0,0,4794,4795,5,360,0,0, - 4795,4796,3,558,279,0,4796,4797,5,309,0,0,4797,4798,5,450,0,0,4798, - 4799,3,1460,730,0,4799,4800,5,94,0,0,4800,4801,3,1460,730,0,4801, - 4803,1,0,0,0,4802,4759,1,0,0,0,4802,4769,1,0,0,0,4802,4781,1,0,0, - 0,4802,4793,1,0,0,0,4803,513,1,0,0,0,4804,4805,5,220,0,0,4805,4806, - 5,77,0,0,4806,4807,5,396,0,0,4807,515,1,0,0,0,4808,4809,5,46,0,0, - 4809,4810,5,278,0,0,4810,4811,5,156,0,0,4811,4813,3,558,279,0,4812, - 4814,3,522,261,0,4813,4812,1,0,0,0,4813,4814,1,0,0,0,4814,4815,1, - 0,0,0,4815,4816,5,62,0,0,4816,4817,5,360,0,0,4817,4818,3,1170,585, - 0,4818,4819,5,100,0,0,4819,4821,3,1438,719,0,4820,4822,3,524,262, - 0,4821,4820,1,0,0,0,4821,4822,1,0,0,0,4822,4823,1,0,0,0,4823,4824, - 5,36,0,0,4824,4825,3,518,259,0,4825,517,1,0,0,0,4826,4831,3,520, - 260,0,4827,4828,5,6,0,0,4828,4830,3,520,260,0,4829,4827,1,0,0,0, - 4830,4833,1,0,0,0,4831,4829,1,0,0,0,4831,4832,1,0,0,0,4832,519,1, - 0,0,0,4833,4831,1,0,0,0,4834,4835,5,278,0,0,4835,4836,3,1458,729, - 0,4836,4838,3,732,366,0,4837,4839,3,526,263,0,4838,4837,1,0,0,0, - 4838,4839,1,0,0,0,4839,4841,1,0,0,0,4840,4842,3,528,264,0,4841,4840, - 1,0,0,0,4841,4842,1,0,0,0,4842,4866,1,0,0,0,4843,4844,5,278,0,0, - 4844,4845,3,1458,729,0,4845,4847,3,736,368,0,4846,4848,3,526,263, - 0,4847,4846,1,0,0,0,4847,4848,1,0,0,0,4848,4850,1,0,0,0,4849,4851, - 3,528,264,0,4850,4849,1,0,0,0,4850,4851,1,0,0,0,4851,4866,1,0,0, - 0,4852,4853,5,211,0,0,4853,4854,3,1458,729,0,4854,4855,3,674,337, - 0,4855,4866,1,0,0,0,4856,4857,5,211,0,0,4857,4858,3,1458,729,0,4858, - 4859,5,2,0,0,4859,4860,3,1344,672,0,4860,4861,5,3,0,0,4861,4862, - 3,674,337,0,4862,4866,1,0,0,0,4863,4864,5,345,0,0,4864,4866,3,1170, - 585,0,4865,4834,1,0,0,0,4865,4843,1,0,0,0,4865,4852,1,0,0,0,4865, - 4856,1,0,0,0,4865,4863,1,0,0,0,4866,521,1,0,0,0,4867,4868,5,53,0, - 0,4868,523,1,0,0,0,4869,4870,5,206,0,0,4870,4871,3,558,279,0,4871, - 525,1,0,0,0,4872,4873,5,62,0,0,4873,4879,5,325,0,0,4874,4875,5,62, - 0,0,4875,4876,5,83,0,0,4876,4877,5,147,0,0,4877,4879,3,558,279,0, - 4878,4872,1,0,0,0,4878,4874,1,0,0,0,4879,527,1,0,0,0,4880,4881,5, - 302,0,0,4881,529,1,0,0,0,4882,4883,5,46,0,0,4883,4884,5,278,0,0, - 4884,4885,5,206,0,0,4885,4886,3,558,279,0,4886,4887,5,100,0,0,4887, - 4888,3,1438,719,0,4888,531,1,0,0,0,4889,4890,5,138,0,0,4890,4891, - 5,278,0,0,4891,4892,5,206,0,0,4892,4893,3,558,279,0,4893,4894,5, - 100,0,0,4894,4895,3,1438,719,0,4895,4896,5,133,0,0,4896,4897,3,518, - 259,0,4897,4908,1,0,0,0,4898,4899,5,138,0,0,4899,4900,5,278,0,0, - 4900,4901,5,206,0,0,4901,4902,3,558,279,0,4902,4903,5,100,0,0,4903, - 4904,3,1438,719,0,4904,4905,5,191,0,0,4905,4906,3,534,267,0,4906, - 4908,1,0,0,0,4907,4889,1,0,0,0,4907,4898,1,0,0,0,4908,533,1,0,0, - 0,4909,4914,3,536,268,0,4910,4911,5,6,0,0,4911,4913,3,536,268,0, - 4912,4910,1,0,0,0,4913,4916,1,0,0,0,4914,4912,1,0,0,0,4914,4915, - 1,0,0,0,4915,535,1,0,0,0,4916,4914,1,0,0,0,4917,4918,5,278,0,0,4918, - 4919,3,1458,729,0,4919,4920,5,2,0,0,4920,4921,3,1344,672,0,4921, - 4922,5,3,0,0,4922,4930,1,0,0,0,4923,4924,5,211,0,0,4924,4925,3,1458, - 729,0,4925,4926,5,2,0,0,4926,4927,3,1344,672,0,4927,4928,5,3,0,0, - 4928,4930,1,0,0,0,4929,4917,1,0,0,0,4929,4923,1,0,0,0,4930,537,1, - 0,0,0,4931,4932,5,301,0,0,4932,4933,5,281,0,0,4933,4934,5,147,0, - 0,4934,4935,3,1474,737,0,4935,4936,5,94,0,0,4936,4937,3,1472,736, - 0,4937,539,1,0,0,0,4938,4939,5,191,0,0,4939,4941,5,92,0,0,4940,4942, - 3,748,374,0,4941,4940,1,0,0,0,4941,4942,1,0,0,0,4942,4943,1,0,0, - 0,4943,4945,3,1394,697,0,4944,4946,3,124,62,0,4945,4944,1,0,0,0, - 4945,4946,1,0,0,0,4946,5318,1,0,0,0,4947,4948,5,191,0,0,4948,4950, - 5,328,0,0,4949,4951,3,748,374,0,4950,4949,1,0,0,0,4950,4951,1,0, - 0,0,4951,4952,1,0,0,0,4952,4954,3,1418,709,0,4953,4955,3,124,62, - 0,4954,4953,1,0,0,0,4954,4955,1,0,0,0,4955,5318,1,0,0,0,4956,4957, - 5,191,0,0,4957,4959,5,376,0,0,4958,4960,3,748,374,0,4959,4958,1, - 0,0,0,4959,4960,1,0,0,0,4960,4961,1,0,0,0,4961,4963,3,542,271,0, - 4962,4964,3,124,62,0,4963,4962,1,0,0,0,4963,4964,1,0,0,0,4964,5318, - 1,0,0,0,4965,4966,5,191,0,0,4966,4967,5,259,0,0,4967,4969,5,376, - 0,0,4968,4970,3,748,374,0,4969,4968,1,0,0,0,4969,4970,1,0,0,0,4970, - 4971,1,0,0,0,4971,4973,3,542,271,0,4972,4974,3,124,62,0,4973,4972, - 1,0,0,0,4973,4974,1,0,0,0,4974,5318,1,0,0,0,4975,4976,5,191,0,0, - 4976,4978,5,226,0,0,4977,4979,3,748,374,0,4978,4977,1,0,0,0,4978, - 4979,1,0,0,0,4979,4980,1,0,0,0,4980,4982,3,1418,709,0,4981,4983, - 3,124,62,0,4982,4981,1,0,0,0,4982,4983,1,0,0,0,4983,5318,1,0,0,0, - 4984,4985,5,191,0,0,4985,4986,5,63,0,0,4986,4988,5,92,0,0,4987,4989, - 3,748,374,0,4988,4987,1,0,0,0,4988,4989,1,0,0,0,4989,4990,1,0,0, - 0,4990,4992,3,1394,697,0,4991,4993,3,124,62,0,4992,4991,1,0,0,0, - 4992,4993,1,0,0,0,4993,5318,1,0,0,0,4994,4995,5,191,0,0,4995,4997, - 5,108,0,0,4996,4998,3,748,374,0,4997,4996,1,0,0,0,4997,4998,1,0, - 0,0,4998,4999,1,0,0,0,4999,5001,3,1418,709,0,5000,5002,3,124,62, - 0,5001,5000,1,0,0,0,5001,5002,1,0,0,0,5002,5318,1,0,0,0,5003,5004, - 5,191,0,0,5004,5006,5,168,0,0,5005,5007,3,748,374,0,5006,5005,1, - 0,0,0,5006,5007,1,0,0,0,5007,5008,1,0,0,0,5008,5010,3,1418,709,0, - 5009,5011,3,124,62,0,5010,5009,1,0,0,0,5010,5011,1,0,0,0,5011,5318, - 1,0,0,0,5012,5013,5,191,0,0,5013,5015,5,342,0,0,5014,5016,3,748, - 374,0,5015,5014,1,0,0,0,5015,5016,1,0,0,0,5016,5017,1,0,0,0,5017, - 5019,3,1418,709,0,5018,5020,3,124,62,0,5019,5018,1,0,0,0,5019,5020, - 1,0,0,0,5020,5318,1,0,0,0,5021,5022,5,191,0,0,5022,5023,5,355,0, - 0,5023,5024,5,325,0,0,5024,5026,5,283,0,0,5025,5027,3,748,374,0, - 5026,5025,1,0,0,0,5026,5027,1,0,0,0,5027,5028,1,0,0,0,5028,5030, - 3,1418,709,0,5029,5031,3,124,62,0,5030,5029,1,0,0,0,5030,5031,1, - 0,0,0,5031,5318,1,0,0,0,5032,5033,5,191,0,0,5033,5034,5,355,0,0, - 5034,5035,5,325,0,0,5035,5037,5,185,0,0,5036,5038,3,748,374,0,5037, - 5036,1,0,0,0,5037,5038,1,0,0,0,5038,5039,1,0,0,0,5039,5041,3,1418, - 709,0,5040,5042,3,124,62,0,5041,5040,1,0,0,0,5041,5042,1,0,0,0,5042, - 5318,1,0,0,0,5043,5044,5,191,0,0,5044,5045,5,355,0,0,5045,5046,5, - 325,0,0,5046,5048,5,353,0,0,5047,5049,3,748,374,0,5048,5047,1,0, - 0,0,5048,5049,1,0,0,0,5049,5050,1,0,0,0,5050,5052,3,1418,709,0,5051, - 5053,3,124,62,0,5052,5051,1,0,0,0,5052,5053,1,0,0,0,5053,5318,1, - 0,0,0,5054,5055,5,191,0,0,5055,5056,5,355,0,0,5056,5057,5,325,0, - 0,5057,5059,5,163,0,0,5058,5060,3,748,374,0,5059,5058,1,0,0,0,5059, - 5060,1,0,0,0,5060,5061,1,0,0,0,5061,5063,3,1418,709,0,5062,5064, - 3,124,62,0,5063,5062,1,0,0,0,5063,5064,1,0,0,0,5064,5318,1,0,0,0, - 5065,5066,5,191,0,0,5066,5067,5,131,0,0,5067,5069,5,446,0,0,5068, - 5070,3,748,374,0,5069,5068,1,0,0,0,5069,5070,1,0,0,0,5070,5071,1, - 0,0,0,5071,5073,3,1418,709,0,5072,5074,3,124,62,0,5073,5072,1,0, - 0,0,5073,5074,1,0,0,0,5074,5318,1,0,0,0,5075,5076,5,191,0,0,5076, - 5077,5,198,0,0,5077,5079,5,357,0,0,5078,5080,3,748,374,0,5079,5078, - 1,0,0,0,5079,5080,1,0,0,0,5080,5081,1,0,0,0,5081,5083,3,1418,709, - 0,5082,5084,3,124,62,0,5083,5082,1,0,0,0,5083,5084,1,0,0,0,5084, - 5318,1,0,0,0,5085,5086,5,191,0,0,5086,5088,5,204,0,0,5087,5089,3, - 748,374,0,5088,5087,1,0,0,0,5088,5089,1,0,0,0,5089,5090,1,0,0,0, - 5090,5092,3,1418,709,0,5091,5093,3,124,62,0,5092,5091,1,0,0,0,5092, - 5093,1,0,0,0,5093,5318,1,0,0,0,5094,5095,5,191,0,0,5095,5096,5,63, - 0,0,5096,5097,5,174,0,0,5097,5099,5,381,0,0,5098,5100,3,748,374, - 0,5099,5098,1,0,0,0,5099,5100,1,0,0,0,5100,5101,1,0,0,0,5101,5103, - 3,1418,709,0,5102,5104,3,124,62,0,5103,5102,1,0,0,0,5103,5104,1, - 0,0,0,5104,5318,1,0,0,0,5105,5107,5,191,0,0,5106,5108,3,336,168, - 0,5107,5106,1,0,0,0,5107,5108,1,0,0,0,5108,5109,1,0,0,0,5109,5111, - 5,247,0,0,5110,5112,3,748,374,0,5111,5110,1,0,0,0,5111,5112,1,0, - 0,0,5112,5113,1,0,0,0,5113,5115,3,1418,709,0,5114,5116,3,124,62, - 0,5115,5114,1,0,0,0,5115,5116,1,0,0,0,5116,5318,1,0,0,0,5117,5118, - 5,191,0,0,5118,5120,5,452,0,0,5119,5121,3,748,374,0,5120,5119,1, - 0,0,0,5120,5121,1,0,0,0,5121,5122,1,0,0,0,5122,5124,3,1418,709,0, - 5123,5125,3,124,62,0,5124,5123,1,0,0,0,5124,5125,1,0,0,0,5125,5318, - 1,0,0,0,5126,5127,5,191,0,0,5127,5129,5,331,0,0,5128,5130,3,748, - 374,0,5129,5128,1,0,0,0,5129,5130,1,0,0,0,5130,5131,1,0,0,0,5131, - 5133,3,1418,709,0,5132,5134,3,124,62,0,5133,5132,1,0,0,0,5133,5134, - 1,0,0,0,5134,5318,1,0,0,0,5135,5136,5,191,0,0,5136,5138,5,323,0, - 0,5137,5139,3,748,374,0,5138,5137,1,0,0,0,5138,5139,1,0,0,0,5139, - 5140,1,0,0,0,5140,5142,3,1396,698,0,5141,5143,3,124,62,0,5142,5141, - 1,0,0,0,5142,5143,1,0,0,0,5143,5318,1,0,0,0,5144,5145,5,191,0,0, - 5145,5147,5,445,0,0,5146,5148,3,748,374,0,5147,5146,1,0,0,0,5147, - 5148,1,0,0,0,5148,5149,1,0,0,0,5149,5150,3,1438,719,0,5150,5151, - 5,80,0,0,5151,5153,3,558,279,0,5152,5154,3,124,62,0,5153,5152,1, - 0,0,0,5153,5154,1,0,0,0,5154,5318,1,0,0,0,5155,5156,5,191,0,0,5156, - 5158,5,321,0,0,5157,5159,3,748,374,0,5158,5157,1,0,0,0,5158,5159, - 1,0,0,0,5159,5160,1,0,0,0,5160,5161,3,1438,719,0,5161,5162,5,80, - 0,0,5162,5164,3,558,279,0,5163,5165,3,124,62,0,5164,5163,1,0,0,0, - 5164,5165,1,0,0,0,5165,5318,1,0,0,0,5166,5167,5,191,0,0,5167,5169, - 5,357,0,0,5168,5170,3,748,374,0,5169,5168,1,0,0,0,5169,5170,1,0, - 0,0,5170,5171,1,0,0,0,5171,5172,3,1438,719,0,5172,5173,5,80,0,0, - 5173,5175,3,558,279,0,5174,5176,3,124,62,0,5175,5174,1,0,0,0,5175, - 5176,1,0,0,0,5176,5318,1,0,0,0,5177,5178,5,191,0,0,5178,5180,5,360, - 0,0,5179,5181,3,748,374,0,5180,5179,1,0,0,0,5180,5181,1,0,0,0,5181, - 5182,1,0,0,0,5182,5184,3,562,281,0,5183,5185,3,124,62,0,5184,5183, - 1,0,0,0,5184,5185,1,0,0,0,5185,5318,1,0,0,0,5186,5187,5,191,0,0, - 5187,5189,5,189,0,0,5188,5190,3,748,374,0,5189,5188,1,0,0,0,5189, - 5190,1,0,0,0,5190,5191,1,0,0,0,5191,5193,3,562,281,0,5192,5194,3, - 124,62,0,5193,5192,1,0,0,0,5193,5194,1,0,0,0,5194,5318,1,0,0,0,5195, - 5196,5,191,0,0,5196,5197,5,226,0,0,5197,5199,5,109,0,0,5198,5200, - 3,748,374,0,5199,5198,1,0,0,0,5199,5200,1,0,0,0,5200,5201,1,0,0, - 0,5201,5203,3,550,275,0,5202,5204,3,124,62,0,5203,5202,1,0,0,0,5203, - 5204,1,0,0,0,5204,5318,1,0,0,0,5205,5206,5,191,0,0,5206,5208,5,41, - 0,0,5207,5209,3,748,374,0,5208,5207,1,0,0,0,5208,5209,1,0,0,0,5209, - 5210,1,0,0,0,5210,5211,5,2,0,0,5211,5212,3,1170,585,0,5212,5213, - 5,36,0,0,5213,5214,3,1170,585,0,5214,5216,5,3,0,0,5215,5217,3,124, - 62,0,5216,5215,1,0,0,0,5216,5217,1,0,0,0,5217,5318,1,0,0,0,5218, - 5219,5,191,0,0,5219,5220,5,278,0,0,5220,5222,5,156,0,0,5221,5223, - 3,748,374,0,5222,5221,1,0,0,0,5222,5223,1,0,0,0,5223,5224,1,0,0, - 0,5224,5225,3,558,279,0,5225,5226,5,100,0,0,5226,5228,3,1438,719, - 0,5227,5229,3,124,62,0,5228,5227,1,0,0,0,5228,5229,1,0,0,0,5229, - 5318,1,0,0,0,5230,5231,5,191,0,0,5231,5232,5,278,0,0,5232,5234,5, - 206,0,0,5233,5235,3,748,374,0,5234,5233,1,0,0,0,5234,5235,1,0,0, - 0,5235,5236,1,0,0,0,5236,5237,3,558,279,0,5237,5238,5,100,0,0,5238, - 5240,3,1438,719,0,5239,5241,3,124,62,0,5240,5239,1,0,0,0,5240,5241, - 1,0,0,0,5241,5318,1,0,0,0,5242,5243,5,191,0,0,5243,5244,5,281,0, - 0,5244,5245,5,147,0,0,5245,5247,3,1474,737,0,5246,5248,3,124,62, - 0,5247,5246,1,0,0,0,5247,5248,1,0,0,0,5248,5318,1,0,0,0,5249,5250, - 5,191,0,0,5250,5252,5,376,0,0,5251,5253,3,748,374,0,5252,5251,1, - 0,0,0,5252,5253,1,0,0,0,5253,5254,1,0,0,0,5254,5256,3,542,271,0, - 5255,5257,3,124,62,0,5256,5255,1,0,0,0,5256,5257,1,0,0,0,5257,5318, - 1,0,0,0,5258,5259,5,191,0,0,5259,5261,5,451,0,0,5260,5262,3,748, - 374,0,5261,5260,1,0,0,0,5261,5262,1,0,0,0,5262,5263,1,0,0,0,5263, - 5265,3,1438,719,0,5264,5266,3,124,62,0,5265,5264,1,0,0,0,5265,5266, - 1,0,0,0,5266,5318,1,0,0,0,5267,5268,5,191,0,0,5268,5270,5,351,0, - 0,5269,5271,3,748,374,0,5270,5269,1,0,0,0,5270,5271,1,0,0,0,5271, - 5272,1,0,0,0,5272,5318,3,1404,702,0,5273,5274,5,191,0,0,5274,5276, - 5,443,0,0,5275,5277,3,748,374,0,5276,5275,1,0,0,0,5276,5277,1,0, - 0,0,5277,5278,1,0,0,0,5278,5279,5,62,0,0,5279,5280,3,1170,585,0, - 5280,5281,5,247,0,0,5281,5283,3,1438,719,0,5282,5284,3,124,62,0, - 5283,5282,1,0,0,0,5283,5284,1,0,0,0,5284,5318,1,0,0,0,5285,5286, - 5,191,0,0,5286,5288,7,33,0,0,5287,5289,3,748,374,0,5288,5287,1,0, - 0,0,5288,5289,1,0,0,0,5289,5290,1,0,0,0,5290,5318,3,1474,737,0,5291, - 5292,5,191,0,0,5292,5293,5,99,0,0,5293,5295,5,257,0,0,5294,5296, - 3,748,374,0,5295,5294,1,0,0,0,5295,5296,1,0,0,0,5296,5297,1,0,0, - 0,5297,5298,5,62,0,0,5298,5299,3,402,201,0,5299,5300,5,331,0,0,5300, - 5301,3,1438,719,0,5301,5318,1,0,0,0,5302,5303,5,191,0,0,5303,5305, - 5,175,0,0,5304,5306,3,748,374,0,5305,5304,1,0,0,0,5305,5306,1,0, - 0,0,5306,5307,1,0,0,0,5307,5315,3,1422,711,0,5308,5310,3,14,7,0, - 5309,5308,1,0,0,0,5309,5310,1,0,0,0,5310,5311,1,0,0,0,5311,5312, - 5,2,0,0,5312,5313,3,862,431,0,5313,5314,5,3,0,0,5314,5316,1,0,0, - 0,5315,5309,1,0,0,0,5315,5316,1,0,0,0,5316,5318,1,0,0,0,5317,4938, - 1,0,0,0,5317,4947,1,0,0,0,5317,4956,1,0,0,0,5317,4965,1,0,0,0,5317, - 4975,1,0,0,0,5317,4984,1,0,0,0,5317,4994,1,0,0,0,5317,5003,1,0,0, - 0,5317,5012,1,0,0,0,5317,5021,1,0,0,0,5317,5032,1,0,0,0,5317,5043, - 1,0,0,0,5317,5054,1,0,0,0,5317,5065,1,0,0,0,5317,5075,1,0,0,0,5317, - 5085,1,0,0,0,5317,5094,1,0,0,0,5317,5105,1,0,0,0,5317,5117,1,0,0, - 0,5317,5126,1,0,0,0,5317,5135,1,0,0,0,5317,5144,1,0,0,0,5317,5155, - 1,0,0,0,5317,5166,1,0,0,0,5317,5177,1,0,0,0,5317,5186,1,0,0,0,5317, - 5195,1,0,0,0,5317,5205,1,0,0,0,5317,5218,1,0,0,0,5317,5230,1,0,0, - 0,5317,5242,1,0,0,0,5317,5249,1,0,0,0,5317,5258,1,0,0,0,5317,5267, - 1,0,0,0,5317,5273,1,0,0,0,5317,5285,1,0,0,0,5317,5291,1,0,0,0,5317, - 5302,1,0,0,0,5318,541,1,0,0,0,5319,5324,3,1412,706,0,5320,5321,5, - 6,0,0,5321,5323,3,1412,706,0,5322,5320,1,0,0,0,5323,5326,1,0,0,0, - 5324,5322,1,0,0,0,5324,5325,1,0,0,0,5325,543,1,0,0,0,5326,5324,1, - 0,0,0,5327,5328,5,92,0,0,5328,5364,3,1408,704,0,5329,5330,5,328, - 0,0,5330,5364,3,558,279,0,5331,5332,5,376,0,0,5332,5364,3,1412,706, - 0,5333,5334,5,259,0,0,5334,5335,5,376,0,0,5335,5364,3,1412,706,0, - 5336,5337,5,226,0,0,5337,5364,3,558,279,0,5338,5339,5,63,0,0,5339, - 5340,5,92,0,0,5340,5364,3,1408,704,0,5341,5342,5,108,0,0,5342,5364, - 3,558,279,0,5343,5344,5,168,0,0,5344,5364,3,558,279,0,5345,5346, - 5,342,0,0,5346,5364,3,558,279,0,5347,5348,5,355,0,0,5348,5349,5, - 325,0,0,5349,5350,5,283,0,0,5350,5364,3,558,279,0,5351,5352,5,355, - 0,0,5352,5353,5,325,0,0,5353,5354,5,185,0,0,5354,5364,3,558,279, - 0,5355,5356,5,355,0,0,5356,5357,5,325,0,0,5357,5358,5,353,0,0,5358, - 5364,3,558,279,0,5359,5360,5,355,0,0,5360,5361,5,325,0,0,5361,5362, - 5,163,0,0,5362,5364,3,558,279,0,5363,5327,1,0,0,0,5363,5329,1,0, - 0,0,5363,5331,1,0,0,0,5363,5333,1,0,0,0,5363,5336,1,0,0,0,5363,5338, - 1,0,0,0,5363,5341,1,0,0,0,5363,5343,1,0,0,0,5363,5345,1,0,0,0,5363, - 5347,1,0,0,0,5363,5351,1,0,0,0,5363,5355,1,0,0,0,5363,5359,1,0,0, - 0,5364,545,1,0,0,0,5365,5366,5,131,0,0,5366,5367,5,446,0,0,5367, - 5397,3,1438,719,0,5368,5369,5,198,0,0,5369,5370,5,357,0,0,5370,5397, - 3,1438,719,0,5371,5372,5,204,0,0,5372,5397,3,1438,719,0,5373,5374, - 5,63,0,0,5374,5375,5,174,0,0,5375,5376,5,381,0,0,5376,5397,3,1438, - 719,0,5377,5379,3,336,168,0,5378,5377,1,0,0,0,5378,5379,1,0,0,0, - 5379,5380,1,0,0,0,5380,5381,5,247,0,0,5381,5397,3,1438,719,0,5382, - 5383,5,452,0,0,5383,5397,3,1438,719,0,5384,5385,5,323,0,0,5385,5397, - 3,1424,712,0,5386,5387,5,331,0,0,5387,5397,3,1438,719,0,5388,5389, - 5,175,0,0,5389,5397,3,1422,711,0,5390,5391,5,318,0,0,5391,5397,3, - 1438,719,0,5392,5393,5,451,0,0,5393,5397,3,1438,719,0,5394,5395, - 5,351,0,0,5395,5397,3,1404,702,0,5396,5365,1,0,0,0,5396,5368,1,0, - 0,0,5396,5371,1,0,0,0,5396,5373,1,0,0,0,5396,5378,1,0,0,0,5396,5382, - 1,0,0,0,5396,5384,1,0,0,0,5396,5386,1,0,0,0,5396,5388,1,0,0,0,5396, - 5390,1,0,0,0,5396,5392,1,0,0,0,5396,5394,1,0,0,0,5397,547,1,0,0, - 0,5398,5399,7,34,0,0,5399,549,1,0,0,0,5400,5405,3,558,279,0,5401, - 5402,5,6,0,0,5402,5404,3,558,279,0,5403,5401,1,0,0,0,5404,5407,1, - 0,0,0,5405,5403,1,0,0,0,5405,5406,1,0,0,0,5406,551,1,0,0,0,5407, - 5405,1,0,0,0,5408,5409,3,1408,704,0,5409,5410,5,11,0,0,5410,5411, - 3,1434,717,0,5411,553,1,0,0,0,5412,5413,3,556,278,0,5413,5414,5, - 11,0,0,5414,5415,3,1434,717,0,5415,555,1,0,0,0,5416,5418,3,1476, - 738,0,5417,5419,3,560,280,0,5418,5417,1,0,0,0,5418,5419,1,0,0,0, - 5419,557,1,0,0,0,5420,5422,3,1476,738,0,5421,5423,3,560,280,0,5422, - 5421,1,0,0,0,5422,5423,1,0,0,0,5423,559,1,0,0,0,5424,5425,5,11,0, - 0,5425,5427,3,1440,720,0,5426,5424,1,0,0,0,5427,5428,1,0,0,0,5428, - 5426,1,0,0,0,5428,5429,1,0,0,0,5429,561,1,0,0,0,5430,5435,3,1170, - 585,0,5431,5432,5,6,0,0,5432,5434,3,1170,585,0,5433,5431,1,0,0,0, - 5434,5437,1,0,0,0,5435,5433,1,0,0,0,5435,5436,1,0,0,0,5436,563,1, - 0,0,0,5437,5435,1,0,0,0,5438,5440,5,358,0,0,5439,5441,3,1036,518, - 0,5440,5439,1,0,0,0,5440,5441,1,0,0,0,5441,5442,1,0,0,0,5442,5444, - 3,1126,563,0,5443,5445,3,566,283,0,5444,5443,1,0,0,0,5444,5445,1, - 0,0,0,5445,5447,1,0,0,0,5446,5448,3,124,62,0,5447,5446,1,0,0,0,5447, - 5448,1,0,0,0,5448,565,1,0,0,0,5449,5450,5,167,0,0,5450,5454,5,219, - 0,0,5451,5452,5,314,0,0,5452,5454,5,219,0,0,5453,5449,1,0,0,0,5453, - 5451,1,0,0,0,5454,567,1,0,0,0,5455,5456,5,159,0,0,5456,5457,5,80, - 0,0,5457,5458,3,544,272,0,5458,5459,5,116,0,0,5459,5460,3,570,285, - 0,5460,5621,1,0,0,0,5461,5462,5,159,0,0,5462,5463,5,80,0,0,5463, - 5464,5,44,0,0,5464,5465,3,554,277,0,5465,5466,5,116,0,0,5466,5467, - 3,570,285,0,5467,5621,1,0,0,0,5468,5469,5,159,0,0,5469,5470,5,80, - 0,0,5470,5471,3,546,273,0,5471,5472,5,116,0,0,5472,5473,3,570,285, - 0,5473,5621,1,0,0,0,5474,5475,5,159,0,0,5475,5476,5,80,0,0,5476, - 5477,5,360,0,0,5477,5478,3,1170,585,0,5478,5479,5,116,0,0,5479,5480, - 3,570,285,0,5480,5621,1,0,0,0,5481,5482,5,159,0,0,5482,5483,5,80, - 0,0,5483,5484,5,189,0,0,5484,5485,3,1170,585,0,5485,5486,5,116,0, - 0,5486,5487,3,570,285,0,5487,5621,1,0,0,0,5488,5489,5,159,0,0,5489, - 5490,5,80,0,0,5490,5491,5,136,0,0,5491,5492,3,698,349,0,5492,5493, - 5,116,0,0,5493,5494,3,570,285,0,5494,5621,1,0,0,0,5495,5496,5,159, - 0,0,5496,5497,5,80,0,0,5497,5498,5,211,0,0,5498,5499,3,674,337,0, - 5499,5500,5,116,0,0,5500,5501,3,570,285,0,5501,5621,1,0,0,0,5502, - 5503,5,159,0,0,5503,5504,5,80,0,0,5504,5505,5,278,0,0,5505,5506, - 3,736,368,0,5506,5507,5,116,0,0,5507,5508,3,570,285,0,5508,5621, - 1,0,0,0,5509,5510,5,159,0,0,5510,5511,5,80,0,0,5511,5512,5,45,0, - 0,5512,5513,3,1438,719,0,5513,5514,5,80,0,0,5514,5515,3,1408,704, - 0,5515,5516,5,116,0,0,5516,5517,3,570,285,0,5517,5621,1,0,0,0,5518, - 5519,5,159,0,0,5519,5520,5,80,0,0,5520,5521,5,45,0,0,5521,5522,3, - 1438,719,0,5522,5524,5,80,0,0,5523,5525,5,189,0,0,5524,5523,1,0, - 0,0,5524,5525,1,0,0,0,5525,5526,1,0,0,0,5526,5527,3,558,279,0,5527, - 5528,5,116,0,0,5528,5529,3,570,285,0,5529,5621,1,0,0,0,5530,5531, - 5,159,0,0,5531,5532,5,80,0,0,5532,5533,5,445,0,0,5533,5534,3,1438, - 719,0,5534,5535,5,80,0,0,5535,5536,3,558,279,0,5536,5537,5,116,0, - 0,5537,5538,3,570,285,0,5538,5621,1,0,0,0,5539,5540,5,159,0,0,5540, - 5541,5,80,0,0,5541,5542,5,321,0,0,5542,5543,3,1438,719,0,5543,5544, - 5,80,0,0,5544,5545,3,558,279,0,5545,5546,5,116,0,0,5546,5547,3,570, - 285,0,5547,5621,1,0,0,0,5548,5549,5,159,0,0,5549,5550,5,80,0,0,5550, - 5551,5,357,0,0,5551,5552,3,1438,719,0,5552,5553,5,80,0,0,5553,5554, - 3,558,279,0,5554,5555,5,116,0,0,5555,5556,3,570,285,0,5556,5621, - 1,0,0,0,5557,5558,5,159,0,0,5558,5559,5,80,0,0,5559,5560,5,296,0, - 0,5560,5561,3,670,335,0,5561,5562,5,116,0,0,5562,5563,3,570,285, - 0,5563,5621,1,0,0,0,5564,5565,5,159,0,0,5565,5566,5,80,0,0,5566, - 5567,5,442,0,0,5567,5568,3,666,333,0,5568,5569,5,116,0,0,5569,5570, - 3,570,285,0,5570,5621,1,0,0,0,5571,5572,5,159,0,0,5572,5573,5,80, - 0,0,5573,5574,5,443,0,0,5574,5575,5,62,0,0,5575,5576,3,1170,585, - 0,5576,5577,5,247,0,0,5577,5578,3,1438,719,0,5578,5579,5,116,0,0, - 5579,5580,3,570,285,0,5580,5621,1,0,0,0,5581,5582,5,159,0,0,5582, - 5583,5,80,0,0,5583,5584,5,278,0,0,5584,5585,5,156,0,0,5585,5586, - 3,558,279,0,5586,5587,5,100,0,0,5587,5588,3,1438,719,0,5588,5589, - 5,116,0,0,5589,5590,3,570,285,0,5590,5621,1,0,0,0,5591,5592,5,159, - 0,0,5592,5593,5,80,0,0,5593,5594,5,278,0,0,5594,5595,5,206,0,0,5595, - 5596,3,558,279,0,5596,5597,5,100,0,0,5597,5598,3,1438,719,0,5598, - 5599,5,116,0,0,5599,5600,3,570,285,0,5600,5621,1,0,0,0,5601,5602, - 5,159,0,0,5602,5603,5,80,0,0,5603,5604,5,248,0,0,5604,5605,5,274, - 0,0,5605,5606,3,320,160,0,5606,5607,5,116,0,0,5607,5608,3,570,285, - 0,5608,5621,1,0,0,0,5609,5610,5,159,0,0,5610,5611,5,80,0,0,5611, - 5612,5,41,0,0,5612,5613,5,2,0,0,5613,5614,3,1170,585,0,5614,5615, - 5,36,0,0,5615,5616,3,1170,585,0,5616,5617,5,3,0,0,5617,5618,5,116, - 0,0,5618,5619,3,570,285,0,5619,5621,1,0,0,0,5620,5455,1,0,0,0,5620, - 5461,1,0,0,0,5620,5468,1,0,0,0,5620,5474,1,0,0,0,5620,5481,1,0,0, - 0,5620,5488,1,0,0,0,5620,5495,1,0,0,0,5620,5502,1,0,0,0,5620,5509, - 1,0,0,0,5620,5518,1,0,0,0,5620,5530,1,0,0,0,5620,5539,1,0,0,0,5620, - 5548,1,0,0,0,5620,5557,1,0,0,0,5620,5564,1,0,0,0,5620,5571,1,0,0, - 0,5620,5581,1,0,0,0,5620,5591,1,0,0,0,5620,5601,1,0,0,0,5620,5609, - 1,0,0,0,5621,569,1,0,0,0,5622,5625,3,1460,730,0,5623,5625,5,78,0, - 0,5624,5622,1,0,0,0,5624,5623,1,0,0,0,5625,571,1,0,0,0,5626,5627, - 5,327,0,0,5627,5629,5,246,0,0,5628,5630,3,574,287,0,5629,5628,1, - 0,0,0,5629,5630,1,0,0,0,5630,5631,1,0,0,0,5631,5632,5,80,0,0,5632, - 5633,3,544,272,0,5633,5634,5,116,0,0,5634,5635,3,576,288,0,5635, - 5736,1,0,0,0,5636,5637,5,327,0,0,5637,5639,5,246,0,0,5638,5640,3, - 574,287,0,5639,5638,1,0,0,0,5639,5640,1,0,0,0,5640,5641,1,0,0,0, - 5641,5642,5,80,0,0,5642,5643,5,44,0,0,5643,5644,3,552,276,0,5644, - 5645,5,116,0,0,5645,5646,3,576,288,0,5646,5736,1,0,0,0,5647,5648, - 5,327,0,0,5648,5650,5,246,0,0,5649,5651,3,574,287,0,5650,5649,1, - 0,0,0,5650,5651,1,0,0,0,5651,5652,1,0,0,0,5652,5653,5,80,0,0,5653, - 5654,3,546,273,0,5654,5655,5,116,0,0,5655,5656,3,576,288,0,5656, - 5736,1,0,0,0,5657,5658,5,327,0,0,5658,5660,5,246,0,0,5659,5661,3, - 574,287,0,5660,5659,1,0,0,0,5660,5661,1,0,0,0,5661,5662,1,0,0,0, - 5662,5663,5,80,0,0,5663,5664,5,360,0,0,5664,5665,3,1170,585,0,5665, - 5666,5,116,0,0,5666,5667,3,576,288,0,5667,5736,1,0,0,0,5668,5669, - 5,327,0,0,5669,5671,5,246,0,0,5670,5672,3,574,287,0,5671,5670,1, - 0,0,0,5671,5672,1,0,0,0,5672,5673,1,0,0,0,5673,5674,5,80,0,0,5674, - 5675,5,189,0,0,5675,5676,3,1170,585,0,5676,5677,5,116,0,0,5677,5678, - 3,576,288,0,5678,5736,1,0,0,0,5679,5680,5,327,0,0,5680,5682,5,246, - 0,0,5681,5683,3,574,287,0,5682,5681,1,0,0,0,5682,5683,1,0,0,0,5683, - 5684,1,0,0,0,5684,5685,5,80,0,0,5685,5686,5,136,0,0,5686,5687,3, - 698,349,0,5687,5688,5,116,0,0,5688,5689,3,576,288,0,5689,5736,1, - 0,0,0,5690,5691,5,327,0,0,5691,5693,5,246,0,0,5692,5694,3,574,287, - 0,5693,5692,1,0,0,0,5693,5694,1,0,0,0,5694,5695,1,0,0,0,5695,5696, - 5,80,0,0,5696,5697,5,211,0,0,5697,5698,3,674,337,0,5698,5699,5,116, - 0,0,5699,5700,3,576,288,0,5700,5736,1,0,0,0,5701,5702,5,327,0,0, - 5702,5704,5,246,0,0,5703,5705,3,574,287,0,5704,5703,1,0,0,0,5704, - 5705,1,0,0,0,5705,5706,1,0,0,0,5706,5707,5,80,0,0,5707,5708,5,248, - 0,0,5708,5709,5,274,0,0,5709,5710,3,320,160,0,5710,5711,5,116,0, - 0,5711,5712,3,576,288,0,5712,5736,1,0,0,0,5713,5714,5,327,0,0,5714, - 5716,5,246,0,0,5715,5717,3,574,287,0,5716,5715,1,0,0,0,5716,5717, - 1,0,0,0,5717,5718,1,0,0,0,5718,5719,5,80,0,0,5719,5720,5,296,0,0, - 5720,5721,3,670,335,0,5721,5722,5,116,0,0,5722,5723,3,576,288,0, - 5723,5736,1,0,0,0,5724,5725,5,327,0,0,5725,5727,5,246,0,0,5726,5728, - 3,574,287,0,5727,5726,1,0,0,0,5727,5728,1,0,0,0,5728,5729,1,0,0, - 0,5729,5730,5,80,0,0,5730,5731,5,442,0,0,5731,5732,3,666,333,0,5732, - 5733,5,116,0,0,5733,5734,3,576,288,0,5734,5736,1,0,0,0,5735,5626, - 1,0,0,0,5735,5636,1,0,0,0,5735,5647,1,0,0,0,5735,5657,1,0,0,0,5735, - 5668,1,0,0,0,5735,5679,1,0,0,0,5735,5690,1,0,0,0,5735,5701,1,0,0, - 0,5735,5713,1,0,0,0,5735,5724,1,0,0,0,5736,573,1,0,0,0,5737,5738, - 5,62,0,0,5738,5739,3,80,40,0,5739,575,1,0,0,0,5740,5743,3,1460,730, - 0,5741,5743,5,78,0,0,5742,5740,1,0,0,0,5742,5741,1,0,0,0,5743,577, - 1,0,0,0,5744,5745,5,61,0,0,5745,5749,3,580,290,0,5746,5747,5,265, - 0,0,5747,5749,3,580,290,0,5748,5744,1,0,0,0,5748,5746,1,0,0,0,5749, - 579,1,0,0,0,5750,5836,3,996,498,0,5751,5752,3,582,291,0,5752,5753, - 3,996,498,0,5753,5836,1,0,0,0,5754,5756,5,268,0,0,5755,5757,3,584, - 292,0,5756,5755,1,0,0,0,5756,5757,1,0,0,0,5757,5758,1,0,0,0,5758, - 5836,3,996,498,0,5759,5761,5,293,0,0,5760,5762,3,584,292,0,5761, - 5760,1,0,0,0,5761,5762,1,0,0,0,5762,5763,1,0,0,0,5763,5836,3,996, - 498,0,5764,5766,5,207,0,0,5765,5767,3,584,292,0,5766,5765,1,0,0, - 0,5766,5767,1,0,0,0,5767,5768,1,0,0,0,5768,5836,3,996,498,0,5769, - 5771,5,249,0,0,5770,5772,3,584,292,0,5771,5770,1,0,0,0,5771,5772, - 1,0,0,0,5772,5773,1,0,0,0,5773,5836,3,996,498,0,5774,5775,5,130, - 0,0,5775,5777,3,1466,733,0,5776,5778,3,584,292,0,5777,5776,1,0,0, - 0,5777,5778,1,0,0,0,5778,5779,1,0,0,0,5779,5780,3,996,498,0,5780, - 5836,1,0,0,0,5781,5782,5,307,0,0,5782,5784,3,1466,733,0,5783,5785, - 3,584,292,0,5784,5783,1,0,0,0,5784,5785,1,0,0,0,5785,5786,1,0,0, - 0,5786,5787,3,996,498,0,5787,5836,1,0,0,0,5788,5790,3,1466,733,0, - 5789,5791,3,584,292,0,5790,5789,1,0,0,0,5790,5791,1,0,0,0,5791,5792, - 1,0,0,0,5792,5793,3,996,498,0,5793,5836,1,0,0,0,5794,5796,5,30,0, - 0,5795,5797,3,584,292,0,5796,5795,1,0,0,0,5796,5797,1,0,0,0,5797, - 5798,1,0,0,0,5798,5836,3,996,498,0,5799,5801,5,210,0,0,5800,5802, - 3,584,292,0,5801,5800,1,0,0,0,5801,5802,1,0,0,0,5802,5803,1,0,0, - 0,5803,5836,3,996,498,0,5804,5805,5,210,0,0,5805,5807,3,1466,733, - 0,5806,5808,3,584,292,0,5807,5806,1,0,0,0,5807,5808,1,0,0,0,5808, - 5809,1,0,0,0,5809,5810,3,996,498,0,5810,5836,1,0,0,0,5811,5812,5, - 210,0,0,5812,5814,5,30,0,0,5813,5815,3,584,292,0,5814,5813,1,0,0, - 0,5814,5815,1,0,0,0,5815,5816,1,0,0,0,5816,5836,3,996,498,0,5817, - 5819,5,144,0,0,5818,5820,3,584,292,0,5819,5818,1,0,0,0,5819,5820, - 1,0,0,0,5820,5821,1,0,0,0,5821,5836,3,996,498,0,5822,5823,5,144, - 0,0,5823,5825,3,1466,733,0,5824,5826,3,584,292,0,5825,5824,1,0,0, - 0,5825,5826,1,0,0,0,5826,5827,1,0,0,0,5827,5828,3,996,498,0,5828, - 5836,1,0,0,0,5829,5830,5,144,0,0,5830,5832,5,30,0,0,5831,5833,3, - 584,292,0,5832,5831,1,0,0,0,5832,5833,1,0,0,0,5833,5834,1,0,0,0, - 5834,5836,3,996,498,0,5835,5750,1,0,0,0,5835,5751,1,0,0,0,5835,5754, - 1,0,0,0,5835,5759,1,0,0,0,5835,5764,1,0,0,0,5835,5769,1,0,0,0,5835, - 5774,1,0,0,0,5835,5781,1,0,0,0,5835,5788,1,0,0,0,5835,5794,1,0,0, - 0,5835,5799,1,0,0,0,5835,5804,1,0,0,0,5835,5811,1,0,0,0,5835,5817, - 1,0,0,0,5835,5822,1,0,0,0,5835,5829,1,0,0,0,5836,581,1,0,0,0,5837, - 5838,7,35,0,0,5838,583,1,0,0,0,5839,5840,3,582,291,0,5840,585,1, - 0,0,0,5841,5842,5,65,0,0,5842,5843,3,590,295,0,5843,5844,5,80,0, - 0,5844,5845,3,600,300,0,5845,5846,5,94,0,0,5846,5848,3,602,301,0, - 5847,5849,3,606,303,0,5848,5847,1,0,0,0,5848,5849,1,0,0,0,5849,587, - 1,0,0,0,5850,5851,5,317,0,0,5851,5852,3,590,295,0,5852,5853,5,80, - 0,0,5853,5854,3,600,300,0,5854,5855,5,64,0,0,5855,5857,3,602,301, - 0,5856,5858,3,124,62,0,5857,5856,1,0,0,0,5857,5858,1,0,0,0,5858, - 5872,1,0,0,0,5859,5860,5,317,0,0,5860,5861,5,65,0,0,5861,5862,5, - 279,0,0,5862,5863,5,62,0,0,5863,5864,3,590,295,0,5864,5865,5,80, - 0,0,5865,5866,3,600,300,0,5866,5867,5,64,0,0,5867,5869,3,602,301, - 0,5868,5870,3,124,62,0,5869,5868,1,0,0,0,5869,5870,1,0,0,0,5870, - 5872,1,0,0,0,5871,5850,1,0,0,0,5871,5859,1,0,0,0,5872,589,1,0,0, - 0,5873,5890,3,596,298,0,5874,5890,5,30,0,0,5875,5876,5,30,0,0,5876, - 5890,5,294,0,0,5877,5878,5,30,0,0,5878,5879,5,2,0,0,5879,5880,3, - 244,122,0,5880,5881,5,3,0,0,5881,5890,1,0,0,0,5882,5883,5,30,0,0, - 5883,5884,5,294,0,0,5884,5885,5,2,0,0,5885,5886,3,244,122,0,5886, - 5887,5,3,0,0,5887,5890,1,0,0,0,5888,5890,3,592,296,0,5889,5873,1, - 0,0,0,5889,5874,1,0,0,0,5889,5875,1,0,0,0,5889,5877,1,0,0,0,5889, - 5882,1,0,0,0,5889,5888,1,0,0,0,5890,591,1,0,0,0,5891,5896,3,594, - 297,0,5892,5893,5,6,0,0,5893,5895,3,594,297,0,5894,5892,1,0,0,0, - 5895,5898,1,0,0,0,5896,5894,1,0,0,0,5896,5897,1,0,0,0,5897,593,1, - 0,0,0,5898,5896,1,0,0,0,5899,5900,7,36,0,0,5900,595,1,0,0,0,5901, - 5906,3,598,299,0,5902,5903,5,6,0,0,5903,5905,3,598,299,0,5904,5902, - 1,0,0,0,5905,5908,1,0,0,0,5906,5904,1,0,0,0,5906,5907,1,0,0,0,5907, - 597,1,0,0,0,5908,5906,1,0,0,0,5909,5911,5,88,0,0,5910,5912,3,242, - 121,0,5911,5910,1,0,0,0,5911,5912,1,0,0,0,5912,5926,1,0,0,0,5913, - 5915,5,86,0,0,5914,5916,3,242,121,0,5915,5914,1,0,0,0,5915,5916, - 1,0,0,0,5916,5926,1,0,0,0,5917,5919,5,46,0,0,5918,5920,3,242,121, - 0,5919,5918,1,0,0,0,5919,5920,1,0,0,0,5920,5926,1,0,0,0,5921,5923, - 3,1476,738,0,5922,5924,3,242,121,0,5923,5922,1,0,0,0,5923,5924,1, - 0,0,0,5924,5926,1,0,0,0,5925,5909,1,0,0,0,5925,5913,1,0,0,0,5925, - 5917,1,0,0,0,5925,5921,1,0,0,0,5926,599,1,0,0,0,5927,5986,3,1392, - 696,0,5928,5929,5,92,0,0,5929,5986,3,1394,697,0,5930,5931,5,328, - 0,0,5931,5986,3,1392,696,0,5932,5933,5,63,0,0,5933,5934,5,174,0, - 0,5934,5935,5,381,0,0,5935,5986,3,1418,709,0,5936,5937,5,63,0,0, - 5937,5938,5,331,0,0,5938,5986,3,1418,709,0,5939,5940,5,211,0,0,5940, - 5986,3,672,336,0,5941,5942,5,296,0,0,5942,5986,3,668,334,0,5943, - 5944,5,442,0,0,5944,5986,3,664,332,0,5945,5946,5,175,0,0,5946,5986, - 3,1398,699,0,5947,5948,5,189,0,0,5948,5986,3,550,275,0,5949,5950, - 5,247,0,0,5950,5986,3,1418,709,0,5951,5952,5,248,0,0,5952,5953,5, - 274,0,0,5953,5986,3,322,161,0,5954,5955,5,323,0,0,5955,5986,3,1396, - 698,0,5956,5957,5,351,0,0,5957,5986,3,1416,708,0,5958,5959,5,360, - 0,0,5959,5986,3,550,275,0,5960,5961,5,30,0,0,5961,5962,5,350,0,0, - 5962,5963,5,68,0,0,5963,5964,5,323,0,0,5964,5986,3,1396,698,0,5965, - 5966,5,30,0,0,5966,5967,5,329,0,0,5967,5968,5,68,0,0,5968,5969,5, - 323,0,0,5969,5986,3,1396,698,0,5970,5971,5,30,0,0,5971,5972,5,212, - 0,0,5972,5973,5,68,0,0,5973,5974,5,323,0,0,5974,5986,3,1396,698, - 0,5975,5976,5,30,0,0,5976,5977,5,457,0,0,5977,5978,5,68,0,0,5978, - 5979,5,323,0,0,5979,5986,3,1396,698,0,5980,5981,5,30,0,0,5981,5982, - 5,455,0,0,5982,5983,5,68,0,0,5983,5984,5,323,0,0,5984,5986,3,1396, - 698,0,5985,5927,1,0,0,0,5985,5928,1,0,0,0,5985,5930,1,0,0,0,5985, - 5932,1,0,0,0,5985,5936,1,0,0,0,5985,5939,1,0,0,0,5985,5941,1,0,0, - 0,5985,5943,1,0,0,0,5985,5945,1,0,0,0,5985,5947,1,0,0,0,5985,5949, - 1,0,0,0,5985,5951,1,0,0,0,5985,5954,1,0,0,0,5985,5956,1,0,0,0,5985, - 5958,1,0,0,0,5985,5960,1,0,0,0,5985,5965,1,0,0,0,5985,5970,1,0,0, - 0,5985,5975,1,0,0,0,5985,5980,1,0,0,0,5986,601,1,0,0,0,5987,5992, - 3,604,302,0,5988,5989,5,6,0,0,5989,5991,3,604,302,0,5990,5988,1, - 0,0,0,5991,5994,1,0,0,0,5992,5990,1,0,0,0,5992,5993,1,0,0,0,5993, - 603,1,0,0,0,5994,5992,1,0,0,0,5995,5999,3,1472,736,0,5996,5997,5, - 66,0,0,5997,5999,3,1472,736,0,5998,5995,1,0,0,0,5998,5996,1,0,0, - 0,5999,605,1,0,0,0,6000,6001,5,105,0,0,6001,6002,5,65,0,0,6002,6003, - 5,279,0,0,6003,607,1,0,0,0,6004,6005,5,65,0,0,6005,6006,3,596,298, - 0,6006,6007,5,94,0,0,6007,6009,3,1474,737,0,6008,6010,3,612,306, - 0,6009,6008,1,0,0,0,6009,6010,1,0,0,0,6010,6012,1,0,0,0,6011,6013, - 3,614,307,0,6012,6011,1,0,0,0,6012,6013,1,0,0,0,6013,609,1,0,0,0, - 6014,6015,5,317,0,0,6015,6016,3,596,298,0,6016,6017,5,64,0,0,6017, - 6019,3,1474,737,0,6018,6020,3,614,307,0,6019,6018,1,0,0,0,6019,6020, - 1,0,0,0,6020,6022,1,0,0,0,6021,6023,3,124,62,0,6022,6021,1,0,0,0, - 6022,6023,1,0,0,0,6023,6038,1,0,0,0,6024,6025,5,317,0,0,6025,6026, - 5,134,0,0,6026,6027,5,279,0,0,6027,6028,5,62,0,0,6028,6029,3,596, - 298,0,6029,6030,5,64,0,0,6030,6032,3,1474,737,0,6031,6033,3,614, - 307,0,6032,6031,1,0,0,0,6032,6033,1,0,0,0,6033,6035,1,0,0,0,6034, - 6036,3,124,62,0,6035,6034,1,0,0,0,6035,6036,1,0,0,0,6036,6038,1, - 0,0,0,6037,6014,1,0,0,0,6037,6024,1,0,0,0,6038,611,1,0,0,0,6039, - 6040,5,105,0,0,6040,6041,5,134,0,0,6041,6042,5,279,0,0,6042,613, - 1,0,0,0,6043,6044,5,214,0,0,6044,6045,5,147,0,0,6045,6046,3,1472, - 736,0,6046,615,1,0,0,0,6047,6048,5,138,0,0,6048,6049,5,53,0,0,6049, - 6050,5,294,0,0,6050,6051,3,618,309,0,6051,6052,3,622,311,0,6052, - 617,1,0,0,0,6053,6055,3,620,310,0,6054,6053,1,0,0,0,6055,6058,1, - 0,0,0,6056,6054,1,0,0,0,6056,6057,1,0,0,0,6057,619,1,0,0,0,6058, - 6056,1,0,0,0,6059,6060,5,68,0,0,6060,6061,5,323,0,0,6061,6069,3, - 1396,698,0,6062,6063,5,62,0,0,6063,6064,5,318,0,0,6064,6069,3,1474, - 737,0,6065,6066,5,62,0,0,6066,6067,5,99,0,0,6067,6069,3,1474,737, - 0,6068,6059,1,0,0,0,6068,6062,1,0,0,0,6068,6065,1,0,0,0,6069,621, - 1,0,0,0,6070,6071,5,65,0,0,6071,6072,3,590,295,0,6072,6073,5,80, - 0,0,6073,6074,3,624,312,0,6074,6075,5,94,0,0,6075,6077,3,602,301, - 0,6076,6078,3,606,303,0,6077,6076,1,0,0,0,6077,6078,1,0,0,0,6078, - 6101,1,0,0,0,6079,6080,5,317,0,0,6080,6081,3,590,295,0,6081,6082, - 5,80,0,0,6082,6083,3,624,312,0,6083,6084,5,64,0,0,6084,6086,3,602, - 301,0,6085,6087,3,124,62,0,6086,6085,1,0,0,0,6086,6087,1,0,0,0,6087, - 6101,1,0,0,0,6088,6089,5,317,0,0,6089,6090,5,65,0,0,6090,6091,5, - 279,0,0,6091,6092,5,62,0,0,6092,6093,3,590,295,0,6093,6094,5,80, - 0,0,6094,6095,3,624,312,0,6095,6096,5,64,0,0,6096,6098,3,602,301, - 0,6097,6099,3,124,62,0,6098,6097,1,0,0,0,6098,6099,1,0,0,0,6099, - 6101,1,0,0,0,6100,6070,1,0,0,0,6100,6079,1,0,0,0,6100,6088,1,0,0, - 0,6101,623,1,0,0,0,6102,6103,7,37,0,0,6103,625,1,0,0,0,6104,6106, - 5,46,0,0,6105,6107,3,628,314,0,6106,6105,1,0,0,0,6106,6107,1,0,0, - 0,6107,6108,1,0,0,0,6108,6110,5,226,0,0,6109,6111,3,630,315,0,6110, - 6109,1,0,0,0,6110,6111,1,0,0,0,6111,6113,1,0,0,0,6112,6114,3,514, - 257,0,6113,6112,1,0,0,0,6113,6114,1,0,0,0,6114,6116,1,0,0,0,6115, - 6117,3,632,316,0,6116,6115,1,0,0,0,6116,6117,1,0,0,0,6117,6118,1, - 0,0,0,6118,6119,5,80,0,0,6119,6121,3,1120,560,0,6120,6122,3,634, - 317,0,6121,6120,1,0,0,0,6121,6122,1,0,0,0,6122,6123,1,0,0,0,6123, - 6124,5,2,0,0,6124,6125,3,636,318,0,6125,6127,5,3,0,0,6126,6128,3, - 642,321,0,6127,6126,1,0,0,0,6127,6128,1,0,0,0,6128,6130,1,0,0,0, - 6129,6131,3,222,111,0,6130,6129,1,0,0,0,6130,6131,1,0,0,0,6131,6133, - 1,0,0,0,6132,6134,3,134,67,0,6133,6132,1,0,0,0,6133,6134,1,0,0,0, - 6134,6136,1,0,0,0,6135,6137,3,280,140,0,6136,6135,1,0,0,0,6136,6137, - 1,0,0,0,6137,6139,1,0,0,0,6138,6140,3,1146,573,0,6139,6138,1,0,0, - 0,6139,6140,1,0,0,0,6140,627,1,0,0,0,6141,6142,5,98,0,0,6142,629, - 1,0,0,0,6143,6144,5,109,0,0,6144,631,1,0,0,0,6145,6146,3,1438,719, - 0,6146,633,1,0,0,0,6147,6148,5,100,0,0,6148,6149,3,1438,719,0,6149, - 635,1,0,0,0,6150,6155,3,640,320,0,6151,6152,5,6,0,0,6152,6154,3, - 640,320,0,6153,6151,1,0,0,0,6154,6157,1,0,0,0,6155,6153,1,0,0,0, - 6155,6156,1,0,0,0,6156,637,1,0,0,0,6157,6155,1,0,0,0,6158,6160,3, - 646,323,0,6159,6158,1,0,0,0,6159,6160,1,0,0,0,6160,6162,1,0,0,0, - 6161,6163,3,648,324,0,6162,6161,1,0,0,0,6162,6163,1,0,0,0,6163,6165, - 1,0,0,0,6164,6166,3,650,325,0,6165,6164,1,0,0,0,6165,6166,1,0,0, - 0,6166,6168,1,0,0,0,6167,6169,3,652,326,0,6168,6167,1,0,0,0,6168, - 6169,1,0,0,0,6169,6182,1,0,0,0,6170,6172,3,646,323,0,6171,6170,1, - 0,0,0,6171,6172,1,0,0,0,6172,6173,1,0,0,0,6173,6174,3,558,279,0, - 6174,6176,3,132,66,0,6175,6177,3,650,325,0,6176,6175,1,0,0,0,6176, - 6177,1,0,0,0,6177,6179,1,0,0,0,6178,6180,3,652,326,0,6179,6178,1, - 0,0,0,6179,6180,1,0,0,0,6180,6182,1,0,0,0,6181,6159,1,0,0,0,6181, - 6171,1,0,0,0,6182,639,1,0,0,0,6183,6184,3,1434,717,0,6184,6185,3, - 638,319,0,6185,6195,1,0,0,0,6186,6187,3,1264,632,0,6187,6188,3,638, - 319,0,6188,6195,1,0,0,0,6189,6190,5,2,0,0,6190,6191,3,1214,607,0, - 6191,6192,5,3,0,0,6192,6193,3,638,319,0,6193,6195,1,0,0,0,6194,6183, - 1,0,0,0,6194,6186,1,0,0,0,6194,6189,1,0,0,0,6195,641,1,0,0,0,6196, - 6197,5,441,0,0,6197,6198,5,2,0,0,6198,6199,3,644,322,0,6199,6200, - 5,3,0,0,6200,643,1,0,0,0,6201,6206,3,640,320,0,6202,6203,5,6,0,0, - 6203,6205,3,640,320,0,6204,6202,1,0,0,0,6205,6208,1,0,0,0,6206,6204, - 1,0,0,0,6206,6207,1,0,0,0,6207,645,1,0,0,0,6208,6206,1,0,0,0,6209, - 6210,5,43,0,0,6210,6211,3,558,279,0,6211,647,1,0,0,0,6212,6213,3, - 558,279,0,6213,649,1,0,0,0,6214,6215,7,38,0,0,6215,651,1,0,0,0,6216, - 6217,5,273,0,0,6217,6221,5,207,0,0,6218,6219,5,273,0,0,6219,6221, - 5,249,0,0,6220,6216,1,0,0,0,6220,6218,1,0,0,0,6221,653,1,0,0,0,6222, - 6224,5,46,0,0,6223,6225,3,658,329,0,6224,6223,1,0,0,0,6224,6225, - 1,0,0,0,6225,6230,1,0,0,0,6226,6227,5,211,0,0,6227,6231,3,1444,722, - 0,6228,6229,5,296,0,0,6229,6231,3,1432,716,0,6230,6226,1,0,0,0,6230, - 6228,1,0,0,0,6231,6232,1,0,0,0,6232,6242,3,676,338,0,6233,6240,5, - 316,0,0,6234,6241,3,686,343,0,6235,6236,5,92,0,0,6236,6237,5,2,0, - 0,6237,6238,3,714,357,0,6238,6239,5,3,0,0,6239,6241,1,0,0,0,6240, - 6234,1,0,0,0,6240,6235,1,0,0,0,6241,6243,1,0,0,0,6242,6233,1,0,0, - 0,6242,6243,1,0,0,0,6243,6244,1,0,0,0,6244,6247,3,702,351,0,6245, - 6246,5,105,0,0,6246,6248,3,656,328,0,6247,6245,1,0,0,0,6247,6248, - 1,0,0,0,6248,655,1,0,0,0,6249,6250,5,2,0,0,6250,6255,3,1476,738, - 0,6251,6252,5,6,0,0,6252,6254,3,1476,738,0,6253,6251,1,0,0,0,6254, - 6257,1,0,0,0,6255,6253,1,0,0,0,6255,6256,1,0,0,0,6256,6258,1,0,0, - 0,6257,6255,1,0,0,0,6258,6259,5,3,0,0,6259,657,1,0,0,0,6260,6261, - 5,82,0,0,6261,6262,5,311,0,0,6262,659,1,0,0,0,6263,6265,5,2,0,0, - 6264,6266,3,662,331,0,6265,6264,1,0,0,0,6265,6266,1,0,0,0,6266,6267, - 1,0,0,0,6267,6268,5,3,0,0,6268,661,1,0,0,0,6269,6274,3,680,340,0, - 6270,6271,5,6,0,0,6271,6273,3,680,340,0,6272,6270,1,0,0,0,6273,6276, - 1,0,0,0,6274,6272,1,0,0,0,6274,6275,1,0,0,0,6275,663,1,0,0,0,6276, - 6274,1,0,0,0,6277,6282,3,666,333,0,6278,6279,5,6,0,0,6279,6281,3, - 666,333,0,6280,6278,1,0,0,0,6281,6284,1,0,0,0,6282,6280,1,0,0,0, - 6282,6283,1,0,0,0,6283,665,1,0,0,0,6284,6282,1,0,0,0,6285,6286,3, - 1428,714,0,6286,6287,3,660,330,0,6287,6294,1,0,0,0,6288,6294,3,1502, - 751,0,6289,6291,3,1476,738,0,6290,6292,3,1382,691,0,6291,6290,1, - 0,0,0,6291,6292,1,0,0,0,6292,6294,1,0,0,0,6293,6285,1,0,0,0,6293, - 6288,1,0,0,0,6293,6289,1,0,0,0,6294,667,1,0,0,0,6295,6300,3,670, - 335,0,6296,6297,5,6,0,0,6297,6299,3,670,335,0,6298,6296,1,0,0,0, - 6299,6302,1,0,0,0,6300,6298,1,0,0,0,6300,6301,1,0,0,0,6301,669,1, - 0,0,0,6302,6300,1,0,0,0,6303,6304,3,1430,715,0,6304,6305,3,660,330, - 0,6305,6312,1,0,0,0,6306,6312,3,1502,751,0,6307,6309,3,1476,738, - 0,6308,6310,3,1382,691,0,6309,6308,1,0,0,0,6309,6310,1,0,0,0,6310, - 6312,1,0,0,0,6311,6303,1,0,0,0,6311,6306,1,0,0,0,6311,6307,1,0,0, - 0,6312,671,1,0,0,0,6313,6318,3,674,337,0,6314,6315,5,6,0,0,6315, - 6317,3,674,337,0,6316,6314,1,0,0,0,6317,6320,1,0,0,0,6318,6316,1, - 0,0,0,6318,6319,1,0,0,0,6319,673,1,0,0,0,6320,6318,1,0,0,0,6321, - 6322,3,1446,723,0,6322,6323,3,660,330,0,6323,6330,1,0,0,0,6324,6330, - 3,1502,751,0,6325,6327,3,1476,738,0,6326,6328,3,1382,691,0,6327, - 6326,1,0,0,0,6327,6328,1,0,0,0,6328,6330,1,0,0,0,6329,6321,1,0,0, - 0,6329,6324,1,0,0,0,6329,6325,1,0,0,0,6330,675,1,0,0,0,6331,6333, - 5,2,0,0,6332,6334,3,678,339,0,6333,6332,1,0,0,0,6333,6334,1,0,0, - 0,6334,6335,1,0,0,0,6335,6336,5,3,0,0,6336,677,1,0,0,0,6337,6342, - 3,690,345,0,6338,6339,5,6,0,0,6339,6341,3,690,345,0,6340,6338,1, - 0,0,0,6341,6344,1,0,0,0,6342,6340,1,0,0,0,6342,6343,1,0,0,0,6343, - 679,1,0,0,0,6344,6342,1,0,0,0,6345,6347,3,682,341,0,6346,6348,3, - 684,342,0,6347,6346,1,0,0,0,6347,6348,1,0,0,0,6348,6349,1,0,0,0, - 6349,6350,3,688,344,0,6350,6359,1,0,0,0,6351,6353,3,684,342,0,6352, - 6354,3,682,341,0,6353,6352,1,0,0,0,6353,6354,1,0,0,0,6354,6355,1, - 0,0,0,6355,6356,3,688,344,0,6356,6359,1,0,0,0,6357,6359,3,688,344, - 0,6358,6345,1,0,0,0,6358,6351,1,0,0,0,6358,6357,1,0,0,0,6359,681, - 1,0,0,0,6360,6362,5,68,0,0,6361,6363,5,453,0,0,6362,6361,1,0,0,0, - 6362,6363,1,0,0,0,6363,6368,1,0,0,0,6364,6368,5,453,0,0,6365,6368, - 5,400,0,0,6366,6368,5,101,0,0,6367,6360,1,0,0,0,6367,6364,1,0,0, - 0,6367,6365,1,0,0,0,6367,6366,1,0,0,0,6368,683,1,0,0,0,6369,6370, - 3,1484,742,0,6370,685,1,0,0,0,6371,6372,3,688,344,0,6372,687,1,0, - 0,0,6373,6386,3,1170,585,0,6374,6375,3,1484,742,0,6375,6376,3,560, - 280,0,6376,6377,5,27,0,0,6377,6378,5,360,0,0,6378,6386,1,0,0,0,6379, - 6380,5,415,0,0,6380,6381,3,1484,742,0,6381,6382,3,560,280,0,6382, - 6383,5,27,0,0,6383,6384,5,360,0,0,6384,6386,1,0,0,0,6385,6373,1, - 0,0,0,6385,6374,1,0,0,0,6385,6379,1,0,0,0,6386,689,1,0,0,0,6387, - 6390,3,680,340,0,6388,6389,7,39,0,0,6389,6391,3,1214,607,0,6390, - 6388,1,0,0,0,6390,6391,1,0,0,0,6391,691,1,0,0,0,6392,6393,3,680, - 340,0,6393,693,1,0,0,0,6394,6405,5,2,0,0,6395,6406,5,9,0,0,6396, - 6406,3,696,348,0,6397,6398,5,83,0,0,6398,6399,5,147,0,0,6399,6406, - 3,696,348,0,6400,6401,3,696,348,0,6401,6402,5,83,0,0,6402,6403,5, - 147,0,0,6403,6404,3,696,348,0,6404,6406,1,0,0,0,6405,6395,1,0,0, - 0,6405,6396,1,0,0,0,6405,6397,1,0,0,0,6405,6400,1,0,0,0,6406,6407, - 1,0,0,0,6407,6408,5,3,0,0,6408,695,1,0,0,0,6409,6414,3,692,346,0, - 6410,6411,5,6,0,0,6411,6413,3,692,346,0,6412,6410,1,0,0,0,6413,6416, - 1,0,0,0,6414,6412,1,0,0,0,6414,6415,1,0,0,0,6415,697,1,0,0,0,6416, - 6414,1,0,0,0,6417,6418,3,1446,723,0,6418,6419,3,694,347,0,6419,699, - 1,0,0,0,6420,6425,3,698,349,0,6421,6422,5,6,0,0,6422,6424,3,698, - 349,0,6423,6421,1,0,0,0,6424,6427,1,0,0,0,6425,6423,1,0,0,0,6425, - 6426,1,0,0,0,6426,701,1,0,0,0,6427,6425,1,0,0,0,6428,6430,3,706, - 353,0,6429,6428,1,0,0,0,6430,6431,1,0,0,0,6431,6429,1,0,0,0,6431, - 6432,1,0,0,0,6432,703,1,0,0,0,6433,6434,5,149,0,0,6434,6435,5,80, - 0,0,6435,6436,5,78,0,0,6436,6469,5,458,0,0,6437,6438,5,316,0,0,6438, - 6439,5,78,0,0,6439,6440,5,80,0,0,6440,6441,5,78,0,0,6441,6469,5, - 458,0,0,6442,6469,5,346,0,0,6443,6469,5,222,0,0,6444,6469,5,338, - 0,0,6445,6469,5,377,0,0,6446,6447,5,205,0,0,6447,6448,5,327,0,0, - 6448,6469,5,181,0,0,6449,6450,5,205,0,0,6450,6451,5,327,0,0,6451, - 6469,5,243,0,0,6452,6453,5,327,0,0,6453,6469,5,181,0,0,6454,6455, - 5,327,0,0,6455,6469,5,243,0,0,6456,6469,5,250,0,0,6457,6458,5,77, - 0,0,6458,6469,5,250,0,0,6459,6460,5,170,0,0,6460,6469,3,320,160, - 0,6461,6462,5,320,0,0,6462,6469,3,320,160,0,6463,6464,5,459,0,0, - 6464,6469,3,558,279,0,6465,6469,3,90,45,0,6466,6467,5,460,0,0,6467, - 6469,3,1476,738,0,6468,6433,1,0,0,0,6468,6437,1,0,0,0,6468,6442, - 1,0,0,0,6468,6443,1,0,0,0,6468,6444,1,0,0,0,6468,6445,1,0,0,0,6468, - 6446,1,0,0,0,6468,6449,1,0,0,0,6468,6452,1,0,0,0,6468,6454,1,0,0, - 0,6468,6456,1,0,0,0,6468,6457,1,0,0,0,6468,6459,1,0,0,0,6468,6461, - 1,0,0,0,6468,6463,1,0,0,0,6468,6465,1,0,0,0,6468,6466,1,0,0,0,6469, - 705,1,0,0,0,6470,6471,5,36,0,0,6471,6472,3,1460,730,0,6472,6473, - 5,6,0,0,6473,6474,3,1460,730,0,6474,6496,1,0,0,0,6475,6476,5,247, - 0,0,6476,6496,3,80,40,0,6477,6478,5,443,0,0,6478,6496,3,708,354, - 0,6479,6496,5,104,0,0,6480,6481,5,333,0,0,6481,6488,3,1476,738,0, - 6482,6483,5,94,0,0,6483,6489,3,1476,738,0,6484,6485,5,10,0,0,6485, - 6489,3,1476,738,0,6486,6487,5,64,0,0,6487,6489,5,434,0,0,6488,6482, - 1,0,0,0,6488,6484,1,0,0,0,6488,6486,1,0,0,0,6489,6496,1,0,0,0,6490, - 6491,5,36,0,0,6491,6496,3,1476,738,0,6492,6496,3,6,3,0,6493,6496, - 3,704,352,0,6494,6496,3,1476,738,0,6495,6470,1,0,0,0,6495,6475,1, - 0,0,0,6495,6477,1,0,0,0,6495,6479,1,0,0,0,6495,6480,1,0,0,0,6495, - 6490,1,0,0,0,6495,6492,1,0,0,0,6495,6493,1,0,0,0,6495,6494,1,0,0, - 0,6496,707,1,0,0,0,6497,6498,5,62,0,0,6498,6499,5,360,0,0,6499,6506, - 3,1170,585,0,6500,6501,5,6,0,0,6501,6502,5,62,0,0,6502,6503,5,360, - 0,0,6503,6505,3,1170,585,0,6504,6500,1,0,0,0,6505,6508,1,0,0,0,6506, - 6504,1,0,0,0,6506,6507,1,0,0,0,6507,709,1,0,0,0,6508,6506,1,0,0, - 0,6509,6510,5,105,0,0,6510,6511,3,494,247,0,6511,711,1,0,0,0,6512, - 6513,3,1434,717,0,6513,6514,3,688,344,0,6514,713,1,0,0,0,6515,6520, - 3,712,356,0,6516,6517,5,6,0,0,6517,6519,3,712,356,0,6518,6516,1, - 0,0,0,6519,6522,1,0,0,0,6520,6518,1,0,0,0,6520,6521,1,0,0,0,6521, - 715,1,0,0,0,6522,6520,1,0,0,0,6523,6524,5,138,0,0,6524,6525,3,718, - 359,0,6525,6527,3,720,360,0,6526,6528,3,722,361,0,6527,6526,1,0, - 0,0,6527,6528,1,0,0,0,6528,717,1,0,0,0,6529,6530,5,211,0,0,6530, - 6536,3,674,337,0,6531,6532,5,296,0,0,6532,6536,3,670,335,0,6533, - 6534,5,442,0,0,6534,6536,3,666,333,0,6535,6529,1,0,0,0,6535,6531, - 1,0,0,0,6535,6533,1,0,0,0,6536,719,1,0,0,0,6537,6539,3,704,352,0, - 6538,6537,1,0,0,0,6539,6540,1,0,0,0,6540,6538,1,0,0,0,6540,6541, - 1,0,0,0,6541,721,1,0,0,0,6542,6543,5,315,0,0,6543,723,1,0,0,0,6544, - 6545,5,191,0,0,6545,6547,5,211,0,0,6546,6548,3,748,374,0,6547,6546, - 1,0,0,0,6547,6548,1,0,0,0,6548,6549,1,0,0,0,6549,6551,3,672,336, - 0,6550,6552,3,124,62,0,6551,6550,1,0,0,0,6551,6552,1,0,0,0,6552, - 6572,1,0,0,0,6553,6554,5,191,0,0,6554,6556,5,296,0,0,6555,6557,3, - 748,374,0,6556,6555,1,0,0,0,6556,6557,1,0,0,0,6557,6558,1,0,0,0, - 6558,6560,3,668,334,0,6559,6561,3,124,62,0,6560,6559,1,0,0,0,6560, - 6561,1,0,0,0,6561,6572,1,0,0,0,6562,6563,5,191,0,0,6563,6565,5,442, - 0,0,6564,6566,3,748,374,0,6565,6564,1,0,0,0,6565,6566,1,0,0,0,6566, - 6567,1,0,0,0,6567,6569,3,664,332,0,6568,6570,3,124,62,0,6569,6568, - 1,0,0,0,6569,6570,1,0,0,0,6570,6572,1,0,0,0,6571,6544,1,0,0,0,6571, - 6553,1,0,0,0,6571,6562,1,0,0,0,6572,725,1,0,0,0,6573,6574,5,191, - 0,0,6574,6576,5,136,0,0,6575,6577,3,748,374,0,6576,6575,1,0,0,0, - 6576,6577,1,0,0,0,6577,6578,1,0,0,0,6578,6580,3,700,350,0,6579,6581, - 3,124,62,0,6580,6579,1,0,0,0,6580,6581,1,0,0,0,6581,727,1,0,0,0, - 6582,6583,5,191,0,0,6583,6585,5,278,0,0,6584,6586,3,748,374,0,6585, - 6584,1,0,0,0,6585,6586,1,0,0,0,6586,6587,1,0,0,0,6587,6589,3,734, - 367,0,6588,6590,3,124,62,0,6589,6588,1,0,0,0,6589,6590,1,0,0,0,6590, - 729,1,0,0,0,6591,6592,5,2,0,0,6592,6593,3,1170,585,0,6593,6594,5, - 3,0,0,6594,6614,1,0,0,0,6595,6596,5,2,0,0,6596,6597,3,1170,585,0, - 6597,6598,5,6,0,0,6598,6599,3,1170,585,0,6599,6600,5,3,0,0,6600, - 6614,1,0,0,0,6601,6602,5,2,0,0,6602,6603,5,407,0,0,6603,6604,5,6, - 0,0,6604,6605,3,1170,585,0,6605,6606,5,3,0,0,6606,6614,1,0,0,0,6607, - 6608,5,2,0,0,6608,6609,3,1170,585,0,6609,6610,5,6,0,0,6610,6611, - 5,407,0,0,6611,6612,5,3,0,0,6612,6614,1,0,0,0,6613,6591,1,0,0,0, - 6613,6595,1,0,0,0,6613,6601,1,0,0,0,6613,6607,1,0,0,0,6614,731,1, - 0,0,0,6615,6616,3,1476,738,0,6616,6617,5,11,0,0,6617,6619,1,0,0, - 0,6618,6615,1,0,0,0,6619,6622,1,0,0,0,6620,6618,1,0,0,0,6620,6621, - 1,0,0,0,6621,6623,1,0,0,0,6622,6620,1,0,0,0,6623,6624,3,1320,660, - 0,6624,733,1,0,0,0,6625,6630,3,736,368,0,6626,6627,5,6,0,0,6627, - 6629,3,736,368,0,6628,6626,1,0,0,0,6629,6632,1,0,0,0,6630,6628,1, - 0,0,0,6630,6631,1,0,0,0,6631,735,1,0,0,0,6632,6630,1,0,0,0,6633, - 6634,3,732,366,0,6634,6635,3,730,365,0,6635,737,1,0,0,0,6636,6637, - 5,57,0,0,6637,6638,3,740,370,0,6638,739,1,0,0,0,6639,6641,3,742, - 371,0,6640,6639,1,0,0,0,6641,6642,1,0,0,0,6642,6640,1,0,0,0,6642, - 6643,1,0,0,0,6643,741,1,0,0,0,6644,6648,3,1460,730,0,6645,6646,5, - 247,0,0,6646,6648,3,80,40,0,6647,6644,1,0,0,0,6647,6645,1,0,0,0, - 6648,743,1,0,0,0,6649,6650,5,46,0,0,6650,6651,5,41,0,0,6651,6652, - 5,2,0,0,6652,6653,3,1170,585,0,6653,6654,5,36,0,0,6654,6655,3,1170, - 585,0,6655,6656,5,3,0,0,6656,6657,5,105,0,0,6657,6658,5,211,0,0, - 6658,6660,3,674,337,0,6659,6661,3,746,373,0,6660,6659,1,0,0,0,6660, - 6661,1,0,0,0,6661,6687,1,0,0,0,6662,6663,5,46,0,0,6663,6664,5,41, - 0,0,6664,6665,5,2,0,0,6665,6666,3,1170,585,0,6666,6667,5,36,0,0, - 6667,6668,3,1170,585,0,6668,6669,5,3,0,0,6669,6670,5,379,0,0,6670, - 6672,5,211,0,0,6671,6673,3,746,373,0,6672,6671,1,0,0,0,6672,6673, - 1,0,0,0,6673,6687,1,0,0,0,6674,6675,5,46,0,0,6675,6676,5,41,0,0, - 6676,6677,5,2,0,0,6677,6678,3,1170,585,0,6678,6679,5,36,0,0,6679, - 6680,3,1170,585,0,6680,6681,5,3,0,0,6681,6682,5,105,0,0,6682,6684, - 5,400,0,0,6683,6685,3,746,373,0,6684,6683,1,0,0,0,6684,6685,1,0, - 0,0,6685,6687,1,0,0,0,6686,6649,1,0,0,0,6686,6662,1,0,0,0,6686,6674, - 1,0,0,0,6687,745,1,0,0,0,6688,6689,5,36,0,0,6689,6693,5,223,0,0, - 6690,6691,5,36,0,0,6691,6693,5,141,0,0,6692,6688,1,0,0,0,6692,6690, - 1,0,0,0,6693,747,1,0,0,0,6694,6695,5,220,0,0,6695,6696,5,396,0,0, - 6696,749,1,0,0,0,6697,6699,5,46,0,0,6698,6700,3,658,329,0,6699,6698, - 1,0,0,0,6699,6700,1,0,0,0,6700,6701,1,0,0,0,6701,6702,5,443,0,0, - 6702,6703,5,62,0,0,6703,6704,3,1170,585,0,6704,6705,5,247,0,0,6705, - 6706,3,1438,719,0,6706,6707,5,2,0,0,6707,6708,3,752,376,0,6708,6709, - 5,3,0,0,6709,751,1,0,0,0,6710,6711,5,64,0,0,6711,6712,5,461,0,0, - 6712,6713,5,105,0,0,6713,6714,5,211,0,0,6714,6715,3,674,337,0,6715, - 6716,5,6,0,0,6716,6717,5,94,0,0,6717,6718,5,461,0,0,6718,6719,5, - 105,0,0,6719,6720,5,211,0,0,6720,6721,3,674,337,0,6721,6745,1,0, - 0,0,6722,6723,5,94,0,0,6723,6724,5,461,0,0,6724,6725,5,105,0,0,6725, - 6726,5,211,0,0,6726,6727,3,674,337,0,6727,6728,5,6,0,0,6728,6729, - 5,64,0,0,6729,6730,5,461,0,0,6730,6731,5,105,0,0,6731,6732,5,211, - 0,0,6732,6733,3,674,337,0,6733,6745,1,0,0,0,6734,6735,5,64,0,0,6735, - 6736,5,461,0,0,6736,6737,5,105,0,0,6737,6738,5,211,0,0,6738,6745, - 3,674,337,0,6739,6740,5,94,0,0,6740,6741,5,461,0,0,6741,6742,5,105, - 0,0,6742,6743,5,211,0,0,6743,6745,3,674,337,0,6744,6710,1,0,0,0, - 6744,6722,1,0,0,0,6744,6734,1,0,0,0,6744,6739,1,0,0,0,6745,753,1, - 0,0,0,6746,6747,5,306,0,0,6747,6763,3,756,378,0,6748,6749,5,306, - 0,0,6749,6763,3,758,379,0,6750,6751,5,306,0,0,6751,6752,5,2,0,0, - 6752,6753,3,760,380,0,6753,6754,5,3,0,0,6754,6755,3,756,378,0,6755, - 6763,1,0,0,0,6756,6757,5,306,0,0,6757,6758,5,2,0,0,6758,6759,3,760, - 380,0,6759,6760,5,3,0,0,6760,6761,3,758,379,0,6761,6763,1,0,0,0, - 6762,6746,1,0,0,0,6762,6748,1,0,0,0,6762,6750,1,0,0,0,6762,6756, - 1,0,0,0,6763,755,1,0,0,0,6764,6766,5,226,0,0,6765,6767,3,630,315, - 0,6766,6765,1,0,0,0,6766,6767,1,0,0,0,6767,6768,1,0,0,0,6768,6775, - 3,1414,707,0,6769,6771,5,92,0,0,6770,6772,3,630,315,0,6771,6770, - 1,0,0,0,6771,6772,1,0,0,0,6772,6773,1,0,0,0,6773,6775,3,1408,704, - 0,6774,6764,1,0,0,0,6774,6769,1,0,0,0,6775,757,1,0,0,0,6776,6778, - 5,323,0,0,6777,6779,3,630,315,0,6778,6777,1,0,0,0,6778,6779,1,0, - 0,0,6779,6780,1,0,0,0,6780,6792,3,1424,712,0,6781,6783,5,349,0,0, - 6782,6784,3,630,315,0,6783,6782,1,0,0,0,6783,6784,1,0,0,0,6784,6785, - 1,0,0,0,6785,6792,3,1438,719,0,6786,6788,5,175,0,0,6787,6789,3,630, - 315,0,6788,6787,1,0,0,0,6788,6789,1,0,0,0,6789,6790,1,0,0,0,6790, - 6792,3,1422,711,0,6791,6776,1,0,0,0,6791,6781,1,0,0,0,6791,6786, - 1,0,0,0,6792,759,1,0,0,0,6793,6798,3,762,381,0,6794,6795,5,6,0,0, - 6795,6797,3,762,381,0,6796,6794,1,0,0,0,6797,6800,1,0,0,0,6798,6796, - 1,0,0,0,6798,6799,1,0,0,0,6799,761,1,0,0,0,6800,6798,1,0,0,0,6801, - 6802,5,128,0,0,6802,763,1,0,0,0,6803,6804,5,138,0,0,6804,6805,5, - 351,0,0,6805,6806,3,1404,702,0,6806,6807,5,333,0,0,6807,6808,3,132, - 66,0,6808,6816,1,0,0,0,6809,6810,5,138,0,0,6810,6811,5,351,0,0,6811, - 6812,3,1404,702,0,6812,6813,5,313,0,0,6813,6814,3,132,66,0,6814, - 6816,1,0,0,0,6815,6803,1,0,0,0,6815,6809,1,0,0,0,6816,765,1,0,0, - 0,6817,6818,5,138,0,0,6818,6819,5,136,0,0,6819,6820,3,698,349,0, - 6820,6821,5,309,0,0,6821,6822,5,94,0,0,6822,6823,3,1438,719,0,6823, - 7209,1,0,0,0,6824,6825,5,138,0,0,6825,6826,5,108,0,0,6826,6827,3, - 558,279,0,6827,6828,5,309,0,0,6828,6829,5,94,0,0,6829,6830,3,1438, - 719,0,6830,7209,1,0,0,0,6831,6832,5,138,0,0,6832,6833,5,168,0,0, - 6833,6834,3,558,279,0,6834,6835,5,309,0,0,6835,6836,5,94,0,0,6836, - 6837,3,1438,719,0,6837,7209,1,0,0,0,6838,6839,5,138,0,0,6839,6840, - 5,175,0,0,6840,6841,3,1422,711,0,6841,6842,5,309,0,0,6842,6843,5, - 94,0,0,6843,6844,3,1420,710,0,6844,7209,1,0,0,0,6845,6846,5,138, - 0,0,6846,6847,5,189,0,0,6847,6848,3,558,279,0,6848,6849,5,309,0, - 0,6849,6850,5,94,0,0,6850,6851,3,1438,719,0,6851,7209,1,0,0,0,6852, - 6853,5,138,0,0,6853,6854,5,189,0,0,6854,6855,3,558,279,0,6855,6856, - 5,309,0,0,6856,6857,5,45,0,0,6857,6858,3,1438,719,0,6858,6859,5, - 94,0,0,6859,6860,3,1438,719,0,6860,7209,1,0,0,0,6861,6862,5,138, - 0,0,6862,6863,5,63,0,0,6863,6864,5,174,0,0,6864,6865,5,381,0,0,6865, - 6866,3,1438,719,0,6866,6867,5,309,0,0,6867,6868,5,94,0,0,6868,6869, - 3,1438,719,0,6869,7209,1,0,0,0,6870,6871,5,138,0,0,6871,6872,5,211, - 0,0,6872,6873,3,674,337,0,6873,6874,5,309,0,0,6874,6875,5,94,0,0, - 6875,6876,3,1444,722,0,6876,7209,1,0,0,0,6877,6878,5,138,0,0,6878, - 6879,5,66,0,0,6879,6880,3,1470,735,0,6880,6881,5,309,0,0,6881,6882, - 5,94,0,0,6882,6883,3,1470,735,0,6883,7209,1,0,0,0,6884,6886,5,138, - 0,0,6885,6887,3,336,168,0,6886,6885,1,0,0,0,6886,6887,1,0,0,0,6887, - 6888,1,0,0,0,6888,6889,5,247,0,0,6889,6890,3,1438,719,0,6890,6891, - 5,309,0,0,6891,6892,5,94,0,0,6892,6893,3,1438,719,0,6893,7209,1, - 0,0,0,6894,6895,5,138,0,0,6895,6896,5,278,0,0,6896,6897,5,156,0, - 0,6897,6898,3,558,279,0,6898,6899,5,100,0,0,6899,6900,3,1438,719, - 0,6900,6901,5,309,0,0,6901,6902,5,94,0,0,6902,6903,3,1438,719,0, - 6903,7209,1,0,0,0,6904,6905,5,138,0,0,6905,6906,5,278,0,0,6906,6907, - 5,206,0,0,6907,6908,3,558,279,0,6908,6909,5,100,0,0,6909,6910,3, - 1438,719,0,6910,6911,5,309,0,0,6911,6912,5,94,0,0,6912,6913,3,1438, - 719,0,6913,7209,1,0,0,0,6914,6915,5,138,0,0,6915,6917,5,445,0,0, - 6916,6918,3,748,374,0,6917,6916,1,0,0,0,6917,6918,1,0,0,0,6918,6919, - 1,0,0,0,6919,6920,3,1438,719,0,6920,6921,5,80,0,0,6921,6922,3,1414, - 707,0,6922,6923,5,309,0,0,6923,6924,5,94,0,0,6924,6925,3,1438,719, - 0,6925,7209,1,0,0,0,6926,6927,5,138,0,0,6927,6928,5,296,0,0,6928, - 6929,3,670,335,0,6929,6930,5,309,0,0,6930,6931,5,94,0,0,6931,6932, - 3,1432,716,0,6932,7209,1,0,0,0,6933,6934,5,138,0,0,6934,6935,5,452, - 0,0,6935,6936,3,1438,719,0,6936,6937,5,309,0,0,6937,6938,5,94,0, - 0,6938,6939,3,1438,719,0,6939,7209,1,0,0,0,6940,6941,5,138,0,0,6941, - 6942,5,442,0,0,6942,6943,3,666,333,0,6943,6944,5,309,0,0,6944,6945, - 5,94,0,0,6945,6946,3,1438,719,0,6946,7209,1,0,0,0,6947,6948,5,138, - 0,0,6948,6949,5,323,0,0,6949,6950,3,1424,712,0,6950,6951,5,309,0, - 0,6951,6952,5,94,0,0,6952,6953,3,48,24,0,6953,7209,1,0,0,0,6954, - 6955,5,138,0,0,6955,6956,5,331,0,0,6956,6957,3,1438,719,0,6957,6958, - 5,309,0,0,6958,6959,5,94,0,0,6959,6960,3,1438,719,0,6960,7209,1, - 0,0,0,6961,6962,5,138,0,0,6962,6963,5,451,0,0,6963,6964,3,1438,719, - 0,6964,6965,5,309,0,0,6965,6966,5,94,0,0,6966,6967,3,1438,719,0, - 6967,7209,1,0,0,0,6968,6969,5,138,0,0,6969,6971,5,92,0,0,6970,6972, - 3,748,374,0,6971,6970,1,0,0,0,6971,6972,1,0,0,0,6972,6973,1,0,0, - 0,6973,6974,3,1120,560,0,6974,6975,5,309,0,0,6975,6976,5,94,0,0, - 6976,6977,3,1406,703,0,6977,7209,1,0,0,0,6978,6979,5,138,0,0,6979, - 6981,5,328,0,0,6980,6982,3,748,374,0,6981,6980,1,0,0,0,6981,6982, - 1,0,0,0,6982,6983,1,0,0,0,6983,6984,3,1414,707,0,6984,6985,5,309, - 0,0,6985,6986,5,94,0,0,6986,6987,3,1438,719,0,6987,7209,1,0,0,0, - 6988,6989,5,138,0,0,6989,6991,5,376,0,0,6990,6992,3,748,374,0,6991, - 6990,1,0,0,0,6991,6992,1,0,0,0,6992,6993,1,0,0,0,6993,6994,3,1412, - 706,0,6994,6995,5,309,0,0,6995,6996,5,94,0,0,6996,6997,3,1410,705, - 0,6997,7209,1,0,0,0,6998,6999,5,138,0,0,6999,7000,5,259,0,0,7000, - 7002,5,376,0,0,7001,7003,3,748,374,0,7002,7001,1,0,0,0,7002,7003, - 1,0,0,0,7003,7004,1,0,0,0,7004,7005,3,1412,706,0,7005,7006,5,309, - 0,0,7006,7007,5,94,0,0,7007,7008,3,1410,705,0,7008,7209,1,0,0,0, - 7009,7010,5,138,0,0,7010,7012,5,226,0,0,7011,7013,3,748,374,0,7012, - 7011,1,0,0,0,7012,7013,1,0,0,0,7013,7014,1,0,0,0,7014,7015,3,1414, - 707,0,7015,7016,5,309,0,0,7016,7017,5,94,0,0,7017,7018,3,1438,719, - 0,7018,7209,1,0,0,0,7019,7020,5,138,0,0,7020,7021,5,63,0,0,7021, - 7023,5,92,0,0,7022,7024,3,748,374,0,7023,7022,1,0,0,0,7023,7024, - 1,0,0,0,7024,7025,1,0,0,0,7025,7026,3,1120,560,0,7026,7027,5,309, - 0,0,7027,7028,5,94,0,0,7028,7029,3,1406,703,0,7029,7209,1,0,0,0, - 7030,7031,5,138,0,0,7031,7033,5,92,0,0,7032,7034,3,748,374,0,7033, - 7032,1,0,0,0,7033,7034,1,0,0,0,7034,7035,1,0,0,0,7035,7036,3,1120, - 560,0,7036,7038,5,309,0,0,7037,7039,3,768,384,0,7038,7037,1,0,0, - 0,7038,7039,1,0,0,0,7039,7040,1,0,0,0,7040,7041,3,1434,717,0,7041, - 7042,5,94,0,0,7042,7043,3,1436,718,0,7043,7209,1,0,0,0,7044,7045, - 5,138,0,0,7045,7047,5,376,0,0,7046,7048,3,748,374,0,7047,7046,1, - 0,0,0,7047,7048,1,0,0,0,7048,7049,1,0,0,0,7049,7050,3,1412,706,0, - 7050,7052,5,309,0,0,7051,7053,3,768,384,0,7052,7051,1,0,0,0,7052, - 7053,1,0,0,0,7053,7054,1,0,0,0,7054,7055,3,1434,717,0,7055,7056, - 5,94,0,0,7056,7057,3,1436,718,0,7057,7209,1,0,0,0,7058,7059,5,138, - 0,0,7059,7060,5,259,0,0,7060,7062,5,376,0,0,7061,7063,3,748,374, - 0,7062,7061,1,0,0,0,7062,7063,1,0,0,0,7063,7064,1,0,0,0,7064,7065, - 3,1412,706,0,7065,7067,5,309,0,0,7066,7068,3,768,384,0,7067,7066, - 1,0,0,0,7067,7068,1,0,0,0,7068,7069,1,0,0,0,7069,7070,3,1434,717, - 0,7070,7071,5,94,0,0,7071,7072,3,1436,718,0,7072,7209,1,0,0,0,7073, - 7074,5,138,0,0,7074,7076,5,92,0,0,7075,7077,3,748,374,0,7076,7075, - 1,0,0,0,7076,7077,1,0,0,0,7077,7078,1,0,0,0,7078,7079,3,1120,560, - 0,7079,7080,5,309,0,0,7080,7081,5,45,0,0,7081,7082,3,1438,719,0, - 7082,7083,5,94,0,0,7083,7084,3,1438,719,0,7084,7209,1,0,0,0,7085, - 7086,5,138,0,0,7086,7087,5,63,0,0,7087,7089,5,92,0,0,7088,7090,3, - 748,374,0,7089,7088,1,0,0,0,7089,7090,1,0,0,0,7090,7091,1,0,0,0, - 7091,7092,3,1120,560,0,7092,7094,5,309,0,0,7093,7095,3,768,384,0, - 7094,7093,1,0,0,0,7094,7095,1,0,0,0,7095,7096,1,0,0,0,7096,7097, - 3,1434,717,0,7097,7098,5,94,0,0,7098,7099,3,1436,718,0,7099,7209, - 1,0,0,0,7100,7101,5,138,0,0,7101,7102,5,321,0,0,7102,7103,3,1438, - 719,0,7103,7104,5,80,0,0,7104,7105,3,1414,707,0,7105,7106,5,309, - 0,0,7106,7107,5,94,0,0,7107,7108,3,1438,719,0,7108,7209,1,0,0,0, - 7109,7110,5,138,0,0,7110,7111,5,357,0,0,7111,7112,3,1438,719,0,7112, - 7113,5,80,0,0,7113,7114,3,1414,707,0,7114,7115,5,309,0,0,7115,7116, - 5,94,0,0,7116,7117,3,1438,719,0,7117,7209,1,0,0,0,7118,7119,5,138, - 0,0,7119,7120,5,198,0,0,7120,7121,5,357,0,0,7121,7122,3,1438,719, - 0,7122,7123,5,309,0,0,7123,7124,5,94,0,0,7124,7125,3,1438,719,0, - 7125,7209,1,0,0,0,7126,7127,5,138,0,0,7127,7128,5,318,0,0,7128,7129, - 3,1470,735,0,7129,7130,5,309,0,0,7130,7131,5,94,0,0,7131,7132,3, - 1470,735,0,7132,7209,1,0,0,0,7133,7134,5,138,0,0,7134,7135,5,99, - 0,0,7135,7136,3,1470,735,0,7136,7137,5,309,0,0,7137,7138,5,94,0, - 0,7138,7139,3,1470,735,0,7139,7209,1,0,0,0,7140,7141,5,138,0,0,7141, - 7142,5,351,0,0,7142,7143,3,1404,702,0,7143,7144,5,309,0,0,7144,7145, - 5,94,0,0,7145,7146,3,1402,701,0,7146,7209,1,0,0,0,7147,7148,5,138, - 0,0,7148,7149,5,342,0,0,7149,7150,3,558,279,0,7150,7151,5,309,0, - 0,7151,7152,5,94,0,0,7152,7153,3,1438,719,0,7153,7209,1,0,0,0,7154, - 7155,5,138,0,0,7155,7156,5,355,0,0,7156,7157,5,325,0,0,7157,7158, - 5,283,0,0,7158,7159,3,558,279,0,7159,7160,5,309,0,0,7160,7161,5, - 94,0,0,7161,7162,3,1438,719,0,7162,7209,1,0,0,0,7163,7164,5,138, - 0,0,7164,7165,5,355,0,0,7165,7166,5,325,0,0,7166,7167,5,185,0,0, - 7167,7168,3,558,279,0,7168,7169,5,309,0,0,7169,7170,5,94,0,0,7170, - 7171,3,1438,719,0,7171,7209,1,0,0,0,7172,7173,5,138,0,0,7173,7174, - 5,355,0,0,7174,7175,5,325,0,0,7175,7176,5,353,0,0,7176,7177,3,558, - 279,0,7177,7178,5,309,0,0,7178,7179,5,94,0,0,7179,7180,3,1438,719, - 0,7180,7209,1,0,0,0,7181,7182,5,138,0,0,7182,7183,5,355,0,0,7183, - 7184,5,325,0,0,7184,7185,5,163,0,0,7185,7186,3,558,279,0,7186,7187, - 5,309,0,0,7187,7188,5,94,0,0,7188,7189,3,1438,719,0,7189,7209,1, - 0,0,0,7190,7191,5,138,0,0,7191,7192,5,360,0,0,7192,7193,3,558,279, - 0,7193,7194,5,309,0,0,7194,7195,5,94,0,0,7195,7196,3,1438,719,0, - 7196,7209,1,0,0,0,7197,7198,5,138,0,0,7198,7199,5,360,0,0,7199,7200, - 3,558,279,0,7200,7201,5,309,0,0,7201,7202,5,143,0,0,7202,7203,3, - 1438,719,0,7203,7204,5,94,0,0,7204,7206,3,1438,719,0,7205,7207,3, - 124,62,0,7206,7205,1,0,0,0,7206,7207,1,0,0,0,7207,7209,1,0,0,0,7208, - 6817,1,0,0,0,7208,6824,1,0,0,0,7208,6831,1,0,0,0,7208,6838,1,0,0, - 0,7208,6845,1,0,0,0,7208,6852,1,0,0,0,7208,6861,1,0,0,0,7208,6870, - 1,0,0,0,7208,6877,1,0,0,0,7208,6884,1,0,0,0,7208,6894,1,0,0,0,7208, - 6904,1,0,0,0,7208,6914,1,0,0,0,7208,6926,1,0,0,0,7208,6933,1,0,0, - 0,7208,6940,1,0,0,0,7208,6947,1,0,0,0,7208,6954,1,0,0,0,7208,6961, - 1,0,0,0,7208,6968,1,0,0,0,7208,6978,1,0,0,0,7208,6988,1,0,0,0,7208, - 6998,1,0,0,0,7208,7009,1,0,0,0,7208,7019,1,0,0,0,7208,7030,1,0,0, - 0,7208,7044,1,0,0,0,7208,7058,1,0,0,0,7208,7073,1,0,0,0,7208,7085, - 1,0,0,0,7208,7100,1,0,0,0,7208,7109,1,0,0,0,7208,7118,1,0,0,0,7208, - 7126,1,0,0,0,7208,7133,1,0,0,0,7208,7140,1,0,0,0,7208,7147,1,0,0, - 0,7208,7154,1,0,0,0,7208,7163,1,0,0,0,7208,7172,1,0,0,0,7208,7181, - 1,0,0,0,7208,7190,1,0,0,0,7208,7197,1,0,0,0,7209,767,1,0,0,0,7210, - 7211,5,44,0,0,7211,769,1,0,0,0,7212,7213,5,333,0,0,7213,7214,5,174, - 0,0,7214,771,1,0,0,0,7215,7216,5,138,0,0,7216,7217,5,211,0,0,7217, - 7219,3,674,337,0,7218,7220,3,774,387,0,7219,7218,1,0,0,0,7219,7220, - 1,0,0,0,7220,7221,1,0,0,0,7221,7222,5,462,0,0,7222,7223,5,80,0,0, - 7223,7224,5,204,0,0,7224,7225,3,1438,719,0,7225,7285,1,0,0,0,7226, - 7227,5,138,0,0,7227,7228,5,296,0,0,7228,7230,3,670,335,0,7229,7231, - 3,774,387,0,7230,7229,1,0,0,0,7230,7231,1,0,0,0,7231,7232,1,0,0, - 0,7232,7233,5,462,0,0,7233,7234,5,80,0,0,7234,7235,5,204,0,0,7235, - 7236,3,1438,719,0,7236,7285,1,0,0,0,7237,7238,5,138,0,0,7238,7239, - 5,442,0,0,7239,7241,3,666,333,0,7240,7242,3,774,387,0,7241,7240, - 1,0,0,0,7241,7242,1,0,0,0,7242,7243,1,0,0,0,7243,7244,5,462,0,0, - 7244,7245,5,80,0,0,7245,7246,5,204,0,0,7246,7247,3,1438,719,0,7247, - 7285,1,0,0,0,7248,7249,5,138,0,0,7249,7250,5,357,0,0,7250,7251,3, - 1438,719,0,7251,7252,5,80,0,0,7252,7254,3,1414,707,0,7253,7255,3, - 774,387,0,7254,7253,1,0,0,0,7254,7255,1,0,0,0,7255,7256,1,0,0,0, - 7256,7257,5,462,0,0,7257,7258,5,80,0,0,7258,7259,5,204,0,0,7259, - 7260,3,1438,719,0,7260,7285,1,0,0,0,7261,7262,5,138,0,0,7262,7263, - 5,259,0,0,7263,7264,5,376,0,0,7264,7266,3,1412,706,0,7265,7267,3, - 774,387,0,7266,7265,1,0,0,0,7266,7267,1,0,0,0,7267,7268,1,0,0,0, - 7268,7269,5,462,0,0,7269,7270,5,80,0,0,7270,7271,5,204,0,0,7271, - 7272,3,1438,719,0,7272,7285,1,0,0,0,7273,7274,5,138,0,0,7274,7275, - 5,226,0,0,7275,7277,3,1414,707,0,7276,7278,3,774,387,0,7277,7276, - 1,0,0,0,7277,7278,1,0,0,0,7278,7279,1,0,0,0,7279,7280,5,462,0,0, - 7280,7281,5,80,0,0,7281,7282,5,204,0,0,7282,7283,3,1438,719,0,7283, - 7285,1,0,0,0,7284,7215,1,0,0,0,7284,7226,1,0,0,0,7284,7237,1,0,0, - 0,7284,7248,1,0,0,0,7284,7261,1,0,0,0,7284,7273,1,0,0,0,7285,773, - 1,0,0,0,7286,7287,5,269,0,0,7287,775,1,0,0,0,7288,7289,5,138,0,0, - 7289,7290,5,136,0,0,7290,7291,3,698,349,0,7291,7292,5,333,0,0,7292, - 7293,5,323,0,0,7293,7294,3,48,24,0,7294,7474,1,0,0,0,7295,7296,5, - 138,0,0,7296,7297,5,108,0,0,7297,7298,3,558,279,0,7298,7299,5,333, - 0,0,7299,7300,5,323,0,0,7300,7301,3,48,24,0,7301,7474,1,0,0,0,7302, - 7303,5,138,0,0,7303,7304,5,168,0,0,7304,7305,3,558,279,0,7305,7306, - 5,333,0,0,7306,7307,5,323,0,0,7307,7308,3,48,24,0,7308,7474,1,0, - 0,0,7309,7310,5,138,0,0,7310,7311,5,189,0,0,7311,7312,3,558,279, - 0,7312,7313,5,333,0,0,7313,7314,5,323,0,0,7314,7315,3,48,24,0,7315, - 7474,1,0,0,0,7316,7317,5,138,0,0,7317,7318,5,204,0,0,7318,7319,3, - 1438,719,0,7319,7320,5,333,0,0,7320,7321,5,323,0,0,7321,7322,3,48, - 24,0,7322,7474,1,0,0,0,7323,7324,5,138,0,0,7324,7325,5,211,0,0,7325, - 7326,3,674,337,0,7326,7327,5,333,0,0,7327,7328,5,323,0,0,7328,7329, - 3,48,24,0,7329,7474,1,0,0,0,7330,7331,5,138,0,0,7331,7332,5,278, - 0,0,7332,7333,3,736,368,0,7333,7334,5,333,0,0,7334,7335,5,323,0, - 0,7335,7336,3,48,24,0,7336,7474,1,0,0,0,7337,7338,5,138,0,0,7338, - 7339,5,278,0,0,7339,7340,5,156,0,0,7340,7341,3,558,279,0,7341,7342, - 5,100,0,0,7342,7343,3,1438,719,0,7343,7344,5,333,0,0,7344,7345,5, - 323,0,0,7345,7346,3,48,24,0,7346,7474,1,0,0,0,7347,7348,5,138,0, - 0,7348,7349,5,278,0,0,7349,7350,5,206,0,0,7350,7351,3,558,279,0, - 7351,7352,5,100,0,0,7352,7353,3,1438,719,0,7353,7354,5,333,0,0,7354, - 7355,5,323,0,0,7355,7356,3,48,24,0,7356,7474,1,0,0,0,7357,7358,5, - 138,0,0,7358,7359,5,296,0,0,7359,7360,3,670,335,0,7360,7361,5,333, - 0,0,7361,7362,5,323,0,0,7362,7363,3,48,24,0,7363,7474,1,0,0,0,7364, - 7365,5,138,0,0,7365,7366,5,442,0,0,7366,7367,3,666,333,0,7367,7368, - 5,333,0,0,7368,7369,5,323,0,0,7369,7370,3,48,24,0,7370,7474,1,0, - 0,0,7371,7372,5,138,0,0,7372,7374,5,92,0,0,7373,7375,3,748,374,0, - 7374,7373,1,0,0,0,7374,7375,1,0,0,0,7375,7376,1,0,0,0,7376,7377, - 3,1120,560,0,7377,7378,5,333,0,0,7378,7379,5,323,0,0,7379,7380,3, - 48,24,0,7380,7474,1,0,0,0,7381,7382,5,138,0,0,7382,7383,5,342,0, - 0,7383,7384,3,558,279,0,7384,7385,5,333,0,0,7385,7386,5,323,0,0, - 7386,7387,3,48,24,0,7387,7474,1,0,0,0,7388,7389,5,138,0,0,7389,7390, - 5,355,0,0,7390,7391,5,325,0,0,7391,7392,5,283,0,0,7392,7393,3,558, - 279,0,7393,7394,5,333,0,0,7394,7395,5,323,0,0,7395,7396,3,48,24, - 0,7396,7474,1,0,0,0,7397,7398,5,138,0,0,7398,7399,5,355,0,0,7399, - 7400,5,325,0,0,7400,7401,5,185,0,0,7401,7402,3,558,279,0,7402,7403, - 5,333,0,0,7403,7404,5,323,0,0,7404,7405,3,48,24,0,7405,7474,1,0, - 0,0,7406,7407,5,138,0,0,7407,7408,5,355,0,0,7408,7409,5,325,0,0, - 7409,7410,5,353,0,0,7410,7411,3,558,279,0,7411,7412,5,333,0,0,7412, - 7413,5,323,0,0,7413,7414,3,48,24,0,7414,7474,1,0,0,0,7415,7416,5, - 138,0,0,7416,7417,5,355,0,0,7417,7418,5,325,0,0,7418,7419,5,163, - 0,0,7419,7420,3,558,279,0,7420,7421,5,333,0,0,7421,7422,5,323,0, - 0,7422,7423,3,48,24,0,7423,7474,1,0,0,0,7424,7425,5,138,0,0,7425, - 7427,5,328,0,0,7426,7428,3,748,374,0,7427,7426,1,0,0,0,7427,7428, - 1,0,0,0,7428,7429,1,0,0,0,7429,7430,3,1414,707,0,7430,7431,5,333, - 0,0,7431,7432,5,323,0,0,7432,7433,3,48,24,0,7433,7474,1,0,0,0,7434, - 7435,5,138,0,0,7435,7437,5,376,0,0,7436,7438,3,748,374,0,7437,7436, - 1,0,0,0,7437,7438,1,0,0,0,7438,7439,1,0,0,0,7439,7440,3,1412,706, - 0,7440,7441,5,333,0,0,7441,7442,5,323,0,0,7442,7443,3,48,24,0,7443, - 7474,1,0,0,0,7444,7445,5,138,0,0,7445,7446,5,259,0,0,7446,7448,5, - 376,0,0,7447,7449,3,748,374,0,7448,7447,1,0,0,0,7448,7449,1,0,0, - 0,7449,7450,1,0,0,0,7450,7451,3,1412,706,0,7451,7452,5,333,0,0,7452, - 7453,5,323,0,0,7453,7454,3,48,24,0,7454,7474,1,0,0,0,7455,7456,5, - 138,0,0,7456,7457,5,63,0,0,7457,7459,5,92,0,0,7458,7460,3,748,374, - 0,7459,7458,1,0,0,0,7459,7460,1,0,0,0,7460,7461,1,0,0,0,7461,7462, - 3,1120,560,0,7462,7463,5,333,0,0,7463,7464,5,323,0,0,7464,7465,3, - 48,24,0,7465,7474,1,0,0,0,7466,7467,5,138,0,0,7467,7468,5,360,0, - 0,7468,7469,3,558,279,0,7469,7470,5,333,0,0,7470,7471,5,323,0,0, - 7471,7472,3,48,24,0,7472,7474,1,0,0,0,7473,7288,1,0,0,0,7473,7295, - 1,0,0,0,7473,7302,1,0,0,0,7473,7309,1,0,0,0,7473,7316,1,0,0,0,7473, - 7323,1,0,0,0,7473,7330,1,0,0,0,7473,7337,1,0,0,0,7473,7347,1,0,0, - 0,7473,7357,1,0,0,0,7473,7364,1,0,0,0,7473,7371,1,0,0,0,7473,7381, - 1,0,0,0,7473,7388,1,0,0,0,7473,7397,1,0,0,0,7473,7406,1,0,0,0,7473, - 7415,1,0,0,0,7473,7424,1,0,0,0,7473,7434,1,0,0,0,7473,7444,1,0,0, - 0,7473,7455,1,0,0,0,7473,7466,1,0,0,0,7474,777,1,0,0,0,7475,7476, - 5,138,0,0,7476,7477,5,278,0,0,7477,7478,3,736,368,0,7478,7479,5, - 333,0,0,7479,7480,5,2,0,0,7480,7481,3,780,390,0,7481,7482,5,3,0, - 0,7482,779,1,0,0,0,7483,7488,3,782,391,0,7484,7485,5,6,0,0,7485, - 7487,3,782,391,0,7486,7484,1,0,0,0,7487,7490,1,0,0,0,7488,7486,1, - 0,0,0,7488,7489,1,0,0,0,7489,781,1,0,0,0,7490,7488,1,0,0,0,7491, - 7492,3,1492,746,0,7492,7493,5,10,0,0,7493,7494,5,407,0,0,7494,7500, - 1,0,0,0,7495,7496,3,1492,746,0,7496,7497,5,10,0,0,7497,7498,3,784, - 392,0,7498,7500,1,0,0,0,7499,7491,1,0,0,0,7499,7495,1,0,0,0,7500, - 783,1,0,0,0,7501,7507,3,688,344,0,7502,7507,3,1504,752,0,7503,7507, - 3,1326,663,0,7504,7507,3,320,160,0,7505,7507,3,1460,730,0,7506,7501, - 1,0,0,0,7506,7502,1,0,0,0,7506,7503,1,0,0,0,7506,7504,1,0,0,0,7506, - 7505,1,0,0,0,7507,785,1,0,0,0,7508,7509,5,138,0,0,7509,7510,5,360, - 0,0,7510,7511,3,558,279,0,7511,7512,5,333,0,0,7512,7513,5,2,0,0, - 7513,7514,3,780,390,0,7514,7515,5,3,0,0,7515,787,1,0,0,0,7516,7517, - 5,138,0,0,7517,7518,5,136,0,0,7518,7519,3,698,349,0,7519,7520,5, - 282,0,0,7520,7521,5,94,0,0,7521,7522,3,1472,736,0,7522,7702,1,0, - 0,0,7523,7524,5,138,0,0,7524,7525,5,108,0,0,7525,7526,3,558,279, - 0,7526,7527,5,282,0,0,7527,7528,5,94,0,0,7528,7529,3,1472,736,0, - 7529,7702,1,0,0,0,7530,7531,5,138,0,0,7531,7532,5,168,0,0,7532,7533, - 3,558,279,0,7533,7534,5,282,0,0,7534,7535,5,94,0,0,7535,7536,3,1472, - 736,0,7536,7702,1,0,0,0,7537,7538,5,138,0,0,7538,7539,5,175,0,0, - 7539,7540,3,1422,711,0,7540,7541,5,282,0,0,7541,7542,5,94,0,0,7542, - 7543,3,1472,736,0,7543,7702,1,0,0,0,7544,7545,5,138,0,0,7545,7546, - 5,189,0,0,7546,7547,3,558,279,0,7547,7548,5,282,0,0,7548,7549,5, - 94,0,0,7549,7550,3,1472,736,0,7550,7702,1,0,0,0,7551,7552,5,138, - 0,0,7552,7553,5,211,0,0,7553,7554,3,674,337,0,7554,7555,5,282,0, - 0,7555,7556,5,94,0,0,7556,7557,3,1472,736,0,7557,7702,1,0,0,0,7558, - 7560,5,138,0,0,7559,7561,3,336,168,0,7560,7559,1,0,0,0,7560,7561, - 1,0,0,0,7561,7562,1,0,0,0,7562,7563,5,247,0,0,7563,7564,3,1438,719, - 0,7564,7565,5,282,0,0,7565,7566,5,94,0,0,7566,7567,3,1472,736,0, - 7567,7702,1,0,0,0,7568,7569,5,138,0,0,7569,7570,5,248,0,0,7570,7571, - 5,274,0,0,7571,7572,3,320,160,0,7572,7573,5,282,0,0,7573,7574,5, - 94,0,0,7574,7575,3,1472,736,0,7575,7702,1,0,0,0,7576,7577,5,138, - 0,0,7577,7578,5,278,0,0,7578,7579,3,736,368,0,7579,7580,5,282,0, - 0,7580,7581,5,94,0,0,7581,7582,3,1472,736,0,7582,7702,1,0,0,0,7583, - 7584,5,138,0,0,7584,7585,5,278,0,0,7585,7586,5,156,0,0,7586,7587, - 3,558,279,0,7587,7588,5,100,0,0,7588,7589,3,1438,719,0,7589,7590, - 5,282,0,0,7590,7591,5,94,0,0,7591,7592,3,1472,736,0,7592,7702,1, - 0,0,0,7593,7594,5,138,0,0,7594,7595,5,278,0,0,7595,7596,5,206,0, - 0,7596,7597,3,558,279,0,7597,7598,5,100,0,0,7598,7599,3,1438,719, - 0,7599,7600,5,282,0,0,7600,7601,5,94,0,0,7601,7602,3,1472,736,0, - 7602,7702,1,0,0,0,7603,7604,5,138,0,0,7604,7605,5,296,0,0,7605,7606, - 3,670,335,0,7606,7607,5,282,0,0,7607,7608,5,94,0,0,7608,7609,3,1472, - 736,0,7609,7702,1,0,0,0,7610,7611,5,138,0,0,7611,7612,5,442,0,0, - 7612,7613,3,666,333,0,7613,7614,5,282,0,0,7614,7615,5,94,0,0,7615, - 7616,3,1472,736,0,7616,7702,1,0,0,0,7617,7618,5,138,0,0,7618,7619, - 5,323,0,0,7619,7620,3,1424,712,0,7620,7621,5,282,0,0,7621,7622,5, - 94,0,0,7622,7623,3,1472,736,0,7623,7702,1,0,0,0,7624,7625,5,138, - 0,0,7625,7626,5,360,0,0,7626,7627,3,558,279,0,7627,7628,5,282,0, - 0,7628,7629,5,94,0,0,7629,7630,3,1472,736,0,7630,7702,1,0,0,0,7631, - 7632,5,138,0,0,7632,7633,5,351,0,0,7633,7634,3,1404,702,0,7634,7635, - 5,282,0,0,7635,7636,5,94,0,0,7636,7637,3,1472,736,0,7637,7702,1, - 0,0,0,7638,7639,5,138,0,0,7639,7640,5,342,0,0,7640,7641,3,558,279, - 0,7641,7642,5,282,0,0,7642,7643,5,94,0,0,7643,7644,3,1472,736,0, - 7644,7702,1,0,0,0,7645,7646,5,138,0,0,7646,7647,5,355,0,0,7647,7648, - 5,325,0,0,7648,7649,5,185,0,0,7649,7650,3,558,279,0,7650,7651,5, - 282,0,0,7651,7652,5,94,0,0,7652,7653,3,1472,736,0,7653,7702,1,0, - 0,0,7654,7655,5,138,0,0,7655,7656,5,355,0,0,7656,7657,5,325,0,0, - 7657,7658,5,163,0,0,7658,7659,3,558,279,0,7659,7660,5,282,0,0,7660, - 7661,5,94,0,0,7661,7662,3,1472,736,0,7662,7702,1,0,0,0,7663,7664, - 5,138,0,0,7664,7665,5,63,0,0,7665,7666,5,174,0,0,7666,7667,5,381, - 0,0,7667,7668,3,1438,719,0,7668,7669,5,282,0,0,7669,7670,5,94,0, - 0,7670,7671,3,1472,736,0,7671,7702,1,0,0,0,7672,7673,5,138,0,0,7673, - 7674,5,331,0,0,7674,7675,3,1438,719,0,7675,7676,5,282,0,0,7676,7677, - 5,94,0,0,7677,7678,3,1472,736,0,7678,7702,1,0,0,0,7679,7680,5,138, - 0,0,7680,7681,5,198,0,0,7681,7682,5,357,0,0,7682,7683,3,1438,719, - 0,7683,7684,5,282,0,0,7684,7685,5,94,0,0,7685,7686,3,1472,736,0, - 7686,7702,1,0,0,0,7687,7688,5,138,0,0,7688,7689,5,452,0,0,7689,7690, - 3,1438,719,0,7690,7691,5,282,0,0,7691,7692,5,94,0,0,7692,7693,3, - 1472,736,0,7693,7702,1,0,0,0,7694,7695,5,138,0,0,7695,7696,5,451, - 0,0,7696,7697,3,1438,719,0,7697,7698,5,282,0,0,7698,7699,5,94,0, - 0,7699,7700,3,1472,736,0,7700,7702,1,0,0,0,7701,7516,1,0,0,0,7701, - 7523,1,0,0,0,7701,7530,1,0,0,0,7701,7537,1,0,0,0,7701,7544,1,0,0, - 0,7701,7551,1,0,0,0,7701,7558,1,0,0,0,7701,7568,1,0,0,0,7701,7576, - 1,0,0,0,7701,7583,1,0,0,0,7701,7593,1,0,0,0,7701,7603,1,0,0,0,7701, - 7610,1,0,0,0,7701,7617,1,0,0,0,7701,7624,1,0,0,0,7701,7631,1,0,0, - 0,7701,7638,1,0,0,0,7701,7645,1,0,0,0,7701,7654,1,0,0,0,7701,7663, - 1,0,0,0,7701,7672,1,0,0,0,7701,7679,1,0,0,0,7701,7687,1,0,0,0,7701, - 7694,1,0,0,0,7702,789,1,0,0,0,7703,7704,5,46,0,0,7704,7705,5,452, - 0,0,7705,7707,3,1438,719,0,7706,7708,3,792,396,0,7707,7706,1,0,0, - 0,7707,7708,1,0,0,0,7708,7710,1,0,0,0,7709,7711,3,710,355,0,7710, - 7709,1,0,0,0,7710,7711,1,0,0,0,7711,791,1,0,0,0,7712,7713,3,794, - 397,0,7713,793,1,0,0,0,7714,7715,5,62,0,0,7715,7716,5,92,0,0,7716, - 7721,3,1126,563,0,7717,7718,5,62,0,0,7718,7719,5,30,0,0,7719,7721, - 5,350,0,0,7720,7714,1,0,0,0,7720,7717,1,0,0,0,7721,795,1,0,0,0,7722, - 7723,5,138,0,0,7723,7724,5,452,0,0,7724,7725,3,1438,719,0,7725,7726, - 5,333,0,0,7726,7727,3,494,247,0,7727,7761,1,0,0,0,7728,7729,5,138, - 0,0,7729,7730,5,452,0,0,7730,7731,3,1438,719,0,7731,7732,5,133,0, - 0,7732,7733,3,1128,564,0,7733,7761,1,0,0,0,7734,7735,5,138,0,0,7735, - 7736,5,452,0,0,7736,7737,3,1438,719,0,7737,7738,5,333,0,0,7738,7739, - 3,1128,564,0,7739,7761,1,0,0,0,7740,7741,5,138,0,0,7741,7742,5,452, - 0,0,7742,7743,3,1438,719,0,7743,7744,5,191,0,0,7744,7745,3,1128, - 564,0,7745,7761,1,0,0,0,7746,7747,5,138,0,0,7747,7748,5,452,0,0, - 7748,7749,3,1438,719,0,7749,7750,5,282,0,0,7750,7751,5,94,0,0,7751, - 7752,3,1472,736,0,7752,7761,1,0,0,0,7753,7754,5,138,0,0,7754,7755, - 5,452,0,0,7755,7756,3,1438,719,0,7756,7757,5,309,0,0,7757,7758,5, - 94,0,0,7758,7759,3,1438,719,0,7759,7761,1,0,0,0,7760,7722,1,0,0, - 0,7760,7728,1,0,0,0,7760,7734,1,0,0,0,7760,7740,1,0,0,0,7760,7746, - 1,0,0,0,7760,7753,1,0,0,0,7761,797,1,0,0,0,7762,7763,5,46,0,0,7763, - 7764,5,451,0,0,7764,7765,3,1438,719,0,7765,7766,5,164,0,0,7766,7767, - 3,1460,730,0,7767,7768,5,452,0,0,7768,7770,3,800,400,0,7769,7771, - 3,710,355,0,7770,7769,1,0,0,0,7770,7771,1,0,0,0,7771,799,1,0,0,0, - 7772,7777,3,802,401,0,7773,7774,5,6,0,0,7774,7776,3,802,401,0,7775, - 7773,1,0,0,0,7776,7779,1,0,0,0,7777,7775,1,0,0,0,7777,7778,1,0,0, - 0,7778,801,1,0,0,0,7779,7777,1,0,0,0,7780,7781,3,1492,746,0,7781, - 803,1,0,0,0,7782,7783,5,138,0,0,7783,7784,5,451,0,0,7784,7785,3, - 1438,719,0,7785,7786,5,333,0,0,7786,7787,3,494,247,0,7787,7861,1, - 0,0,0,7788,7789,5,138,0,0,7789,7790,5,451,0,0,7790,7791,3,1438,719, - 0,7791,7792,5,164,0,0,7792,7793,3,1460,730,0,7793,7861,1,0,0,0,7794, - 7795,5,138,0,0,7795,7796,5,451,0,0,7796,7797,3,1438,719,0,7797,7798, - 5,305,0,0,7798,7800,5,452,0,0,7799,7801,3,710,355,0,7800,7799,1, - 0,0,0,7800,7801,1,0,0,0,7801,7861,1,0,0,0,7802,7803,5,138,0,0,7803, - 7804,5,451,0,0,7804,7805,3,1438,719,0,7805,7806,5,333,0,0,7806,7807, - 5,452,0,0,7807,7809,3,800,400,0,7808,7810,3,710,355,0,7809,7808, - 1,0,0,0,7809,7810,1,0,0,0,7810,7861,1,0,0,0,7811,7812,5,138,0,0, - 7812,7813,5,451,0,0,7813,7814,3,1438,719,0,7814,7815,5,133,0,0,7815, - 7816,5,452,0,0,7816,7818,3,800,400,0,7817,7819,3,710,355,0,7818, - 7817,1,0,0,0,7818,7819,1,0,0,0,7819,7861,1,0,0,0,7820,7821,5,138, - 0,0,7821,7822,5,451,0,0,7822,7823,3,1438,719,0,7823,7824,5,191,0, - 0,7824,7825,5,452,0,0,7825,7827,3,800,400,0,7826,7828,3,710,355, - 0,7827,7826,1,0,0,0,7827,7828,1,0,0,0,7828,7861,1,0,0,0,7829,7830, - 5,138,0,0,7830,7831,5,451,0,0,7831,7832,3,1438,719,0,7832,7833,5, - 193,0,0,7833,7861,1,0,0,0,7834,7835,5,138,0,0,7835,7836,5,451,0, - 0,7836,7837,3,1438,719,0,7837,7838,5,186,0,0,7838,7861,1,0,0,0,7839, - 7840,5,138,0,0,7840,7841,5,451,0,0,7841,7842,3,1438,719,0,7842,7843, - 5,333,0,0,7843,7844,3,494,247,0,7844,7861,1,0,0,0,7845,7846,5,138, - 0,0,7846,7847,5,451,0,0,7847,7848,3,1438,719,0,7848,7849,5,465,0, - 0,7849,7850,5,2,0,0,7850,7851,3,506,253,0,7851,7852,5,3,0,0,7852, - 7861,1,0,0,0,7853,7854,5,138,0,0,7854,7855,5,451,0,0,7855,7856,3, - 1438,719,0,7856,7857,5,282,0,0,7857,7858,5,94,0,0,7858,7859,3,1472, - 736,0,7859,7861,1,0,0,0,7860,7782,1,0,0,0,7860,7788,1,0,0,0,7860, - 7794,1,0,0,0,7860,7802,1,0,0,0,7860,7811,1,0,0,0,7860,7820,1,0,0, - 0,7860,7829,1,0,0,0,7860,7834,1,0,0,0,7860,7839,1,0,0,0,7860,7845, - 1,0,0,0,7860,7853,1,0,0,0,7861,805,1,0,0,0,7862,7864,5,46,0,0,7863, - 7865,3,658,329,0,7864,7863,1,0,0,0,7864,7865,1,0,0,0,7865,7866,1, - 0,0,0,7866,7867,5,321,0,0,7867,7868,3,1438,719,0,7868,7869,5,36, - 0,0,7869,7870,5,80,0,0,7870,7871,3,816,408,0,7871,7872,5,94,0,0, - 7872,7874,3,1414,707,0,7873,7875,3,1146,573,0,7874,7873,1,0,0,0, - 7874,7875,1,0,0,0,7875,7876,1,0,0,0,7876,7878,5,57,0,0,7877,7879, - 3,818,409,0,7878,7877,1,0,0,0,7878,7879,1,0,0,0,7879,7880,1,0,0, - 0,7880,7881,3,808,404,0,7881,807,1,0,0,0,7882,7889,5,270,0,0,7883, - 7889,3,812,406,0,7884,7885,5,2,0,0,7885,7886,3,810,405,0,7886,7887, - 5,3,0,0,7887,7889,1,0,0,0,7888,7882,1,0,0,0,7888,7883,1,0,0,0,7888, - 7884,1,0,0,0,7889,809,1,0,0,0,7890,7892,3,814,407,0,7891,7890,1, - 0,0,0,7891,7892,1,0,0,0,7892,7899,1,0,0,0,7893,7895,5,7,0,0,7894, - 7896,3,814,407,0,7895,7894,1,0,0,0,7895,7896,1,0,0,0,7896,7898,1, - 0,0,0,7897,7893,1,0,0,0,7898,7901,1,0,0,0,7899,7897,1,0,0,0,7899, - 7900,1,0,0,0,7900,811,1,0,0,0,7901,7899,1,0,0,0,7902,7908,3,1002, - 501,0,7903,7908,3,952,476,0,7904,7908,3,984,492,0,7905,7908,3,970, - 485,0,7906,7908,3,820,410,0,7907,7902,1,0,0,0,7907,7903,1,0,0,0, - 7907,7904,1,0,0,0,7907,7905,1,0,0,0,7907,7906,1,0,0,0,7908,813,1, - 0,0,0,7909,7910,3,812,406,0,7910,815,1,0,0,0,7911,7912,7,40,0,0, - 7912,817,1,0,0,0,7913,7914,7,41,0,0,7914,819,1,0,0,0,7915,7916,5, - 271,0,0,7916,7918,3,1476,738,0,7917,7919,3,822,411,0,7918,7917,1, - 0,0,0,7918,7919,1,0,0,0,7919,821,1,0,0,0,7920,7921,5,6,0,0,7921, - 7922,3,1460,730,0,7922,823,1,0,0,0,7923,7924,5,252,0,0,7924,7925, - 3,1476,738,0,7925,825,1,0,0,0,7926,7927,5,366,0,0,7927,7931,3,1476, - 738,0,7928,7929,5,366,0,0,7929,7931,5,9,0,0,7930,7926,1,0,0,0,7930, - 7928,1,0,0,0,7931,827,1,0,0,0,7932,7934,5,129,0,0,7933,7935,3,830, - 415,0,7934,7933,1,0,0,0,7934,7935,1,0,0,0,7935,7937,1,0,0,0,7936, - 7938,3,838,419,0,7937,7936,1,0,0,0,7937,7938,1,0,0,0,7938,8002,1, - 0,0,0,7939,7941,5,146,0,0,7940,7942,3,830,415,0,7941,7940,1,0,0, - 0,7941,7942,1,0,0,0,7942,7944,1,0,0,0,7943,7945,3,836,418,0,7944, - 7943,1,0,0,0,7944,7945,1,0,0,0,7945,8002,1,0,0,0,7946,7947,5,340, - 0,0,7947,7949,5,356,0,0,7948,7950,3,836,418,0,7949,7948,1,0,0,0, - 7949,7950,1,0,0,0,7950,8002,1,0,0,0,7951,7953,5,161,0,0,7952,7954, - 3,830,415,0,7953,7952,1,0,0,0,7953,7954,1,0,0,0,7954,7956,1,0,0, - 0,7955,7957,3,838,419,0,7956,7955,1,0,0,0,7956,7957,1,0,0,0,7957, - 8002,1,0,0,0,7958,7960,5,454,0,0,7959,7961,3,830,415,0,7960,7959, - 1,0,0,0,7960,7961,1,0,0,0,7961,7963,1,0,0,0,7962,7964,3,838,419, - 0,7963,7962,1,0,0,0,7963,7964,1,0,0,0,7964,8002,1,0,0,0,7965,7967, - 5,319,0,0,7966,7968,3,830,415,0,7967,7966,1,0,0,0,7967,7968,1,0, - 0,0,7968,7970,1,0,0,0,7969,7971,3,838,419,0,7970,7969,1,0,0,0,7970, - 7971,1,0,0,0,7971,8002,1,0,0,0,7972,7973,5,322,0,0,7973,8002,3,1476, - 738,0,7974,7975,5,308,0,0,7975,7976,5,322,0,0,7976,8002,3,1476,738, - 0,7977,7978,5,308,0,0,7978,8002,3,1476,738,0,7979,7981,5,319,0,0, - 7980,7982,3,830,415,0,7981,7980,1,0,0,0,7981,7982,1,0,0,0,7982,7983, - 1,0,0,0,7983,7984,5,94,0,0,7984,7985,5,322,0,0,7985,8002,3,1476, - 738,0,7986,7988,5,319,0,0,7987,7989,3,830,415,0,7988,7987,1,0,0, - 0,7988,7989,1,0,0,0,7989,7990,1,0,0,0,7990,7991,5,94,0,0,7991,8002, - 3,1476,738,0,7992,7993,5,290,0,0,7993,7994,5,356,0,0,7994,8002,3, - 1460,730,0,7995,7996,5,161,0,0,7996,7997,5,291,0,0,7997,8002,3,1460, - 730,0,7998,7999,5,319,0,0,7999,8000,5,291,0,0,8000,8002,3,1460,730, - 0,8001,7932,1,0,0,0,8001,7939,1,0,0,0,8001,7946,1,0,0,0,8001,7951, - 1,0,0,0,8001,7958,1,0,0,0,8001,7965,1,0,0,0,8001,7972,1,0,0,0,8001, - 7974,1,0,0,0,8001,7977,1,0,0,0,8001,7979,1,0,0,0,8001,7986,1,0,0, - 0,8001,7992,1,0,0,0,8001,7995,1,0,0,0,8001,7998,1,0,0,0,8002,829, - 1,0,0,0,8003,8004,7,42,0,0,8004,831,1,0,0,0,8005,8006,5,244,0,0, - 8006,8007,5,251,0,0,8007,8016,3,68,34,0,8008,8009,5,300,0,0,8009, - 8016,5,81,0,0,8010,8011,5,300,0,0,8011,8016,5,382,0,0,8012,8016, - 5,54,0,0,8013,8014,5,77,0,0,8014,8016,5,54,0,0,8015,8005,1,0,0,0, - 8015,8008,1,0,0,0,8015,8010,1,0,0,0,8015,8012,1,0,0,0,8015,8013, - 1,0,0,0,8016,833,1,0,0,0,8017,8024,3,832,416,0,8018,8020,5,6,0,0, - 8019,8018,1,0,0,0,8019,8020,1,0,0,0,8020,8021,1,0,0,0,8021,8023, - 3,832,416,0,8022,8019,1,0,0,0,8023,8026,1,0,0,0,8024,8022,1,0,0, - 0,8024,8025,1,0,0,0,8025,835,1,0,0,0,8026,8024,1,0,0,0,8027,8028, - 3,834,417,0,8028,837,1,0,0,0,8029,8031,5,33,0,0,8030,8032,5,269, - 0,0,8031,8030,1,0,0,0,8031,8032,1,0,0,0,8032,8033,1,0,0,0,8033,8034, - 5,153,0,0,8034,839,1,0,0,0,8035,8038,5,46,0,0,8036,8037,5,82,0,0, - 8037,8039,5,311,0,0,8038,8036,1,0,0,0,8038,8039,1,0,0,0,8039,8041, - 1,0,0,0,8040,8042,3,190,95,0,8041,8040,1,0,0,0,8041,8042,1,0,0,0, - 8042,8060,1,0,0,0,8043,8044,5,376,0,0,8044,8046,3,1410,705,0,8045, - 8047,3,242,121,0,8046,8045,1,0,0,0,8046,8047,1,0,0,0,8047,8049,1, - 0,0,0,8048,8050,3,134,67,0,8049,8048,1,0,0,0,8049,8050,1,0,0,0,8050, - 8061,1,0,0,0,8051,8052,5,303,0,0,8052,8053,5,376,0,0,8053,8054,3, - 1410,705,0,8054,8055,5,2,0,0,8055,8056,3,244,122,0,8056,8058,5,3, - 0,0,8057,8059,3,134,67,0,8058,8057,1,0,0,0,8058,8059,1,0,0,0,8059, - 8061,1,0,0,0,8060,8043,1,0,0,0,8060,8051,1,0,0,0,8061,8062,1,0,0, - 0,8062,8063,5,36,0,0,8063,8065,3,1002,501,0,8064,8066,3,842,421, - 0,8065,8064,1,0,0,0,8065,8066,1,0,0,0,8066,841,1,0,0,0,8067,8069, - 5,105,0,0,8068,8070,7,43,0,0,8069,8068,1,0,0,0,8069,8070,1,0,0,0, - 8070,8071,1,0,0,0,8071,8072,5,42,0,0,8072,8073,5,279,0,0,8073,843, - 1,0,0,0,8074,8075,5,253,0,0,8075,8076,3,1442,721,0,8076,845,1,0, - 0,0,8077,8078,5,46,0,0,8078,8079,5,175,0,0,8079,8081,3,1420,710, - 0,8080,8082,3,14,7,0,8081,8080,1,0,0,0,8081,8082,1,0,0,0,8082,8084, - 1,0,0,0,8083,8085,3,848,424,0,8084,8083,1,0,0,0,8084,8085,1,0,0, - 0,8085,847,1,0,0,0,8086,8087,3,850,425,0,8087,849,1,0,0,0,8088,8090, - 3,852,426,0,8089,8088,1,0,0,0,8090,8091,1,0,0,0,8091,8089,1,0,0, - 0,8091,8092,1,0,0,0,8092,851,1,0,0,0,8093,8095,3,854,427,0,8094, - 8096,3,856,428,0,8095,8094,1,0,0,0,8095,8096,1,0,0,0,8096,8100,1, - 0,0,0,8097,8101,3,1466,733,0,8098,8101,3,72,36,0,8099,8101,5,53, - 0,0,8100,8097,1,0,0,0,8100,8098,1,0,0,0,8100,8099,1,0,0,0,8101,853, - 1,0,0,0,8102,8111,3,1494,747,0,8103,8104,5,164,0,0,8104,8111,5,74, - 0,0,8105,8111,5,194,0,0,8106,8111,5,255,0,0,8107,8111,5,282,0,0, - 8108,8111,5,351,0,0,8109,8111,5,353,0,0,8110,8102,1,0,0,0,8110,8103, - 1,0,0,0,8110,8105,1,0,0,0,8110,8106,1,0,0,0,8110,8107,1,0,0,0,8110, - 8108,1,0,0,0,8110,8109,1,0,0,0,8111,855,1,0,0,0,8112,8113,5,10,0, - 0,8113,857,1,0,0,0,8114,8115,5,138,0,0,8115,8116,5,175,0,0,8116, - 8131,3,1422,711,0,8117,8119,5,105,0,0,8118,8117,1,0,0,0,8118,8119, - 1,0,0,0,8119,8120,1,0,0,0,8120,8122,3,848,424,0,8121,8118,1,0,0, - 0,8121,8122,1,0,0,0,8122,8132,1,0,0,0,8123,8125,3,848,424,0,8124, - 8123,1,0,0,0,8124,8125,1,0,0,0,8125,8132,1,0,0,0,8126,8127,5,333, - 0,0,8127,8128,5,351,0,0,8128,8130,3,1402,701,0,8129,8126,1,0,0,0, - 8129,8130,1,0,0,0,8130,8132,1,0,0,0,8131,8121,1,0,0,0,8131,8124, - 1,0,0,0,8131,8129,1,0,0,0,8132,859,1,0,0,0,8133,8134,5,138,0,0,8134, - 8135,5,175,0,0,8135,8137,3,1422,711,0,8136,8138,3,88,44,0,8137,8136, - 1,0,0,0,8137,8138,1,0,0,0,8138,861,1,0,0,0,8139,8144,3,864,432,0, - 8140,8141,5,6,0,0,8141,8143,3,864,432,0,8142,8140,1,0,0,0,8143,8146, - 1,0,0,0,8144,8142,1,0,0,0,8144,8145,1,0,0,0,8145,863,1,0,0,0,8146, - 8144,1,0,0,0,8147,8148,5,209,0,0,8148,865,1,0,0,0,8149,8150,5,138, - 0,0,8150,8151,5,108,0,0,8151,8152,3,558,279,0,8152,8153,5,305,0, - 0,8153,8154,5,375,0,0,8154,867,1,0,0,0,8155,8156,5,138,0,0,8156, - 8157,5,349,0,0,8157,8158,7,44,0,0,8158,8159,3,58,29,0,8159,869,1, - 0,0,0,8160,8161,5,46,0,0,8161,8162,5,189,0,0,8162,8164,3,558,279, - 0,8163,8165,3,874,437,0,8164,8163,1,0,0,0,8164,8165,1,0,0,0,8165, - 8166,1,0,0,0,8166,8167,3,1170,585,0,8167,8168,3,216,108,0,8168,871, - 1,0,0,0,8169,8170,5,138,0,0,8170,8171,5,189,0,0,8171,8193,3,558, - 279,0,8172,8194,3,122,61,0,8173,8174,5,191,0,0,8174,8175,5,77,0, - 0,8175,8194,5,78,0,0,8176,8177,5,333,0,0,8177,8178,5,77,0,0,8178, - 8194,5,78,0,0,8179,8180,5,133,0,0,8180,8194,3,236,118,0,8181,8182, - 5,191,0,0,8182,8184,5,45,0,0,8183,8185,3,748,374,0,8184,8183,1,0, - 0,0,8184,8185,1,0,0,0,8185,8186,1,0,0,0,8186,8188,3,1438,719,0,8187, - 8189,3,124,62,0,8188,8187,1,0,0,0,8188,8189,1,0,0,0,8189,8194,1, - 0,0,0,8190,8191,5,372,0,0,8191,8192,5,45,0,0,8192,8194,3,1438,719, - 0,8193,8172,1,0,0,0,8193,8173,1,0,0,0,8193,8176,1,0,0,0,8193,8179, - 1,0,0,0,8193,8181,1,0,0,0,8193,8190,1,0,0,0,8194,873,1,0,0,0,8195, - 8196,5,36,0,0,8196,875,1,0,0,0,8197,8198,5,138,0,0,8198,8199,5,355, - 0,0,8199,8200,5,325,0,0,8200,8201,5,185,0,0,8201,8202,3,558,279, - 0,8202,8203,3,494,247,0,8203,877,1,0,0,0,8204,8205,5,138,0,0,8205, - 8206,5,355,0,0,8206,8207,5,325,0,0,8207,8208,5,163,0,0,8208,8209, - 3,558,279,0,8209,8210,5,133,0,0,8210,8211,5,257,0,0,8211,8212,5, - 62,0,0,8212,8213,3,1418,709,0,8213,8214,3,880,440,0,8214,8215,3, - 550,275,0,8215,8268,1,0,0,0,8216,8217,5,138,0,0,8217,8218,5,355, - 0,0,8218,8219,5,325,0,0,8219,8220,5,163,0,0,8220,8221,3,558,279, - 0,8221,8222,5,138,0,0,8222,8223,5,257,0,0,8223,8224,5,62,0,0,8224, - 8225,3,1418,709,0,8225,8226,3,880,440,0,8226,8227,3,550,275,0,8227, - 8268,1,0,0,0,8228,8229,5,138,0,0,8229,8230,5,355,0,0,8230,8231,5, - 325,0,0,8231,8232,5,163,0,0,8232,8233,3,558,279,0,8233,8234,5,138, - 0,0,8234,8235,5,257,0,0,8235,8236,5,311,0,0,8236,8237,3,558,279, - 0,8237,8238,3,880,440,0,8238,8239,3,558,279,0,8239,8268,1,0,0,0, - 8240,8241,5,138,0,0,8241,8242,5,355,0,0,8242,8243,5,325,0,0,8243, - 8244,5,163,0,0,8244,8245,3,558,279,0,8245,8246,5,138,0,0,8246,8247, - 5,257,0,0,8247,8248,5,62,0,0,8248,8249,3,1418,709,0,8249,8250,5, - 311,0,0,8250,8251,3,558,279,0,8251,8252,3,880,440,0,8252,8253,3, - 558,279,0,8253,8268,1,0,0,0,8254,8255,5,138,0,0,8255,8256,5,355, - 0,0,8256,8257,5,325,0,0,8257,8258,5,163,0,0,8258,8259,3,558,279, - 0,8259,8260,5,191,0,0,8260,8262,5,257,0,0,8261,8263,3,748,374,0, - 8262,8261,1,0,0,0,8262,8263,1,0,0,0,8263,8264,1,0,0,0,8264,8265, - 5,62,0,0,8265,8266,3,1418,709,0,8266,8268,1,0,0,0,8267,8204,1,0, - 0,0,8267,8216,1,0,0,0,8267,8228,1,0,0,0,8267,8240,1,0,0,0,8267,8254, - 1,0,0,0,8268,879,1,0,0,0,8269,8270,5,105,0,0,8270,881,1,0,0,0,8271, - 8273,5,46,0,0,8272,8274,3,522,261,0,8273,8272,1,0,0,0,8273,8274, - 1,0,0,0,8274,8275,1,0,0,0,8275,8276,5,168,0,0,8276,8277,3,558,279, - 0,8277,8278,5,62,0,0,8278,8279,3,1460,730,0,8279,8280,5,94,0,0,8280, - 8281,3,1460,730,0,8281,8282,5,64,0,0,8282,8283,3,558,279,0,8283, - 883,1,0,0,0,8284,8286,5,158,0,0,8285,8287,3,910,455,0,8286,8285, - 1,0,0,0,8286,8287,1,0,0,0,8287,8288,1,0,0,0,8288,8290,3,1408,704, - 0,8289,8291,3,888,444,0,8290,8289,1,0,0,0,8290,8291,1,0,0,0,8291, - 8303,1,0,0,0,8292,8294,5,158,0,0,8293,8295,3,910,455,0,8294,8293, - 1,0,0,0,8294,8295,1,0,0,0,8295,8303,1,0,0,0,8296,8297,5,158,0,0, - 8297,8298,3,886,443,0,8298,8300,3,1408,704,0,8299,8301,3,888,444, - 0,8300,8299,1,0,0,0,8300,8301,1,0,0,0,8301,8303,1,0,0,0,8302,8284, - 1,0,0,0,8302,8292,1,0,0,0,8302,8296,1,0,0,0,8303,885,1,0,0,0,8304, - 8305,5,2,0,0,8305,8310,3,910,455,0,8306,8307,5,6,0,0,8307,8309,3, - 910,455,0,8308,8306,1,0,0,0,8309,8312,1,0,0,0,8310,8308,1,0,0,0, - 8310,8311,1,0,0,0,8311,8313,1,0,0,0,8312,8310,1,0,0,0,8313,8314, - 5,3,0,0,8314,887,1,0,0,0,8315,8316,5,100,0,0,8316,8317,3,1438,719, - 0,8317,889,1,0,0,0,8318,8320,5,370,0,0,8319,8321,3,916,458,0,8320, - 8319,1,0,0,0,8320,8321,1,0,0,0,8321,8323,1,0,0,0,8322,8324,3,918, - 459,0,8323,8322,1,0,0,0,8323,8324,1,0,0,0,8324,8326,1,0,0,0,8325, - 8327,3,910,455,0,8326,8325,1,0,0,0,8326,8327,1,0,0,0,8327,8329,1, - 0,0,0,8328,8330,3,904,452,0,8329,8328,1,0,0,0,8329,8330,1,0,0,0, - 8330,8332,1,0,0,0,8331,8333,3,926,463,0,8332,8331,1,0,0,0,8332,8333, - 1,0,0,0,8333,8345,1,0,0,0,8334,8339,5,370,0,0,8335,8336,5,2,0,0, - 8336,8337,3,894,447,0,8337,8338,5,3,0,0,8338,8340,1,0,0,0,8339,8335, - 1,0,0,0,8339,8340,1,0,0,0,8340,8342,1,0,0,0,8341,8343,3,926,463, - 0,8342,8341,1,0,0,0,8342,8343,1,0,0,0,8343,8345,1,0,0,0,8344,8318, - 1,0,0,0,8344,8334,1,0,0,0,8345,891,1,0,0,0,8346,8348,3,896,448,0, - 8347,8349,3,910,455,0,8348,8347,1,0,0,0,8348,8349,1,0,0,0,8349,8351, - 1,0,0,0,8350,8352,3,926,463,0,8351,8350,1,0,0,0,8351,8352,1,0,0, - 0,8352,8361,1,0,0,0,8353,8354,3,896,448,0,8354,8355,5,2,0,0,8355, - 8356,3,906,453,0,8356,8358,5,3,0,0,8357,8359,3,926,463,0,8358,8357, - 1,0,0,0,8358,8359,1,0,0,0,8359,8361,1,0,0,0,8360,8346,1,0,0,0,8360, - 8353,1,0,0,0,8361,893,1,0,0,0,8362,8367,3,898,449,0,8363,8364,5, - 6,0,0,8364,8366,3,898,449,0,8365,8363,1,0,0,0,8366,8369,1,0,0,0, - 8367,8365,1,0,0,0,8367,8368,1,0,0,0,8368,895,1,0,0,0,8369,8367,1, - 0,0,0,8370,8371,7,45,0,0,8371,897,1,0,0,0,8372,8374,3,900,450,0, - 8373,8375,3,902,451,0,8374,8373,1,0,0,0,8374,8375,1,0,0,0,8375,899, - 1,0,0,0,8376,8379,3,1490,745,0,8377,8379,3,896,448,0,8378,8376,1, - 0,0,0,8378,8377,1,0,0,0,8379,901,1,0,0,0,8380,8383,3,72,36,0,8381, - 8383,3,320,160,0,8382,8380,1,0,0,0,8382,8381,1,0,0,0,8383,903,1, - 0,0,0,8384,8385,3,896,448,0,8385,905,1,0,0,0,8386,8391,3,908,454, - 0,8387,8388,5,6,0,0,8388,8390,3,908,454,0,8389,8387,1,0,0,0,8390, - 8393,1,0,0,0,8391,8389,1,0,0,0,8391,8392,1,0,0,0,8392,907,1,0,0, - 0,8393,8391,1,0,0,0,8394,8398,3,910,455,0,8395,8398,3,912,456,0, - 8396,8398,3,914,457,0,8397,8394,1,0,0,0,8397,8395,1,0,0,0,8397,8396, - 1,0,0,0,8398,909,1,0,0,0,8399,8401,5,128,0,0,8400,8402,7,46,0,0, - 8401,8400,1,0,0,0,8401,8402,1,0,0,0,8402,911,1,0,0,0,8403,8405,5, - 547,0,0,8404,8406,7,46,0,0,8405,8404,1,0,0,0,8405,8406,1,0,0,0,8406, - 913,1,0,0,0,8407,8410,5,548,0,0,8408,8411,3,320,160,0,8409,8411, - 3,1460,730,0,8410,8408,1,0,0,0,8410,8409,1,0,0,0,8411,915,1,0,0, - 0,8412,8413,5,113,0,0,8413,917,1,0,0,0,8414,8415,5,112,0,0,8415, - 919,1,0,0,0,8416,8417,5,2,0,0,8417,8418,3,244,122,0,8418,8419,5, - 3,0,0,8419,921,1,0,0,0,8420,8422,3,1408,704,0,8421,8423,3,920,460, - 0,8422,8421,1,0,0,0,8422,8423,1,0,0,0,8423,923,1,0,0,0,8424,8429, - 3,922,461,0,8425,8426,5,6,0,0,8426,8428,3,922,461,0,8427,8425,1, - 0,0,0,8428,8431,1,0,0,0,8429,8427,1,0,0,0,8429,8430,1,0,0,0,8430, - 925,1,0,0,0,8431,8429,1,0,0,0,8432,8433,3,924,462,0,8433,927,1,0, - 0,0,8434,8435,5,203,0,0,8435,8453,3,930,465,0,8436,8437,5,203,0, - 0,8437,8439,3,896,448,0,8438,8440,3,910,455,0,8439,8438,1,0,0,0, - 8439,8440,1,0,0,0,8440,8441,1,0,0,0,8441,8442,3,930,465,0,8442,8453, - 1,0,0,0,8443,8444,5,203,0,0,8444,8445,5,128,0,0,8445,8453,3,930, - 465,0,8446,8447,5,203,0,0,8447,8448,5,2,0,0,8448,8449,3,932,466, - 0,8449,8450,5,3,0,0,8450,8451,3,930,465,0,8451,8453,1,0,0,0,8452, - 8434,1,0,0,0,8452,8436,1,0,0,0,8452,8443,1,0,0,0,8452,8446,1,0,0, - 0,8453,929,1,0,0,0,8454,8464,3,1002,501,0,8455,8464,3,952,476,0, - 8456,8464,3,984,492,0,8457,8464,3,970,485,0,8458,8464,3,994,497, - 0,8459,8464,3,292,146,0,8460,8464,3,298,149,0,8461,8464,3,304,152, - 0,8462,8464,3,946,473,0,8463,8454,1,0,0,0,8463,8455,1,0,0,0,8463, - 8456,1,0,0,0,8463,8457,1,0,0,0,8463,8458,1,0,0,0,8463,8459,1,0,0, - 0,8463,8460,1,0,0,0,8463,8461,1,0,0,0,8463,8462,1,0,0,0,8464,931, - 1,0,0,0,8465,8470,3,934,467,0,8466,8467,5,6,0,0,8467,8469,3,934, - 467,0,8468,8466,1,0,0,0,8469,8472,1,0,0,0,8470,8468,1,0,0,0,8470, - 8471,1,0,0,0,8471,933,1,0,0,0,8472,8470,1,0,0,0,8473,8475,3,936, - 468,0,8474,8476,3,938,469,0,8475,8474,1,0,0,0,8475,8476,1,0,0,0, - 8476,935,1,0,0,0,8477,8480,3,1490,745,0,8478,8480,3,896,448,0,8479, - 8477,1,0,0,0,8479,8478,1,0,0,0,8480,937,1,0,0,0,8481,8484,3,72,36, - 0,8482,8484,3,320,160,0,8483,8481,1,0,0,0,8483,8482,1,0,0,0,8484, - 939,1,0,0,0,8485,8486,5,290,0,0,8486,8488,3,1438,719,0,8487,8489, - 3,942,471,0,8488,8487,1,0,0,0,8488,8489,1,0,0,0,8489,8490,1,0,0, - 0,8490,8491,5,36,0,0,8491,8492,3,944,472,0,8492,941,1,0,0,0,8493, - 8494,5,2,0,0,8494,8495,3,1344,672,0,8495,8496,5,3,0,0,8496,943,1, - 0,0,0,8497,8502,3,1002,501,0,8498,8502,3,952,476,0,8499,8502,3,984, - 492,0,8500,8502,3,970,485,0,8501,8497,1,0,0,0,8501,8498,1,0,0,0, - 8501,8499,1,0,0,0,8501,8500,1,0,0,0,8502,945,1,0,0,0,8503,8504,5, - 202,0,0,8504,8506,3,1438,719,0,8505,8507,3,948,474,0,8506,8505,1, - 0,0,0,8506,8507,1,0,0,0,8507,8527,1,0,0,0,8508,8510,5,46,0,0,8509, - 8511,3,190,95,0,8510,8509,1,0,0,0,8510,8511,1,0,0,0,8511,8512,1, - 0,0,0,8512,8514,5,92,0,0,8513,8515,3,514,257,0,8514,8513,1,0,0,0, - 8514,8515,1,0,0,0,8515,8516,1,0,0,0,8516,8517,3,294,147,0,8517,8518, - 5,36,0,0,8518,8519,5,202,0,0,8519,8521,3,1438,719,0,8520,8522,3, - 948,474,0,8521,8520,1,0,0,0,8521,8522,1,0,0,0,8522,8524,1,0,0,0, - 8523,8525,3,296,148,0,8524,8523,1,0,0,0,8524,8525,1,0,0,0,8525,8527, - 1,0,0,0,8526,8503,1,0,0,0,8526,8508,1,0,0,0,8527,947,1,0,0,0,8528, - 8529,5,2,0,0,8529,8530,3,1330,665,0,8530,8531,5,3,0,0,8531,949,1, - 0,0,0,8532,8533,5,177,0,0,8533,8543,3,1438,719,0,8534,8535,5,177, - 0,0,8535,8536,5,290,0,0,8536,8543,3,1438,719,0,8537,8538,5,177,0, - 0,8538,8543,5,30,0,0,8539,8540,5,177,0,0,8540,8541,5,290,0,0,8541, - 8543,5,30,0,0,8542,8532,1,0,0,0,8542,8534,1,0,0,0,8542,8537,1,0, - 0,0,8542,8539,1,0,0,0,8543,951,1,0,0,0,8544,8546,3,1028,514,0,8545, - 8544,1,0,0,0,8545,8546,1,0,0,0,8546,8547,1,0,0,0,8547,8548,5,241, - 0,0,8548,8549,5,71,0,0,8549,8550,3,954,477,0,8550,8552,3,956,478, - 0,8551,8553,3,964,482,0,8552,8551,1,0,0,0,8552,8553,1,0,0,0,8553, - 8555,1,0,0,0,8554,8556,3,968,484,0,8555,8554,1,0,0,0,8555,8556,1, - 0,0,0,8556,953,1,0,0,0,8557,8560,3,1408,704,0,8558,8559,5,36,0,0, - 8559,8561,3,1476,738,0,8560,8558,1,0,0,0,8560,8561,1,0,0,0,8561, - 955,1,0,0,0,8562,8563,5,2,0,0,8563,8564,3,960,480,0,8564,8565,5, - 3,0,0,8565,8567,1,0,0,0,8566,8562,1,0,0,0,8566,8567,1,0,0,0,8567, - 8572,1,0,0,0,8568,8569,5,463,0,0,8569,8570,3,958,479,0,8570,8571, - 5,450,0,0,8571,8573,1,0,0,0,8572,8568,1,0,0,0,8572,8573,1,0,0,0, - 8573,8576,1,0,0,0,8574,8577,3,1696,848,0,8575,8577,3,1002,501,0, - 8576,8574,1,0,0,0,8576,8575,1,0,0,0,8577,957,1,0,0,0,8578,8579,7, - 47,0,0,8579,959,1,0,0,0,8580,8585,3,962,481,0,8581,8582,5,6,0,0, - 8582,8584,3,962,481,0,8583,8581,1,0,0,0,8584,8587,1,0,0,0,8585,8583, - 1,0,0,0,8585,8586,1,0,0,0,8586,961,1,0,0,0,8587,8585,1,0,0,0,8588, - 8589,3,1434,717,0,8589,8590,3,1384,692,0,8590,963,1,0,0,0,8591,8592, - 5,80,0,0,8592,8594,5,464,0,0,8593,8595,3,966,483,0,8594,8593,1,0, - 0,0,8594,8595,1,0,0,0,8595,8596,1,0,0,0,8596,8604,5,57,0,0,8597, - 8598,5,369,0,0,8598,8599,5,333,0,0,8599,8601,3,986,493,0,8600,8602, - 3,1146,573,0,8601,8600,1,0,0,0,8601,8602,1,0,0,0,8602,8605,1,0,0, - 0,8603,8605,5,270,0,0,8604,8597,1,0,0,0,8604,8603,1,0,0,0,8605,965, - 1,0,0,0,8606,8607,5,2,0,0,8607,8608,3,636,318,0,8608,8610,5,3,0, - 0,8609,8611,3,1146,573,0,8610,8609,1,0,0,0,8610,8611,1,0,0,0,8611, - 8616,1,0,0,0,8612,8613,5,80,0,0,8613,8614,5,45,0,0,8614,8616,3,1438, - 719,0,8615,8606,1,0,0,0,8615,8612,1,0,0,0,8616,967,1,0,0,0,8617, - 8618,5,87,0,0,8618,8619,3,1388,694,0,8619,969,1,0,0,0,8620,8622, - 3,1028,514,0,8621,8620,1,0,0,0,8621,8622,1,0,0,0,8622,8623,1,0,0, - 0,8623,8624,5,182,0,0,8624,8625,5,64,0,0,8625,8627,3,1130,565,0, - 8626,8628,3,972,486,0,8627,8626,1,0,0,0,8627,8628,1,0,0,0,8628,8630, - 1,0,0,0,8629,8631,3,1148,574,0,8630,8629,1,0,0,0,8630,8631,1,0,0, - 0,8631,8633,1,0,0,0,8632,8634,3,968,484,0,8633,8632,1,0,0,0,8633, - 8634,1,0,0,0,8634,971,1,0,0,0,8635,8636,5,100,0,0,8636,8637,3,1106, - 553,0,8637,973,1,0,0,0,8638,8640,5,256,0,0,8639,8641,3,1036,518, - 0,8640,8639,1,0,0,0,8640,8641,1,0,0,0,8641,8642,1,0,0,0,8642,8644, - 3,1126,563,0,8643,8645,3,976,488,0,8644,8643,1,0,0,0,8644,8645,1, - 0,0,0,8645,8647,1,0,0,0,8646,8648,3,980,490,0,8647,8646,1,0,0,0, - 8647,8648,1,0,0,0,8648,975,1,0,0,0,8649,8650,5,68,0,0,8650,8651, - 3,978,489,0,8651,8652,5,263,0,0,8652,977,1,0,0,0,8653,8654,5,131, - 0,0,8654,8666,7,48,0,0,8655,8656,5,414,0,0,8656,8666,7,48,0,0,8657, - 8662,5,334,0,0,8658,8659,5,369,0,0,8659,8663,5,201,0,0,8660,8661, - 5,414,0,0,8661,8663,5,201,0,0,8662,8658,1,0,0,0,8662,8660,1,0,0, - 0,8662,8663,1,0,0,0,8663,8666,1,0,0,0,8664,8666,5,201,0,0,8665,8653, - 1,0,0,0,8665,8655,1,0,0,0,8665,8657,1,0,0,0,8665,8664,1,0,0,0,8666, - 979,1,0,0,0,8667,8668,5,272,0,0,8668,981,1,0,0,0,8669,8673,5,272, - 0,0,8670,8671,5,465,0,0,8671,8673,5,466,0,0,8672,8669,1,0,0,0,8672, - 8670,1,0,0,0,8673,983,1,0,0,0,8674,8676,3,1028,514,0,8675,8674,1, - 0,0,0,8675,8676,1,0,0,0,8676,8677,1,0,0,0,8677,8678,5,369,0,0,8678, - 8679,3,1130,565,0,8679,8680,5,333,0,0,8680,8682,3,986,493,0,8681, - 8683,3,1104,552,0,8682,8681,1,0,0,0,8682,8683,1,0,0,0,8683,8685, - 1,0,0,0,8684,8686,3,1148,574,0,8685,8684,1,0,0,0,8685,8686,1,0,0, - 0,8686,8688,1,0,0,0,8687,8689,3,968,484,0,8688,8687,1,0,0,0,8688, - 8689,1,0,0,0,8689,985,1,0,0,0,8690,8695,3,988,494,0,8691,8692,5, - 6,0,0,8692,8694,3,988,494,0,8693,8691,1,0,0,0,8694,8697,1,0,0,0, - 8695,8693,1,0,0,0,8695,8696,1,0,0,0,8696,987,1,0,0,0,8697,8695,1, - 0,0,0,8698,8699,3,990,495,0,8699,8700,5,10,0,0,8700,8701,3,1214, - 607,0,8701,8717,1,0,0,0,8702,8703,5,2,0,0,8703,8704,3,992,496,0, - 8704,8705,5,3,0,0,8705,8714,5,10,0,0,8706,8708,5,414,0,0,8707,8706, - 1,0,0,0,8707,8708,1,0,0,0,8708,8709,1,0,0,0,8709,8715,3,1214,607, - 0,8710,8711,5,2,0,0,8711,8712,3,1008,504,0,8712,8713,5,3,0,0,8713, - 8715,1,0,0,0,8714,8707,1,0,0,0,8714,8710,1,0,0,0,8715,8717,1,0,0, - 0,8716,8698,1,0,0,0,8716,8702,1,0,0,0,8717,989,1,0,0,0,8718,8719, - 3,1434,717,0,8719,8720,3,1384,692,0,8720,991,1,0,0,0,8721,8726,3, - 990,495,0,8722,8723,5,6,0,0,8723,8725,3,990,495,0,8724,8722,1,0, - 0,0,8725,8728,1,0,0,0,8726,8724,1,0,0,0,8726,8727,1,0,0,0,8727,993, - 1,0,0,0,8728,8726,1,0,0,0,8729,8730,5,178,0,0,8730,8731,3,996,498, - 0,8731,8732,3,998,499,0,8732,8733,5,172,0,0,8733,8734,3,1000,500, - 0,8734,8735,5,62,0,0,8735,8736,3,1002,501,0,8736,995,1,0,0,0,8737, - 8738,3,1438,719,0,8738,997,1,0,0,0,8739,8740,5,269,0,0,8740,8745, - 5,324,0,0,8741,8745,5,324,0,0,8742,8745,5,107,0,0,8743,8745,5,240, - 0,0,8744,8739,1,0,0,0,8744,8741,1,0,0,0,8744,8742,1,0,0,0,8744,8743, - 1,0,0,0,8745,8748,1,0,0,0,8746,8744,1,0,0,0,8746,8747,1,0,0,0,8747, - 999,1,0,0,0,8748,8746,1,0,0,0,8749,8755,1,0,0,0,8750,8751,5,105, - 0,0,8751,8755,5,217,0,0,8752,8753,5,379,0,0,8753,8755,5,217,0,0, - 8754,8749,1,0,0,0,8754,8750,1,0,0,0,8754,8752,1,0,0,0,8755,1001, - 1,0,0,0,8756,8759,3,1006,503,0,8757,8759,3,1004,502,0,8758,8756, - 1,0,0,0,8758,8757,1,0,0,0,8759,1003,1,0,0,0,8760,8761,5,2,0,0,8761, - 8762,3,1006,503,0,8762,8763,5,3,0,0,8763,8769,1,0,0,0,8764,8765, - 5,2,0,0,8765,8766,3,1004,502,0,8766,8767,5,3,0,0,8767,8769,1,0,0, - 0,8768,8760,1,0,0,0,8768,8764,1,0,0,0,8769,1005,1,0,0,0,8770,8772, - 3,1008,504,0,8771,8773,3,1044,522,0,8772,8771,1,0,0,0,8772,8773, - 1,0,0,0,8773,8782,1,0,0,0,8774,8776,3,1090,545,0,8775,8777,3,1054, - 527,0,8776,8775,1,0,0,0,8776,8777,1,0,0,0,8777,8783,1,0,0,0,8778, - 8780,3,1052,526,0,8779,8781,3,1092,546,0,8780,8779,1,0,0,0,8780, - 8781,1,0,0,0,8781,8783,1,0,0,0,8782,8774,1,0,0,0,8782,8778,1,0,0, - 0,8782,8783,1,0,0,0,8783,8800,1,0,0,0,8784,8785,3,1016,508,0,8785, - 8787,3,1008,504,0,8786,8788,3,1044,522,0,8787,8786,1,0,0,0,8787, - 8788,1,0,0,0,8788,8797,1,0,0,0,8789,8791,3,1090,545,0,8790,8792, - 3,1054,527,0,8791,8790,1,0,0,0,8791,8792,1,0,0,0,8792,8798,1,0,0, - 0,8793,8795,3,1052,526,0,8794,8796,3,1092,546,0,8795,8794,1,0,0, - 0,8795,8796,1,0,0,0,8796,8798,1,0,0,0,8797,8789,1,0,0,0,8797,8793, - 1,0,0,0,8797,8798,1,0,0,0,8798,8800,1,0,0,0,8799,8770,1,0,0,0,8799, - 8784,1,0,0,0,8800,1007,1,0,0,0,8801,8804,3,1010,505,0,8802,8804, - 3,1004,502,0,8803,8801,1,0,0,0,8803,8802,1,0,0,0,8804,1009,1,0,0, - 0,8805,8821,5,88,0,0,8806,8808,3,1042,521,0,8807,8806,1,0,0,0,8807, - 8808,1,0,0,0,8808,8810,1,0,0,0,8809,8811,3,1030,515,0,8810,8809, - 1,0,0,0,8810,8811,1,0,0,0,8811,8813,1,0,0,0,8812,8814,3,1386,693, - 0,8813,8812,1,0,0,0,8813,8814,1,0,0,0,8814,8822,1,0,0,0,8815,8817, - 3,1040,520,0,8816,8815,1,0,0,0,8816,8817,1,0,0,0,8817,8819,1,0,0, - 0,8818,8820,3,1388,694,0,8819,8818,1,0,0,0,8819,8820,1,0,0,0,8820, - 8822,1,0,0,0,8821,8807,1,0,0,0,8821,8816,1,0,0,0,8822,8824,1,0,0, - 0,8823,8825,3,1030,515,0,8824,8823,1,0,0,0,8824,8825,1,0,0,0,8825, - 8827,1,0,0,0,8826,8828,3,1104,552,0,8827,8826,1,0,0,0,8827,8828, - 1,0,0,0,8828,8830,1,0,0,0,8829,8831,3,1146,573,0,8830,8829,1,0,0, - 0,8830,8831,1,0,0,0,8831,8833,1,0,0,0,8832,8834,3,1074,537,0,8833, - 8832,1,0,0,0,8833,8834,1,0,0,0,8834,8836,1,0,0,0,8835,8837,3,1088, - 544,0,8836,8835,1,0,0,0,8836,8837,1,0,0,0,8837,8839,1,0,0,0,8838, - 8840,3,1290,645,0,8839,8838,1,0,0,0,8839,8840,1,0,0,0,8840,8851, - 1,0,0,0,8841,8851,3,1102,551,0,8842,8843,5,92,0,0,8843,8851,3,1120, - 560,0,8844,8845,3,1004,502,0,8845,8848,3,1014,507,0,8846,8849,3, - 1010,505,0,8847,8849,3,1004,502,0,8848,8846,1,0,0,0,8848,8847,1, - 0,0,0,8849,8851,1,0,0,0,8850,8805,1,0,0,0,8850,8841,1,0,0,0,8850, - 8842,1,0,0,0,8850,8844,1,0,0,0,8851,8859,1,0,0,0,8852,8855,3,1014, - 507,0,8853,8856,3,1010,505,0,8854,8856,3,1004,502,0,8855,8853,1, - 0,0,0,8855,8854,1,0,0,0,8856,8858,1,0,0,0,8857,8852,1,0,0,0,8858, - 8861,1,0,0,0,8859,8857,1,0,0,0,8859,8860,1,0,0,0,8860,1011,1,0,0, - 0,8861,8859,1,0,0,0,8862,8866,5,97,0,0,8863,8866,5,70,0,0,8864,8866, - 5,59,0,0,8865,8862,1,0,0,0,8865,8863,1,0,0,0,8865,8864,1,0,0,0,8866, - 1013,1,0,0,0,8867,8869,3,1012,506,0,8868,8870,3,1038,519,0,8869, - 8868,1,0,0,0,8869,8870,1,0,0,0,8870,1015,1,0,0,0,8871,8873,5,105, - 0,0,8872,8874,5,303,0,0,8873,8872,1,0,0,0,8873,8874,1,0,0,0,8874, - 8875,1,0,0,0,8875,8876,3,1018,509,0,8876,1017,1,0,0,0,8877,8882, - 3,1020,510,0,8878,8879,5,6,0,0,8879,8881,3,1020,510,0,8880,8878, - 1,0,0,0,8881,8884,1,0,0,0,8882,8880,1,0,0,0,8882,8883,1,0,0,0,8883, - 1019,1,0,0,0,8884,8882,1,0,0,0,8885,8887,3,1438,719,0,8886,8888, - 3,920,460,0,8887,8886,1,0,0,0,8887,8888,1,0,0,0,8888,8889,1,0,0, - 0,8889,8891,5,36,0,0,8890,8892,3,1026,513,0,8891,8890,1,0,0,0,8891, - 8892,1,0,0,0,8892,8893,1,0,0,0,8893,8894,5,2,0,0,8894,8895,3,944, - 472,0,8895,8897,5,3,0,0,8896,8898,3,1022,511,0,8897,8896,1,0,0,0, - 8897,8898,1,0,0,0,8898,8900,1,0,0,0,8899,8901,3,1024,512,0,8900, - 8899,1,0,0,0,8900,8901,1,0,0,0,8901,1021,1,0,0,0,8902,8903,5,325, - 0,0,8903,8904,7,49,0,0,8904,8905,5,207,0,0,8905,8906,5,147,0,0,8906, - 8907,3,244,122,0,8907,8908,5,333,0,0,8908,8909,3,1434,717,0,8909, - 1023,1,0,0,0,8910,8911,5,173,0,0,8911,8912,3,244,122,0,8912,8913, - 5,333,0,0,8913,8919,3,1434,717,0,8914,8915,5,94,0,0,8915,8916,3, - 1438,719,0,8916,8917,5,53,0,0,8917,8918,3,1438,719,0,8918,8920,1, - 0,0,0,8919,8914,1,0,0,0,8919,8920,1,0,0,0,8920,8921,1,0,0,0,8921, - 8922,5,100,0,0,8922,8923,3,1434,717,0,8923,1025,1,0,0,0,8924,8928, - 5,259,0,0,8925,8926,5,77,0,0,8926,8928,5,259,0,0,8927,8924,1,0,0, - 0,8927,8925,1,0,0,0,8928,1027,1,0,0,0,8929,8930,3,1016,508,0,8930, - 1029,1,0,0,0,8931,8936,5,71,0,0,8932,8933,3,1032,516,0,8933,8934, - 3,1034,517,0,8934,8937,1,0,0,0,8935,8937,3,1676,838,0,8936,8932, - 1,0,0,0,8936,8935,1,0,0,0,8937,1031,1,0,0,0,8938,8941,1,0,0,0,8939, - 8941,5,346,0,0,8940,8938,1,0,0,0,8940,8939,1,0,0,0,8941,1033,1,0, - 0,0,8942,8944,7,50,0,0,8943,8942,1,0,0,0,8943,8944,1,0,0,0,8944, - 8945,1,0,0,0,8945,8947,7,21,0,0,8946,8948,3,1036,518,0,8947,8946, - 1,0,0,0,8947,8948,1,0,0,0,8948,8949,1,0,0,0,8949,8959,3,1406,703, - 0,8950,8952,5,367,0,0,8951,8953,3,1036,518,0,8952,8951,1,0,0,0,8952, - 8953,1,0,0,0,8953,8954,1,0,0,0,8954,8959,3,1406,703,0,8955,8956, - 5,92,0,0,8956,8959,3,1406,703,0,8957,8959,3,1406,703,0,8958,8943, - 1,0,0,0,8958,8950,1,0,0,0,8958,8955,1,0,0,0,8958,8957,1,0,0,0,8959, - 1035,1,0,0,0,8960,8961,5,92,0,0,8961,1037,1,0,0,0,8962,8963,7,51, - 0,0,8963,1039,1,0,0,0,8964,8970,5,56,0,0,8965,8966,5,80,0,0,8966, - 8967,5,2,0,0,8967,8968,3,1330,665,0,8968,8969,5,3,0,0,8969,8971, - 1,0,0,0,8970,8965,1,0,0,0,8970,8971,1,0,0,0,8971,1041,1,0,0,0,8972, - 8973,5,30,0,0,8973,1043,1,0,0,0,8974,8975,3,1046,523,0,8975,1045, - 1,0,0,0,8976,8977,5,83,0,0,8977,8978,5,147,0,0,8978,8979,3,1048, - 524,0,8979,1047,1,0,0,0,8980,8985,3,1050,525,0,8981,8982,5,6,0,0, - 8982,8984,3,1050,525,0,8983,8981,1,0,0,0,8984,8987,1,0,0,0,8985, - 8983,1,0,0,0,8985,8986,1,0,0,0,8986,1049,1,0,0,0,8987,8985,1,0,0, - 0,8988,8992,3,1338,669,0,8989,8990,5,100,0,0,8990,8993,3,1326,663, - 0,8991,8993,3,650,325,0,8992,8989,1,0,0,0,8992,8991,1,0,0,0,8992, - 8993,1,0,0,0,8993,8995,1,0,0,0,8994,8996,3,652,326,0,8995,8994,1, - 0,0,0,8995,8996,1,0,0,0,8996,1051,1,0,0,0,8997,8999,3,1056,528,0, - 8998,9000,3,1060,530,0,8999,8998,1,0,0,0,8999,9000,1,0,0,0,9000, - 9010,1,0,0,0,9001,9003,3,1060,530,0,9002,9004,3,1058,529,0,9003, - 9002,1,0,0,0,9003,9004,1,0,0,0,9004,9010,1,0,0,0,9005,9007,3,1058, - 529,0,9006,9008,3,1060,530,0,9007,9006,1,0,0,0,9007,9008,1,0,0,0, - 9008,9010,1,0,0,0,9009,8997,1,0,0,0,9009,9001,1,0,0,0,9009,9005, - 1,0,0,0,9010,1053,1,0,0,0,9011,9012,3,1052,526,0,9012,1055,1,0,0, - 0,9013,9014,5,74,0,0,9014,9017,3,1062,531,0,9015,9016,5,6,0,0,9016, - 9018,3,1064,532,0,9017,9015,1,0,0,0,9017,9018,1,0,0,0,9018,1057, - 1,0,0,0,9019,9020,5,61,0,0,9020,9034,3,1072,536,0,9021,9022,3,1066, - 533,0,9022,9026,3,1070,535,0,9023,9027,5,81,0,0,9024,9025,5,105, - 0,0,9025,9027,5,467,0,0,9026,9023,1,0,0,0,9026,9024,1,0,0,0,9027, - 9035,1,0,0,0,9028,9032,3,1070,535,0,9029,9033,5,81,0,0,9030,9031, - 5,105,0,0,9031,9033,5,467,0,0,9032,9029,1,0,0,0,9032,9030,1,0,0, - 0,9033,9035,1,0,0,0,9034,9021,1,0,0,0,9034,9028,1,0,0,0,9035,1059, - 1,0,0,0,9036,9041,5,79,0,0,9037,9042,3,1064,532,0,9038,9039,3,1066, - 533,0,9039,9040,3,1070,535,0,9040,9042,1,0,0,0,9041,9037,1,0,0,0, - 9041,9038,1,0,0,0,9042,1061,1,0,0,0,9043,9046,3,1214,607,0,9044, - 9046,5,30,0,0,9045,9043,1,0,0,0,9045,9044,1,0,0,0,9046,1063,1,0, - 0,0,9047,9048,3,1214,607,0,9048,1065,1,0,0,0,9049,9055,3,1256,628, - 0,9050,9051,5,12,0,0,9051,9055,3,1068,534,0,9052,9053,5,13,0,0,9053, - 9055,3,1068,534,0,9054,9049,1,0,0,0,9054,9050,1,0,0,0,9054,9052, - 1,0,0,0,9055,1067,1,0,0,0,9056,9059,3,1458,729,0,9057,9059,3,1456, - 728,0,9058,9056,1,0,0,0,9058,9057,1,0,0,0,9059,1069,1,0,0,0,9060, - 9061,7,52,0,0,9061,1071,1,0,0,0,9062,9063,7,53,0,0,9063,1073,1,0, - 0,0,9064,9065,5,66,0,0,9065,9067,5,147,0,0,9066,9068,3,1038,519, - 0,9067,9066,1,0,0,0,9067,9068,1,0,0,0,9068,9069,1,0,0,0,9069,9070, - 3,1076,538,0,9070,1075,1,0,0,0,9071,9076,3,1078,539,0,9072,9073, - 5,6,0,0,9073,9075,3,1078,539,0,9074,9072,1,0,0,0,9075,9078,1,0,0, - 0,9076,9074,1,0,0,0,9076,9077,1,0,0,0,9077,1077,1,0,0,0,9078,9076, - 1,0,0,0,9079,9089,3,1338,669,0,9080,9089,3,1080,540,0,9081,9089, - 3,1084,542,0,9082,9089,3,1082,541,0,9083,9089,3,1086,543,0,9084, - 9085,5,2,0,0,9085,9086,3,1332,666,0,9086,9087,5,3,0,0,9087,9089, - 1,0,0,0,9088,9079,1,0,0,0,9088,9080,1,0,0,0,9088,9081,1,0,0,0,9088, - 9082,1,0,0,0,9088,9083,1,0,0,0,9088,9084,1,0,0,0,9089,1079,1,0,0, - 0,9090,9091,5,2,0,0,9091,9092,5,3,0,0,9092,1081,1,0,0,0,9093,9094, - 5,468,0,0,9094,9095,5,2,0,0,9095,9096,3,1332,666,0,9096,9097,5,3, - 0,0,9097,1083,1,0,0,0,9098,9099,5,469,0,0,9099,9100,5,2,0,0,9100, - 9101,3,1332,666,0,9101,9102,5,3,0,0,9102,1085,1,0,0,0,9103,9104, - 5,470,0,0,9104,9105,5,471,0,0,9105,9106,5,2,0,0,9106,9107,3,1076, - 538,0,9107,9108,5,3,0,0,9108,1087,1,0,0,0,9109,9110,5,67,0,0,9110, - 9111,3,1214,607,0,9111,1089,1,0,0,0,9112,9117,3,1094,547,0,9113, - 9114,5,62,0,0,9114,9115,5,300,0,0,9115,9117,5,81,0,0,9116,9112,1, - 0,0,0,9116,9113,1,0,0,0,9117,1091,1,0,0,0,9118,9119,3,1090,545,0, - 9119,1093,1,0,0,0,9120,9122,3,1096,548,0,9121,9120,1,0,0,0,9122, - 9123,1,0,0,0,9123,9121,1,0,0,0,9123,9124,1,0,0,0,9124,1095,1,0,0, - 0,9125,9127,3,1098,549,0,9126,9128,3,1100,550,0,9127,9126,1,0,0, - 0,9127,9128,1,0,0,0,9128,9130,1,0,0,0,9129,9131,3,982,491,0,9130, - 9129,1,0,0,0,9130,9131,1,0,0,0,9131,1097,1,0,0,0,9132,9142,5,62, - 0,0,9133,9134,5,269,0,0,9134,9136,5,245,0,0,9135,9133,1,0,0,0,9135, - 9136,1,0,0,0,9136,9137,1,0,0,0,9137,9143,5,369,0,0,9138,9140,5,245, - 0,0,9139,9138,1,0,0,0,9139,9140,1,0,0,0,9140,9141,1,0,0,0,9141,9143, - 5,334,0,0,9142,9135,1,0,0,0,9142,9139,1,0,0,0,9143,1099,1,0,0,0, - 9144,9145,5,275,0,0,9145,9146,3,1392,696,0,9146,1101,1,0,0,0,9147, - 9148,5,422,0,0,9148,9149,5,2,0,0,9149,9150,3,1330,665,0,9150,9158, - 5,3,0,0,9151,9152,5,6,0,0,9152,9153,5,2,0,0,9153,9154,3,1330,665, - 0,9154,9155,5,3,0,0,9155,9157,1,0,0,0,9156,9151,1,0,0,0,9157,9160, - 1,0,0,0,9158,9156,1,0,0,0,9158,9159,1,0,0,0,9159,1103,1,0,0,0,9160, - 9158,1,0,0,0,9161,9162,5,64,0,0,9162,9163,3,1106,553,0,9163,1105, - 1,0,0,0,9164,9169,3,1108,554,0,9165,9166,5,6,0,0,9166,9168,3,1108, - 554,0,9167,9165,1,0,0,0,9168,9171,1,0,0,0,9169,9167,1,0,0,0,9169, - 9170,1,0,0,0,9170,1107,1,0,0,0,9171,9169,1,0,0,0,9172,9175,3,1120, - 560,0,9173,9175,3,1122,561,0,9174,9172,1,0,0,0,9174,9173,1,0,0,0, - 9175,9177,1,0,0,0,9176,9178,3,1112,556,0,9177,9176,1,0,0,0,9177, - 9178,1,0,0,0,9178,9180,1,0,0,0,9179,9181,3,1132,566,0,9180,9179, - 1,0,0,0,9180,9181,1,0,0,0,9181,9234,1,0,0,0,9182,9184,3,1136,568, - 0,9183,9185,3,1114,557,0,9184,9183,1,0,0,0,9184,9185,1,0,0,0,9185, - 9234,1,0,0,0,9186,9188,3,1156,578,0,9187,9189,3,1112,556,0,9188, - 9187,1,0,0,0,9188,9189,1,0,0,0,9189,9234,1,0,0,0,9190,9192,3,1004, - 502,0,9191,9193,3,1112,556,0,9192,9191,1,0,0,0,9192,9193,1,0,0,0, - 9193,9234,1,0,0,0,9194,9207,5,72,0,0,9195,9197,3,1156,578,0,9196, - 9198,3,1112,556,0,9197,9196,1,0,0,0,9197,9198,1,0,0,0,9198,9208, - 1,0,0,0,9199,9201,3,1136,568,0,9200,9202,3,1114,557,0,9201,9200, - 1,0,0,0,9201,9202,1,0,0,0,9202,9208,1,0,0,0,9203,9205,3,1004,502, - 0,9204,9206,3,1112,556,0,9205,9204,1,0,0,0,9205,9206,1,0,0,0,9206, - 9208,1,0,0,0,9207,9195,1,0,0,0,9207,9199,1,0,0,0,9207,9203,1,0,0, - 0,9208,9234,1,0,0,0,9209,9210,5,2,0,0,9210,9227,3,1108,554,0,9211, - 9212,5,110,0,0,9212,9213,5,118,0,0,9213,9228,3,1108,554,0,9214,9216, - 5,121,0,0,9215,9217,3,1116,558,0,9216,9215,1,0,0,0,9216,9217,1,0, - 0,0,9217,9218,1,0,0,0,9218,9219,5,118,0,0,9219,9228,3,1108,554,0, - 9220,9222,3,1116,558,0,9221,9220,1,0,0,0,9221,9222,1,0,0,0,9222, - 9223,1,0,0,0,9223,9224,5,118,0,0,9224,9225,3,1108,554,0,9225,9226, - 3,1118,559,0,9226,9228,1,0,0,0,9227,9211,1,0,0,0,9227,9214,1,0,0, - 0,9227,9221,1,0,0,0,9227,9228,1,0,0,0,9228,9229,1,0,0,0,9229,9231, - 5,3,0,0,9230,9232,3,1112,556,0,9231,9230,1,0,0,0,9231,9232,1,0,0, - 0,9232,9234,1,0,0,0,9233,9174,1,0,0,0,9233,9182,1,0,0,0,9233,9186, - 1,0,0,0,9233,9190,1,0,0,0,9233,9194,1,0,0,0,9233,9209,1,0,0,0,9234, - 9253,1,0,0,0,9235,9236,5,110,0,0,9236,9237,5,118,0,0,9237,9252,3, - 1108,554,0,9238,9240,5,121,0,0,9239,9241,3,1116,558,0,9240,9239, - 1,0,0,0,9240,9241,1,0,0,0,9241,9242,1,0,0,0,9242,9243,5,118,0,0, - 9243,9252,3,1108,554,0,9244,9246,3,1116,558,0,9245,9244,1,0,0,0, - 9245,9246,1,0,0,0,9246,9247,1,0,0,0,9247,9248,5,118,0,0,9248,9249, - 3,1108,554,0,9249,9250,3,1118,559,0,9250,9252,1,0,0,0,9251,9235, - 1,0,0,0,9251,9238,1,0,0,0,9251,9245,1,0,0,0,9252,9255,1,0,0,0,9253, - 9251,1,0,0,0,9253,9254,1,0,0,0,9254,1109,1,0,0,0,9255,9253,1,0,0, - 0,9256,9258,5,36,0,0,9257,9256,1,0,0,0,9257,9258,1,0,0,0,9258,9259, - 1,0,0,0,9259,9264,3,1476,738,0,9260,9261,5,2,0,0,9261,9262,3,1418, - 709,0,9262,9263,5,3,0,0,9263,9265,1,0,0,0,9264,9260,1,0,0,0,9264, - 9265,1,0,0,0,9265,1111,1,0,0,0,9266,9267,3,1110,555,0,9267,1113, - 1,0,0,0,9268,9281,3,1110,555,0,9269,9271,5,36,0,0,9270,9272,3,1476, - 738,0,9271,9270,1,0,0,0,9271,9272,1,0,0,0,9272,9275,1,0,0,0,9273, - 9275,3,1476,738,0,9274,9269,1,0,0,0,9274,9273,1,0,0,0,9275,9276, - 1,0,0,0,9276,9277,5,2,0,0,9277,9278,3,1152,576,0,9278,9279,5,3,0, - 0,9279,9281,1,0,0,0,9280,9268,1,0,0,0,9280,9274,1,0,0,0,9281,1115, - 1,0,0,0,9282,9284,7,54,0,0,9283,9285,5,123,0,0,9284,9283,1,0,0,0, - 9284,9285,1,0,0,0,9285,1117,1,0,0,0,9286,9287,5,100,0,0,9287,9288, - 5,2,0,0,9288,9289,3,244,122,0,9289,9290,5,3,0,0,9290,9294,1,0,0, - 0,9291,9292,5,80,0,0,9292,9294,3,1214,607,0,9293,9286,1,0,0,0,9293, - 9291,1,0,0,0,9294,1119,1,0,0,0,9295,9297,5,81,0,0,9296,9295,1,0, - 0,0,9296,9297,1,0,0,0,9297,9298,1,0,0,0,9298,9300,3,1408,704,0,9299, - 9301,5,9,0,0,9300,9299,1,0,0,0,9300,9301,1,0,0,0,9301,9303,1,0,0, - 0,9302,9304,3,244,122,0,9303,9302,1,0,0,0,9303,9304,1,0,0,0,9304, - 9306,1,0,0,0,9305,9307,3,1146,573,0,9306,9305,1,0,0,0,9306,9307, - 1,0,0,0,9307,9323,1,0,0,0,9308,9314,5,81,0,0,9309,9315,3,1408,704, - 0,9310,9311,5,2,0,0,9311,9312,3,1408,704,0,9312,9313,5,3,0,0,9313, - 9315,1,0,0,0,9314,9309,1,0,0,0,9314,9310,1,0,0,0,9315,9323,1,0,0, - 0,9316,9317,5,68,0,0,9317,9320,5,323,0,0,9318,9321,3,1424,712,0, - 9319,9321,5,111,0,0,9320,9318,1,0,0,0,9320,9319,1,0,0,0,9321,9323, - 1,0,0,0,9322,9296,1,0,0,0,9322,9308,1,0,0,0,9322,9316,1,0,0,0,9323, - 1121,1,0,0,0,9324,9326,5,81,0,0,9325,9324,1,0,0,0,9325,9326,1,0, - 0,0,9326,9327,1,0,0,0,9327,9329,3,1412,706,0,9328,9330,5,9,0,0,9329, - 9328,1,0,0,0,9329,9330,1,0,0,0,9330,9332,1,0,0,0,9331,9333,3,244, - 122,0,9332,9331,1,0,0,0,9332,9333,1,0,0,0,9333,9335,1,0,0,0,9334, - 9336,3,1146,573,0,9335,9334,1,0,0,0,9335,9336,1,0,0,0,9336,1123, - 1,0,0,0,9337,9339,5,92,0,0,9338,9340,5,81,0,0,9339,9338,1,0,0,0, - 9339,9340,1,0,0,0,9340,9341,1,0,0,0,9341,9343,3,1408,704,0,9342, - 9344,5,9,0,0,9343,9342,1,0,0,0,9343,9344,1,0,0,0,9344,9349,1,0,0, - 0,9345,9346,5,2,0,0,9346,9347,3,244,122,0,9347,9348,5,3,0,0,9348, - 9350,1,0,0,0,9349,9345,1,0,0,0,9349,9350,1,0,0,0,9350,9352,1,0,0, - 0,9351,9353,3,1146,573,0,9352,9351,1,0,0,0,9352,9353,1,0,0,0,9353, - 9371,1,0,0,0,9354,9355,5,92,0,0,9355,9361,5,81,0,0,9356,9362,3,1408, - 704,0,9357,9358,5,2,0,0,9358,9359,3,1408,704,0,9359,9360,5,3,0,0, - 9360,9362,1,0,0,0,9361,9356,1,0,0,0,9361,9357,1,0,0,0,9362,9371, - 1,0,0,0,9363,9364,5,350,0,0,9364,9365,5,68,0,0,9365,9368,5,323,0, - 0,9366,9369,3,1424,712,0,9367,9369,5,111,0,0,9368,9366,1,0,0,0,9368, - 9367,1,0,0,0,9369,9371,1,0,0,0,9370,9337,1,0,0,0,9370,9354,1,0,0, - 0,9370,9363,1,0,0,0,9371,1125,1,0,0,0,9372,9377,3,1120,560,0,9373, - 9374,5,6,0,0,9374,9376,3,1120,560,0,9375,9373,1,0,0,0,9376,9379, - 1,0,0,0,9377,9375,1,0,0,0,9377,9378,1,0,0,0,9378,1127,1,0,0,0,9379, - 9377,1,0,0,0,9380,9385,3,1124,562,0,9381,9382,5,6,0,0,9382,9384, - 3,1124,562,0,9383,9381,1,0,0,0,9384,9387,1,0,0,0,9385,9383,1,0,0, - 0,9385,9386,1,0,0,0,9386,1129,1,0,0,0,9387,9385,1,0,0,0,9388,9393, - 3,1120,560,0,9389,9391,5,36,0,0,9390,9389,1,0,0,0,9390,9391,1,0, - 0,0,9391,9392,1,0,0,0,9392,9394,3,1476,738,0,9393,9390,1,0,0,0,9393, - 9394,1,0,0,0,9394,1131,1,0,0,0,9395,9396,5,472,0,0,9396,9397,3,1446, - 723,0,9397,9398,5,2,0,0,9398,9399,3,1330,665,0,9399,9401,5,3,0,0, - 9400,9402,3,1134,567,0,9401,9400,1,0,0,0,9401,9402,1,0,0,0,9402, - 1133,1,0,0,0,9403,9404,5,310,0,0,9404,9405,5,2,0,0,9405,9406,3,1214, - 607,0,9406,9407,5,3,0,0,9407,1135,1,0,0,0,9408,9410,3,1264,632,0, - 9409,9411,3,1144,572,0,9410,9409,1,0,0,0,9410,9411,1,0,0,0,9411, - 9421,1,0,0,0,9412,9413,5,320,0,0,9413,9414,5,64,0,0,9414,9415,5, - 2,0,0,9415,9416,3,1140,570,0,9416,9418,5,3,0,0,9417,9419,3,1144, - 572,0,9418,9417,1,0,0,0,9418,9419,1,0,0,0,9419,9421,1,0,0,0,9420, - 9408,1,0,0,0,9420,9412,1,0,0,0,9421,1137,1,0,0,0,9422,9424,3,1264, - 632,0,9423,9425,3,1142,571,0,9424,9423,1,0,0,0,9424,9425,1,0,0,0, - 9425,1139,1,0,0,0,9426,9431,3,1138,569,0,9427,9428,5,6,0,0,9428, - 9430,3,1138,569,0,9429,9427,1,0,0,0,9430,9433,1,0,0,0,9431,9429, - 1,0,0,0,9431,9432,1,0,0,0,9432,1141,1,0,0,0,9433,9431,1,0,0,0,9434, - 9435,5,36,0,0,9435,9436,5,2,0,0,9436,9437,3,1152,576,0,9437,9438, - 5,3,0,0,9438,1143,1,0,0,0,9439,9440,5,105,0,0,9440,9441,5,473,0, - 0,9441,1145,1,0,0,0,9442,9443,5,103,0,0,9443,9444,3,1338,669,0,9444, - 1147,1,0,0,0,9445,9450,5,103,0,0,9446,9447,5,434,0,0,9447,9448,5, - 275,0,0,9448,9451,3,996,498,0,9449,9451,3,1214,607,0,9450,9446,1, - 0,0,0,9450,9449,1,0,0,0,9451,1149,1,0,0,0,9452,9453,3,1152,576,0, - 9453,1151,1,0,0,0,9454,9459,3,1154,577,0,9455,9456,5,6,0,0,9456, - 9458,3,1154,577,0,9457,9455,1,0,0,0,9458,9461,1,0,0,0,9459,9457, - 1,0,0,0,9459,9460,1,0,0,0,9460,1153,1,0,0,0,9461,9459,1,0,0,0,9462, - 9463,3,1476,738,0,9463,9465,3,1170,585,0,9464,9466,3,126,63,0,9465, - 9464,1,0,0,0,9465,9466,1,0,0,0,9466,1155,1,0,0,0,9467,9468,5,474, - 0,0,9468,9484,5,2,0,0,9469,9470,3,1256,628,0,9470,9471,3,1282,641, - 0,9471,9472,5,475,0,0,9472,9473,3,1158,579,0,9473,9485,1,0,0,0,9474, - 9475,5,476,0,0,9475,9476,5,2,0,0,9476,9477,3,1166,583,0,9477,9478, - 5,3,0,0,9478,9479,5,6,0,0,9479,9480,3,1256,628,0,9480,9481,3,1282, - 641,0,9481,9482,5,475,0,0,9482,9483,3,1158,579,0,9483,9485,1,0,0, - 0,9484,9469,1,0,0,0,9484,9474,1,0,0,0,9485,9486,1,0,0,0,9486,9487, - 5,3,0,0,9487,1157,1,0,0,0,9488,9493,3,1160,580,0,9489,9490,5,6,0, - 0,9490,9492,3,1160,580,0,9491,9489,1,0,0,0,9492,9495,1,0,0,0,9493, - 9491,1,0,0,0,9493,9494,1,0,0,0,9494,1159,1,0,0,0,9495,9493,1,0,0, - 0,9496,9503,3,1476,738,0,9497,9499,3,1170,585,0,9498,9500,3,1162, - 581,0,9499,9498,1,0,0,0,9499,9500,1,0,0,0,9500,9504,1,0,0,0,9501, - 9502,5,62,0,0,9502,9504,5,473,0,0,9503,9497,1,0,0,0,9503,9501,1, - 0,0,0,9504,1161,1,0,0,0,9505,9507,3,1164,582,0,9506,9505,1,0,0,0, - 9507,9508,1,0,0,0,9508,9506,1,0,0,0,9508,9509,1,0,0,0,9509,1163, - 1,0,0,0,9510,9511,5,53,0,0,9511,9519,3,1214,607,0,9512,9513,3,1494, - 747,0,9513,9514,3,1214,607,0,9514,9519,1,0,0,0,9515,9516,5,77,0, - 0,9516,9519,5,78,0,0,9517,9519,5,78,0,0,9518,9510,1,0,0,0,9518,9512, - 1,0,0,0,9518,9515,1,0,0,0,9518,9517,1,0,0,0,9519,1165,1,0,0,0,9520, - 9525,3,1168,584,0,9521,9522,5,6,0,0,9522,9524,3,1168,584,0,9523, - 9521,1,0,0,0,9524,9527,1,0,0,0,9525,9523,1,0,0,0,9525,9526,1,0,0, - 0,9526,1167,1,0,0,0,9527,9525,1,0,0,0,9528,9529,3,1254,627,0,9529, - 9530,5,36,0,0,9530,9531,3,1492,746,0,9531,9535,1,0,0,0,9532,9533, - 5,53,0,0,9533,9535,3,1254,627,0,9534,9528,1,0,0,0,9534,9532,1,0, - 0,0,9535,1169,1,0,0,0,9536,9538,5,415,0,0,9537,9536,1,0,0,0,9537, - 9538,1,0,0,0,9538,9539,1,0,0,0,9539,9548,3,1174,587,0,9540,9549, - 3,1172,586,0,9541,9546,5,35,0,0,9542,9543,5,4,0,0,9543,9544,3,1458, - 729,0,9544,9545,5,5,0,0,9545,9547,1,0,0,0,9546,9542,1,0,0,0,9546, - 9547,1,0,0,0,9547,9549,1,0,0,0,9548,9540,1,0,0,0,9548,9541,1,0,0, - 0,9549,9555,1,0,0,0,9550,9551,3,1414,707,0,9551,9552,5,27,0,0,9552, - 9553,7,55,0,0,9553,9555,1,0,0,0,9554,9537,1,0,0,0,9554,9550,1,0, - 0,0,9555,1171,1,0,0,0,9556,9558,5,4,0,0,9557,9559,3,1458,729,0,9558, - 9557,1,0,0,0,9558,9559,1,0,0,0,9559,9560,1,0,0,0,9560,9562,5,5,0, - 0,9561,9556,1,0,0,0,9562,9565,1,0,0,0,9563,9561,1,0,0,0,9563,9564, - 1,0,0,0,9564,1173,1,0,0,0,9565,9563,1,0,0,0,9566,9582,3,1178,589, - 0,9567,9582,3,1182,591,0,9568,9582,3,1186,593,0,9569,9582,3,1194, - 597,0,9570,9582,3,1202,601,0,9571,9579,3,1204,602,0,9572,9574,3, - 1208,604,0,9573,9572,1,0,0,0,9573,9574,1,0,0,0,9574,9580,1,0,0,0, - 9575,9576,5,2,0,0,9576,9577,3,1458,729,0,9577,9578,5,3,0,0,9578, - 9580,1,0,0,0,9579,9573,1,0,0,0,9579,9575,1,0,0,0,9580,9582,1,0,0, - 0,9581,9566,1,0,0,0,9581,9567,1,0,0,0,9581,9568,1,0,0,0,9581,9569, - 1,0,0,0,9581,9570,1,0,0,0,9581,9571,1,0,0,0,9582,1175,1,0,0,0,9583, - 9588,3,1182,591,0,9584,9588,3,1188,594,0,9585,9588,3,1196,598,0, - 9586,9588,3,1202,601,0,9587,9583,1,0,0,0,9587,9584,1,0,0,0,9587, - 9585,1,0,0,0,9587,9586,1,0,0,0,9588,1177,1,0,0,0,9589,9591,3,1484, - 742,0,9590,9592,3,560,280,0,9591,9590,1,0,0,0,9591,9592,1,0,0,0, - 9592,9594,1,0,0,0,9593,9595,3,1180,590,0,9594,9593,1,0,0,0,9594, - 9595,1,0,0,0,9595,1179,1,0,0,0,9596,9597,5,2,0,0,9597,9598,3,1330, - 665,0,9598,9599,5,3,0,0,9599,1181,1,0,0,0,9600,9625,5,401,0,0,9601, - 9625,5,402,0,0,9602,9625,5,416,0,0,9603,9625,5,388,0,0,9604,9625, - 5,413,0,0,9605,9607,5,398,0,0,9606,9608,3,1184,592,0,9607,9606,1, - 0,0,0,9607,9608,1,0,0,0,9608,9625,1,0,0,0,9609,9610,5,190,0,0,9610, - 9625,5,412,0,0,9611,9613,5,395,0,0,9612,9614,3,1180,590,0,9613,9612, - 1,0,0,0,9613,9614,1,0,0,0,9614,9625,1,0,0,0,9615,9617,5,394,0,0, - 9616,9618,3,1180,590,0,9617,9616,1,0,0,0,9617,9618,1,0,0,0,9618, - 9625,1,0,0,0,9619,9621,5,409,0,0,9620,9622,3,1180,590,0,9621,9620, - 1,0,0,0,9621,9622,1,0,0,0,9622,9625,1,0,0,0,9623,9625,5,390,0,0, - 9624,9600,1,0,0,0,9624,9601,1,0,0,0,9624,9602,1,0,0,0,9624,9603, - 1,0,0,0,9624,9604,1,0,0,0,9624,9605,1,0,0,0,9624,9609,1,0,0,0,9624, - 9611,1,0,0,0,9624,9615,1,0,0,0,9624,9619,1,0,0,0,9624,9623,1,0,0, - 0,9625,1183,1,0,0,0,9626,9627,5,2,0,0,9627,9628,3,1458,729,0,9628, - 9629,5,3,0,0,9629,1185,1,0,0,0,9630,9633,3,1190,595,0,9631,9633, - 3,1192,596,0,9632,9630,1,0,0,0,9632,9631,1,0,0,0,9633,1187,1,0,0, - 0,9634,9637,3,1190,595,0,9635,9637,3,1192,596,0,9636,9634,1,0,0, - 0,9636,9635,1,0,0,0,9637,1189,1,0,0,0,9638,9640,5,389,0,0,9639,9641, - 3,1200,600,0,9640,9639,1,0,0,0,9640,9641,1,0,0,0,9641,9642,1,0,0, - 0,9642,9643,5,2,0,0,9643,9644,3,1330,665,0,9644,9645,5,3,0,0,9645, - 1191,1,0,0,0,9646,9648,5,389,0,0,9647,9649,3,1200,600,0,9648,9647, - 1,0,0,0,9648,9649,1,0,0,0,9649,1193,1,0,0,0,9650,9655,3,1198,599, - 0,9651,9652,5,2,0,0,9652,9653,3,1458,729,0,9653,9654,5,3,0,0,9654, - 9656,1,0,0,0,9655,9651,1,0,0,0,9655,9656,1,0,0,0,9656,1195,1,0,0, - 0,9657,9662,3,1198,599,0,9658,9659,5,2,0,0,9659,9660,3,1458,729, - 0,9660,9661,5,3,0,0,9661,9663,1,0,0,0,9662,9658,1,0,0,0,9662,9663, - 1,0,0,0,9663,1197,1,0,0,0,9664,9666,7,56,0,0,9665,9667,3,1200,600, - 0,9666,9665,1,0,0,0,9666,9667,1,0,0,0,9667,9675,1,0,0,0,9668,9675, - 5,423,0,0,9669,9670,5,405,0,0,9670,9672,7,57,0,0,9671,9673,3,1200, - 600,0,9672,9671,1,0,0,0,9672,9673,1,0,0,0,9673,9675,1,0,0,0,9674, - 9664,1,0,0,0,9674,9668,1,0,0,0,9674,9669,1,0,0,0,9675,1199,1,0,0, - 0,9676,9677,5,374,0,0,9677,1201,1,0,0,0,9678,9683,7,58,0,0,9679, - 9680,5,2,0,0,9680,9681,3,1458,729,0,9681,9682,5,3,0,0,9682,9684, - 1,0,0,0,9683,9679,1,0,0,0,9683,9684,1,0,0,0,9684,9686,1,0,0,0,9685, - 9687,3,1206,603,0,9686,9685,1,0,0,0,9686,9687,1,0,0,0,9687,1203, - 1,0,0,0,9688,9689,5,403,0,0,9689,1205,1,0,0,0,9690,9691,5,105,0, - 0,9691,9692,5,418,0,0,9692,9697,5,386,0,0,9693,9694,5,379,0,0,9694, - 9695,5,418,0,0,9695,9697,5,386,0,0,9696,9690,1,0,0,0,9696,9693,1, - 0,0,0,9697,1207,1,0,0,0,9698,9724,5,384,0,0,9699,9724,5,264,0,0, - 9700,9724,5,176,0,0,9701,9724,5,218,0,0,9702,9724,5,261,0,0,9703, - 9724,3,1210,605,0,9704,9705,5,384,0,0,9705,9706,5,94,0,0,9706,9724, - 5,264,0,0,9707,9708,5,176,0,0,9708,9712,5,94,0,0,9709,9713,5,218, - 0,0,9710,9713,5,261,0,0,9711,9713,3,1210,605,0,9712,9709,1,0,0,0, - 9712,9710,1,0,0,0,9712,9711,1,0,0,0,9713,9724,1,0,0,0,9714,9715, - 5,218,0,0,9715,9718,5,94,0,0,9716,9719,5,261,0,0,9717,9719,3,1210, - 605,0,9718,9716,1,0,0,0,9718,9717,1,0,0,0,9719,9724,1,0,0,0,9720, - 9721,5,261,0,0,9721,9722,5,94,0,0,9722,9724,3,1210,605,0,9723,9698, - 1,0,0,0,9723,9699,1,0,0,0,9723,9700,1,0,0,0,9723,9701,1,0,0,0,9723, - 9702,1,0,0,0,9723,9703,1,0,0,0,9723,9704,1,0,0,0,9723,9707,1,0,0, - 0,9723,9714,1,0,0,0,9723,9720,1,0,0,0,9724,1209,1,0,0,0,9725,9730, - 5,326,0,0,9726,9727,5,2,0,0,9727,9728,3,1458,729,0,9728,9729,5,3, - 0,0,9729,9731,1,0,0,0,9730,9726,1,0,0,0,9730,9731,1,0,0,0,9731,1211, - 1,0,0,0,9732,9733,5,197,0,0,9733,9734,3,1214,607,0,9734,1213,1,0, - 0,0,9735,9736,3,1216,608,0,9736,1215,1,0,0,0,9737,9739,3,1218,609, - 0,9738,9740,3,1324,662,0,9739,9738,1,0,0,0,9739,9740,1,0,0,0,9740, - 1217,1,0,0,0,9741,9746,3,1220,610,0,9742,9743,7,59,0,0,9743,9745, - 3,1220,610,0,9744,9742,1,0,0,0,9745,9748,1,0,0,0,9746,9744,1,0,0, - 0,9746,9747,1,0,0,0,9747,1219,1,0,0,0,9748,9746,1,0,0,0,9749,9754, - 3,1222,611,0,9750,9751,5,82,0,0,9751,9753,3,1222,611,0,9752,9750, - 1,0,0,0,9753,9756,1,0,0,0,9754,9752,1,0,0,0,9754,9755,1,0,0,0,9755, - 1221,1,0,0,0,9756,9754,1,0,0,0,9757,9762,3,1224,612,0,9758,9759, - 5,33,0,0,9759,9761,3,1224,612,0,9760,9758,1,0,0,0,9761,9764,1,0, - 0,0,9762,9760,1,0,0,0,9762,9763,1,0,0,0,9763,1223,1,0,0,0,9764,9762, - 1,0,0,0,9765,9771,3,1226,613,0,9766,9768,5,77,0,0,9767,9766,1,0, - 0,0,9767,9768,1,0,0,0,9768,9769,1,0,0,0,9769,9770,5,68,0,0,9770, - 9772,3,1364,682,0,9771,9767,1,0,0,0,9771,9772,1,0,0,0,9772,1225, - 1,0,0,0,9773,9775,5,77,0,0,9774,9773,1,0,0,0,9774,9775,1,0,0,0,9775, - 9776,1,0,0,0,9776,9777,3,1228,614,0,9777,1227,1,0,0,0,9778,9780, - 3,1230,615,0,9779,9781,7,60,0,0,9780,9779,1,0,0,0,9780,9781,1,0, - 0,0,9781,1229,1,0,0,0,9782,9806,3,1232,616,0,9783,9785,5,116,0,0, - 9784,9786,5,77,0,0,9785,9784,1,0,0,0,9785,9786,1,0,0,0,9786,9804, - 1,0,0,0,9787,9805,5,78,0,0,9788,9805,5,96,0,0,9789,9805,5,60,0,0, - 9790,9805,5,365,0,0,9791,9792,5,56,0,0,9792,9793,5,64,0,0,9793,9805, - 3,1214,607,0,9794,9795,5,275,0,0,9795,9796,5,2,0,0,9796,9797,3,1344, - 672,0,9797,9798,5,3,0,0,9798,9805,1,0,0,0,9799,9805,5,188,0,0,9800, - 9802,3,1354,677,0,9801,9800,1,0,0,0,9801,9802,1,0,0,0,9802,9803, - 1,0,0,0,9803,9805,5,478,0,0,9804,9787,1,0,0,0,9804,9788,1,0,0,0, - 9804,9789,1,0,0,0,9804,9790,1,0,0,0,9804,9791,1,0,0,0,9804,9794, - 1,0,0,0,9804,9799,1,0,0,0,9804,9801,1,0,0,0,9805,9807,1,0,0,0,9806, - 9783,1,0,0,0,9806,9807,1,0,0,0,9807,1231,1,0,0,0,9808,9820,3,1234, - 617,0,9809,9810,7,61,0,0,9810,9821,3,1234,617,0,9811,9812,3,1328, - 664,0,9812,9818,3,1318,659,0,9813,9819,3,1004,502,0,9814,9815,5, - 2,0,0,9815,9816,3,1214,607,0,9816,9817,5,3,0,0,9817,9819,1,0,0,0, - 9818,9813,1,0,0,0,9818,9814,1,0,0,0,9819,9821,1,0,0,0,9820,9809, - 1,0,0,0,9820,9811,1,0,0,0,9820,9821,1,0,0,0,9821,1233,1,0,0,0,9822, - 9840,3,1236,618,0,9823,9825,5,77,0,0,9824,9823,1,0,0,0,9824,9825, - 1,0,0,0,9825,9834,1,0,0,0,9826,9835,5,120,0,0,9827,9835,5,114,0, - 0,9828,9829,5,127,0,0,9829,9835,5,94,0,0,9830,9832,5,387,0,0,9831, - 9833,5,91,0,0,9832,9831,1,0,0,0,9832,9833,1,0,0,0,9833,9835,1,0, - 0,0,9834,9826,1,0,0,0,9834,9827,1,0,0,0,9834,9828,1,0,0,0,9834,9830, - 1,0,0,0,9835,9836,1,0,0,0,9836,9838,3,1236,618,0,9837,9839,3,1212, - 606,0,9838,9837,1,0,0,0,9838,9839,1,0,0,0,9839,9841,1,0,0,0,9840, - 9824,1,0,0,0,9840,9841,1,0,0,0,9841,1235,1,0,0,0,9842,9848,3,1238, - 619,0,9843,9844,3,1324,662,0,9844,9845,3,1238,619,0,9845,9847,1, - 0,0,0,9846,9843,1,0,0,0,9847,9850,1,0,0,0,9848,9846,1,0,0,0,9848, - 9849,1,0,0,0,9849,1237,1,0,0,0,9850,9848,1,0,0,0,9851,9853,3,1324, - 662,0,9852,9851,1,0,0,0,9852,9853,1,0,0,0,9853,9854,1,0,0,0,9854, - 9855,3,1240,620,0,9855,1239,1,0,0,0,9856,9861,3,1242,621,0,9857, - 9858,7,62,0,0,9858,9860,3,1242,621,0,9859,9857,1,0,0,0,9860,9863, - 1,0,0,0,9861,9859,1,0,0,0,9861,9862,1,0,0,0,9862,1241,1,0,0,0,9863, - 9861,1,0,0,0,9864,9869,3,1244,622,0,9865,9866,7,63,0,0,9866,9868, - 3,1244,622,0,9867,9865,1,0,0,0,9868,9871,1,0,0,0,9869,9867,1,0,0, - 0,9869,9870,1,0,0,0,9870,1243,1,0,0,0,9871,9869,1,0,0,0,9872,9875, - 3,1246,623,0,9873,9874,5,15,0,0,9874,9876,3,1214,607,0,9875,9873, - 1,0,0,0,9875,9876,1,0,0,0,9876,1245,1,0,0,0,9877,9879,7,62,0,0,9878, - 9877,1,0,0,0,9878,9879,1,0,0,0,9879,9880,1,0,0,0,9880,9881,3,1248, - 624,0,9881,1247,1,0,0,0,9882,9887,3,1250,625,0,9883,9884,5,142,0, - 0,9884,9885,5,418,0,0,9885,9886,5,386,0,0,9886,9888,3,1214,607,0, - 9887,9883,1,0,0,0,9887,9888,1,0,0,0,9888,1249,1,0,0,0,9889,9892, - 3,1252,626,0,9890,9891,5,43,0,0,9891,9893,3,558,279,0,9892,9890, - 1,0,0,0,9892,9893,1,0,0,0,9893,1251,1,0,0,0,9894,9899,3,1256,628, - 0,9895,9896,5,26,0,0,9896,9898,3,1170,585,0,9897,9895,1,0,0,0,9898, - 9901,1,0,0,0,9899,9897,1,0,0,0,9899,9900,1,0,0,0,9900,1253,1,0,0, - 0,9901,9899,1,0,0,0,9902,9903,6,627,-1,0,9903,9910,3,1256,628,0, - 9904,9905,7,62,0,0,9905,9910,3,1254,627,9,9906,9907,3,1324,662,0, - 9907,9908,3,1254,627,3,9908,9910,1,0,0,0,9909,9902,1,0,0,0,9909, - 9904,1,0,0,0,9909,9906,1,0,0,0,9910,9950,1,0,0,0,9911,9912,10,8, - 0,0,9912,9913,5,15,0,0,9913,9949,3,1254,627,9,9914,9915,10,7,0,0, - 9915,9916,7,63,0,0,9916,9949,3,1254,627,8,9917,9918,10,6,0,0,9918, - 9919,7,62,0,0,9919,9949,3,1254,627,7,9920,9921,10,5,0,0,9921,9922, - 3,1324,662,0,9922,9923,3,1254,627,6,9923,9949,1,0,0,0,9924,9925, - 10,4,0,0,9925,9926,7,61,0,0,9926,9949,3,1254,627,5,9927,9928,10, - 10,0,0,9928,9929,5,26,0,0,9929,9949,3,1170,585,0,9930,9931,10,2, - 0,0,9931,9949,3,1324,662,0,9932,9933,10,1,0,0,9933,9935,5,116,0, - 0,9934,9936,5,77,0,0,9935,9934,1,0,0,0,9935,9936,1,0,0,0,9936,9946, - 1,0,0,0,9937,9938,5,56,0,0,9938,9939,5,64,0,0,9939,9947,3,1254,627, - 0,9940,9941,5,275,0,0,9941,9942,5,2,0,0,9942,9943,3,1344,672,0,9943, - 9944,5,3,0,0,9944,9947,1,0,0,0,9945,9947,5,188,0,0,9946,9937,1,0, - 0,0,9946,9940,1,0,0,0,9946,9945,1,0,0,0,9947,9949,1,0,0,0,9948,9911, - 1,0,0,0,9948,9914,1,0,0,0,9948,9917,1,0,0,0,9948,9920,1,0,0,0,9948, - 9924,1,0,0,0,9948,9927,1,0,0,0,9948,9930,1,0,0,0,9948,9932,1,0,0, - 0,9949,9952,1,0,0,0,9950,9948,1,0,0,0,9950,9951,1,0,0,0,9951,1255, - 1,0,0,0,9952,9950,1,0,0,0,9953,9954,5,396,0,0,9954,9990,3,1004,502, - 0,9955,9958,5,35,0,0,9956,9959,3,1004,502,0,9957,9959,3,1346,673, - 0,9958,9956,1,0,0,0,9958,9957,1,0,0,0,9959,9990,1,0,0,0,9960,9961, - 5,28,0,0,9961,9990,3,1384,692,0,9962,9963,5,470,0,0,9963,9964,5, - 2,0,0,9964,9965,3,1330,665,0,9965,9966,5,3,0,0,9966,9990,1,0,0,0, - 9967,9968,5,98,0,0,9968,9990,3,1004,502,0,9969,9990,3,1376,688,0, - 9970,9990,3,1450,725,0,9971,9990,3,1258,629,0,9972,9973,5,2,0,0, - 9973,9974,3,1214,607,0,9974,9975,5,3,0,0,9975,9976,3,1384,692,0, - 9976,9990,1,0,0,0,9977,9990,3,1366,683,0,9978,9990,3,1262,631,0, - 9979,9981,3,1004,502,0,9980,9982,3,1382,691,0,9981,9980,1,0,0,0, - 9981,9982,1,0,0,0,9982,9990,1,0,0,0,9983,9990,3,1314,657,0,9984, - 9990,3,1316,658,0,9985,9986,3,1312,656,0,9986,9987,5,125,0,0,9987, - 9988,3,1312,656,0,9988,9990,1,0,0,0,9989,9953,1,0,0,0,9989,9955, - 1,0,0,0,9989,9960,1,0,0,0,9989,9962,1,0,0,0,9989,9967,1,0,0,0,9989, - 9969,1,0,0,0,9989,9970,1,0,0,0,9989,9971,1,0,0,0,9989,9972,1,0,0, - 0,9989,9977,1,0,0,0,9989,9978,1,0,0,0,9989,9979,1,0,0,0,9989,9983, - 1,0,0,0,9989,9984,1,0,0,0,9989,9985,1,0,0,0,9990,1257,1,0,0,0,9991, - 9992,5,574,0,0,9992,1259,1,0,0,0,9993,10019,3,1446,723,0,9994,10016, - 5,2,0,0,9995,9999,3,1340,670,0,9996,9997,5,6,0,0,9997,9998,5,101, - 0,0,9998,10000,3,1342,671,0,9999,9996,1,0,0,0,9999,10000,1,0,0,0, - 10000,10002,1,0,0,0,10001,10003,3,1044,522,0,10002,10001,1,0,0,0, - 10002,10003,1,0,0,0,10003,10017,1,0,0,0,10004,10005,5,101,0,0,10005, - 10007,3,1342,671,0,10006,10008,3,1044,522,0,10007,10006,1,0,0,0, - 10007,10008,1,0,0,0,10008,10017,1,0,0,0,10009,10010,7,51,0,0,10010, - 10012,3,1340,670,0,10011,10013,3,1044,522,0,10012,10011,1,0,0,0, - 10012,10013,1,0,0,0,10013,10017,1,0,0,0,10014,10017,5,9,0,0,10015, - 10017,1,0,0,0,10016,9995,1,0,0,0,10016,10004,1,0,0,0,10016,10009, - 1,0,0,0,10016,10014,1,0,0,0,10016,10015,1,0,0,0,10017,10018,1,0, - 0,0,10018,10020,5,3,0,0,10019,9994,1,0,0,0,10019,10020,1,0,0,0,10020, - 1261,1,0,0,0,10021,10023,3,1260,630,0,10022,10024,3,1286,643,0,10023, - 10022,1,0,0,0,10023,10024,1,0,0,0,10024,10026,1,0,0,0,10025,10027, - 3,1288,644,0,10026,10025,1,0,0,0,10026,10027,1,0,0,0,10027,10029, - 1,0,0,0,10028,10030,3,1296,648,0,10029,10028,1,0,0,0,10029,10030, - 1,0,0,0,10030,10033,1,0,0,0,10031,10033,3,1266,633,0,10032,10021, - 1,0,0,0,10032,10031,1,0,0,0,10033,1263,1,0,0,0,10034,10037,3,1260, - 630,0,10035,10037,3,1266,633,0,10036,10034,1,0,0,0,10036,10035,1, - 0,0,0,10037,1265,1,0,0,0,10038,10039,5,108,0,0,10039,10040,5,62, - 0,0,10040,10041,5,2,0,0,10041,10042,3,1214,607,0,10042,10043,5,3, - 0,0,10043,10223,1,0,0,0,10044,10223,5,48,0,0,10045,10050,5,50,0, - 0,10046,10047,5,2,0,0,10047,10048,3,1458,729,0,10048,10049,5,3,0, - 0,10049,10051,1,0,0,0,10050,10046,1,0,0,0,10050,10051,1,0,0,0,10051, - 10223,1,0,0,0,10052,10057,5,51,0,0,10053,10054,5,2,0,0,10054,10055, - 3,1458,729,0,10055,10056,5,3,0,0,10056,10058,1,0,0,0,10057,10053, - 1,0,0,0,10057,10058,1,0,0,0,10058,10223,1,0,0,0,10059,10064,5,75, - 0,0,10060,10061,5,2,0,0,10061,10062,3,1458,729,0,10062,10063,5,3, - 0,0,10063,10065,1,0,0,0,10064,10060,1,0,0,0,10064,10065,1,0,0,0, - 10065,10223,1,0,0,0,10066,10071,5,76,0,0,10067,10068,5,2,0,0,10068, - 10069,3,1458,729,0,10069,10070,5,3,0,0,10070,10072,1,0,0,0,10071, - 10067,1,0,0,0,10071,10072,1,0,0,0,10072,10223,1,0,0,0,10073,10223, - 5,49,0,0,10074,10223,5,52,0,0,10075,10223,5,89,0,0,10076,10223,5, - 99,0,0,10077,10223,5,47,0,0,10078,10223,5,111,0,0,10079,10080,5, - 41,0,0,10080,10081,5,2,0,0,10081,10082,3,1214,607,0,10082,10083, - 5,36,0,0,10083,10084,3,1170,585,0,10084,10085,5,3,0,0,10085,10223, - 1,0,0,0,10086,10087,5,397,0,0,10087,10089,5,2,0,0,10088,10090,3, - 1350,675,0,10089,10088,1,0,0,0,10089,10090,1,0,0,0,10090,10091,1, - 0,0,0,10091,10223,5,3,0,0,10092,10093,5,489,0,0,10093,10094,5,2, - 0,0,10094,10097,3,1214,607,0,10095,10096,5,6,0,0,10096,10098,3,1354, - 677,0,10097,10095,1,0,0,0,10097,10098,1,0,0,0,10098,10099,1,0,0, - 0,10099,10100,5,3,0,0,10100,10223,1,0,0,0,10101,10102,5,410,0,0, - 10102,10103,5,2,0,0,10103,10104,3,1356,678,0,10104,10105,5,3,0,0, - 10105,10223,1,0,0,0,10106,10107,5,411,0,0,10107,10109,5,2,0,0,10108, - 10110,3,1358,679,0,10109,10108,1,0,0,0,10109,10110,1,0,0,0,10110, - 10111,1,0,0,0,10111,10223,5,3,0,0,10112,10113,5,417,0,0,10113,10115, - 5,2,0,0,10114,10116,3,1360,680,0,10115,10114,1,0,0,0,10115,10116, - 1,0,0,0,10116,10117,1,0,0,0,10117,10223,5,3,0,0,10118,10119,5,420, - 0,0,10119,10120,5,2,0,0,10120,10121,3,1214,607,0,10121,10122,5,36, - 0,0,10122,10123,3,1170,585,0,10123,10124,5,3,0,0,10124,10223,1,0, - 0,0,10125,10126,5,421,0,0,10126,10128,5,2,0,0,10127,10129,7,64,0, - 0,10128,10127,1,0,0,0,10128,10129,1,0,0,0,10129,10130,1,0,0,0,10130, - 10131,3,1362,681,0,10131,10132,5,3,0,0,10132,10223,1,0,0,0,10133, - 10134,5,408,0,0,10134,10135,5,2,0,0,10135,10136,3,1214,607,0,10136, - 10137,5,6,0,0,10137,10138,3,1214,607,0,10138,10139,5,3,0,0,10139, - 10223,1,0,0,0,10140,10141,5,393,0,0,10141,10142,5,2,0,0,10142,10143, - 3,1330,665,0,10143,10144,5,3,0,0,10144,10223,1,0,0,0,10145,10146, - 5,399,0,0,10146,10147,5,2,0,0,10147,10148,3,1330,665,0,10148,10149, - 5,3,0,0,10149,10223,1,0,0,0,10150,10151,5,404,0,0,10151,10152,5, - 2,0,0,10152,10153,3,1330,665,0,10153,10154,5,3,0,0,10154,10223,1, - 0,0,0,10155,10156,5,425,0,0,10156,10157,5,2,0,0,10157,10158,3,1330, - 665,0,10158,10159,5,3,0,0,10159,10223,1,0,0,0,10160,10161,5,426, - 0,0,10161,10162,5,2,0,0,10162,10163,5,266,0,0,10163,10169,3,1492, - 746,0,10164,10167,5,6,0,0,10165,10168,3,1272,636,0,10166,10168,3, - 1330,665,0,10167,10165,1,0,0,0,10167,10166,1,0,0,0,10168,10170,1, - 0,0,0,10169,10164,1,0,0,0,10169,10170,1,0,0,0,10170,10171,1,0,0, - 0,10171,10172,5,3,0,0,10172,10223,1,0,0,0,10173,10174,5,427,0,0, - 10174,10175,5,2,0,0,10175,10176,3,1256,628,0,10176,10177,3,1282, - 641,0,10177,10178,5,3,0,0,10178,10223,1,0,0,0,10179,10180,5,428, - 0,0,10180,10181,5,2,0,0,10181,10182,3,1274,637,0,10182,10183,5,3, - 0,0,10183,10223,1,0,0,0,10184,10185,5,429,0,0,10185,10186,5,2,0, - 0,10186,10187,3,1278,639,0,10187,10189,3,1214,607,0,10188,10190, - 3,1280,640,0,10189,10188,1,0,0,0,10189,10190,1,0,0,0,10190,10191, - 1,0,0,0,10191,10192,5,3,0,0,10192,10223,1,0,0,0,10193,10194,5,430, - 0,0,10194,10195,5,2,0,0,10195,10196,5,266,0,0,10196,10199,3,1492, - 746,0,10197,10198,5,6,0,0,10198,10200,3,1214,607,0,10199,10197,1, - 0,0,0,10199,10200,1,0,0,0,10200,10201,1,0,0,0,10201,10202,5,3,0, - 0,10202,10223,1,0,0,0,10203,10204,5,431,0,0,10204,10205,5,2,0,0, - 10205,10206,5,383,0,0,10206,10207,3,1214,607,0,10207,10208,5,6,0, - 0,10208,10210,3,1268,634,0,10209,10211,3,1270,635,0,10210,10209, - 1,0,0,0,10210,10211,1,0,0,0,10211,10212,1,0,0,0,10212,10213,5,3, - 0,0,10213,10223,1,0,0,0,10214,10215,5,432,0,0,10215,10216,5,2,0, - 0,10216,10217,3,1278,639,0,10217,10218,3,1214,607,0,10218,10219, - 5,36,0,0,10219,10220,3,1174,587,0,10220,10221,5,3,0,0,10221,10223, - 1,0,0,0,10222,10038,1,0,0,0,10222,10044,1,0,0,0,10222,10045,1,0, - 0,0,10222,10052,1,0,0,0,10222,10059,1,0,0,0,10222,10066,1,0,0,0, - 10222,10073,1,0,0,0,10222,10074,1,0,0,0,10222,10075,1,0,0,0,10222, - 10076,1,0,0,0,10222,10077,1,0,0,0,10222,10078,1,0,0,0,10222,10079, - 1,0,0,0,10222,10086,1,0,0,0,10222,10092,1,0,0,0,10222,10101,1,0, - 0,0,10222,10106,1,0,0,0,10222,10112,1,0,0,0,10222,10118,1,0,0,0, - 10222,10125,1,0,0,0,10222,10133,1,0,0,0,10222,10140,1,0,0,0,10222, - 10145,1,0,0,0,10222,10150,1,0,0,0,10222,10155,1,0,0,0,10222,10160, - 1,0,0,0,10222,10173,1,0,0,0,10222,10179,1,0,0,0,10222,10184,1,0, - 0,0,10222,10193,1,0,0,0,10222,10203,1,0,0,0,10222,10214,1,0,0,0, - 10223,1267,1,0,0,0,10224,10225,5,375,0,0,10225,10230,3,1214,607, - 0,10226,10227,5,375,0,0,10227,10228,5,269,0,0,10228,10230,5,450, - 0,0,10229,10224,1,0,0,0,10229,10226,1,0,0,0,10230,1269,1,0,0,0,10231, - 10232,5,6,0,0,10232,10233,5,339,0,0,10233,10242,5,385,0,0,10234, - 10235,5,6,0,0,10235,10236,5,339,0,0,10236,10242,5,269,0,0,10237, - 10238,5,6,0,0,10238,10239,5,339,0,0,10239,10240,5,269,0,0,10240, - 10242,5,450,0,0,10241,10231,1,0,0,0,10241,10234,1,0,0,0,10241,10237, - 1,0,0,0,10242,1271,1,0,0,0,10243,10244,5,424,0,0,10244,10245,5,2, - 0,0,10245,10246,3,1274,637,0,10246,10247,5,3,0,0,10247,1273,1,0, - 0,0,10248,10253,3,1276,638,0,10249,10250,5,6,0,0,10250,10252,3,1276, - 638,0,10251,10249,1,0,0,0,10252,10255,1,0,0,0,10253,10251,1,0,0, - 0,10253,10254,1,0,0,0,10254,1275,1,0,0,0,10255,10253,1,0,0,0,10256, - 10259,3,1214,607,0,10257,10258,5,36,0,0,10258,10260,3,1492,746,0, - 10259,10257,1,0,0,0,10259,10260,1,0,0,0,10260,1277,1,0,0,0,10261, - 10262,7,65,0,0,10262,1279,1,0,0,0,10263,10264,5,292,0,0,10264,10268, - 5,378,0,0,10265,10266,5,347,0,0,10266,10268,5,378,0,0,10267,10263, - 1,0,0,0,10267,10265,1,0,0,0,10268,1281,1,0,0,0,10269,10270,5,286, - 0,0,10270,10285,3,1256,628,0,10271,10272,5,286,0,0,10272,10273,3, - 1256,628,0,10273,10274,3,1284,642,0,10274,10285,1,0,0,0,10275,10276, - 5,286,0,0,10276,10277,3,1284,642,0,10277,10278,3,1256,628,0,10278, - 10285,1,0,0,0,10279,10280,5,286,0,0,10280,10281,3,1284,642,0,10281, - 10282,3,1256,628,0,10282,10283,3,1284,642,0,10283,10285,1,0,0,0, - 10284,10269,1,0,0,0,10284,10271,1,0,0,0,10284,10275,1,0,0,0,10284, - 10279,1,0,0,0,10285,1283,1,0,0,0,10286,10287,5,147,0,0,10287,10288, - 7,66,0,0,10288,1285,1,0,0,0,10289,10290,5,479,0,0,10290,10291,5, - 66,0,0,10291,10292,5,2,0,0,10292,10293,3,1046,523,0,10293,10294, - 5,3,0,0,10294,1287,1,0,0,0,10295,10296,5,480,0,0,10296,10297,5,2, - 0,0,10297,10298,5,103,0,0,10298,10299,3,1214,607,0,10299,10300,5, - 3,0,0,10300,1289,1,0,0,0,10301,10302,5,104,0,0,10302,10303,3,1292, - 646,0,10303,1291,1,0,0,0,10304,10309,3,1294,647,0,10305,10306,5, - 6,0,0,10306,10308,3,1294,647,0,10307,10305,1,0,0,0,10308,10311,1, - 0,0,0,10309,10307,1,0,0,0,10309,10310,1,0,0,0,10310,1293,1,0,0,0, - 10311,10309,1,0,0,0,10312,10313,3,1476,738,0,10313,10314,5,36,0, - 0,10314,10315,3,1298,649,0,10315,1295,1,0,0,0,10316,10319,5,124, - 0,0,10317,10320,3,1298,649,0,10318,10320,3,1476,738,0,10319,10317, - 1,0,0,0,10319,10318,1,0,0,0,10320,1297,1,0,0,0,10321,10323,5,2,0, - 0,10322,10324,3,1300,650,0,10323,10322,1,0,0,0,10323,10324,1,0,0, - 0,10324,10326,1,0,0,0,10325,10327,3,1302,651,0,10326,10325,1,0,0, - 0,10326,10327,1,0,0,0,10327,10329,1,0,0,0,10328,10330,3,1044,522, - 0,10329,10328,1,0,0,0,10329,10330,1,0,0,0,10330,10332,1,0,0,0,10331, - 10333,3,1304,652,0,10332,10331,1,0,0,0,10332,10333,1,0,0,0,10333, - 10334,1,0,0,0,10334,10335,5,3,0,0,10335,1299,1,0,0,0,10336,10337, - 3,1476,738,0,10337,1301,1,0,0,0,10338,10339,5,285,0,0,10339,10340, - 5,147,0,0,10340,10341,3,1330,665,0,10341,1303,1,0,0,0,10342,10343, - 5,299,0,0,10343,10345,3,1306,653,0,10344,10346,3,1310,655,0,10345, - 10344,1,0,0,0,10345,10346,1,0,0,0,10346,10358,1,0,0,0,10347,10348, - 5,320,0,0,10348,10350,3,1306,653,0,10349,10351,3,1310,655,0,10350, - 10349,1,0,0,0,10350,10351,1,0,0,0,10351,10358,1,0,0,0,10352,10353, - 5,481,0,0,10353,10355,3,1306,653,0,10354,10356,3,1310,655,0,10355, - 10354,1,0,0,0,10355,10356,1,0,0,0,10356,10358,1,0,0,0,10357,10342, - 1,0,0,0,10357,10347,1,0,0,0,10357,10352,1,0,0,0,10358,1305,1,0,0, - 0,10359,10366,3,1308,654,0,10360,10361,5,387,0,0,10361,10362,3,1308, - 654,0,10362,10363,5,33,0,0,10363,10364,3,1308,654,0,10364,10366, - 1,0,0,0,10365,10359,1,0,0,0,10365,10360,1,0,0,0,10366,1307,1,0,0, - 0,10367,10368,5,362,0,0,10368,10375,7,67,0,0,10369,10370,5,434,0, - 0,10370,10375,5,414,0,0,10371,10372,3,1214,607,0,10372,10373,7,67, - 0,0,10373,10375,1,0,0,0,10374,10367,1,0,0,0,10374,10369,1,0,0,0, - 10374,10371,1,0,0,0,10375,1309,1,0,0,0,10376,10383,5,199,0,0,10377, - 10378,5,434,0,0,10378,10384,5,414,0,0,10379,10384,5,66,0,0,10380, - 10384,5,467,0,0,10381,10382,5,269,0,0,10382,10384,5,482,0,0,10383, - 10377,1,0,0,0,10383,10379,1,0,0,0,10383,10380,1,0,0,0,10383,10381, - 1,0,0,0,10384,1311,1,0,0,0,10385,10386,5,414,0,0,10386,10388,5,2, - 0,0,10387,10389,3,1330,665,0,10388,10387,1,0,0,0,10388,10389,1,0, - 0,0,10389,10390,1,0,0,0,10390,10398,5,3,0,0,10391,10392,5,2,0,0, - 10392,10393,3,1330,665,0,10393,10394,5,6,0,0,10394,10395,3,1214, - 607,0,10395,10396,5,3,0,0,10396,10398,1,0,0,0,10397,10385,1,0,0, - 0,10397,10391,1,0,0,0,10398,1313,1,0,0,0,10399,10400,5,414,0,0,10400, - 10402,5,2,0,0,10401,10403,3,1330,665,0,10402,10401,1,0,0,0,10402, - 10403,1,0,0,0,10403,10404,1,0,0,0,10404,10405,5,3,0,0,10405,1315, - 1,0,0,0,10406,10407,5,2,0,0,10407,10408,3,1330,665,0,10408,10409, - 5,6,0,0,10409,10410,3,1214,607,0,10410,10411,5,3,0,0,10411,1317, - 1,0,0,0,10412,10413,7,68,0,0,10413,1319,1,0,0,0,10414,10417,5,29, - 0,0,10415,10417,3,1322,661,0,10416,10414,1,0,0,0,10416,10415,1,0, - 0,0,10417,1321,1,0,0,0,10418,10419,7,69,0,0,10419,1323,1,0,0,0,10420, - 10427,5,29,0,0,10421,10422,5,278,0,0,10422,10423,5,2,0,0,10423,10424, - 3,732,366,0,10424,10425,5,3,0,0,10425,10427,1,0,0,0,10426,10420, - 1,0,0,0,10426,10421,1,0,0,0,10427,1325,1,0,0,0,10428,10435,3,1320, - 660,0,10429,10430,5,278,0,0,10430,10431,5,2,0,0,10431,10432,3,732, - 366,0,10432,10433,5,3,0,0,10433,10435,1,0,0,0,10434,10428,1,0,0, - 0,10434,10429,1,0,0,0,10435,1327,1,0,0,0,10436,10449,3,1320,660, - 0,10437,10438,5,278,0,0,10438,10439,5,2,0,0,10439,10440,3,732,366, - 0,10440,10441,5,3,0,0,10441,10449,1,0,0,0,10442,10449,5,120,0,0, - 10443,10444,5,77,0,0,10444,10449,5,120,0,0,10445,10449,5,114,0,0, - 10446,10447,5,77,0,0,10447,10449,5,114,0,0,10448,10436,1,0,0,0,10448, - 10437,1,0,0,0,10448,10442,1,0,0,0,10448,10443,1,0,0,0,10448,10445, - 1,0,0,0,10448,10446,1,0,0,0,10449,1329,1,0,0,0,10450,10455,3,1214, - 607,0,10451,10452,5,6,0,0,10452,10454,3,1214,607,0,10453,10451,1, - 0,0,0,10454,10457,1,0,0,0,10455,10453,1,0,0,0,10455,10456,1,0,0, - 0,10456,1331,1,0,0,0,10457,10455,1,0,0,0,10458,10463,3,1338,669, - 0,10459,10460,5,6,0,0,10460,10462,3,1338,669,0,10461,10459,1,0,0, - 0,10462,10465,1,0,0,0,10463,10461,1,0,0,0,10463,10464,1,0,0,0,10464, - 1333,1,0,0,0,10465,10463,1,0,0,0,10466,10471,3,1336,668,0,10467, - 10468,5,6,0,0,10468,10470,3,1336,668,0,10469,10467,1,0,0,0,10470, - 10473,1,0,0,0,10471,10469,1,0,0,0,10471,10472,1,0,0,0,10472,1335, - 1,0,0,0,10473,10471,1,0,0,0,10474,10480,3,1434,717,0,10475,10476, - 5,2,0,0,10476,10477,3,1214,607,0,10477,10478,5,3,0,0,10478,10480, - 1,0,0,0,10479,10474,1,0,0,0,10479,10475,1,0,0,0,10480,1337,1,0,0, - 0,10481,10484,3,1434,717,0,10482,10484,3,1214,607,0,10483,10481, - 1,0,0,0,10483,10482,1,0,0,0,10484,1339,1,0,0,0,10485,10490,3,1342, - 671,0,10486,10487,5,6,0,0,10487,10489,3,1342,671,0,10488,10486,1, - 0,0,0,10489,10492,1,0,0,0,10490,10488,1,0,0,0,10490,10491,1,0,0, - 0,10491,1341,1,0,0,0,10492,10490,1,0,0,0,10493,10499,3,1214,607, - 0,10494,10495,3,684,342,0,10495,10496,7,70,0,0,10496,10497,3,1214, - 607,0,10497,10499,1,0,0,0,10498,10493,1,0,0,0,10498,10494,1,0,0, - 0,10499,1343,1,0,0,0,10500,10505,3,1170,585,0,10501,10502,5,6,0, - 0,10502,10504,3,1170,585,0,10503,10501,1,0,0,0,10504,10507,1,0,0, - 0,10505,10503,1,0,0,0,10505,10506,1,0,0,0,10506,1345,1,0,0,0,10507, - 10505,1,0,0,0,10508,10511,5,4,0,0,10509,10512,3,1330,665,0,10510, - 10512,3,1348,674,0,10511,10509,1,0,0,0,10511,10510,1,0,0,0,10511, - 10512,1,0,0,0,10512,10513,1,0,0,0,10513,10514,5,5,0,0,10514,1347, - 1,0,0,0,10515,10520,3,1346,673,0,10516,10517,5,6,0,0,10517,10519, - 3,1346,673,0,10518,10516,1,0,0,0,10519,10522,1,0,0,0,10520,10518, - 1,0,0,0,10520,10521,1,0,0,0,10521,1349,1,0,0,0,10522,10520,1,0,0, - 0,10523,10524,3,1352,676,0,10524,10525,5,64,0,0,10525,10526,3,1214, - 607,0,10526,1351,1,0,0,0,10527,10536,3,1494,747,0,10528,10536,5, - 384,0,0,10529,10536,5,264,0,0,10530,10536,5,176,0,0,10531,10536, - 5,218,0,0,10532,10536,5,261,0,0,10533,10536,5,326,0,0,10534,10536, - 3,1460,730,0,10535,10527,1,0,0,0,10535,10528,1,0,0,0,10535,10529, - 1,0,0,0,10535,10530,1,0,0,0,10535,10531,1,0,0,0,10535,10532,1,0, - 0,0,10535,10533,1,0,0,0,10535,10534,1,0,0,0,10536,1353,1,0,0,0,10537, - 10538,7,71,0,0,10538,1355,1,0,0,0,10539,10540,3,1214,607,0,10540, - 10541,5,84,0,0,10541,10542,3,1214,607,0,10542,10543,5,64,0,0,10543, - 10546,3,1214,607,0,10544,10545,5,62,0,0,10545,10547,3,1214,607,0, - 10546,10544,1,0,0,0,10546,10547,1,0,0,0,10547,1357,1,0,0,0,10548, - 10549,3,1254,627,0,10549,10550,5,68,0,0,10550,10551,3,1254,627,0, - 10551,1359,1,0,0,0,10552,10553,3,1214,607,0,10553,10554,5,64,0,0, - 10554,10555,3,1214,607,0,10555,10556,5,62,0,0,10556,10557,3,1214, - 607,0,10557,10580,1,0,0,0,10558,10559,3,1214,607,0,10559,10560,5, - 62,0,0,10560,10561,3,1214,607,0,10561,10562,5,64,0,0,10562,10563, - 3,1214,607,0,10563,10580,1,0,0,0,10564,10565,3,1214,607,0,10565, - 10566,5,64,0,0,10566,10567,3,1214,607,0,10567,10580,1,0,0,0,10568, - 10569,3,1214,607,0,10569,10570,5,62,0,0,10570,10571,3,1214,607,0, - 10571,10580,1,0,0,0,10572,10573,3,1214,607,0,10573,10574,5,127,0, - 0,10574,10575,3,1214,607,0,10575,10576,5,197,0,0,10576,10577,3,1214, - 607,0,10577,10580,1,0,0,0,10578,10580,3,1330,665,0,10579,10552,1, - 0,0,0,10579,10558,1,0,0,0,10579,10564,1,0,0,0,10579,10568,1,0,0, - 0,10579,10572,1,0,0,0,10579,10578,1,0,0,0,10580,1361,1,0,0,0,10581, - 10582,3,1214,607,0,10582,10583,5,64,0,0,10583,10584,3,1330,665,0, - 10584,10589,1,0,0,0,10585,10586,5,64,0,0,10586,10589,3,1330,665, - 0,10587,10589,3,1330,665,0,10588,10581,1,0,0,0,10588,10585,1,0,0, - 0,10588,10587,1,0,0,0,10589,1363,1,0,0,0,10590,10596,3,1004,502, - 0,10591,10592,5,2,0,0,10592,10593,3,1330,665,0,10593,10594,5,3,0, - 0,10594,10596,1,0,0,0,10595,10590,1,0,0,0,10595,10591,1,0,0,0,10596, - 1365,1,0,0,0,10597,10599,5,40,0,0,10598,10600,3,1374,687,0,10599, - 10598,1,0,0,0,10599,10600,1,0,0,0,10600,10601,1,0,0,0,10601,10603, - 3,1368,684,0,10602,10604,3,1372,686,0,10603,10602,1,0,0,0,10603, - 10604,1,0,0,0,10604,10605,1,0,0,0,10605,10606,5,454,0,0,10606,1367, - 1,0,0,0,10607,10609,3,1370,685,0,10608,10607,1,0,0,0,10609,10610, - 1,0,0,0,10610,10608,1,0,0,0,10610,10611,1,0,0,0,10611,1369,1,0,0, - 0,10612,10613,5,102,0,0,10613,10614,3,1214,607,0,10614,10615,5,93, - 0,0,10615,10616,3,1214,607,0,10616,1371,1,0,0,0,10617,10618,5,58, - 0,0,10618,10619,3,1214,607,0,10619,1373,1,0,0,0,10620,10621,3,1214, - 607,0,10621,1375,1,0,0,0,10622,10624,3,1476,738,0,10623,10625,3, - 1382,691,0,10624,10623,1,0,0,0,10624,10625,1,0,0,0,10625,1377,1, - 0,0,0,10626,10629,5,11,0,0,10627,10630,3,1440,720,0,10628,10630, - 5,9,0,0,10629,10627,1,0,0,0,10629,10628,1,0,0,0,10630,10644,1,0, - 0,0,10631,10640,5,4,0,0,10632,10641,3,1214,607,0,10633,10635,3,1380, - 690,0,10634,10633,1,0,0,0,10634,10635,1,0,0,0,10635,10636,1,0,0, - 0,10636,10638,5,8,0,0,10637,10639,3,1380,690,0,10638,10637,1,0,0, - 0,10638,10639,1,0,0,0,10639,10641,1,0,0,0,10640,10632,1,0,0,0,10640, - 10634,1,0,0,0,10641,10642,1,0,0,0,10642,10644,5,5,0,0,10643,10626, - 1,0,0,0,10643,10631,1,0,0,0,10644,1379,1,0,0,0,10645,10646,3,1214, - 607,0,10646,1381,1,0,0,0,10647,10649,3,1378,689,0,10648,10647,1, - 0,0,0,10649,10650,1,0,0,0,10650,10648,1,0,0,0,10650,10651,1,0,0, - 0,10651,1383,1,0,0,0,10652,10654,3,1378,689,0,10653,10652,1,0,0, - 0,10654,10657,1,0,0,0,10655,10653,1,0,0,0,10655,10656,1,0,0,0,10656, - 1385,1,0,0,0,10657,10655,1,0,0,0,10658,10659,3,1388,694,0,10659, - 1387,1,0,0,0,10660,10665,3,1390,695,0,10661,10662,5,6,0,0,10662, - 10664,3,1390,695,0,10663,10661,1,0,0,0,10664,10667,1,0,0,0,10665, - 10663,1,0,0,0,10665,10666,1,0,0,0,10666,1389,1,0,0,0,10667,10665, - 1,0,0,0,10668,10673,3,1338,669,0,10669,10670,5,36,0,0,10670,10674, - 3,1492,746,0,10671,10674,3,1494,747,0,10672,10674,1,0,0,0,10673, - 10669,1,0,0,0,10673,10671,1,0,0,0,10673,10672,1,0,0,0,10674,10677, - 1,0,0,0,10675,10677,5,9,0,0,10676,10668,1,0,0,0,10676,10675,1,0, - 0,0,10677,1391,1,0,0,0,10678,10683,3,1414,707,0,10679,10680,5,6, - 0,0,10680,10682,3,1414,707,0,10681,10679,1,0,0,0,10682,10685,1,0, - 0,0,10683,10681,1,0,0,0,10683,10684,1,0,0,0,10684,1393,1,0,0,0,10685, - 10683,1,0,0,0,10686,10691,3,1408,704,0,10687,10688,5,6,0,0,10688, - 10690,3,1408,704,0,10689,10687,1,0,0,0,10690,10693,1,0,0,0,10691, - 10689,1,0,0,0,10691,10692,1,0,0,0,10692,1395,1,0,0,0,10693,10691, - 1,0,0,0,10694,10699,3,1424,712,0,10695,10696,5,6,0,0,10696,10698, - 3,1424,712,0,10697,10695,1,0,0,0,10698,10701,1,0,0,0,10699,10697, - 1,0,0,0,10699,10700,1,0,0,0,10700,1397,1,0,0,0,10701,10699,1,0,0, - 0,10702,10707,3,1422,711,0,10703,10704,5,6,0,0,10704,10706,3,1422, - 711,0,10705,10703,1,0,0,0,10706,10709,1,0,0,0,10707,10705,1,0,0, - 0,10707,10708,1,0,0,0,10708,1399,1,0,0,0,10709,10707,1,0,0,0,10710, - 10715,3,1430,715,0,10711,10712,5,6,0,0,10712,10714,3,1430,715,0, - 10713,10711,1,0,0,0,10714,10717,1,0,0,0,10715,10713,1,0,0,0,10715, - 10716,1,0,0,0,10716,1401,1,0,0,0,10717,10715,1,0,0,0,10718,10720, - 3,1476,738,0,10719,10721,3,1382,691,0,10720,10719,1,0,0,0,10720, - 10721,1,0,0,0,10721,1403,1,0,0,0,10722,10724,3,1476,738,0,10723, - 10725,3,1382,691,0,10724,10723,1,0,0,0,10724,10725,1,0,0,0,10725, - 1405,1,0,0,0,10726,10728,3,1476,738,0,10727,10729,3,1382,691,0,10728, - 10727,1,0,0,0,10728,10729,1,0,0,0,10729,1407,1,0,0,0,10730,10732, - 3,1476,738,0,10731,10733,3,1382,691,0,10732,10731,1,0,0,0,10732, - 10733,1,0,0,0,10733,1409,1,0,0,0,10734,10736,3,1476,738,0,10735, - 10737,3,1382,691,0,10736,10735,1,0,0,0,10736,10737,1,0,0,0,10737, - 1411,1,0,0,0,10738,10740,3,1476,738,0,10739,10741,3,560,280,0,10740, - 10739,1,0,0,0,10740,10741,1,0,0,0,10741,1413,1,0,0,0,10742,10744, - 3,1476,738,0,10743,10745,3,1382,691,0,10744,10743,1,0,0,0,10744, - 10745,1,0,0,0,10745,1415,1,0,0,0,10746,10751,3,1404,702,0,10747, - 10748,5,6,0,0,10748,10750,3,1404,702,0,10749,10747,1,0,0,0,10750, - 10753,1,0,0,0,10751,10749,1,0,0,0,10751,10752,1,0,0,0,10752,1417, - 1,0,0,0,10753,10751,1,0,0,0,10754,10759,3,1438,719,0,10755,10756, - 5,6,0,0,10756,10758,3,1438,719,0,10757,10755,1,0,0,0,10758,10761, - 1,0,0,0,10759,10757,1,0,0,0,10759,10760,1,0,0,0,10760,1419,1,0,0, - 0,10761,10759,1,0,0,0,10762,10764,3,1476,738,0,10763,10765,3,560, - 280,0,10764,10763,1,0,0,0,10764,10765,1,0,0,0,10765,1421,1,0,0,0, - 10766,10768,3,1476,738,0,10767,10769,3,560,280,0,10768,10767,1,0, - 0,0,10768,10769,1,0,0,0,10769,1423,1,0,0,0,10770,10772,3,1476,738, - 0,10771,10773,3,560,280,0,10772,10771,1,0,0,0,10772,10773,1,0,0, - 0,10773,1425,1,0,0,0,10774,10775,3,1476,738,0,10775,1427,1,0,0,0, - 10776,10777,3,1476,738,0,10777,1429,1,0,0,0,10778,10783,3,1484,742, - 0,10779,10780,3,1476,738,0,10780,10781,3,1382,691,0,10781,10783, - 1,0,0,0,10782,10778,1,0,0,0,10782,10779,1,0,0,0,10783,1431,1,0,0, - 0,10784,10789,3,1484,742,0,10785,10786,3,1476,738,0,10786,10787, - 3,1382,691,0,10787,10789,1,0,0,0,10788,10784,1,0,0,0,10788,10785, - 1,0,0,0,10789,1433,1,0,0,0,10790,10791,3,1476,738,0,10791,1435,1, - 0,0,0,10792,10793,3,1476,738,0,10793,1437,1,0,0,0,10794,10795,3, - 1476,738,0,10795,1439,1,0,0,0,10796,10797,3,1492,746,0,10797,1441, - 1,0,0,0,10798,10799,3,1460,730,0,10799,1443,1,0,0,0,10800,10805, - 3,1484,742,0,10801,10802,3,1476,738,0,10802,10803,3,1382,691,0,10803, - 10805,1,0,0,0,10804,10800,1,0,0,0,10804,10801,1,0,0,0,10805,1445, - 1,0,0,0,10806,10811,3,1484,742,0,10807,10808,3,1476,738,0,10808, - 10809,3,1382,691,0,10809,10811,1,0,0,0,10810,10806,1,0,0,0,10810, - 10807,1,0,0,0,10811,1447,1,0,0,0,10812,10817,3,1486,743,0,10813, - 10814,3,1476,738,0,10814,10815,3,1382,691,0,10815,10817,1,0,0,0, - 10816,10812,1,0,0,0,10816,10813,1,0,0,0,10817,1449,1,0,0,0,10818, - 10854,3,1458,729,0,10819,10854,3,1456,728,0,10820,10854,3,1460,730, - 0,10821,10854,3,1454,727,0,10822,10854,3,1452,726,0,10823,10833, - 3,1446,723,0,10824,10834,3,1460,730,0,10825,10826,5,2,0,0,10826, - 10828,3,1340,670,0,10827,10829,3,1044,522,0,10828,10827,1,0,0,0, - 10828,10829,1,0,0,0,10829,10830,1,0,0,0,10830,10831,5,3,0,0,10831, - 10832,3,1460,730,0,10832,10834,1,0,0,0,10833,10824,1,0,0,0,10833, - 10825,1,0,0,0,10834,10854,1,0,0,0,10835,10836,3,1176,588,0,10836, - 10837,3,1460,730,0,10837,10854,1,0,0,0,10838,10848,3,1204,602,0, - 10839,10841,3,1460,730,0,10840,10842,3,1208,604,0,10841,10840,1, - 0,0,0,10841,10842,1,0,0,0,10842,10849,1,0,0,0,10843,10844,5,2,0, - 0,10844,10845,3,1458,729,0,10845,10846,5,3,0,0,10846,10847,3,1460, - 730,0,10847,10849,1,0,0,0,10848,10839,1,0,0,0,10848,10843,1,0,0, - 0,10849,10854,1,0,0,0,10850,10854,5,96,0,0,10851,10854,5,60,0,0, - 10852,10854,5,78,0,0,10853,10818,1,0,0,0,10853,10819,1,0,0,0,10853, - 10820,1,0,0,0,10853,10821,1,0,0,0,10853,10822,1,0,0,0,10853,10823, - 1,0,0,0,10853,10835,1,0,0,0,10853,10838,1,0,0,0,10853,10850,1,0, - 0,0,10853,10851,1,0,0,0,10853,10852,1,0,0,0,10854,1451,1,0,0,0,10855, - 10856,5,567,0,0,10856,1453,1,0,0,0,10857,10858,5,563,0,0,10858,1455, - 1,0,0,0,10859,10860,5,573,0,0,10860,1457,1,0,0,0,10861,10862,5,571, - 0,0,10862,1459,1,0,0,0,10863,10865,3,1462,731,0,10864,10866,3,1464, - 732,0,10865,10864,1,0,0,0,10865,10866,1,0,0,0,10866,1461,1,0,0,0, - 10867,10879,5,558,0,0,10868,10879,5,560,0,0,10869,10873,5,562,0, - 0,10870,10872,5,588,0,0,10871,10870,1,0,0,0,10872,10875,1,0,0,0, - 10873,10871,1,0,0,0,10873,10874,1,0,0,0,10874,10876,1,0,0,0,10875, - 10873,1,0,0,0,10876,10879,5,589,0,0,10877,10879,5,584,0,0,10878, - 10867,1,0,0,0,10878,10868,1,0,0,0,10878,10869,1,0,0,0,10878,10877, - 1,0,0,0,10879,1463,1,0,0,0,10880,10881,5,487,0,0,10881,10882,3,1462, - 731,0,10882,1465,1,0,0,0,10883,10889,3,1458,729,0,10884,10885,5, - 12,0,0,10885,10889,3,1458,729,0,10886,10887,5,13,0,0,10887,10889, - 3,1458,729,0,10888,10883,1,0,0,0,10888,10884,1,0,0,0,10888,10886, - 1,0,0,0,10889,1467,1,0,0,0,10890,10891,3,1472,736,0,10891,1469,1, - 0,0,0,10892,10893,3,1472,736,0,10893,1471,1,0,0,0,10894,10900,3, - 1490,745,0,10895,10900,5,52,0,0,10896,10900,5,49,0,0,10897,10900, - 5,89,0,0,10898,10900,5,524,0,0,10899,10894,1,0,0,0,10899,10895,1, - 0,0,0,10899,10896,1,0,0,0,10899,10897,1,0,0,0,10899,10898,1,0,0, - 0,10900,1473,1,0,0,0,10901,10906,3,1472,736,0,10902,10903,5,6,0, - 0,10903,10905,3,1472,736,0,10904,10902,1,0,0,0,10905,10908,1,0,0, - 0,10906,10904,1,0,0,0,10906,10907,1,0,0,0,10907,1475,1,0,0,0,10908, - 10906,1,0,0,0,10909,10914,3,1494,747,0,10910,10914,3,1498,749,0, - 10911,10914,3,1500,750,0,10912,10914,3,1736,868,0,10913,10909,1, - 0,0,0,10913,10910,1,0,0,0,10913,10911,1,0,0,0,10913,10912,1,0,0, - 0,10914,1477,1,0,0,0,10915,10916,3,1494,747,0,10916,1479,1,0,0,0, - 10917,10930,3,710,355,0,10918,10919,5,2,0,0,10919,10920,3,1214,607, - 0,10920,10921,5,3,0,0,10921,10922,1,0,0,0,10922,10924,3,1494,747, - 0,10923,10925,3,650,325,0,10924,10923,1,0,0,0,10924,10925,1,0,0, - 0,10925,10927,1,0,0,0,10926,10928,3,652,326,0,10927,10926,1,0,0, - 0,10927,10928,1,0,0,0,10928,10930,1,0,0,0,10929,10917,1,0,0,0,10929, - 10918,1,0,0,0,10930,1481,1,0,0,0,10931,10932,5,105,0,0,10932,10934, - 3,132,66,0,10933,10931,1,0,0,0,10933,10934,1,0,0,0,10934,10936,1, - 0,0,0,10935,10937,3,284,142,0,10936,10935,1,0,0,0,10936,10937,1, - 0,0,0,10937,1483,1,0,0,0,10938,10943,3,1494,747,0,10939,10943,3, - 1498,749,0,10940,10943,3,1736,868,0,10941,10943,3,1502,751,0,10942, - 10938,1,0,0,0,10942,10939,1,0,0,0,10942,10940,1,0,0,0,10942,10941, - 1,0,0,0,10943,1485,1,0,0,0,10944,10949,3,1494,747,0,10945,10949, - 3,1498,749,0,10946,10949,3,1736,868,0,10947,10949,3,1502,751,0,10948, - 10944,1,0,0,0,10948,10945,1,0,0,0,10948,10946,1,0,0,0,10948,10947, - 1,0,0,0,10949,1487,1,0,0,0,10950,10953,3,1434,717,0,10951,10953, - 3,1502,751,0,10952,10950,1,0,0,0,10952,10951,1,0,0,0,10953,1489, - 1,0,0,0,10954,10959,3,1494,747,0,10955,10959,3,1498,749,0,10956, - 10959,3,1500,750,0,10957,10959,3,1502,751,0,10958,10954,1,0,0,0, - 10958,10955,1,0,0,0,10958,10956,1,0,0,0,10958,10957,1,0,0,0,10959, - 1491,1,0,0,0,10960,10967,3,1494,747,0,10961,10967,3,1736,868,0,10962, - 10967,3,1498,749,0,10963,10967,3,1500,750,0,10964,10967,3,1502,751, - 0,10965,10967,3,1504,752,0,10966,10960,1,0,0,0,10966,10961,1,0,0, - 0,10966,10962,1,0,0,0,10966,10963,1,0,0,0,10966,10964,1,0,0,0,10966, - 10965,1,0,0,0,10967,1493,1,0,0,0,10968,10970,5,549,0,0,10969,10971, - 3,1464,732,0,10970,10969,1,0,0,0,10970,10971,1,0,0,0,10971,10979, - 1,0,0,0,10972,10979,3,1460,730,0,10973,10979,5,550,0,0,10974,10979, - 5,554,0,0,10975,10979,3,1258,629,0,10976,10979,3,1496,748,0,10977, - 10979,3,1736,868,0,10978,10968,1,0,0,0,10978,10972,1,0,0,0,10978, - 10973,1,0,0,0,10978,10974,1,0,0,0,10978,10975,1,0,0,0,10978,10976, - 1,0,0,0,10978,10977,1,0,0,0,10979,1495,1,0,0,0,10980,10981,5,575, - 0,0,10981,1497,1,0,0,0,10982,10983,7,72,0,0,10983,1499,1,0,0,0,10984, - 11036,5,387,0,0,10985,11036,5,388,0,0,10986,11036,3,1186,593,0,10987, - 11036,5,390,0,0,10988,11036,5,391,0,0,10989,11036,3,1194,597,0,10990, - 11036,5,393,0,0,10991,11036,5,394,0,0,10992,11036,5,395,0,0,10993, - 11036,5,396,0,0,10994,11036,5,397,0,0,10995,11036,5,398,0,0,10996, - 11036,5,399,0,0,10997,11036,5,470,0,0,10998,11036,5,400,0,0,10999, - 11036,5,401,0,0,11000,11036,5,402,0,0,11001,11036,5,403,0,0,11002, - 11036,5,404,0,0,11003,11036,5,405,0,0,11004,11036,5,406,0,0,11005, - 11036,5,407,0,0,11006,11036,5,489,0,0,11007,11036,5,408,0,0,11008, - 11036,3,1182,591,0,11009,11036,5,453,0,0,11010,11036,5,410,0,0,11011, - 11036,5,411,0,0,11012,11036,5,412,0,0,11013,11036,5,413,0,0,11014, - 11036,5,414,0,0,11015,11036,5,415,0,0,11016,11036,5,416,0,0,11017, - 11036,5,417,0,0,11018,11036,5,418,0,0,11019,11036,5,419,0,0,11020, - 11036,5,420,0,0,11021,11036,5,421,0,0,11022,11036,5,422,0,0,11023, - 11036,5,423,0,0,11024,11036,5,424,0,0,11025,11036,5,425,0,0,11026, - 11036,5,426,0,0,11027,11036,5,427,0,0,11028,11036,5,428,0,0,11029, - 11036,5,476,0,0,11030,11036,5,429,0,0,11031,11036,5,430,0,0,11032, - 11036,5,431,0,0,11033,11036,5,432,0,0,11034,11036,5,474,0,0,11035, - 10984,1,0,0,0,11035,10985,1,0,0,0,11035,10986,1,0,0,0,11035,10987, - 1,0,0,0,11035,10988,1,0,0,0,11035,10989,1,0,0,0,11035,10990,1,0, - 0,0,11035,10991,1,0,0,0,11035,10992,1,0,0,0,11035,10993,1,0,0,0, - 11035,10994,1,0,0,0,11035,10995,1,0,0,0,11035,10996,1,0,0,0,11035, - 10997,1,0,0,0,11035,10998,1,0,0,0,11035,10999,1,0,0,0,11035,11000, - 1,0,0,0,11035,11001,1,0,0,0,11035,11002,1,0,0,0,11035,11003,1,0, - 0,0,11035,11004,1,0,0,0,11035,11005,1,0,0,0,11035,11006,1,0,0,0, - 11035,11007,1,0,0,0,11035,11008,1,0,0,0,11035,11009,1,0,0,0,11035, - 11010,1,0,0,0,11035,11011,1,0,0,0,11035,11012,1,0,0,0,11035,11013, - 1,0,0,0,11035,11014,1,0,0,0,11035,11015,1,0,0,0,11035,11016,1,0, - 0,0,11035,11017,1,0,0,0,11035,11018,1,0,0,0,11035,11019,1,0,0,0, - 11035,11020,1,0,0,0,11035,11021,1,0,0,0,11035,11022,1,0,0,0,11035, - 11023,1,0,0,0,11035,11024,1,0,0,0,11035,11025,1,0,0,0,11035,11026, - 1,0,0,0,11035,11027,1,0,0,0,11035,11028,1,0,0,0,11035,11029,1,0, - 0,0,11035,11030,1,0,0,0,11035,11031,1,0,0,0,11035,11032,1,0,0,0, - 11035,11033,1,0,0,0,11035,11034,1,0,0,0,11036,1501,1,0,0,0,11037, - 11038,7,73,0,0,11038,1503,1,0,0,0,11039,11040,7,74,0,0,11040,1505, - 1,0,0,0,11041,11042,3,1508,754,0,11042,11043,3,1518,759,0,11043, - 11044,3,1516,758,0,11044,1507,1,0,0,0,11045,11047,3,1510,755,0,11046, - 11045,1,0,0,0,11047,11050,1,0,0,0,11048,11046,1,0,0,0,11048,11049, - 1,0,0,0,11049,1509,1,0,0,0,11050,11048,1,0,0,0,11051,11052,3,1512, - 756,0,11052,11053,5,279,0,0,11053,11054,5,490,0,0,11054,11072,1, - 0,0,0,11055,11056,3,1512,756,0,11056,11057,5,491,0,0,11057,11058, - 3,1514,757,0,11058,11072,1,0,0,0,11059,11060,3,1512,756,0,11060, - 11061,5,492,0,0,11061,11062,5,493,0,0,11062,11072,1,0,0,0,11063, - 11064,3,1512,756,0,11064,11065,5,492,0,0,11065,11066,5,494,0,0,11066, - 11072,1,0,0,0,11067,11068,3,1512,756,0,11068,11069,5,492,0,0,11069, - 11070,5,495,0,0,11070,11072,1,0,0,0,11071,11051,1,0,0,0,11071,11055, - 1,0,0,0,11071,11059,1,0,0,0,11071,11063,1,0,0,0,11071,11067,1,0, - 0,0,11072,1511,1,0,0,0,11073,11074,5,29,0,0,11074,1513,1,0,0,0,11075, - 11080,3,1460,730,0,11076,11080,3,1504,752,0,11077,11080,3,1736,868, - 0,11078,11080,3,1498,749,0,11079,11075,1,0,0,0,11079,11076,1,0,0, - 0,11079,11077,1,0,0,0,11079,11078,1,0,0,0,11080,1515,1,0,0,0,11081, - 11084,1,0,0,0,11082,11084,5,7,0,0,11083,11081,1,0,0,0,11083,11082, - 1,0,0,0,11084,1517,1,0,0,0,11085,11086,3,1520,760,0,11086,11087, - 5,146,0,0,11087,11088,3,1562,781,0,11088,11089,3,1716,858,0,11089, - 11090,5,454,0,0,11090,11091,3,1730,865,0,11091,1519,1,0,0,0,11092, - 11097,3,1726,863,0,11093,11095,3,1522,761,0,11094,11096,3,1524,762, - 0,11095,11094,1,0,0,0,11095,11096,1,0,0,0,11096,11098,1,0,0,0,11097, - 11093,1,0,0,0,11097,11098,1,0,0,0,11098,1521,1,0,0,0,11099,11100, - 5,178,0,0,11100,1523,1,0,0,0,11101,11103,3,1528,764,0,11102,11101, - 1,0,0,0,11103,11104,1,0,0,0,11104,11102,1,0,0,0,11104,11105,1,0, - 0,0,11105,1525,1,0,0,0,11106,11107,5,18,0,0,11107,11108,3,1734,867, - 0,11108,11109,5,19,0,0,11109,1527,1,0,0,0,11110,11114,3,1530,765, - 0,11111,11114,5,178,0,0,11112,11114,3,1526,763,0,11113,11110,1,0, - 0,0,11113,11111,1,0,0,0,11113,11112,1,0,0,0,11114,1529,1,0,0,0,11115, - 11131,3,1546,773,0,11116,11117,5,496,0,0,11117,11118,5,62,0,0,11118, - 11132,3,1544,772,0,11119,11120,3,1548,774,0,11120,11121,3,1550,775, - 0,11121,11122,3,1552,776,0,11122,11123,3,1554,777,0,11123,11124, - 3,1556,778,0,11124,11132,1,0,0,0,11125,11126,3,1532,766,0,11126, - 11127,5,172,0,0,11127,11128,3,1536,768,0,11128,11129,3,1542,771, - 0,11129,11130,3,1534,767,0,11130,11132,1,0,0,0,11131,11116,1,0,0, - 0,11131,11119,1,0,0,0,11131,11125,1,0,0,0,11132,11133,1,0,0,0,11133, - 11134,5,7,0,0,11134,1531,1,0,0,0,11135,11140,1,0,0,0,11136,11137, - 5,269,0,0,11137,11140,5,324,0,0,11138,11140,5,324,0,0,11139,11135, - 1,0,0,0,11139,11136,1,0,0,0,11139,11138,1,0,0,0,11140,1533,1,0,0, - 0,11141,11142,3,1002,501,0,11142,1535,1,0,0,0,11143,11149,1,0,0, - 0,11144,11145,5,2,0,0,11145,11146,3,1538,769,0,11146,11147,5,3,0, - 0,11147,11149,1,0,0,0,11148,11143,1,0,0,0,11148,11144,1,0,0,0,11149, - 1537,1,0,0,0,11150,11155,3,1540,770,0,11151,11152,5,6,0,0,11152, - 11154,3,1540,770,0,11153,11151,1,0,0,0,11154,11157,1,0,0,0,11155, - 11153,1,0,0,0,11155,11156,1,0,0,0,11156,1539,1,0,0,0,11157,11155, - 1,0,0,0,11158,11159,3,1546,773,0,11159,11160,3,1550,775,0,11160, - 1541,1,0,0,0,11161,11162,7,75,0,0,11162,1543,1,0,0,0,11163,11166, - 5,28,0,0,11164,11166,3,1476,738,0,11165,11163,1,0,0,0,11165,11164, - 1,0,0,0,11166,1545,1,0,0,0,11167,11168,3,1734,867,0,11168,1547,1, - 0,0,0,11169,11172,1,0,0,0,11170,11172,5,497,0,0,11171,11169,1,0, - 0,0,11171,11170,1,0,0,0,11172,1549,1,0,0,0,11173,11174,3,1170,585, - 0,11174,1551,1,0,0,0,11175,11179,1,0,0,0,11176,11177,5,43,0,0,11177, - 11179,3,558,279,0,11178,11175,1,0,0,0,11178,11176,1,0,0,0,11179, - 1553,1,0,0,0,11180,11184,1,0,0,0,11181,11182,5,77,0,0,11182,11184, - 5,78,0,0,11183,11180,1,0,0,0,11183,11181,1,0,0,0,11184,1555,1,0, - 0,0,11185,11190,1,0,0,0,11186,11187,3,1558,779,0,11187,11188,3,1738, - 869,0,11188,11190,1,0,0,0,11189,11185,1,0,0,0,11189,11186,1,0,0, - 0,11190,1557,1,0,0,0,11191,11194,3,1560,780,0,11192,11194,5,53,0, - 0,11193,11191,1,0,0,0,11193,11192,1,0,0,0,11194,1559,1,0,0,0,11195, - 11196,7,76,0,0,11196,1561,1,0,0,0,11197,11199,3,1564,782,0,11198, - 11197,1,0,0,0,11199,11202,1,0,0,0,11200,11198,1,0,0,0,11200,11201, - 1,0,0,0,11201,1563,1,0,0,0,11202,11200,1,0,0,0,11203,11204,3,1518, - 759,0,11204,11205,5,7,0,0,11205,11231,1,0,0,0,11206,11231,3,1630, - 815,0,11207,11231,3,1634,817,0,11208,11231,3,1572,786,0,11209,11231, - 3,1588,794,0,11210,11231,3,1594,797,0,11211,11231,3,1604,802,0,11212, - 11231,3,1606,803,0,11213,11231,3,1608,804,0,11214,11231,3,1622,811, - 0,11215,11231,3,1626,813,0,11216,11231,3,1646,823,0,11217,11231, - 3,1652,826,0,11218,11231,3,1654,827,0,11219,11231,3,1566,783,0,11220, - 11231,3,1568,784,0,11221,11231,3,1574,787,0,11222,11231,3,1662,831, - 0,11223,11231,3,1674,837,0,11224,11231,3,1682,841,0,11225,11231, - 3,1702,851,0,11226,11231,3,1704,852,0,11227,11231,3,1706,853,0,11228, - 11231,3,1708,854,0,11229,11231,3,1712,856,0,11230,11203,1,0,0,0, - 11230,11206,1,0,0,0,11230,11207,1,0,0,0,11230,11208,1,0,0,0,11230, - 11209,1,0,0,0,11230,11210,1,0,0,0,11230,11211,1,0,0,0,11230,11212, - 1,0,0,0,11230,11213,1,0,0,0,11230,11214,1,0,0,0,11230,11215,1,0, - 0,0,11230,11216,1,0,0,0,11230,11217,1,0,0,0,11230,11218,1,0,0,0, - 11230,11219,1,0,0,0,11230,11220,1,0,0,0,11230,11221,1,0,0,0,11230, - 11222,1,0,0,0,11230,11223,1,0,0,0,11230,11224,1,0,0,0,11230,11225, - 1,0,0,0,11230,11226,1,0,0,0,11230,11227,1,0,0,0,11230,11228,1,0, - 0,0,11230,11229,1,0,0,0,11231,1565,1,0,0,0,11232,11233,5,498,0,0, - 11233,11234,3,1742,871,0,11234,11235,5,7,0,0,11235,1567,1,0,0,0, - 11236,11237,5,433,0,0,11237,11243,3,1734,867,0,11238,11239,5,2,0, - 0,11239,11240,3,1570,785,0,11240,11241,5,3,0,0,11241,11242,5,7,0, - 0,11242,11244,1,0,0,0,11243,11238,1,0,0,0,11243,11244,1,0,0,0,11244, - 11253,1,0,0,0,11245,11246,5,57,0,0,11246,11247,3,1734,867,0,11247, - 11248,5,2,0,0,11248,11249,3,1570,785,0,11249,11250,5,3,0,0,11250, - 11251,5,7,0,0,11251,11253,1,0,0,0,11252,11236,1,0,0,0,11252,11245, - 1,0,0,0,11253,1569,1,0,0,0,11254,11257,1,0,0,0,11255,11257,3,1330, - 665,0,11256,11254,1,0,0,0,11256,11255,1,0,0,0,11257,1571,1,0,0,0, - 11258,11259,3,1586,793,0,11259,11260,3,1560,780,0,11260,11261,3, - 1738,869,0,11261,11262,5,7,0,0,11262,1573,1,0,0,0,11263,11264,5, - 499,0,0,11264,11265,3,1576,788,0,11265,11266,5,500,0,0,11266,11267, - 3,1578,789,0,11267,11268,5,7,0,0,11268,1575,1,0,0,0,11269,11273, - 1,0,0,0,11270,11273,5,434,0,0,11271,11273,5,501,0,0,11272,11269, - 1,0,0,0,11272,11270,1,0,0,0,11272,11271,1,0,0,0,11273,1577,1,0,0, - 0,11274,11279,3,1580,790,0,11275,11276,5,6,0,0,11276,11278,3,1580, - 790,0,11277,11275,1,0,0,0,11278,11281,1,0,0,0,11279,11277,1,0,0, - 0,11279,11280,1,0,0,0,11280,1579,1,0,0,0,11281,11279,1,0,0,0,11282, - 11283,3,1584,792,0,11283,11284,3,1560,780,0,11284,11285,3,1582,791, - 0,11285,1581,1,0,0,0,11286,11287,3,1476,738,0,11287,1583,1,0,0,0, - 11288,11289,3,1586,793,0,11289,1585,1,0,0,0,11290,11293,3,558,279, - 0,11291,11293,5,28,0,0,11292,11290,1,0,0,0,11292,11291,1,0,0,0,11293, - 11300,1,0,0,0,11294,11295,5,4,0,0,11295,11296,3,1744,872,0,11296, - 11297,5,5,0,0,11297,11299,1,0,0,0,11298,11294,1,0,0,0,11299,11302, - 1,0,0,0,11300,11298,1,0,0,0,11300,11301,1,0,0,0,11301,1587,1,0,0, - 0,11302,11300,1,0,0,0,11303,11304,5,220,0,0,11304,11305,3,1740,870, - 0,11305,11306,5,93,0,0,11306,11307,3,1562,781,0,11307,11308,3,1590, - 795,0,11308,11309,3,1592,796,0,11309,11310,5,454,0,0,11310,11311, - 5,220,0,0,11311,11312,5,7,0,0,11312,1589,1,0,0,0,11313,11314,5,502, - 0,0,11314,11315,3,1214,607,0,11315,11316,5,93,0,0,11316,11317,3, - 1562,781,0,11317,11319,1,0,0,0,11318,11313,1,0,0,0,11319,11322,1, - 0,0,0,11320,11318,1,0,0,0,11320,11321,1,0,0,0,11321,1591,1,0,0,0, - 11322,11320,1,0,0,0,11323,11327,1,0,0,0,11324,11325,5,58,0,0,11325, - 11327,3,1562,781,0,11326,11323,1,0,0,0,11326,11324,1,0,0,0,11327, - 1593,1,0,0,0,11328,11329,5,40,0,0,11329,11330,3,1596,798,0,11330, - 11331,3,1598,799,0,11331,11332,3,1602,801,0,11332,11333,5,454,0, - 0,11333,11334,5,40,0,0,11334,11335,5,7,0,0,11335,1595,1,0,0,0,11336, - 11339,1,0,0,0,11337,11339,3,1738,869,0,11338,11336,1,0,0,0,11338, - 11337,1,0,0,0,11339,1597,1,0,0,0,11340,11342,3,1600,800,0,11341, - 11340,1,0,0,0,11342,11343,1,0,0,0,11343,11341,1,0,0,0,11343,11344, - 1,0,0,0,11344,1599,1,0,0,0,11345,11346,5,102,0,0,11346,11347,3,1330, - 665,0,11347,11348,5,93,0,0,11348,11349,3,1562,781,0,11349,1601,1, - 0,0,0,11350,11354,1,0,0,0,11351,11352,5,58,0,0,11352,11354,3,1562, - 781,0,11353,11350,1,0,0,0,11353,11351,1,0,0,0,11354,1603,1,0,0,0, - 11355,11356,3,1728,864,0,11356,11357,3,1650,825,0,11357,1605,1,0, - 0,0,11358,11359,3,1728,864,0,11359,11360,5,503,0,0,11360,11361,3, - 1746,873,0,11361,11362,3,1650,825,0,11362,1607,1,0,0,0,11363,11364, - 3,1728,864,0,11364,11365,5,62,0,0,11365,11366,3,1610,805,0,11366, - 11367,3,1650,825,0,11367,1609,1,0,0,0,11368,11369,3,1620,810,0,11369, - 11385,5,68,0,0,11370,11371,3,996,498,0,11371,11372,3,1614,807,0, - 11372,11386,1,0,0,0,11373,11386,3,1002,501,0,11374,11386,3,928,464, - 0,11375,11376,5,202,0,0,11376,11377,3,1214,607,0,11377,11378,3,1612, - 806,0,11378,11386,1,0,0,0,11379,11380,3,1616,808,0,11380,11381,3, - 1214,607,0,11381,11382,5,24,0,0,11382,11383,3,1214,607,0,11383,11384, - 3,1618,809,0,11384,11386,1,0,0,0,11385,11370,1,0,0,0,11385,11373, - 1,0,0,0,11385,11374,1,0,0,0,11385,11375,1,0,0,0,11385,11379,1,0, - 0,0,11386,1611,1,0,0,0,11387,11391,1,0,0,0,11388,11389,5,100,0,0, - 11389,11391,3,1330,665,0,11390,11387,1,0,0,0,11390,11388,1,0,0,0, - 11391,1613,1,0,0,0,11392,11405,1,0,0,0,11393,11394,5,2,0,0,11394, - 11399,3,1214,607,0,11395,11396,5,6,0,0,11396,11398,3,1214,607,0, - 11397,11395,1,0,0,0,11398,11401,1,0,0,0,11399,11397,1,0,0,0,11399, - 11400,1,0,0,0,11400,11402,1,0,0,0,11401,11399,1,0,0,0,11402,11403, - 5,3,0,0,11403,11405,1,0,0,0,11404,11392,1,0,0,0,11404,11393,1,0, - 0,0,11405,1615,1,0,0,0,11406,11409,1,0,0,0,11407,11409,5,504,0,0, - 11408,11406,1,0,0,0,11408,11407,1,0,0,0,11409,1617,1,0,0,0,11410, - 11414,1,0,0,0,11411,11412,5,147,0,0,11412,11414,3,1214,607,0,11413, - 11410,1,0,0,0,11413,11411,1,0,0,0,11414,1619,1,0,0,0,11415,11416, - 3,550,275,0,11416,1621,1,0,0,0,11417,11418,3,1728,864,0,11418,11419, - 5,505,0,0,11419,11420,3,1620,810,0,11420,11421,3,1624,812,0,11421, - 11422,5,68,0,0,11422,11423,5,35,0,0,11423,11424,3,1214,607,0,11424, - 11425,3,1650,825,0,11425,1623,1,0,0,0,11426,11430,1,0,0,0,11427, - 11428,5,506,0,0,11428,11430,3,1458,729,0,11429,11426,1,0,0,0,11429, - 11427,1,0,0,0,11430,1625,1,0,0,0,11431,11432,3,1628,814,0,11432, - 11434,3,1730,865,0,11433,11435,3,1732,866,0,11434,11433,1,0,0,0, - 11434,11435,1,0,0,0,11435,11436,1,0,0,0,11436,11437,5,7,0,0,11437, - 1627,1,0,0,0,11438,11439,7,77,0,0,11439,1629,1,0,0,0,11440,11452, - 5,508,0,0,11441,11442,5,268,0,0,11442,11453,3,1738,869,0,11443,11449, - 5,509,0,0,11444,11445,5,202,0,0,11445,11446,3,1214,607,0,11446,11447, - 3,1612,806,0,11447,11450,1,0,0,0,11448,11450,3,1002,501,0,11449, - 11444,1,0,0,0,11449,11448,1,0,0,0,11450,11453,1,0,0,0,11451,11453, - 3,1632,816,0,11452,11441,1,0,0,0,11452,11443,1,0,0,0,11452,11451, - 1,0,0,0,11453,11454,1,0,0,0,11454,11455,5,7,0,0,11455,1631,1,0,0, - 0,11456,11459,1,0,0,0,11457,11459,3,1738,869,0,11458,11456,1,0,0, - 0,11458,11457,1,0,0,0,11459,1633,1,0,0,0,11460,11462,5,510,0,0,11461, - 11463,3,1636,818,0,11462,11461,1,0,0,0,11462,11463,1,0,0,0,11463, - 11464,1,0,0,0,11464,11465,3,1460,730,0,11465,11466,3,1638,819,0, - 11466,11467,3,1640,820,0,11467,11468,5,7,0,0,11468,11495,1,0,0,0, - 11469,11471,5,510,0,0,11470,11472,3,1636,818,0,11471,11470,1,0,0, - 0,11471,11472,1,0,0,0,11472,11473,1,0,0,0,11473,11474,3,1494,747, - 0,11474,11475,3,1640,820,0,11475,11476,5,7,0,0,11476,11495,1,0,0, - 0,11477,11479,5,510,0,0,11478,11480,3,1636,818,0,11479,11478,1,0, - 0,0,11479,11480,1,0,0,0,11480,11481,1,0,0,0,11481,11482,5,511,0, - 0,11482,11483,3,1460,730,0,11483,11484,3,1640,820,0,11484,11485, - 5,7,0,0,11485,11495,1,0,0,0,11486,11488,5,510,0,0,11487,11489,3, - 1636,818,0,11488,11487,1,0,0,0,11488,11489,1,0,0,0,11489,11490,1, - 0,0,0,11490,11491,3,1640,820,0,11491,11492,5,7,0,0,11492,11495,1, - 0,0,0,11493,11495,5,510,0,0,11494,11460,1,0,0,0,11494,11469,1,0, - 0,0,11494,11477,1,0,0,0,11494,11486,1,0,0,0,11494,11493,1,0,0,0, - 11495,1635,1,0,0,0,11496,11497,7,78,0,0,11497,1637,1,0,0,0,11498, - 11506,1,0,0,0,11499,11500,5,6,0,0,11500,11502,3,1214,607,0,11501, - 11499,1,0,0,0,11502,11503,1,0,0,0,11503,11501,1,0,0,0,11503,11504, - 1,0,0,0,11504,11506,1,0,0,0,11505,11498,1,0,0,0,11505,11501,1,0, - 0,0,11506,1639,1,0,0,0,11507,11511,1,0,0,0,11508,11509,5,100,0,0, - 11509,11511,3,1644,822,0,11510,11507,1,0,0,0,11510,11508,1,0,0,0, - 11511,1641,1,0,0,0,11512,11513,3,1494,747,0,11513,11514,5,10,0,0, - 11514,11515,3,1214,607,0,11515,1643,1,0,0,0,11516,11521,3,1642,821, - 0,11517,11518,5,6,0,0,11518,11520,3,1642,821,0,11519,11517,1,0,0, - 0,11520,11523,1,0,0,0,11521,11519,1,0,0,0,11521,11522,1,0,0,0,11522, - 1645,1,0,0,0,11523,11521,1,0,0,0,11524,11525,5,518,0,0,11525,11526, - 3,1738,869,0,11526,11527,3,1648,824,0,11527,11528,5,7,0,0,11528, - 1647,1,0,0,0,11529,11533,1,0,0,0,11530,11531,5,6,0,0,11531,11533, - 3,1738,869,0,11532,11529,1,0,0,0,11532,11530,1,0,0,0,11533,1649, - 1,0,0,0,11534,11535,5,519,0,0,11535,11536,3,1562,781,0,11536,11537, - 5,454,0,0,11537,11538,5,519,0,0,11538,11539,3,1730,865,0,11539,11540, - 5,7,0,0,11540,1651,1,0,0,0,11541,11542,3,1748,874,0,11542,11543, - 5,7,0,0,11543,1653,1,0,0,0,11544,11545,5,202,0,0,11545,11553,3,1214, - 607,0,11546,11547,3,1660,830,0,11547,11548,3,1656,828,0,11548,11554, - 1,0,0,0,11549,11550,3,1656,828,0,11550,11551,3,1660,830,0,11551, - 11554,1,0,0,0,11552,11554,1,0,0,0,11553,11546,1,0,0,0,11553,11549, - 1,0,0,0,11553,11552,1,0,0,0,11554,11555,1,0,0,0,11555,11556,5,7, - 0,0,11556,1655,1,0,0,0,11557,11561,1,0,0,0,11558,11559,5,100,0,0, - 11559,11561,3,1658,829,0,11560,11557,1,0,0,0,11560,11558,1,0,0,0, - 11561,1657,1,0,0,0,11562,11567,3,1214,607,0,11563,11564,5,6,0,0, - 11564,11566,3,1214,607,0,11565,11563,1,0,0,0,11566,11569,1,0,0,0, - 11567,11565,1,0,0,0,11567,11568,1,0,0,0,11568,1659,1,0,0,0,11569, - 11567,1,0,0,0,11570,11577,1,0,0,0,11571,11573,5,71,0,0,11572,11574, - 5,346,0,0,11573,11572,1,0,0,0,11573,11574,1,0,0,0,11574,11575,1, - 0,0,0,11575,11577,3,1676,838,0,11576,11570,1,0,0,0,11576,11571,1, - 0,0,0,11577,1661,1,0,0,0,11578,11596,5,520,0,0,11579,11580,3,1714, - 857,0,11580,11581,3,1670,835,0,11581,11587,5,62,0,0,11582,11588, - 3,1002,501,0,11583,11584,5,202,0,0,11584,11585,3,1738,869,0,11585, - 11586,3,1668,834,0,11586,11588,1,0,0,0,11587,11582,1,0,0,0,11587, - 11583,1,0,0,0,11588,11597,1,0,0,0,11589,11594,3,1476,738,0,11590, - 11591,5,2,0,0,11591,11592,3,1666,833,0,11592,11593,5,3,0,0,11593, - 11595,1,0,0,0,11594,11590,1,0,0,0,11594,11595,1,0,0,0,11595,11597, - 1,0,0,0,11596,11579,1,0,0,0,11596,11589,1,0,0,0,11597,11598,1,0, - 0,0,11598,11599,5,7,0,0,11599,1663,1,0,0,0,11600,11601,3,1476,738, - 0,11601,11602,5,20,0,0,11602,11603,3,1214,607,0,11603,11606,1,0, - 0,0,11604,11606,3,1214,607,0,11605,11600,1,0,0,0,11605,11604,1,0, - 0,0,11606,1665,1,0,0,0,11607,11612,3,1664,832,0,11608,11609,5,6, - 0,0,11609,11611,3,1664,832,0,11610,11608,1,0,0,0,11611,11614,1,0, - 0,0,11612,11610,1,0,0,0,11612,11613,1,0,0,0,11613,1667,1,0,0,0,11614, - 11612,1,0,0,0,11615,11619,1,0,0,0,11616,11617,5,100,0,0,11617,11619, - 3,1330,665,0,11618,11615,1,0,0,0,11618,11616,1,0,0,0,11619,1669, - 1,0,0,0,11620,11625,1,0,0,0,11621,11622,3,1672,836,0,11622,11623, - 5,324,0,0,11623,11625,1,0,0,0,11624,11620,1,0,0,0,11624,11621,1, - 0,0,0,11625,1671,1,0,0,0,11626,11629,1,0,0,0,11627,11629,5,269,0, - 0,11628,11626,1,0,0,0,11628,11627,1,0,0,0,11629,1673,1,0,0,0,11630, - 11632,5,61,0,0,11631,11633,3,1680,840,0,11632,11631,1,0,0,0,11632, - 11633,1,0,0,0,11633,11634,1,0,0,0,11634,11635,3,1678,839,0,11635, - 11636,3,1714,857,0,11636,11637,5,71,0,0,11637,11638,3,1676,838,0, - 11638,11639,5,7,0,0,11639,1675,1,0,0,0,11640,11641,3,1330,665,0, - 11641,1677,1,0,0,0,11642,11646,1,0,0,0,11643,11646,5,64,0,0,11644, - 11646,5,68,0,0,11645,11642,1,0,0,0,11645,11643,1,0,0,0,11645,11644, - 1,0,0,0,11646,1679,1,0,0,0,11647,11663,5,268,0,0,11648,11663,5,293, - 0,0,11649,11663,5,207,0,0,11650,11663,5,249,0,0,11651,11652,5,130, - 0,0,11652,11663,3,1214,607,0,11653,11654,5,307,0,0,11654,11663,3, - 1214,607,0,11655,11663,3,1214,607,0,11656,11663,5,30,0,0,11657,11660, - 7,79,0,0,11658,11661,3,1214,607,0,11659,11661,5,30,0,0,11660,11658, - 1,0,0,0,11660,11659,1,0,0,0,11660,11661,1,0,0,0,11661,11663,1,0, - 0,0,11662,11647,1,0,0,0,11662,11648,1,0,0,0,11662,11649,1,0,0,0, - 11662,11650,1,0,0,0,11662,11651,1,0,0,0,11662,11653,1,0,0,0,11662, - 11655,1,0,0,0,11662,11656,1,0,0,0,11662,11657,1,0,0,0,11663,1681, - 1,0,0,0,11664,11666,5,265,0,0,11665,11667,3,1680,840,0,11666,11665, - 1,0,0,0,11666,11667,1,0,0,0,11667,11668,1,0,0,0,11668,11669,3,1714, - 857,0,11669,11670,5,7,0,0,11670,1683,1,0,0,0,11671,11673,3,1016, - 508,0,11672,11671,1,0,0,0,11672,11673,1,0,0,0,11673,11674,1,0,0, - 0,11674,11675,5,525,0,0,11675,11677,5,71,0,0,11676,11678,5,81,0, - 0,11677,11676,1,0,0,0,11677,11678,1,0,0,0,11678,11679,1,0,0,0,11679, - 11681,3,1408,704,0,11680,11682,5,9,0,0,11681,11680,1,0,0,0,11681, - 11682,1,0,0,0,11682,11687,1,0,0,0,11683,11685,5,36,0,0,11684,11683, - 1,0,0,0,11684,11685,1,0,0,0,11685,11686,1,0,0,0,11686,11688,3,1476, - 738,0,11687,11684,1,0,0,0,11687,11688,1,0,0,0,11688,11689,1,0,0, - 0,11689,11690,5,100,0,0,11690,11691,3,1686,843,0,11691,11692,5,80, - 0,0,11692,11694,3,1688,844,0,11693,11695,3,1690,845,0,11694,11693, - 1,0,0,0,11695,11696,1,0,0,0,11696,11694,1,0,0,0,11696,11697,1,0, - 0,0,11697,1685,1,0,0,0,11698,11700,5,81,0,0,11699,11698,1,0,0,0, - 11699,11700,1,0,0,0,11700,11701,1,0,0,0,11701,11703,3,1408,704,0, - 11702,11704,5,9,0,0,11703,11702,1,0,0,0,11703,11704,1,0,0,0,11704, - 11710,1,0,0,0,11705,11708,3,1006,503,0,11706,11708,3,1102,551,0, - 11707,11705,1,0,0,0,11707,11706,1,0,0,0,11708,11710,1,0,0,0,11709, - 11699,1,0,0,0,11709,11707,1,0,0,0,11710,11715,1,0,0,0,11711,11713, - 5,36,0,0,11712,11711,1,0,0,0,11712,11713,1,0,0,0,11713,11714,1,0, - 0,0,11714,11716,3,1476,738,0,11715,11712,1,0,0,0,11715,11716,1,0, - 0,0,11716,1687,1,0,0,0,11717,11718,3,1214,607,0,11718,1689,1,0,0, - 0,11719,11720,5,102,0,0,11720,11723,5,526,0,0,11721,11722,5,33,0, - 0,11722,11724,3,1214,607,0,11723,11721,1,0,0,0,11723,11724,1,0,0, - 0,11724,11725,1,0,0,0,11725,11730,5,93,0,0,11726,11731,3,1694,847, - 0,11727,11731,5,182,0,0,11728,11729,5,57,0,0,11729,11731,5,270,0, - 0,11730,11726,1,0,0,0,11730,11727,1,0,0,0,11730,11728,1,0,0,0,11731, - 11746,1,0,0,0,11732,11733,5,102,0,0,11733,11734,5,77,0,0,11734,11737, - 5,526,0,0,11735,11736,5,33,0,0,11736,11738,3,1214,607,0,11737,11735, - 1,0,0,0,11737,11738,1,0,0,0,11738,11739,1,0,0,0,11739,11743,5,93, - 0,0,11740,11744,3,1692,846,0,11741,11742,5,57,0,0,11742,11744,5, - 270,0,0,11743,11740,1,0,0,0,11743,11741,1,0,0,0,11744,11746,1,0, - 0,0,11745,11719,1,0,0,0,11745,11732,1,0,0,0,11746,1691,1,0,0,0,11747, - 11752,5,241,0,0,11748,11749,5,2,0,0,11749,11750,3,244,122,0,11750, - 11751,5,3,0,0,11751,11753,1,0,0,0,11752,11748,1,0,0,0,11752,11753, - 1,0,0,0,11753,11757,1,0,0,0,11754,11755,5,463,0,0,11755,11756,7, - 47,0,0,11756,11758,5,450,0,0,11757,11754,1,0,0,0,11757,11758,1,0, - 0,0,11758,11759,1,0,0,0,11759,11760,3,1696,848,0,11760,1693,1,0, - 0,0,11761,11762,5,369,0,0,11762,11775,5,333,0,0,11763,11764,3,1434, - 717,0,11764,11765,5,10,0,0,11765,11766,3,1700,850,0,11766,11776, - 1,0,0,0,11767,11768,5,2,0,0,11768,11769,3,244,122,0,11769,11770, - 5,3,0,0,11770,11771,5,10,0,0,11771,11772,5,2,0,0,11772,11773,3,1698, - 849,0,11773,11774,5,3,0,0,11774,11776,1,0,0,0,11775,11763,1,0,0, - 0,11775,11767,1,0,0,0,11776,11777,1,0,0,0,11777,11775,1,0,0,0,11777, - 11778,1,0,0,0,11778,1695,1,0,0,0,11779,11780,5,422,0,0,11780,11784, - 3,1698,849,0,11781,11782,5,53,0,0,11782,11784,5,422,0,0,11783,11779, - 1,0,0,0,11783,11781,1,0,0,0,11784,1697,1,0,0,0,11785,11786,5,2,0, - 0,11786,11791,3,1700,850,0,11787,11788,5,6,0,0,11788,11790,3,1700, - 850,0,11789,11787,1,0,0,0,11790,11793,1,0,0,0,11791,11789,1,0,0, - 0,11791,11792,1,0,0,0,11792,11794,1,0,0,0,11793,11791,1,0,0,0,11794, - 11795,5,3,0,0,11795,1699,1,0,0,0,11796,11799,3,1050,525,0,11797, - 11799,5,53,0,0,11798,11796,1,0,0,0,11798,11797,1,0,0,0,11799,1701, - 1,0,0,0,11800,11801,5,157,0,0,11801,11802,3,1714,857,0,11802,11803, - 5,7,0,0,11803,1703,1,0,0,0,11804,11805,5,78,0,0,11805,11806,5,7, - 0,0,11806,1705,1,0,0,0,11807,11809,5,161,0,0,11808,11810,3,1710, - 855,0,11809,11808,1,0,0,0,11809,11810,1,0,0,0,11810,11811,1,0,0, - 0,11811,11812,5,7,0,0,11812,1707,1,0,0,0,11813,11815,5,319,0,0,11814, - 11816,3,1710,855,0,11815,11814,1,0,0,0,11815,11816,1,0,0,0,11816, - 11817,1,0,0,0,11817,11818,5,7,0,0,11818,1709,1,0,0,0,11819,11821, - 5,33,0,0,11820,11822,5,269,0,0,11821,11820,1,0,0,0,11821,11822,1, - 0,0,0,11822,11823,1,0,0,0,11823,11824,5,153,0,0,11824,1711,1,0,0, - 0,11825,11826,5,333,0,0,11826,11827,3,558,279,0,11827,11828,5,94, - 0,0,11828,11829,5,53,0,0,11829,11830,5,7,0,0,11830,11838,1,0,0,0, - 11831,11834,5,313,0,0,11832,11835,3,558,279,0,11833,11835,5,30,0, - 0,11834,11832,1,0,0,0,11834,11833,1,0,0,0,11835,11836,1,0,0,0,11836, - 11838,5,7,0,0,11837,11825,1,0,0,0,11837,11831,1,0,0,0,11838,1713, - 1,0,0,0,11839,11842,3,1476,738,0,11840,11842,5,28,0,0,11841,11839, - 1,0,0,0,11841,11840,1,0,0,0,11842,1715,1,0,0,0,11843,11847,1,0,0, - 0,11844,11845,5,517,0,0,11845,11847,3,1718,859,0,11846,11843,1,0, - 0,0,11846,11844,1,0,0,0,11847,1717,1,0,0,0,11848,11850,3,1720,860, - 0,11849,11848,1,0,0,0,11850,11851,1,0,0,0,11851,11849,1,0,0,0,11851, - 11852,1,0,0,0,11852,1719,1,0,0,0,11853,11854,5,102,0,0,11854,11855, - 3,1722,861,0,11855,11856,5,93,0,0,11856,11857,3,1562,781,0,11857, - 1721,1,0,0,0,11858,11863,3,1724,862,0,11859,11860,5,82,0,0,11860, - 11862,3,1724,862,0,11861,11859,1,0,0,0,11862,11865,1,0,0,0,11863, - 11861,1,0,0,0,11863,11864,1,0,0,0,11864,1723,1,0,0,0,11865,11863, - 1,0,0,0,11866,11870,3,1734,867,0,11867,11868,5,511,0,0,11868,11870, - 3,1460,730,0,11869,11866,1,0,0,0,11869,11867,1,0,0,0,11870,1725, - 1,0,0,0,11871,11874,1,0,0,0,11872,11874,3,1526,763,0,11873,11871, - 1,0,0,0,11873,11872,1,0,0,0,11874,1727,1,0,0,0,11875,11878,1,0,0, - 0,11876,11878,3,1526,763,0,11877,11875,1,0,0,0,11877,11876,1,0,0, - 0,11878,1729,1,0,0,0,11879,11882,1,0,0,0,11880,11882,3,1734,867, - 0,11881,11879,1,0,0,0,11881,11880,1,0,0,0,11882,1731,1,0,0,0,11883, - 11884,5,102,0,0,11884,11885,3,1742,871,0,11885,1733,1,0,0,0,11886, - 11889,3,1476,738,0,11887,11889,3,1736,868,0,11888,11886,1,0,0,0, - 11888,11887,1,0,0,0,11889,1735,1,0,0,0,11890,11891,7,80,0,0,11891, - 1737,1,0,0,0,11892,11894,3,1386,693,0,11893,11892,1,0,0,0,11893, - 11894,1,0,0,0,11894,11896,1,0,0,0,11895,11897,3,1030,515,0,11896, - 11895,1,0,0,0,11896,11897,1,0,0,0,11897,11899,1,0,0,0,11898,11900, - 3,1104,552,0,11899,11898,1,0,0,0,11899,11900,1,0,0,0,11900,11902, - 1,0,0,0,11901,11903,3,1146,573,0,11902,11901,1,0,0,0,11902,11903, - 1,0,0,0,11903,11905,1,0,0,0,11904,11906,3,1074,537,0,11905,11904, - 1,0,0,0,11905,11906,1,0,0,0,11906,11908,1,0,0,0,11907,11909,3,1088, - 544,0,11908,11907,1,0,0,0,11908,11909,1,0,0,0,11909,11911,1,0,0, - 0,11910,11912,3,1290,645,0,11911,11910,1,0,0,0,11911,11912,1,0,0, - 0,11912,1739,1,0,0,0,11913,11914,3,1738,869,0,11914,1741,1,0,0,0, - 11915,11916,3,1738,869,0,11916,1743,1,0,0,0,11917,11918,3,1214,607, - 0,11918,1745,1,0,0,0,11919,11920,3,1214,607,0,11920,1747,1,0,0,0, - 11921,11923,3,6,3,0,11922,11924,3,1750,875,0,11923,11922,1,0,0,0, - 11923,11924,1,0,0,0,11924,1749,1,0,0,0,11925,11926,5,71,0,0,11926, - 11927,3,1032,516,0,11927,11928,3,1676,838,0,11928,1751,1,0,0,0,1280, - 1755,1764,1883,1887,1896,1905,1911,1917,1949,1961,1967,1975,1983, - 1989,1998,2004,2016,2022,2028,2035,2039,2044,2048,2061,2072,2078, - 2094,2097,2102,2108,2113,2122,2126,2138,2142,2145,2149,2165,2178, - 2185,2193,2198,2205,2211,2217,2224,2235,2239,2243,2247,2260,2264, - 2269,2274,2286,2295,2307,2312,2323,2329,2334,2344,2349,2356,2361, - 2366,2377,2383,2388,2396,2405,2420,2426,2432,2437,2444,2456,2464, - 2472,2490,2498,2501,2506,2513,2522,2531,2537,2541,2550,2559,2567, - 2575,2584,2593,2597,2604,2610,2614,2617,2621,2625,2629,2634,2637, - 2641,2659,2663,2758,2765,2781,2795,2805,2807,2812,2816,2819,2825, - 2827,2855,2865,2878,2885,2890,2894,2900,2905,2908,2910,2915,2919, - 2923,2927,2931,2934,2938,2946,2950,2954,2963,2970,2975,2982,2987, - 2994,2999,3017,3022,3034,3039,3048,3055,3062,3066,3071,3075,3078, - 3081,3084,3087,3090,3095,3098,3101,3104,3107,3110,3116,3120,3123, - 3126,3129,3132,3134,3143,3158,3166,3172,3176,3181,3184,3187,3191, - 3195,3202,3205,3208,3212,3216,3230,3235,3242,3247,3251,3254,3258, - 3261,3263,3270,3273,3277,3283,3286,3293,3302,3309,3314,3317,3320, - 3323,3327,3334,3339,3352,3362,3375,3378,3381,3388,3396,3399,3402, - 3409,3413,3419,3422,3425,3428,3440,3443,3446,3450,3464,3480,3491, - 3506,3523,3525,3546,3551,3554,3558,3561,3567,3570,3572,3583,3592, - 3598,3601,3604,3618,3621,3624,3629,3637,3646,3650,3656,3660,3663, - 3666,3669,3672,3678,3682,3687,3693,3697,3700,3703,3706,3714,3718, - 3722,3726,3730,3735,3749,3758,3775,3780,3783,3785,3795,3802,3807, - 3810,3813,3820,3823,3825,3831,3840,3850,3855,3863,3867,3874,3884, - 3895,4003,4011,4014,4024,4029,4039,4050,4062,4075,4085,4097,4101, - 4104,4111,4119,4129,4131,4137,4142,4146,4151,4157,4164,4170,4172, - 4179,4187,4192,4203,4210,4214,4231,4234,4237,4240,4243,4251,4254, - 4257,4263,4271,4275,4287,4293,4296,4301,4305,4312,4323,4346,4366, - 4375,4378,4381,4391,4394,4403,4407,4410,4418,4424,4428,4439,4449, - 4457,4462,4474,4491,4495,4501,4508,4516,4530,4556,4563,4577,4592, - 4605,4614,4639,4650,4692,4700,4706,4717,4723,4731,4742,4756,4765, - 4775,4787,4802,4813,4821,4831,4838,4841,4847,4850,4865,4878,4907, - 4914,4929,4941,4945,4950,4954,4959,4963,4969,4973,4978,4982,4988, - 4992,4997,5001,5006,5010,5015,5019,5026,5030,5037,5041,5048,5052, - 5059,5063,5069,5073,5079,5083,5088,5092,5099,5103,5107,5111,5115, - 5120,5124,5129,5133,5138,5142,5147,5153,5158,5164,5169,5175,5180, - 5184,5189,5193,5199,5203,5208,5216,5222,5228,5234,5240,5247,5252, - 5256,5261,5265,5270,5276,5283,5288,5295,5305,5309,5315,5317,5324, - 5363,5378,5396,5405,5418,5422,5428,5435,5440,5444,5447,5453,5524, - 5620,5624,5629,5639,5650,5660,5671,5682,5693,5704,5716,5727,5735, - 5742,5748,5756,5761,5766,5771,5777,5784,5790,5796,5801,5807,5814, - 5819,5825,5832,5835,5848,5857,5869,5871,5889,5896,5906,5911,5915, - 5919,5923,5925,5985,5992,5998,6009,6012,6019,6022,6032,6035,6037, - 6056,6068,6077,6086,6098,6100,6106,6110,6113,6116,6121,6127,6130, - 6133,6136,6139,6155,6159,6162,6165,6168,6171,6176,6179,6181,6194, - 6206,6220,6224,6230,6240,6242,6247,6255,6265,6274,6282,6291,6293, - 6300,6309,6311,6318,6327,6329,6333,6342,6347,6353,6358,6362,6367, - 6385,6390,6405,6414,6425,6431,6468,6488,6495,6506,6520,6527,6535, - 6540,6547,6551,6556,6560,6565,6569,6571,6576,6580,6585,6589,6613, - 6620,6630,6642,6647,6660,6672,6684,6686,6692,6699,6744,6762,6766, - 6771,6774,6778,6783,6788,6791,6798,6815,6886,6917,6971,6981,6991, - 7002,7012,7023,7033,7038,7047,7052,7062,7067,7076,7089,7094,7206, - 7208,7219,7230,7241,7254,7266,7277,7284,7374,7427,7437,7448,7459, - 7473,7488,7499,7506,7560,7701,7707,7710,7720,7760,7770,7777,7800, - 7809,7818,7827,7860,7864,7874,7878,7888,7891,7895,7899,7907,7918, - 7930,7934,7937,7941,7944,7949,7953,7956,7960,7963,7967,7970,7981, - 7988,8001,8015,8019,8024,8031,8038,8041,8046,8049,8058,8060,8065, - 8069,8081,8084,8091,8095,8100,8110,8118,8121,8124,8129,8131,8137, - 8144,8164,8184,8188,8193,8262,8267,8273,8286,8290,8294,8300,8302, - 8310,8320,8323,8326,8329,8332,8339,8342,8344,8348,8351,8358,8360, - 8367,8374,8378,8382,8391,8397,8401,8405,8410,8422,8429,8439,8452, - 8463,8470,8475,8479,8483,8488,8501,8506,8510,8514,8521,8524,8526, - 8542,8545,8552,8555,8560,8566,8572,8576,8585,8594,8601,8604,8610, - 8615,8621,8627,8630,8633,8640,8644,8647,8662,8665,8672,8675,8682, - 8685,8688,8695,8707,8714,8716,8726,8744,8746,8754,8758,8768,8772, - 8776,8780,8782,8787,8791,8795,8797,8799,8803,8807,8810,8813,8816, - 8819,8821,8824,8827,8830,8833,8836,8839,8848,8850,8855,8859,8865, - 8869,8873,8882,8887,8891,8897,8900,8919,8927,8936,8940,8943,8947, - 8952,8958,8970,8985,8992,8995,8999,9003,9007,9009,9017,9026,9032, - 9034,9041,9045,9054,9058,9067,9076,9088,9116,9123,9127,9130,9135, - 9139,9142,9158,9169,9174,9177,9180,9184,9188,9192,9197,9201,9205, - 9207,9216,9221,9227,9231,9233,9240,9245,9251,9253,9257,9264,9271, - 9274,9280,9284,9293,9296,9300,9303,9306,9314,9320,9322,9325,9329, - 9332,9335,9339,9343,9349,9352,9361,9368,9370,9377,9385,9390,9393, - 9401,9410,9418,9420,9424,9431,9450,9459,9465,9484,9493,9499,9503, - 9508,9518,9525,9534,9537,9546,9548,9554,9558,9563,9573,9579,9581, - 9587,9591,9594,9607,9613,9617,9621,9624,9632,9636,9640,9648,9655, - 9662,9666,9672,9674,9683,9686,9696,9712,9718,9723,9730,9739,9746, - 9754,9762,9767,9771,9774,9780,9785,9801,9804,9806,9818,9820,9824, - 9832,9834,9838,9840,9848,9852,9861,9869,9875,9878,9887,9892,9899, - 9909,9935,9946,9948,9950,9958,9981,9989,9999,10002,10007,10012,10016, - 10019,10023,10026,10029,10032,10036,10050,10057,10064,10071,10089, - 10097,10109,10115,10128,10167,10169,10189,10199,10210,10222,10229, - 10241,10253,10259,10267,10284,10309,10319,10323,10326,10329,10332, - 10345,10350,10355,10357,10365,10374,10383,10388,10397,10402,10416, - 10426,10434,10448,10455,10463,10471,10479,10483,10490,10498,10505, - 10511,10520,10535,10546,10579,10588,10595,10599,10603,10610,10624, - 10629,10634,10638,10640,10643,10650,10655,10665,10673,10676,10683, - 10691,10699,10707,10715,10720,10724,10728,10732,10736,10740,10744, - 10751,10759,10764,10768,10772,10782,10788,10804,10810,10816,10828, - 10833,10841,10848,10853,10865,10873,10878,10888,10899,10906,10913, - 10924,10927,10929,10933,10936,10942,10948,10952,10958,10966,10970, - 10978,11035,11048,11071,11079,11083,11095,11097,11104,11113,11131, - 11139,11148,11155,11165,11171,11178,11183,11189,11193,11200,11230, - 11243,11252,11256,11272,11279,11292,11300,11320,11326,11338,11343, - 11353,11385,11390,11399,11404,11408,11413,11429,11434,11449,11452, - 11458,11462,11471,11479,11488,11494,11503,11505,11510,11521,11532, - 11553,11560,11567,11573,11576,11587,11594,11596,11605,11612,11618, - 11624,11628,11632,11645,11660,11662,11666,11672,11677,11681,11684, - 11687,11696,11699,11703,11707,11709,11712,11715,11723,11730,11737, - 11743,11745,11752,11757,11775,11777,11783,11791,11798,11809,11815, - 11821,11834,11837,11841,11846,11851,11863,11869,11873,11877,11881, - 11888,11893,11896,11899,11902,11905,11908,11911,11923 + 144,210,210,37,0,33,33,35,35,43,43,45,45,53,53,57,57,61,61,92,92, + 116,116,123,123,130,130,144,144,153,153,157,157,161,161,167,167, + 172,172,207,207,210,210,241,241,249,249,265,265,268,269,279,279, + 293,293,307,307,313,313,319,319,323,324,333,333,360,360,433,434, + 477,477,490,502,504,504,506,518,520,520,13157,0,1751,1,0,0,0,2,1756, + 1,0,0,0,4,1758,1,0,0,0,6,1879,1,0,0,0,8,1881,1,0,0,0,10,1885,1,0, + 0,0,12,1888,1,0,0,0,14,1896,1,0,0,0,16,1901,1,0,0,0,18,1907,1,0, + 0,0,20,1945,1,0,0,0,22,1957,1,0,0,0,24,1959,1,0,0,0,26,1967,1,0, + 0,0,28,1979,1,0,0,0,30,1981,1,0,0,0,32,1990,1,0,0,0,34,2018,1,0, + 0,0,36,2020,1,0,0,0,38,2068,1,0,0,0,40,2070,1,0,0,0,42,2078,1,0, + 0,0,44,2085,1,0,0,0,46,2087,1,0,0,0,48,2102,1,0,0,0,50,2109,1,0, + 0,0,52,2118,1,0,0,0,54,2120,1,0,0,0,56,2134,1,0,0,0,58,2138,1,0, + 0,0,60,2174,1,0,0,0,62,2176,1,0,0,0,64,2184,1,0,0,0,66,2194,1,0, + 0,0,68,2201,1,0,0,0,70,2207,1,0,0,0,72,2213,1,0,0,0,74,2231,1,0, + 0,0,76,2235,1,0,0,0,78,2239,1,0,0,0,80,2243,1,0,0,0,82,2245,1,0, + 0,0,84,2256,1,0,0,0,86,2260,1,0,0,0,88,2265,1,0,0,0,90,2270,1,0, + 0,0,92,2272,1,0,0,0,94,2284,1,0,0,0,96,2291,1,0,0,0,98,2293,1,0, + 0,0,100,2295,1,0,0,0,102,2297,1,0,0,0,104,2433,1,0,0,0,106,2435, + 1,0,0,0,108,2452,1,0,0,0,110,2454,1,0,0,0,112,2468,1,0,0,0,114,2470, + 1,0,0,0,116,2486,1,0,0,0,118,2488,1,0,0,0,120,2709,1,0,0,0,122,2716, + 1,0,0,0,124,2718,1,0,0,0,126,2720,1,0,0,0,128,2723,1,0,0,0,130,2732, + 1,0,0,0,132,2734,1,0,0,0,134,2738,1,0,0,0,136,2741,1,0,0,0,138,2749, + 1,0,0,0,140,2761,1,0,0,0,142,2778,1,0,0,0,144,2806,1,0,0,0,146,2808, + 1,0,0,0,148,2811,1,0,0,0,150,2819,1,0,0,0,152,2824,1,0,0,0,154,2861, + 1,0,0,0,156,2863,1,0,0,0,158,2905,1,0,0,0,160,2907,1,0,0,0,162,2909, + 1,0,0,0,164,2914,1,0,0,0,166,2921,1,0,0,0,168,2926,1,0,0,0,170,2968, + 1,0,0,0,172,2970,1,0,0,0,174,2973,1,0,0,0,176,2978,1,0,0,0,178,2980, + 1,0,0,0,180,2988,1,0,0,0,182,2999,1,0,0,0,184,3001,1,0,0,0,186,3009, + 1,0,0,0,188,3011,1,0,0,0,190,3094,1,0,0,0,192,3096,1,0,0,0,194,3098, + 1,0,0,0,196,3100,1,0,0,0,198,3104,1,0,0,0,200,3112,1,0,0,0,202,3123, + 1,0,0,0,204,3127,1,0,0,0,206,3129,1,0,0,0,208,3150,1,0,0,0,210,3171, + 1,0,0,0,212,3174,1,0,0,0,214,3183,1,0,0,0,216,3193,1,0,0,0,218,3214, + 1,0,0,0,220,3274,1,0,0,0,222,3276,1,0,0,0,224,3285,1,0,0,0,226,3290, + 1,0,0,0,228,3292,1,0,0,0,230,3295,1,0,0,0,232,3303,1,0,0,0,234,3306, + 1,0,0,0,236,3313,1,0,0,0,238,3401,1,0,0,0,240,3403,1,0,0,0,242,3406, + 1,0,0,0,244,3410,1,0,0,0,246,3418,1,0,0,0,248,3423,1,0,0,0,250,3426, + 1,0,0,0,252,3434,1,0,0,0,254,3444,1,0,0,0,256,3457,1,0,0,0,258,3459, + 1,0,0,0,260,3463,1,0,0,0,262,3476,1,0,0,0,264,3478,1,0,0,0,266,3483, + 1,0,0,0,268,3485,1,0,0,0,270,3492,1,0,0,0,272,3523,1,0,0,0,274,3525, + 1,0,0,0,276,3534,1,0,0,0,278,3536,1,0,0,0,280,3545,1,0,0,0,282,3549, + 1,0,0,0,284,3557,1,0,0,0,286,3562,1,0,0,0,288,3566,1,0,0,0,290,3585, + 1,0,0,0,292,3595,1,0,0,0,294,3609,1,0,0,0,296,3625,1,0,0,0,298,3631, + 1,0,0,0,300,3646,1,0,0,0,302,3659,1,0,0,0,304,3661,1,0,0,0,306,3671, + 1,0,0,0,308,3683,1,0,0,0,310,3691,1,0,0,0,312,3693,1,0,0,0,314,3698, + 1,0,0,0,316,3736,1,0,0,0,318,3738,1,0,0,0,320,3746,1,0,0,0,322,3748, + 1,0,0,0,324,3756,1,0,0,0,326,3778,1,0,0,0,328,3780,1,0,0,0,330,3784, + 1,0,0,0,332,3791,1,0,0,0,334,3793,1,0,0,0,336,3795,1,0,0,0,338,3797, + 1,0,0,0,340,3808,1,0,0,0,342,3811,1,0,0,0,344,3825,1,0,0,0,346,3835, + 1,0,0,0,348,3837,1,0,0,0,350,3846,1,0,0,0,352,3849,1,0,0,0,354,3954, + 1,0,0,0,356,3956,1,0,0,0,358,3975,1,0,0,0,360,3978,1,0,0,0,362,3982, + 1,0,0,0,364,4001,1,0,0,0,366,4003,1,0,0,0,368,4008,1,0,0,0,370,4016, + 1,0,0,0,372,4021,1,0,0,0,374,4036,1,0,0,0,376,4038,1,0,0,0,378,4041, + 1,0,0,0,380,4043,1,0,0,0,382,4045,1,0,0,0,384,4064,1,0,0,0,386,4067, + 1,0,0,0,388,4072,1,0,0,0,390,4074,1,0,0,0,392,4123,1,0,0,0,394,4125, + 1,0,0,0,396,4143,1,0,0,0,398,4145,1,0,0,0,400,4150,1,0,0,0,402,4165, + 1,0,0,0,404,4167,1,0,0,0,406,4176,1,0,0,0,408,4196,1,0,0,0,410,4210, + 1,0,0,0,412,4244,1,0,0,0,414,4274,1,0,0,0,416,4276,1,0,0,0,418,4281, + 1,0,0,0,420,4287,1,0,0,0,422,4290,1,0,0,0,424,4293,1,0,0,0,426,4299, + 1,0,0,0,428,4302,1,0,0,0,430,4304,1,0,0,0,432,4313,1,0,0,0,434,4369, + 1,0,0,0,436,4375,1,0,0,0,438,4377,1,0,0,0,440,4383,1,0,0,0,442,4385, + 1,0,0,0,444,4400,1,0,0,0,446,4402,1,0,0,0,448,4406,1,0,0,0,450,4410, + 1,0,0,0,452,4417,1,0,0,0,454,4419,1,0,0,0,456,4421,1,0,0,0,458,4423, + 1,0,0,0,460,4429,1,0,0,0,462,4431,1,0,0,0,464,4433,1,0,0,0,466,4442, + 1,0,0,0,468,4446,1,0,0,0,470,4459,1,0,0,0,472,4461,1,0,0,0,474,4467, + 1,0,0,0,476,4481,1,0,0,0,478,4507,1,0,0,0,480,4509,1,0,0,0,482,4517, + 1,0,0,0,484,4523,1,0,0,0,486,4531,1,0,0,0,488,4542,1,0,0,0,490,4544, + 1,0,0,0,492,4656,1,0,0,0,494,4658,1,0,0,0,496,4662,1,0,0,0,498,4670, + 1,0,0,0,500,4681,1,0,0,0,502,4683,1,0,0,0,504,4687,1,0,0,0,506,4695, + 1,0,0,0,508,4699,1,0,0,0,510,4701,1,0,0,0,512,4731,1,0,0,0,514,4733, + 1,0,0,0,516,4737,1,0,0,0,518,4755,1,0,0,0,520,4794,1,0,0,0,522,4796, + 1,0,0,0,524,4798,1,0,0,0,526,4807,1,0,0,0,528,4809,1,0,0,0,530,4811, + 1,0,0,0,532,4836,1,0,0,0,534,4838,1,0,0,0,536,4858,1,0,0,0,538,4860, + 1,0,0,0,540,5246,1,0,0,0,542,5248,1,0,0,0,544,5280,1,0,0,0,546,5313, + 1,0,0,0,548,5315,1,0,0,0,550,5317,1,0,0,0,552,5325,1,0,0,0,554,5329, + 1,0,0,0,556,5333,1,0,0,0,558,5339,1,0,0,0,560,5343,1,0,0,0,562,5351, + 1,0,0,0,564,5371,1,0,0,0,566,5542,1,0,0,0,568,5546,1,0,0,0,570,5657, + 1,0,0,0,572,5659,1,0,0,0,574,5664,1,0,0,0,576,5670,1,0,0,0,578,5757, + 1,0,0,0,580,5759,1,0,0,0,582,5761,1,0,0,0,584,5763,1,0,0,0,586,5793, + 1,0,0,0,588,5811,1,0,0,0,590,5813,1,0,0,0,592,5821,1,0,0,0,594,5823, + 1,0,0,0,596,5847,1,0,0,0,598,5907,1,0,0,0,600,5909,1,0,0,0,602,5920, + 1,0,0,0,604,5922,1,0,0,0,606,5926,1,0,0,0,608,5959,1,0,0,0,610,5961, + 1,0,0,0,612,5965,1,0,0,0,614,5969,1,0,0,0,616,5978,1,0,0,0,618,5990, + 1,0,0,0,620,6022,1,0,0,0,622,6024,1,0,0,0,624,6026,1,0,0,0,626,6063, + 1,0,0,0,628,6065,1,0,0,0,630,6067,1,0,0,0,632,6069,1,0,0,0,634,6072, + 1,0,0,0,636,6103,1,0,0,0,638,6116,1,0,0,0,640,6118,1,0,0,0,642,6123, + 1,0,0,0,644,6131,1,0,0,0,646,6134,1,0,0,0,648,6136,1,0,0,0,650,6142, + 1,0,0,0,652,6144,1,0,0,0,654,6171,1,0,0,0,656,6182,1,0,0,0,658,6185, + 1,0,0,0,660,6191,1,0,0,0,662,6199,1,0,0,0,664,6215,1,0,0,0,666,6217, + 1,0,0,0,668,6233,1,0,0,0,670,6235,1,0,0,0,672,6251,1,0,0,0,674,6253, + 1,0,0,0,676,6259,1,0,0,0,678,6280,1,0,0,0,680,6289,1,0,0,0,682,6291, + 1,0,0,0,684,6293,1,0,0,0,686,6307,1,0,0,0,688,6309,1,0,0,0,690,6314, + 1,0,0,0,692,6316,1,0,0,0,694,6331,1,0,0,0,696,6339,1,0,0,0,698,6342, + 1,0,0,0,700,6351,1,0,0,0,702,6390,1,0,0,0,704,6417,1,0,0,0,706,6419, + 1,0,0,0,708,6431,1,0,0,0,710,6434,1,0,0,0,712,6437,1,0,0,0,714,6445, + 1,0,0,0,716,6457,1,0,0,0,718,6460,1,0,0,0,720,6464,1,0,0,0,722,6493, + 1,0,0,0,724,6495,1,0,0,0,726,6504,1,0,0,0,728,6535,1,0,0,0,730,6542, + 1,0,0,0,732,6547,1,0,0,0,734,6555,1,0,0,0,736,6558,1,0,0,0,738,6562, + 1,0,0,0,740,6569,1,0,0,0,742,6608,1,0,0,0,744,6614,1,0,0,0,746,6616, + 1,0,0,0,748,6619,1,0,0,0,750,6666,1,0,0,0,752,6684,1,0,0,0,754,6696, + 1,0,0,0,756,6713,1,0,0,0,758,6715,1,0,0,0,760,6723,1,0,0,0,762,6737, + 1,0,0,0,764,7130,1,0,0,0,766,7132,1,0,0,0,768,7204,1,0,0,0,770,7206, + 1,0,0,0,772,7393,1,0,0,0,774,7395,1,0,0,0,776,7403,1,0,0,0,778,7419, + 1,0,0,0,780,7426,1,0,0,0,782,7428,1,0,0,0,784,7621,1,0,0,0,786,7623, + 1,0,0,0,788,7632,1,0,0,0,790,7640,1,0,0,0,792,7680,1,0,0,0,794,7682, + 1,0,0,0,796,7692,1,0,0,0,798,7700,1,0,0,0,800,7780,1,0,0,0,802,7782, + 1,0,0,0,804,7808,1,0,0,0,806,7811,1,0,0,0,808,7827,1,0,0,0,810,7829, + 1,0,0,0,812,7831,1,0,0,0,814,7833,1,0,0,0,816,7835,1,0,0,0,818,7840, + 1,0,0,0,820,7843,1,0,0,0,822,7850,1,0,0,0,824,7917,1,0,0,0,826,7919, + 1,0,0,0,828,7931,1,0,0,0,830,7933,1,0,0,0,832,7943,1,0,0,0,834,7945, + 1,0,0,0,836,7951,1,0,0,0,838,7983,1,0,0,0,840,7990,1,0,0,0,842,7993, + 1,0,0,0,844,8002,1,0,0,0,846,8005,1,0,0,0,848,8009,1,0,0,0,850,8026, + 1,0,0,0,852,8028,1,0,0,0,854,8030,1,0,0,0,856,8046,1,0,0,0,858,8052, + 1,0,0,0,860,8060,1,0,0,0,862,8062,1,0,0,0,864,8068,1,0,0,0,866,8073, + 1,0,0,0,868,8082,1,0,0,0,870,8108,1,0,0,0,872,8110,1,0,0,0,874,8180, + 1,0,0,0,876,8182,1,0,0,0,878,8184,1,0,0,0,880,8215,1,0,0,0,882,8217, + 1,0,0,0,884,8228,1,0,0,0,886,8257,1,0,0,0,888,8273,1,0,0,0,890,8275, + 1,0,0,0,892,8283,1,0,0,0,894,8285,1,0,0,0,896,8291,1,0,0,0,898,8295, + 1,0,0,0,900,8297,1,0,0,0,902,8299,1,0,0,0,904,8310,1,0,0,0,906,8312, + 1,0,0,0,908,8316,1,0,0,0,910,8320,1,0,0,0,912,8325,1,0,0,0,914,8327, + 1,0,0,0,916,8329,1,0,0,0,918,8333,1,0,0,0,920,8337,1,0,0,0,922,8345, + 1,0,0,0,924,8365,1,0,0,0,926,8376,1,0,0,0,928,8378,1,0,0,0,930,8386, + 1,0,0,0,932,8392,1,0,0,0,934,8396,1,0,0,0,936,8398,1,0,0,0,938,8406, + 1,0,0,0,940,8414,1,0,0,0,942,8439,1,0,0,0,944,8441,1,0,0,0,946,8445, + 1,0,0,0,948,8454,1,0,0,0,950,8466,1,0,0,0,952,8475,1,0,0,0,954,8487, + 1,0,0,0,956,8489,1,0,0,0,958,8497,1,0,0,0,960,8500,1,0,0,0,962,8524, + 1,0,0,0,964,8526,1,0,0,0,966,8530,1,0,0,0,968,8544,1,0,0,0,970,8547, + 1,0,0,0,972,8558,1,0,0,0,974,8574,1,0,0,0,976,8576,1,0,0,0,978,8581, + 1,0,0,0,980,8584,1,0,0,0,982,8599,1,0,0,0,984,8625,1,0,0,0,986,8627, + 1,0,0,0,988,8630,1,0,0,0,990,8638,1,0,0,0,992,8646,1,0,0,0,994,8655, + 1,0,0,0,996,8663,1,0,0,0,998,8667,1,0,0,0,1000,8677,1,0,0,0,1002, + 8708,1,0,0,0,1004,8712,1,0,0,0,1006,8759,1,0,0,0,1008,8774,1,0,0, + 0,1010,8776,1,0,0,0,1012,8780,1,0,0,0,1014,8786,1,0,0,0,1016,8794, + 1,0,0,0,1018,8811,1,0,0,0,1020,8819,1,0,0,0,1022,8836,1,0,0,0,1024, + 8838,1,0,0,0,1026,8840,1,0,0,0,1028,8849,1,0,0,0,1030,8867,1,0,0, + 0,1032,8869,1,0,0,0,1034,8871,1,0,0,0,1036,8873,1,0,0,0,1038,8881, + 1,0,0,0,1040,8883,1,0,0,0,1042,8885,1,0,0,0,1044,8889,1,0,0,0,1046, + 8897,1,0,0,0,1048,8918,1,0,0,0,1050,8920,1,0,0,0,1052,8922,1,0,0, + 0,1054,8928,1,0,0,0,1056,8945,1,0,0,0,1058,8954,1,0,0,0,1060,8956, + 1,0,0,0,1062,8963,1,0,0,0,1064,8967,1,0,0,0,1066,8969,1,0,0,0,1068, + 8971,1,0,0,0,1070,8973,1,0,0,0,1072,8980,1,0,0,0,1074,8997,1,0,0, + 0,1076,8999,1,0,0,0,1078,9002,1,0,0,0,1080,9007,1,0,0,0,1082,9012, + 1,0,0,0,1084,9018,1,0,0,0,1086,9025,1,0,0,0,1088,9027,1,0,0,0,1090, + 9030,1,0,0,0,1092,9034,1,0,0,0,1094,9041,1,0,0,0,1096,9053,1,0,0, + 0,1098,9056,1,0,0,0,1100,9070,1,0,0,0,1102,9073,1,0,0,0,1104,9142, + 1,0,0,0,1106,9166,1,0,0,0,1108,9175,1,0,0,0,1110,9189,1,0,0,0,1112, + 9191,1,0,0,0,1114,9202,1,0,0,0,1116,9225,1,0,0,0,1118,9228,1,0,0, + 0,1120,9267,1,0,0,0,1122,9269,1,0,0,0,1124,9277,1,0,0,0,1126,9285, + 1,0,0,0,1128,9292,1,0,0,0,1130,9300,1,0,0,0,1132,9317,1,0,0,0,1134, + 9319,1,0,0,0,1136,9323,1,0,0,0,1138,9331,1,0,0,0,1140,9336,1,0,0, + 0,1142,9339,1,0,0,0,1144,9342,1,0,0,0,1146,9349,1,0,0,0,1148,9351, + 1,0,0,0,1150,9359,1,0,0,0,1152,9364,1,0,0,0,1154,9385,1,0,0,0,1156, + 9393,1,0,0,0,1158,9403,1,0,0,0,1160,9415,1,0,0,0,1162,9417,1,0,0, + 0,1164,9431,1,0,0,0,1166,9451,1,0,0,0,1168,9460,1,0,0,0,1170,9478, + 1,0,0,0,1172,9484,1,0,0,0,1174,9486,1,0,0,0,1176,9493,1,0,0,0,1178, + 9521,1,0,0,0,1180,9523,1,0,0,0,1182,9529,1,0,0,0,1184,9533,1,0,0, + 0,1186,9535,1,0,0,0,1188,9543,1,0,0,0,1190,9547,1,0,0,0,1192,9554, + 1,0,0,0,1194,9571,1,0,0,0,1196,9573,1,0,0,0,1198,9575,1,0,0,0,1200, + 9585,1,0,0,0,1202,9593,1,0,0,0,1204,9620,1,0,0,0,1206,9622,1,0,0, + 0,1208,9629,1,0,0,0,1210,9632,1,0,0,0,1212,9634,1,0,0,0,1214,9638, + 1,0,0,0,1216,9646,1,0,0,0,1218,9654,1,0,0,0,1220,9662,1,0,0,0,1222, + 9671,1,0,0,0,1224,9675,1,0,0,0,1226,9679,1,0,0,0,1228,9705,1,0,0, + 0,1230,9719,1,0,0,0,1232,9739,1,0,0,0,1234,9749,1,0,0,0,1236,9753, + 1,0,0,0,1238,9761,1,0,0,0,1240,9769,1,0,0,0,1242,9775,1,0,0,0,1244, + 9779,1,0,0,0,1246,9786,1,0,0,0,1248,9791,1,0,0,0,1250,9806,1,0,0, + 0,1252,9886,1,0,0,0,1254,9888,1,0,0,0,1256,9890,1,0,0,0,1258,9929, + 1,0,0,0,1260,9933,1,0,0,0,1262,10119,1,0,0,0,1264,10126,1,0,0,0, + 1266,10138,1,0,0,0,1268,10140,1,0,0,0,1270,10145,1,0,0,0,1272,10153, + 1,0,0,0,1274,10158,1,0,0,0,1276,10164,1,0,0,0,1278,10181,1,0,0,0, + 1280,10183,1,0,0,0,1282,10186,1,0,0,0,1284,10192,1,0,0,0,1286,10198, + 1,0,0,0,1288,10201,1,0,0,0,1290,10209,1,0,0,0,1292,10213,1,0,0,0, + 1294,10218,1,0,0,0,1296,10233,1,0,0,0,1298,10235,1,0,0,0,1300,10254, + 1,0,0,0,1302,10262,1,0,0,0,1304,10271,1,0,0,0,1306,10273,1,0,0,0, + 1308,10294,1,0,0,0,1310,10296,1,0,0,0,1312,10303,1,0,0,0,1314,10309, + 1,0,0,0,1316,10313,1,0,0,0,1318,10315,1,0,0,0,1320,10323,1,0,0,0, + 1322,10331,1,0,0,0,1324,10345,1,0,0,0,1326,10347,1,0,0,0,1328,10355, + 1,0,0,0,1330,10363,1,0,0,0,1332,10376,1,0,0,0,1334,10380,1,0,0,0, + 1336,10382,1,0,0,0,1338,10395,1,0,0,0,1340,10397,1,0,0,0,1342,10405, + 1,0,0,0,1344,10412,1,0,0,0,1346,10420,1,0,0,0,1348,10432,1,0,0,0, + 1350,10434,1,0,0,0,1352,10436,1,0,0,0,1354,10445,1,0,0,0,1356,10476, + 1,0,0,0,1358,10485,1,0,0,0,1360,10492,1,0,0,0,1362,10494,1,0,0,0, + 1364,10505,1,0,0,0,1366,10509,1,0,0,0,1368,10514,1,0,0,0,1370,10517, + 1,0,0,0,1372,10519,1,0,0,0,1374,10540,1,0,0,0,1376,10542,1,0,0,0, + 1378,10545,1,0,0,0,1380,10552,1,0,0,0,1382,10555,1,0,0,0,1384,10557, + 1,0,0,0,1386,10573,1,0,0,0,1388,10575,1,0,0,0,1390,10583,1,0,0,0, + 1392,10591,1,0,0,0,1394,10599,1,0,0,0,1396,10607,1,0,0,0,1398,10615, + 1,0,0,0,1400,10619,1,0,0,0,1402,10623,1,0,0,0,1404,10627,1,0,0,0, + 1406,10631,1,0,0,0,1408,10635,1,0,0,0,1410,10639,1,0,0,0,1412,10643, + 1,0,0,0,1414,10651,1,0,0,0,1416,10659,1,0,0,0,1418,10663,1,0,0,0, + 1420,10667,1,0,0,0,1422,10671,1,0,0,0,1424,10673,1,0,0,0,1426,10679, + 1,0,0,0,1428,10685,1,0,0,0,1430,10687,1,0,0,0,1432,10694,1,0,0,0, + 1434,10696,1,0,0,0,1436,10698,1,0,0,0,1438,10700,1,0,0,0,1440,10706, + 1,0,0,0,1442,10712,1,0,0,0,1444,10718,1,0,0,0,1446,10755,1,0,0,0, + 1448,10757,1,0,0,0,1450,10759,1,0,0,0,1452,10761,1,0,0,0,1454,10763, + 1,0,0,0,1456,10765,1,0,0,0,1458,10780,1,0,0,0,1460,10782,1,0,0,0, + 1462,10790,1,0,0,0,1464,10792,1,0,0,0,1466,10794,1,0,0,0,1468,10801, + 1,0,0,0,1470,10803,1,0,0,0,1472,10815,1,0,0,0,1474,10817,1,0,0,0, + 1476,10831,1,0,0,0,1478,10835,1,0,0,0,1480,10844,1,0,0,0,1482,10850, + 1,0,0,0,1484,10854,1,0,0,0,1486,10860,1,0,0,0,1488,10868,1,0,0,0, + 1490,10880,1,0,0,0,1492,10882,1,0,0,0,1494,10884,1,0,0,0,1496,10937, + 1,0,0,0,1498,10939,1,0,0,0,1500,10941,1,0,0,0,1502,10943,1,0,0,0, + 1504,10950,1,0,0,0,1506,10973,1,0,0,0,1508,10975,1,0,0,0,1510,10981, + 1,0,0,0,1512,10985,1,0,0,0,1514,10987,1,0,0,0,1516,10994,1,0,0,0, + 1518,11001,1,0,0,0,1520,11004,1,0,0,0,1522,11008,1,0,0,0,1524,11015, + 1,0,0,0,1526,11017,1,0,0,0,1528,11041,1,0,0,0,1530,11043,1,0,0,0, + 1532,11050,1,0,0,0,1534,11052,1,0,0,0,1536,11060,1,0,0,0,1538,11063, + 1,0,0,0,1540,11067,1,0,0,0,1542,11069,1,0,0,0,1544,11073,1,0,0,0, + 1546,11075,1,0,0,0,1548,11080,1,0,0,0,1550,11085,1,0,0,0,1552,11091, + 1,0,0,0,1554,11095,1,0,0,0,1556,11097,1,0,0,0,1558,11102,1,0,0,0, + 1560,11132,1,0,0,0,1562,11134,1,0,0,0,1564,11154,1,0,0,0,1566,11158, + 1,0,0,0,1568,11160,1,0,0,0,1570,11165,1,0,0,0,1572,11174,1,0,0,0, + 1574,11176,1,0,0,0,1576,11184,1,0,0,0,1578,11188,1,0,0,0,1580,11190, + 1,0,0,0,1582,11194,1,0,0,0,1584,11205,1,0,0,0,1586,11222,1,0,0,0, + 1588,11228,1,0,0,0,1590,11230,1,0,0,0,1592,11240,1,0,0,0,1594,11243, + 1,0,0,0,1596,11247,1,0,0,0,1598,11255,1,0,0,0,1600,11257,1,0,0,0, + 1602,11260,1,0,0,0,1604,11265,1,0,0,0,1606,11270,1,0,0,0,1608,11292, + 1,0,0,0,1610,11306,1,0,0,0,1612,11310,1,0,0,0,1614,11315,1,0,0,0, + 1616,11317,1,0,0,0,1618,11319,1,0,0,0,1620,11331,1,0,0,0,1622,11333, + 1,0,0,0,1624,11340,1,0,0,0,1626,11342,1,0,0,0,1628,11360,1,0,0,0, + 1630,11396,1,0,0,0,1632,11398,1,0,0,0,1634,11407,1,0,0,0,1636,11412, + 1,0,0,0,1638,11414,1,0,0,0,1640,11418,1,0,0,0,1642,11426,1,0,0,0, + 1644,11434,1,0,0,0,1646,11436,1,0,0,0,1648,11443,1,0,0,0,1650,11446, + 1,0,0,0,1652,11462,1,0,0,0,1654,11464,1,0,0,0,1656,11478,1,0,0,0, + 1658,11480,1,0,0,0,1660,11507,1,0,0,0,1662,11509,1,0,0,0,1664,11520, + 1,0,0,0,1666,11526,1,0,0,0,1668,11530,1,0,0,0,1670,11532,1,0,0,0, + 1672,11542,1,0,0,0,1674,11547,1,0,0,0,1676,11564,1,0,0,0,1678,11566, + 1,0,0,0,1680,11574,1,0,0,0,1682,11611,1,0,0,0,1684,11619,1,0,0,0, + 1686,11647,1,0,0,0,1688,11649,1,0,0,0,1690,11663,1,0,0,0,1692,11685, + 1,0,0,0,1694,11687,1,0,0,0,1696,11700,1,0,0,0,1698,11702,1,0,0,0, + 1700,11706,1,0,0,0,1702,11709,1,0,0,0,1704,11715,1,0,0,0,1706,11721, + 1,0,0,0,1708,11739,1,0,0,0,1710,11743,1,0,0,0,1712,11748,1,0,0,0, + 1714,11751,1,0,0,0,1716,11755,1,0,0,0,1718,11760,1,0,0,0,1720,11771, + 1,0,0,0,1722,11775,1,0,0,0,1724,11779,1,0,0,0,1726,11783,1,0,0,0, + 1728,11785,1,0,0,0,1730,11790,1,0,0,0,1732,11792,1,0,0,0,1734,11795, + 1,0,0,0,1736,11815,1,0,0,0,1738,11817,1,0,0,0,1740,11819,1,0,0,0, + 1742,11821,1,0,0,0,1744,11823,1,0,0,0,1746,11827,1,0,0,0,1748,1750, + 3,4,2,0,1749,1748,1,0,0,0,1750,1753,1,0,0,0,1751,1749,1,0,0,0,1751, + 1752,1,0,0,0,1752,1754,1,0,0,0,1753,1751,1,0,0,0,1754,1755,5,0,0, + 1,1755,1,1,0,0,0,1756,1757,3,1502,751,0,1757,3,1,0,0,0,1758,1760, + 3,6,3,0,1759,1761,5,7,0,0,1760,1759,1,0,0,0,1760,1761,1,0,0,0,1761, + 5,1,0,0,0,1762,1880,3,486,243,0,1763,1880,3,862,431,0,1764,1880, + 3,854,427,0,1765,1880,3,856,428,0,1766,1880,3,614,307,0,1767,1880, + 3,868,434,0,1768,1880,3,512,256,0,1769,1880,3,348,174,0,1770,1880, + 3,354,177,0,1771,1880,3,364,182,0,1772,1880,3,390,195,0,1773,1880, + 3,714,357,0,1774,1880,3,42,21,0,1775,1880,3,768,384,0,1776,1880, + 3,772,386,0,1777,1880,3,784,392,0,1778,1880,3,774,387,0,1779,1880, + 3,782,391,0,1780,1880,3,408,204,0,1781,1880,3,410,205,0,1782,1880, + 3,308,154,0,1783,1880,3,864,432,0,1784,1880,3,104,52,0,1785,1880, + 3,762,381,0,1786,1880,3,150,75,0,1787,1880,3,792,396,0,1788,1880, + 3,30,15,0,1789,1880,3,32,16,0,1790,1880,3,26,13,0,1791,1880,3,800, + 400,0,1792,1880,3,290,145,0,1793,1880,3,874,437,0,1794,1880,3,872, + 436,0,1795,1880,3,404,202,0,1796,1880,3,888,444,0,1797,1880,3,10, + 5,0,1798,1880,3,100,50,0,1799,1880,3,156,78,0,1800,1880,3,880,440, + 0,1801,1880,3,566,283,0,1802,1880,3,94,47,0,1803,1880,3,158,79,0, + 1804,1880,3,430,215,0,1805,1880,3,292,146,0,1806,1880,3,490,245, + 0,1807,1880,3,742,371,0,1808,1880,3,878,439,0,1809,1880,3,866,433, + 0,1810,1880,3,342,171,0,1811,1880,3,356,178,0,1812,1880,3,382,191, + 0,1813,1880,3,392,196,0,1814,1880,3,652,326,0,1815,1880,3,40,20, + 0,1816,1880,3,298,149,0,1817,1880,3,516,258,0,1818,1880,3,530,265, + 0,1819,1880,3,786,393,0,1820,1880,3,532,266,0,1821,1880,3,406,203, + 0,1822,1880,3,324,162,0,1823,1880,3,46,23,0,1824,1880,3,306,153, + 0,1825,1880,3,188,94,0,1826,1880,3,794,397,0,1827,1880,3,288,144, + 0,1828,1880,3,338,169,0,1829,1880,3,748,374,0,1830,1880,3,434,217, + 0,1831,1880,3,478,239,0,1832,1880,3,12,6,0,1833,1880,3,24,12,0,1834, + 1880,3,400,200,0,1835,1880,3,842,421,0,1836,1880,3,946,473,0,1837, + 1880,3,990,495,0,1838,1880,3,492,246,0,1839,1880,3,966,483,0,1840, + 1880,3,102,51,0,1841,1880,3,736,368,0,1842,1880,3,540,270,0,1843, + 1880,3,942,471,0,1844,1880,3,924,462,0,1845,1880,3,576,288,0,1846, + 1880,3,584,292,0,1847,1880,3,606,303,0,1848,1880,3,1680,840,0,1849, + 1880,3,394,197,0,1850,1880,3,624,312,0,1851,1880,3,948,474,0,1852, + 1880,3,820,410,0,1853,1880,3,304,152,0,1854,1880,3,840,420,0,1855, + 1880,3,970,485,0,1856,1880,3,816,408,0,1857,1880,3,936,468,0,1858, + 1880,3,538,269,0,1859,1880,3,752,376,0,1860,1880,3,724,362,0,1861, + 1880,3,722,361,0,1862,1880,3,726,363,0,1863,1880,3,764,382,0,1864, + 1880,3,586,293,0,1865,1880,3,608,304,0,1866,1880,3,802,401,0,1867, + 1880,3,570,285,0,1868,1880,3,998,499,0,1869,1880,3,824,412,0,1870, + 1880,3,562,281,0,1871,1880,3,822,411,0,1872,1880,3,980,490,0,1873, + 1880,3,886,443,0,1874,1880,3,82,41,0,1875,1880,3,54,27,0,1876,1880, + 3,92,46,0,1877,1880,3,836,418,0,1878,1880,3,8,4,0,1879,1762,1,0, + 0,0,1879,1763,1,0,0,0,1879,1764,1,0,0,0,1879,1765,1,0,0,0,1879,1766, + 1,0,0,0,1879,1767,1,0,0,0,1879,1768,1,0,0,0,1879,1769,1,0,0,0,1879, + 1770,1,0,0,0,1879,1771,1,0,0,0,1879,1772,1,0,0,0,1879,1773,1,0,0, + 0,1879,1774,1,0,0,0,1879,1775,1,0,0,0,1879,1776,1,0,0,0,1879,1777, + 1,0,0,0,1879,1778,1,0,0,0,1879,1779,1,0,0,0,1879,1780,1,0,0,0,1879, + 1781,1,0,0,0,1879,1782,1,0,0,0,1879,1783,1,0,0,0,1879,1784,1,0,0, + 0,1879,1785,1,0,0,0,1879,1786,1,0,0,0,1879,1787,1,0,0,0,1879,1788, + 1,0,0,0,1879,1789,1,0,0,0,1879,1790,1,0,0,0,1879,1791,1,0,0,0,1879, + 1792,1,0,0,0,1879,1793,1,0,0,0,1879,1794,1,0,0,0,1879,1795,1,0,0, + 0,1879,1796,1,0,0,0,1879,1797,1,0,0,0,1879,1798,1,0,0,0,1879,1799, + 1,0,0,0,1879,1800,1,0,0,0,1879,1801,1,0,0,0,1879,1802,1,0,0,0,1879, + 1803,1,0,0,0,1879,1804,1,0,0,0,1879,1805,1,0,0,0,1879,1806,1,0,0, + 0,1879,1807,1,0,0,0,1879,1808,1,0,0,0,1879,1809,1,0,0,0,1879,1810, + 1,0,0,0,1879,1811,1,0,0,0,1879,1812,1,0,0,0,1879,1813,1,0,0,0,1879, + 1814,1,0,0,0,1879,1815,1,0,0,0,1879,1816,1,0,0,0,1879,1817,1,0,0, + 0,1879,1818,1,0,0,0,1879,1819,1,0,0,0,1879,1820,1,0,0,0,1879,1821, + 1,0,0,0,1879,1822,1,0,0,0,1879,1823,1,0,0,0,1879,1824,1,0,0,0,1879, + 1825,1,0,0,0,1879,1826,1,0,0,0,1879,1827,1,0,0,0,1879,1828,1,0,0, + 0,1879,1829,1,0,0,0,1879,1830,1,0,0,0,1879,1831,1,0,0,0,1879,1832, + 1,0,0,0,1879,1833,1,0,0,0,1879,1834,1,0,0,0,1879,1835,1,0,0,0,1879, + 1836,1,0,0,0,1879,1837,1,0,0,0,1879,1838,1,0,0,0,1879,1839,1,0,0, + 0,1879,1840,1,0,0,0,1879,1841,1,0,0,0,1879,1842,1,0,0,0,1879,1843, + 1,0,0,0,1879,1844,1,0,0,0,1879,1845,1,0,0,0,1879,1846,1,0,0,0,1879, + 1847,1,0,0,0,1879,1848,1,0,0,0,1879,1849,1,0,0,0,1879,1850,1,0,0, + 0,1879,1851,1,0,0,0,1879,1852,1,0,0,0,1879,1853,1,0,0,0,1879,1854, + 1,0,0,0,1879,1855,1,0,0,0,1879,1856,1,0,0,0,1879,1857,1,0,0,0,1879, + 1858,1,0,0,0,1879,1859,1,0,0,0,1879,1860,1,0,0,0,1879,1861,1,0,0, + 0,1879,1862,1,0,0,0,1879,1863,1,0,0,0,1879,1864,1,0,0,0,1879,1865, + 1,0,0,0,1879,1866,1,0,0,0,1879,1867,1,0,0,0,1879,1868,1,0,0,0,1879, + 1869,1,0,0,0,1879,1870,1,0,0,0,1879,1871,1,0,0,0,1879,1872,1,0,0, + 0,1879,1873,1,0,0,0,1879,1874,1,0,0,0,1879,1875,1,0,0,0,1879,1876, + 1,0,0,0,1879,1877,1,0,0,0,1879,1878,1,0,0,0,1880,7,1,0,0,0,1881, + 1883,5,581,0,0,1882,1884,5,582,0,0,1883,1882,1,0,0,0,1883,1884,1, + 0,0,0,1884,9,1,0,0,0,1885,1886,5,433,0,0,1886,1887,3,1256,628,0, + 1887,11,1,0,0,0,1888,1889,5,46,0,0,1889,1890,5,318,0,0,1890,1892, + 3,1466,733,0,1891,1893,3,14,7,0,1892,1891,1,0,0,0,1892,1893,1,0, + 0,0,1893,1894,1,0,0,0,1894,1895,3,16,8,0,1895,13,1,0,0,0,1896,1897, + 5,105,0,0,1897,15,1,0,0,0,1898,1900,3,22,11,0,1899,1898,1,0,0,0, + 1900,1903,1,0,0,0,1901,1899,1,0,0,0,1901,1902,1,0,0,0,1902,17,1, + 0,0,0,1903,1901,1,0,0,0,1904,1906,3,20,10,0,1905,1904,1,0,0,0,1906, + 1909,1,0,0,0,1907,1905,1,0,0,0,1907,1908,1,0,0,0,1908,19,1,0,0,0, + 1909,1907,1,0,0,0,1910,1913,5,287,0,0,1911,1914,3,1456,728,0,1912, + 1914,5,78,0,0,1913,1911,1,0,0,0,1913,1912,1,0,0,0,1914,1946,1,0, + 0,0,1915,1916,7,0,0,0,1916,1917,5,287,0,0,1917,1946,3,1456,728,0, + 1918,1946,7,1,0,0,1919,1946,7,2,0,0,1920,1946,7,3,0,0,1921,1946, + 7,4,0,0,1922,1946,7,5,0,0,1923,1946,7,6,0,0,1924,1946,7,7,0,0,1925, + 1946,7,8,0,0,1926,1927,5,164,0,0,1927,1928,5,74,0,0,1928,1946,3, + 1462,731,0,1929,1930,5,371,0,0,1930,1931,5,368,0,0,1931,1946,3,1456, + 728,0,1932,1933,5,68,0,0,1933,1934,5,318,0,0,1934,1946,3,1414,707, + 0,1935,1936,5,68,0,0,1936,1937,5,66,0,0,1937,1946,3,1414,707,0,1938, + 1939,5,318,0,0,1939,1946,3,1470,735,0,1940,1941,5,134,0,0,1941,1946, + 3,1414,707,0,1942,1943,5,99,0,0,1943,1946,3,1470,735,0,1944,1946, + 3,1490,745,0,1945,1910,1,0,0,0,1945,1915,1,0,0,0,1945,1918,1,0,0, + 0,1945,1919,1,0,0,0,1945,1920,1,0,0,0,1945,1921,1,0,0,0,1945,1922, + 1,0,0,0,1945,1923,1,0,0,0,1945,1924,1,0,0,0,1945,1925,1,0,0,0,1945, + 1926,1,0,0,0,1945,1929,1,0,0,0,1945,1932,1,0,0,0,1945,1935,1,0,0, + 0,1945,1938,1,0,0,0,1945,1940,1,0,0,0,1945,1942,1,0,0,0,1945,1944, + 1,0,0,0,1946,21,1,0,0,0,1947,1958,3,20,10,0,1948,1949,5,348,0,0, + 1949,1958,3,1454,727,0,1950,1951,5,134,0,0,1951,1958,3,1470,735, + 0,1952,1953,5,318,0,0,1953,1958,3,1470,735,0,1954,1955,5,68,0,0, + 1955,1956,7,9,0,0,1956,1958,3,1470,735,0,1957,1947,1,0,0,0,1957, + 1948,1,0,0,0,1957,1950,1,0,0,0,1957,1952,1,0,0,0,1957,1954,1,0,0, + 0,1958,23,1,0,0,0,1959,1960,5,46,0,0,1960,1961,5,99,0,0,1961,1963, + 3,1466,733,0,1962,1964,3,14,7,0,1963,1962,1,0,0,0,1963,1964,1,0, + 0,0,1964,1965,1,0,0,0,1965,1966,3,16,8,0,1966,25,1,0,0,0,1967,1968, + 5,138,0,0,1968,1969,7,10,0,0,1969,1971,3,1468,734,0,1970,1972,3, + 14,7,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972,1973,1,0,0,0,1973, + 1974,3,18,9,0,1974,27,1,0,0,0,1975,1980,1,0,0,0,1976,1977,5,68,0, + 0,1977,1978,5,175,0,0,1978,1980,3,1418,709,0,1979,1975,1,0,0,0,1979, + 1976,1,0,0,0,1980,29,1,0,0,0,1981,1982,5,138,0,0,1982,1985,7,10, + 0,0,1983,1986,5,30,0,0,1984,1986,3,1468,734,0,1985,1983,1,0,0,0, + 1985,1984,1,0,0,0,1986,1987,1,0,0,0,1987,1988,3,28,14,0,1988,1989, + 3,88,44,0,1989,31,1,0,0,0,1990,1991,5,138,0,0,1991,1992,5,442,0, + 0,1992,1994,3,1424,712,0,1993,1995,3,658,329,0,1994,1993,1,0,0,0, + 1994,1995,1,0,0,0,1995,1996,1,0,0,0,1996,1997,3,34,17,0,1997,33, + 1,0,0,0,1998,2000,3,36,18,0,1999,2001,5,315,0,0,2000,1999,1,0,0, + 0,2000,2001,1,0,0,0,2001,2019,1,0,0,0,2002,2003,5,309,0,0,2003,2004, + 5,94,0,0,2004,2019,3,1422,711,0,2005,2006,5,282,0,0,2006,2007,5, + 94,0,0,2007,2019,3,1468,734,0,2008,2009,5,333,0,0,2009,2010,5,323, + 0,0,2010,2019,3,48,24,0,2011,2013,5,269,0,0,2012,2011,1,0,0,0,2012, + 2013,1,0,0,0,2013,2014,1,0,0,0,2014,2015,5,462,0,0,2015,2016,5,80, + 0,0,2016,2017,5,204,0,0,2017,2019,3,1434,717,0,2018,1998,1,0,0,0, + 2018,2002,1,0,0,0,2018,2005,1,0,0,0,2018,2008,1,0,0,0,2018,2012, + 1,0,0,0,2019,35,1,0,0,0,2020,2024,3,38,19,0,2021,2023,3,38,19,0, + 2022,2021,1,0,0,0,2023,2026,1,0,0,0,2024,2022,1,0,0,0,2024,2025, + 1,0,0,0,2025,37,1,0,0,0,2026,2024,1,0,0,0,2027,2069,5,222,0,0,2028, + 2069,5,338,0,0,2029,2069,5,377,0,0,2030,2032,5,77,0,0,2031,2030, + 1,0,0,0,2031,2032,1,0,0,0,2032,2033,1,0,0,0,2033,2069,5,250,0,0, + 2034,2036,5,205,0,0,2035,2034,1,0,0,0,2035,2036,1,0,0,0,2036,2037, + 1,0,0,0,2037,2038,5,327,0,0,2038,2045,5,243,0,0,2039,2041,5,205, + 0,0,2040,2039,1,0,0,0,2040,2041,1,0,0,0,2041,2042,1,0,0,0,2042,2043, + 5,327,0,0,2043,2045,5,181,0,0,2044,2035,1,0,0,0,2044,2040,1,0,0, + 0,2045,2069,1,0,0,0,2046,2047,5,460,0,0,2047,2069,7,11,0,0,2048, + 2049,5,170,0,0,2049,2069,3,1436,718,0,2050,2051,5,320,0,0,2051,2069, + 3,1434,717,0,2052,2053,5,333,0,0,2053,2054,3,1434,717,0,2054,2057, + 7,12,0,0,2055,2058,3,1434,717,0,2056,2058,5,53,0,0,2057,2055,1,0, + 0,0,2057,2056,1,0,0,0,2058,2069,1,0,0,0,2059,2060,5,333,0,0,2060, + 2061,3,1434,717,0,2061,2062,5,64,0,0,2062,2063,5,434,0,0,2063,2069, + 1,0,0,0,2064,2065,5,313,0,0,2065,2069,3,1434,717,0,2066,2067,5,313, + 0,0,2067,2069,5,30,0,0,2068,2027,1,0,0,0,2068,2028,1,0,0,0,2068, + 2029,1,0,0,0,2068,2031,1,0,0,0,2068,2044,1,0,0,0,2068,2046,1,0,0, + 0,2068,2048,1,0,0,0,2068,2050,1,0,0,0,2068,2052,1,0,0,0,2068,2059, + 1,0,0,0,2068,2064,1,0,0,0,2068,2066,1,0,0,0,2069,39,1,0,0,0,2070, + 2071,5,46,0,0,2071,2072,5,66,0,0,2072,2074,3,1464,732,0,2073,2075, + 3,14,7,0,2074,2073,1,0,0,0,2074,2075,1,0,0,0,2075,2076,1,0,0,0,2076, + 2077,3,16,8,0,2077,41,1,0,0,0,2078,2079,5,138,0,0,2079,2080,5,66, + 0,0,2080,2081,3,1468,734,0,2081,2082,3,44,22,0,2082,2083,5,99,0, + 0,2083,2084,3,1470,735,0,2084,43,1,0,0,0,2085,2086,7,13,0,0,2086, + 45,1,0,0,0,2087,2088,5,46,0,0,2088,2090,5,323,0,0,2089,2091,3,514, + 257,0,2090,2089,1,0,0,0,2090,2091,1,0,0,0,2091,2098,1,0,0,0,2092, + 2094,3,48,24,0,2093,2092,1,0,0,0,2093,2094,1,0,0,0,2094,2095,1,0, + 0,0,2095,2096,5,106,0,0,2096,2099,3,1468,734,0,2097,2099,3,48,24, + 0,2098,2093,1,0,0,0,2098,2097,1,0,0,0,2099,2100,1,0,0,0,2100,2101, + 3,50,25,0,2101,47,1,0,0,0,2102,2104,3,1472,736,0,2103,2105,3,558, + 279,0,2104,2103,1,0,0,0,2104,2105,1,0,0,0,2105,49,1,0,0,0,2106,2108, + 3,52,26,0,2107,2106,1,0,0,0,2108,2111,1,0,0,0,2109,2107,1,0,0,0, + 2109,2110,1,0,0,0,2110,51,1,0,0,0,2111,2109,1,0,0,0,2112,2119,3, + 188,94,0,2113,2119,3,624,312,0,2114,2119,3,306,153,0,2115,2119,3, + 434,217,0,2116,2119,3,584,292,0,2117,2119,3,836,418,0,2118,2112, + 1,0,0,0,2118,2113,1,0,0,0,2118,2114,1,0,0,0,2118,2115,1,0,0,0,2118, + 2116,1,0,0,0,2118,2117,1,0,0,0,2119,53,1,0,0,0,2120,2122,5,333,0, + 0,2121,2123,7,14,0,0,2122,2121,1,0,0,0,2122,2123,1,0,0,0,2123,2124, + 1,0,0,0,2124,2125,3,56,28,0,2125,55,1,0,0,0,2126,2127,5,356,0,0, + 2127,2135,3,830,415,0,2128,2129,5,332,0,0,2129,2130,5,154,0,0,2130, + 2131,5,36,0,0,2131,2132,5,356,0,0,2132,2135,3,830,415,0,2133,2135, + 3,60,30,0,2134,2126,1,0,0,0,2134,2128,1,0,0,0,2134,2133,1,0,0,0, + 2135,57,1,0,0,0,2136,2139,5,30,0,0,2137,2139,3,62,31,0,2138,2136, + 1,0,0,0,2138,2137,1,0,0,0,2139,2141,1,0,0,0,2140,2142,7,12,0,0,2141, + 2140,1,0,0,0,2141,2142,1,0,0,0,2142,2145,1,0,0,0,2143,2146,5,53, + 0,0,2144,2146,3,64,32,0,2145,2143,1,0,0,0,2145,2144,1,0,0,0,2145, + 2146,1,0,0,0,2146,59,1,0,0,0,2147,2148,5,418,0,0,2148,2149,5,386, + 0,0,2149,2175,3,74,37,0,2150,2151,5,152,0,0,2151,2175,3,1456,728, + 0,2152,2153,5,323,0,0,2153,2175,3,1420,710,0,2154,2156,5,267,0,0, + 2155,2157,3,76,38,0,2156,2155,1,0,0,0,2156,2157,1,0,0,0,2157,2175, + 1,0,0,0,2158,2159,5,318,0,0,2159,2175,3,80,40,0,2160,2161,5,332, + 0,0,2161,2162,5,106,0,0,2162,2175,3,80,40,0,2163,2164,5,383,0,0, + 2164,2165,5,279,0,0,2165,2175,3,1274,637,0,2166,2167,5,356,0,0,2167, + 2168,5,337,0,0,2168,2175,3,1456,728,0,2169,2170,3,62,31,0,2170,2171, + 5,64,0,0,2171,2172,5,434,0,0,2172,2175,1,0,0,0,2173,2175,3,58,29, + 0,2174,2147,1,0,0,0,2174,2150,1,0,0,0,2174,2152,1,0,0,0,2174,2154, + 1,0,0,0,2174,2158,1,0,0,0,2174,2160,1,0,0,0,2174,2163,1,0,0,0,2174, + 2166,1,0,0,0,2174,2169,1,0,0,0,2174,2173,1,0,0,0,2175,61,1,0,0,0, + 2176,2181,3,1472,736,0,2177,2178,5,11,0,0,2178,2180,3,1472,736,0, + 2179,2177,1,0,0,0,2180,2183,1,0,0,0,2181,2179,1,0,0,0,2181,2182, + 1,0,0,0,2182,63,1,0,0,0,2183,2181,1,0,0,0,2184,2189,3,66,33,0,2185, + 2186,5,6,0,0,2186,2188,3,66,33,0,2187,2185,1,0,0,0,2188,2191,1,0, + 0,0,2189,2187,1,0,0,0,2189,2190,1,0,0,0,2190,65,1,0,0,0,2191,2189, + 1,0,0,0,2192,2195,3,72,36,0,2193,2195,3,320,160,0,2194,2192,1,0, + 0,0,2194,2193,1,0,0,0,2195,67,1,0,0,0,2196,2197,5,300,0,0,2197,2202, + 7,15,0,0,2198,2199,5,310,0,0,2199,2202,5,300,0,0,2200,2202,5,330, + 0,0,2201,2196,1,0,0,0,2201,2198,1,0,0,0,2201,2200,1,0,0,0,2202,69, + 1,0,0,0,2203,2208,5,96,0,0,2204,2208,5,60,0,0,2205,2208,5,80,0,0, + 2206,2208,3,78,39,0,2207,2203,1,0,0,0,2207,2204,1,0,0,0,2207,2205, + 1,0,0,0,2207,2206,1,0,0,0,2208,71,1,0,0,0,2209,2214,5,96,0,0,2210, + 2214,5,60,0,0,2211,2214,5,80,0,0,2212,2214,3,80,40,0,2213,2209,1, + 0,0,0,2213,2210,1,0,0,0,2213,2211,1,0,0,0,2213,2212,1,0,0,0,2214, + 73,1,0,0,0,2215,2232,3,1456,728,0,2216,2232,3,1490,745,0,2217,2218, + 3,1200,600,0,2218,2220,3,1456,728,0,2219,2221,3,1204,602,0,2220, + 2219,1,0,0,0,2220,2221,1,0,0,0,2221,2232,1,0,0,0,2222,2223,3,1200, + 600,0,2223,2224,5,2,0,0,2224,2225,3,1454,727,0,2225,2226,5,3,0,0, + 2226,2227,3,1456,728,0,2227,2232,1,0,0,0,2228,2232,3,320,160,0,2229, + 2232,5,53,0,0,2230,2232,5,254,0,0,2231,2215,1,0,0,0,2231,2216,1, + 0,0,0,2231,2217,1,0,0,0,2231,2222,1,0,0,0,2231,2228,1,0,0,0,2231, + 2229,1,0,0,0,2231,2230,1,0,0,0,2232,75,1,0,0,0,2233,2236,3,1456, + 728,0,2234,2236,5,53,0,0,2235,2233,1,0,0,0,2235,2234,1,0,0,0,2236, + 77,1,0,0,0,2237,2240,3,1484,742,0,2238,2240,3,1456,728,0,2239,2237, + 1,0,0,0,2239,2238,1,0,0,0,2240,79,1,0,0,0,2241,2244,3,1486,743,0, + 2242,2244,3,1456,728,0,2243,2241,1,0,0,0,2243,2242,1,0,0,0,2244, + 81,1,0,0,0,2245,2246,5,313,0,0,2246,2247,3,84,42,0,2247,83,1,0,0, + 0,2248,2249,5,418,0,0,2249,2257,5,386,0,0,2250,2251,5,356,0,0,2251, + 2252,5,244,0,0,2252,2257,5,251,0,0,2253,2254,5,332,0,0,2254,2257, + 5,106,0,0,2255,2257,3,86,43,0,2256,2248,1,0,0,0,2256,2250,1,0,0, + 0,2256,2253,1,0,0,0,2256,2255,1,0,0,0,2257,85,1,0,0,0,2258,2261, + 5,30,0,0,2259,2261,3,62,31,0,2260,2258,1,0,0,0,2260,2259,1,0,0,0, + 2261,87,1,0,0,0,2262,2263,5,333,0,0,2263,2266,3,56,28,0,2264,2266, + 3,82,41,0,2265,2262,1,0,0,0,2265,2264,1,0,0,0,2266,89,1,0,0,0,2267, + 2268,5,333,0,0,2268,2271,3,60,30,0,2269,2271,3,82,41,0,2270,2267, + 1,0,0,0,2270,2269,1,0,0,0,2271,91,1,0,0,0,2272,2282,5,335,0,0,2273, + 2283,3,62,31,0,2274,2275,5,418,0,0,2275,2283,5,386,0,0,2276,2277, + 5,356,0,0,2277,2278,5,244,0,0,2278,2283,5,251,0,0,2279,2280,5,332, + 0,0,2280,2283,5,106,0,0,2281,2283,5,30,0,0,2282,2273,1,0,0,0,2282, + 2274,1,0,0,0,2282,2276,1,0,0,0,2282,2279,1,0,0,0,2282,2281,1,0,0, + 0,2283,93,1,0,0,0,2284,2285,5,333,0,0,2285,2286,5,165,0,0,2286,2287, + 3,96,48,0,2287,2288,3,98,49,0,2288,95,1,0,0,0,2289,2292,5,30,0,0, + 2290,2292,3,1388,694,0,2291,2289,1,0,0,0,2291,2290,1,0,0,0,2292, + 97,1,0,0,0,2293,2294,7,16,0,0,2294,99,1,0,0,0,2295,2296,5,155,0, + 0,2296,101,1,0,0,0,2297,2298,5,187,0,0,2298,2299,7,17,0,0,2299,103, + 1,0,0,0,2300,2301,5,138,0,0,2301,2303,5,92,0,0,2302,2304,3,746,373, + 0,2303,2302,1,0,0,0,2303,2304,1,0,0,0,2304,2305,1,0,0,0,2305,2308, + 3,1116,558,0,2306,2309,3,106,53,0,2307,2309,3,116,58,0,2308,2306, + 1,0,0,0,2308,2307,1,0,0,0,2309,2434,1,0,0,0,2310,2311,5,138,0,0, + 2311,2312,5,92,0,0,2312,2313,5,30,0,0,2313,2314,5,68,0,0,2314,2315, + 5,351,0,0,2315,2319,3,1400,700,0,2316,2317,5,281,0,0,2317,2318,5, + 147,0,0,2318,2320,3,1470,735,0,2319,2316,1,0,0,0,2319,2320,1,0,0, + 0,2320,2321,1,0,0,0,2321,2322,5,333,0,0,2322,2323,5,351,0,0,2323, + 2325,3,1398,699,0,2324,2326,3,976,488,0,2325,2324,1,0,0,0,2325,2326, + 1,0,0,0,2326,2434,1,0,0,0,2327,2328,5,138,0,0,2328,2330,5,92,0,0, + 2329,2331,3,746,373,0,2330,2329,1,0,0,0,2330,2331,1,0,0,0,2331,2332, + 1,0,0,0,2332,2333,3,1404,702,0,2333,2334,5,435,0,0,2334,2335,5,285, + 0,0,2335,2340,3,1410,705,0,2336,2337,5,62,0,0,2337,2338,5,422,0, + 0,2338,2341,3,108,54,0,2339,2341,5,53,0,0,2340,2336,1,0,0,0,2340, + 2339,1,0,0,0,2341,2434,1,0,0,0,2342,2343,5,138,0,0,2343,2345,5,92, + 0,0,2344,2346,3,746,373,0,2345,2344,1,0,0,0,2345,2346,1,0,0,0,2346, + 2347,1,0,0,0,2347,2348,3,1404,702,0,2348,2349,5,436,0,0,2349,2350, + 5,285,0,0,2350,2352,3,1410,705,0,2351,2353,7,18,0,0,2352,2351,1, + 0,0,0,2352,2353,1,0,0,0,2353,2434,1,0,0,0,2354,2355,5,138,0,0,2355, + 2357,5,226,0,0,2356,2358,3,746,373,0,2357,2356,1,0,0,0,2357,2358, + 1,0,0,0,2358,2359,1,0,0,0,2359,2362,3,1410,705,0,2360,2363,3,106, + 53,0,2361,2363,3,118,59,0,2362,2360,1,0,0,0,2362,2361,1,0,0,0,2363, + 2434,1,0,0,0,2364,2365,5,138,0,0,2365,2366,5,226,0,0,2366,2367,5, + 30,0,0,2367,2368,5,68,0,0,2368,2369,5,351,0,0,2369,2373,3,1400,700, + 0,2370,2371,5,281,0,0,2371,2372,5,147,0,0,2372,2374,3,1470,735,0, + 2373,2370,1,0,0,0,2373,2374,1,0,0,0,2374,2375,1,0,0,0,2375,2376, + 5,333,0,0,2376,2377,5,351,0,0,2377,2379,3,1398,699,0,2378,2380,3, + 976,488,0,2379,2378,1,0,0,0,2379,2380,1,0,0,0,2380,2434,1,0,0,0, + 2381,2382,5,138,0,0,2382,2384,5,328,0,0,2383,2385,3,746,373,0,2384, + 2383,1,0,0,0,2384,2385,1,0,0,0,2385,2386,1,0,0,0,2386,2387,3,1410, + 705,0,2387,2388,3,106,53,0,2388,2434,1,0,0,0,2389,2390,5,138,0,0, + 2390,2392,5,376,0,0,2391,2393,3,746,373,0,2392,2391,1,0,0,0,2392, + 2393,1,0,0,0,2393,2394,1,0,0,0,2394,2395,3,1408,704,0,2395,2396, + 3,106,53,0,2396,2434,1,0,0,0,2397,2398,5,138,0,0,2398,2399,5,259, + 0,0,2399,2401,5,376,0,0,2400,2402,3,746,373,0,2401,2400,1,0,0,0, + 2401,2402,1,0,0,0,2402,2403,1,0,0,0,2403,2404,3,1408,704,0,2404, + 2405,3,106,53,0,2405,2434,1,0,0,0,2406,2407,5,138,0,0,2407,2408, + 5,259,0,0,2408,2409,5,376,0,0,2409,2410,5,30,0,0,2410,2411,5,68, + 0,0,2411,2412,5,351,0,0,2412,2416,3,1400,700,0,2413,2414,5,281,0, + 0,2414,2415,5,147,0,0,2415,2417,3,1470,735,0,2416,2413,1,0,0,0,2416, + 2417,1,0,0,0,2417,2418,1,0,0,0,2418,2419,5,333,0,0,2419,2420,5,351, + 0,0,2420,2422,3,1398,699,0,2421,2423,3,976,488,0,2422,2421,1,0,0, + 0,2422,2423,1,0,0,0,2423,2434,1,0,0,0,2424,2425,5,138,0,0,2425,2426, + 5,63,0,0,2426,2428,5,92,0,0,2427,2429,3,746,373,0,2428,2427,1,0, + 0,0,2428,2429,1,0,0,0,2429,2430,1,0,0,0,2430,2431,3,1116,558,0,2431, + 2432,3,106,53,0,2432,2434,1,0,0,0,2433,2300,1,0,0,0,2433,2310,1, + 0,0,0,2433,2327,1,0,0,0,2433,2342,1,0,0,0,2433,2354,1,0,0,0,2433, + 2364,1,0,0,0,2433,2381,1,0,0,0,2433,2389,1,0,0,0,2433,2397,1,0,0, + 0,2433,2406,1,0,0,0,2433,2424,1,0,0,0,2434,105,1,0,0,0,2435,2440, + 3,120,60,0,2436,2437,5,6,0,0,2437,2439,3,120,60,0,2438,2436,1,0, + 0,0,2439,2442,1,0,0,0,2440,2438,1,0,0,0,2440,2441,1,0,0,0,2441,107, + 1,0,0,0,2442,2440,1,0,0,0,2443,2444,5,68,0,0,2444,2453,3,1176,588, + 0,2445,2446,5,64,0,0,2446,2447,3,110,55,0,2447,2448,5,94,0,0,2448, + 2449,3,110,55,0,2449,2453,1,0,0,0,2450,2451,5,105,0,0,2451,2453, + 3,114,57,0,2452,2443,1,0,0,0,2452,2445,1,0,0,0,2452,2450,1,0,0,0, + 2453,109,1,0,0,0,2454,2455,5,2,0,0,2455,2460,3,112,56,0,2456,2457, + 5,6,0,0,2457,2459,3,112,56,0,2458,2456,1,0,0,0,2459,2462,1,0,0,0, + 2460,2458,1,0,0,0,2460,2461,1,0,0,0,2461,2463,1,0,0,0,2462,2460, + 1,0,0,0,2463,2464,5,3,0,0,2464,111,1,0,0,0,2465,2469,3,1176,588, + 0,2466,2469,5,262,0,0,2467,2469,5,260,0,0,2468,2465,1,0,0,0,2468, + 2466,1,0,0,0,2468,2467,1,0,0,0,2469,113,1,0,0,0,2470,2471,5,2,0, + 0,2471,2472,5,533,0,0,2472,2473,3,320,160,0,2473,2474,5,6,0,0,2474, + 2475,5,534,0,0,2475,2476,3,320,160,0,2476,2477,5,3,0,0,2477,115, + 1,0,0,0,2478,2479,5,435,0,0,2479,2480,5,285,0,0,2480,2481,3,1410, + 705,0,2481,2482,3,144,72,0,2482,2487,1,0,0,0,2483,2484,5,436,0,0, + 2484,2485,5,285,0,0,2485,2487,3,1410,705,0,2486,2478,1,0,0,0,2486, + 2483,1,0,0,0,2487,117,1,0,0,0,2488,2489,5,435,0,0,2489,2490,5,285, + 0,0,2490,2491,3,1410,705,0,2491,119,1,0,0,0,2492,2495,5,133,0,0, + 2493,2494,5,45,0,0,2494,2496,3,1434,717,0,2495,2493,1,0,0,0,2495, + 2496,1,0,0,0,2496,2497,1,0,0,0,2497,2710,3,238,119,0,2498,2499,5, + 138,0,0,2499,2500,5,45,0,0,2500,2501,3,1434,717,0,2501,2502,3,474, + 237,0,2502,2710,1,0,0,0,2503,2504,5,372,0,0,2504,2505,5,45,0,0,2505, + 2710,3,1434,717,0,2506,2507,5,191,0,0,2507,2509,5,45,0,0,2508,2510, + 3,746,373,0,2509,2508,1,0,0,0,2509,2510,1,0,0,0,2510,2511,1,0,0, + 0,2511,2513,3,1434,717,0,2512,2514,3,124,62,0,2513,2512,1,0,0,0, + 2513,2514,1,0,0,0,2514,2710,1,0,0,0,2515,2516,5,333,0,0,2516,2517, + 5,379,0,0,2517,2710,5,277,0,0,2518,2519,5,158,0,0,2519,2520,5,80, + 0,0,2520,2710,3,1434,717,0,2521,2522,5,333,0,0,2522,2523,5,379,0, + 0,2523,2710,5,158,0,0,2524,2525,5,333,0,0,2525,2710,7,19,0,0,2526, + 2528,5,193,0,0,2527,2529,7,20,0,0,2528,2527,1,0,0,0,2528,2529,1, + 0,0,0,2529,2530,1,0,0,0,2530,2710,5,357,0,0,2531,2532,5,186,0,0, + 2532,2536,5,357,0,0,2533,2537,5,30,0,0,2534,2537,5,99,0,0,2535,2537, + 3,1434,717,0,2536,2533,1,0,0,0,2536,2534,1,0,0,0,2536,2535,1,0,0, + 0,2537,2710,1,0,0,0,2538,2539,5,193,0,0,2539,2540,7,20,0,0,2540, + 2541,5,321,0,0,2541,2710,3,1434,717,0,2542,2543,5,186,0,0,2543,2544, + 5,321,0,0,2544,2710,3,1434,717,0,2545,2547,5,269,0,0,2546,2545,1, + 0,0,0,2546,2547,1,0,0,0,2547,2548,1,0,0,0,2548,2549,5,228,0,0,2549, + 2710,3,1410,705,0,2550,2551,5,275,0,0,2551,2710,3,556,278,0,2552, + 2553,5,77,0,0,2553,2710,5,275,0,0,2554,2555,5,282,0,0,2555,2556, + 5,94,0,0,2556,2710,3,1468,734,0,2557,2558,5,333,0,0,2558,2559,5, + 351,0,0,2559,2710,3,1398,699,0,2560,2561,5,333,0,0,2561,2710,3,132, + 66,0,2562,2563,5,313,0,0,2563,2710,3,132,66,0,2564,2565,5,312,0, + 0,2565,2566,5,219,0,0,2566,2710,3,130,65,0,2567,2568,5,193,0,0,2568, + 2569,5,414,0,0,2569,2570,5,251,0,0,2570,2710,5,327,0,0,2571,2572, + 5,186,0,0,2572,2573,5,414,0,0,2573,2574,5,251,0,0,2574,2710,5,327, + 0,0,2575,2576,5,209,0,0,2576,2577,5,414,0,0,2577,2578,5,251,0,0, + 2578,2710,5,327,0,0,2579,2580,5,269,0,0,2580,2581,5,209,0,0,2581, + 2582,5,414,0,0,2582,2583,5,251,0,0,2583,2710,5,327,0,0,2584,2586, + 5,191,0,0,2585,2587,5,44,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0, + 2587,2589,1,0,0,0,2588,2590,3,746,373,0,2589,2588,1,0,0,0,2589,2590, + 1,0,0,0,2590,2591,1,0,0,0,2591,2593,3,1430,715,0,2592,2594,3,124, + 62,0,2593,2592,1,0,0,0,2593,2594,1,0,0,0,2594,2710,1,0,0,0,2595, + 2597,5,133,0,0,2596,2598,5,44,0,0,2597,2596,1,0,0,0,2597,2598,1, + 0,0,0,2598,2600,1,0,0,0,2599,2601,3,514,257,0,2600,2599,1,0,0,0, + 2600,2601,1,0,0,0,2601,2602,1,0,0,0,2602,2710,3,206,103,0,2603,2605, + 5,138,0,0,2604,2606,5,44,0,0,2605,2604,1,0,0,0,2605,2606,1,0,0,0, + 2606,2607,1,0,0,0,2607,2608,3,1430,715,0,2608,2609,3,122,61,0,2609, + 2710,1,0,0,0,2610,2612,5,138,0,0,2611,2613,5,44,0,0,2612,2611,1, + 0,0,0,2612,2613,1,0,0,0,2613,2614,1,0,0,0,2614,2615,3,1430,715,0, + 2615,2616,7,21,0,0,2616,2617,5,77,0,0,2617,2618,5,78,0,0,2618,2710, + 1,0,0,0,2619,2621,5,138,0,0,2620,2622,5,44,0,0,2621,2620,1,0,0,0, + 2621,2622,1,0,0,0,2622,2623,1,0,0,0,2623,2624,3,1430,715,0,2624, + 2625,5,191,0,0,2625,2627,5,437,0,0,2626,2628,3,746,373,0,2627,2626, + 1,0,0,0,2627,2628,1,0,0,0,2628,2710,1,0,0,0,2629,2631,5,138,0,0, + 2630,2632,5,44,0,0,2631,2630,1,0,0,0,2631,2632,1,0,0,0,2632,2633, + 1,0,0,0,2633,2634,3,1430,715,0,2634,2635,5,333,0,0,2635,2636,5,342, + 0,0,2636,2637,3,1462,731,0,2637,2710,1,0,0,0,2638,2640,5,138,0,0, + 2639,2641,5,44,0,0,2640,2639,1,0,0,0,2640,2641,1,0,0,0,2641,2642, + 1,0,0,0,2642,2643,3,1430,715,0,2643,2644,7,22,0,0,2644,2645,3,132, + 66,0,2645,2710,1,0,0,0,2646,2648,5,138,0,0,2647,2649,5,44,0,0,2648, + 2647,1,0,0,0,2648,2649,1,0,0,0,2649,2650,1,0,0,0,2650,2651,3,1430, + 715,0,2651,2652,5,333,0,0,2652,2653,5,345,0,0,2653,2654,3,1472,736, + 0,2654,2710,1,0,0,0,2655,2657,5,138,0,0,2656,2658,5,44,0,0,2657, + 2656,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0,0,2659,2660,3,1430, + 715,0,2660,2661,5,133,0,0,2661,2662,5,438,0,0,2662,2663,3,224,112, + 0,2663,2664,5,36,0,0,2664,2666,5,219,0,0,2665,2667,3,312,156,0,2666, + 2665,1,0,0,0,2666,2667,1,0,0,0,2667,2710,1,0,0,0,2668,2670,5,138, + 0,0,2669,2671,5,44,0,0,2670,2669,1,0,0,0,2670,2671,1,0,0,0,2671, + 2672,1,0,0,0,2672,2673,3,1430,715,0,2673,2674,3,140,70,0,2674,2710, + 1,0,0,0,2675,2677,5,138,0,0,2676,2678,5,44,0,0,2677,2676,1,0,0,0, + 2677,2678,1,0,0,0,2678,2679,1,0,0,0,2679,2680,3,1430,715,0,2680, + 2681,5,191,0,0,2681,2683,5,219,0,0,2682,2684,3,746,373,0,2683,2682, + 1,0,0,0,2683,2684,1,0,0,0,2684,2710,1,0,0,0,2685,2687,5,138,0,0, + 2686,2688,5,44,0,0,2687,2686,1,0,0,0,2687,2688,1,0,0,0,2688,2689, + 1,0,0,0,2689,2691,3,1430,715,0,2690,2692,3,766,383,0,2691,2690,1, + 0,0,0,2691,2692,1,0,0,0,2692,2693,1,0,0,0,2693,2694,5,360,0,0,2694, + 2696,3,1166,583,0,2695,2697,3,126,63,0,2696,2695,1,0,0,0,2696,2697, + 1,0,0,0,2697,2699,1,0,0,0,2698,2700,3,128,64,0,2699,2698,1,0,0,0, + 2699,2700,1,0,0,0,2700,2710,1,0,0,0,2701,2703,5,138,0,0,2702,2704, + 5,44,0,0,2703,2702,1,0,0,0,2703,2704,1,0,0,0,2704,2705,1,0,0,0,2705, + 2706,3,1430,715,0,2706,2707,3,370,185,0,2707,2710,1,0,0,0,2708,2710, + 3,370,185,0,2709,2492,1,0,0,0,2709,2498,1,0,0,0,2709,2503,1,0,0, + 0,2709,2506,1,0,0,0,2709,2515,1,0,0,0,2709,2518,1,0,0,0,2709,2521, + 1,0,0,0,2709,2524,1,0,0,0,2709,2526,1,0,0,0,2709,2531,1,0,0,0,2709, + 2538,1,0,0,0,2709,2542,1,0,0,0,2709,2546,1,0,0,0,2709,2550,1,0,0, + 0,2709,2552,1,0,0,0,2709,2554,1,0,0,0,2709,2557,1,0,0,0,2709,2560, + 1,0,0,0,2709,2562,1,0,0,0,2709,2564,1,0,0,0,2709,2567,1,0,0,0,2709, + 2571,1,0,0,0,2709,2575,1,0,0,0,2709,2579,1,0,0,0,2709,2584,1,0,0, + 0,2709,2595,1,0,0,0,2709,2603,1,0,0,0,2709,2610,1,0,0,0,2709,2619, + 1,0,0,0,2709,2629,1,0,0,0,2709,2638,1,0,0,0,2709,2646,1,0,0,0,2709, + 2655,1,0,0,0,2709,2668,1,0,0,0,2709,2675,1,0,0,0,2709,2685,1,0,0, + 0,2709,2701,1,0,0,0,2709,2708,1,0,0,0,2710,121,1,0,0,0,2711,2712, + 5,333,0,0,2712,2713,5,53,0,0,2713,2717,3,1210,605,0,2714,2715,5, + 191,0,0,2715,2717,5,53,0,0,2716,2711,1,0,0,0,2716,2714,1,0,0,0,2717, + 123,1,0,0,0,2718,2719,7,23,0,0,2719,125,1,0,0,0,2720,2721,5,43,0, + 0,2721,2722,3,556,278,0,2722,127,1,0,0,0,2723,2724,5,100,0,0,2724, + 2725,3,1210,605,0,2725,129,1,0,0,0,2726,2733,5,270,0,0,2727,2733, + 5,113,0,0,2728,2733,5,53,0,0,2729,2730,5,100,0,0,2730,2731,5,226, + 0,0,2731,2733,3,1434,717,0,2732,2726,1,0,0,0,2732,2727,1,0,0,0,2732, + 2728,1,0,0,0,2732,2729,1,0,0,0,2733,131,1,0,0,0,2734,2735,5,2,0, + 0,2735,2736,3,136,68,0,2736,2737,5,3,0,0,2737,133,1,0,0,0,2738,2739, + 5,105,0,0,2739,2740,3,132,66,0,2740,135,1,0,0,0,2741,2746,3,138, + 69,0,2742,2743,5,6,0,0,2743,2745,3,138,69,0,2744,2742,1,0,0,0,2745, + 2748,1,0,0,0,2746,2744,1,0,0,0,2746,2747,1,0,0,0,2747,137,1,0,0, + 0,2748,2746,1,0,0,0,2749,2758,3,1488,744,0,2750,2751,5,10,0,0,2751, + 2759,3,500,250,0,2752,2753,5,11,0,0,2753,2756,3,1488,744,0,2754, + 2755,5,10,0,0,2755,2757,3,500,250,0,2756,2754,1,0,0,0,2756,2757, + 1,0,0,0,2757,2759,1,0,0,0,2758,2750,1,0,0,0,2758,2752,1,0,0,0,2758, + 2759,1,0,0,0,2759,139,1,0,0,0,2760,2762,3,142,71,0,2761,2760,1,0, + 0,0,2762,2763,1,0,0,0,2763,2761,1,0,0,0,2763,2764,1,0,0,0,2764,141, + 1,0,0,0,2765,2770,5,314,0,0,2766,2768,3,14,7,0,2767,2766,1,0,0,0, + 2767,2768,1,0,0,0,2768,2769,1,0,0,0,2769,2771,3,320,160,0,2770,2767, + 1,0,0,0,2770,2771,1,0,0,0,2771,2779,1,0,0,0,2772,2776,5,333,0,0, + 2773,2777,3,316,158,0,2774,2775,5,438,0,0,2775,2777,3,224,112,0, + 2776,2773,1,0,0,0,2776,2774,1,0,0,0,2777,2779,1,0,0,0,2778,2765, + 1,0,0,0,2778,2772,1,0,0,0,2779,143,1,0,0,0,2780,2781,5,62,0,0,2781, + 2782,5,422,0,0,2782,2783,5,105,0,0,2783,2784,5,2,0,0,2784,2785,3, + 148,74,0,2785,2786,5,3,0,0,2786,2807,1,0,0,0,2787,2788,5,62,0,0, + 2788,2789,5,422,0,0,2789,2790,5,68,0,0,2790,2791,5,2,0,0,2791,2792, + 3,1326,663,0,2792,2793,5,3,0,0,2793,2807,1,0,0,0,2794,2795,5,62, + 0,0,2795,2796,5,422,0,0,2796,2797,5,64,0,0,2797,2798,5,2,0,0,2798, + 2799,3,1326,663,0,2799,2800,5,3,0,0,2800,2801,5,94,0,0,2801,2802, + 5,2,0,0,2802,2803,3,1326,663,0,2803,2804,5,3,0,0,2804,2807,1,0,0, + 0,2805,2807,5,53,0,0,2806,2780,1,0,0,0,2806,2787,1,0,0,0,2806,2794, + 1,0,0,0,2806,2805,1,0,0,0,2807,145,1,0,0,0,2808,2809,3,1486,743, + 0,2809,2810,3,1454,727,0,2810,147,1,0,0,0,2811,2816,3,146,73,0,2812, + 2813,5,6,0,0,2813,2815,3,146,73,0,2814,2812,1,0,0,0,2815,2818,1, + 0,0,0,2816,2814,1,0,0,0,2816,2817,1,0,0,0,2817,149,1,0,0,0,2818, + 2816,1,0,0,0,2819,2820,5,138,0,0,2820,2821,5,360,0,0,2821,2822,3, + 556,278,0,2822,2823,3,152,76,0,2823,151,1,0,0,0,2824,2829,3,154, + 77,0,2825,2826,5,6,0,0,2826,2828,3,154,77,0,2827,2825,1,0,0,0,2828, + 2831,1,0,0,0,2829,2827,1,0,0,0,2829,2830,1,0,0,0,2830,153,1,0,0, + 0,2831,2829,1,0,0,0,2832,2833,5,133,0,0,2833,2834,5,143,0,0,2834, + 2836,3,1150,575,0,2835,2837,3,124,62,0,2836,2835,1,0,0,0,2836,2837, + 1,0,0,0,2837,2862,1,0,0,0,2838,2839,5,191,0,0,2839,2841,5,143,0, + 0,2840,2842,3,746,373,0,2841,2840,1,0,0,0,2841,2842,1,0,0,0,2842, + 2843,1,0,0,0,2843,2845,3,1472,736,0,2844,2846,3,124,62,0,2845,2844, + 1,0,0,0,2845,2846,1,0,0,0,2846,2862,1,0,0,0,2847,2848,5,138,0,0, + 2848,2849,5,143,0,0,2849,2851,3,1472,736,0,2850,2852,3,766,383,0, + 2851,2850,1,0,0,0,2851,2852,1,0,0,0,2852,2853,1,0,0,0,2853,2854, + 5,360,0,0,2854,2856,3,1166,583,0,2855,2857,3,126,63,0,2856,2855, + 1,0,0,0,2856,2857,1,0,0,0,2857,2859,1,0,0,0,2858,2860,3,124,62,0, + 2859,2858,1,0,0,0,2859,2860,1,0,0,0,2860,2862,1,0,0,0,2861,2832, + 1,0,0,0,2861,2838,1,0,0,0,2861,2847,1,0,0,0,2862,155,1,0,0,0,2863, + 2866,5,157,0,0,2864,2867,3,992,496,0,2865,2867,5,30,0,0,2866,2864, + 1,0,0,0,2866,2865,1,0,0,0,2867,157,1,0,0,0,2868,2870,5,169,0,0,2869, + 2871,3,172,86,0,2870,2869,1,0,0,0,2870,2871,1,0,0,0,2871,2872,1, + 0,0,0,2872,2874,3,1404,702,0,2873,2875,3,242,121,0,2874,2873,1,0, + 0,0,2874,2875,1,0,0,0,2875,2876,1,0,0,0,2876,2878,3,160,80,0,2877, + 2879,3,162,81,0,2878,2877,1,0,0,0,2878,2879,1,0,0,0,2879,2880,1, + 0,0,0,2880,2882,3,164,82,0,2881,2883,3,174,87,0,2882,2881,1,0,0, + 0,2882,2883,1,0,0,0,2883,2885,1,0,0,0,2884,2886,3,14,7,0,2885,2884, + 1,0,0,0,2885,2886,1,0,0,0,2886,2887,1,0,0,0,2887,2889,3,166,83,0, + 2888,2890,3,1142,571,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890, + 2906,1,0,0,0,2891,2892,5,169,0,0,2892,2893,5,2,0,0,2893,2894,3,940, + 470,0,2894,2895,5,3,0,0,2895,2897,5,94,0,0,2896,2898,3,162,81,0, + 2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898,2899,1,0,0,0,2899,2901, + 3,164,82,0,2900,2902,3,14,7,0,2901,2900,1,0,0,0,2901,2902,1,0,0, + 0,2902,2903,1,0,0,0,2903,2904,3,166,83,0,2904,2906,1,0,0,0,2905, + 2868,1,0,0,0,2905,2891,1,0,0,0,2906,159,1,0,0,0,2907,2908,7,24,0, + 0,2908,161,1,0,0,0,2909,2910,5,297,0,0,2910,163,1,0,0,0,2911,2915, + 3,1456,728,0,2912,2915,5,343,0,0,2913,2915,5,344,0,0,2914,2911,1, + 0,0,0,2914,2912,1,0,0,0,2914,2913,1,0,0,0,2915,165,1,0,0,0,2916, + 2922,3,168,84,0,2917,2918,5,2,0,0,2918,2919,3,178,89,0,2919,2920, + 5,3,0,0,2920,2922,1,0,0,0,2921,2916,1,0,0,0,2921,2917,1,0,0,0,2922, + 167,1,0,0,0,2923,2925,3,170,85,0,2924,2923,1,0,0,0,2925,2928,1,0, + 0,0,2926,2924,1,0,0,0,2926,2927,1,0,0,0,2927,169,1,0,0,0,2928,2926, + 1,0,0,0,2929,2969,5,107,0,0,2930,2969,5,112,0,0,2931,2933,5,183, + 0,0,2932,2934,3,870,435,0,2933,2932,1,0,0,0,2933,2934,1,0,0,0,2934, + 2935,1,0,0,0,2935,2969,3,1456,728,0,2936,2938,5,78,0,0,2937,2939, + 3,870,435,0,2938,2937,1,0,0,0,2938,2939,1,0,0,0,2939,2940,1,0,0, + 0,2940,2969,3,1456,728,0,2941,2969,5,171,0,0,2942,2969,5,216,0,0, + 2943,2945,5,298,0,0,2944,2946,3,870,435,0,2945,2944,1,0,0,0,2945, + 2946,1,0,0,0,2946,2947,1,0,0,0,2947,2969,3,1456,728,0,2948,2950, + 5,197,0,0,2949,2951,3,870,435,0,2950,2949,1,0,0,0,2950,2951,1,0, + 0,0,2951,2952,1,0,0,0,2952,2969,3,1456,728,0,2953,2954,5,209,0,0, + 2954,2955,5,298,0,0,2955,2969,3,244,122,0,2956,2957,5,209,0,0,2957, + 2958,5,298,0,0,2958,2969,5,9,0,0,2959,2960,5,209,0,0,2960,2961,5, + 77,0,0,2961,2962,5,78,0,0,2962,2969,3,244,122,0,2963,2964,5,209, + 0,0,2964,2965,5,78,0,0,2965,2969,3,244,122,0,2966,2967,5,194,0,0, + 2967,2969,3,1456,728,0,2968,2929,1,0,0,0,2968,2930,1,0,0,0,2968, + 2931,1,0,0,0,2968,2936,1,0,0,0,2968,2941,1,0,0,0,2968,2942,1,0,0, + 0,2968,2943,1,0,0,0,2968,2948,1,0,0,0,2968,2953,1,0,0,0,2968,2956, + 1,0,0,0,2968,2959,1,0,0,0,2968,2963,1,0,0,0,2968,2966,1,0,0,0,2969, + 171,1,0,0,0,2970,2971,5,107,0,0,2971,173,1,0,0,0,2972,2974,3,176, + 88,0,2973,2972,1,0,0,0,2973,2974,1,0,0,0,2974,2975,1,0,0,0,2975, + 2976,5,184,0,0,2976,2977,3,1456,728,0,2977,175,1,0,0,0,2978,2979, + 5,100,0,0,2979,177,1,0,0,0,2980,2985,3,180,90,0,2981,2982,5,6,0, + 0,2982,2984,3,180,90,0,2983,2981,1,0,0,0,2984,2987,1,0,0,0,2985, + 2983,1,0,0,0,2985,2986,1,0,0,0,2986,179,1,0,0,0,2987,2985,1,0,0, + 0,2988,2990,3,1488,744,0,2989,2991,3,182,91,0,2990,2989,1,0,0,0, + 2990,2991,1,0,0,0,2991,181,1,0,0,0,2992,3000,3,72,36,0,2993,3000, + 3,320,160,0,2994,3000,5,9,0,0,2995,2996,5,2,0,0,2996,2997,3,184, + 92,0,2997,2998,5,3,0,0,2998,3000,1,0,0,0,2999,2992,1,0,0,0,2999, + 2993,1,0,0,0,2999,2994,1,0,0,0,2999,2995,1,0,0,0,3000,183,1,0,0, + 0,3001,3006,3,186,93,0,3002,3003,5,6,0,0,3003,3005,3,186,93,0,3004, + 3002,1,0,0,0,3005,3008,1,0,0,0,3006,3004,1,0,0,0,3006,3007,1,0,0, + 0,3007,185,1,0,0,0,3008,3006,1,0,0,0,3009,3010,3,70,35,0,3010,187, + 1,0,0,0,3011,3013,5,46,0,0,3012,3014,3,190,95,0,3013,3012,1,0,0, + 0,3013,3014,1,0,0,0,3014,3015,1,0,0,0,3015,3017,5,92,0,0,3016,3018, + 3,514,257,0,3017,3016,1,0,0,0,3017,3018,1,0,0,0,3018,3019,1,0,0, + 0,3019,3085,3,1402,701,0,3020,3022,5,2,0,0,3021,3023,3,192,96,0, + 3022,3021,1,0,0,0,3022,3023,1,0,0,0,3023,3024,1,0,0,0,3024,3026, + 5,3,0,0,3025,3027,3,264,132,0,3026,3025,1,0,0,0,3026,3027,1,0,0, + 0,3027,3029,1,0,0,0,3028,3030,3,266,133,0,3029,3028,1,0,0,0,3029, + 3030,1,0,0,0,3030,3032,1,0,0,0,3031,3033,3,274,137,0,3032,3031,1, + 0,0,0,3032,3033,1,0,0,0,3033,3035,1,0,0,0,3034,3036,3,276,138,0, + 3035,3034,1,0,0,0,3035,3036,1,0,0,0,3036,3038,1,0,0,0,3037,3039, + 3,278,139,0,3038,3037,1,0,0,0,3038,3039,1,0,0,0,3039,3041,1,0,0, + 0,3040,3042,3,280,140,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042, + 3086,1,0,0,0,3043,3044,5,275,0,0,3044,3046,3,556,278,0,3045,3047, + 3,196,98,0,3046,3045,1,0,0,0,3046,3047,1,0,0,0,3047,3049,1,0,0,0, + 3048,3050,3,266,133,0,3049,3048,1,0,0,0,3049,3050,1,0,0,0,3050,3052, + 1,0,0,0,3051,3053,3,274,137,0,3052,3051,1,0,0,0,3052,3053,1,0,0, + 0,3053,3055,1,0,0,0,3054,3056,3,276,138,0,3055,3054,1,0,0,0,3055, + 3056,1,0,0,0,3056,3058,1,0,0,0,3057,3059,3,278,139,0,3058,3057,1, + 0,0,0,3058,3059,1,0,0,0,3059,3061,1,0,0,0,3060,3062,3,280,140,0, + 3061,3060,1,0,0,0,3061,3062,1,0,0,0,3062,3086,1,0,0,0,3063,3064, + 5,285,0,0,3064,3065,5,275,0,0,3065,3067,3,1410,705,0,3066,3068,3, + 196,98,0,3067,3066,1,0,0,0,3067,3068,1,0,0,0,3068,3069,1,0,0,0,3069, + 3071,3,144,72,0,3070,3072,3,266,133,0,3071,3070,1,0,0,0,3071,3072, + 1,0,0,0,3072,3074,1,0,0,0,3073,3075,3,274,137,0,3074,3073,1,0,0, + 0,3074,3075,1,0,0,0,3075,3077,1,0,0,0,3076,3078,3,276,138,0,3077, + 3076,1,0,0,0,3077,3078,1,0,0,0,3078,3080,1,0,0,0,3079,3081,3,278, + 139,0,3080,3079,1,0,0,0,3080,3081,1,0,0,0,3081,3083,1,0,0,0,3082, + 3084,3,280,140,0,3083,3082,1,0,0,0,3083,3084,1,0,0,0,3084,3086,1, + 0,0,0,3085,3020,1,0,0,0,3085,3043,1,0,0,0,3085,3063,1,0,0,0,3086, + 189,1,0,0,0,3087,3095,5,354,0,0,3088,3095,5,352,0,0,3089,3090,5, + 254,0,0,3090,3095,7,25,0,0,3091,3092,5,213,0,0,3092,3095,7,25,0, + 0,3093,3095,5,367,0,0,3094,3087,1,0,0,0,3094,3088,1,0,0,0,3094,3089, + 1,0,0,0,3094,3091,1,0,0,0,3094,3093,1,0,0,0,3095,191,1,0,0,0,3096, + 3097,3,198,99,0,3097,193,1,0,0,0,3098,3099,3,198,99,0,3099,195,1, + 0,0,0,3100,3101,5,2,0,0,3101,3102,3,200,100,0,3102,3103,5,3,0,0, + 3103,197,1,0,0,0,3104,3109,3,202,101,0,3105,3106,5,6,0,0,3106,3108, + 3,202,101,0,3107,3105,1,0,0,0,3108,3111,1,0,0,0,3109,3107,1,0,0, + 0,3109,3110,1,0,0,0,3110,199,1,0,0,0,3111,3109,1,0,0,0,3112,3117, + 3,204,102,0,3113,3114,5,6,0,0,3114,3116,3,204,102,0,3115,3113,1, + 0,0,0,3116,3119,1,0,0,0,3117,3115,1,0,0,0,3117,3118,1,0,0,0,3118, + 201,1,0,0,0,3119,3117,1,0,0,0,3120,3124,3,208,104,0,3121,3124,3, + 230,115,0,3122,3124,3,236,118,0,3123,3120,1,0,0,0,3123,3121,1,0, + 0,0,3123,3122,1,0,0,0,3124,203,1,0,0,0,3125,3128,3,214,107,0,3126, + 3128,3,236,118,0,3127,3125,1,0,0,0,3127,3126,1,0,0,0,3128,205,1, + 0,0,0,3129,3130,3,1430,715,0,3130,3132,3,1166,583,0,3131,3133,3, + 366,183,0,3132,3131,1,0,0,0,3132,3133,1,0,0,0,3133,3135,1,0,0,0, + 3134,3136,3,212,106,0,3135,3134,1,0,0,0,3135,3136,1,0,0,0,3136,3138, + 1,0,0,0,3137,3139,3,210,105,0,3138,3137,1,0,0,0,3138,3139,1,0,0, + 0,3139,3142,1,0,0,0,3140,3141,5,43,0,0,3141,3143,3,556,278,0,3142, + 3140,1,0,0,0,3142,3143,1,0,0,0,3143,3146,1,0,0,0,3144,3145,5,105, + 0,0,3145,3147,5,280,0,0,3146,3144,1,0,0,0,3146,3147,1,0,0,0,3147, + 3148,1,0,0,0,3148,3149,3,216,108,0,3149,207,1,0,0,0,3150,3151,3, + 1430,715,0,3151,3153,3,1166,583,0,3152,3154,3,366,183,0,3153,3152, + 1,0,0,0,3153,3154,1,0,0,0,3154,3156,1,0,0,0,3155,3157,3,212,106, + 0,3156,3155,1,0,0,0,3156,3157,1,0,0,0,3157,3159,1,0,0,0,3158,3160, + 3,210,105,0,3159,3158,1,0,0,0,3159,3160,1,0,0,0,3160,3163,1,0,0, + 0,3161,3162,5,43,0,0,3162,3164,3,556,278,0,3163,3161,1,0,0,0,3163, + 3164,1,0,0,0,3164,3167,1,0,0,0,3165,3166,5,105,0,0,3166,3168,5,280, + 0,0,3167,3165,1,0,0,0,3167,3168,1,0,0,0,3168,3169,1,0,0,0,3169,3170, + 3,216,108,0,3170,209,1,0,0,0,3171,3172,5,543,0,0,3172,3173,3,1472, + 736,0,3173,211,1,0,0,0,3174,3181,5,345,0,0,3175,3182,5,544,0,0,3176, + 3182,5,205,0,0,3177,3182,5,545,0,0,3178,3182,5,546,0,0,3179,3182, + 5,53,0,0,3180,3182,3,1472,736,0,3181,3175,1,0,0,0,3181,3176,1,0, + 0,0,3181,3177,1,0,0,0,3181,3178,1,0,0,0,3181,3179,1,0,0,0,3181,3180, + 1,0,0,0,3182,213,1,0,0,0,3183,3186,3,1430,715,0,3184,3185,5,105, + 0,0,3185,3187,5,280,0,0,3186,3184,1,0,0,0,3186,3187,1,0,0,0,3187, + 3188,1,0,0,0,3188,3189,3,216,108,0,3189,215,1,0,0,0,3190,3192,3, + 218,109,0,3191,3190,1,0,0,0,3192,3195,1,0,0,0,3193,3191,1,0,0,0, + 3193,3194,1,0,0,0,3194,217,1,0,0,0,3195,3193,1,0,0,0,3196,3197,5, + 45,0,0,3197,3199,3,1434,717,0,3198,3196,1,0,0,0,3198,3199,1,0,0, + 0,3199,3200,1,0,0,0,3200,3202,3,220,110,0,3201,3203,3,226,113,0, + 3202,3201,1,0,0,0,3202,3203,1,0,0,0,3203,3205,1,0,0,0,3204,3206, + 3,228,114,0,3205,3204,1,0,0,0,3205,3206,1,0,0,0,3206,3215,1,0,0, + 0,3207,3209,3,220,110,0,3208,3210,3,226,113,0,3209,3208,1,0,0,0, + 3209,3210,1,0,0,0,3210,3212,1,0,0,0,3211,3213,3,228,114,0,3212,3211, + 1,0,0,0,3212,3213,1,0,0,0,3213,3215,1,0,0,0,3214,3198,1,0,0,0,3214, + 3207,1,0,0,0,3215,219,1,0,0,0,3216,3217,5,77,0,0,3217,3275,5,78, + 0,0,3218,3275,5,78,0,0,3219,3221,5,98,0,0,3220,3222,3,708,354,0, + 3221,3220,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1,0,0,0,3223,3225, + 3,284,142,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0,3225,3275,1,0,0, + 0,3226,3228,5,98,0,0,3227,3229,3,222,111,0,3228,3227,1,0,0,0,3228, + 3229,1,0,0,0,3229,3230,1,0,0,0,3230,3275,3,282,141,0,3231,3232,5, + 85,0,0,3232,3234,5,245,0,0,3233,3235,3,708,354,0,3234,3233,1,0,0, + 0,3234,3235,1,0,0,0,3235,3237,1,0,0,0,3236,3238,3,284,142,0,3237, + 3236,1,0,0,0,3237,3238,1,0,0,0,3238,3275,1,0,0,0,3239,3240,5,42, + 0,0,3240,3241,5,2,0,0,3241,3242,3,1210,605,0,3242,3244,5,3,0,0,3243, + 3245,3,240,120,0,3244,3243,1,0,0,0,3244,3245,1,0,0,0,3245,3275,1, + 0,0,0,3246,3247,5,53,0,0,3247,3275,3,1250,625,0,3248,3249,5,438, + 0,0,3249,3250,3,224,112,0,3250,3260,5,36,0,0,3251,3253,5,219,0,0, + 3252,3254,3,312,156,0,3253,3252,1,0,0,0,3253,3254,1,0,0,0,3254,3261, + 1,0,0,0,3255,3256,5,2,0,0,3256,3257,3,1210,605,0,3257,3258,5,3,0, + 0,3258,3259,5,440,0,0,3259,3261,1,0,0,0,3260,3251,1,0,0,0,3260,3255, + 1,0,0,0,3261,3275,1,0,0,0,3262,3263,5,86,0,0,3263,3265,3,1410,705, + 0,3264,3266,3,242,121,0,3265,3264,1,0,0,0,3265,3266,1,0,0,0,3266, + 3268,1,0,0,0,3267,3269,3,248,124,0,3268,3267,1,0,0,0,3268,3269,1, + 0,0,0,3269,3271,1,0,0,0,3270,3272,3,256,128,0,3271,3270,1,0,0,0, + 3271,3272,1,0,0,0,3272,3275,1,0,0,0,3273,3275,3,644,322,0,3274,3216, + 1,0,0,0,3274,3218,1,0,0,0,3274,3219,1,0,0,0,3274,3226,1,0,0,0,3274, + 3231,1,0,0,0,3274,3239,1,0,0,0,3274,3246,1,0,0,0,3274,3248,1,0,0, + 0,3274,3262,1,0,0,0,3274,3273,1,0,0,0,3275,221,1,0,0,0,3276,3278, + 5,273,0,0,3277,3279,5,77,0,0,3278,3277,1,0,0,0,3278,3279,1,0,0,0, + 3279,3280,1,0,0,0,3280,3281,5,56,0,0,3281,223,1,0,0,0,3282,3286, + 5,139,0,0,3283,3284,5,147,0,0,3284,3286,5,53,0,0,3285,3282,1,0,0, + 0,3285,3283,1,0,0,0,3286,225,1,0,0,0,3287,3291,5,54,0,0,3288,3289, + 5,77,0,0,3289,3291,5,54,0,0,3290,3287,1,0,0,0,3290,3288,1,0,0,0, + 3291,227,1,0,0,0,3292,3293,5,69,0,0,3293,3294,7,16,0,0,3294,229, + 1,0,0,0,3295,3296,5,120,0,0,3296,3297,3,1410,705,0,3297,3298,3,232, + 116,0,3298,231,1,0,0,0,3299,3300,7,26,0,0,3300,3302,3,234,117,0, + 3301,3299,1,0,0,0,3302,3305,1,0,0,0,3303,3301,1,0,0,0,3303,3304, + 1,0,0,0,3304,233,1,0,0,0,3305,3303,1,0,0,0,3306,3307,7,27,0,0,3307, + 235,1,0,0,0,3308,3309,5,45,0,0,3309,3310,3,1434,717,0,3310,3311, + 3,238,119,0,3311,3314,1,0,0,0,3312,3314,3,238,119,0,3313,3308,1, + 0,0,0,3313,3312,1,0,0,0,3314,237,1,0,0,0,3315,3316,5,42,0,0,3316, + 3317,5,2,0,0,3317,3318,3,1210,605,0,3318,3319,5,3,0,0,3319,3320, + 3,474,237,0,3320,3402,1,0,0,0,3321,3339,5,98,0,0,3322,3323,5,2,0, + 0,3323,3324,3,244,122,0,3324,3326,5,3,0,0,3325,3327,3,246,123,0, + 3326,3325,1,0,0,0,3326,3327,1,0,0,0,3327,3329,1,0,0,0,3328,3330, + 3,708,354,0,3329,3328,1,0,0,0,3329,3330,1,0,0,0,3330,3332,1,0,0, + 0,3331,3333,3,284,142,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333, + 3334,1,0,0,0,3334,3335,3,474,237,0,3335,3340,1,0,0,0,3336,3337,3, + 286,143,0,3337,3338,3,474,237,0,3338,3340,1,0,0,0,3339,3322,1,0, + 0,0,3339,3336,1,0,0,0,3340,3402,1,0,0,0,3341,3342,5,85,0,0,3342, + 3360,5,245,0,0,3343,3344,5,2,0,0,3344,3345,3,244,122,0,3345,3347, + 5,3,0,0,3346,3348,3,246,123,0,3347,3346,1,0,0,0,3347,3348,1,0,0, + 0,3348,3350,1,0,0,0,3349,3351,3,708,354,0,3350,3349,1,0,0,0,3350, + 3351,1,0,0,0,3351,3353,1,0,0,0,3352,3354,3,284,142,0,3353,3352,1, + 0,0,0,3353,3354,1,0,0,0,3354,3355,1,0,0,0,3355,3356,3,474,237,0, + 3356,3361,1,0,0,0,3357,3358,3,286,143,0,3358,3359,3,474,237,0,3359, + 3361,1,0,0,0,3360,3343,1,0,0,0,3360,3357,1,0,0,0,3361,3402,1,0,0, + 0,3362,3364,5,199,0,0,3363,3365,3,632,316,0,3364,3363,1,0,0,0,3364, + 3365,1,0,0,0,3365,3366,1,0,0,0,3366,3367,5,2,0,0,3367,3368,3,250, + 125,0,3368,3370,5,3,0,0,3369,3371,3,246,123,0,3370,3369,1,0,0,0, + 3370,3371,1,0,0,0,3371,3373,1,0,0,0,3372,3374,3,708,354,0,3373,3372, + 1,0,0,0,3373,3374,1,0,0,0,3374,3376,1,0,0,0,3375,3377,3,284,142, + 0,3376,3375,1,0,0,0,3376,3377,1,0,0,0,3377,3379,1,0,0,0,3378,3380, + 3,254,127,0,3379,3378,1,0,0,0,3379,3380,1,0,0,0,3380,3381,1,0,0, + 0,3381,3382,3,474,237,0,3382,3402,1,0,0,0,3383,3384,5,63,0,0,3384, + 3385,5,245,0,0,3385,3386,5,2,0,0,3386,3387,3,244,122,0,3387,3388, + 5,3,0,0,3388,3389,5,86,0,0,3389,3391,3,1410,705,0,3390,3392,3,242, + 121,0,3391,3390,1,0,0,0,3391,3392,1,0,0,0,3392,3394,1,0,0,0,3393, + 3395,3,248,124,0,3394,3393,1,0,0,0,3394,3395,1,0,0,0,3395,3397,1, + 0,0,0,3396,3398,3,256,128,0,3397,3396,1,0,0,0,3397,3398,1,0,0,0, + 3398,3399,1,0,0,0,3399,3400,3,474,237,0,3400,3402,1,0,0,0,3401,3315, + 1,0,0,0,3401,3321,1,0,0,0,3401,3341,1,0,0,0,3401,3362,1,0,0,0,3401, + 3383,1,0,0,0,3402,239,1,0,0,0,3403,3404,5,269,0,0,3404,3405,5,228, + 0,0,3405,241,1,0,0,0,3406,3407,5,2,0,0,3407,3408,3,244,122,0,3408, + 3409,5,3,0,0,3409,243,1,0,0,0,3410,3415,3,1430,715,0,3411,3412,5, + 6,0,0,3412,3414,3,1430,715,0,3413,3411,1,0,0,0,3414,3417,1,0,0,0, + 3415,3413,1,0,0,0,3415,3416,1,0,0,0,3416,245,1,0,0,0,3417,3415,1, + 0,0,0,3418,3419,5,441,0,0,3419,3420,5,2,0,0,3420,3421,3,244,122, + 0,3421,3422,5,3,0,0,3422,247,1,0,0,0,3423,3424,5,258,0,0,3424,3425, + 7,28,0,0,3425,249,1,0,0,0,3426,3431,3,252,126,0,3427,3428,5,6,0, + 0,3428,3430,3,252,126,0,3429,3427,1,0,0,0,3430,3433,1,0,0,0,3431, + 3429,1,0,0,0,3431,3432,1,0,0,0,3432,251,1,0,0,0,3433,3431,1,0,0, + 0,3434,3435,3,638,319,0,3435,3442,5,105,0,0,3436,3443,3,730,365, + 0,3437,3438,5,278,0,0,3438,3439,5,2,0,0,3439,3440,3,730,365,0,3440, + 3441,5,3,0,0,3441,3443,1,0,0,0,3442,3436,1,0,0,0,3442,3437,1,0,0, + 0,3443,253,1,0,0,0,3444,3445,5,103,0,0,3445,3446,5,2,0,0,3446,3447, + 3,1210,605,0,3447,3448,5,3,0,0,3448,255,1,0,0,0,3449,3458,3,258, + 129,0,3450,3458,3,260,130,0,3451,3452,3,258,129,0,3452,3453,3,260, + 130,0,3453,3458,1,0,0,0,3454,3455,3,260,130,0,3455,3456,3,258,129, + 0,3456,3458,1,0,0,0,3457,3449,1,0,0,0,3457,3450,1,0,0,0,3457,3451, + 1,0,0,0,3457,3454,1,0,0,0,3458,257,1,0,0,0,3459,3460,5,80,0,0,3460, + 3461,5,369,0,0,3461,3462,3,262,131,0,3462,259,1,0,0,0,3463,3464, + 5,80,0,0,3464,3465,5,182,0,0,3465,3466,3,262,131,0,3466,261,1,0, + 0,0,3467,3468,5,269,0,0,3468,3477,5,132,0,0,3469,3477,5,315,0,0, + 3470,3477,5,150,0,0,3471,3472,5,333,0,0,3472,3474,7,29,0,0,3473, + 3475,3,244,122,0,3474,3473,1,0,0,0,3474,3475,1,0,0,0,3475,3477,1, + 0,0,0,3476,3467,1,0,0,0,3476,3469,1,0,0,0,3476,3470,1,0,0,0,3476, + 3471,1,0,0,0,3477,263,1,0,0,0,3478,3479,5,238,0,0,3479,3480,5,2, + 0,0,3480,3481,3,1388,694,0,3481,3482,5,3,0,0,3482,265,1,0,0,0,3483, + 3484,3,268,134,0,3484,267,1,0,0,0,3485,3486,5,285,0,0,3486,3487, + 5,147,0,0,3487,3488,3,1472,736,0,3488,3489,5,2,0,0,3489,3490,3,270, + 135,0,3490,3491,5,3,0,0,3491,269,1,0,0,0,3492,3497,3,272,136,0,3493, + 3494,5,6,0,0,3494,3496,3,272,136,0,3495,3493,1,0,0,0,3496,3499,1, + 0,0,0,3497,3495,1,0,0,0,3497,3498,1,0,0,0,3498,271,1,0,0,0,3499, + 3497,1,0,0,0,3500,3502,3,1430,715,0,3501,3503,3,644,322,0,3502,3501, + 1,0,0,0,3502,3503,1,0,0,0,3503,3505,1,0,0,0,3504,3506,3,646,323, + 0,3505,3504,1,0,0,0,3505,3506,1,0,0,0,3506,3524,1,0,0,0,3507,3509, + 3,1260,630,0,3508,3510,3,644,322,0,3509,3508,1,0,0,0,3509,3510,1, + 0,0,0,3510,3512,1,0,0,0,3511,3513,3,646,323,0,3512,3511,1,0,0,0, + 3512,3513,1,0,0,0,3513,3524,1,0,0,0,3514,3515,5,2,0,0,3515,3516, + 3,1210,605,0,3516,3518,5,3,0,0,3517,3519,3,644,322,0,3518,3517,1, + 0,0,0,3518,3519,1,0,0,0,3519,3521,1,0,0,0,3520,3522,3,646,323,0, + 3521,3520,1,0,0,0,3521,3522,1,0,0,0,3522,3524,1,0,0,0,3523,3500, + 1,0,0,0,3523,3507,1,0,0,0,3523,3514,1,0,0,0,3524,273,1,0,0,0,3525, + 3526,5,100,0,0,3526,3527,3,1434,717,0,3527,275,1,0,0,0,3528,3529, + 5,105,0,0,3529,3535,3,132,66,0,3530,3531,5,379,0,0,3531,3535,5,277, + 0,0,3532,3533,5,105,0,0,3533,3535,5,277,0,0,3534,3528,1,0,0,0,3534, + 3530,1,0,0,0,3534,3532,1,0,0,0,3535,277,1,0,0,0,3536,3537,5,80,0, + 0,3537,3543,5,161,0,0,3538,3544,5,191,0,0,3539,3540,5,182,0,0,3540, + 3544,5,320,0,0,3541,3542,5,292,0,0,3542,3544,5,320,0,0,3543,3538, + 1,0,0,0,3543,3539,1,0,0,0,3543,3541,1,0,0,0,3544,279,1,0,0,0,3545, + 3546,5,351,0,0,3546,3547,3,1400,700,0,3547,281,1,0,0,0,3548,3550, + 3,640,320,0,3549,3548,1,0,0,0,3549,3550,1,0,0,0,3550,3552,1,0,0, + 0,3551,3553,3,1012,506,0,3552,3551,1,0,0,0,3552,3553,1,0,0,0,3553, + 3555,1,0,0,0,3554,3556,3,284,142,0,3555,3554,1,0,0,0,3555,3556,1, + 0,0,0,3556,283,1,0,0,0,3557,3558,5,100,0,0,3558,3559,5,226,0,0,3559, + 3560,5,351,0,0,3560,3561,3,1400,700,0,3561,285,1,0,0,0,3562,3563, + 5,100,0,0,3563,3564,5,226,0,0,3564,3565,3,1434,717,0,3565,287,1, + 0,0,0,3566,3567,5,46,0,0,3567,3572,5,342,0,0,3568,3570,3,514,257, + 0,3569,3568,1,0,0,0,3569,3570,1,0,0,0,3570,3571,1,0,0,0,3571,3573, + 3,556,278,0,3572,3569,1,0,0,0,3572,3573,1,0,0,0,3573,3575,1,0,0, + 0,3574,3576,3,916,458,0,3575,3574,1,0,0,0,3575,3576,1,0,0,0,3576, + 3577,1,0,0,0,3577,3580,5,80,0,0,3578,3581,3,1330,665,0,3579,3581, + 3,1326,663,0,3580,3578,1,0,0,0,3580,3579,1,0,0,0,3581,3582,1,0,0, + 0,3582,3583,5,64,0,0,3583,3584,3,1102,551,0,3584,289,1,0,0,0,3585, + 3586,5,138,0,0,3586,3588,5,342,0,0,3587,3589,3,746,373,0,3588,3587, + 1,0,0,0,3588,3589,1,0,0,0,3589,3590,1,0,0,0,3590,3591,3,556,278, + 0,3591,3592,5,333,0,0,3592,3593,5,342,0,0,3593,3594,3,1462,731,0, + 3594,291,1,0,0,0,3595,3597,5,46,0,0,3596,3598,3,190,95,0,3597,3596, + 1,0,0,0,3597,3598,1,0,0,0,3598,3599,1,0,0,0,3599,3601,5,92,0,0,3600, + 3602,3,514,257,0,3601,3600,1,0,0,0,3601,3602,1,0,0,0,3602,3603,1, + 0,0,0,3603,3604,3,294,147,0,3604,3605,5,36,0,0,3605,3607,3,998,499, + 0,3606,3608,3,296,148,0,3607,3606,1,0,0,0,3607,3608,1,0,0,0,3608, + 293,1,0,0,0,3609,3611,3,1402,701,0,3610,3612,3,242,121,0,3611,3610, + 1,0,0,0,3611,3612,1,0,0,0,3612,3614,1,0,0,0,3613,3615,3,274,137, + 0,3614,3613,1,0,0,0,3614,3615,1,0,0,0,3615,3617,1,0,0,0,3616,3618, + 3,276,138,0,3617,3616,1,0,0,0,3617,3618,1,0,0,0,3618,3620,1,0,0, + 0,3619,3621,3,278,139,0,3620,3619,1,0,0,0,3620,3621,1,0,0,0,3621, + 3623,1,0,0,0,3622,3624,3,280,140,0,3623,3622,1,0,0,0,3623,3624,1, + 0,0,0,3624,295,1,0,0,0,3625,3629,5,105,0,0,3626,3630,5,174,0,0,3627, + 3628,5,269,0,0,3628,3630,5,174,0,0,3629,3626,1,0,0,0,3629,3627,1, + 0,0,0,3630,297,1,0,0,0,3631,3633,5,46,0,0,3632,3634,3,302,151,0, + 3633,3632,1,0,0,0,3633,3634,1,0,0,0,3634,3635,1,0,0,0,3635,3636, + 5,259,0,0,3636,3638,5,376,0,0,3637,3639,3,514,257,0,3638,3637,1, + 0,0,0,3638,3639,1,0,0,0,3639,3640,1,0,0,0,3640,3641,3,300,150,0, + 3641,3642,5,36,0,0,3642,3644,3,998,499,0,3643,3645,3,296,148,0,3644, + 3643,1,0,0,0,3644,3645,1,0,0,0,3645,299,1,0,0,0,3646,3648,3,1406, + 703,0,3647,3649,3,242,121,0,3648,3647,1,0,0,0,3648,3649,1,0,0,0, + 3649,3651,1,0,0,0,3650,3652,3,274,137,0,3651,3650,1,0,0,0,3651,3652, + 1,0,0,0,3652,3654,1,0,0,0,3653,3655,3,134,67,0,3654,3653,1,0,0,0, + 3654,3655,1,0,0,0,3655,3657,1,0,0,0,3656,3658,3,280,140,0,3657,3656, + 1,0,0,0,3657,3658,1,0,0,0,3658,301,1,0,0,0,3659,3660,5,367,0,0,3660, + 303,1,0,0,0,3661,3662,5,305,0,0,3662,3663,5,259,0,0,3663,3665,5, + 376,0,0,3664,3666,3,628,314,0,3665,3664,1,0,0,0,3665,3666,1,0,0, + 0,3666,3667,1,0,0,0,3667,3669,3,1408,704,0,3668,3670,3,296,148,0, + 3669,3668,1,0,0,0,3669,3670,1,0,0,0,3670,305,1,0,0,0,3671,3673,5, + 46,0,0,3672,3674,3,190,95,0,3673,3672,1,0,0,0,3673,3674,1,0,0,0, + 3674,3675,1,0,0,0,3675,3677,5,328,0,0,3676,3678,3,514,257,0,3677, + 3676,1,0,0,0,3677,3678,1,0,0,0,3678,3679,1,0,0,0,3679,3681,3,1410, + 705,0,3680,3682,3,310,155,0,3681,3680,1,0,0,0,3681,3682,1,0,0,0, + 3682,307,1,0,0,0,3683,3684,5,138,0,0,3684,3686,5,328,0,0,3685,3687, + 3,746,373,0,3686,3685,1,0,0,0,3686,3687,1,0,0,0,3687,3688,1,0,0, + 0,3688,3689,3,1410,705,0,3689,3690,3,314,157,0,3690,309,1,0,0,0, + 3691,3692,3,314,157,0,3692,311,1,0,0,0,3693,3694,5,2,0,0,3694,3695, + 3,314,157,0,3695,3696,5,3,0,0,3696,313,1,0,0,0,3697,3699,3,316,158, + 0,3698,3697,1,0,0,0,3699,3700,1,0,0,0,3700,3698,1,0,0,0,3700,3701, + 1,0,0,0,3701,315,1,0,0,0,3702,3703,5,36,0,0,3703,3737,3,1170,585, + 0,3704,3705,5,148,0,0,3705,3737,3,320,160,0,3706,3737,5,173,0,0, + 3707,3709,5,225,0,0,3708,3710,3,318,159,0,3709,3708,1,0,0,0,3709, + 3710,1,0,0,0,3710,3711,1,0,0,0,3711,3737,3,320,160,0,3712,3713,5, + 260,0,0,3713,3737,3,320,160,0,3714,3715,5,262,0,0,3715,3737,3,320, + 160,0,3716,3717,5,269,0,0,3717,3737,7,30,0,0,3718,3719,5,281,0,0, + 3719,3720,5,147,0,0,3720,3737,3,1430,715,0,3721,3722,5,328,0,0,3722, + 3723,5,266,0,0,3723,3737,3,556,278,0,3724,3726,5,340,0,0,3725,3727, + 3,14,7,0,3726,3725,1,0,0,0,3726,3727,1,0,0,0,3727,3728,1,0,0,0,3728, + 3737,3,320,160,0,3729,3731,5,314,0,0,3730,3732,3,14,7,0,3731,3730, + 1,0,0,0,3731,3732,1,0,0,0,3732,3734,1,0,0,0,3733,3735,3,320,160, + 0,3734,3733,1,0,0,0,3734,3735,1,0,0,0,3735,3737,1,0,0,0,3736,3702, + 1,0,0,0,3736,3704,1,0,0,0,3736,3706,1,0,0,0,3736,3707,1,0,0,0,3736, + 3712,1,0,0,0,3736,3714,1,0,0,0,3736,3716,1,0,0,0,3736,3718,1,0,0, + 0,3736,3721,1,0,0,0,3736,3724,1,0,0,0,3736,3729,1,0,0,0,3737,317, + 1,0,0,0,3738,3739,5,147,0,0,3739,319,1,0,0,0,3740,3747,3,1452,726, + 0,3741,3742,5,12,0,0,3742,3747,3,1452,726,0,3743,3744,5,13,0,0,3744, + 3747,3,1452,726,0,3745,3747,3,1462,731,0,3746,3740,1,0,0,0,3746, + 3741,1,0,0,0,3746,3743,1,0,0,0,3746,3745,1,0,0,0,3747,321,1,0,0, + 0,3748,3753,3,320,160,0,3749,3750,5,6,0,0,3750,3752,3,320,160,0, + 3751,3749,1,0,0,0,3752,3755,1,0,0,0,3753,3751,1,0,0,0,3753,3754, + 1,0,0,0,3754,323,1,0,0,0,3755,3753,1,0,0,0,3756,3758,5,46,0,0,3757, + 3759,3,656,328,0,3758,3757,1,0,0,0,3758,3759,1,0,0,0,3759,3761,1, + 0,0,0,3760,3762,3,326,163,0,3761,3760,1,0,0,0,3761,3762,1,0,0,0, + 3762,3764,1,0,0,0,3763,3765,3,336,168,0,3764,3763,1,0,0,0,3764,3765, + 1,0,0,0,3765,3766,1,0,0,0,3766,3767,5,247,0,0,3767,3776,3,1434,717, + 0,3768,3769,5,215,0,0,3769,3771,3,328,164,0,3770,3772,3,330,165, + 0,3771,3770,1,0,0,0,3771,3772,1,0,0,0,3772,3774,1,0,0,0,3773,3775, + 3,334,167,0,3774,3773,1,0,0,0,3774,3775,1,0,0,0,3775,3777,1,0,0, + 0,3776,3768,1,0,0,0,3776,3777,1,0,0,0,3777,325,1,0,0,0,3778,3779, + 5,359,0,0,3779,327,1,0,0,0,3780,3782,3,1434,717,0,3781,3783,3,558, + 279,0,3782,3781,1,0,0,0,3782,3783,1,0,0,0,3783,329,1,0,0,0,3784, + 3785,5,239,0,0,3785,3786,3,328,164,0,3786,331,1,0,0,0,3787,3788, + 5,373,0,0,3788,3792,3,328,164,0,3789,3790,5,269,0,0,3790,3792,5, + 373,0,0,3791,3787,1,0,0,0,3791,3789,1,0,0,0,3792,333,1,0,0,0,3793, + 3794,3,332,166,0,3794,335,1,0,0,0,3795,3796,5,295,0,0,3796,337,1, + 0,0,0,3797,3798,5,46,0,0,3798,3799,5,351,0,0,3799,3801,3,1400,700, + 0,3800,3802,3,340,170,0,3801,3800,1,0,0,0,3801,3802,1,0,0,0,3802, + 3803,1,0,0,0,3803,3804,5,255,0,0,3804,3806,3,1456,728,0,3805,3807, + 3,134,67,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807,339,1,0,0,0, + 3808,3809,5,282,0,0,3809,3810,3,1468,734,0,3810,341,1,0,0,0,3811, + 3812,5,46,0,0,3812,3814,5,204,0,0,3813,3815,3,514,257,0,3814,3813, + 1,0,0,0,3814,3815,1,0,0,0,3815,3816,1,0,0,0,3816,3818,3,1434,717, + 0,3817,3819,3,14,7,0,3818,3817,1,0,0,0,3818,3819,1,0,0,0,3819,3820, + 1,0,0,0,3820,3821,3,344,172,0,3821,343,1,0,0,0,3822,3824,3,346,173, + 0,3823,3822,1,0,0,0,3824,3827,1,0,0,0,3825,3823,1,0,0,0,3825,3826, + 1,0,0,0,3826,345,1,0,0,0,3827,3825,1,0,0,0,3828,3829,5,323,0,0,3829, + 3836,3,1420,710,0,3830,3831,5,375,0,0,3831,3836,3,80,40,0,3832,3833, + 5,64,0,0,3833,3836,3,80,40,0,3834,3836,5,150,0,0,3835,3828,1,0,0, + 0,3835,3830,1,0,0,0,3835,3832,1,0,0,0,3835,3834,1,0,0,0,3836,347, + 1,0,0,0,3837,3838,5,138,0,0,3838,3839,5,204,0,0,3839,3840,3,1434, + 717,0,3840,3841,5,369,0,0,3841,3842,3,350,175,0,3842,349,1,0,0,0, + 3843,3845,3,352,176,0,3844,3843,1,0,0,0,3845,3848,1,0,0,0,3846,3844, + 1,0,0,0,3846,3847,1,0,0,0,3847,351,1,0,0,0,3848,3846,1,0,0,0,3849, + 3850,5,94,0,0,3850,3851,3,80,40,0,3851,353,1,0,0,0,3852,3853,5,138, + 0,0,3853,3854,5,204,0,0,3854,3855,3,1434,717,0,3855,3856,3,44,22, + 0,3856,3857,3,546,273,0,3857,3955,1,0,0,0,3858,3859,5,138,0,0,3859, + 3860,5,204,0,0,3860,3861,3,1434,717,0,3861,3862,3,44,22,0,3862,3863, + 3,544,272,0,3863,3955,1,0,0,0,3864,3865,5,138,0,0,3865,3866,5,204, + 0,0,3866,3867,3,1434,717,0,3867,3868,3,44,22,0,3868,3869,5,136,0, + 0,3869,3870,3,696,348,0,3870,3955,1,0,0,0,3871,3872,5,138,0,0,3872, + 3873,5,204,0,0,3873,3874,3,1434,717,0,3874,3875,3,44,22,0,3875,3876, + 5,41,0,0,3876,3877,5,2,0,0,3877,3878,3,1166,583,0,3878,3879,5,36, + 0,0,3879,3880,3,1166,583,0,3880,3881,5,3,0,0,3881,3955,1,0,0,0,3882, + 3883,5,138,0,0,3883,3884,5,204,0,0,3884,3885,3,1434,717,0,3885,3886, + 3,44,22,0,3886,3887,5,189,0,0,3887,3888,3,1166,583,0,3888,3955,1, + 0,0,0,3889,3890,5,138,0,0,3890,3891,5,204,0,0,3891,3892,3,1434,717, + 0,3892,3893,3,44,22,0,3893,3894,5,211,0,0,3894,3895,3,672,336,0, + 3895,3955,1,0,0,0,3896,3897,5,138,0,0,3897,3898,5,204,0,0,3898,3899, + 3,1434,717,0,3899,3900,3,44,22,0,3900,3901,5,278,0,0,3901,3902,3, + 734,367,0,3902,3955,1,0,0,0,3903,3904,5,138,0,0,3904,3905,5,204, + 0,0,3905,3906,3,1434,717,0,3906,3907,3,44,22,0,3907,3908,5,278,0, + 0,3908,3909,5,156,0,0,3909,3910,3,556,278,0,3910,3911,5,100,0,0, + 3911,3912,3,1434,717,0,3912,3955,1,0,0,0,3913,3914,5,138,0,0,3914, + 3915,5,204,0,0,3915,3916,3,1434,717,0,3916,3917,3,44,22,0,3917,3918, + 5,278,0,0,3918,3919,5,206,0,0,3919,3920,3,556,278,0,3920,3921,5, + 100,0,0,3921,3922,3,1434,717,0,3922,3955,1,0,0,0,3923,3924,5,138, + 0,0,3924,3925,5,204,0,0,3925,3926,3,1434,717,0,3926,3927,3,44,22, + 0,3927,3928,5,296,0,0,3928,3929,3,668,334,0,3929,3955,1,0,0,0,3930, + 3931,5,138,0,0,3931,3932,5,204,0,0,3932,3933,3,1434,717,0,3933,3934, + 3,44,22,0,3934,3935,5,442,0,0,3935,3936,3,664,332,0,3936,3955,1, + 0,0,0,3937,3938,5,138,0,0,3938,3939,5,204,0,0,3939,3940,3,1434,717, + 0,3940,3941,3,44,22,0,3941,3942,5,443,0,0,3942,3943,5,62,0,0,3943, + 3944,3,1166,583,0,3944,3945,5,247,0,0,3945,3946,3,1434,717,0,3946, + 3955,1,0,0,0,3947,3948,5,138,0,0,3948,3949,5,204,0,0,3949,3950,3, + 1434,717,0,3950,3951,3,44,22,0,3951,3952,5,360,0,0,3952,3953,3,1166, + 583,0,3953,3955,1,0,0,0,3954,3852,1,0,0,0,3954,3858,1,0,0,0,3954, + 3864,1,0,0,0,3954,3871,1,0,0,0,3954,3882,1,0,0,0,3954,3889,1,0,0, + 0,3954,3896,1,0,0,0,3954,3903,1,0,0,0,3954,3913,1,0,0,0,3954,3923, + 1,0,0,0,3954,3930,1,0,0,0,3954,3937,1,0,0,0,3954,3947,1,0,0,0,3955, + 355,1,0,0,0,3956,3957,5,46,0,0,3957,3958,5,63,0,0,3958,3959,5,174, + 0,0,3959,3960,5,381,0,0,3960,3962,3,1434,717,0,3961,3963,3,362,181, + 0,3962,3961,1,0,0,0,3962,3963,1,0,0,0,3963,3965,1,0,0,0,3964,3966, + 3,366,183,0,3965,3964,1,0,0,0,3965,3966,1,0,0,0,3966,357,1,0,0,0, + 3967,3968,5,215,0,0,3968,3976,3,328,164,0,3969,3970,5,269,0,0,3970, + 3976,5,215,0,0,3971,3972,5,373,0,0,3972,3976,3,328,164,0,3973,3974, + 5,269,0,0,3974,3976,5,373,0,0,3975,3967,1,0,0,0,3975,3969,1,0,0, + 0,3975,3971,1,0,0,0,3975,3973,1,0,0,0,3976,359,1,0,0,0,3977,3979, + 3,358,179,0,3978,3977,1,0,0,0,3979,3980,1,0,0,0,3980,3978,1,0,0, + 0,3980,3981,1,0,0,0,3981,361,1,0,0,0,3982,3983,3,360,180,0,3983, + 363,1,0,0,0,3984,3985,5,138,0,0,3985,3986,5,63,0,0,3986,3987,5,174, + 0,0,3987,3988,5,381,0,0,3988,3990,3,1434,717,0,3989,3991,3,362,181, + 0,3990,3989,1,0,0,0,3990,3991,1,0,0,0,3991,3992,1,0,0,0,3992,3993, + 3,370,185,0,3993,4002,1,0,0,0,3994,3995,5,138,0,0,3995,3996,5,63, + 0,0,3996,3997,5,174,0,0,3997,3998,5,381,0,0,3998,3999,3,1434,717, + 0,3999,4000,3,360,180,0,4000,4002,1,0,0,0,4001,3984,1,0,0,0,4001, + 3994,1,0,0,0,4002,365,1,0,0,0,4003,4004,5,280,0,0,4004,4005,5,2, + 0,0,4005,4006,3,368,184,0,4006,4007,5,3,0,0,4007,367,1,0,0,0,4008, + 4013,3,376,188,0,4009,4010,5,6,0,0,4010,4012,3,376,188,0,4011,4009, + 1,0,0,0,4012,4015,1,0,0,0,4013,4011,1,0,0,0,4013,4014,1,0,0,0,4014, + 369,1,0,0,0,4015,4013,1,0,0,0,4016,4017,5,280,0,0,4017,4018,5,2, + 0,0,4018,4019,3,372,186,0,4019,4020,5,3,0,0,4020,371,1,0,0,0,4021, + 4026,3,374,187,0,4022,4023,5,6,0,0,4023,4025,3,374,187,0,4024,4022, + 1,0,0,0,4025,4028,1,0,0,0,4026,4024,1,0,0,0,4026,4027,1,0,0,0,4027, + 373,1,0,0,0,4028,4026,1,0,0,0,4029,4037,3,376,188,0,4030,4031,5, + 333,0,0,4031,4037,3,376,188,0,4032,4033,5,133,0,0,4033,4037,3,376, + 188,0,4034,4035,5,191,0,0,4035,4037,3,376,188,0,4036,4029,1,0,0, + 0,4036,4030,1,0,0,0,4036,4032,1,0,0,0,4036,4034,1,0,0,0,4037,375, + 1,0,0,0,4038,4039,3,378,189,0,4039,4040,3,380,190,0,4040,377,1,0, + 0,0,4041,4042,3,1488,744,0,4042,379,1,0,0,0,4043,4044,3,1456,728, + 0,4044,381,1,0,0,0,4045,4046,5,46,0,0,4046,4048,5,331,0,0,4047,4049, + 3,514,257,0,4048,4047,1,0,0,0,4048,4049,1,0,0,0,4049,4050,1,0,0, + 0,4050,4052,3,1434,717,0,4051,4053,3,384,192,0,4052,4051,1,0,0,0, + 4052,4053,1,0,0,0,4053,4055,1,0,0,0,4054,4056,3,388,194,0,4055,4054, + 1,0,0,0,4055,4056,1,0,0,0,4056,4057,1,0,0,0,4057,4058,5,63,0,0,4058, + 4059,5,174,0,0,4059,4060,5,381,0,0,4060,4062,3,1434,717,0,4061,4063, + 3,366,183,0,4062,4061,1,0,0,0,4062,4063,1,0,0,0,4063,383,1,0,0,0, + 4064,4065,5,360,0,0,4065,4066,3,1456,728,0,4066,385,1,0,0,0,4067, + 4070,5,375,0,0,4068,4071,3,1456,728,0,4069,4071,5,78,0,0,4070,4068, + 1,0,0,0,4070,4069,1,0,0,0,4071,387,1,0,0,0,4072,4073,3,386,193,0, + 4073,389,1,0,0,0,4074,4075,5,138,0,0,4075,4076,5,331,0,0,4076,4082, + 3,1434,717,0,4077,4083,3,370,185,0,4078,4080,3,386,193,0,4079,4081, + 3,370,185,0,4080,4079,1,0,0,0,4080,4081,1,0,0,0,4081,4083,1,0,0, + 0,4082,4077,1,0,0,0,4082,4078,1,0,0,0,4083,391,1,0,0,0,4084,4085, + 5,46,0,0,4085,4086,5,63,0,0,4086,4088,5,92,0,0,4087,4089,3,514,257, + 0,4088,4087,1,0,0,0,4088,4089,1,0,0,0,4089,4090,1,0,0,0,4090,4091, + 3,1402,701,0,4091,4093,5,2,0,0,4092,4094,3,194,97,0,4093,4092,1, + 0,0,0,4093,4094,1,0,0,0,4094,4095,1,0,0,0,4095,4097,5,3,0,0,4096, + 4098,3,264,132,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4099,1, + 0,0,0,4099,4100,5,331,0,0,4100,4102,3,1434,717,0,4101,4103,3,366, + 183,0,4102,4101,1,0,0,0,4102,4103,1,0,0,0,4103,4124,1,0,0,0,4104, + 4105,5,46,0,0,4105,4106,5,63,0,0,4106,4108,5,92,0,0,4107,4109,3, + 514,257,0,4108,4107,1,0,0,0,4108,4109,1,0,0,0,4109,4110,1,0,0,0, + 4110,4111,3,1402,701,0,4111,4112,5,285,0,0,4112,4113,5,275,0,0,4113, + 4115,3,1404,702,0,4114,4116,3,196,98,0,4115,4114,1,0,0,0,4115,4116, + 1,0,0,0,4116,4117,1,0,0,0,4117,4118,3,144,72,0,4118,4119,5,331,0, + 0,4119,4121,3,1434,717,0,4120,4122,3,366,183,0,4121,4120,1,0,0,0, + 4121,4122,1,0,0,0,4122,4124,1,0,0,0,4123,4084,1,0,0,0,4123,4104, + 1,0,0,0,4124,393,1,0,0,0,4125,4126,5,444,0,0,4126,4127,5,63,0,0, + 4127,4128,5,323,0,0,4128,4130,3,1420,710,0,4129,4131,3,398,199,0, + 4130,4129,1,0,0,0,4130,4131,1,0,0,0,4131,4132,1,0,0,0,4132,4133, + 5,64,0,0,4133,4134,5,331,0,0,4134,4135,3,1434,717,0,4135,4136,5, + 71,0,0,4136,4138,3,1434,717,0,4137,4139,3,366,183,0,4138,4137,1, + 0,0,0,4138,4139,1,0,0,0,4139,395,1,0,0,0,4140,4141,5,74,0,0,4141, + 4144,5,94,0,0,4142,4144,5,59,0,0,4143,4140,1,0,0,0,4143,4142,1,0, + 0,0,4144,397,1,0,0,0,4145,4146,3,396,198,0,4146,4147,5,2,0,0,4147, + 4148,3,1122,561,0,4148,4149,5,3,0,0,4149,399,1,0,0,0,4150,4151,5, + 46,0,0,4151,4152,5,99,0,0,4152,4154,5,257,0,0,4153,4155,3,514,257, + 0,4154,4153,1,0,0,0,4154,4155,1,0,0,0,4155,4156,1,0,0,0,4156,4157, + 5,62,0,0,4157,4158,3,402,201,0,4158,4159,5,331,0,0,4159,4161,3,1434, + 717,0,4160,4162,3,366,183,0,4161,4160,1,0,0,0,4161,4162,1,0,0,0, + 4162,401,1,0,0,0,4163,4166,3,1468,734,0,4164,4166,5,99,0,0,4165, + 4163,1,0,0,0,4165,4164,1,0,0,0,4166,403,1,0,0,0,4167,4168,5,138, + 0,0,4168,4169,5,99,0,0,4169,4170,5,257,0,0,4170,4171,5,62,0,0,4171, + 4172,3,402,201,0,4172,4173,5,331,0,0,4173,4174,3,1434,717,0,4174, + 4175,3,370,185,0,4175,405,1,0,0,0,4176,4177,5,46,0,0,4177,4178,5, + 445,0,0,4178,4179,3,1434,717,0,4179,4180,5,80,0,0,4180,4182,3,1410, + 705,0,4181,4183,3,424,212,0,4182,4181,1,0,0,0,4182,4183,1,0,0,0, + 4183,4185,1,0,0,0,4184,4186,3,426,213,0,4185,4184,1,0,0,0,4185,4186, + 1,0,0,0,4186,4188,1,0,0,0,4187,4189,3,420,210,0,4188,4187,1,0,0, + 0,4188,4189,1,0,0,0,4189,4191,1,0,0,0,4190,4192,3,416,208,0,4191, + 4190,1,0,0,0,4191,4192,1,0,0,0,4192,4194,1,0,0,0,4193,4195,3,418, + 209,0,4194,4193,1,0,0,0,4194,4195,1,0,0,0,4195,407,1,0,0,0,4196, + 4197,5,138,0,0,4197,4198,5,445,0,0,4198,4199,3,1434,717,0,4199,4200, + 5,80,0,0,4200,4202,3,1410,705,0,4201,4203,3,422,211,0,4202,4201, + 1,0,0,0,4202,4203,1,0,0,0,4203,4205,1,0,0,0,4204,4206,3,416,208, + 0,4205,4204,1,0,0,0,4205,4206,1,0,0,0,4206,4208,1,0,0,0,4207,4209, + 3,418,209,0,4208,4207,1,0,0,0,4208,4209,1,0,0,0,4209,409,1,0,0,0, + 4210,4211,5,138,0,0,4211,4212,5,296,0,0,4212,4214,3,1426,713,0,4213, + 4215,3,658,329,0,4214,4213,1,0,0,0,4214,4215,1,0,0,0,4215,4216,1, + 0,0,0,4216,4217,3,412,206,0,4217,411,1,0,0,0,4218,4222,3,414,207, + 0,4219,4221,3,414,207,0,4220,4219,1,0,0,0,4221,4224,1,0,0,0,4222, + 4220,1,0,0,0,4222,4223,1,0,0,0,4223,4226,1,0,0,0,4224,4222,1,0,0, + 0,4225,4227,5,315,0,0,4226,4225,1,0,0,0,4226,4227,1,0,0,0,4227,4245, + 1,0,0,0,4228,4229,5,309,0,0,4229,4230,5,94,0,0,4230,4245,3,1428, + 714,0,4231,4232,5,282,0,0,4232,4233,5,94,0,0,4233,4245,3,1468,734, + 0,4234,4235,5,333,0,0,4235,4236,5,323,0,0,4236,4245,3,48,24,0,4237, + 4239,5,269,0,0,4238,4237,1,0,0,0,4238,4239,1,0,0,0,4239,4240,1,0, + 0,0,4240,4241,5,462,0,0,4241,4242,5,80,0,0,4242,4243,5,204,0,0,4243, + 4245,3,1434,717,0,4244,4218,1,0,0,0,4244,4228,1,0,0,0,4244,4231, + 1,0,0,0,4244,4234,1,0,0,0,4244,4238,1,0,0,0,4245,413,1,0,0,0,4246, + 4248,5,205,0,0,4247,4246,1,0,0,0,4247,4248,1,0,0,0,4248,4249,1,0, + 0,0,4249,4250,5,327,0,0,4250,4257,5,243,0,0,4251,4253,5,205,0,0, + 4252,4251,1,0,0,0,4252,4253,1,0,0,0,4253,4254,1,0,0,0,4254,4255, + 5,327,0,0,4255,4257,5,181,0,0,4256,4247,1,0,0,0,4256,4252,1,0,0, + 0,4257,4275,1,0,0,0,4258,4259,5,333,0,0,4259,4260,3,1434,717,0,4260, + 4263,7,31,0,0,4261,4264,3,1434,717,0,4262,4264,5,53,0,0,4263,4261, + 1,0,0,0,4263,4262,1,0,0,0,4264,4275,1,0,0,0,4265,4266,5,333,0,0, + 4266,4267,3,1434,717,0,4267,4268,5,64,0,0,4268,4269,5,434,0,0,4269, + 4275,1,0,0,0,4270,4271,5,313,0,0,4271,4275,3,1434,717,0,4272,4273, + 5,313,0,0,4273,4275,5,30,0,0,4274,4256,1,0,0,0,4274,4258,1,0,0,0, + 4274,4265,1,0,0,0,4274,4270,1,0,0,0,4274,4272,1,0,0,0,4275,415,1, + 0,0,0,4276,4277,5,100,0,0,4277,4278,5,2,0,0,4278,4279,3,1210,605, + 0,4279,4280,5,3,0,0,4280,417,1,0,0,0,4281,4282,5,105,0,0,4282,4283, + 5,42,0,0,4283,4284,5,2,0,0,4284,4285,3,1210,605,0,4285,4286,5,3, + 0,0,4286,419,1,0,0,0,4287,4288,5,94,0,0,4288,4289,3,1470,735,0,4289, + 421,1,0,0,0,4290,4291,5,94,0,0,4291,4292,3,1470,735,0,4292,423,1, + 0,0,0,4293,4297,5,36,0,0,4294,4298,5,541,0,0,4295,4298,5,542,0,0, + 4296,4298,3,1490,745,0,4297,4294,1,0,0,0,4297,4295,1,0,0,0,4297, + 4296,1,0,0,0,4298,425,1,0,0,0,4299,4300,5,62,0,0,4300,4301,3,428, + 214,0,4301,427,1,0,0,0,4302,4303,7,32,0,0,4303,429,1,0,0,0,4304, + 4305,5,46,0,0,4305,4306,5,131,0,0,4306,4307,5,446,0,0,4307,4308, + 3,1434,717,0,4308,4309,5,360,0,0,4309,4310,3,432,216,0,4310,4311, + 5,215,0,0,4311,4312,3,328,164,0,4312,431,1,0,0,0,4313,4314,7,33, + 0,0,4314,433,1,0,0,0,4315,4317,5,46,0,0,4316,4318,3,656,328,0,4317, + 4316,1,0,0,0,4317,4318,1,0,0,0,4318,4319,1,0,0,0,4319,4320,5,357, + 0,0,4320,4321,3,1434,717,0,4321,4322,3,436,218,0,4322,4323,3,442, + 221,0,4323,4324,5,80,0,0,4324,4326,3,1404,702,0,4325,4327,3,446, + 223,0,4326,4325,1,0,0,0,4326,4327,1,0,0,0,4327,4329,1,0,0,0,4328, + 4330,3,458,229,0,4329,4328,1,0,0,0,4329,4330,1,0,0,0,4330,4332,1, + 0,0,0,4331,4333,3,464,232,0,4332,4331,1,0,0,0,4332,4333,1,0,0,0, + 4333,4334,1,0,0,0,4334,4335,5,202,0,0,4335,4336,3,466,233,0,4336, + 4337,5,2,0,0,4337,4338,3,468,234,0,4338,4339,5,3,0,0,4339,4370,1, + 0,0,0,4340,4342,5,46,0,0,4341,4343,3,656,328,0,4342,4341,1,0,0,0, + 4342,4343,1,0,0,0,4343,4345,1,0,0,0,4344,4346,5,45,0,0,4345,4344, + 1,0,0,0,4345,4346,1,0,0,0,4346,4347,1,0,0,0,4347,4348,5,357,0,0, + 4348,4349,3,1434,717,0,4349,4350,3,436,218,0,4350,4351,3,442,221, + 0,4351,4352,5,80,0,0,4352,4354,3,1404,702,0,4353,4355,3,472,236, + 0,4354,4353,1,0,0,0,4354,4355,1,0,0,0,4355,4356,1,0,0,0,4356,4358, + 3,474,237,0,4357,4359,3,438,219,0,4358,4357,1,0,0,0,4358,4359,1, + 0,0,0,4359,4361,1,0,0,0,4360,4362,3,464,232,0,4361,4360,1,0,0,0, + 4361,4362,1,0,0,0,4362,4363,1,0,0,0,4363,4364,5,202,0,0,4364,4365, + 3,466,233,0,4365,4366,5,2,0,0,4366,4367,3,468,234,0,4367,4368,5, + 3,0,0,4368,4370,1,0,0,0,4369,4315,1,0,0,0,4369,4340,1,0,0,0,4370, + 435,1,0,0,0,4371,4376,5,145,0,0,4372,4376,5,135,0,0,4373,4374,5, + 242,0,0,4374,4376,5,275,0,0,4375,4371,1,0,0,0,4375,4372,1,0,0,0, + 4375,4373,1,0,0,0,4376,437,1,0,0,0,4377,4379,5,62,0,0,4378,4380, + 5,192,0,0,4379,4378,1,0,0,0,4379,4380,1,0,0,0,4380,4381,1,0,0,0, + 4381,4382,3,440,220,0,4382,439,1,0,0,0,4383,4384,7,34,0,0,4384,441, + 1,0,0,0,4385,4390,3,444,222,0,4386,4387,5,82,0,0,4387,4389,3,444, + 222,0,4388,4386,1,0,0,0,4389,4392,1,0,0,0,4390,4388,1,0,0,0,4390, + 4391,1,0,0,0,4391,443,1,0,0,0,4392,4390,1,0,0,0,4393,4401,5,241, + 0,0,4394,4401,5,182,0,0,4395,4401,5,369,0,0,4396,4397,5,369,0,0, + 4397,4398,5,275,0,0,4398,4401,3,244,122,0,4399,4401,5,358,0,0,4400, + 4393,1,0,0,0,4400,4394,1,0,0,0,4400,4395,1,0,0,0,4400,4396,1,0,0, + 0,4400,4399,1,0,0,0,4401,445,1,0,0,0,4402,4403,5,447,0,0,4403,4404, + 3,448,224,0,4404,447,1,0,0,0,4405,4407,3,450,225,0,4406,4405,1,0, + 0,0,4407,4408,1,0,0,0,4408,4406,1,0,0,0,4408,4409,1,0,0,0,4409,449, + 1,0,0,0,4410,4411,3,452,226,0,4411,4413,3,454,227,0,4412,4414,3, + 870,435,0,4413,4412,1,0,0,0,4413,4414,1,0,0,0,4414,4415,1,0,0,0, + 4415,4416,3,456,228,0,4416,451,1,0,0,0,4417,4418,7,35,0,0,4418,453, + 1,0,0,0,4419,4420,7,36,0,0,4420,455,1,0,0,0,4421,4422,3,1472,736, + 0,4422,457,1,0,0,0,4423,4425,5,62,0,0,4424,4426,3,460,230,0,4425, + 4424,1,0,0,0,4425,4426,1,0,0,0,4426,4427,1,0,0,0,4427,4428,3,462, + 231,0,4428,459,1,0,0,0,4429,4430,5,192,0,0,4430,461,1,0,0,0,4431, + 4432,7,34,0,0,4432,463,1,0,0,0,4433,4434,5,102,0,0,4434,4435,5,2, + 0,0,4435,4436,3,1210,605,0,4436,4437,5,3,0,0,4437,465,1,0,0,0,4438, + 4439,5,211,0,0,4439,4443,3,1442,721,0,4440,4441,5,296,0,0,4441,4443, + 3,1426,713,0,4442,4438,1,0,0,0,4442,4440,1,0,0,0,4443,467,1,0,0, + 0,4444,4447,3,470,235,0,4445,4447,1,0,0,0,4446,4444,1,0,0,0,4446, + 4445,1,0,0,0,4447,4452,1,0,0,0,4448,4449,5,6,0,0,4449,4451,3,470, + 235,0,4450,4448,1,0,0,0,4451,4454,1,0,0,0,4452,4450,1,0,0,0,4452, + 4453,1,0,0,0,4453,469,1,0,0,0,4454,4452,1,0,0,0,4455,4460,3,1454, + 727,0,4456,4460,3,1452,726,0,4457,4460,3,1456,728,0,4458,4460,3, + 1488,744,0,4459,4455,1,0,0,0,4459,4456,1,0,0,0,4459,4457,1,0,0,0, + 4459,4458,1,0,0,0,4460,471,1,0,0,0,4461,4462,5,64,0,0,4462,4463, + 3,1410,705,0,4463,473,1,0,0,0,4464,4466,3,476,238,0,4465,4464,1, + 0,0,0,4466,4469,1,0,0,0,4467,4465,1,0,0,0,4467,4468,1,0,0,0,4468, + 475,1,0,0,0,4469,4467,1,0,0,0,4470,4471,5,77,0,0,4471,4482,5,54, + 0,0,4472,4482,5,54,0,0,4473,4474,5,69,0,0,4474,4482,5,221,0,0,4475, + 4476,5,69,0,0,4476,4482,5,180,0,0,4477,4478,5,77,0,0,4478,4482,5, + 371,0,0,4479,4480,5,269,0,0,4480,4482,5,228,0,0,4481,4470,1,0,0, + 0,4481,4472,1,0,0,0,4481,4473,1,0,0,0,4481,4475,1,0,0,0,4481,4477, + 1,0,0,0,4481,4479,1,0,0,0,4482,477,1,0,0,0,4483,4484,5,46,0,0,4484, + 4485,5,198,0,0,4485,4486,5,357,0,0,4486,4487,3,1434,717,0,4487,4488, + 5,80,0,0,4488,4489,3,1488,744,0,4489,4490,5,202,0,0,4490,4491,3, + 466,233,0,4491,4492,5,2,0,0,4492,4493,5,3,0,0,4493,4508,1,0,0,0, + 4494,4495,5,46,0,0,4495,4496,5,198,0,0,4496,4497,5,357,0,0,4497, + 4498,3,1434,717,0,4498,4499,5,80,0,0,4499,4500,3,1488,744,0,4500, + 4501,5,102,0,0,4501,4502,3,480,240,0,4502,4503,5,202,0,0,4503,4504, + 3,466,233,0,4504,4505,5,2,0,0,4505,4506,5,3,0,0,4506,4508,1,0,0, + 0,4507,4483,1,0,0,0,4507,4494,1,0,0,0,4508,479,1,0,0,0,4509,4514, + 3,482,241,0,4510,4511,5,33,0,0,4511,4513,3,482,241,0,4512,4510,1, + 0,0,0,4513,4516,1,0,0,0,4514,4512,1,0,0,0,4514,4515,1,0,0,0,4515, + 481,1,0,0,0,4516,4514,1,0,0,0,4517,4518,3,1472,736,0,4518,4519,5, + 68,0,0,4519,4520,5,2,0,0,4520,4521,3,484,242,0,4521,4522,5,3,0,0, + 4522,483,1,0,0,0,4523,4528,3,1456,728,0,4524,4525,5,6,0,0,4525,4527, + 3,1456,728,0,4526,4524,1,0,0,0,4527,4530,1,0,0,0,4528,4526,1,0,0, + 0,4528,4529,1,0,0,0,4529,485,1,0,0,0,4530,4528,1,0,0,0,4531,4532, + 5,138,0,0,4532,4533,5,198,0,0,4533,4534,5,357,0,0,4534,4535,3,1434, + 717,0,4535,4536,3,488,244,0,4536,487,1,0,0,0,4537,4539,5,193,0,0, + 4538,4540,7,20,0,0,4539,4538,1,0,0,0,4539,4540,1,0,0,0,4540,4543, + 1,0,0,0,4541,4543,5,186,0,0,4542,4537,1,0,0,0,4542,4541,1,0,0,0, + 4543,489,1,0,0,0,4544,4545,5,46,0,0,4545,4546,5,140,0,0,4546,4547, + 3,556,278,0,4547,4548,5,42,0,0,4548,4549,5,2,0,0,4549,4550,3,1210, + 605,0,4550,4551,5,3,0,0,4551,4552,3,474,237,0,4552,491,1,0,0,0,4553, + 4555,5,46,0,0,4554,4556,3,656,328,0,4555,4554,1,0,0,0,4555,4556, + 1,0,0,0,4556,4557,1,0,0,0,4557,4558,5,136,0,0,4558,4559,3,1442,721, + 0,4559,4560,3,692,346,0,4560,4561,3,494,247,0,4561,4657,1,0,0,0, + 4562,4564,5,46,0,0,4563,4565,3,656,328,0,4564,4563,1,0,0,0,4564, + 4565,1,0,0,0,4565,4566,1,0,0,0,4566,4567,5,136,0,0,4567,4568,3,1442, + 721,0,4568,4569,3,502,251,0,4569,4657,1,0,0,0,4570,4571,5,46,0,0, + 4571,4572,5,278,0,0,4572,4573,3,730,365,0,4573,4574,3,494,247,0, + 4574,4657,1,0,0,0,4575,4576,5,46,0,0,4576,4577,5,360,0,0,4577,4578, + 3,556,278,0,4578,4579,3,494,247,0,4579,4657,1,0,0,0,4580,4581,5, + 46,0,0,4581,4582,5,360,0,0,4582,4657,3,556,278,0,4583,4584,5,46, + 0,0,4584,4585,5,360,0,0,4585,4586,3,556,278,0,4586,4587,5,36,0,0, + 4587,4589,5,2,0,0,4588,4590,3,1146,573,0,4589,4588,1,0,0,0,4589, + 4590,1,0,0,0,4590,4591,1,0,0,0,4591,4592,5,3,0,0,4592,4657,1,0,0, + 0,4593,4594,5,46,0,0,4594,4595,5,360,0,0,4595,4596,3,556,278,0,4596, + 4597,5,36,0,0,4597,4598,5,196,0,0,4598,4600,5,2,0,0,4599,4601,3, + 508,254,0,4600,4599,1,0,0,0,4600,4601,1,0,0,0,4601,4602,1,0,0,0, + 4602,4603,5,3,0,0,4603,4657,1,0,0,0,4604,4605,5,46,0,0,4605,4606, + 5,360,0,0,4606,4607,3,556,278,0,4607,4608,5,36,0,0,4608,4609,5,299, + 0,0,4609,4610,3,494,247,0,4610,4657,1,0,0,0,4611,4612,5,46,0,0,4612, + 4613,5,355,0,0,4613,4614,5,325,0,0,4614,4615,5,283,0,0,4615,4616, + 3,556,278,0,4616,4617,3,494,247,0,4617,4657,1,0,0,0,4618,4619,5, + 46,0,0,4619,4620,5,355,0,0,4620,4621,5,325,0,0,4621,4622,5,185,0, + 0,4622,4623,3,556,278,0,4623,4624,3,494,247,0,4624,4657,1,0,0,0, + 4625,4626,5,46,0,0,4626,4627,5,355,0,0,4627,4628,5,325,0,0,4628, + 4629,5,353,0,0,4629,4630,3,556,278,0,4630,4631,3,494,247,0,4631, + 4657,1,0,0,0,4632,4633,5,46,0,0,4633,4634,5,355,0,0,4634,4635,5, + 325,0,0,4635,4636,5,163,0,0,4636,4637,3,556,278,0,4637,4638,3,494, + 247,0,4638,4657,1,0,0,0,4639,4640,5,46,0,0,4640,4642,5,108,0,0,4641, + 4643,3,514,257,0,4642,4641,1,0,0,0,4642,4643,1,0,0,0,4643,4644,1, + 0,0,0,4644,4645,3,556,278,0,4645,4646,3,494,247,0,4646,4657,1,0, + 0,0,4647,4648,5,46,0,0,4648,4650,5,108,0,0,4649,4651,3,514,257,0, + 4650,4649,1,0,0,0,4650,4651,1,0,0,0,4651,4652,1,0,0,0,4652,4653, + 3,556,278,0,4653,4654,5,64,0,0,4654,4655,3,556,278,0,4655,4657,1, + 0,0,0,4656,4553,1,0,0,0,4656,4562,1,0,0,0,4656,4570,1,0,0,0,4656, + 4575,1,0,0,0,4656,4580,1,0,0,0,4656,4583,1,0,0,0,4656,4593,1,0,0, + 0,4656,4604,1,0,0,0,4656,4611,1,0,0,0,4656,4618,1,0,0,0,4656,4625, + 1,0,0,0,4656,4632,1,0,0,0,4656,4639,1,0,0,0,4656,4647,1,0,0,0,4657, + 493,1,0,0,0,4658,4659,5,2,0,0,4659,4660,3,496,248,0,4660,4661,5, + 3,0,0,4661,495,1,0,0,0,4662,4667,3,498,249,0,4663,4664,5,6,0,0,4664, + 4666,3,498,249,0,4665,4663,1,0,0,0,4666,4669,1,0,0,0,4667,4665,1, + 0,0,0,4667,4668,1,0,0,0,4668,497,1,0,0,0,4669,4667,1,0,0,0,4670, + 4673,3,1488,744,0,4671,4672,5,10,0,0,4672,4674,3,500,250,0,4673, + 4671,1,0,0,0,4673,4674,1,0,0,0,4674,499,1,0,0,0,4675,4682,3,686, + 343,0,4676,4682,3,1500,750,0,4677,4682,3,1322,661,0,4678,4682,3, + 320,160,0,4679,4682,3,1456,728,0,4680,4682,5,407,0,0,4681,4675,1, + 0,0,0,4681,4676,1,0,0,0,4681,4677,1,0,0,0,4681,4678,1,0,0,0,4681, + 4679,1,0,0,0,4681,4680,1,0,0,0,4682,501,1,0,0,0,4683,4684,5,2,0, + 0,4684,4685,3,504,252,0,4685,4686,5,3,0,0,4686,503,1,0,0,0,4687, + 4692,3,506,253,0,4688,4689,5,6,0,0,4689,4691,3,506,253,0,4690,4688, + 1,0,0,0,4691,4694,1,0,0,0,4692,4690,1,0,0,0,4692,4693,1,0,0,0,4693, + 505,1,0,0,0,4694,4692,1,0,0,0,4695,4696,3,1490,745,0,4696,4697,5, + 10,0,0,4697,4698,3,500,250,0,4698,507,1,0,0,0,4699,4700,3,510,255, + 0,4700,509,1,0,0,0,4701,4706,3,1456,728,0,4702,4703,5,6,0,0,4703, + 4705,3,1456,728,0,4704,4702,1,0,0,0,4705,4708,1,0,0,0,4706,4704, + 1,0,0,0,4706,4707,1,0,0,0,4707,511,1,0,0,0,4708,4706,1,0,0,0,4709, + 4710,5,138,0,0,4710,4711,5,360,0,0,4711,4712,3,556,278,0,4712,4713, + 5,133,0,0,4713,4715,5,450,0,0,4714,4716,3,514,257,0,4715,4714,1, + 0,0,0,4715,4716,1,0,0,0,4716,4717,1,0,0,0,4717,4720,3,1456,728,0, + 4718,4719,7,37,0,0,4719,4721,3,1456,728,0,4720,4718,1,0,0,0,4720, + 4721,1,0,0,0,4721,4732,1,0,0,0,4722,4723,5,138,0,0,4723,4724,5,360, + 0,0,4724,4725,3,556,278,0,4725,4726,5,309,0,0,4726,4727,5,450,0, + 0,4727,4728,3,1456,728,0,4728,4729,5,94,0,0,4729,4730,3,1456,728, + 0,4730,4732,1,0,0,0,4731,4709,1,0,0,0,4731,4722,1,0,0,0,4732,513, + 1,0,0,0,4733,4734,5,220,0,0,4734,4735,5,77,0,0,4735,4736,5,396,0, + 0,4736,515,1,0,0,0,4737,4738,5,46,0,0,4738,4739,5,278,0,0,4739,4740, + 5,156,0,0,4740,4742,3,556,278,0,4741,4743,3,522,261,0,4742,4741, + 1,0,0,0,4742,4743,1,0,0,0,4743,4744,1,0,0,0,4744,4745,5,62,0,0,4745, + 4746,5,360,0,0,4746,4747,3,1166,583,0,4747,4748,5,100,0,0,4748,4750, + 3,1434,717,0,4749,4751,3,524,262,0,4750,4749,1,0,0,0,4750,4751,1, + 0,0,0,4751,4752,1,0,0,0,4752,4753,5,36,0,0,4753,4754,3,518,259,0, + 4754,517,1,0,0,0,4755,4760,3,520,260,0,4756,4757,5,6,0,0,4757,4759, + 3,520,260,0,4758,4756,1,0,0,0,4759,4762,1,0,0,0,4760,4758,1,0,0, + 0,4760,4761,1,0,0,0,4761,519,1,0,0,0,4762,4760,1,0,0,0,4763,4764, + 5,278,0,0,4764,4765,3,1454,727,0,4765,4767,3,730,365,0,4766,4768, + 3,526,263,0,4767,4766,1,0,0,0,4767,4768,1,0,0,0,4768,4770,1,0,0, + 0,4769,4771,3,528,264,0,4770,4769,1,0,0,0,4770,4771,1,0,0,0,4771, + 4795,1,0,0,0,4772,4773,5,278,0,0,4773,4774,3,1454,727,0,4774,4776, + 3,734,367,0,4775,4777,3,526,263,0,4776,4775,1,0,0,0,4776,4777,1, + 0,0,0,4777,4779,1,0,0,0,4778,4780,3,528,264,0,4779,4778,1,0,0,0, + 4779,4780,1,0,0,0,4780,4795,1,0,0,0,4781,4782,5,211,0,0,4782,4783, + 3,1454,727,0,4783,4784,3,672,336,0,4784,4795,1,0,0,0,4785,4786,5, + 211,0,0,4786,4787,3,1454,727,0,4787,4788,5,2,0,0,4788,4789,3,1340, + 670,0,4789,4790,5,3,0,0,4790,4791,3,672,336,0,4791,4795,1,0,0,0, + 4792,4793,5,345,0,0,4793,4795,3,1166,583,0,4794,4763,1,0,0,0,4794, + 4772,1,0,0,0,4794,4781,1,0,0,0,4794,4785,1,0,0,0,4794,4792,1,0,0, + 0,4795,521,1,0,0,0,4796,4797,5,53,0,0,4797,523,1,0,0,0,4798,4799, + 5,206,0,0,4799,4800,3,556,278,0,4800,525,1,0,0,0,4801,4802,5,62, + 0,0,4802,4808,5,325,0,0,4803,4804,5,62,0,0,4804,4805,5,83,0,0,4805, + 4806,5,147,0,0,4806,4808,3,556,278,0,4807,4801,1,0,0,0,4807,4803, + 1,0,0,0,4808,527,1,0,0,0,4809,4810,5,302,0,0,4810,529,1,0,0,0,4811, + 4812,5,46,0,0,4812,4813,5,278,0,0,4813,4814,5,206,0,0,4814,4815, + 3,556,278,0,4815,4816,5,100,0,0,4816,4817,3,1434,717,0,4817,531, + 1,0,0,0,4818,4819,5,138,0,0,4819,4820,5,278,0,0,4820,4821,5,206, + 0,0,4821,4822,3,556,278,0,4822,4823,5,100,0,0,4823,4824,3,1434,717, + 0,4824,4825,5,133,0,0,4825,4826,3,518,259,0,4826,4837,1,0,0,0,4827, + 4828,5,138,0,0,4828,4829,5,278,0,0,4829,4830,5,206,0,0,4830,4831, + 3,556,278,0,4831,4832,5,100,0,0,4832,4833,3,1434,717,0,4833,4834, + 5,191,0,0,4834,4835,3,534,267,0,4835,4837,1,0,0,0,4836,4818,1,0, + 0,0,4836,4827,1,0,0,0,4837,533,1,0,0,0,4838,4843,3,536,268,0,4839, + 4840,5,6,0,0,4840,4842,3,536,268,0,4841,4839,1,0,0,0,4842,4845,1, + 0,0,0,4843,4841,1,0,0,0,4843,4844,1,0,0,0,4844,535,1,0,0,0,4845, + 4843,1,0,0,0,4846,4847,5,278,0,0,4847,4848,3,1454,727,0,4848,4849, + 5,2,0,0,4849,4850,3,1340,670,0,4850,4851,5,3,0,0,4851,4859,1,0,0, + 0,4852,4853,5,211,0,0,4853,4854,3,1454,727,0,4854,4855,5,2,0,0,4855, + 4856,3,1340,670,0,4856,4857,5,3,0,0,4857,4859,1,0,0,0,4858,4846, + 1,0,0,0,4858,4852,1,0,0,0,4859,537,1,0,0,0,4860,4861,5,301,0,0,4861, + 4862,5,281,0,0,4862,4863,5,147,0,0,4863,4864,3,1470,735,0,4864,4865, + 5,94,0,0,4865,4866,3,1468,734,0,4866,539,1,0,0,0,4867,4868,5,191, + 0,0,4868,4870,5,92,0,0,4869,4871,3,746,373,0,4870,4869,1,0,0,0,4870, + 4871,1,0,0,0,4871,4872,1,0,0,0,4872,4874,3,1390,695,0,4873,4875, + 3,124,62,0,4874,4873,1,0,0,0,4874,4875,1,0,0,0,4875,5247,1,0,0,0, + 4876,4877,5,191,0,0,4877,4879,5,328,0,0,4878,4880,3,746,373,0,4879, + 4878,1,0,0,0,4879,4880,1,0,0,0,4880,4881,1,0,0,0,4881,4883,3,1414, + 707,0,4882,4884,3,124,62,0,4883,4882,1,0,0,0,4883,4884,1,0,0,0,4884, + 5247,1,0,0,0,4885,4886,5,191,0,0,4886,4888,5,376,0,0,4887,4889,3, + 746,373,0,4888,4887,1,0,0,0,4888,4889,1,0,0,0,4889,4890,1,0,0,0, + 4890,4892,3,542,271,0,4891,4893,3,124,62,0,4892,4891,1,0,0,0,4892, + 4893,1,0,0,0,4893,5247,1,0,0,0,4894,4895,5,191,0,0,4895,4896,5,259, + 0,0,4896,4898,5,376,0,0,4897,4899,3,746,373,0,4898,4897,1,0,0,0, + 4898,4899,1,0,0,0,4899,4900,1,0,0,0,4900,4902,3,542,271,0,4901,4903, + 3,124,62,0,4902,4901,1,0,0,0,4902,4903,1,0,0,0,4903,5247,1,0,0,0, + 4904,4905,5,191,0,0,4905,4907,5,226,0,0,4906,4908,3,746,373,0,4907, + 4906,1,0,0,0,4907,4908,1,0,0,0,4908,4909,1,0,0,0,4909,4911,3,1414, + 707,0,4910,4912,3,124,62,0,4911,4910,1,0,0,0,4911,4912,1,0,0,0,4912, + 5247,1,0,0,0,4913,4914,5,191,0,0,4914,4915,5,63,0,0,4915,4917,5, + 92,0,0,4916,4918,3,746,373,0,4917,4916,1,0,0,0,4917,4918,1,0,0,0, + 4918,4919,1,0,0,0,4919,4921,3,1390,695,0,4920,4922,3,124,62,0,4921, + 4920,1,0,0,0,4921,4922,1,0,0,0,4922,5247,1,0,0,0,4923,4924,5,191, + 0,0,4924,4926,5,108,0,0,4925,4927,3,746,373,0,4926,4925,1,0,0,0, + 4926,4927,1,0,0,0,4927,4928,1,0,0,0,4928,4930,3,1414,707,0,4929, + 4931,3,124,62,0,4930,4929,1,0,0,0,4930,4931,1,0,0,0,4931,5247,1, + 0,0,0,4932,4933,5,191,0,0,4933,4935,5,168,0,0,4934,4936,3,746,373, + 0,4935,4934,1,0,0,0,4935,4936,1,0,0,0,4936,4937,1,0,0,0,4937,4939, + 3,1414,707,0,4938,4940,3,124,62,0,4939,4938,1,0,0,0,4939,4940,1, + 0,0,0,4940,5247,1,0,0,0,4941,4942,5,191,0,0,4942,4944,5,342,0,0, + 4943,4945,3,746,373,0,4944,4943,1,0,0,0,4944,4945,1,0,0,0,4945,4946, + 1,0,0,0,4946,4948,3,1414,707,0,4947,4949,3,124,62,0,4948,4947,1, + 0,0,0,4948,4949,1,0,0,0,4949,5247,1,0,0,0,4950,4951,5,191,0,0,4951, + 4952,5,355,0,0,4952,4953,5,325,0,0,4953,4955,5,283,0,0,4954,4956, + 3,746,373,0,4955,4954,1,0,0,0,4955,4956,1,0,0,0,4956,4957,1,0,0, + 0,4957,4959,3,1414,707,0,4958,4960,3,124,62,0,4959,4958,1,0,0,0, + 4959,4960,1,0,0,0,4960,5247,1,0,0,0,4961,4962,5,191,0,0,4962,4963, + 5,355,0,0,4963,4964,5,325,0,0,4964,4966,5,185,0,0,4965,4967,3,746, + 373,0,4966,4965,1,0,0,0,4966,4967,1,0,0,0,4967,4968,1,0,0,0,4968, + 4970,3,1414,707,0,4969,4971,3,124,62,0,4970,4969,1,0,0,0,4970,4971, + 1,0,0,0,4971,5247,1,0,0,0,4972,4973,5,191,0,0,4973,4974,5,355,0, + 0,4974,4975,5,325,0,0,4975,4977,5,353,0,0,4976,4978,3,746,373,0, + 4977,4976,1,0,0,0,4977,4978,1,0,0,0,4978,4979,1,0,0,0,4979,4981, + 3,1414,707,0,4980,4982,3,124,62,0,4981,4980,1,0,0,0,4981,4982,1, + 0,0,0,4982,5247,1,0,0,0,4983,4984,5,191,0,0,4984,4985,5,355,0,0, + 4985,4986,5,325,0,0,4986,4988,5,163,0,0,4987,4989,3,746,373,0,4988, + 4987,1,0,0,0,4988,4989,1,0,0,0,4989,4990,1,0,0,0,4990,4992,3,1414, + 707,0,4991,4993,3,124,62,0,4992,4991,1,0,0,0,4992,4993,1,0,0,0,4993, + 5247,1,0,0,0,4994,4995,5,191,0,0,4995,4996,5,131,0,0,4996,4998,5, + 446,0,0,4997,4999,3,746,373,0,4998,4997,1,0,0,0,4998,4999,1,0,0, + 0,4999,5000,1,0,0,0,5000,5002,3,1414,707,0,5001,5003,3,124,62,0, + 5002,5001,1,0,0,0,5002,5003,1,0,0,0,5003,5247,1,0,0,0,5004,5005, + 5,191,0,0,5005,5006,5,198,0,0,5006,5008,5,357,0,0,5007,5009,3,746, + 373,0,5008,5007,1,0,0,0,5008,5009,1,0,0,0,5009,5010,1,0,0,0,5010, + 5012,3,1414,707,0,5011,5013,3,124,62,0,5012,5011,1,0,0,0,5012,5013, + 1,0,0,0,5013,5247,1,0,0,0,5014,5015,5,191,0,0,5015,5017,5,204,0, + 0,5016,5018,3,746,373,0,5017,5016,1,0,0,0,5017,5018,1,0,0,0,5018, + 5019,1,0,0,0,5019,5021,3,1414,707,0,5020,5022,3,124,62,0,5021,5020, + 1,0,0,0,5021,5022,1,0,0,0,5022,5247,1,0,0,0,5023,5024,5,191,0,0, + 5024,5025,5,63,0,0,5025,5026,5,174,0,0,5026,5028,5,381,0,0,5027, + 5029,3,746,373,0,5028,5027,1,0,0,0,5028,5029,1,0,0,0,5029,5030,1, + 0,0,0,5030,5032,3,1414,707,0,5031,5033,3,124,62,0,5032,5031,1,0, + 0,0,5032,5033,1,0,0,0,5033,5247,1,0,0,0,5034,5036,5,191,0,0,5035, + 5037,3,336,168,0,5036,5035,1,0,0,0,5036,5037,1,0,0,0,5037,5038,1, + 0,0,0,5038,5040,5,247,0,0,5039,5041,3,746,373,0,5040,5039,1,0,0, + 0,5040,5041,1,0,0,0,5041,5042,1,0,0,0,5042,5044,3,1414,707,0,5043, + 5045,3,124,62,0,5044,5043,1,0,0,0,5044,5045,1,0,0,0,5045,5247,1, + 0,0,0,5046,5047,5,191,0,0,5047,5049,5,452,0,0,5048,5050,3,746,373, + 0,5049,5048,1,0,0,0,5049,5050,1,0,0,0,5050,5051,1,0,0,0,5051,5053, + 3,1414,707,0,5052,5054,3,124,62,0,5053,5052,1,0,0,0,5053,5054,1, + 0,0,0,5054,5247,1,0,0,0,5055,5056,5,191,0,0,5056,5058,5,331,0,0, + 5057,5059,3,746,373,0,5058,5057,1,0,0,0,5058,5059,1,0,0,0,5059,5060, + 1,0,0,0,5060,5062,3,1414,707,0,5061,5063,3,124,62,0,5062,5061,1, + 0,0,0,5062,5063,1,0,0,0,5063,5247,1,0,0,0,5064,5065,5,191,0,0,5065, + 5067,5,323,0,0,5066,5068,3,746,373,0,5067,5066,1,0,0,0,5067,5068, + 1,0,0,0,5068,5069,1,0,0,0,5069,5071,3,1392,696,0,5070,5072,3,124, + 62,0,5071,5070,1,0,0,0,5071,5072,1,0,0,0,5072,5247,1,0,0,0,5073, + 5074,5,191,0,0,5074,5076,5,445,0,0,5075,5077,3,746,373,0,5076,5075, + 1,0,0,0,5076,5077,1,0,0,0,5077,5078,1,0,0,0,5078,5079,3,1434,717, + 0,5079,5080,5,80,0,0,5080,5082,3,556,278,0,5081,5083,3,124,62,0, + 5082,5081,1,0,0,0,5082,5083,1,0,0,0,5083,5247,1,0,0,0,5084,5085, + 5,191,0,0,5085,5087,5,321,0,0,5086,5088,3,746,373,0,5087,5086,1, + 0,0,0,5087,5088,1,0,0,0,5088,5089,1,0,0,0,5089,5090,3,1434,717,0, + 5090,5091,5,80,0,0,5091,5093,3,556,278,0,5092,5094,3,124,62,0,5093, + 5092,1,0,0,0,5093,5094,1,0,0,0,5094,5247,1,0,0,0,5095,5096,5,191, + 0,0,5096,5098,5,357,0,0,5097,5099,3,746,373,0,5098,5097,1,0,0,0, + 5098,5099,1,0,0,0,5099,5100,1,0,0,0,5100,5101,3,1434,717,0,5101, + 5102,5,80,0,0,5102,5104,3,556,278,0,5103,5105,3,124,62,0,5104,5103, + 1,0,0,0,5104,5105,1,0,0,0,5105,5247,1,0,0,0,5106,5107,5,191,0,0, + 5107,5109,5,360,0,0,5108,5110,3,746,373,0,5109,5108,1,0,0,0,5109, + 5110,1,0,0,0,5110,5111,1,0,0,0,5111,5113,3,560,280,0,5112,5114,3, + 124,62,0,5113,5112,1,0,0,0,5113,5114,1,0,0,0,5114,5247,1,0,0,0,5115, + 5116,5,191,0,0,5116,5118,5,189,0,0,5117,5119,3,746,373,0,5118,5117, + 1,0,0,0,5118,5119,1,0,0,0,5119,5120,1,0,0,0,5120,5122,3,560,280, + 0,5121,5123,3,124,62,0,5122,5121,1,0,0,0,5122,5123,1,0,0,0,5123, + 5247,1,0,0,0,5124,5125,5,191,0,0,5125,5126,5,226,0,0,5126,5128,5, + 109,0,0,5127,5129,3,746,373,0,5128,5127,1,0,0,0,5128,5129,1,0,0, + 0,5129,5130,1,0,0,0,5130,5132,3,550,275,0,5131,5133,3,124,62,0,5132, + 5131,1,0,0,0,5132,5133,1,0,0,0,5133,5247,1,0,0,0,5134,5135,5,191, + 0,0,5135,5137,5,41,0,0,5136,5138,3,746,373,0,5137,5136,1,0,0,0,5137, + 5138,1,0,0,0,5138,5139,1,0,0,0,5139,5140,5,2,0,0,5140,5141,3,1166, + 583,0,5141,5142,5,36,0,0,5142,5143,3,1166,583,0,5143,5145,5,3,0, + 0,5144,5146,3,124,62,0,5145,5144,1,0,0,0,5145,5146,1,0,0,0,5146, + 5247,1,0,0,0,5147,5148,5,191,0,0,5148,5149,5,278,0,0,5149,5151,5, + 156,0,0,5150,5152,3,746,373,0,5151,5150,1,0,0,0,5151,5152,1,0,0, + 0,5152,5153,1,0,0,0,5153,5154,3,556,278,0,5154,5155,5,100,0,0,5155, + 5157,3,1434,717,0,5156,5158,3,124,62,0,5157,5156,1,0,0,0,5157,5158, + 1,0,0,0,5158,5247,1,0,0,0,5159,5160,5,191,0,0,5160,5161,5,278,0, + 0,5161,5163,5,206,0,0,5162,5164,3,746,373,0,5163,5162,1,0,0,0,5163, + 5164,1,0,0,0,5164,5165,1,0,0,0,5165,5166,3,556,278,0,5166,5167,5, + 100,0,0,5167,5169,3,1434,717,0,5168,5170,3,124,62,0,5169,5168,1, + 0,0,0,5169,5170,1,0,0,0,5170,5247,1,0,0,0,5171,5172,5,191,0,0,5172, + 5173,5,281,0,0,5173,5174,5,147,0,0,5174,5176,3,1470,735,0,5175,5177, + 3,124,62,0,5176,5175,1,0,0,0,5176,5177,1,0,0,0,5177,5247,1,0,0,0, + 5178,5179,5,191,0,0,5179,5181,5,376,0,0,5180,5182,3,746,373,0,5181, + 5180,1,0,0,0,5181,5182,1,0,0,0,5182,5183,1,0,0,0,5183,5185,3,542, + 271,0,5184,5186,3,124,62,0,5185,5184,1,0,0,0,5185,5186,1,0,0,0,5186, + 5247,1,0,0,0,5187,5188,5,191,0,0,5188,5190,5,451,0,0,5189,5191,3, + 746,373,0,5190,5189,1,0,0,0,5190,5191,1,0,0,0,5191,5192,1,0,0,0, + 5192,5194,3,1434,717,0,5193,5195,3,124,62,0,5194,5193,1,0,0,0,5194, + 5195,1,0,0,0,5195,5247,1,0,0,0,5196,5197,5,191,0,0,5197,5199,5,351, + 0,0,5198,5200,3,746,373,0,5199,5198,1,0,0,0,5199,5200,1,0,0,0,5200, + 5201,1,0,0,0,5201,5247,3,1400,700,0,5202,5203,5,191,0,0,5203,5205, + 5,443,0,0,5204,5206,3,746,373,0,5205,5204,1,0,0,0,5205,5206,1,0, + 0,0,5206,5207,1,0,0,0,5207,5208,5,62,0,0,5208,5209,3,1166,583,0, + 5209,5210,5,247,0,0,5210,5212,3,1434,717,0,5211,5213,3,124,62,0, + 5212,5211,1,0,0,0,5212,5213,1,0,0,0,5213,5247,1,0,0,0,5214,5215, + 5,191,0,0,5215,5217,7,38,0,0,5216,5218,3,746,373,0,5217,5216,1,0, + 0,0,5217,5218,1,0,0,0,5218,5219,1,0,0,0,5219,5247,3,1470,735,0,5220, + 5221,5,191,0,0,5221,5222,5,99,0,0,5222,5224,5,257,0,0,5223,5225, + 3,746,373,0,5224,5223,1,0,0,0,5224,5225,1,0,0,0,5225,5226,1,0,0, + 0,5226,5227,5,62,0,0,5227,5228,3,402,201,0,5228,5229,5,331,0,0,5229, + 5230,3,1434,717,0,5230,5247,1,0,0,0,5231,5232,5,191,0,0,5232,5234, + 5,175,0,0,5233,5235,3,746,373,0,5234,5233,1,0,0,0,5234,5235,1,0, + 0,0,5235,5236,1,0,0,0,5236,5244,3,1418,709,0,5237,5239,3,14,7,0, + 5238,5237,1,0,0,0,5238,5239,1,0,0,0,5239,5240,1,0,0,0,5240,5241, + 5,2,0,0,5241,5242,3,858,429,0,5242,5243,5,3,0,0,5243,5245,1,0,0, + 0,5244,5238,1,0,0,0,5244,5245,1,0,0,0,5245,5247,1,0,0,0,5246,4867, + 1,0,0,0,5246,4876,1,0,0,0,5246,4885,1,0,0,0,5246,4894,1,0,0,0,5246, + 4904,1,0,0,0,5246,4913,1,0,0,0,5246,4923,1,0,0,0,5246,4932,1,0,0, + 0,5246,4941,1,0,0,0,5246,4950,1,0,0,0,5246,4961,1,0,0,0,5246,4972, + 1,0,0,0,5246,4983,1,0,0,0,5246,4994,1,0,0,0,5246,5004,1,0,0,0,5246, + 5014,1,0,0,0,5246,5023,1,0,0,0,5246,5034,1,0,0,0,5246,5046,1,0,0, + 0,5246,5055,1,0,0,0,5246,5064,1,0,0,0,5246,5073,1,0,0,0,5246,5084, + 1,0,0,0,5246,5095,1,0,0,0,5246,5106,1,0,0,0,5246,5115,1,0,0,0,5246, + 5124,1,0,0,0,5246,5134,1,0,0,0,5246,5147,1,0,0,0,5246,5159,1,0,0, + 0,5246,5171,1,0,0,0,5246,5178,1,0,0,0,5246,5187,1,0,0,0,5246,5196, + 1,0,0,0,5246,5202,1,0,0,0,5246,5214,1,0,0,0,5246,5220,1,0,0,0,5246, + 5231,1,0,0,0,5247,541,1,0,0,0,5248,5253,3,1408,704,0,5249,5250,5, + 6,0,0,5250,5252,3,1408,704,0,5251,5249,1,0,0,0,5252,5255,1,0,0,0, + 5253,5251,1,0,0,0,5253,5254,1,0,0,0,5254,543,1,0,0,0,5255,5253,1, + 0,0,0,5256,5258,5,63,0,0,5257,5256,1,0,0,0,5257,5258,1,0,0,0,5258, + 5259,1,0,0,0,5259,5260,5,92,0,0,5260,5281,3,1404,702,0,5261,5263, + 5,259,0,0,5262,5261,1,0,0,0,5262,5263,1,0,0,0,5263,5264,1,0,0,0, + 5264,5265,5,376,0,0,5265,5281,3,1408,704,0,5266,5267,5,226,0,0,5267, + 5281,3,556,278,0,5268,5269,5,108,0,0,5269,5281,3,556,278,0,5270, + 5271,5,168,0,0,5271,5281,3,556,278,0,5272,5273,5,342,0,0,5273,5281, + 3,556,278,0,5274,5275,5,328,0,0,5275,5281,3,556,278,0,5276,5277, + 5,355,0,0,5277,5278,5,325,0,0,5278,5279,7,39,0,0,5279,5281,3,556, + 278,0,5280,5257,1,0,0,0,5280,5262,1,0,0,0,5280,5266,1,0,0,0,5280, + 5268,1,0,0,0,5280,5270,1,0,0,0,5280,5272,1,0,0,0,5280,5274,1,0,0, + 0,5280,5276,1,0,0,0,5281,545,1,0,0,0,5282,5283,5,131,0,0,5283,5284, + 5,446,0,0,5284,5314,3,1434,717,0,5285,5286,5,198,0,0,5286,5287,5, + 357,0,0,5287,5314,3,1434,717,0,5288,5289,5,204,0,0,5289,5314,3,1434, + 717,0,5290,5291,5,63,0,0,5291,5292,5,174,0,0,5292,5293,5,381,0,0, + 5293,5314,3,1434,717,0,5294,5296,3,336,168,0,5295,5294,1,0,0,0,5295, + 5296,1,0,0,0,5296,5297,1,0,0,0,5297,5298,5,247,0,0,5298,5314,3,1434, + 717,0,5299,5300,5,452,0,0,5300,5314,3,1434,717,0,5301,5302,5,323, + 0,0,5302,5314,3,1420,710,0,5303,5304,5,331,0,0,5304,5314,3,1434, + 717,0,5305,5306,5,175,0,0,5306,5314,3,1418,709,0,5307,5308,5,318, + 0,0,5308,5314,3,1434,717,0,5309,5310,5,451,0,0,5310,5314,3,1434, + 717,0,5311,5312,5,351,0,0,5312,5314,3,1400,700,0,5313,5282,1,0,0, + 0,5313,5285,1,0,0,0,5313,5288,1,0,0,0,5313,5290,1,0,0,0,5313,5295, + 1,0,0,0,5313,5299,1,0,0,0,5313,5301,1,0,0,0,5313,5303,1,0,0,0,5313, + 5305,1,0,0,0,5313,5307,1,0,0,0,5313,5309,1,0,0,0,5313,5311,1,0,0, + 0,5314,547,1,0,0,0,5315,5316,7,40,0,0,5316,549,1,0,0,0,5317,5322, + 3,556,278,0,5318,5319,5,6,0,0,5319,5321,3,556,278,0,5320,5318,1, + 0,0,0,5321,5324,1,0,0,0,5322,5320,1,0,0,0,5322,5323,1,0,0,0,5323, + 551,1,0,0,0,5324,5322,1,0,0,0,5325,5326,3,554,277,0,5326,5327,5, + 11,0,0,5327,5328,3,1430,715,0,5328,553,1,0,0,0,5329,5331,3,1472, + 736,0,5330,5332,3,558,279,0,5331,5330,1,0,0,0,5331,5332,1,0,0,0, + 5332,555,1,0,0,0,5333,5335,3,1472,736,0,5334,5336,3,558,279,0,5335, + 5334,1,0,0,0,5335,5336,1,0,0,0,5336,557,1,0,0,0,5337,5338,5,11,0, + 0,5338,5340,3,1436,718,0,5339,5337,1,0,0,0,5340,5341,1,0,0,0,5341, + 5339,1,0,0,0,5341,5342,1,0,0,0,5342,559,1,0,0,0,5343,5348,3,1166, + 583,0,5344,5345,5,6,0,0,5345,5347,3,1166,583,0,5346,5344,1,0,0,0, + 5347,5350,1,0,0,0,5348,5346,1,0,0,0,5348,5349,1,0,0,0,5349,561,1, + 0,0,0,5350,5348,1,0,0,0,5351,5353,5,358,0,0,5352,5354,5,92,0,0,5353, + 5352,1,0,0,0,5353,5354,1,0,0,0,5354,5355,1,0,0,0,5355,5360,3,564, + 282,0,5356,5357,5,6,0,0,5357,5359,3,564,282,0,5358,5356,1,0,0,0, + 5359,5362,1,0,0,0,5360,5358,1,0,0,0,5360,5361,1,0,0,0,5361,5365, + 1,0,0,0,5362,5360,1,0,0,0,5363,5364,7,41,0,0,5364,5366,5,219,0,0, + 5365,5363,1,0,0,0,5365,5366,1,0,0,0,5366,5368,1,0,0,0,5367,5369, + 3,124,62,0,5368,5367,1,0,0,0,5368,5369,1,0,0,0,5369,563,1,0,0,0, + 5370,5372,5,81,0,0,5371,5370,1,0,0,0,5371,5372,1,0,0,0,5372,5373, + 1,0,0,0,5373,5375,3,1404,702,0,5374,5376,5,9,0,0,5375,5374,1,0,0, + 0,5375,5376,1,0,0,0,5376,565,1,0,0,0,5377,5378,5,159,0,0,5378,5379, + 5,80,0,0,5379,5380,3,544,272,0,5380,5381,5,116,0,0,5381,5382,3,568, + 284,0,5382,5543,1,0,0,0,5383,5384,5,159,0,0,5384,5385,5,80,0,0,5385, + 5386,5,44,0,0,5386,5387,3,552,276,0,5387,5388,5,116,0,0,5388,5389, + 3,568,284,0,5389,5543,1,0,0,0,5390,5391,5,159,0,0,5391,5392,5,80, + 0,0,5392,5393,3,546,273,0,5393,5394,5,116,0,0,5394,5395,3,568,284, + 0,5395,5543,1,0,0,0,5396,5397,5,159,0,0,5397,5398,5,80,0,0,5398, + 5399,5,360,0,0,5399,5400,3,1166,583,0,5400,5401,5,116,0,0,5401,5402, + 3,568,284,0,5402,5543,1,0,0,0,5403,5404,5,159,0,0,5404,5405,5,80, + 0,0,5405,5406,5,189,0,0,5406,5407,3,1166,583,0,5407,5408,5,116,0, + 0,5408,5409,3,568,284,0,5409,5543,1,0,0,0,5410,5411,5,159,0,0,5411, + 5412,5,80,0,0,5412,5413,5,136,0,0,5413,5414,3,696,348,0,5414,5415, + 5,116,0,0,5415,5416,3,568,284,0,5416,5543,1,0,0,0,5417,5418,5,159, + 0,0,5418,5419,5,80,0,0,5419,5420,5,211,0,0,5420,5421,3,672,336,0, + 5421,5422,5,116,0,0,5422,5423,3,568,284,0,5423,5543,1,0,0,0,5424, + 5425,5,159,0,0,5425,5426,5,80,0,0,5426,5427,5,278,0,0,5427,5428, + 3,734,367,0,5428,5429,5,116,0,0,5429,5430,3,568,284,0,5430,5543, + 1,0,0,0,5431,5432,5,159,0,0,5432,5433,5,80,0,0,5433,5434,5,45,0, + 0,5434,5435,3,1434,717,0,5435,5436,5,80,0,0,5436,5437,3,1404,702, + 0,5437,5438,5,116,0,0,5438,5439,3,568,284,0,5439,5543,1,0,0,0,5440, + 5441,5,159,0,0,5441,5442,5,80,0,0,5442,5443,5,45,0,0,5443,5444,3, + 1434,717,0,5444,5446,5,80,0,0,5445,5447,5,189,0,0,5446,5445,1,0, + 0,0,5446,5447,1,0,0,0,5447,5448,1,0,0,0,5448,5449,3,556,278,0,5449, + 5450,5,116,0,0,5450,5451,3,568,284,0,5451,5543,1,0,0,0,5452,5453, + 5,159,0,0,5453,5454,5,80,0,0,5454,5455,5,445,0,0,5455,5456,3,1434, + 717,0,5456,5457,5,80,0,0,5457,5458,3,556,278,0,5458,5459,5,116,0, + 0,5459,5460,3,568,284,0,5460,5543,1,0,0,0,5461,5462,5,159,0,0,5462, + 5463,5,80,0,0,5463,5464,5,321,0,0,5464,5465,3,1434,717,0,5465,5466, + 5,80,0,0,5466,5467,3,556,278,0,5467,5468,5,116,0,0,5468,5469,3,568, + 284,0,5469,5543,1,0,0,0,5470,5471,5,159,0,0,5471,5472,5,80,0,0,5472, + 5473,5,357,0,0,5473,5474,3,1434,717,0,5474,5475,5,80,0,0,5475,5476, + 3,556,278,0,5476,5477,5,116,0,0,5477,5478,3,568,284,0,5478,5543, + 1,0,0,0,5479,5480,5,159,0,0,5480,5481,5,80,0,0,5481,5482,5,296,0, + 0,5482,5483,3,668,334,0,5483,5484,5,116,0,0,5484,5485,3,568,284, + 0,5485,5543,1,0,0,0,5486,5487,5,159,0,0,5487,5488,5,80,0,0,5488, + 5489,5,442,0,0,5489,5490,3,664,332,0,5490,5491,5,116,0,0,5491,5492, + 3,568,284,0,5492,5543,1,0,0,0,5493,5494,5,159,0,0,5494,5495,5,80, + 0,0,5495,5496,5,443,0,0,5496,5497,5,62,0,0,5497,5498,3,1166,583, + 0,5498,5499,5,247,0,0,5499,5500,3,1434,717,0,5500,5501,5,116,0,0, + 5501,5502,3,568,284,0,5502,5543,1,0,0,0,5503,5504,5,159,0,0,5504, + 5505,5,80,0,0,5505,5506,5,278,0,0,5506,5507,5,156,0,0,5507,5508, + 3,556,278,0,5508,5509,5,100,0,0,5509,5510,3,1434,717,0,5510,5511, + 5,116,0,0,5511,5512,3,568,284,0,5512,5543,1,0,0,0,5513,5514,5,159, + 0,0,5514,5515,5,80,0,0,5515,5516,5,278,0,0,5516,5517,5,206,0,0,5517, + 5518,3,556,278,0,5518,5519,5,100,0,0,5519,5520,3,1434,717,0,5520, + 5521,5,116,0,0,5521,5522,3,568,284,0,5522,5543,1,0,0,0,5523,5524, + 5,159,0,0,5524,5525,5,80,0,0,5525,5526,5,248,0,0,5526,5527,5,274, + 0,0,5527,5528,3,320,160,0,5528,5529,5,116,0,0,5529,5530,3,568,284, + 0,5530,5543,1,0,0,0,5531,5532,5,159,0,0,5532,5533,5,80,0,0,5533, + 5534,5,41,0,0,5534,5535,5,2,0,0,5535,5536,3,1166,583,0,5536,5537, + 5,36,0,0,5537,5538,3,1166,583,0,5538,5539,5,3,0,0,5539,5540,5,116, + 0,0,5540,5541,3,568,284,0,5541,5543,1,0,0,0,5542,5377,1,0,0,0,5542, + 5383,1,0,0,0,5542,5390,1,0,0,0,5542,5396,1,0,0,0,5542,5403,1,0,0, + 0,5542,5410,1,0,0,0,5542,5417,1,0,0,0,5542,5424,1,0,0,0,5542,5431, + 1,0,0,0,5542,5440,1,0,0,0,5542,5452,1,0,0,0,5542,5461,1,0,0,0,5542, + 5470,1,0,0,0,5542,5479,1,0,0,0,5542,5486,1,0,0,0,5542,5493,1,0,0, + 0,5542,5503,1,0,0,0,5542,5513,1,0,0,0,5542,5523,1,0,0,0,5542,5531, + 1,0,0,0,5543,567,1,0,0,0,5544,5547,3,1456,728,0,5545,5547,5,78,0, + 0,5546,5544,1,0,0,0,5546,5545,1,0,0,0,5547,569,1,0,0,0,5548,5549, + 5,327,0,0,5549,5551,5,246,0,0,5550,5552,3,572,286,0,5551,5550,1, + 0,0,0,5551,5552,1,0,0,0,5552,5553,1,0,0,0,5553,5554,5,80,0,0,5554, + 5555,5,44,0,0,5555,5556,3,1430,715,0,5556,5557,5,116,0,0,5557,5558, + 3,574,287,0,5558,5658,1,0,0,0,5559,5560,5,327,0,0,5560,5562,5,246, + 0,0,5561,5563,3,572,286,0,5562,5561,1,0,0,0,5562,5563,1,0,0,0,5563, + 5564,1,0,0,0,5564,5565,5,80,0,0,5565,5566,5,360,0,0,5566,5567,3, + 1166,583,0,5567,5568,5,116,0,0,5568,5569,3,574,287,0,5569,5658,1, + 0,0,0,5570,5571,5,327,0,0,5571,5573,5,246,0,0,5572,5574,3,572,286, + 0,5573,5572,1,0,0,0,5573,5574,1,0,0,0,5574,5575,1,0,0,0,5575,5576, + 5,80,0,0,5576,5577,5,189,0,0,5577,5578,3,1166,583,0,5578,5579,5, + 116,0,0,5579,5580,3,574,287,0,5580,5658,1,0,0,0,5581,5582,5,327, + 0,0,5582,5584,5,246,0,0,5583,5585,3,572,286,0,5584,5583,1,0,0,0, + 5584,5585,1,0,0,0,5585,5586,1,0,0,0,5586,5587,5,80,0,0,5587,5588, + 5,136,0,0,5588,5589,3,696,348,0,5589,5590,5,116,0,0,5590,5591,3, + 574,287,0,5591,5658,1,0,0,0,5592,5593,5,327,0,0,5593,5595,5,246, + 0,0,5594,5596,3,572,286,0,5595,5594,1,0,0,0,5595,5596,1,0,0,0,5596, + 5597,1,0,0,0,5597,5598,5,80,0,0,5598,5599,5,211,0,0,5599,5600,3, + 672,336,0,5600,5601,5,116,0,0,5601,5602,3,574,287,0,5602,5658,1, + 0,0,0,5603,5604,5,327,0,0,5604,5606,5,246,0,0,5605,5607,3,572,286, + 0,5606,5605,1,0,0,0,5606,5607,1,0,0,0,5607,5608,1,0,0,0,5608,5609, + 5,80,0,0,5609,5610,5,248,0,0,5610,5611,5,274,0,0,5611,5612,3,320, + 160,0,5612,5613,5,116,0,0,5613,5614,3,574,287,0,5614,5658,1,0,0, + 0,5615,5616,5,327,0,0,5616,5618,5,246,0,0,5617,5619,3,572,286,0, + 5618,5617,1,0,0,0,5618,5619,1,0,0,0,5619,5620,1,0,0,0,5620,5621, + 5,80,0,0,5621,5622,5,296,0,0,5622,5623,3,668,334,0,5623,5624,5,116, + 0,0,5624,5625,3,574,287,0,5625,5658,1,0,0,0,5626,5627,5,327,0,0, + 5627,5629,5,246,0,0,5628,5630,3,572,286,0,5629,5628,1,0,0,0,5629, + 5630,1,0,0,0,5630,5631,1,0,0,0,5631,5632,5,80,0,0,5632,5633,5,442, + 0,0,5633,5634,3,664,332,0,5634,5635,5,116,0,0,5635,5636,3,574,287, + 0,5636,5658,1,0,0,0,5637,5638,5,327,0,0,5638,5640,5,246,0,0,5639, + 5641,3,572,286,0,5640,5639,1,0,0,0,5640,5641,1,0,0,0,5641,5642,1, + 0,0,0,5642,5643,5,80,0,0,5643,5644,3,544,272,0,5644,5645,5,116,0, + 0,5645,5646,3,574,287,0,5646,5658,1,0,0,0,5647,5648,5,327,0,0,5648, + 5650,5,246,0,0,5649,5651,3,572,286,0,5650,5649,1,0,0,0,5650,5651, + 1,0,0,0,5651,5652,1,0,0,0,5652,5653,5,80,0,0,5653,5654,3,546,273, + 0,5654,5655,5,116,0,0,5655,5656,3,574,287,0,5656,5658,1,0,0,0,5657, + 5548,1,0,0,0,5657,5559,1,0,0,0,5657,5570,1,0,0,0,5657,5581,1,0,0, + 0,5657,5592,1,0,0,0,5657,5603,1,0,0,0,5657,5615,1,0,0,0,5657,5626, + 1,0,0,0,5657,5637,1,0,0,0,5657,5647,1,0,0,0,5658,571,1,0,0,0,5659, + 5660,5,62,0,0,5660,5661,3,80,40,0,5661,573,1,0,0,0,5662,5665,3,1456, + 728,0,5663,5665,5,78,0,0,5664,5662,1,0,0,0,5664,5663,1,0,0,0,5665, + 575,1,0,0,0,5666,5667,5,61,0,0,5667,5671,3,578,289,0,5668,5669,5, + 265,0,0,5669,5671,3,578,289,0,5670,5666,1,0,0,0,5670,5668,1,0,0, + 0,5671,577,1,0,0,0,5672,5758,3,992,496,0,5673,5674,3,580,290,0,5674, + 5675,3,992,496,0,5675,5758,1,0,0,0,5676,5678,5,268,0,0,5677,5679, + 3,582,291,0,5678,5677,1,0,0,0,5678,5679,1,0,0,0,5679,5680,1,0,0, + 0,5680,5758,3,992,496,0,5681,5683,5,293,0,0,5682,5684,3,582,291, + 0,5683,5682,1,0,0,0,5683,5684,1,0,0,0,5684,5685,1,0,0,0,5685,5758, + 3,992,496,0,5686,5688,5,207,0,0,5687,5689,3,582,291,0,5688,5687, + 1,0,0,0,5688,5689,1,0,0,0,5689,5690,1,0,0,0,5690,5758,3,992,496, + 0,5691,5693,5,249,0,0,5692,5694,3,582,291,0,5693,5692,1,0,0,0,5693, + 5694,1,0,0,0,5694,5695,1,0,0,0,5695,5758,3,992,496,0,5696,5697,5, + 130,0,0,5697,5699,3,1462,731,0,5698,5700,3,582,291,0,5699,5698,1, + 0,0,0,5699,5700,1,0,0,0,5700,5701,1,0,0,0,5701,5702,3,992,496,0, + 5702,5758,1,0,0,0,5703,5704,5,307,0,0,5704,5706,3,1462,731,0,5705, + 5707,3,582,291,0,5706,5705,1,0,0,0,5706,5707,1,0,0,0,5707,5708,1, + 0,0,0,5708,5709,3,992,496,0,5709,5758,1,0,0,0,5710,5712,3,1462,731, + 0,5711,5713,3,582,291,0,5712,5711,1,0,0,0,5712,5713,1,0,0,0,5713, + 5714,1,0,0,0,5714,5715,3,992,496,0,5715,5758,1,0,0,0,5716,5718,5, + 30,0,0,5717,5719,3,582,291,0,5718,5717,1,0,0,0,5718,5719,1,0,0,0, + 5719,5720,1,0,0,0,5720,5758,3,992,496,0,5721,5723,5,210,0,0,5722, + 5724,3,582,291,0,5723,5722,1,0,0,0,5723,5724,1,0,0,0,5724,5725,1, + 0,0,0,5725,5758,3,992,496,0,5726,5727,5,210,0,0,5727,5729,3,1462, + 731,0,5728,5730,3,582,291,0,5729,5728,1,0,0,0,5729,5730,1,0,0,0, + 5730,5731,1,0,0,0,5731,5732,3,992,496,0,5732,5758,1,0,0,0,5733,5734, + 5,210,0,0,5734,5736,5,30,0,0,5735,5737,3,582,291,0,5736,5735,1,0, + 0,0,5736,5737,1,0,0,0,5737,5738,1,0,0,0,5738,5758,3,992,496,0,5739, + 5741,5,144,0,0,5740,5742,3,582,291,0,5741,5740,1,0,0,0,5741,5742, + 1,0,0,0,5742,5743,1,0,0,0,5743,5758,3,992,496,0,5744,5745,5,144, + 0,0,5745,5747,3,1462,731,0,5746,5748,3,582,291,0,5747,5746,1,0,0, + 0,5747,5748,1,0,0,0,5748,5749,1,0,0,0,5749,5750,3,992,496,0,5750, + 5758,1,0,0,0,5751,5752,5,144,0,0,5752,5754,5,30,0,0,5753,5755,3, + 582,291,0,5754,5753,1,0,0,0,5754,5755,1,0,0,0,5755,5756,1,0,0,0, + 5756,5758,3,992,496,0,5757,5672,1,0,0,0,5757,5673,1,0,0,0,5757,5676, + 1,0,0,0,5757,5681,1,0,0,0,5757,5686,1,0,0,0,5757,5691,1,0,0,0,5757, + 5696,1,0,0,0,5757,5703,1,0,0,0,5757,5710,1,0,0,0,5757,5716,1,0,0, + 0,5757,5721,1,0,0,0,5757,5726,1,0,0,0,5757,5733,1,0,0,0,5757,5739, + 1,0,0,0,5757,5744,1,0,0,0,5757,5751,1,0,0,0,5758,579,1,0,0,0,5759, + 5760,7,42,0,0,5760,581,1,0,0,0,5761,5762,3,580,290,0,5762,583,1, + 0,0,0,5763,5764,5,65,0,0,5764,5765,3,588,294,0,5765,5766,5,80,0, + 0,5766,5767,3,598,299,0,5767,5768,5,94,0,0,5768,5770,3,600,300,0, + 5769,5771,3,604,302,0,5770,5769,1,0,0,0,5770,5771,1,0,0,0,5771,585, + 1,0,0,0,5772,5773,5,317,0,0,5773,5774,3,588,294,0,5774,5775,5,80, + 0,0,5775,5776,3,598,299,0,5776,5777,5,64,0,0,5777,5779,3,600,300, + 0,5778,5780,3,124,62,0,5779,5778,1,0,0,0,5779,5780,1,0,0,0,5780, + 5794,1,0,0,0,5781,5782,5,317,0,0,5782,5783,5,65,0,0,5783,5784,5, + 279,0,0,5784,5785,5,62,0,0,5785,5786,3,588,294,0,5786,5787,5,80, + 0,0,5787,5788,3,598,299,0,5788,5789,5,64,0,0,5789,5791,3,600,300, + 0,5790,5792,3,124,62,0,5791,5790,1,0,0,0,5791,5792,1,0,0,0,5792, + 5794,1,0,0,0,5793,5772,1,0,0,0,5793,5781,1,0,0,0,5794,587,1,0,0, + 0,5795,5812,3,594,297,0,5796,5812,5,30,0,0,5797,5798,5,30,0,0,5798, + 5812,5,294,0,0,5799,5800,5,30,0,0,5800,5801,5,2,0,0,5801,5802,3, + 244,122,0,5802,5803,5,3,0,0,5803,5812,1,0,0,0,5804,5805,5,30,0,0, + 5805,5806,5,294,0,0,5806,5807,5,2,0,0,5807,5808,3,244,122,0,5808, + 5809,5,3,0,0,5809,5812,1,0,0,0,5810,5812,3,590,295,0,5811,5795,1, + 0,0,0,5811,5796,1,0,0,0,5811,5797,1,0,0,0,5811,5799,1,0,0,0,5811, + 5804,1,0,0,0,5811,5810,1,0,0,0,5812,589,1,0,0,0,5813,5818,3,592, + 296,0,5814,5815,5,6,0,0,5815,5817,3,592,296,0,5816,5814,1,0,0,0, + 5817,5820,1,0,0,0,5818,5816,1,0,0,0,5818,5819,1,0,0,0,5819,591,1, + 0,0,0,5820,5818,1,0,0,0,5821,5822,7,43,0,0,5822,593,1,0,0,0,5823, + 5828,3,596,298,0,5824,5825,5,6,0,0,5825,5827,3,596,298,0,5826,5824, + 1,0,0,0,5827,5830,1,0,0,0,5828,5826,1,0,0,0,5828,5829,1,0,0,0,5829, + 595,1,0,0,0,5830,5828,1,0,0,0,5831,5833,5,88,0,0,5832,5834,3,242, + 121,0,5833,5832,1,0,0,0,5833,5834,1,0,0,0,5834,5848,1,0,0,0,5835, + 5837,5,86,0,0,5836,5838,3,242,121,0,5837,5836,1,0,0,0,5837,5838, + 1,0,0,0,5838,5848,1,0,0,0,5839,5841,5,46,0,0,5840,5842,3,242,121, + 0,5841,5840,1,0,0,0,5841,5842,1,0,0,0,5842,5848,1,0,0,0,5843,5845, + 3,1472,736,0,5844,5846,3,242,121,0,5845,5844,1,0,0,0,5845,5846,1, + 0,0,0,5846,5848,1,0,0,0,5847,5831,1,0,0,0,5847,5835,1,0,0,0,5847, + 5839,1,0,0,0,5847,5843,1,0,0,0,5848,597,1,0,0,0,5849,5908,3,1388, + 694,0,5850,5851,5,92,0,0,5851,5908,3,1390,695,0,5852,5853,5,328, + 0,0,5853,5908,3,1388,694,0,5854,5855,5,63,0,0,5855,5856,5,174,0, + 0,5856,5857,5,381,0,0,5857,5908,3,1414,707,0,5858,5859,5,63,0,0, + 5859,5860,5,331,0,0,5860,5908,3,1414,707,0,5861,5862,5,211,0,0,5862, + 5908,3,670,335,0,5863,5864,5,296,0,0,5864,5908,3,666,333,0,5865, + 5866,5,442,0,0,5866,5908,3,662,331,0,5867,5868,5,175,0,0,5868,5908, + 3,1394,697,0,5869,5870,5,189,0,0,5870,5908,3,550,275,0,5871,5872, + 5,247,0,0,5872,5908,3,1414,707,0,5873,5874,5,248,0,0,5874,5875,5, + 274,0,0,5875,5908,3,322,161,0,5876,5877,5,323,0,0,5877,5908,3,1392, + 696,0,5878,5879,5,351,0,0,5879,5908,3,1412,706,0,5880,5881,5,360, + 0,0,5881,5908,3,550,275,0,5882,5883,5,30,0,0,5883,5884,5,350,0,0, + 5884,5885,5,68,0,0,5885,5886,5,323,0,0,5886,5908,3,1392,696,0,5887, + 5888,5,30,0,0,5888,5889,5,329,0,0,5889,5890,5,68,0,0,5890,5891,5, + 323,0,0,5891,5908,3,1392,696,0,5892,5893,5,30,0,0,5893,5894,5,212, + 0,0,5894,5895,5,68,0,0,5895,5896,5,323,0,0,5896,5908,3,1392,696, + 0,5897,5898,5,30,0,0,5898,5899,5,457,0,0,5899,5900,5,68,0,0,5900, + 5901,5,323,0,0,5901,5908,3,1392,696,0,5902,5903,5,30,0,0,5903,5904, + 5,455,0,0,5904,5905,5,68,0,0,5905,5906,5,323,0,0,5906,5908,3,1392, + 696,0,5907,5849,1,0,0,0,5907,5850,1,0,0,0,5907,5852,1,0,0,0,5907, + 5854,1,0,0,0,5907,5858,1,0,0,0,5907,5861,1,0,0,0,5907,5863,1,0,0, + 0,5907,5865,1,0,0,0,5907,5867,1,0,0,0,5907,5869,1,0,0,0,5907,5871, + 1,0,0,0,5907,5873,1,0,0,0,5907,5876,1,0,0,0,5907,5878,1,0,0,0,5907, + 5880,1,0,0,0,5907,5882,1,0,0,0,5907,5887,1,0,0,0,5907,5892,1,0,0, + 0,5907,5897,1,0,0,0,5907,5902,1,0,0,0,5908,599,1,0,0,0,5909,5914, + 3,602,301,0,5910,5911,5,6,0,0,5911,5913,3,602,301,0,5912,5910,1, + 0,0,0,5913,5916,1,0,0,0,5914,5912,1,0,0,0,5914,5915,1,0,0,0,5915, + 601,1,0,0,0,5916,5914,1,0,0,0,5917,5921,3,1468,734,0,5918,5919,5, + 66,0,0,5919,5921,3,1468,734,0,5920,5917,1,0,0,0,5920,5918,1,0,0, + 0,5921,603,1,0,0,0,5922,5923,5,105,0,0,5923,5924,5,65,0,0,5924,5925, + 5,279,0,0,5925,605,1,0,0,0,5926,5927,5,65,0,0,5927,5928,3,594,297, + 0,5928,5929,5,94,0,0,5929,5931,3,1470,735,0,5930,5932,3,610,305, + 0,5931,5930,1,0,0,0,5931,5932,1,0,0,0,5932,5934,1,0,0,0,5933,5935, + 3,612,306,0,5934,5933,1,0,0,0,5934,5935,1,0,0,0,5935,607,1,0,0,0, + 5936,5937,5,317,0,0,5937,5938,3,594,297,0,5938,5939,5,64,0,0,5939, + 5941,3,1470,735,0,5940,5942,3,612,306,0,5941,5940,1,0,0,0,5941,5942, + 1,0,0,0,5942,5944,1,0,0,0,5943,5945,3,124,62,0,5944,5943,1,0,0,0, + 5944,5945,1,0,0,0,5945,5960,1,0,0,0,5946,5947,5,317,0,0,5947,5948, + 5,134,0,0,5948,5949,5,279,0,0,5949,5950,5,62,0,0,5950,5951,3,594, + 297,0,5951,5952,5,64,0,0,5952,5954,3,1470,735,0,5953,5955,3,612, + 306,0,5954,5953,1,0,0,0,5954,5955,1,0,0,0,5955,5957,1,0,0,0,5956, + 5958,3,124,62,0,5957,5956,1,0,0,0,5957,5958,1,0,0,0,5958,5960,1, + 0,0,0,5959,5936,1,0,0,0,5959,5946,1,0,0,0,5960,609,1,0,0,0,5961, + 5962,5,105,0,0,5962,5963,5,134,0,0,5963,5964,5,279,0,0,5964,611, + 1,0,0,0,5965,5966,5,214,0,0,5966,5967,5,147,0,0,5967,5968,3,1468, + 734,0,5968,613,1,0,0,0,5969,5970,5,138,0,0,5970,5971,5,53,0,0,5971, + 5972,5,294,0,0,5972,5973,3,616,308,0,5973,5974,3,620,310,0,5974, + 615,1,0,0,0,5975,5977,3,618,309,0,5976,5975,1,0,0,0,5977,5980,1, + 0,0,0,5978,5976,1,0,0,0,5978,5979,1,0,0,0,5979,617,1,0,0,0,5980, + 5978,1,0,0,0,5981,5982,5,68,0,0,5982,5983,5,323,0,0,5983,5991,3, + 1392,696,0,5984,5985,5,62,0,0,5985,5986,5,318,0,0,5986,5991,3,1470, + 735,0,5987,5988,5,62,0,0,5988,5989,5,99,0,0,5989,5991,3,1470,735, + 0,5990,5981,1,0,0,0,5990,5984,1,0,0,0,5990,5987,1,0,0,0,5991,619, + 1,0,0,0,5992,5993,5,65,0,0,5993,5994,3,588,294,0,5994,5995,5,80, + 0,0,5995,5996,3,622,311,0,5996,5997,5,94,0,0,5997,5999,3,600,300, + 0,5998,6000,3,604,302,0,5999,5998,1,0,0,0,5999,6000,1,0,0,0,6000, + 6023,1,0,0,0,6001,6002,5,317,0,0,6002,6003,3,588,294,0,6003,6004, + 5,80,0,0,6004,6005,3,622,311,0,6005,6006,5,64,0,0,6006,6008,3,600, + 300,0,6007,6009,3,124,62,0,6008,6007,1,0,0,0,6008,6009,1,0,0,0,6009, + 6023,1,0,0,0,6010,6011,5,317,0,0,6011,6012,5,65,0,0,6012,6013,5, + 279,0,0,6013,6014,5,62,0,0,6014,6015,3,588,294,0,6015,6016,5,80, + 0,0,6016,6017,3,622,311,0,6017,6018,5,64,0,0,6018,6020,3,600,300, + 0,6019,6021,3,124,62,0,6020,6019,1,0,0,0,6020,6021,1,0,0,0,6021, + 6023,1,0,0,0,6022,5992,1,0,0,0,6022,6001,1,0,0,0,6022,6010,1,0,0, + 0,6023,621,1,0,0,0,6024,6025,7,44,0,0,6025,623,1,0,0,0,6026,6028, + 5,46,0,0,6027,6029,3,626,313,0,6028,6027,1,0,0,0,6028,6029,1,0,0, + 0,6029,6030,1,0,0,0,6030,6032,5,226,0,0,6031,6033,3,628,314,0,6032, + 6031,1,0,0,0,6032,6033,1,0,0,0,6033,6035,1,0,0,0,6034,6036,3,514, + 257,0,6035,6034,1,0,0,0,6035,6036,1,0,0,0,6036,6038,1,0,0,0,6037, + 6039,3,630,315,0,6038,6037,1,0,0,0,6038,6039,1,0,0,0,6039,6040,1, + 0,0,0,6040,6041,5,80,0,0,6041,6043,3,1116,558,0,6042,6044,3,632, + 316,0,6043,6042,1,0,0,0,6043,6044,1,0,0,0,6044,6045,1,0,0,0,6045, + 6046,5,2,0,0,6046,6047,3,634,317,0,6047,6049,5,3,0,0,6048,6050,3, + 640,320,0,6049,6048,1,0,0,0,6049,6050,1,0,0,0,6050,6052,1,0,0,0, + 6051,6053,3,222,111,0,6052,6051,1,0,0,0,6052,6053,1,0,0,0,6053,6055, + 1,0,0,0,6054,6056,3,134,67,0,6055,6054,1,0,0,0,6055,6056,1,0,0,0, + 6056,6058,1,0,0,0,6057,6059,3,280,140,0,6058,6057,1,0,0,0,6058,6059, + 1,0,0,0,6059,6061,1,0,0,0,6060,6062,3,1142,571,0,6061,6060,1,0,0, + 0,6061,6062,1,0,0,0,6062,625,1,0,0,0,6063,6064,5,98,0,0,6064,627, + 1,0,0,0,6065,6066,5,109,0,0,6066,629,1,0,0,0,6067,6068,3,1434,717, + 0,6068,631,1,0,0,0,6069,6070,5,100,0,0,6070,6071,3,1434,717,0,6071, + 633,1,0,0,0,6072,6077,3,638,319,0,6073,6074,5,6,0,0,6074,6076,3, + 638,319,0,6075,6073,1,0,0,0,6076,6079,1,0,0,0,6077,6075,1,0,0,0, + 6077,6078,1,0,0,0,6078,635,1,0,0,0,6079,6077,1,0,0,0,6080,6082,3, + 644,322,0,6081,6080,1,0,0,0,6081,6082,1,0,0,0,6082,6084,1,0,0,0, + 6083,6085,3,646,323,0,6084,6083,1,0,0,0,6084,6085,1,0,0,0,6085,6087, + 1,0,0,0,6086,6088,3,648,324,0,6087,6086,1,0,0,0,6087,6088,1,0,0, + 0,6088,6090,1,0,0,0,6089,6091,3,650,325,0,6090,6089,1,0,0,0,6090, + 6091,1,0,0,0,6091,6104,1,0,0,0,6092,6094,3,644,322,0,6093,6092,1, + 0,0,0,6093,6094,1,0,0,0,6094,6095,1,0,0,0,6095,6096,3,556,278,0, + 6096,6098,3,132,66,0,6097,6099,3,648,324,0,6098,6097,1,0,0,0,6098, + 6099,1,0,0,0,6099,6101,1,0,0,0,6100,6102,3,650,325,0,6101,6100,1, + 0,0,0,6101,6102,1,0,0,0,6102,6104,1,0,0,0,6103,6081,1,0,0,0,6103, + 6093,1,0,0,0,6104,637,1,0,0,0,6105,6106,3,1430,715,0,6106,6107,3, + 636,318,0,6107,6117,1,0,0,0,6108,6109,3,1260,630,0,6109,6110,3,636, + 318,0,6110,6117,1,0,0,0,6111,6112,5,2,0,0,6112,6113,3,1210,605,0, + 6113,6114,5,3,0,0,6114,6115,3,636,318,0,6115,6117,1,0,0,0,6116,6105, + 1,0,0,0,6116,6108,1,0,0,0,6116,6111,1,0,0,0,6117,639,1,0,0,0,6118, + 6119,5,441,0,0,6119,6120,5,2,0,0,6120,6121,3,642,321,0,6121,6122, + 5,3,0,0,6122,641,1,0,0,0,6123,6128,3,638,319,0,6124,6125,5,6,0,0, + 6125,6127,3,638,319,0,6126,6124,1,0,0,0,6127,6130,1,0,0,0,6128,6126, + 1,0,0,0,6128,6129,1,0,0,0,6129,643,1,0,0,0,6130,6128,1,0,0,0,6131, + 6132,5,43,0,0,6132,6133,3,556,278,0,6133,645,1,0,0,0,6134,6135,3, + 556,278,0,6135,647,1,0,0,0,6136,6137,7,45,0,0,6137,649,1,0,0,0,6138, + 6139,5,273,0,0,6139,6143,5,207,0,0,6140,6141,5,273,0,0,6141,6143, + 5,249,0,0,6142,6138,1,0,0,0,6142,6140,1,0,0,0,6143,651,1,0,0,0,6144, + 6146,5,46,0,0,6145,6147,3,656,328,0,6146,6145,1,0,0,0,6146,6147, + 1,0,0,0,6147,6152,1,0,0,0,6148,6149,5,211,0,0,6149,6153,3,1440,720, + 0,6150,6151,5,296,0,0,6151,6153,3,1428,714,0,6152,6148,1,0,0,0,6152, + 6150,1,0,0,0,6153,6154,1,0,0,0,6154,6164,3,674,337,0,6155,6162,5, + 316,0,0,6156,6163,3,684,342,0,6157,6158,5,92,0,0,6158,6159,5,2,0, + 0,6159,6160,3,712,356,0,6160,6161,5,3,0,0,6161,6163,1,0,0,0,6162, + 6156,1,0,0,0,6162,6157,1,0,0,0,6163,6165,1,0,0,0,6164,6155,1,0,0, + 0,6164,6165,1,0,0,0,6165,6166,1,0,0,0,6166,6169,3,700,350,0,6167, + 6168,5,105,0,0,6168,6170,3,654,327,0,6169,6167,1,0,0,0,6169,6170, + 1,0,0,0,6170,653,1,0,0,0,6171,6172,5,2,0,0,6172,6177,3,1472,736, + 0,6173,6174,5,6,0,0,6174,6176,3,1472,736,0,6175,6173,1,0,0,0,6176, + 6179,1,0,0,0,6177,6175,1,0,0,0,6177,6178,1,0,0,0,6178,6180,1,0,0, + 0,6179,6177,1,0,0,0,6180,6181,5,3,0,0,6181,655,1,0,0,0,6182,6183, + 5,82,0,0,6183,6184,5,311,0,0,6184,657,1,0,0,0,6185,6187,5,2,0,0, + 6186,6188,3,660,330,0,6187,6186,1,0,0,0,6187,6188,1,0,0,0,6188,6189, + 1,0,0,0,6189,6190,5,3,0,0,6190,659,1,0,0,0,6191,6196,3,678,339,0, + 6192,6193,5,6,0,0,6193,6195,3,678,339,0,6194,6192,1,0,0,0,6195,6198, + 1,0,0,0,6196,6194,1,0,0,0,6196,6197,1,0,0,0,6197,661,1,0,0,0,6198, + 6196,1,0,0,0,6199,6204,3,664,332,0,6200,6201,5,6,0,0,6201,6203,3, + 664,332,0,6202,6200,1,0,0,0,6203,6206,1,0,0,0,6204,6202,1,0,0,0, + 6204,6205,1,0,0,0,6205,663,1,0,0,0,6206,6204,1,0,0,0,6207,6208,3, + 1424,712,0,6208,6209,3,658,329,0,6209,6216,1,0,0,0,6210,6216,3,1498, + 749,0,6211,6213,3,1472,736,0,6212,6214,3,1378,689,0,6213,6212,1, + 0,0,0,6213,6214,1,0,0,0,6214,6216,1,0,0,0,6215,6207,1,0,0,0,6215, + 6210,1,0,0,0,6215,6211,1,0,0,0,6216,665,1,0,0,0,6217,6222,3,668, + 334,0,6218,6219,5,6,0,0,6219,6221,3,668,334,0,6220,6218,1,0,0,0, + 6221,6224,1,0,0,0,6222,6220,1,0,0,0,6222,6223,1,0,0,0,6223,667,1, + 0,0,0,6224,6222,1,0,0,0,6225,6226,3,1426,713,0,6226,6227,3,658,329, + 0,6227,6234,1,0,0,0,6228,6234,3,1498,749,0,6229,6231,3,1472,736, + 0,6230,6232,3,1378,689,0,6231,6230,1,0,0,0,6231,6232,1,0,0,0,6232, + 6234,1,0,0,0,6233,6225,1,0,0,0,6233,6228,1,0,0,0,6233,6229,1,0,0, + 0,6234,669,1,0,0,0,6235,6240,3,672,336,0,6236,6237,5,6,0,0,6237, + 6239,3,672,336,0,6238,6236,1,0,0,0,6239,6242,1,0,0,0,6240,6238,1, + 0,0,0,6240,6241,1,0,0,0,6241,671,1,0,0,0,6242,6240,1,0,0,0,6243, + 6244,3,1442,721,0,6244,6245,3,658,329,0,6245,6252,1,0,0,0,6246,6252, + 3,1498,749,0,6247,6249,3,1472,736,0,6248,6250,3,1378,689,0,6249, + 6248,1,0,0,0,6249,6250,1,0,0,0,6250,6252,1,0,0,0,6251,6243,1,0,0, + 0,6251,6246,1,0,0,0,6251,6247,1,0,0,0,6252,673,1,0,0,0,6253,6255, + 5,2,0,0,6254,6256,3,676,338,0,6255,6254,1,0,0,0,6255,6256,1,0,0, + 0,6256,6257,1,0,0,0,6257,6258,5,3,0,0,6258,675,1,0,0,0,6259,6264, + 3,688,344,0,6260,6261,5,6,0,0,6261,6263,3,688,344,0,6262,6260,1, + 0,0,0,6263,6266,1,0,0,0,6264,6262,1,0,0,0,6264,6265,1,0,0,0,6265, + 677,1,0,0,0,6266,6264,1,0,0,0,6267,6269,3,680,340,0,6268,6270,3, + 682,341,0,6269,6268,1,0,0,0,6269,6270,1,0,0,0,6270,6271,1,0,0,0, + 6271,6272,3,686,343,0,6272,6281,1,0,0,0,6273,6275,3,682,341,0,6274, + 6276,3,680,340,0,6275,6274,1,0,0,0,6275,6276,1,0,0,0,6276,6277,1, + 0,0,0,6277,6278,3,686,343,0,6278,6281,1,0,0,0,6279,6281,3,686,343, + 0,6280,6267,1,0,0,0,6280,6273,1,0,0,0,6280,6279,1,0,0,0,6281,679, + 1,0,0,0,6282,6284,5,68,0,0,6283,6285,5,453,0,0,6284,6283,1,0,0,0, + 6284,6285,1,0,0,0,6285,6290,1,0,0,0,6286,6290,5,453,0,0,6287,6290, + 5,400,0,0,6288,6290,5,101,0,0,6289,6282,1,0,0,0,6289,6286,1,0,0, + 0,6289,6287,1,0,0,0,6289,6288,1,0,0,0,6290,681,1,0,0,0,6291,6292, + 3,1480,740,0,6292,683,1,0,0,0,6293,6294,3,686,343,0,6294,685,1,0, + 0,0,6295,6308,3,1166,583,0,6296,6297,3,1480,740,0,6297,6298,3,558, + 279,0,6298,6299,5,27,0,0,6299,6300,5,360,0,0,6300,6308,1,0,0,0,6301, + 6302,5,415,0,0,6302,6303,3,1480,740,0,6303,6304,3,558,279,0,6304, + 6305,5,27,0,0,6305,6306,5,360,0,0,6306,6308,1,0,0,0,6307,6295,1, + 0,0,0,6307,6296,1,0,0,0,6307,6301,1,0,0,0,6308,687,1,0,0,0,6309, + 6312,3,678,339,0,6310,6311,7,46,0,0,6311,6313,3,1210,605,0,6312, + 6310,1,0,0,0,6312,6313,1,0,0,0,6313,689,1,0,0,0,6314,6315,3,678, + 339,0,6315,691,1,0,0,0,6316,6327,5,2,0,0,6317,6328,5,9,0,0,6318, + 6328,3,694,347,0,6319,6320,5,83,0,0,6320,6321,5,147,0,0,6321,6328, + 3,694,347,0,6322,6323,3,694,347,0,6323,6324,5,83,0,0,6324,6325,5, + 147,0,0,6325,6326,3,694,347,0,6326,6328,1,0,0,0,6327,6317,1,0,0, + 0,6327,6318,1,0,0,0,6327,6319,1,0,0,0,6327,6322,1,0,0,0,6328,6329, + 1,0,0,0,6329,6330,5,3,0,0,6330,693,1,0,0,0,6331,6336,3,690,345,0, + 6332,6333,5,6,0,0,6333,6335,3,690,345,0,6334,6332,1,0,0,0,6335,6338, + 1,0,0,0,6336,6334,1,0,0,0,6336,6337,1,0,0,0,6337,695,1,0,0,0,6338, + 6336,1,0,0,0,6339,6340,3,1442,721,0,6340,6341,3,692,346,0,6341,697, + 1,0,0,0,6342,6347,3,696,348,0,6343,6344,5,6,0,0,6344,6346,3,696, + 348,0,6345,6343,1,0,0,0,6346,6349,1,0,0,0,6347,6345,1,0,0,0,6347, + 6348,1,0,0,0,6348,699,1,0,0,0,6349,6347,1,0,0,0,6350,6352,3,704, + 352,0,6351,6350,1,0,0,0,6352,6353,1,0,0,0,6353,6351,1,0,0,0,6353, + 6354,1,0,0,0,6354,701,1,0,0,0,6355,6356,5,149,0,0,6356,6357,5,80, + 0,0,6357,6358,5,78,0,0,6358,6391,5,458,0,0,6359,6360,5,316,0,0,6360, + 6361,5,78,0,0,6361,6362,5,80,0,0,6362,6363,5,78,0,0,6363,6391,5, + 458,0,0,6364,6391,5,346,0,0,6365,6391,5,222,0,0,6366,6391,5,338, + 0,0,6367,6391,5,377,0,0,6368,6369,5,205,0,0,6369,6370,5,327,0,0, + 6370,6391,5,181,0,0,6371,6372,5,205,0,0,6372,6373,5,327,0,0,6373, + 6391,5,243,0,0,6374,6375,5,327,0,0,6375,6391,5,181,0,0,6376,6377, + 5,327,0,0,6377,6391,5,243,0,0,6378,6391,5,250,0,0,6379,6380,5,77, + 0,0,6380,6391,5,250,0,0,6381,6382,5,170,0,0,6382,6391,3,320,160, + 0,6383,6384,5,320,0,0,6384,6391,3,320,160,0,6385,6386,5,459,0,0, + 6386,6391,3,556,278,0,6387,6391,3,90,45,0,6388,6389,5,460,0,0,6389, + 6391,3,1472,736,0,6390,6355,1,0,0,0,6390,6359,1,0,0,0,6390,6364, + 1,0,0,0,6390,6365,1,0,0,0,6390,6366,1,0,0,0,6390,6367,1,0,0,0,6390, + 6368,1,0,0,0,6390,6371,1,0,0,0,6390,6374,1,0,0,0,6390,6376,1,0,0, + 0,6390,6378,1,0,0,0,6390,6379,1,0,0,0,6390,6381,1,0,0,0,6390,6383, + 1,0,0,0,6390,6385,1,0,0,0,6390,6387,1,0,0,0,6390,6388,1,0,0,0,6391, + 703,1,0,0,0,6392,6393,5,36,0,0,6393,6394,3,1456,728,0,6394,6395, + 5,6,0,0,6395,6396,3,1456,728,0,6396,6418,1,0,0,0,6397,6398,5,247, + 0,0,6398,6418,3,80,40,0,6399,6400,5,443,0,0,6400,6418,3,706,353, + 0,6401,6418,5,104,0,0,6402,6403,5,333,0,0,6403,6410,3,1472,736,0, + 6404,6405,5,94,0,0,6405,6411,3,1472,736,0,6406,6407,5,10,0,0,6407, + 6411,3,1472,736,0,6408,6409,5,64,0,0,6409,6411,5,434,0,0,6410,6404, + 1,0,0,0,6410,6406,1,0,0,0,6410,6408,1,0,0,0,6411,6418,1,0,0,0,6412, + 6413,5,36,0,0,6413,6418,3,1472,736,0,6414,6418,3,6,3,0,6415,6418, + 3,702,351,0,6416,6418,3,1472,736,0,6417,6392,1,0,0,0,6417,6397,1, + 0,0,0,6417,6399,1,0,0,0,6417,6401,1,0,0,0,6417,6402,1,0,0,0,6417, + 6412,1,0,0,0,6417,6414,1,0,0,0,6417,6415,1,0,0,0,6417,6416,1,0,0, + 0,6418,705,1,0,0,0,6419,6420,5,62,0,0,6420,6421,5,360,0,0,6421,6428, + 3,1166,583,0,6422,6423,5,6,0,0,6423,6424,5,62,0,0,6424,6425,5,360, + 0,0,6425,6427,3,1166,583,0,6426,6422,1,0,0,0,6427,6430,1,0,0,0,6428, + 6426,1,0,0,0,6428,6429,1,0,0,0,6429,707,1,0,0,0,6430,6428,1,0,0, + 0,6431,6432,5,105,0,0,6432,6433,3,494,247,0,6433,709,1,0,0,0,6434, + 6435,3,1430,715,0,6435,6436,3,686,343,0,6436,711,1,0,0,0,6437,6442, + 3,710,355,0,6438,6439,5,6,0,0,6439,6441,3,710,355,0,6440,6438,1, + 0,0,0,6441,6444,1,0,0,0,6442,6440,1,0,0,0,6442,6443,1,0,0,0,6443, + 713,1,0,0,0,6444,6442,1,0,0,0,6445,6446,5,138,0,0,6446,6447,3,716, + 358,0,6447,6449,3,718,359,0,6448,6450,3,720,360,0,6449,6448,1,0, + 0,0,6449,6450,1,0,0,0,6450,715,1,0,0,0,6451,6452,5,211,0,0,6452, + 6458,3,672,336,0,6453,6454,5,296,0,0,6454,6458,3,668,334,0,6455, + 6456,5,442,0,0,6456,6458,3,664,332,0,6457,6451,1,0,0,0,6457,6453, + 1,0,0,0,6457,6455,1,0,0,0,6458,717,1,0,0,0,6459,6461,3,702,351,0, + 6460,6459,1,0,0,0,6461,6462,1,0,0,0,6462,6460,1,0,0,0,6462,6463, + 1,0,0,0,6463,719,1,0,0,0,6464,6465,5,315,0,0,6465,721,1,0,0,0,6466, + 6467,5,191,0,0,6467,6469,5,211,0,0,6468,6470,3,746,373,0,6469,6468, + 1,0,0,0,6469,6470,1,0,0,0,6470,6471,1,0,0,0,6471,6473,3,670,335, + 0,6472,6474,3,124,62,0,6473,6472,1,0,0,0,6473,6474,1,0,0,0,6474, + 6494,1,0,0,0,6475,6476,5,191,0,0,6476,6478,5,296,0,0,6477,6479,3, + 746,373,0,6478,6477,1,0,0,0,6478,6479,1,0,0,0,6479,6480,1,0,0,0, + 6480,6482,3,666,333,0,6481,6483,3,124,62,0,6482,6481,1,0,0,0,6482, + 6483,1,0,0,0,6483,6494,1,0,0,0,6484,6485,5,191,0,0,6485,6487,5,442, + 0,0,6486,6488,3,746,373,0,6487,6486,1,0,0,0,6487,6488,1,0,0,0,6488, + 6489,1,0,0,0,6489,6491,3,662,331,0,6490,6492,3,124,62,0,6491,6490, + 1,0,0,0,6491,6492,1,0,0,0,6492,6494,1,0,0,0,6493,6466,1,0,0,0,6493, + 6475,1,0,0,0,6493,6484,1,0,0,0,6494,723,1,0,0,0,6495,6496,5,191, + 0,0,6496,6498,5,136,0,0,6497,6499,3,746,373,0,6498,6497,1,0,0,0, + 6498,6499,1,0,0,0,6499,6500,1,0,0,0,6500,6502,3,698,349,0,6501,6503, + 3,124,62,0,6502,6501,1,0,0,0,6502,6503,1,0,0,0,6503,725,1,0,0,0, + 6504,6505,5,191,0,0,6505,6507,5,278,0,0,6506,6508,3,746,373,0,6507, + 6506,1,0,0,0,6507,6508,1,0,0,0,6508,6509,1,0,0,0,6509,6511,3,732, + 366,0,6510,6512,3,124,62,0,6511,6510,1,0,0,0,6511,6512,1,0,0,0,6512, + 727,1,0,0,0,6513,6514,5,2,0,0,6514,6515,3,1166,583,0,6515,6516,5, + 3,0,0,6516,6536,1,0,0,0,6517,6518,5,2,0,0,6518,6519,3,1166,583,0, + 6519,6520,5,6,0,0,6520,6521,3,1166,583,0,6521,6522,5,3,0,0,6522, + 6536,1,0,0,0,6523,6524,5,2,0,0,6524,6525,5,407,0,0,6525,6526,5,6, + 0,0,6526,6527,3,1166,583,0,6527,6528,5,3,0,0,6528,6536,1,0,0,0,6529, + 6530,5,2,0,0,6530,6531,3,1166,583,0,6531,6532,5,6,0,0,6532,6533, + 5,407,0,0,6533,6534,5,3,0,0,6534,6536,1,0,0,0,6535,6513,1,0,0,0, + 6535,6517,1,0,0,0,6535,6523,1,0,0,0,6535,6529,1,0,0,0,6536,729,1, + 0,0,0,6537,6538,3,1472,736,0,6538,6539,5,11,0,0,6539,6541,1,0,0, + 0,6540,6537,1,0,0,0,6541,6544,1,0,0,0,6542,6540,1,0,0,0,6542,6543, + 1,0,0,0,6543,6545,1,0,0,0,6544,6542,1,0,0,0,6545,6546,3,1316,658, + 0,6546,731,1,0,0,0,6547,6552,3,734,367,0,6548,6549,5,6,0,0,6549, + 6551,3,734,367,0,6550,6548,1,0,0,0,6551,6554,1,0,0,0,6552,6550,1, + 0,0,0,6552,6553,1,0,0,0,6553,733,1,0,0,0,6554,6552,1,0,0,0,6555, + 6556,3,730,365,0,6556,6557,3,728,364,0,6557,735,1,0,0,0,6558,6559, + 5,57,0,0,6559,6560,3,738,369,0,6560,737,1,0,0,0,6561,6563,3,740, + 370,0,6562,6561,1,0,0,0,6563,6564,1,0,0,0,6564,6562,1,0,0,0,6564, + 6565,1,0,0,0,6565,739,1,0,0,0,6566,6570,3,1456,728,0,6567,6568,5, + 247,0,0,6568,6570,3,80,40,0,6569,6566,1,0,0,0,6569,6567,1,0,0,0, + 6570,741,1,0,0,0,6571,6572,5,46,0,0,6572,6573,5,41,0,0,6573,6574, + 5,2,0,0,6574,6575,3,1166,583,0,6575,6576,5,36,0,0,6576,6577,3,1166, + 583,0,6577,6578,5,3,0,0,6578,6579,5,105,0,0,6579,6580,5,211,0,0, + 6580,6582,3,672,336,0,6581,6583,3,744,372,0,6582,6581,1,0,0,0,6582, + 6583,1,0,0,0,6583,6609,1,0,0,0,6584,6585,5,46,0,0,6585,6586,5,41, + 0,0,6586,6587,5,2,0,0,6587,6588,3,1166,583,0,6588,6589,5,36,0,0, + 6589,6590,3,1166,583,0,6590,6591,5,3,0,0,6591,6592,5,379,0,0,6592, + 6594,5,211,0,0,6593,6595,3,744,372,0,6594,6593,1,0,0,0,6594,6595, + 1,0,0,0,6595,6609,1,0,0,0,6596,6597,5,46,0,0,6597,6598,5,41,0,0, + 6598,6599,5,2,0,0,6599,6600,3,1166,583,0,6600,6601,5,36,0,0,6601, + 6602,3,1166,583,0,6602,6603,5,3,0,0,6603,6604,5,105,0,0,6604,6606, + 5,400,0,0,6605,6607,3,744,372,0,6606,6605,1,0,0,0,6606,6607,1,0, + 0,0,6607,6609,1,0,0,0,6608,6571,1,0,0,0,6608,6584,1,0,0,0,6608,6596, + 1,0,0,0,6609,743,1,0,0,0,6610,6611,5,36,0,0,6611,6615,5,223,0,0, + 6612,6613,5,36,0,0,6613,6615,5,141,0,0,6614,6610,1,0,0,0,6614,6612, + 1,0,0,0,6615,745,1,0,0,0,6616,6617,5,220,0,0,6617,6618,5,396,0,0, + 6618,747,1,0,0,0,6619,6621,5,46,0,0,6620,6622,3,656,328,0,6621,6620, + 1,0,0,0,6621,6622,1,0,0,0,6622,6623,1,0,0,0,6623,6624,5,443,0,0, + 6624,6625,5,62,0,0,6625,6626,3,1166,583,0,6626,6627,5,247,0,0,6627, + 6628,3,1434,717,0,6628,6629,5,2,0,0,6629,6630,3,750,375,0,6630,6631, + 5,3,0,0,6631,749,1,0,0,0,6632,6633,5,64,0,0,6633,6634,5,461,0,0, + 6634,6635,5,105,0,0,6635,6636,5,211,0,0,6636,6637,3,672,336,0,6637, + 6638,5,6,0,0,6638,6639,5,94,0,0,6639,6640,5,461,0,0,6640,6641,5, + 105,0,0,6641,6642,5,211,0,0,6642,6643,3,672,336,0,6643,6667,1,0, + 0,0,6644,6645,5,94,0,0,6645,6646,5,461,0,0,6646,6647,5,105,0,0,6647, + 6648,5,211,0,0,6648,6649,3,672,336,0,6649,6650,5,6,0,0,6650,6651, + 5,64,0,0,6651,6652,5,461,0,0,6652,6653,5,105,0,0,6653,6654,5,211, + 0,0,6654,6655,3,672,336,0,6655,6667,1,0,0,0,6656,6657,5,64,0,0,6657, + 6658,5,461,0,0,6658,6659,5,105,0,0,6659,6660,5,211,0,0,6660,6667, + 3,672,336,0,6661,6662,5,94,0,0,6662,6663,5,461,0,0,6663,6664,5,105, + 0,0,6664,6665,5,211,0,0,6665,6667,3,672,336,0,6666,6632,1,0,0,0, + 6666,6644,1,0,0,0,6666,6656,1,0,0,0,6666,6661,1,0,0,0,6667,751,1, + 0,0,0,6668,6669,5,306,0,0,6669,6685,3,754,377,0,6670,6671,5,306, + 0,0,6671,6685,3,756,378,0,6672,6673,5,306,0,0,6673,6674,5,2,0,0, + 6674,6675,3,758,379,0,6675,6676,5,3,0,0,6676,6677,3,754,377,0,6677, + 6685,1,0,0,0,6678,6679,5,306,0,0,6679,6680,5,2,0,0,6680,6681,3,758, + 379,0,6681,6682,5,3,0,0,6682,6683,3,756,378,0,6683,6685,1,0,0,0, + 6684,6668,1,0,0,0,6684,6670,1,0,0,0,6684,6672,1,0,0,0,6684,6678, + 1,0,0,0,6685,753,1,0,0,0,6686,6688,5,226,0,0,6687,6689,3,628,314, + 0,6688,6687,1,0,0,0,6688,6689,1,0,0,0,6689,6690,1,0,0,0,6690,6697, + 3,1410,705,0,6691,6693,5,92,0,0,6692,6694,3,628,314,0,6693,6692, + 1,0,0,0,6693,6694,1,0,0,0,6694,6695,1,0,0,0,6695,6697,3,1404,702, + 0,6696,6686,1,0,0,0,6696,6691,1,0,0,0,6697,755,1,0,0,0,6698,6700, + 5,323,0,0,6699,6701,3,628,314,0,6700,6699,1,0,0,0,6700,6701,1,0, + 0,0,6701,6702,1,0,0,0,6702,6714,3,1420,710,0,6703,6705,5,349,0,0, + 6704,6706,3,628,314,0,6705,6704,1,0,0,0,6705,6706,1,0,0,0,6706,6707, + 1,0,0,0,6707,6714,3,1434,717,0,6708,6710,5,175,0,0,6709,6711,3,628, + 314,0,6710,6709,1,0,0,0,6710,6711,1,0,0,0,6711,6712,1,0,0,0,6712, + 6714,3,1418,709,0,6713,6698,1,0,0,0,6713,6703,1,0,0,0,6713,6708, + 1,0,0,0,6714,757,1,0,0,0,6715,6720,3,760,380,0,6716,6717,5,6,0,0, + 6717,6719,3,760,380,0,6718,6716,1,0,0,0,6719,6722,1,0,0,0,6720,6718, + 1,0,0,0,6720,6721,1,0,0,0,6721,759,1,0,0,0,6722,6720,1,0,0,0,6723, + 6724,5,128,0,0,6724,761,1,0,0,0,6725,6726,5,138,0,0,6726,6727,5, + 351,0,0,6727,6728,3,1400,700,0,6728,6729,5,333,0,0,6729,6730,3,132, + 66,0,6730,6738,1,0,0,0,6731,6732,5,138,0,0,6732,6733,5,351,0,0,6733, + 6734,3,1400,700,0,6734,6735,5,313,0,0,6735,6736,3,132,66,0,6736, + 6738,1,0,0,0,6737,6725,1,0,0,0,6737,6731,1,0,0,0,6738,763,1,0,0, + 0,6739,6740,5,138,0,0,6740,6741,5,136,0,0,6741,6742,3,696,348,0, + 6742,6743,5,309,0,0,6743,6744,5,94,0,0,6744,6745,3,1434,717,0,6745, + 7131,1,0,0,0,6746,6747,5,138,0,0,6747,6748,5,108,0,0,6748,6749,3, + 556,278,0,6749,6750,5,309,0,0,6750,6751,5,94,0,0,6751,6752,3,1434, + 717,0,6752,7131,1,0,0,0,6753,6754,5,138,0,0,6754,6755,5,168,0,0, + 6755,6756,3,556,278,0,6756,6757,5,309,0,0,6757,6758,5,94,0,0,6758, + 6759,3,1434,717,0,6759,7131,1,0,0,0,6760,6761,5,138,0,0,6761,6762, + 5,175,0,0,6762,6763,3,1418,709,0,6763,6764,5,309,0,0,6764,6765,5, + 94,0,0,6765,6766,3,1416,708,0,6766,7131,1,0,0,0,6767,6768,5,138, + 0,0,6768,6769,5,189,0,0,6769,6770,3,556,278,0,6770,6771,5,309,0, + 0,6771,6772,5,94,0,0,6772,6773,3,1434,717,0,6773,7131,1,0,0,0,6774, + 6775,5,138,0,0,6775,6776,5,189,0,0,6776,6777,3,556,278,0,6777,6778, + 5,309,0,0,6778,6779,5,45,0,0,6779,6780,3,1434,717,0,6780,6781,5, + 94,0,0,6781,6782,3,1434,717,0,6782,7131,1,0,0,0,6783,6784,5,138, + 0,0,6784,6785,5,63,0,0,6785,6786,5,174,0,0,6786,6787,5,381,0,0,6787, + 6788,3,1434,717,0,6788,6789,5,309,0,0,6789,6790,5,94,0,0,6790,6791, + 3,1434,717,0,6791,7131,1,0,0,0,6792,6793,5,138,0,0,6793,6794,5,211, + 0,0,6794,6795,3,672,336,0,6795,6796,5,309,0,0,6796,6797,5,94,0,0, + 6797,6798,3,1440,720,0,6798,7131,1,0,0,0,6799,6800,5,138,0,0,6800, + 6801,5,66,0,0,6801,6802,3,1466,733,0,6802,6803,5,309,0,0,6803,6804, + 5,94,0,0,6804,6805,3,1466,733,0,6805,7131,1,0,0,0,6806,6808,5,138, + 0,0,6807,6809,3,336,168,0,6808,6807,1,0,0,0,6808,6809,1,0,0,0,6809, + 6810,1,0,0,0,6810,6811,5,247,0,0,6811,6812,3,1434,717,0,6812,6813, + 5,309,0,0,6813,6814,5,94,0,0,6814,6815,3,1434,717,0,6815,7131,1, + 0,0,0,6816,6817,5,138,0,0,6817,6818,5,278,0,0,6818,6819,5,156,0, + 0,6819,6820,3,556,278,0,6820,6821,5,100,0,0,6821,6822,3,1434,717, + 0,6822,6823,5,309,0,0,6823,6824,5,94,0,0,6824,6825,3,1434,717,0, + 6825,7131,1,0,0,0,6826,6827,5,138,0,0,6827,6828,5,278,0,0,6828,6829, + 5,206,0,0,6829,6830,3,556,278,0,6830,6831,5,100,0,0,6831,6832,3, + 1434,717,0,6832,6833,5,309,0,0,6833,6834,5,94,0,0,6834,6835,3,1434, + 717,0,6835,7131,1,0,0,0,6836,6837,5,138,0,0,6837,6839,5,445,0,0, + 6838,6840,3,746,373,0,6839,6838,1,0,0,0,6839,6840,1,0,0,0,6840,6841, + 1,0,0,0,6841,6842,3,1434,717,0,6842,6843,5,80,0,0,6843,6844,3,1410, + 705,0,6844,6845,5,309,0,0,6845,6846,5,94,0,0,6846,6847,3,1434,717, + 0,6847,7131,1,0,0,0,6848,6849,5,138,0,0,6849,6850,5,296,0,0,6850, + 6851,3,668,334,0,6851,6852,5,309,0,0,6852,6853,5,94,0,0,6853,6854, + 3,1428,714,0,6854,7131,1,0,0,0,6855,6856,5,138,0,0,6856,6857,5,452, + 0,0,6857,6858,3,1434,717,0,6858,6859,5,309,0,0,6859,6860,5,94,0, + 0,6860,6861,3,1434,717,0,6861,7131,1,0,0,0,6862,6863,5,138,0,0,6863, + 6864,5,442,0,0,6864,6865,3,664,332,0,6865,6866,5,309,0,0,6866,6867, + 5,94,0,0,6867,6868,3,1434,717,0,6868,7131,1,0,0,0,6869,6870,5,138, + 0,0,6870,6871,5,323,0,0,6871,6872,3,1420,710,0,6872,6873,5,309,0, + 0,6873,6874,5,94,0,0,6874,6875,3,48,24,0,6875,7131,1,0,0,0,6876, + 6877,5,138,0,0,6877,6878,5,331,0,0,6878,6879,3,1434,717,0,6879,6880, + 5,309,0,0,6880,6881,5,94,0,0,6881,6882,3,1434,717,0,6882,7131,1, + 0,0,0,6883,6884,5,138,0,0,6884,6885,5,451,0,0,6885,6886,3,1434,717, + 0,6886,6887,5,309,0,0,6887,6888,5,94,0,0,6888,6889,3,1434,717,0, + 6889,7131,1,0,0,0,6890,6891,5,138,0,0,6891,6893,5,92,0,0,6892,6894, + 3,746,373,0,6893,6892,1,0,0,0,6893,6894,1,0,0,0,6894,6895,1,0,0, + 0,6895,6896,3,1116,558,0,6896,6897,5,309,0,0,6897,6898,5,94,0,0, + 6898,6899,3,1402,701,0,6899,7131,1,0,0,0,6900,6901,5,138,0,0,6901, + 6903,5,328,0,0,6902,6904,3,746,373,0,6903,6902,1,0,0,0,6903,6904, + 1,0,0,0,6904,6905,1,0,0,0,6905,6906,3,1410,705,0,6906,6907,5,309, + 0,0,6907,6908,5,94,0,0,6908,6909,3,1434,717,0,6909,7131,1,0,0,0, + 6910,6911,5,138,0,0,6911,6913,5,376,0,0,6912,6914,3,746,373,0,6913, + 6912,1,0,0,0,6913,6914,1,0,0,0,6914,6915,1,0,0,0,6915,6916,3,1408, + 704,0,6916,6917,5,309,0,0,6917,6918,5,94,0,0,6918,6919,3,1406,703, + 0,6919,7131,1,0,0,0,6920,6921,5,138,0,0,6921,6922,5,259,0,0,6922, + 6924,5,376,0,0,6923,6925,3,746,373,0,6924,6923,1,0,0,0,6924,6925, + 1,0,0,0,6925,6926,1,0,0,0,6926,6927,3,1408,704,0,6927,6928,5,309, + 0,0,6928,6929,5,94,0,0,6929,6930,3,1406,703,0,6930,7131,1,0,0,0, + 6931,6932,5,138,0,0,6932,6934,5,226,0,0,6933,6935,3,746,373,0,6934, + 6933,1,0,0,0,6934,6935,1,0,0,0,6935,6936,1,0,0,0,6936,6937,3,1410, + 705,0,6937,6938,5,309,0,0,6938,6939,5,94,0,0,6939,6940,3,1434,717, + 0,6940,7131,1,0,0,0,6941,6942,5,138,0,0,6942,6943,5,63,0,0,6943, + 6945,5,92,0,0,6944,6946,3,746,373,0,6945,6944,1,0,0,0,6945,6946, + 1,0,0,0,6946,6947,1,0,0,0,6947,6948,3,1116,558,0,6948,6949,5,309, + 0,0,6949,6950,5,94,0,0,6950,6951,3,1402,701,0,6951,7131,1,0,0,0, + 6952,6953,5,138,0,0,6953,6955,5,92,0,0,6954,6956,3,746,373,0,6955, + 6954,1,0,0,0,6955,6956,1,0,0,0,6956,6957,1,0,0,0,6957,6958,3,1116, + 558,0,6958,6960,5,309,0,0,6959,6961,5,44,0,0,6960,6959,1,0,0,0,6960, + 6961,1,0,0,0,6961,6962,1,0,0,0,6962,6963,3,1430,715,0,6963,6964, + 5,94,0,0,6964,6965,3,1432,716,0,6965,7131,1,0,0,0,6966,6967,5,138, + 0,0,6967,6969,5,376,0,0,6968,6970,3,746,373,0,6969,6968,1,0,0,0, + 6969,6970,1,0,0,0,6970,6971,1,0,0,0,6971,6972,3,1408,704,0,6972, + 6974,5,309,0,0,6973,6975,5,44,0,0,6974,6973,1,0,0,0,6974,6975,1, + 0,0,0,6975,6976,1,0,0,0,6976,6977,3,1430,715,0,6977,6978,5,94,0, + 0,6978,6979,3,1432,716,0,6979,7131,1,0,0,0,6980,6981,5,138,0,0,6981, + 6982,5,259,0,0,6982,6984,5,376,0,0,6983,6985,3,746,373,0,6984,6983, + 1,0,0,0,6984,6985,1,0,0,0,6985,6986,1,0,0,0,6986,6987,3,1408,704, + 0,6987,6989,5,309,0,0,6988,6990,5,44,0,0,6989,6988,1,0,0,0,6989, + 6990,1,0,0,0,6990,6991,1,0,0,0,6991,6992,3,1430,715,0,6992,6993, + 5,94,0,0,6993,6994,3,1432,716,0,6994,7131,1,0,0,0,6995,6996,5,138, + 0,0,6996,6998,5,92,0,0,6997,6999,3,746,373,0,6998,6997,1,0,0,0,6998, + 6999,1,0,0,0,6999,7000,1,0,0,0,7000,7001,3,1116,558,0,7001,7002, + 5,309,0,0,7002,7003,5,45,0,0,7003,7004,3,1434,717,0,7004,7005,5, + 94,0,0,7005,7006,3,1434,717,0,7006,7131,1,0,0,0,7007,7008,5,138, + 0,0,7008,7009,5,63,0,0,7009,7011,5,92,0,0,7010,7012,3,746,373,0, + 7011,7010,1,0,0,0,7011,7012,1,0,0,0,7012,7013,1,0,0,0,7013,7014, + 3,1116,558,0,7014,7016,5,309,0,0,7015,7017,5,44,0,0,7016,7015,1, + 0,0,0,7016,7017,1,0,0,0,7017,7018,1,0,0,0,7018,7019,3,1430,715,0, + 7019,7020,5,94,0,0,7020,7021,3,1432,716,0,7021,7131,1,0,0,0,7022, + 7023,5,138,0,0,7023,7024,5,321,0,0,7024,7025,3,1434,717,0,7025,7026, + 5,80,0,0,7026,7027,3,1410,705,0,7027,7028,5,309,0,0,7028,7029,5, + 94,0,0,7029,7030,3,1434,717,0,7030,7131,1,0,0,0,7031,7032,5,138, + 0,0,7032,7033,5,357,0,0,7033,7034,3,1434,717,0,7034,7035,5,80,0, + 0,7035,7036,3,1410,705,0,7036,7037,5,309,0,0,7037,7038,5,94,0,0, + 7038,7039,3,1434,717,0,7039,7131,1,0,0,0,7040,7041,5,138,0,0,7041, + 7042,5,198,0,0,7042,7043,5,357,0,0,7043,7044,3,1434,717,0,7044,7045, + 5,309,0,0,7045,7046,5,94,0,0,7046,7047,3,1434,717,0,7047,7131,1, + 0,0,0,7048,7049,5,138,0,0,7049,7050,5,318,0,0,7050,7051,3,1466,733, + 0,7051,7052,5,309,0,0,7052,7053,5,94,0,0,7053,7054,3,1466,733,0, + 7054,7131,1,0,0,0,7055,7056,5,138,0,0,7056,7057,5,99,0,0,7057,7058, + 3,1466,733,0,7058,7059,5,309,0,0,7059,7060,5,94,0,0,7060,7061,3, + 1466,733,0,7061,7131,1,0,0,0,7062,7063,5,138,0,0,7063,7064,5,351, + 0,0,7064,7065,3,1400,700,0,7065,7066,5,309,0,0,7066,7067,5,94,0, + 0,7067,7068,3,1398,699,0,7068,7131,1,0,0,0,7069,7070,5,138,0,0,7070, + 7071,5,342,0,0,7071,7072,3,556,278,0,7072,7073,5,309,0,0,7073,7074, + 5,94,0,0,7074,7075,3,1434,717,0,7075,7131,1,0,0,0,7076,7077,5,138, + 0,0,7077,7078,5,355,0,0,7078,7079,5,325,0,0,7079,7080,5,283,0,0, + 7080,7081,3,556,278,0,7081,7082,5,309,0,0,7082,7083,5,94,0,0,7083, + 7084,3,1434,717,0,7084,7131,1,0,0,0,7085,7086,5,138,0,0,7086,7087, + 5,355,0,0,7087,7088,5,325,0,0,7088,7089,5,185,0,0,7089,7090,3,556, + 278,0,7090,7091,5,309,0,0,7091,7092,5,94,0,0,7092,7093,3,1434,717, + 0,7093,7131,1,0,0,0,7094,7095,5,138,0,0,7095,7096,5,355,0,0,7096, + 7097,5,325,0,0,7097,7098,5,353,0,0,7098,7099,3,556,278,0,7099,7100, + 5,309,0,0,7100,7101,5,94,0,0,7101,7102,3,1434,717,0,7102,7131,1, + 0,0,0,7103,7104,5,138,0,0,7104,7105,5,355,0,0,7105,7106,5,325,0, + 0,7106,7107,5,163,0,0,7107,7108,3,556,278,0,7108,7109,5,309,0,0, + 7109,7110,5,94,0,0,7110,7111,3,1434,717,0,7111,7131,1,0,0,0,7112, + 7113,5,138,0,0,7113,7114,5,360,0,0,7114,7115,3,556,278,0,7115,7116, + 5,309,0,0,7116,7117,5,94,0,0,7117,7118,3,1434,717,0,7118,7131,1, + 0,0,0,7119,7120,5,138,0,0,7120,7121,5,360,0,0,7121,7122,3,556,278, + 0,7122,7123,5,309,0,0,7123,7124,5,143,0,0,7124,7125,3,1434,717,0, + 7125,7126,5,94,0,0,7126,7128,3,1434,717,0,7127,7129,3,124,62,0,7128, + 7127,1,0,0,0,7128,7129,1,0,0,0,7129,7131,1,0,0,0,7130,6739,1,0,0, + 0,7130,6746,1,0,0,0,7130,6753,1,0,0,0,7130,6760,1,0,0,0,7130,6767, + 1,0,0,0,7130,6774,1,0,0,0,7130,6783,1,0,0,0,7130,6792,1,0,0,0,7130, + 6799,1,0,0,0,7130,6806,1,0,0,0,7130,6816,1,0,0,0,7130,6826,1,0,0, + 0,7130,6836,1,0,0,0,7130,6848,1,0,0,0,7130,6855,1,0,0,0,7130,6862, + 1,0,0,0,7130,6869,1,0,0,0,7130,6876,1,0,0,0,7130,6883,1,0,0,0,7130, + 6890,1,0,0,0,7130,6900,1,0,0,0,7130,6910,1,0,0,0,7130,6920,1,0,0, + 0,7130,6931,1,0,0,0,7130,6941,1,0,0,0,7130,6952,1,0,0,0,7130,6966, + 1,0,0,0,7130,6980,1,0,0,0,7130,6995,1,0,0,0,7130,7007,1,0,0,0,7130, + 7022,1,0,0,0,7130,7031,1,0,0,0,7130,7040,1,0,0,0,7130,7048,1,0,0, + 0,7130,7055,1,0,0,0,7130,7062,1,0,0,0,7130,7069,1,0,0,0,7130,7076, + 1,0,0,0,7130,7085,1,0,0,0,7130,7094,1,0,0,0,7130,7103,1,0,0,0,7130, + 7112,1,0,0,0,7130,7119,1,0,0,0,7131,765,1,0,0,0,7132,7133,5,333, + 0,0,7133,7134,5,174,0,0,7134,767,1,0,0,0,7135,7136,5,138,0,0,7136, + 7137,5,211,0,0,7137,7139,3,672,336,0,7138,7140,3,770,385,0,7139, + 7138,1,0,0,0,7139,7140,1,0,0,0,7140,7141,1,0,0,0,7141,7142,5,462, + 0,0,7142,7143,5,80,0,0,7143,7144,5,204,0,0,7144,7145,3,1434,717, + 0,7145,7205,1,0,0,0,7146,7147,5,138,0,0,7147,7148,5,296,0,0,7148, + 7150,3,668,334,0,7149,7151,3,770,385,0,7150,7149,1,0,0,0,7150,7151, + 1,0,0,0,7151,7152,1,0,0,0,7152,7153,5,462,0,0,7153,7154,5,80,0,0, + 7154,7155,5,204,0,0,7155,7156,3,1434,717,0,7156,7205,1,0,0,0,7157, + 7158,5,138,0,0,7158,7159,5,442,0,0,7159,7161,3,664,332,0,7160,7162, + 3,770,385,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162,7163,1,0,0, + 0,7163,7164,5,462,0,0,7164,7165,5,80,0,0,7165,7166,5,204,0,0,7166, + 7167,3,1434,717,0,7167,7205,1,0,0,0,7168,7169,5,138,0,0,7169,7170, + 5,357,0,0,7170,7171,3,1434,717,0,7171,7172,5,80,0,0,7172,7174,3, + 1410,705,0,7173,7175,3,770,385,0,7174,7173,1,0,0,0,7174,7175,1,0, + 0,0,7175,7176,1,0,0,0,7176,7177,5,462,0,0,7177,7178,5,80,0,0,7178, + 7179,5,204,0,0,7179,7180,3,1434,717,0,7180,7205,1,0,0,0,7181,7182, + 5,138,0,0,7182,7183,5,259,0,0,7183,7184,5,376,0,0,7184,7186,3,1408, + 704,0,7185,7187,3,770,385,0,7186,7185,1,0,0,0,7186,7187,1,0,0,0, + 7187,7188,1,0,0,0,7188,7189,5,462,0,0,7189,7190,5,80,0,0,7190,7191, + 5,204,0,0,7191,7192,3,1434,717,0,7192,7205,1,0,0,0,7193,7194,5,138, + 0,0,7194,7195,5,226,0,0,7195,7197,3,1410,705,0,7196,7198,3,770,385, + 0,7197,7196,1,0,0,0,7197,7198,1,0,0,0,7198,7199,1,0,0,0,7199,7200, + 5,462,0,0,7200,7201,5,80,0,0,7201,7202,5,204,0,0,7202,7203,3,1434, + 717,0,7203,7205,1,0,0,0,7204,7135,1,0,0,0,7204,7146,1,0,0,0,7204, + 7157,1,0,0,0,7204,7168,1,0,0,0,7204,7181,1,0,0,0,7204,7193,1,0,0, + 0,7205,769,1,0,0,0,7206,7207,5,269,0,0,7207,771,1,0,0,0,7208,7209, + 5,138,0,0,7209,7210,5,136,0,0,7210,7211,3,696,348,0,7211,7212,5, + 333,0,0,7212,7213,5,323,0,0,7213,7214,3,48,24,0,7214,7394,1,0,0, + 0,7215,7216,5,138,0,0,7216,7217,5,108,0,0,7217,7218,3,556,278,0, + 7218,7219,5,333,0,0,7219,7220,5,323,0,0,7220,7221,3,48,24,0,7221, + 7394,1,0,0,0,7222,7223,5,138,0,0,7223,7224,5,168,0,0,7224,7225,3, + 556,278,0,7225,7226,5,333,0,0,7226,7227,5,323,0,0,7227,7228,3,48, + 24,0,7228,7394,1,0,0,0,7229,7230,5,138,0,0,7230,7231,5,189,0,0,7231, + 7232,3,556,278,0,7232,7233,5,333,0,0,7233,7234,5,323,0,0,7234,7235, + 3,48,24,0,7235,7394,1,0,0,0,7236,7237,5,138,0,0,7237,7238,5,204, + 0,0,7238,7239,3,1434,717,0,7239,7240,5,333,0,0,7240,7241,5,323,0, + 0,7241,7242,3,48,24,0,7242,7394,1,0,0,0,7243,7244,5,138,0,0,7244, + 7245,5,211,0,0,7245,7246,3,672,336,0,7246,7247,5,333,0,0,7247,7248, + 5,323,0,0,7248,7249,3,48,24,0,7249,7394,1,0,0,0,7250,7251,5,138, + 0,0,7251,7252,5,278,0,0,7252,7253,3,734,367,0,7253,7254,5,333,0, + 0,7254,7255,5,323,0,0,7255,7256,3,48,24,0,7256,7394,1,0,0,0,7257, + 7258,5,138,0,0,7258,7259,5,278,0,0,7259,7260,5,156,0,0,7260,7261, + 3,556,278,0,7261,7262,5,100,0,0,7262,7263,3,1434,717,0,7263,7264, + 5,333,0,0,7264,7265,5,323,0,0,7265,7266,3,48,24,0,7266,7394,1,0, + 0,0,7267,7268,5,138,0,0,7268,7269,5,278,0,0,7269,7270,5,206,0,0, + 7270,7271,3,556,278,0,7271,7272,5,100,0,0,7272,7273,3,1434,717,0, + 7273,7274,5,333,0,0,7274,7275,5,323,0,0,7275,7276,3,48,24,0,7276, + 7394,1,0,0,0,7277,7278,5,138,0,0,7278,7279,5,296,0,0,7279,7280,3, + 668,334,0,7280,7281,5,333,0,0,7281,7282,5,323,0,0,7282,7283,3,48, + 24,0,7283,7394,1,0,0,0,7284,7285,5,138,0,0,7285,7286,5,442,0,0,7286, + 7287,3,664,332,0,7287,7288,5,333,0,0,7288,7289,5,323,0,0,7289,7290, + 3,48,24,0,7290,7394,1,0,0,0,7291,7292,5,138,0,0,7292,7294,5,92,0, + 0,7293,7295,3,746,373,0,7294,7293,1,0,0,0,7294,7295,1,0,0,0,7295, + 7296,1,0,0,0,7296,7297,3,1116,558,0,7297,7298,5,333,0,0,7298,7299, + 5,323,0,0,7299,7300,3,48,24,0,7300,7394,1,0,0,0,7301,7302,5,138, + 0,0,7302,7303,5,342,0,0,7303,7304,3,556,278,0,7304,7305,5,333,0, + 0,7305,7306,5,323,0,0,7306,7307,3,48,24,0,7307,7394,1,0,0,0,7308, + 7309,5,138,0,0,7309,7310,5,355,0,0,7310,7311,5,325,0,0,7311,7312, + 5,283,0,0,7312,7313,3,556,278,0,7313,7314,5,333,0,0,7314,7315,5, + 323,0,0,7315,7316,3,48,24,0,7316,7394,1,0,0,0,7317,7318,5,138,0, + 0,7318,7319,5,355,0,0,7319,7320,5,325,0,0,7320,7321,5,185,0,0,7321, + 7322,3,556,278,0,7322,7323,5,333,0,0,7323,7324,5,323,0,0,7324,7325, + 3,48,24,0,7325,7394,1,0,0,0,7326,7327,5,138,0,0,7327,7328,5,355, + 0,0,7328,7329,5,325,0,0,7329,7330,5,353,0,0,7330,7331,3,556,278, + 0,7331,7332,5,333,0,0,7332,7333,5,323,0,0,7333,7334,3,48,24,0,7334, + 7394,1,0,0,0,7335,7336,5,138,0,0,7336,7337,5,355,0,0,7337,7338,5, + 325,0,0,7338,7339,5,163,0,0,7339,7340,3,556,278,0,7340,7341,5,333, + 0,0,7341,7342,5,323,0,0,7342,7343,3,48,24,0,7343,7394,1,0,0,0,7344, + 7345,5,138,0,0,7345,7347,5,328,0,0,7346,7348,3,746,373,0,7347,7346, + 1,0,0,0,7347,7348,1,0,0,0,7348,7349,1,0,0,0,7349,7350,3,1410,705, + 0,7350,7351,5,333,0,0,7351,7352,5,323,0,0,7352,7353,3,48,24,0,7353, + 7394,1,0,0,0,7354,7355,5,138,0,0,7355,7357,5,376,0,0,7356,7358,3, + 746,373,0,7357,7356,1,0,0,0,7357,7358,1,0,0,0,7358,7359,1,0,0,0, + 7359,7360,3,1408,704,0,7360,7361,5,333,0,0,7361,7362,5,323,0,0,7362, + 7363,3,48,24,0,7363,7394,1,0,0,0,7364,7365,5,138,0,0,7365,7366,5, + 259,0,0,7366,7368,5,376,0,0,7367,7369,3,746,373,0,7368,7367,1,0, + 0,0,7368,7369,1,0,0,0,7369,7370,1,0,0,0,7370,7371,3,1408,704,0,7371, + 7372,5,333,0,0,7372,7373,5,323,0,0,7373,7374,3,48,24,0,7374,7394, + 1,0,0,0,7375,7376,5,138,0,0,7376,7377,5,63,0,0,7377,7379,5,92,0, + 0,7378,7380,3,746,373,0,7379,7378,1,0,0,0,7379,7380,1,0,0,0,7380, + 7381,1,0,0,0,7381,7382,3,1116,558,0,7382,7383,5,333,0,0,7383,7384, + 5,323,0,0,7384,7385,3,48,24,0,7385,7394,1,0,0,0,7386,7387,5,138, + 0,0,7387,7388,5,360,0,0,7388,7389,3,556,278,0,7389,7390,5,333,0, + 0,7390,7391,5,323,0,0,7391,7392,3,48,24,0,7392,7394,1,0,0,0,7393, + 7208,1,0,0,0,7393,7215,1,0,0,0,7393,7222,1,0,0,0,7393,7229,1,0,0, + 0,7393,7236,1,0,0,0,7393,7243,1,0,0,0,7393,7250,1,0,0,0,7393,7257, + 1,0,0,0,7393,7267,1,0,0,0,7393,7277,1,0,0,0,7393,7284,1,0,0,0,7393, + 7291,1,0,0,0,7393,7301,1,0,0,0,7393,7308,1,0,0,0,7393,7317,1,0,0, + 0,7393,7326,1,0,0,0,7393,7335,1,0,0,0,7393,7344,1,0,0,0,7393,7354, + 1,0,0,0,7393,7364,1,0,0,0,7393,7375,1,0,0,0,7393,7386,1,0,0,0,7394, + 773,1,0,0,0,7395,7396,5,138,0,0,7396,7397,5,278,0,0,7397,7398,3, + 734,367,0,7398,7399,5,333,0,0,7399,7400,5,2,0,0,7400,7401,3,776, + 388,0,7401,7402,5,3,0,0,7402,775,1,0,0,0,7403,7408,3,778,389,0,7404, + 7405,5,6,0,0,7405,7407,3,778,389,0,7406,7404,1,0,0,0,7407,7410,1, + 0,0,0,7408,7406,1,0,0,0,7408,7409,1,0,0,0,7409,777,1,0,0,0,7410, + 7408,1,0,0,0,7411,7412,3,1488,744,0,7412,7413,5,10,0,0,7413,7414, + 5,407,0,0,7414,7420,1,0,0,0,7415,7416,3,1488,744,0,7416,7417,5,10, + 0,0,7417,7418,3,780,390,0,7418,7420,1,0,0,0,7419,7411,1,0,0,0,7419, + 7415,1,0,0,0,7420,779,1,0,0,0,7421,7427,3,686,343,0,7422,7427,3, + 1500,750,0,7423,7427,3,1322,661,0,7424,7427,3,320,160,0,7425,7427, + 3,1456,728,0,7426,7421,1,0,0,0,7426,7422,1,0,0,0,7426,7423,1,0,0, + 0,7426,7424,1,0,0,0,7426,7425,1,0,0,0,7427,781,1,0,0,0,7428,7429, + 5,138,0,0,7429,7430,5,360,0,0,7430,7431,3,556,278,0,7431,7432,5, + 333,0,0,7432,7433,5,2,0,0,7433,7434,3,776,388,0,7434,7435,5,3,0, + 0,7435,783,1,0,0,0,7436,7437,5,138,0,0,7437,7438,5,136,0,0,7438, + 7439,3,696,348,0,7439,7440,5,282,0,0,7440,7441,5,94,0,0,7441,7442, + 3,1468,734,0,7442,7622,1,0,0,0,7443,7444,5,138,0,0,7444,7445,5,108, + 0,0,7445,7446,3,556,278,0,7446,7447,5,282,0,0,7447,7448,5,94,0,0, + 7448,7449,3,1468,734,0,7449,7622,1,0,0,0,7450,7451,5,138,0,0,7451, + 7452,5,168,0,0,7452,7453,3,556,278,0,7453,7454,5,282,0,0,7454,7455, + 5,94,0,0,7455,7456,3,1468,734,0,7456,7622,1,0,0,0,7457,7458,5,138, + 0,0,7458,7459,5,175,0,0,7459,7460,3,1418,709,0,7460,7461,5,282,0, + 0,7461,7462,5,94,0,0,7462,7463,3,1468,734,0,7463,7622,1,0,0,0,7464, + 7465,5,138,0,0,7465,7466,5,189,0,0,7466,7467,3,556,278,0,7467,7468, + 5,282,0,0,7468,7469,5,94,0,0,7469,7470,3,1468,734,0,7470,7622,1, + 0,0,0,7471,7472,5,138,0,0,7472,7473,5,211,0,0,7473,7474,3,672,336, + 0,7474,7475,5,282,0,0,7475,7476,5,94,0,0,7476,7477,3,1468,734,0, + 7477,7622,1,0,0,0,7478,7480,5,138,0,0,7479,7481,3,336,168,0,7480, + 7479,1,0,0,0,7480,7481,1,0,0,0,7481,7482,1,0,0,0,7482,7483,5,247, + 0,0,7483,7484,3,1434,717,0,7484,7485,5,282,0,0,7485,7486,5,94,0, + 0,7486,7487,3,1468,734,0,7487,7622,1,0,0,0,7488,7489,5,138,0,0,7489, + 7490,5,248,0,0,7490,7491,5,274,0,0,7491,7492,3,320,160,0,7492,7493, + 5,282,0,0,7493,7494,5,94,0,0,7494,7495,3,1468,734,0,7495,7622,1, + 0,0,0,7496,7497,5,138,0,0,7497,7498,5,278,0,0,7498,7499,3,734,367, + 0,7499,7500,5,282,0,0,7500,7501,5,94,0,0,7501,7502,3,1468,734,0, + 7502,7622,1,0,0,0,7503,7504,5,138,0,0,7504,7505,5,278,0,0,7505,7506, + 5,156,0,0,7506,7507,3,556,278,0,7507,7508,5,100,0,0,7508,7509,3, + 1434,717,0,7509,7510,5,282,0,0,7510,7511,5,94,0,0,7511,7512,3,1468, + 734,0,7512,7622,1,0,0,0,7513,7514,5,138,0,0,7514,7515,5,278,0,0, + 7515,7516,5,206,0,0,7516,7517,3,556,278,0,7517,7518,5,100,0,0,7518, + 7519,3,1434,717,0,7519,7520,5,282,0,0,7520,7521,5,94,0,0,7521,7522, + 3,1468,734,0,7522,7622,1,0,0,0,7523,7524,5,138,0,0,7524,7525,5,296, + 0,0,7525,7526,3,668,334,0,7526,7527,5,282,0,0,7527,7528,5,94,0,0, + 7528,7529,3,1468,734,0,7529,7622,1,0,0,0,7530,7531,5,138,0,0,7531, + 7532,5,442,0,0,7532,7533,3,664,332,0,7533,7534,5,282,0,0,7534,7535, + 5,94,0,0,7535,7536,3,1468,734,0,7536,7622,1,0,0,0,7537,7538,5,138, + 0,0,7538,7539,5,323,0,0,7539,7540,3,1420,710,0,7540,7541,5,282,0, + 0,7541,7542,5,94,0,0,7542,7543,3,1468,734,0,7543,7622,1,0,0,0,7544, + 7545,5,138,0,0,7545,7546,5,360,0,0,7546,7547,3,556,278,0,7547,7548, + 5,282,0,0,7548,7549,5,94,0,0,7549,7550,3,1468,734,0,7550,7622,1, + 0,0,0,7551,7552,5,138,0,0,7552,7553,5,351,0,0,7553,7554,3,1400,700, + 0,7554,7555,5,282,0,0,7555,7556,5,94,0,0,7556,7557,3,1468,734,0, + 7557,7622,1,0,0,0,7558,7559,5,138,0,0,7559,7560,5,342,0,0,7560,7561, + 3,556,278,0,7561,7562,5,282,0,0,7562,7563,5,94,0,0,7563,7564,3,1468, + 734,0,7564,7622,1,0,0,0,7565,7566,5,138,0,0,7566,7567,5,355,0,0, + 7567,7568,5,325,0,0,7568,7569,5,185,0,0,7569,7570,3,556,278,0,7570, + 7571,5,282,0,0,7571,7572,5,94,0,0,7572,7573,3,1468,734,0,7573,7622, + 1,0,0,0,7574,7575,5,138,0,0,7575,7576,5,355,0,0,7576,7577,5,325, + 0,0,7577,7578,5,163,0,0,7578,7579,3,556,278,0,7579,7580,5,282,0, + 0,7580,7581,5,94,0,0,7581,7582,3,1468,734,0,7582,7622,1,0,0,0,7583, + 7584,5,138,0,0,7584,7585,5,63,0,0,7585,7586,5,174,0,0,7586,7587, + 5,381,0,0,7587,7588,3,1434,717,0,7588,7589,5,282,0,0,7589,7590,5, + 94,0,0,7590,7591,3,1468,734,0,7591,7622,1,0,0,0,7592,7593,5,138, + 0,0,7593,7594,5,331,0,0,7594,7595,3,1434,717,0,7595,7596,5,282,0, + 0,7596,7597,5,94,0,0,7597,7598,3,1468,734,0,7598,7622,1,0,0,0,7599, + 7600,5,138,0,0,7600,7601,5,198,0,0,7601,7602,5,357,0,0,7602,7603, + 3,1434,717,0,7603,7604,5,282,0,0,7604,7605,5,94,0,0,7605,7606,3, + 1468,734,0,7606,7622,1,0,0,0,7607,7608,5,138,0,0,7608,7609,5,452, + 0,0,7609,7610,3,1434,717,0,7610,7611,5,282,0,0,7611,7612,5,94,0, + 0,7612,7613,3,1468,734,0,7613,7622,1,0,0,0,7614,7615,5,138,0,0,7615, + 7616,5,451,0,0,7616,7617,3,1434,717,0,7617,7618,5,282,0,0,7618,7619, + 5,94,0,0,7619,7620,3,1468,734,0,7620,7622,1,0,0,0,7621,7436,1,0, + 0,0,7621,7443,1,0,0,0,7621,7450,1,0,0,0,7621,7457,1,0,0,0,7621,7464, + 1,0,0,0,7621,7471,1,0,0,0,7621,7478,1,0,0,0,7621,7488,1,0,0,0,7621, + 7496,1,0,0,0,7621,7503,1,0,0,0,7621,7513,1,0,0,0,7621,7523,1,0,0, + 0,7621,7530,1,0,0,0,7621,7537,1,0,0,0,7621,7544,1,0,0,0,7621,7551, + 1,0,0,0,7621,7558,1,0,0,0,7621,7565,1,0,0,0,7621,7574,1,0,0,0,7621, + 7583,1,0,0,0,7621,7592,1,0,0,0,7621,7599,1,0,0,0,7621,7607,1,0,0, + 0,7621,7614,1,0,0,0,7622,785,1,0,0,0,7623,7624,5,46,0,0,7624,7625, + 5,452,0,0,7625,7627,3,1434,717,0,7626,7628,3,788,394,0,7627,7626, + 1,0,0,0,7627,7628,1,0,0,0,7628,7630,1,0,0,0,7629,7631,3,708,354, + 0,7630,7629,1,0,0,0,7630,7631,1,0,0,0,7631,787,1,0,0,0,7632,7633, + 3,790,395,0,7633,789,1,0,0,0,7634,7635,5,62,0,0,7635,7636,5,92,0, + 0,7636,7641,3,1122,561,0,7637,7638,5,62,0,0,7638,7639,5,30,0,0,7639, + 7641,5,350,0,0,7640,7634,1,0,0,0,7640,7637,1,0,0,0,7641,791,1,0, + 0,0,7642,7643,5,138,0,0,7643,7644,5,452,0,0,7644,7645,3,1434,717, + 0,7645,7646,5,333,0,0,7646,7647,3,494,247,0,7647,7681,1,0,0,0,7648, + 7649,5,138,0,0,7649,7650,5,452,0,0,7650,7651,3,1434,717,0,7651,7652, + 5,133,0,0,7652,7653,3,1124,562,0,7653,7681,1,0,0,0,7654,7655,5,138, + 0,0,7655,7656,5,452,0,0,7656,7657,3,1434,717,0,7657,7658,5,333,0, + 0,7658,7659,3,1124,562,0,7659,7681,1,0,0,0,7660,7661,5,138,0,0,7661, + 7662,5,452,0,0,7662,7663,3,1434,717,0,7663,7664,5,191,0,0,7664,7665, + 3,1124,562,0,7665,7681,1,0,0,0,7666,7667,5,138,0,0,7667,7668,5,452, + 0,0,7668,7669,3,1434,717,0,7669,7670,5,282,0,0,7670,7671,5,94,0, + 0,7671,7672,3,1468,734,0,7672,7681,1,0,0,0,7673,7674,5,138,0,0,7674, + 7675,5,452,0,0,7675,7676,3,1434,717,0,7676,7677,5,309,0,0,7677,7678, + 5,94,0,0,7678,7679,3,1434,717,0,7679,7681,1,0,0,0,7680,7642,1,0, + 0,0,7680,7648,1,0,0,0,7680,7654,1,0,0,0,7680,7660,1,0,0,0,7680,7666, + 1,0,0,0,7680,7673,1,0,0,0,7681,793,1,0,0,0,7682,7683,5,46,0,0,7683, + 7684,5,451,0,0,7684,7685,3,1434,717,0,7685,7686,5,164,0,0,7686,7687, + 3,1456,728,0,7687,7688,5,452,0,0,7688,7690,3,796,398,0,7689,7691, + 3,708,354,0,7690,7689,1,0,0,0,7690,7691,1,0,0,0,7691,795,1,0,0,0, + 7692,7697,3,798,399,0,7693,7694,5,6,0,0,7694,7696,3,798,399,0,7695, + 7693,1,0,0,0,7696,7699,1,0,0,0,7697,7695,1,0,0,0,7697,7698,1,0,0, + 0,7698,797,1,0,0,0,7699,7697,1,0,0,0,7700,7701,3,1488,744,0,7701, + 799,1,0,0,0,7702,7703,5,138,0,0,7703,7704,5,451,0,0,7704,7705,3, + 1434,717,0,7705,7706,5,333,0,0,7706,7707,3,494,247,0,7707,7781,1, + 0,0,0,7708,7709,5,138,0,0,7709,7710,5,451,0,0,7710,7711,3,1434,717, + 0,7711,7712,5,164,0,0,7712,7713,3,1456,728,0,7713,7781,1,0,0,0,7714, + 7715,5,138,0,0,7715,7716,5,451,0,0,7716,7717,3,1434,717,0,7717,7718, + 5,305,0,0,7718,7720,5,452,0,0,7719,7721,3,708,354,0,7720,7719,1, + 0,0,0,7720,7721,1,0,0,0,7721,7781,1,0,0,0,7722,7723,5,138,0,0,7723, + 7724,5,451,0,0,7724,7725,3,1434,717,0,7725,7726,5,333,0,0,7726,7727, + 5,452,0,0,7727,7729,3,796,398,0,7728,7730,3,708,354,0,7729,7728, + 1,0,0,0,7729,7730,1,0,0,0,7730,7781,1,0,0,0,7731,7732,5,138,0,0, + 7732,7733,5,451,0,0,7733,7734,3,1434,717,0,7734,7735,5,133,0,0,7735, + 7736,5,452,0,0,7736,7738,3,796,398,0,7737,7739,3,708,354,0,7738, + 7737,1,0,0,0,7738,7739,1,0,0,0,7739,7781,1,0,0,0,7740,7741,5,138, + 0,0,7741,7742,5,451,0,0,7742,7743,3,1434,717,0,7743,7744,5,191,0, + 0,7744,7745,5,452,0,0,7745,7747,3,796,398,0,7746,7748,3,708,354, + 0,7747,7746,1,0,0,0,7747,7748,1,0,0,0,7748,7781,1,0,0,0,7749,7750, + 5,138,0,0,7750,7751,5,451,0,0,7751,7752,3,1434,717,0,7752,7753,5, + 193,0,0,7753,7781,1,0,0,0,7754,7755,5,138,0,0,7755,7756,5,451,0, + 0,7756,7757,3,1434,717,0,7757,7758,5,186,0,0,7758,7781,1,0,0,0,7759, + 7760,5,138,0,0,7760,7761,5,451,0,0,7761,7762,3,1434,717,0,7762,7763, + 5,333,0,0,7763,7764,3,494,247,0,7764,7781,1,0,0,0,7765,7766,5,138, + 0,0,7766,7767,5,451,0,0,7767,7768,3,1434,717,0,7768,7769,5,465,0, + 0,7769,7770,5,2,0,0,7770,7771,3,506,253,0,7771,7772,5,3,0,0,7772, + 7781,1,0,0,0,7773,7774,5,138,0,0,7774,7775,5,451,0,0,7775,7776,3, + 1434,717,0,7776,7777,5,282,0,0,7777,7778,5,94,0,0,7778,7779,3,1468, + 734,0,7779,7781,1,0,0,0,7780,7702,1,0,0,0,7780,7708,1,0,0,0,7780, + 7714,1,0,0,0,7780,7722,1,0,0,0,7780,7731,1,0,0,0,7780,7740,1,0,0, + 0,7780,7749,1,0,0,0,7780,7754,1,0,0,0,7780,7759,1,0,0,0,7780,7765, + 1,0,0,0,7780,7773,1,0,0,0,7781,801,1,0,0,0,7782,7784,5,46,0,0,7783, + 7785,3,656,328,0,7784,7783,1,0,0,0,7784,7785,1,0,0,0,7785,7786,1, + 0,0,0,7786,7787,5,321,0,0,7787,7788,3,1434,717,0,7788,7789,5,36, + 0,0,7789,7790,5,80,0,0,7790,7791,3,812,406,0,7791,7792,5,94,0,0, + 7792,7794,3,1410,705,0,7793,7795,3,1142,571,0,7794,7793,1,0,0,0, + 7794,7795,1,0,0,0,7795,7796,1,0,0,0,7796,7798,5,57,0,0,7797,7799, + 3,814,407,0,7798,7797,1,0,0,0,7798,7799,1,0,0,0,7799,7800,1,0,0, + 0,7800,7801,3,804,402,0,7801,803,1,0,0,0,7802,7809,5,270,0,0,7803, + 7809,3,808,404,0,7804,7805,5,2,0,0,7805,7806,3,806,403,0,7806,7807, + 5,3,0,0,7807,7809,1,0,0,0,7808,7802,1,0,0,0,7808,7803,1,0,0,0,7808, + 7804,1,0,0,0,7809,805,1,0,0,0,7810,7812,3,810,405,0,7811,7810,1, + 0,0,0,7811,7812,1,0,0,0,7812,7819,1,0,0,0,7813,7815,5,7,0,0,7814, + 7816,3,810,405,0,7815,7814,1,0,0,0,7815,7816,1,0,0,0,7816,7818,1, + 0,0,0,7817,7813,1,0,0,0,7818,7821,1,0,0,0,7819,7817,1,0,0,0,7819, + 7820,1,0,0,0,7820,807,1,0,0,0,7821,7819,1,0,0,0,7822,7828,3,998, + 499,0,7823,7828,3,948,474,0,7824,7828,3,980,490,0,7825,7828,3,966, + 483,0,7826,7828,3,816,408,0,7827,7822,1,0,0,0,7827,7823,1,0,0,0, + 7827,7824,1,0,0,0,7827,7825,1,0,0,0,7827,7826,1,0,0,0,7828,809,1, + 0,0,0,7829,7830,3,808,404,0,7830,811,1,0,0,0,7831,7832,7,47,0,0, + 7832,813,1,0,0,0,7833,7834,7,48,0,0,7834,815,1,0,0,0,7835,7836,5, + 271,0,0,7836,7838,3,1472,736,0,7837,7839,3,818,409,0,7838,7837,1, + 0,0,0,7838,7839,1,0,0,0,7839,817,1,0,0,0,7840,7841,5,6,0,0,7841, + 7842,3,1456,728,0,7842,819,1,0,0,0,7843,7844,5,252,0,0,7844,7845, + 3,1472,736,0,7845,821,1,0,0,0,7846,7847,5,366,0,0,7847,7851,3,1472, + 736,0,7848,7849,5,366,0,0,7849,7851,5,9,0,0,7850,7846,1,0,0,0,7850, + 7848,1,0,0,0,7851,823,1,0,0,0,7852,7854,5,129,0,0,7853,7855,3,826, + 413,0,7854,7853,1,0,0,0,7854,7855,1,0,0,0,7855,7857,1,0,0,0,7856, + 7858,3,834,417,0,7857,7856,1,0,0,0,7857,7858,1,0,0,0,7858,7918,1, + 0,0,0,7859,7861,5,146,0,0,7860,7862,3,826,413,0,7861,7860,1,0,0, + 0,7861,7862,1,0,0,0,7862,7864,1,0,0,0,7863,7865,3,832,416,0,7864, + 7863,1,0,0,0,7864,7865,1,0,0,0,7865,7918,1,0,0,0,7866,7867,5,340, + 0,0,7867,7869,5,356,0,0,7868,7870,3,832,416,0,7869,7868,1,0,0,0, + 7869,7870,1,0,0,0,7870,7918,1,0,0,0,7871,7873,5,454,0,0,7872,7874, + 3,826,413,0,7873,7872,1,0,0,0,7873,7874,1,0,0,0,7874,7876,1,0,0, + 0,7875,7877,3,834,417,0,7876,7875,1,0,0,0,7876,7877,1,0,0,0,7877, + 7918,1,0,0,0,7878,7879,5,322,0,0,7879,7918,3,1472,736,0,7880,7882, + 5,308,0,0,7881,7883,5,322,0,0,7882,7881,1,0,0,0,7882,7883,1,0,0, + 0,7883,7884,1,0,0,0,7884,7918,3,1472,736,0,7885,7886,5,290,0,0,7886, + 7887,5,356,0,0,7887,7918,3,1456,728,0,7888,7889,5,161,0,0,7889,7890, + 5,291,0,0,7890,7918,3,1456,728,0,7891,7893,5,161,0,0,7892,7894,3, + 826,413,0,7893,7892,1,0,0,0,7893,7894,1,0,0,0,7894,7896,1,0,0,0, + 7895,7897,3,834,417,0,7896,7895,1,0,0,0,7896,7897,1,0,0,0,7897,7918, + 1,0,0,0,7898,7899,5,319,0,0,7899,7900,5,291,0,0,7900,7918,3,1456, + 728,0,7901,7903,5,319,0,0,7902,7904,3,826,413,0,7903,7902,1,0,0, + 0,7903,7904,1,0,0,0,7904,7905,1,0,0,0,7905,7907,5,94,0,0,7906,7908, + 5,322,0,0,7907,7906,1,0,0,0,7907,7908,1,0,0,0,7908,7909,1,0,0,0, + 7909,7918,3,1472,736,0,7910,7912,5,319,0,0,7911,7913,3,826,413,0, + 7912,7911,1,0,0,0,7912,7913,1,0,0,0,7913,7915,1,0,0,0,7914,7916, + 3,834,417,0,7915,7914,1,0,0,0,7915,7916,1,0,0,0,7916,7918,1,0,0, + 0,7917,7852,1,0,0,0,7917,7859,1,0,0,0,7917,7866,1,0,0,0,7917,7871, + 1,0,0,0,7917,7878,1,0,0,0,7917,7880,1,0,0,0,7917,7885,1,0,0,0,7917, + 7888,1,0,0,0,7917,7891,1,0,0,0,7917,7898,1,0,0,0,7917,7901,1,0,0, + 0,7917,7910,1,0,0,0,7918,825,1,0,0,0,7919,7920,7,49,0,0,7920,827, + 1,0,0,0,7921,7922,5,244,0,0,7922,7923,5,251,0,0,7923,7932,3,68,34, + 0,7924,7925,5,300,0,0,7925,7932,5,81,0,0,7926,7927,5,300,0,0,7927, + 7932,5,382,0,0,7928,7932,5,54,0,0,7929,7930,5,77,0,0,7930,7932,5, + 54,0,0,7931,7921,1,0,0,0,7931,7924,1,0,0,0,7931,7926,1,0,0,0,7931, + 7928,1,0,0,0,7931,7929,1,0,0,0,7932,829,1,0,0,0,7933,7940,3,828, + 414,0,7934,7936,5,6,0,0,7935,7934,1,0,0,0,7935,7936,1,0,0,0,7936, + 7937,1,0,0,0,7937,7939,3,828,414,0,7938,7935,1,0,0,0,7939,7942,1, + 0,0,0,7940,7938,1,0,0,0,7940,7941,1,0,0,0,7941,831,1,0,0,0,7942, + 7940,1,0,0,0,7943,7944,3,830,415,0,7944,833,1,0,0,0,7945,7947,5, + 33,0,0,7946,7948,5,269,0,0,7947,7946,1,0,0,0,7947,7948,1,0,0,0,7948, + 7949,1,0,0,0,7949,7950,5,153,0,0,7950,835,1,0,0,0,7951,7954,5,46, + 0,0,7952,7953,5,82,0,0,7953,7955,5,311,0,0,7954,7952,1,0,0,0,7954, + 7955,1,0,0,0,7955,7957,1,0,0,0,7956,7958,3,190,95,0,7957,7956,1, + 0,0,0,7957,7958,1,0,0,0,7958,7976,1,0,0,0,7959,7960,5,376,0,0,7960, + 7962,3,1406,703,0,7961,7963,3,242,121,0,7962,7961,1,0,0,0,7962,7963, + 1,0,0,0,7963,7965,1,0,0,0,7964,7966,3,134,67,0,7965,7964,1,0,0,0, + 7965,7966,1,0,0,0,7966,7977,1,0,0,0,7967,7968,5,303,0,0,7968,7969, + 5,376,0,0,7969,7970,3,1406,703,0,7970,7971,5,2,0,0,7971,7972,3,244, + 122,0,7972,7974,5,3,0,0,7973,7975,3,134,67,0,7974,7973,1,0,0,0,7974, + 7975,1,0,0,0,7975,7977,1,0,0,0,7976,7959,1,0,0,0,7976,7967,1,0,0, + 0,7977,7978,1,0,0,0,7978,7979,5,36,0,0,7979,7981,3,998,499,0,7980, + 7982,3,838,419,0,7981,7980,1,0,0,0,7981,7982,1,0,0,0,7982,837,1, + 0,0,0,7983,7985,5,105,0,0,7984,7986,7,50,0,0,7985,7984,1,0,0,0,7985, + 7986,1,0,0,0,7986,7987,1,0,0,0,7987,7988,5,42,0,0,7988,7989,5,279, + 0,0,7989,839,1,0,0,0,7990,7991,5,253,0,0,7991,7992,3,1438,719,0, + 7992,841,1,0,0,0,7993,7994,5,46,0,0,7994,7995,5,175,0,0,7995,7997, + 3,1416,708,0,7996,7998,3,14,7,0,7997,7996,1,0,0,0,7997,7998,1,0, + 0,0,7998,8000,1,0,0,0,7999,8001,3,844,422,0,8000,7999,1,0,0,0,8000, + 8001,1,0,0,0,8001,843,1,0,0,0,8002,8003,3,846,423,0,8003,845,1,0, + 0,0,8004,8006,3,848,424,0,8005,8004,1,0,0,0,8006,8007,1,0,0,0,8007, + 8005,1,0,0,0,8007,8008,1,0,0,0,8008,847,1,0,0,0,8009,8011,3,850, + 425,0,8010,8012,3,852,426,0,8011,8010,1,0,0,0,8011,8012,1,0,0,0, + 8012,8016,1,0,0,0,8013,8017,3,1462,731,0,8014,8017,3,72,36,0,8015, + 8017,5,53,0,0,8016,8013,1,0,0,0,8016,8014,1,0,0,0,8016,8015,1,0, + 0,0,8017,849,1,0,0,0,8018,8019,5,164,0,0,8019,8027,5,74,0,0,8020, + 8027,5,194,0,0,8021,8027,5,255,0,0,8022,8027,5,282,0,0,8023,8027, + 5,351,0,0,8024,8027,5,353,0,0,8025,8027,3,1490,745,0,8026,8018,1, + 0,0,0,8026,8020,1,0,0,0,8026,8021,1,0,0,0,8026,8022,1,0,0,0,8026, + 8023,1,0,0,0,8026,8024,1,0,0,0,8026,8025,1,0,0,0,8027,851,1,0,0, + 0,8028,8029,5,10,0,0,8029,853,1,0,0,0,8030,8031,5,138,0,0,8031,8032, + 5,175,0,0,8032,8044,3,1418,709,0,8033,8034,5,333,0,0,8034,8035,5, + 351,0,0,8035,8037,3,1398,699,0,8036,8033,1,0,0,0,8036,8037,1,0,0, + 0,8037,8045,1,0,0,0,8038,8040,5,105,0,0,8039,8038,1,0,0,0,8039,8040, + 1,0,0,0,8040,8041,1,0,0,0,8041,8043,3,844,422,0,8042,8039,1,0,0, + 0,8042,8043,1,0,0,0,8043,8045,1,0,0,0,8044,8036,1,0,0,0,8044,8042, + 1,0,0,0,8045,855,1,0,0,0,8046,8047,5,138,0,0,8047,8048,5,175,0,0, + 8048,8050,3,1418,709,0,8049,8051,3,88,44,0,8050,8049,1,0,0,0,8050, + 8051,1,0,0,0,8051,857,1,0,0,0,8052,8057,3,860,430,0,8053,8054,5, + 6,0,0,8054,8056,3,860,430,0,8055,8053,1,0,0,0,8056,8059,1,0,0,0, + 8057,8055,1,0,0,0,8057,8058,1,0,0,0,8058,859,1,0,0,0,8059,8057,1, + 0,0,0,8060,8061,5,209,0,0,8061,861,1,0,0,0,8062,8063,5,138,0,0,8063, + 8064,5,108,0,0,8064,8065,3,556,278,0,8065,8066,5,305,0,0,8066,8067, + 5,375,0,0,8067,863,1,0,0,0,8068,8069,5,138,0,0,8069,8070,5,349,0, + 0,8070,8071,7,22,0,0,8071,8072,3,58,29,0,8072,865,1,0,0,0,8073,8074, + 5,46,0,0,8074,8075,5,189,0,0,8075,8077,3,556,278,0,8076,8078,3,870, + 435,0,8077,8076,1,0,0,0,8077,8078,1,0,0,0,8078,8079,1,0,0,0,8079, + 8080,3,1166,583,0,8080,8081,3,216,108,0,8081,867,1,0,0,0,8082,8083, + 5,138,0,0,8083,8084,5,189,0,0,8084,8106,3,556,278,0,8085,8107,3, + 122,61,0,8086,8087,5,191,0,0,8087,8088,5,77,0,0,8088,8107,5,78,0, + 0,8089,8090,5,333,0,0,8090,8091,5,77,0,0,8091,8107,5,78,0,0,8092, + 8093,5,133,0,0,8093,8107,3,236,118,0,8094,8095,5,191,0,0,8095,8097, + 5,45,0,0,8096,8098,3,746,373,0,8097,8096,1,0,0,0,8097,8098,1,0,0, + 0,8098,8099,1,0,0,0,8099,8101,3,1434,717,0,8100,8102,3,124,62,0, + 8101,8100,1,0,0,0,8101,8102,1,0,0,0,8102,8107,1,0,0,0,8103,8104, + 5,372,0,0,8104,8105,5,45,0,0,8105,8107,3,1434,717,0,8106,8085,1, + 0,0,0,8106,8086,1,0,0,0,8106,8089,1,0,0,0,8106,8092,1,0,0,0,8106, + 8094,1,0,0,0,8106,8103,1,0,0,0,8107,869,1,0,0,0,8108,8109,5,36,0, + 0,8109,871,1,0,0,0,8110,8111,5,138,0,0,8111,8112,5,355,0,0,8112, + 8113,5,325,0,0,8113,8114,5,185,0,0,8114,8115,3,556,278,0,8115,8116, + 3,494,247,0,8116,873,1,0,0,0,8117,8118,5,138,0,0,8118,8119,5,355, + 0,0,8119,8120,5,325,0,0,8120,8121,5,163,0,0,8121,8122,3,556,278, + 0,8122,8123,5,133,0,0,8123,8124,5,257,0,0,8124,8125,5,62,0,0,8125, + 8126,3,1414,707,0,8126,8127,3,876,438,0,8127,8128,3,550,275,0,8128, + 8181,1,0,0,0,8129,8130,5,138,0,0,8130,8131,5,355,0,0,8131,8132,5, + 325,0,0,8132,8133,5,163,0,0,8133,8134,3,556,278,0,8134,8135,5,138, + 0,0,8135,8136,5,257,0,0,8136,8137,5,62,0,0,8137,8138,3,1414,707, + 0,8138,8139,3,876,438,0,8139,8140,3,550,275,0,8140,8181,1,0,0,0, + 8141,8142,5,138,0,0,8142,8143,5,355,0,0,8143,8144,5,325,0,0,8144, + 8145,5,163,0,0,8145,8146,3,556,278,0,8146,8147,5,138,0,0,8147,8148, + 5,257,0,0,8148,8149,5,311,0,0,8149,8150,3,556,278,0,8150,8151,3, + 876,438,0,8151,8152,3,556,278,0,8152,8181,1,0,0,0,8153,8154,5,138, + 0,0,8154,8155,5,355,0,0,8155,8156,5,325,0,0,8156,8157,5,163,0,0, + 8157,8158,3,556,278,0,8158,8159,5,138,0,0,8159,8160,5,257,0,0,8160, + 8161,5,62,0,0,8161,8162,3,1414,707,0,8162,8163,5,311,0,0,8163,8164, + 3,556,278,0,8164,8165,3,876,438,0,8165,8166,3,556,278,0,8166,8181, + 1,0,0,0,8167,8168,5,138,0,0,8168,8169,5,355,0,0,8169,8170,5,325, + 0,0,8170,8171,5,163,0,0,8171,8172,3,556,278,0,8172,8173,5,191,0, + 0,8173,8175,5,257,0,0,8174,8176,3,746,373,0,8175,8174,1,0,0,0,8175, + 8176,1,0,0,0,8176,8177,1,0,0,0,8177,8178,5,62,0,0,8178,8179,3,1414, + 707,0,8179,8181,1,0,0,0,8180,8117,1,0,0,0,8180,8129,1,0,0,0,8180, + 8141,1,0,0,0,8180,8153,1,0,0,0,8180,8167,1,0,0,0,8181,875,1,0,0, + 0,8182,8183,5,105,0,0,8183,877,1,0,0,0,8184,8186,5,46,0,0,8185,8187, + 3,522,261,0,8186,8185,1,0,0,0,8186,8187,1,0,0,0,8187,8188,1,0,0, + 0,8188,8189,5,168,0,0,8189,8190,3,556,278,0,8190,8191,5,62,0,0,8191, + 8192,3,1456,728,0,8192,8193,5,94,0,0,8193,8194,3,1456,728,0,8194, + 8195,5,64,0,0,8195,8196,3,556,278,0,8196,879,1,0,0,0,8197,8199,5, + 158,0,0,8198,8200,3,906,453,0,8199,8198,1,0,0,0,8199,8200,1,0,0, + 0,8200,8201,1,0,0,0,8201,8203,3,1404,702,0,8202,8204,3,884,442,0, + 8203,8202,1,0,0,0,8203,8204,1,0,0,0,8204,8216,1,0,0,0,8205,8207, + 5,158,0,0,8206,8208,3,906,453,0,8207,8206,1,0,0,0,8207,8208,1,0, + 0,0,8208,8216,1,0,0,0,8209,8210,5,158,0,0,8210,8211,3,882,441,0, + 8211,8213,3,1404,702,0,8212,8214,3,884,442,0,8213,8212,1,0,0,0,8213, + 8214,1,0,0,0,8214,8216,1,0,0,0,8215,8197,1,0,0,0,8215,8205,1,0,0, + 0,8215,8209,1,0,0,0,8216,881,1,0,0,0,8217,8218,5,2,0,0,8218,8223, + 3,906,453,0,8219,8220,5,6,0,0,8220,8222,3,906,453,0,8221,8219,1, + 0,0,0,8222,8225,1,0,0,0,8223,8221,1,0,0,0,8223,8224,1,0,0,0,8224, + 8226,1,0,0,0,8225,8223,1,0,0,0,8226,8227,5,3,0,0,8227,883,1,0,0, + 0,8228,8229,5,100,0,0,8229,8230,3,1434,717,0,8230,885,1,0,0,0,8231, + 8233,5,370,0,0,8232,8234,3,912,456,0,8233,8232,1,0,0,0,8233,8234, + 1,0,0,0,8234,8236,1,0,0,0,8235,8237,3,914,457,0,8236,8235,1,0,0, + 0,8236,8237,1,0,0,0,8237,8239,1,0,0,0,8238,8240,3,906,453,0,8239, + 8238,1,0,0,0,8239,8240,1,0,0,0,8240,8242,1,0,0,0,8241,8243,3,900, + 450,0,8242,8241,1,0,0,0,8242,8243,1,0,0,0,8243,8245,1,0,0,0,8244, + 8246,3,922,461,0,8245,8244,1,0,0,0,8245,8246,1,0,0,0,8246,8258,1, + 0,0,0,8247,8252,5,370,0,0,8248,8249,5,2,0,0,8249,8250,3,890,445, + 0,8250,8251,5,3,0,0,8251,8253,1,0,0,0,8252,8248,1,0,0,0,8252,8253, + 1,0,0,0,8253,8255,1,0,0,0,8254,8256,3,922,461,0,8255,8254,1,0,0, + 0,8255,8256,1,0,0,0,8256,8258,1,0,0,0,8257,8231,1,0,0,0,8257,8247, + 1,0,0,0,8258,887,1,0,0,0,8259,8261,3,892,446,0,8260,8262,3,906,453, + 0,8261,8260,1,0,0,0,8261,8262,1,0,0,0,8262,8264,1,0,0,0,8263,8265, + 3,922,461,0,8264,8263,1,0,0,0,8264,8265,1,0,0,0,8265,8274,1,0,0, + 0,8266,8267,3,892,446,0,8267,8268,5,2,0,0,8268,8269,3,902,451,0, + 8269,8271,5,3,0,0,8270,8272,3,922,461,0,8271,8270,1,0,0,0,8271,8272, + 1,0,0,0,8272,8274,1,0,0,0,8273,8259,1,0,0,0,8273,8266,1,0,0,0,8274, + 889,1,0,0,0,8275,8280,3,894,447,0,8276,8277,5,6,0,0,8277,8279,3, + 894,447,0,8278,8276,1,0,0,0,8279,8282,1,0,0,0,8280,8278,1,0,0,0, + 8280,8281,1,0,0,0,8281,891,1,0,0,0,8282,8280,1,0,0,0,8283,8284,7, + 51,0,0,8284,893,1,0,0,0,8285,8287,3,896,448,0,8286,8288,3,898,449, + 0,8287,8286,1,0,0,0,8287,8288,1,0,0,0,8288,895,1,0,0,0,8289,8292, + 3,1486,743,0,8290,8292,3,892,446,0,8291,8289,1,0,0,0,8291,8290,1, + 0,0,0,8292,897,1,0,0,0,8293,8296,3,72,36,0,8294,8296,3,320,160,0, + 8295,8293,1,0,0,0,8295,8294,1,0,0,0,8296,899,1,0,0,0,8297,8298,3, + 892,446,0,8298,901,1,0,0,0,8299,8304,3,904,452,0,8300,8301,5,6,0, + 0,8301,8303,3,904,452,0,8302,8300,1,0,0,0,8303,8306,1,0,0,0,8304, + 8302,1,0,0,0,8304,8305,1,0,0,0,8305,903,1,0,0,0,8306,8304,1,0,0, + 0,8307,8311,3,906,453,0,8308,8311,3,908,454,0,8309,8311,3,910,455, + 0,8310,8307,1,0,0,0,8310,8308,1,0,0,0,8310,8309,1,0,0,0,8311,905, + 1,0,0,0,8312,8314,5,128,0,0,8313,8315,7,52,0,0,8314,8313,1,0,0,0, + 8314,8315,1,0,0,0,8315,907,1,0,0,0,8316,8318,5,547,0,0,8317,8319, + 7,52,0,0,8318,8317,1,0,0,0,8318,8319,1,0,0,0,8319,909,1,0,0,0,8320, + 8323,5,548,0,0,8321,8324,3,320,160,0,8322,8324,3,1456,728,0,8323, + 8321,1,0,0,0,8323,8322,1,0,0,0,8324,911,1,0,0,0,8325,8326,5,113, + 0,0,8326,913,1,0,0,0,8327,8328,5,112,0,0,8328,915,1,0,0,0,8329,8330, + 5,2,0,0,8330,8331,3,244,122,0,8331,8332,5,3,0,0,8332,917,1,0,0,0, + 8333,8335,3,1404,702,0,8334,8336,3,916,458,0,8335,8334,1,0,0,0,8335, + 8336,1,0,0,0,8336,919,1,0,0,0,8337,8342,3,918,459,0,8338,8339,5, + 6,0,0,8339,8341,3,918,459,0,8340,8338,1,0,0,0,8341,8344,1,0,0,0, + 8342,8340,1,0,0,0,8342,8343,1,0,0,0,8343,921,1,0,0,0,8344,8342,1, + 0,0,0,8345,8346,3,920,460,0,8346,923,1,0,0,0,8347,8348,5,203,0,0, + 8348,8366,3,926,463,0,8349,8350,5,203,0,0,8350,8352,3,892,446,0, + 8351,8353,3,906,453,0,8352,8351,1,0,0,0,8352,8353,1,0,0,0,8353,8354, + 1,0,0,0,8354,8355,3,926,463,0,8355,8366,1,0,0,0,8356,8357,5,203, + 0,0,8357,8358,5,128,0,0,8358,8366,3,926,463,0,8359,8360,5,203,0, + 0,8360,8361,5,2,0,0,8361,8362,3,928,464,0,8362,8363,5,3,0,0,8363, + 8364,3,926,463,0,8364,8366,1,0,0,0,8365,8347,1,0,0,0,8365,8349,1, + 0,0,0,8365,8356,1,0,0,0,8365,8359,1,0,0,0,8366,925,1,0,0,0,8367, + 8377,3,998,499,0,8368,8377,3,948,474,0,8369,8377,3,980,490,0,8370, + 8377,3,966,483,0,8371,8377,3,990,495,0,8372,8377,3,292,146,0,8373, + 8377,3,298,149,0,8374,8377,3,304,152,0,8375,8377,3,942,471,0,8376, + 8367,1,0,0,0,8376,8368,1,0,0,0,8376,8369,1,0,0,0,8376,8370,1,0,0, + 0,8376,8371,1,0,0,0,8376,8372,1,0,0,0,8376,8373,1,0,0,0,8376,8374, + 1,0,0,0,8376,8375,1,0,0,0,8377,927,1,0,0,0,8378,8383,3,930,465,0, + 8379,8380,5,6,0,0,8380,8382,3,930,465,0,8381,8379,1,0,0,0,8382,8385, + 1,0,0,0,8383,8381,1,0,0,0,8383,8384,1,0,0,0,8384,929,1,0,0,0,8385, + 8383,1,0,0,0,8386,8388,3,932,466,0,8387,8389,3,934,467,0,8388,8387, + 1,0,0,0,8388,8389,1,0,0,0,8389,931,1,0,0,0,8390,8393,3,1486,743, + 0,8391,8393,3,892,446,0,8392,8390,1,0,0,0,8392,8391,1,0,0,0,8393, + 933,1,0,0,0,8394,8397,3,72,36,0,8395,8397,3,320,160,0,8396,8394, + 1,0,0,0,8396,8395,1,0,0,0,8397,935,1,0,0,0,8398,8399,5,290,0,0,8399, + 8401,3,1434,717,0,8400,8402,3,938,469,0,8401,8400,1,0,0,0,8401,8402, + 1,0,0,0,8402,8403,1,0,0,0,8403,8404,5,36,0,0,8404,8405,3,940,470, + 0,8405,937,1,0,0,0,8406,8407,5,2,0,0,8407,8408,3,1340,670,0,8408, + 8409,5,3,0,0,8409,939,1,0,0,0,8410,8415,3,998,499,0,8411,8415,3, + 948,474,0,8412,8415,3,980,490,0,8413,8415,3,966,483,0,8414,8410, + 1,0,0,0,8414,8411,1,0,0,0,8414,8412,1,0,0,0,8414,8413,1,0,0,0,8415, + 941,1,0,0,0,8416,8417,5,202,0,0,8417,8419,3,1434,717,0,8418,8420, + 3,944,472,0,8419,8418,1,0,0,0,8419,8420,1,0,0,0,8420,8440,1,0,0, + 0,8421,8423,5,46,0,0,8422,8424,3,190,95,0,8423,8422,1,0,0,0,8423, + 8424,1,0,0,0,8424,8425,1,0,0,0,8425,8427,5,92,0,0,8426,8428,3,514, + 257,0,8427,8426,1,0,0,0,8427,8428,1,0,0,0,8428,8429,1,0,0,0,8429, + 8430,3,294,147,0,8430,8431,5,36,0,0,8431,8432,5,202,0,0,8432,8434, + 3,1434,717,0,8433,8435,3,944,472,0,8434,8433,1,0,0,0,8434,8435,1, + 0,0,0,8435,8437,1,0,0,0,8436,8438,3,296,148,0,8437,8436,1,0,0,0, + 8437,8438,1,0,0,0,8438,8440,1,0,0,0,8439,8416,1,0,0,0,8439,8421, + 1,0,0,0,8440,943,1,0,0,0,8441,8442,5,2,0,0,8442,8443,3,1326,663, + 0,8443,8444,5,3,0,0,8444,945,1,0,0,0,8445,8447,5,177,0,0,8446,8448, + 5,290,0,0,8447,8446,1,0,0,0,8447,8448,1,0,0,0,8448,8451,1,0,0,0, + 8449,8452,3,1434,717,0,8450,8452,5,30,0,0,8451,8449,1,0,0,0,8451, + 8450,1,0,0,0,8452,947,1,0,0,0,8453,8455,3,1024,512,0,8454,8453,1, + 0,0,0,8454,8455,1,0,0,0,8455,8456,1,0,0,0,8456,8457,5,241,0,0,8457, + 8458,5,71,0,0,8458,8459,3,950,475,0,8459,8461,3,952,476,0,8460,8462, + 3,960,480,0,8461,8460,1,0,0,0,8461,8462,1,0,0,0,8462,8464,1,0,0, + 0,8463,8465,3,964,482,0,8464,8463,1,0,0,0,8464,8465,1,0,0,0,8465, + 949,1,0,0,0,8466,8469,3,1404,702,0,8467,8468,5,36,0,0,8468,8470, + 3,1472,736,0,8469,8467,1,0,0,0,8469,8470,1,0,0,0,8470,951,1,0,0, + 0,8471,8472,5,2,0,0,8472,8473,3,956,478,0,8473,8474,5,3,0,0,8474, + 8476,1,0,0,0,8475,8471,1,0,0,0,8475,8476,1,0,0,0,8476,8481,1,0,0, + 0,8477,8478,5,463,0,0,8478,8479,3,954,477,0,8479,8480,5,450,0,0, + 8480,8482,1,0,0,0,8481,8477,1,0,0,0,8481,8482,1,0,0,0,8482,8485, + 1,0,0,0,8483,8486,3,1692,846,0,8484,8486,3,998,499,0,8485,8483,1, + 0,0,0,8485,8484,1,0,0,0,8486,953,1,0,0,0,8487,8488,7,53,0,0,8488, + 955,1,0,0,0,8489,8494,3,958,479,0,8490,8491,5,6,0,0,8491,8493,3, + 958,479,0,8492,8490,1,0,0,0,8493,8496,1,0,0,0,8494,8492,1,0,0,0, + 8494,8495,1,0,0,0,8495,957,1,0,0,0,8496,8494,1,0,0,0,8497,8498,3, + 1430,715,0,8498,8499,3,1380,690,0,8499,959,1,0,0,0,8500,8501,5,80, + 0,0,8501,8503,5,464,0,0,8502,8504,3,962,481,0,8503,8502,1,0,0,0, + 8503,8504,1,0,0,0,8504,8505,1,0,0,0,8505,8513,5,57,0,0,8506,8507, + 5,369,0,0,8507,8508,5,333,0,0,8508,8510,3,982,491,0,8509,8511,3, + 1142,571,0,8510,8509,1,0,0,0,8510,8511,1,0,0,0,8511,8514,1,0,0,0, + 8512,8514,5,270,0,0,8513,8506,1,0,0,0,8513,8512,1,0,0,0,8514,961, + 1,0,0,0,8515,8516,5,2,0,0,8516,8517,3,634,317,0,8517,8519,5,3,0, + 0,8518,8520,3,1142,571,0,8519,8518,1,0,0,0,8519,8520,1,0,0,0,8520, + 8525,1,0,0,0,8521,8522,5,80,0,0,8522,8523,5,45,0,0,8523,8525,3,1434, + 717,0,8524,8515,1,0,0,0,8524,8521,1,0,0,0,8525,963,1,0,0,0,8526, + 8527,5,87,0,0,8527,8528,3,1384,692,0,8528,965,1,0,0,0,8529,8531, + 3,1024,512,0,8530,8529,1,0,0,0,8530,8531,1,0,0,0,8531,8532,1,0,0, + 0,8532,8533,5,182,0,0,8533,8534,5,64,0,0,8534,8536,3,1126,563,0, + 8535,8537,3,968,484,0,8536,8535,1,0,0,0,8536,8537,1,0,0,0,8537,8539, + 1,0,0,0,8538,8540,3,1144,572,0,8539,8538,1,0,0,0,8539,8540,1,0,0, + 0,8540,8542,1,0,0,0,8541,8543,3,964,482,0,8542,8541,1,0,0,0,8542, + 8543,1,0,0,0,8543,967,1,0,0,0,8544,8545,5,100,0,0,8545,8546,3,1102, + 551,0,8546,969,1,0,0,0,8547,8549,5,256,0,0,8548,8550,3,1032,516, + 0,8549,8548,1,0,0,0,8549,8550,1,0,0,0,8550,8551,1,0,0,0,8551,8553, + 3,1122,561,0,8552,8554,3,972,486,0,8553,8552,1,0,0,0,8553,8554,1, + 0,0,0,8554,8556,1,0,0,0,8555,8557,3,976,488,0,8556,8555,1,0,0,0, + 8556,8557,1,0,0,0,8557,971,1,0,0,0,8558,8559,5,68,0,0,8559,8560, + 3,974,487,0,8560,8561,5,263,0,0,8561,973,1,0,0,0,8562,8563,5,131, + 0,0,8563,8575,7,54,0,0,8564,8565,5,414,0,0,8565,8575,7,54,0,0,8566, + 8571,5,334,0,0,8567,8568,5,369,0,0,8568,8572,5,201,0,0,8569,8570, + 5,414,0,0,8570,8572,5,201,0,0,8571,8567,1,0,0,0,8571,8569,1,0,0, + 0,8571,8572,1,0,0,0,8572,8575,1,0,0,0,8573,8575,5,201,0,0,8574,8562, + 1,0,0,0,8574,8564,1,0,0,0,8574,8566,1,0,0,0,8574,8573,1,0,0,0,8575, + 975,1,0,0,0,8576,8577,5,272,0,0,8577,977,1,0,0,0,8578,8582,5,272, + 0,0,8579,8580,5,465,0,0,8580,8582,5,466,0,0,8581,8578,1,0,0,0,8581, + 8579,1,0,0,0,8582,979,1,0,0,0,8583,8585,3,1024,512,0,8584,8583,1, + 0,0,0,8584,8585,1,0,0,0,8585,8586,1,0,0,0,8586,8587,5,369,0,0,8587, + 8588,3,1126,563,0,8588,8589,5,333,0,0,8589,8591,3,982,491,0,8590, + 8592,3,1100,550,0,8591,8590,1,0,0,0,8591,8592,1,0,0,0,8592,8594, + 1,0,0,0,8593,8595,3,1144,572,0,8594,8593,1,0,0,0,8594,8595,1,0,0, + 0,8595,8597,1,0,0,0,8596,8598,3,964,482,0,8597,8596,1,0,0,0,8597, + 8598,1,0,0,0,8598,981,1,0,0,0,8599,8604,3,984,492,0,8600,8601,5, + 6,0,0,8601,8603,3,984,492,0,8602,8600,1,0,0,0,8603,8606,1,0,0,0, + 8604,8602,1,0,0,0,8604,8605,1,0,0,0,8605,983,1,0,0,0,8606,8604,1, + 0,0,0,8607,8608,3,986,493,0,8608,8609,5,10,0,0,8609,8610,3,1210, + 605,0,8610,8626,1,0,0,0,8611,8612,5,2,0,0,8612,8613,3,988,494,0, + 8613,8614,5,3,0,0,8614,8623,5,10,0,0,8615,8617,5,414,0,0,8616,8615, + 1,0,0,0,8616,8617,1,0,0,0,8617,8618,1,0,0,0,8618,8624,3,1210,605, + 0,8619,8620,5,2,0,0,8620,8621,3,1004,502,0,8621,8622,5,3,0,0,8622, + 8624,1,0,0,0,8623,8616,1,0,0,0,8623,8619,1,0,0,0,8624,8626,1,0,0, + 0,8625,8607,1,0,0,0,8625,8611,1,0,0,0,8626,985,1,0,0,0,8627,8628, + 3,1430,715,0,8628,8629,3,1380,690,0,8629,987,1,0,0,0,8630,8635,3, + 986,493,0,8631,8632,5,6,0,0,8632,8634,3,986,493,0,8633,8631,1,0, + 0,0,8634,8637,1,0,0,0,8635,8633,1,0,0,0,8635,8636,1,0,0,0,8636,989, + 1,0,0,0,8637,8635,1,0,0,0,8638,8639,5,178,0,0,8639,8640,3,992,496, + 0,8640,8641,3,994,497,0,8641,8642,5,172,0,0,8642,8643,3,996,498, + 0,8643,8644,5,62,0,0,8644,8645,3,998,499,0,8645,991,1,0,0,0,8646, + 8647,3,1434,717,0,8647,993,1,0,0,0,8648,8649,5,269,0,0,8649,8654, + 5,324,0,0,8650,8654,5,324,0,0,8651,8654,5,107,0,0,8652,8654,5,240, + 0,0,8653,8648,1,0,0,0,8653,8650,1,0,0,0,8653,8651,1,0,0,0,8653,8652, + 1,0,0,0,8654,8657,1,0,0,0,8655,8653,1,0,0,0,8655,8656,1,0,0,0,8656, + 995,1,0,0,0,8657,8655,1,0,0,0,8658,8664,1,0,0,0,8659,8660,5,105, + 0,0,8660,8664,5,217,0,0,8661,8662,5,379,0,0,8662,8664,5,217,0,0, + 8663,8658,1,0,0,0,8663,8659,1,0,0,0,8663,8661,1,0,0,0,8664,997,1, + 0,0,0,8665,8668,3,1002,501,0,8666,8668,3,1000,500,0,8667,8665,1, + 0,0,0,8667,8666,1,0,0,0,8668,999,1,0,0,0,8669,8670,5,2,0,0,8670, + 8671,3,1002,501,0,8671,8672,5,3,0,0,8672,8678,1,0,0,0,8673,8674, + 5,2,0,0,8674,8675,3,1000,500,0,8675,8676,5,3,0,0,8676,8678,1,0,0, + 0,8677,8669,1,0,0,0,8677,8673,1,0,0,0,8678,1001,1,0,0,0,8679,8681, + 3,1004,502,0,8680,8682,3,1040,520,0,8681,8680,1,0,0,0,8681,8682, + 1,0,0,0,8682,8691,1,0,0,0,8683,8685,3,1086,543,0,8684,8686,3,1050, + 525,0,8685,8684,1,0,0,0,8685,8686,1,0,0,0,8686,8692,1,0,0,0,8687, + 8689,3,1048,524,0,8688,8690,3,1088,544,0,8689,8688,1,0,0,0,8689, + 8690,1,0,0,0,8690,8692,1,0,0,0,8691,8683,1,0,0,0,8691,8687,1,0,0, + 0,8691,8692,1,0,0,0,8692,8709,1,0,0,0,8693,8694,3,1012,506,0,8694, + 8696,3,1004,502,0,8695,8697,3,1040,520,0,8696,8695,1,0,0,0,8696, + 8697,1,0,0,0,8697,8706,1,0,0,0,8698,8700,3,1086,543,0,8699,8701, + 3,1050,525,0,8700,8699,1,0,0,0,8700,8701,1,0,0,0,8701,8707,1,0,0, + 0,8702,8704,3,1048,524,0,8703,8705,3,1088,544,0,8704,8703,1,0,0, + 0,8704,8705,1,0,0,0,8705,8707,1,0,0,0,8706,8698,1,0,0,0,8706,8702, + 1,0,0,0,8706,8707,1,0,0,0,8707,8709,1,0,0,0,8708,8679,1,0,0,0,8708, + 8693,1,0,0,0,8709,1003,1,0,0,0,8710,8713,3,1006,503,0,8711,8713, + 3,1000,500,0,8712,8710,1,0,0,0,8712,8711,1,0,0,0,8713,1005,1,0,0, + 0,8714,8730,5,88,0,0,8715,8717,3,1038,519,0,8716,8715,1,0,0,0,8716, + 8717,1,0,0,0,8717,8719,1,0,0,0,8718,8720,3,1026,513,0,8719,8718, + 1,0,0,0,8719,8720,1,0,0,0,8720,8722,1,0,0,0,8721,8723,3,1382,691, + 0,8722,8721,1,0,0,0,8722,8723,1,0,0,0,8723,8731,1,0,0,0,8724,8726, + 3,1036,518,0,8725,8724,1,0,0,0,8725,8726,1,0,0,0,8726,8728,1,0,0, + 0,8727,8729,3,1384,692,0,8728,8727,1,0,0,0,8728,8729,1,0,0,0,8729, + 8731,1,0,0,0,8730,8716,1,0,0,0,8730,8725,1,0,0,0,8731,8733,1,0,0, + 0,8732,8734,3,1026,513,0,8733,8732,1,0,0,0,8733,8734,1,0,0,0,8734, + 8736,1,0,0,0,8735,8737,3,1100,550,0,8736,8735,1,0,0,0,8736,8737, + 1,0,0,0,8737,8739,1,0,0,0,8738,8740,3,1142,571,0,8739,8738,1,0,0, + 0,8739,8740,1,0,0,0,8740,8742,1,0,0,0,8741,8743,3,1070,535,0,8742, + 8741,1,0,0,0,8742,8743,1,0,0,0,8743,8745,1,0,0,0,8744,8746,3,1084, + 542,0,8745,8744,1,0,0,0,8745,8746,1,0,0,0,8746,8748,1,0,0,0,8747, + 8749,3,1286,643,0,8748,8747,1,0,0,0,8748,8749,1,0,0,0,8749,8760, + 1,0,0,0,8750,8760,3,1098,549,0,8751,8752,5,92,0,0,8752,8760,3,1116, + 558,0,8753,8754,3,1000,500,0,8754,8757,3,1010,505,0,8755,8758,3, + 1006,503,0,8756,8758,3,1000,500,0,8757,8755,1,0,0,0,8757,8756,1, + 0,0,0,8758,8760,1,0,0,0,8759,8714,1,0,0,0,8759,8750,1,0,0,0,8759, + 8751,1,0,0,0,8759,8753,1,0,0,0,8760,8768,1,0,0,0,8761,8764,3,1010, + 505,0,8762,8765,3,1006,503,0,8763,8765,3,1000,500,0,8764,8762,1, + 0,0,0,8764,8763,1,0,0,0,8765,8767,1,0,0,0,8766,8761,1,0,0,0,8767, + 8770,1,0,0,0,8768,8766,1,0,0,0,8768,8769,1,0,0,0,8769,1007,1,0,0, + 0,8770,8768,1,0,0,0,8771,8775,5,97,0,0,8772,8775,5,70,0,0,8773,8775, + 5,59,0,0,8774,8771,1,0,0,0,8774,8772,1,0,0,0,8774,8773,1,0,0,0,8775, + 1009,1,0,0,0,8776,8778,3,1008,504,0,8777,8779,3,1034,517,0,8778, + 8777,1,0,0,0,8778,8779,1,0,0,0,8779,1011,1,0,0,0,8780,8782,5,105, + 0,0,8781,8783,5,303,0,0,8782,8781,1,0,0,0,8782,8783,1,0,0,0,8783, + 8784,1,0,0,0,8784,8785,3,1014,507,0,8785,1013,1,0,0,0,8786,8791, + 3,1016,508,0,8787,8788,5,6,0,0,8788,8790,3,1016,508,0,8789,8787, + 1,0,0,0,8790,8793,1,0,0,0,8791,8789,1,0,0,0,8791,8792,1,0,0,0,8792, + 1015,1,0,0,0,8793,8791,1,0,0,0,8794,8796,3,1434,717,0,8795,8797, + 3,916,458,0,8796,8795,1,0,0,0,8796,8797,1,0,0,0,8797,8798,1,0,0, + 0,8798,8800,5,36,0,0,8799,8801,3,1022,511,0,8800,8799,1,0,0,0,8800, + 8801,1,0,0,0,8801,8802,1,0,0,0,8802,8803,5,2,0,0,8803,8804,3,940, + 470,0,8804,8806,5,3,0,0,8805,8807,3,1018,509,0,8806,8805,1,0,0,0, + 8806,8807,1,0,0,0,8807,8809,1,0,0,0,8808,8810,3,1020,510,0,8809, + 8808,1,0,0,0,8809,8810,1,0,0,0,8810,1017,1,0,0,0,8811,8812,5,325, + 0,0,8812,8813,7,55,0,0,8813,8814,5,207,0,0,8814,8815,5,147,0,0,8815, + 8816,3,244,122,0,8816,8817,5,333,0,0,8817,8818,3,1430,715,0,8818, + 1019,1,0,0,0,8819,8820,5,173,0,0,8820,8821,3,244,122,0,8821,8822, + 5,333,0,0,8822,8828,3,1430,715,0,8823,8824,5,94,0,0,8824,8825,3, + 1434,717,0,8825,8826,5,53,0,0,8826,8827,3,1434,717,0,8827,8829,1, + 0,0,0,8828,8823,1,0,0,0,8828,8829,1,0,0,0,8829,8830,1,0,0,0,8830, + 8831,5,100,0,0,8831,8832,3,1430,715,0,8832,1021,1,0,0,0,8833,8837, + 5,259,0,0,8834,8835,5,77,0,0,8835,8837,5,259,0,0,8836,8833,1,0,0, + 0,8836,8834,1,0,0,0,8837,1023,1,0,0,0,8838,8839,3,1012,506,0,8839, + 1025,1,0,0,0,8840,8845,5,71,0,0,8841,8842,3,1028,514,0,8842,8843, + 3,1030,515,0,8843,8846,1,0,0,0,8844,8846,3,1672,836,0,8845,8841, + 1,0,0,0,8845,8844,1,0,0,0,8846,1027,1,0,0,0,8847,8850,1,0,0,0,8848, + 8850,5,346,0,0,8849,8847,1,0,0,0,8849,8848,1,0,0,0,8850,1029,1,0, + 0,0,8851,8853,7,56,0,0,8852,8851,1,0,0,0,8852,8853,1,0,0,0,8853, + 8854,1,0,0,0,8854,8856,7,25,0,0,8855,8857,3,1032,516,0,8856,8855, + 1,0,0,0,8856,8857,1,0,0,0,8857,8858,1,0,0,0,8858,8868,3,1402,701, + 0,8859,8861,5,367,0,0,8860,8862,3,1032,516,0,8861,8860,1,0,0,0,8861, + 8862,1,0,0,0,8862,8863,1,0,0,0,8863,8868,3,1402,701,0,8864,8865, + 5,92,0,0,8865,8868,3,1402,701,0,8866,8868,3,1402,701,0,8867,8852, + 1,0,0,0,8867,8859,1,0,0,0,8867,8864,1,0,0,0,8867,8866,1,0,0,0,8868, + 1031,1,0,0,0,8869,8870,5,92,0,0,8870,1033,1,0,0,0,8871,8872,7,57, + 0,0,8872,1035,1,0,0,0,8873,8879,5,56,0,0,8874,8875,5,80,0,0,8875, + 8876,5,2,0,0,8876,8877,3,1326,663,0,8877,8878,5,3,0,0,8878,8880, + 1,0,0,0,8879,8874,1,0,0,0,8879,8880,1,0,0,0,8880,1037,1,0,0,0,8881, + 8882,5,30,0,0,8882,1039,1,0,0,0,8883,8884,3,1042,521,0,8884,1041, + 1,0,0,0,8885,8886,5,83,0,0,8886,8887,5,147,0,0,8887,8888,3,1044, + 522,0,8888,1043,1,0,0,0,8889,8894,3,1046,523,0,8890,8891,5,6,0,0, + 8891,8893,3,1046,523,0,8892,8890,1,0,0,0,8893,8896,1,0,0,0,8894, + 8892,1,0,0,0,8894,8895,1,0,0,0,8895,1045,1,0,0,0,8896,8894,1,0,0, + 0,8897,8901,3,1334,667,0,8898,8899,5,100,0,0,8899,8902,3,1322,661, + 0,8900,8902,3,648,324,0,8901,8898,1,0,0,0,8901,8900,1,0,0,0,8901, + 8902,1,0,0,0,8902,8904,1,0,0,0,8903,8905,3,650,325,0,8904,8903,1, + 0,0,0,8904,8905,1,0,0,0,8905,1047,1,0,0,0,8906,8908,3,1052,526,0, + 8907,8909,3,1056,528,0,8908,8907,1,0,0,0,8908,8909,1,0,0,0,8909, + 8919,1,0,0,0,8910,8912,3,1056,528,0,8911,8913,3,1054,527,0,8912, + 8911,1,0,0,0,8912,8913,1,0,0,0,8913,8919,1,0,0,0,8914,8916,3,1054, + 527,0,8915,8917,3,1056,528,0,8916,8915,1,0,0,0,8916,8917,1,0,0,0, + 8917,8919,1,0,0,0,8918,8906,1,0,0,0,8918,8910,1,0,0,0,8918,8914, + 1,0,0,0,8919,1049,1,0,0,0,8920,8921,3,1048,524,0,8921,1051,1,0,0, + 0,8922,8923,5,74,0,0,8923,8926,3,1058,529,0,8924,8925,5,6,0,0,8925, + 8927,3,1060,530,0,8926,8924,1,0,0,0,8926,8927,1,0,0,0,8927,1053, + 1,0,0,0,8928,8929,5,61,0,0,8929,8943,3,1068,534,0,8930,8931,3,1062, + 531,0,8931,8935,3,1066,533,0,8932,8936,5,81,0,0,8933,8934,5,105, + 0,0,8934,8936,5,467,0,0,8935,8932,1,0,0,0,8935,8933,1,0,0,0,8936, + 8944,1,0,0,0,8937,8941,3,1066,533,0,8938,8942,5,81,0,0,8939,8940, + 5,105,0,0,8940,8942,5,467,0,0,8941,8938,1,0,0,0,8941,8939,1,0,0, + 0,8942,8944,1,0,0,0,8943,8930,1,0,0,0,8943,8937,1,0,0,0,8944,1055, + 1,0,0,0,8945,8950,5,79,0,0,8946,8947,3,1062,531,0,8947,8948,3,1066, + 533,0,8948,8951,1,0,0,0,8949,8951,3,1060,530,0,8950,8946,1,0,0,0, + 8950,8949,1,0,0,0,8951,1057,1,0,0,0,8952,8955,3,1210,605,0,8953, + 8955,5,30,0,0,8954,8952,1,0,0,0,8954,8953,1,0,0,0,8955,1059,1,0, + 0,0,8956,8957,3,1210,605,0,8957,1061,1,0,0,0,8958,8959,5,12,0,0, + 8959,8964,3,1064,532,0,8960,8961,5,13,0,0,8961,8964,3,1064,532,0, + 8962,8964,3,1252,626,0,8963,8958,1,0,0,0,8963,8960,1,0,0,0,8963, + 8962,1,0,0,0,8964,1063,1,0,0,0,8965,8968,3,1454,727,0,8966,8968, + 3,1452,726,0,8967,8965,1,0,0,0,8967,8966,1,0,0,0,8968,1065,1,0,0, + 0,8969,8970,7,58,0,0,8970,1067,1,0,0,0,8971,8972,7,59,0,0,8972,1069, + 1,0,0,0,8973,8974,5,66,0,0,8974,8976,5,147,0,0,8975,8977,3,1034, + 517,0,8976,8975,1,0,0,0,8976,8977,1,0,0,0,8977,8978,1,0,0,0,8978, + 8979,3,1072,536,0,8979,1071,1,0,0,0,8980,8985,3,1074,537,0,8981, + 8982,5,6,0,0,8982,8984,3,1074,537,0,8983,8981,1,0,0,0,8984,8987, + 1,0,0,0,8985,8983,1,0,0,0,8985,8986,1,0,0,0,8986,1073,1,0,0,0,8987, + 8985,1,0,0,0,8988,8998,3,1334,667,0,8989,8998,3,1076,538,0,8990, + 8998,3,1080,540,0,8991,8998,3,1078,539,0,8992,8998,3,1082,541,0, + 8993,8994,5,2,0,0,8994,8995,3,1328,664,0,8995,8996,5,3,0,0,8996, + 8998,1,0,0,0,8997,8988,1,0,0,0,8997,8989,1,0,0,0,8997,8990,1,0,0, + 0,8997,8991,1,0,0,0,8997,8992,1,0,0,0,8997,8993,1,0,0,0,8998,1075, + 1,0,0,0,8999,9000,5,2,0,0,9000,9001,5,3,0,0,9001,1077,1,0,0,0,9002, + 9003,5,468,0,0,9003,9004,5,2,0,0,9004,9005,3,1328,664,0,9005,9006, + 5,3,0,0,9006,1079,1,0,0,0,9007,9008,5,469,0,0,9008,9009,5,2,0,0, + 9009,9010,3,1328,664,0,9010,9011,5,3,0,0,9011,1081,1,0,0,0,9012, + 9013,5,470,0,0,9013,9014,5,471,0,0,9014,9015,5,2,0,0,9015,9016,3, + 1072,536,0,9016,9017,5,3,0,0,9017,1083,1,0,0,0,9018,9019,5,67,0, + 0,9019,9020,3,1210,605,0,9020,1085,1,0,0,0,9021,9026,3,1090,545, + 0,9022,9023,5,62,0,0,9023,9024,5,300,0,0,9024,9026,5,81,0,0,9025, + 9021,1,0,0,0,9025,9022,1,0,0,0,9026,1087,1,0,0,0,9027,9028,3,1086, + 543,0,9028,1089,1,0,0,0,9029,9031,3,1092,546,0,9030,9029,1,0,0,0, + 9031,9032,1,0,0,0,9032,9030,1,0,0,0,9032,9033,1,0,0,0,9033,1091, + 1,0,0,0,9034,9036,3,1094,547,0,9035,9037,3,1096,548,0,9036,9035, + 1,0,0,0,9036,9037,1,0,0,0,9037,9039,1,0,0,0,9038,9040,3,978,489, + 0,9039,9038,1,0,0,0,9039,9040,1,0,0,0,9040,1093,1,0,0,0,9041,9051, + 5,62,0,0,9042,9043,5,269,0,0,9043,9045,5,245,0,0,9044,9042,1,0,0, + 0,9044,9045,1,0,0,0,9045,9046,1,0,0,0,9046,9052,5,369,0,0,9047,9049, + 5,245,0,0,9048,9047,1,0,0,0,9048,9049,1,0,0,0,9049,9050,1,0,0,0, + 9050,9052,5,334,0,0,9051,9044,1,0,0,0,9051,9048,1,0,0,0,9052,1095, + 1,0,0,0,9053,9054,5,275,0,0,9054,9055,3,1388,694,0,9055,1097,1,0, + 0,0,9056,9057,5,422,0,0,9057,9058,5,2,0,0,9058,9059,3,1326,663,0, + 9059,9067,5,3,0,0,9060,9061,5,6,0,0,9061,9062,5,2,0,0,9062,9063, + 3,1326,663,0,9063,9064,5,3,0,0,9064,9066,1,0,0,0,9065,9060,1,0,0, + 0,9066,9069,1,0,0,0,9067,9065,1,0,0,0,9067,9068,1,0,0,0,9068,1099, + 1,0,0,0,9069,9067,1,0,0,0,9070,9071,5,64,0,0,9071,9072,3,1102,551, + 0,9072,1101,1,0,0,0,9073,9078,3,1104,552,0,9074,9075,5,6,0,0,9075, + 9077,3,1104,552,0,9076,9074,1,0,0,0,9077,9080,1,0,0,0,9078,9076, + 1,0,0,0,9078,9079,1,0,0,0,9079,1103,1,0,0,0,9080,9078,1,0,0,0,9081, + 9084,3,1116,558,0,9082,9084,3,1118,559,0,9083,9081,1,0,0,0,9083, + 9082,1,0,0,0,9084,9086,1,0,0,0,9085,9087,3,1108,554,0,9086,9085, + 1,0,0,0,9086,9087,1,0,0,0,9087,9089,1,0,0,0,9088,9090,3,1128,564, + 0,9089,9088,1,0,0,0,9089,9090,1,0,0,0,9090,9143,1,0,0,0,9091,9093, + 3,1132,566,0,9092,9094,3,1110,555,0,9093,9092,1,0,0,0,9093,9094, + 1,0,0,0,9094,9143,1,0,0,0,9095,9097,3,1152,576,0,9096,9098,3,1108, + 554,0,9097,9096,1,0,0,0,9097,9098,1,0,0,0,9098,9143,1,0,0,0,9099, + 9101,3,1000,500,0,9100,9102,3,1108,554,0,9101,9100,1,0,0,0,9101, + 9102,1,0,0,0,9102,9143,1,0,0,0,9103,9116,5,72,0,0,9104,9106,3,1152, + 576,0,9105,9107,3,1108,554,0,9106,9105,1,0,0,0,9106,9107,1,0,0,0, + 9107,9117,1,0,0,0,9108,9110,3,1132,566,0,9109,9111,3,1110,555,0, + 9110,9109,1,0,0,0,9110,9111,1,0,0,0,9111,9117,1,0,0,0,9112,9114, + 3,1000,500,0,9113,9115,3,1108,554,0,9114,9113,1,0,0,0,9114,9115, + 1,0,0,0,9115,9117,1,0,0,0,9116,9104,1,0,0,0,9116,9108,1,0,0,0,9116, + 9112,1,0,0,0,9117,9143,1,0,0,0,9118,9119,5,2,0,0,9119,9136,3,1104, + 552,0,9120,9121,5,110,0,0,9121,9122,5,118,0,0,9122,9137,3,1104,552, + 0,9123,9125,5,121,0,0,9124,9126,3,1112,556,0,9125,9124,1,0,0,0,9125, + 9126,1,0,0,0,9126,9127,1,0,0,0,9127,9128,5,118,0,0,9128,9137,3,1104, + 552,0,9129,9131,3,1112,556,0,9130,9129,1,0,0,0,9130,9131,1,0,0,0, + 9131,9132,1,0,0,0,9132,9133,5,118,0,0,9133,9134,3,1104,552,0,9134, + 9135,3,1114,557,0,9135,9137,1,0,0,0,9136,9120,1,0,0,0,9136,9123, + 1,0,0,0,9136,9130,1,0,0,0,9136,9137,1,0,0,0,9137,9138,1,0,0,0,9138, + 9140,5,3,0,0,9139,9141,3,1108,554,0,9140,9139,1,0,0,0,9140,9141, + 1,0,0,0,9141,9143,1,0,0,0,9142,9083,1,0,0,0,9142,9091,1,0,0,0,9142, + 9095,1,0,0,0,9142,9099,1,0,0,0,9142,9103,1,0,0,0,9142,9118,1,0,0, + 0,9143,9162,1,0,0,0,9144,9145,5,110,0,0,9145,9146,5,118,0,0,9146, + 9161,3,1104,552,0,9147,9149,5,121,0,0,9148,9150,3,1112,556,0,9149, + 9148,1,0,0,0,9149,9150,1,0,0,0,9150,9151,1,0,0,0,9151,9152,5,118, + 0,0,9152,9161,3,1104,552,0,9153,9155,3,1112,556,0,9154,9153,1,0, + 0,0,9154,9155,1,0,0,0,9155,9156,1,0,0,0,9156,9157,5,118,0,0,9157, + 9158,3,1104,552,0,9158,9159,3,1114,557,0,9159,9161,1,0,0,0,9160, + 9144,1,0,0,0,9160,9147,1,0,0,0,9160,9154,1,0,0,0,9161,9164,1,0,0, + 0,9162,9160,1,0,0,0,9162,9163,1,0,0,0,9163,1105,1,0,0,0,9164,9162, + 1,0,0,0,9165,9167,5,36,0,0,9166,9165,1,0,0,0,9166,9167,1,0,0,0,9167, + 9168,1,0,0,0,9168,9173,3,1472,736,0,9169,9170,5,2,0,0,9170,9171, + 3,1414,707,0,9171,9172,5,3,0,0,9172,9174,1,0,0,0,9173,9169,1,0,0, + 0,9173,9174,1,0,0,0,9174,1107,1,0,0,0,9175,9176,3,1106,553,0,9176, + 1109,1,0,0,0,9177,9190,3,1106,553,0,9178,9180,5,36,0,0,9179,9181, + 3,1472,736,0,9180,9179,1,0,0,0,9180,9181,1,0,0,0,9181,9184,1,0,0, + 0,9182,9184,3,1472,736,0,9183,9178,1,0,0,0,9183,9182,1,0,0,0,9184, + 9185,1,0,0,0,9185,9186,5,2,0,0,9186,9187,3,1148,574,0,9187,9188, + 5,3,0,0,9188,9190,1,0,0,0,9189,9177,1,0,0,0,9189,9183,1,0,0,0,9190, + 1111,1,0,0,0,9191,9193,7,60,0,0,9192,9194,5,123,0,0,9193,9192,1, + 0,0,0,9193,9194,1,0,0,0,9194,1113,1,0,0,0,9195,9196,5,100,0,0,9196, + 9197,5,2,0,0,9197,9198,3,244,122,0,9198,9199,5,3,0,0,9199,9203,1, + 0,0,0,9200,9201,5,80,0,0,9201,9203,3,1210,605,0,9202,9195,1,0,0, + 0,9202,9200,1,0,0,0,9203,1115,1,0,0,0,9204,9206,5,81,0,0,9205,9204, + 1,0,0,0,9205,9206,1,0,0,0,9206,9207,1,0,0,0,9207,9209,3,1404,702, + 0,9208,9210,5,9,0,0,9209,9208,1,0,0,0,9209,9210,1,0,0,0,9210,9226, + 1,0,0,0,9211,9217,5,81,0,0,9212,9218,3,1404,702,0,9213,9214,5,2, + 0,0,9214,9215,3,1404,702,0,9215,9216,5,3,0,0,9216,9218,1,0,0,0,9217, + 9212,1,0,0,0,9217,9213,1,0,0,0,9218,9226,1,0,0,0,9219,9220,5,68, + 0,0,9220,9223,5,323,0,0,9221,9224,3,1420,710,0,9222,9224,5,111,0, + 0,9223,9221,1,0,0,0,9223,9222,1,0,0,0,9224,9226,1,0,0,0,9225,9205, + 1,0,0,0,9225,9211,1,0,0,0,9225,9219,1,0,0,0,9226,1117,1,0,0,0,9227, + 9229,5,81,0,0,9228,9227,1,0,0,0,9228,9229,1,0,0,0,9229,9230,1,0, + 0,0,9230,9232,3,1408,704,0,9231,9233,5,9,0,0,9232,9231,1,0,0,0,9232, + 9233,1,0,0,0,9233,1119,1,0,0,0,9234,9236,5,92,0,0,9235,9237,5,81, + 0,0,9236,9235,1,0,0,0,9236,9237,1,0,0,0,9237,9238,1,0,0,0,9238,9240, + 3,1404,702,0,9239,9241,5,9,0,0,9240,9239,1,0,0,0,9240,9241,1,0,0, + 0,9241,9246,1,0,0,0,9242,9243,5,2,0,0,9243,9244,3,244,122,0,9244, + 9245,5,3,0,0,9245,9247,1,0,0,0,9246,9242,1,0,0,0,9246,9247,1,0,0, + 0,9247,9249,1,0,0,0,9248,9250,3,1142,571,0,9249,9248,1,0,0,0,9249, + 9250,1,0,0,0,9250,9268,1,0,0,0,9251,9252,5,92,0,0,9252,9258,5,81, + 0,0,9253,9259,3,1404,702,0,9254,9255,5,2,0,0,9255,9256,3,1404,702, + 0,9256,9257,5,3,0,0,9257,9259,1,0,0,0,9258,9253,1,0,0,0,9258,9254, + 1,0,0,0,9259,9268,1,0,0,0,9260,9261,5,350,0,0,9261,9262,5,68,0,0, + 9262,9265,5,323,0,0,9263,9266,3,1420,710,0,9264,9266,5,111,0,0,9265, + 9263,1,0,0,0,9265,9264,1,0,0,0,9266,9268,1,0,0,0,9267,9234,1,0,0, + 0,9267,9251,1,0,0,0,9267,9260,1,0,0,0,9268,1121,1,0,0,0,9269,9274, + 3,1116,558,0,9270,9271,5,6,0,0,9271,9273,3,1116,558,0,9272,9270, + 1,0,0,0,9273,9276,1,0,0,0,9274,9272,1,0,0,0,9274,9275,1,0,0,0,9275, + 1123,1,0,0,0,9276,9274,1,0,0,0,9277,9282,3,1120,560,0,9278,9279, + 5,6,0,0,9279,9281,3,1120,560,0,9280,9278,1,0,0,0,9281,9284,1,0,0, + 0,9282,9280,1,0,0,0,9282,9283,1,0,0,0,9283,1125,1,0,0,0,9284,9282, + 1,0,0,0,9285,9290,3,1116,558,0,9286,9288,5,36,0,0,9287,9286,1,0, + 0,0,9287,9288,1,0,0,0,9288,9289,1,0,0,0,9289,9291,3,1472,736,0,9290, + 9287,1,0,0,0,9290,9291,1,0,0,0,9291,1127,1,0,0,0,9292,9293,5,472, + 0,0,9293,9294,3,1442,721,0,9294,9295,5,2,0,0,9295,9296,3,1326,663, + 0,9296,9298,5,3,0,0,9297,9299,3,1130,565,0,9298,9297,1,0,0,0,9298, + 9299,1,0,0,0,9299,1129,1,0,0,0,9300,9301,5,310,0,0,9301,9302,5,2, + 0,0,9302,9303,3,1210,605,0,9303,9304,5,3,0,0,9304,1131,1,0,0,0,9305, + 9307,3,1260,630,0,9306,9308,3,1140,570,0,9307,9306,1,0,0,0,9307, + 9308,1,0,0,0,9308,9318,1,0,0,0,9309,9310,5,320,0,0,9310,9311,5,64, + 0,0,9311,9312,5,2,0,0,9312,9313,3,1136,568,0,9313,9315,5,3,0,0,9314, + 9316,3,1140,570,0,9315,9314,1,0,0,0,9315,9316,1,0,0,0,9316,9318, + 1,0,0,0,9317,9305,1,0,0,0,9317,9309,1,0,0,0,9318,1133,1,0,0,0,9319, + 9321,3,1260,630,0,9320,9322,3,1138,569,0,9321,9320,1,0,0,0,9321, + 9322,1,0,0,0,9322,1135,1,0,0,0,9323,9328,3,1134,567,0,9324,9325, + 5,6,0,0,9325,9327,3,1134,567,0,9326,9324,1,0,0,0,9327,9330,1,0,0, + 0,9328,9326,1,0,0,0,9328,9329,1,0,0,0,9329,1137,1,0,0,0,9330,9328, + 1,0,0,0,9331,9332,5,36,0,0,9332,9333,5,2,0,0,9333,9334,3,1148,574, + 0,9334,9335,5,3,0,0,9335,1139,1,0,0,0,9336,9337,5,105,0,0,9337,9338, + 5,473,0,0,9338,1141,1,0,0,0,9339,9340,5,103,0,0,9340,9341,3,1334, + 667,0,9341,1143,1,0,0,0,9342,9347,5,103,0,0,9343,9344,5,434,0,0, + 9344,9345,5,275,0,0,9345,9348,3,992,496,0,9346,9348,3,1210,605,0, + 9347,9343,1,0,0,0,9347,9346,1,0,0,0,9348,1145,1,0,0,0,9349,9350, + 3,1148,574,0,9350,1147,1,0,0,0,9351,9356,3,1150,575,0,9352,9353, + 5,6,0,0,9353,9355,3,1150,575,0,9354,9352,1,0,0,0,9355,9358,1,0,0, + 0,9356,9354,1,0,0,0,9356,9357,1,0,0,0,9357,1149,1,0,0,0,9358,9356, + 1,0,0,0,9359,9360,3,1472,736,0,9360,9362,3,1166,583,0,9361,9363, + 3,126,63,0,9362,9361,1,0,0,0,9362,9363,1,0,0,0,9363,1151,1,0,0,0, + 9364,9365,5,474,0,0,9365,9381,5,2,0,0,9366,9367,3,1252,626,0,9367, + 9368,3,1278,639,0,9368,9369,5,475,0,0,9369,9370,3,1154,577,0,9370, + 9382,1,0,0,0,9371,9372,5,476,0,0,9372,9373,5,2,0,0,9373,9374,3,1162, + 581,0,9374,9375,5,3,0,0,9375,9376,5,6,0,0,9376,9377,3,1252,626,0, + 9377,9378,3,1278,639,0,9378,9379,5,475,0,0,9379,9380,3,1154,577, + 0,9380,9382,1,0,0,0,9381,9366,1,0,0,0,9381,9371,1,0,0,0,9382,9383, + 1,0,0,0,9383,9384,5,3,0,0,9384,1153,1,0,0,0,9385,9390,3,1156,578, + 0,9386,9387,5,6,0,0,9387,9389,3,1156,578,0,9388,9386,1,0,0,0,9389, + 9392,1,0,0,0,9390,9388,1,0,0,0,9390,9391,1,0,0,0,9391,1155,1,0,0, + 0,9392,9390,1,0,0,0,9393,9400,3,1472,736,0,9394,9396,3,1166,583, + 0,9395,9397,3,1158,579,0,9396,9395,1,0,0,0,9396,9397,1,0,0,0,9397, + 9401,1,0,0,0,9398,9399,5,62,0,0,9399,9401,5,473,0,0,9400,9394,1, + 0,0,0,9400,9398,1,0,0,0,9401,1157,1,0,0,0,9402,9404,3,1160,580,0, + 9403,9402,1,0,0,0,9404,9405,1,0,0,0,9405,9403,1,0,0,0,9405,9406, + 1,0,0,0,9406,1159,1,0,0,0,9407,9408,5,53,0,0,9408,9416,3,1210,605, + 0,9409,9410,3,1490,745,0,9410,9411,3,1210,605,0,9411,9416,1,0,0, + 0,9412,9413,5,77,0,0,9413,9416,5,78,0,0,9414,9416,5,78,0,0,9415, + 9407,1,0,0,0,9415,9409,1,0,0,0,9415,9412,1,0,0,0,9415,9414,1,0,0, + 0,9416,1161,1,0,0,0,9417,9422,3,1164,582,0,9418,9419,5,6,0,0,9419, + 9421,3,1164,582,0,9420,9418,1,0,0,0,9421,9424,1,0,0,0,9422,9420, + 1,0,0,0,9422,9423,1,0,0,0,9423,1163,1,0,0,0,9424,9422,1,0,0,0,9425, + 9426,3,1250,625,0,9426,9427,5,36,0,0,9427,9428,3,1488,744,0,9428, + 9432,1,0,0,0,9429,9430,5,53,0,0,9430,9432,3,1250,625,0,9431,9425, + 1,0,0,0,9431,9429,1,0,0,0,9432,1165,1,0,0,0,9433,9435,5,415,0,0, + 9434,9433,1,0,0,0,9434,9435,1,0,0,0,9435,9436,1,0,0,0,9436,9445, + 3,1170,585,0,9437,9446,3,1168,584,0,9438,9443,5,35,0,0,9439,9440, + 5,4,0,0,9440,9441,3,1454,727,0,9441,9442,5,5,0,0,9442,9444,1,0,0, + 0,9443,9439,1,0,0,0,9443,9444,1,0,0,0,9444,9446,1,0,0,0,9445,9437, + 1,0,0,0,9445,9438,1,0,0,0,9446,9452,1,0,0,0,9447,9448,3,1410,705, + 0,9448,9449,5,27,0,0,9449,9450,7,61,0,0,9450,9452,1,0,0,0,9451,9434, + 1,0,0,0,9451,9447,1,0,0,0,9452,1167,1,0,0,0,9453,9455,5,4,0,0,9454, + 9456,3,1454,727,0,9455,9454,1,0,0,0,9455,9456,1,0,0,0,9456,9457, + 1,0,0,0,9457,9459,5,5,0,0,9458,9453,1,0,0,0,9459,9462,1,0,0,0,9460, + 9458,1,0,0,0,9460,9461,1,0,0,0,9461,1169,1,0,0,0,9462,9460,1,0,0, + 0,9463,9479,3,1174,587,0,9464,9479,3,1178,589,0,9465,9479,3,1182, + 591,0,9466,9479,3,1190,595,0,9467,9479,3,1198,599,0,9468,9476,3, + 1200,600,0,9469,9471,3,1204,602,0,9470,9469,1,0,0,0,9470,9471,1, + 0,0,0,9471,9477,1,0,0,0,9472,9473,5,2,0,0,9473,9474,3,1454,727,0, + 9474,9475,5,3,0,0,9475,9477,1,0,0,0,9476,9470,1,0,0,0,9476,9472, + 1,0,0,0,9477,9479,1,0,0,0,9478,9463,1,0,0,0,9478,9464,1,0,0,0,9478, + 9465,1,0,0,0,9478,9466,1,0,0,0,9478,9467,1,0,0,0,9478,9468,1,0,0, + 0,9479,1171,1,0,0,0,9480,9485,3,1178,589,0,9481,9485,3,1184,592, + 0,9482,9485,3,1192,596,0,9483,9485,3,1198,599,0,9484,9480,1,0,0, + 0,9484,9481,1,0,0,0,9484,9482,1,0,0,0,9484,9483,1,0,0,0,9485,1173, + 1,0,0,0,9486,9488,3,1480,740,0,9487,9489,3,558,279,0,9488,9487,1, + 0,0,0,9488,9489,1,0,0,0,9489,9491,1,0,0,0,9490,9492,3,1176,588,0, + 9491,9490,1,0,0,0,9491,9492,1,0,0,0,9492,1175,1,0,0,0,9493,9494, + 5,2,0,0,9494,9495,3,1326,663,0,9495,9496,5,3,0,0,9496,1177,1,0,0, + 0,9497,9522,5,401,0,0,9498,9522,5,402,0,0,9499,9522,5,416,0,0,9500, + 9522,5,388,0,0,9501,9522,5,413,0,0,9502,9504,5,398,0,0,9503,9505, + 3,1180,590,0,9504,9503,1,0,0,0,9504,9505,1,0,0,0,9505,9522,1,0,0, + 0,9506,9507,5,190,0,0,9507,9522,5,412,0,0,9508,9510,5,395,0,0,9509, + 9511,3,1176,588,0,9510,9509,1,0,0,0,9510,9511,1,0,0,0,9511,9522, + 1,0,0,0,9512,9514,5,394,0,0,9513,9515,3,1176,588,0,9514,9513,1,0, + 0,0,9514,9515,1,0,0,0,9515,9522,1,0,0,0,9516,9518,5,409,0,0,9517, + 9519,3,1176,588,0,9518,9517,1,0,0,0,9518,9519,1,0,0,0,9519,9522, + 1,0,0,0,9520,9522,5,390,0,0,9521,9497,1,0,0,0,9521,9498,1,0,0,0, + 9521,9499,1,0,0,0,9521,9500,1,0,0,0,9521,9501,1,0,0,0,9521,9502, + 1,0,0,0,9521,9506,1,0,0,0,9521,9508,1,0,0,0,9521,9512,1,0,0,0,9521, + 9516,1,0,0,0,9521,9520,1,0,0,0,9522,1179,1,0,0,0,9523,9524,5,2,0, + 0,9524,9525,3,1454,727,0,9525,9526,5,3,0,0,9526,1181,1,0,0,0,9527, + 9530,3,1186,593,0,9528,9530,3,1188,594,0,9529,9527,1,0,0,0,9529, + 9528,1,0,0,0,9530,1183,1,0,0,0,9531,9534,3,1186,593,0,9532,9534, + 3,1188,594,0,9533,9531,1,0,0,0,9533,9532,1,0,0,0,9534,1185,1,0,0, + 0,9535,9537,5,389,0,0,9536,9538,3,1196,598,0,9537,9536,1,0,0,0,9537, + 9538,1,0,0,0,9538,9539,1,0,0,0,9539,9540,5,2,0,0,9540,9541,3,1326, + 663,0,9541,9542,5,3,0,0,9542,1187,1,0,0,0,9543,9545,5,389,0,0,9544, + 9546,3,1196,598,0,9545,9544,1,0,0,0,9545,9546,1,0,0,0,9546,1189, + 1,0,0,0,9547,9552,3,1194,597,0,9548,9549,5,2,0,0,9549,9550,3,1454, + 727,0,9550,9551,5,3,0,0,9551,9553,1,0,0,0,9552,9548,1,0,0,0,9552, + 9553,1,0,0,0,9553,1191,1,0,0,0,9554,9559,3,1194,597,0,9555,9556, + 5,2,0,0,9556,9557,3,1454,727,0,9557,9558,5,3,0,0,9558,9560,1,0,0, + 0,9559,9555,1,0,0,0,9559,9560,1,0,0,0,9560,1193,1,0,0,0,9561,9563, + 7,62,0,0,9562,9564,3,1196,598,0,9563,9562,1,0,0,0,9563,9564,1,0, + 0,0,9564,9572,1,0,0,0,9565,9572,5,423,0,0,9566,9567,5,405,0,0,9567, + 9569,7,63,0,0,9568,9570,3,1196,598,0,9569,9568,1,0,0,0,9569,9570, + 1,0,0,0,9570,9572,1,0,0,0,9571,9561,1,0,0,0,9571,9565,1,0,0,0,9571, + 9566,1,0,0,0,9572,1195,1,0,0,0,9573,9574,5,374,0,0,9574,1197,1,0, + 0,0,9575,9580,7,64,0,0,9576,9577,5,2,0,0,9577,9578,3,1454,727,0, + 9578,9579,5,3,0,0,9579,9581,1,0,0,0,9580,9576,1,0,0,0,9580,9581, + 1,0,0,0,9581,9583,1,0,0,0,9582,9584,3,1202,601,0,9583,9582,1,0,0, + 0,9583,9584,1,0,0,0,9584,1199,1,0,0,0,9585,9586,5,403,0,0,9586,1201, + 1,0,0,0,9587,9588,5,105,0,0,9588,9589,5,418,0,0,9589,9594,5,386, + 0,0,9590,9591,5,379,0,0,9591,9592,5,418,0,0,9592,9594,5,386,0,0, + 9593,9587,1,0,0,0,9593,9590,1,0,0,0,9594,1203,1,0,0,0,9595,9621, + 5,384,0,0,9596,9621,5,264,0,0,9597,9621,5,176,0,0,9598,9621,5,218, + 0,0,9599,9621,5,261,0,0,9600,9621,3,1206,603,0,9601,9602,5,384,0, + 0,9602,9603,5,94,0,0,9603,9621,5,264,0,0,9604,9605,5,176,0,0,9605, + 9609,5,94,0,0,9606,9610,5,218,0,0,9607,9610,5,261,0,0,9608,9610, + 3,1206,603,0,9609,9606,1,0,0,0,9609,9607,1,0,0,0,9609,9608,1,0,0, + 0,9610,9621,1,0,0,0,9611,9612,5,218,0,0,9612,9615,5,94,0,0,9613, + 9616,5,261,0,0,9614,9616,3,1206,603,0,9615,9613,1,0,0,0,9615,9614, + 1,0,0,0,9616,9621,1,0,0,0,9617,9618,5,261,0,0,9618,9619,5,94,0,0, + 9619,9621,3,1206,603,0,9620,9595,1,0,0,0,9620,9596,1,0,0,0,9620, + 9597,1,0,0,0,9620,9598,1,0,0,0,9620,9599,1,0,0,0,9620,9600,1,0,0, + 0,9620,9601,1,0,0,0,9620,9604,1,0,0,0,9620,9611,1,0,0,0,9620,9617, + 1,0,0,0,9621,1205,1,0,0,0,9622,9627,5,326,0,0,9623,9624,5,2,0,0, + 9624,9625,3,1454,727,0,9625,9626,5,3,0,0,9626,9628,1,0,0,0,9627, + 9623,1,0,0,0,9627,9628,1,0,0,0,9628,1207,1,0,0,0,9629,9630,5,197, + 0,0,9630,9631,3,1210,605,0,9631,1209,1,0,0,0,9632,9633,3,1212,606, + 0,9633,1211,1,0,0,0,9634,9636,3,1214,607,0,9635,9637,3,1320,660, + 0,9636,9635,1,0,0,0,9636,9637,1,0,0,0,9637,1213,1,0,0,0,9638,9643, + 3,1216,608,0,9639,9640,7,65,0,0,9640,9642,3,1216,608,0,9641,9639, + 1,0,0,0,9642,9645,1,0,0,0,9643,9641,1,0,0,0,9643,9644,1,0,0,0,9644, + 1215,1,0,0,0,9645,9643,1,0,0,0,9646,9651,3,1218,609,0,9647,9648, + 5,82,0,0,9648,9650,3,1218,609,0,9649,9647,1,0,0,0,9650,9653,1,0, + 0,0,9651,9649,1,0,0,0,9651,9652,1,0,0,0,9652,1217,1,0,0,0,9653,9651, + 1,0,0,0,9654,9659,3,1220,610,0,9655,9656,5,33,0,0,9656,9658,3,1220, + 610,0,9657,9655,1,0,0,0,9658,9661,1,0,0,0,9659,9657,1,0,0,0,9659, + 9660,1,0,0,0,9660,1219,1,0,0,0,9661,9659,1,0,0,0,9662,9668,3,1222, + 611,0,9663,9665,5,77,0,0,9664,9663,1,0,0,0,9664,9665,1,0,0,0,9665, + 9666,1,0,0,0,9666,9667,5,68,0,0,9667,9669,3,1360,680,0,9668,9664, + 1,0,0,0,9668,9669,1,0,0,0,9669,1221,1,0,0,0,9670,9672,5,77,0,0,9671, + 9670,1,0,0,0,9671,9672,1,0,0,0,9672,9673,1,0,0,0,9673,9674,3,1224, + 612,0,9674,1223,1,0,0,0,9675,9677,3,1226,613,0,9676,9678,7,66,0, + 0,9677,9676,1,0,0,0,9677,9678,1,0,0,0,9678,1225,1,0,0,0,9679,9703, + 3,1228,614,0,9680,9682,5,116,0,0,9681,9683,5,77,0,0,9682,9681,1, + 0,0,0,9682,9683,1,0,0,0,9683,9701,1,0,0,0,9684,9702,5,78,0,0,9685, + 9702,5,96,0,0,9686,9702,5,60,0,0,9687,9702,5,365,0,0,9688,9689,5, + 56,0,0,9689,9690,5,64,0,0,9690,9702,3,1210,605,0,9691,9692,5,275, + 0,0,9692,9693,5,2,0,0,9693,9694,3,1340,670,0,9694,9695,5,3,0,0,9695, + 9702,1,0,0,0,9696,9702,5,188,0,0,9697,9699,3,1350,675,0,9698,9697, + 1,0,0,0,9698,9699,1,0,0,0,9699,9700,1,0,0,0,9700,9702,5,478,0,0, + 9701,9684,1,0,0,0,9701,9685,1,0,0,0,9701,9686,1,0,0,0,9701,9687, + 1,0,0,0,9701,9688,1,0,0,0,9701,9691,1,0,0,0,9701,9696,1,0,0,0,9701, + 9698,1,0,0,0,9702,9704,1,0,0,0,9703,9680,1,0,0,0,9703,9704,1,0,0, + 0,9704,1227,1,0,0,0,9705,9717,3,1230,615,0,9706,9707,7,67,0,0,9707, + 9718,3,1230,615,0,9708,9709,3,1324,662,0,9709,9715,3,1314,657,0, + 9710,9716,3,1000,500,0,9711,9712,5,2,0,0,9712,9713,3,1210,605,0, + 9713,9714,5,3,0,0,9714,9716,1,0,0,0,9715,9710,1,0,0,0,9715,9711, + 1,0,0,0,9716,9718,1,0,0,0,9717,9706,1,0,0,0,9717,9708,1,0,0,0,9717, + 9718,1,0,0,0,9718,1229,1,0,0,0,9719,9737,3,1232,616,0,9720,9722, + 5,77,0,0,9721,9720,1,0,0,0,9721,9722,1,0,0,0,9722,9731,1,0,0,0,9723, + 9732,5,120,0,0,9724,9732,5,114,0,0,9725,9726,5,127,0,0,9726,9732, + 5,94,0,0,9727,9729,5,387,0,0,9728,9730,5,91,0,0,9729,9728,1,0,0, + 0,9729,9730,1,0,0,0,9730,9732,1,0,0,0,9731,9723,1,0,0,0,9731,9724, + 1,0,0,0,9731,9725,1,0,0,0,9731,9727,1,0,0,0,9732,9733,1,0,0,0,9733, + 9735,3,1232,616,0,9734,9736,3,1208,604,0,9735,9734,1,0,0,0,9735, + 9736,1,0,0,0,9736,9738,1,0,0,0,9737,9721,1,0,0,0,9737,9738,1,0,0, + 0,9738,1231,1,0,0,0,9739,9745,3,1234,617,0,9740,9741,3,1320,660, + 0,9741,9742,3,1234,617,0,9742,9744,1,0,0,0,9743,9740,1,0,0,0,9744, + 9747,1,0,0,0,9745,9743,1,0,0,0,9745,9746,1,0,0,0,9746,1233,1,0,0, + 0,9747,9745,1,0,0,0,9748,9750,3,1320,660,0,9749,9748,1,0,0,0,9749, + 9750,1,0,0,0,9750,9751,1,0,0,0,9751,9752,3,1236,618,0,9752,1235, + 1,0,0,0,9753,9758,3,1238,619,0,9754,9755,7,68,0,0,9755,9757,3,1238, + 619,0,9756,9754,1,0,0,0,9757,9760,1,0,0,0,9758,9756,1,0,0,0,9758, + 9759,1,0,0,0,9759,1237,1,0,0,0,9760,9758,1,0,0,0,9761,9766,3,1240, + 620,0,9762,9763,7,69,0,0,9763,9765,3,1240,620,0,9764,9762,1,0,0, + 0,9765,9768,1,0,0,0,9766,9764,1,0,0,0,9766,9767,1,0,0,0,9767,1239, + 1,0,0,0,9768,9766,1,0,0,0,9769,9772,3,1242,621,0,9770,9771,5,15, + 0,0,9771,9773,3,1210,605,0,9772,9770,1,0,0,0,9772,9773,1,0,0,0,9773, + 1241,1,0,0,0,9774,9776,7,68,0,0,9775,9774,1,0,0,0,9775,9776,1,0, + 0,0,9776,9777,1,0,0,0,9777,9778,3,1244,622,0,9778,1243,1,0,0,0,9779, + 9784,3,1246,623,0,9780,9781,5,142,0,0,9781,9782,5,418,0,0,9782,9783, + 5,386,0,0,9783,9785,3,1210,605,0,9784,9780,1,0,0,0,9784,9785,1,0, + 0,0,9785,1245,1,0,0,0,9786,9789,3,1248,624,0,9787,9788,5,43,0,0, + 9788,9790,3,556,278,0,9789,9787,1,0,0,0,9789,9790,1,0,0,0,9790,1247, + 1,0,0,0,9791,9796,3,1252,626,0,9792,9793,5,26,0,0,9793,9795,3,1166, + 583,0,9794,9792,1,0,0,0,9795,9798,1,0,0,0,9796,9794,1,0,0,0,9796, + 9797,1,0,0,0,9797,1249,1,0,0,0,9798,9796,1,0,0,0,9799,9800,6,625, + -1,0,9800,9807,3,1252,626,0,9801,9802,7,68,0,0,9802,9807,3,1250, + 625,9,9803,9804,3,1320,660,0,9804,9805,3,1250,625,3,9805,9807,1, + 0,0,0,9806,9799,1,0,0,0,9806,9801,1,0,0,0,9806,9803,1,0,0,0,9807, + 9847,1,0,0,0,9808,9809,10,8,0,0,9809,9810,5,15,0,0,9810,9846,3,1250, + 625,9,9811,9812,10,7,0,0,9812,9813,7,69,0,0,9813,9846,3,1250,625, + 8,9814,9815,10,6,0,0,9815,9816,7,68,0,0,9816,9846,3,1250,625,7,9817, + 9818,10,5,0,0,9818,9819,3,1320,660,0,9819,9820,3,1250,625,6,9820, + 9846,1,0,0,0,9821,9822,10,4,0,0,9822,9823,7,67,0,0,9823,9846,3,1250, + 625,5,9824,9825,10,10,0,0,9825,9826,5,26,0,0,9826,9846,3,1166,583, + 0,9827,9828,10,2,0,0,9828,9846,3,1320,660,0,9829,9830,10,1,0,0,9830, + 9832,5,116,0,0,9831,9833,5,77,0,0,9832,9831,1,0,0,0,9832,9833,1, + 0,0,0,9833,9843,1,0,0,0,9834,9835,5,56,0,0,9835,9836,5,64,0,0,9836, + 9844,3,1250,625,0,9837,9838,5,275,0,0,9838,9839,5,2,0,0,9839,9840, + 3,1340,670,0,9840,9841,5,3,0,0,9841,9844,1,0,0,0,9842,9844,5,188, + 0,0,9843,9834,1,0,0,0,9843,9837,1,0,0,0,9843,9842,1,0,0,0,9844,9846, + 1,0,0,0,9845,9808,1,0,0,0,9845,9811,1,0,0,0,9845,9814,1,0,0,0,9845, + 9817,1,0,0,0,9845,9821,1,0,0,0,9845,9824,1,0,0,0,9845,9827,1,0,0, + 0,9845,9829,1,0,0,0,9846,9849,1,0,0,0,9847,9845,1,0,0,0,9847,9848, + 1,0,0,0,9848,1251,1,0,0,0,9849,9847,1,0,0,0,9850,9851,5,396,0,0, + 9851,9887,3,1000,500,0,9852,9855,5,35,0,0,9853,9856,3,1000,500,0, + 9854,9856,3,1342,671,0,9855,9853,1,0,0,0,9855,9854,1,0,0,0,9856, + 9887,1,0,0,0,9857,9858,5,28,0,0,9858,9887,3,1380,690,0,9859,9860, + 5,470,0,0,9860,9861,5,2,0,0,9861,9862,3,1326,663,0,9862,9863,5,3, + 0,0,9863,9887,1,0,0,0,9864,9865,5,98,0,0,9865,9887,3,1000,500,0, + 9866,9887,3,1446,723,0,9867,9887,3,1254,627,0,9868,9869,5,2,0,0, + 9869,9870,3,1210,605,0,9870,9871,5,3,0,0,9871,9872,3,1380,690,0, + 9872,9887,1,0,0,0,9873,9887,3,1362,681,0,9874,9887,3,1258,629,0, + 9875,9877,3,1000,500,0,9876,9878,3,1378,689,0,9877,9876,1,0,0,0, + 9877,9878,1,0,0,0,9878,9887,1,0,0,0,9879,9887,3,1310,655,0,9880, + 9887,3,1312,656,0,9881,9882,3,1308,654,0,9882,9883,5,125,0,0,9883, + 9884,3,1308,654,0,9884,9887,1,0,0,0,9885,9887,3,1372,686,0,9886, + 9850,1,0,0,0,9886,9852,1,0,0,0,9886,9857,1,0,0,0,9886,9859,1,0,0, + 0,9886,9864,1,0,0,0,9886,9866,1,0,0,0,9886,9867,1,0,0,0,9886,9868, + 1,0,0,0,9886,9873,1,0,0,0,9886,9874,1,0,0,0,9886,9875,1,0,0,0,9886, + 9879,1,0,0,0,9886,9880,1,0,0,0,9886,9881,1,0,0,0,9886,9885,1,0,0, + 0,9887,1253,1,0,0,0,9888,9889,5,574,0,0,9889,1255,1,0,0,0,9890,9916, + 3,1442,721,0,9891,9913,5,2,0,0,9892,9896,3,1336,668,0,9893,9894, + 5,6,0,0,9894,9895,5,101,0,0,9895,9897,3,1338,669,0,9896,9893,1,0, + 0,0,9896,9897,1,0,0,0,9897,9899,1,0,0,0,9898,9900,3,1040,520,0,9899, + 9898,1,0,0,0,9899,9900,1,0,0,0,9900,9914,1,0,0,0,9901,9902,5,101, + 0,0,9902,9904,3,1338,669,0,9903,9905,3,1040,520,0,9904,9903,1,0, + 0,0,9904,9905,1,0,0,0,9905,9914,1,0,0,0,9906,9907,7,57,0,0,9907, + 9909,3,1336,668,0,9908,9910,3,1040,520,0,9909,9908,1,0,0,0,9909, + 9910,1,0,0,0,9910,9914,1,0,0,0,9911,9914,5,9,0,0,9912,9914,1,0,0, + 0,9913,9892,1,0,0,0,9913,9901,1,0,0,0,9913,9906,1,0,0,0,9913,9911, + 1,0,0,0,9913,9912,1,0,0,0,9914,9915,1,0,0,0,9915,9917,5,3,0,0,9916, + 9891,1,0,0,0,9916,9917,1,0,0,0,9917,1257,1,0,0,0,9918,9920,3,1256, + 628,0,9919,9921,3,1282,641,0,9920,9919,1,0,0,0,9920,9921,1,0,0,0, + 9921,9923,1,0,0,0,9922,9924,3,1284,642,0,9923,9922,1,0,0,0,9923, + 9924,1,0,0,0,9924,9926,1,0,0,0,9925,9927,3,1292,646,0,9926,9925, + 1,0,0,0,9926,9927,1,0,0,0,9927,9930,1,0,0,0,9928,9930,3,1262,631, + 0,9929,9918,1,0,0,0,9929,9928,1,0,0,0,9930,1259,1,0,0,0,9931,9934, + 3,1256,628,0,9932,9934,3,1262,631,0,9933,9931,1,0,0,0,9933,9932, + 1,0,0,0,9934,1261,1,0,0,0,9935,9936,5,108,0,0,9936,9937,5,62,0,0, + 9937,9938,5,2,0,0,9938,9939,3,1210,605,0,9939,9940,5,3,0,0,9940, + 10120,1,0,0,0,9941,10120,5,48,0,0,9942,9947,5,50,0,0,9943,9944,5, + 2,0,0,9944,9945,3,1454,727,0,9945,9946,5,3,0,0,9946,9948,1,0,0,0, + 9947,9943,1,0,0,0,9947,9948,1,0,0,0,9948,10120,1,0,0,0,9949,9954, + 5,51,0,0,9950,9951,5,2,0,0,9951,9952,3,1454,727,0,9952,9953,5,3, + 0,0,9953,9955,1,0,0,0,9954,9950,1,0,0,0,9954,9955,1,0,0,0,9955,10120, + 1,0,0,0,9956,9961,5,75,0,0,9957,9958,5,2,0,0,9958,9959,3,1454,727, + 0,9959,9960,5,3,0,0,9960,9962,1,0,0,0,9961,9957,1,0,0,0,9961,9962, + 1,0,0,0,9962,10120,1,0,0,0,9963,9968,5,76,0,0,9964,9965,5,2,0,0, + 9965,9966,3,1454,727,0,9966,9967,5,3,0,0,9967,9969,1,0,0,0,9968, + 9964,1,0,0,0,9968,9969,1,0,0,0,9969,10120,1,0,0,0,9970,10120,5,49, + 0,0,9971,10120,5,52,0,0,9972,10120,5,89,0,0,9973,10120,5,99,0,0, + 9974,10120,5,47,0,0,9975,10120,5,111,0,0,9976,9977,5,41,0,0,9977, + 9978,5,2,0,0,9978,9979,3,1210,605,0,9979,9980,5,36,0,0,9980,9981, + 3,1166,583,0,9981,9982,5,3,0,0,9982,10120,1,0,0,0,9983,9984,5,397, + 0,0,9984,9986,5,2,0,0,9985,9987,3,1346,673,0,9986,9985,1,0,0,0,9986, + 9987,1,0,0,0,9987,9988,1,0,0,0,9988,10120,5,3,0,0,9989,9990,5,489, + 0,0,9990,9991,5,2,0,0,9991,9994,3,1210,605,0,9992,9993,5,6,0,0,9993, + 9995,3,1350,675,0,9994,9992,1,0,0,0,9994,9995,1,0,0,0,9995,9996, + 1,0,0,0,9996,9997,5,3,0,0,9997,10120,1,0,0,0,9998,9999,5,410,0,0, + 9999,10000,5,2,0,0,10000,10001,3,1352,676,0,10001,10002,5,3,0,0, + 10002,10120,1,0,0,0,10003,10004,5,411,0,0,10004,10006,5,2,0,0,10005, + 10007,3,1354,677,0,10006,10005,1,0,0,0,10006,10007,1,0,0,0,10007, + 10008,1,0,0,0,10008,10120,5,3,0,0,10009,10010,5,417,0,0,10010,10012, + 5,2,0,0,10011,10013,3,1356,678,0,10012,10011,1,0,0,0,10012,10013, + 1,0,0,0,10013,10014,1,0,0,0,10014,10120,5,3,0,0,10015,10016,5,420, + 0,0,10016,10017,5,2,0,0,10017,10018,3,1210,605,0,10018,10019,5,36, + 0,0,10019,10020,3,1166,583,0,10020,10021,5,3,0,0,10021,10120,1,0, + 0,0,10022,10023,5,421,0,0,10023,10025,5,2,0,0,10024,10026,7,70,0, + 0,10025,10024,1,0,0,0,10025,10026,1,0,0,0,10026,10027,1,0,0,0,10027, + 10028,3,1358,679,0,10028,10029,5,3,0,0,10029,10120,1,0,0,0,10030, + 10031,5,408,0,0,10031,10032,5,2,0,0,10032,10033,3,1210,605,0,10033, + 10034,5,6,0,0,10034,10035,3,1210,605,0,10035,10036,5,3,0,0,10036, + 10120,1,0,0,0,10037,10038,5,393,0,0,10038,10039,5,2,0,0,10039,10040, + 3,1326,663,0,10040,10041,5,3,0,0,10041,10120,1,0,0,0,10042,10043, + 5,399,0,0,10043,10044,5,2,0,0,10044,10045,3,1326,663,0,10045,10046, + 5,3,0,0,10046,10120,1,0,0,0,10047,10048,5,404,0,0,10048,10049,5, + 2,0,0,10049,10050,3,1326,663,0,10050,10051,5,3,0,0,10051,10120,1, + 0,0,0,10052,10053,5,425,0,0,10053,10054,5,2,0,0,10054,10055,3,1326, + 663,0,10055,10056,5,3,0,0,10056,10120,1,0,0,0,10057,10058,5,426, + 0,0,10058,10059,5,2,0,0,10059,10060,5,266,0,0,10060,10066,3,1488, + 744,0,10061,10064,5,6,0,0,10062,10065,3,1268,634,0,10063,10065,3, + 1326,663,0,10064,10062,1,0,0,0,10064,10063,1,0,0,0,10065,10067,1, + 0,0,0,10066,10061,1,0,0,0,10066,10067,1,0,0,0,10067,10068,1,0,0, + 0,10068,10069,5,3,0,0,10069,10120,1,0,0,0,10070,10071,5,427,0,0, + 10071,10072,5,2,0,0,10072,10073,3,1252,626,0,10073,10074,3,1278, + 639,0,10074,10075,5,3,0,0,10075,10120,1,0,0,0,10076,10077,5,428, + 0,0,10077,10078,5,2,0,0,10078,10079,3,1270,635,0,10079,10080,5,3, + 0,0,10080,10120,1,0,0,0,10081,10082,5,429,0,0,10082,10083,5,2,0, + 0,10083,10084,3,1274,637,0,10084,10086,3,1210,605,0,10085,10087, + 3,1276,638,0,10086,10085,1,0,0,0,10086,10087,1,0,0,0,10087,10088, + 1,0,0,0,10088,10089,5,3,0,0,10089,10120,1,0,0,0,10090,10091,5,430, + 0,0,10091,10092,5,2,0,0,10092,10093,5,266,0,0,10093,10096,3,1488, + 744,0,10094,10095,5,6,0,0,10095,10097,3,1210,605,0,10096,10094,1, + 0,0,0,10096,10097,1,0,0,0,10097,10098,1,0,0,0,10098,10099,5,3,0, + 0,10099,10120,1,0,0,0,10100,10101,5,431,0,0,10101,10102,5,2,0,0, + 10102,10103,5,383,0,0,10103,10104,3,1210,605,0,10104,10105,5,6,0, + 0,10105,10107,3,1264,632,0,10106,10108,3,1266,633,0,10107,10106, + 1,0,0,0,10107,10108,1,0,0,0,10108,10109,1,0,0,0,10109,10110,5,3, + 0,0,10110,10120,1,0,0,0,10111,10112,5,432,0,0,10112,10113,5,2,0, + 0,10113,10114,3,1274,637,0,10114,10115,3,1210,605,0,10115,10116, + 5,36,0,0,10116,10117,3,1170,585,0,10117,10118,5,3,0,0,10118,10120, + 1,0,0,0,10119,9935,1,0,0,0,10119,9941,1,0,0,0,10119,9942,1,0,0,0, + 10119,9949,1,0,0,0,10119,9956,1,0,0,0,10119,9963,1,0,0,0,10119,9970, + 1,0,0,0,10119,9971,1,0,0,0,10119,9972,1,0,0,0,10119,9973,1,0,0,0, + 10119,9974,1,0,0,0,10119,9975,1,0,0,0,10119,9976,1,0,0,0,10119,9983, + 1,0,0,0,10119,9989,1,0,0,0,10119,9998,1,0,0,0,10119,10003,1,0,0, + 0,10119,10009,1,0,0,0,10119,10015,1,0,0,0,10119,10022,1,0,0,0,10119, + 10030,1,0,0,0,10119,10037,1,0,0,0,10119,10042,1,0,0,0,10119,10047, + 1,0,0,0,10119,10052,1,0,0,0,10119,10057,1,0,0,0,10119,10070,1,0, + 0,0,10119,10076,1,0,0,0,10119,10081,1,0,0,0,10119,10090,1,0,0,0, + 10119,10100,1,0,0,0,10119,10111,1,0,0,0,10120,1263,1,0,0,0,10121, + 10122,5,375,0,0,10122,10127,3,1210,605,0,10123,10124,5,375,0,0,10124, + 10125,5,269,0,0,10125,10127,5,450,0,0,10126,10121,1,0,0,0,10126, + 10123,1,0,0,0,10127,1265,1,0,0,0,10128,10129,5,6,0,0,10129,10130, + 5,339,0,0,10130,10139,5,385,0,0,10131,10132,5,6,0,0,10132,10133, + 5,339,0,0,10133,10139,5,269,0,0,10134,10135,5,6,0,0,10135,10136, + 5,339,0,0,10136,10137,5,269,0,0,10137,10139,5,450,0,0,10138,10128, + 1,0,0,0,10138,10131,1,0,0,0,10138,10134,1,0,0,0,10139,1267,1,0,0, + 0,10140,10141,5,424,0,0,10141,10142,5,2,0,0,10142,10143,3,1270,635, + 0,10143,10144,5,3,0,0,10144,1269,1,0,0,0,10145,10150,3,1272,636, + 0,10146,10147,5,6,0,0,10147,10149,3,1272,636,0,10148,10146,1,0,0, + 0,10149,10152,1,0,0,0,10150,10148,1,0,0,0,10150,10151,1,0,0,0,10151, + 1271,1,0,0,0,10152,10150,1,0,0,0,10153,10156,3,1210,605,0,10154, + 10155,5,36,0,0,10155,10157,3,1488,744,0,10156,10154,1,0,0,0,10156, + 10157,1,0,0,0,10157,1273,1,0,0,0,10158,10159,7,71,0,0,10159,1275, + 1,0,0,0,10160,10161,5,292,0,0,10161,10165,5,378,0,0,10162,10163, + 5,347,0,0,10163,10165,5,378,0,0,10164,10160,1,0,0,0,10164,10162, + 1,0,0,0,10165,1277,1,0,0,0,10166,10167,5,286,0,0,10167,10182,3,1252, + 626,0,10168,10169,5,286,0,0,10169,10170,3,1252,626,0,10170,10171, + 3,1280,640,0,10171,10182,1,0,0,0,10172,10173,5,286,0,0,10173,10174, + 3,1280,640,0,10174,10175,3,1252,626,0,10175,10182,1,0,0,0,10176, + 10177,5,286,0,0,10177,10178,3,1280,640,0,10178,10179,3,1252,626, + 0,10179,10180,3,1280,640,0,10180,10182,1,0,0,0,10181,10166,1,0,0, + 0,10181,10168,1,0,0,0,10181,10172,1,0,0,0,10181,10176,1,0,0,0,10182, + 1279,1,0,0,0,10183,10184,5,147,0,0,10184,10185,7,72,0,0,10185,1281, + 1,0,0,0,10186,10187,5,479,0,0,10187,10188,5,66,0,0,10188,10189,5, + 2,0,0,10189,10190,3,1042,521,0,10190,10191,5,3,0,0,10191,1283,1, + 0,0,0,10192,10193,5,480,0,0,10193,10194,5,2,0,0,10194,10195,5,103, + 0,0,10195,10196,3,1210,605,0,10196,10197,5,3,0,0,10197,1285,1,0, + 0,0,10198,10199,5,104,0,0,10199,10200,3,1288,644,0,10200,1287,1, + 0,0,0,10201,10206,3,1290,645,0,10202,10203,5,6,0,0,10203,10205,3, + 1290,645,0,10204,10202,1,0,0,0,10205,10208,1,0,0,0,10206,10204,1, + 0,0,0,10206,10207,1,0,0,0,10207,1289,1,0,0,0,10208,10206,1,0,0,0, + 10209,10210,3,1472,736,0,10210,10211,5,36,0,0,10211,10212,3,1294, + 647,0,10212,1291,1,0,0,0,10213,10216,5,124,0,0,10214,10217,3,1294, + 647,0,10215,10217,3,1472,736,0,10216,10214,1,0,0,0,10216,10215,1, + 0,0,0,10217,1293,1,0,0,0,10218,10220,5,2,0,0,10219,10221,3,1296, + 648,0,10220,10219,1,0,0,0,10220,10221,1,0,0,0,10221,10223,1,0,0, + 0,10222,10224,3,1298,649,0,10223,10222,1,0,0,0,10223,10224,1,0,0, + 0,10224,10226,1,0,0,0,10225,10227,3,1040,520,0,10226,10225,1,0,0, + 0,10226,10227,1,0,0,0,10227,10229,1,0,0,0,10228,10230,3,1300,650, + 0,10229,10228,1,0,0,0,10229,10230,1,0,0,0,10230,10231,1,0,0,0,10231, + 10232,5,3,0,0,10232,1295,1,0,0,0,10233,10234,3,1472,736,0,10234, + 1297,1,0,0,0,10235,10236,5,285,0,0,10236,10237,5,147,0,0,10237,10238, + 3,1326,663,0,10238,1299,1,0,0,0,10239,10240,5,299,0,0,10240,10242, + 3,1302,651,0,10241,10243,3,1306,653,0,10242,10241,1,0,0,0,10242, + 10243,1,0,0,0,10243,10255,1,0,0,0,10244,10245,5,320,0,0,10245,10247, + 3,1302,651,0,10246,10248,3,1306,653,0,10247,10246,1,0,0,0,10247, + 10248,1,0,0,0,10248,10255,1,0,0,0,10249,10250,5,481,0,0,10250,10252, + 3,1302,651,0,10251,10253,3,1306,653,0,10252,10251,1,0,0,0,10252, + 10253,1,0,0,0,10253,10255,1,0,0,0,10254,10239,1,0,0,0,10254,10244, + 1,0,0,0,10254,10249,1,0,0,0,10255,1301,1,0,0,0,10256,10263,3,1304, + 652,0,10257,10258,5,387,0,0,10258,10259,3,1304,652,0,10259,10260, + 5,33,0,0,10260,10261,3,1304,652,0,10261,10263,1,0,0,0,10262,10256, + 1,0,0,0,10262,10257,1,0,0,0,10263,1303,1,0,0,0,10264,10265,5,362, + 0,0,10265,10272,7,73,0,0,10266,10267,5,434,0,0,10267,10272,5,414, + 0,0,10268,10269,3,1210,605,0,10269,10270,7,73,0,0,10270,10272,1, + 0,0,0,10271,10264,1,0,0,0,10271,10266,1,0,0,0,10271,10268,1,0,0, + 0,10272,1305,1,0,0,0,10273,10280,5,199,0,0,10274,10275,5,434,0,0, + 10275,10281,5,414,0,0,10276,10281,5,66,0,0,10277,10281,5,467,0,0, + 10278,10279,5,269,0,0,10279,10281,5,482,0,0,10280,10274,1,0,0,0, + 10280,10276,1,0,0,0,10280,10277,1,0,0,0,10280,10278,1,0,0,0,10281, + 1307,1,0,0,0,10282,10283,5,414,0,0,10283,10285,5,2,0,0,10284,10286, + 3,1326,663,0,10285,10284,1,0,0,0,10285,10286,1,0,0,0,10286,10287, + 1,0,0,0,10287,10295,5,3,0,0,10288,10289,5,2,0,0,10289,10290,3,1326, + 663,0,10290,10291,5,6,0,0,10291,10292,3,1210,605,0,10292,10293,5, + 3,0,0,10293,10295,1,0,0,0,10294,10282,1,0,0,0,10294,10288,1,0,0, + 0,10295,1309,1,0,0,0,10296,10297,5,414,0,0,10297,10299,5,2,0,0,10298, + 10300,3,1326,663,0,10299,10298,1,0,0,0,10299,10300,1,0,0,0,10300, + 10301,1,0,0,0,10301,10302,5,3,0,0,10302,1311,1,0,0,0,10303,10304, + 5,2,0,0,10304,10305,3,1210,605,0,10305,10306,5,6,0,0,10306,10307, + 3,1326,663,0,10307,10308,5,3,0,0,10308,1313,1,0,0,0,10309,10310, + 7,74,0,0,10310,1315,1,0,0,0,10311,10314,5,29,0,0,10312,10314,3,1318, + 659,0,10313,10311,1,0,0,0,10313,10312,1,0,0,0,10314,1317,1,0,0,0, + 10315,10316,7,75,0,0,10316,1319,1,0,0,0,10317,10324,5,29,0,0,10318, + 10319,5,278,0,0,10319,10320,5,2,0,0,10320,10321,3,730,365,0,10321, + 10322,5,3,0,0,10322,10324,1,0,0,0,10323,10317,1,0,0,0,10323,10318, + 1,0,0,0,10324,1321,1,0,0,0,10325,10332,3,1316,658,0,10326,10327, + 5,278,0,0,10327,10328,5,2,0,0,10328,10329,3,730,365,0,10329,10330, + 5,3,0,0,10330,10332,1,0,0,0,10331,10325,1,0,0,0,10331,10326,1,0, + 0,0,10332,1323,1,0,0,0,10333,10346,3,1316,658,0,10334,10335,5,278, + 0,0,10335,10336,5,2,0,0,10336,10337,3,730,365,0,10337,10338,5,3, + 0,0,10338,10346,1,0,0,0,10339,10346,5,120,0,0,10340,10341,5,77,0, + 0,10341,10346,5,120,0,0,10342,10346,5,114,0,0,10343,10344,5,77,0, + 0,10344,10346,5,114,0,0,10345,10333,1,0,0,0,10345,10334,1,0,0,0, + 10345,10339,1,0,0,0,10345,10340,1,0,0,0,10345,10342,1,0,0,0,10345, + 10343,1,0,0,0,10346,1325,1,0,0,0,10347,10352,3,1210,605,0,10348, + 10349,5,6,0,0,10349,10351,3,1210,605,0,10350,10348,1,0,0,0,10351, + 10354,1,0,0,0,10352,10350,1,0,0,0,10352,10353,1,0,0,0,10353,1327, + 1,0,0,0,10354,10352,1,0,0,0,10355,10360,3,1334,667,0,10356,10357, + 5,6,0,0,10357,10359,3,1334,667,0,10358,10356,1,0,0,0,10359,10362, + 1,0,0,0,10360,10358,1,0,0,0,10360,10361,1,0,0,0,10361,1329,1,0,0, + 0,10362,10360,1,0,0,0,10363,10368,3,1332,666,0,10364,10365,5,6,0, + 0,10365,10367,3,1332,666,0,10366,10364,1,0,0,0,10367,10370,1,0,0, + 0,10368,10366,1,0,0,0,10368,10369,1,0,0,0,10369,1331,1,0,0,0,10370, + 10368,1,0,0,0,10371,10377,3,1430,715,0,10372,10373,5,2,0,0,10373, + 10374,3,1210,605,0,10374,10375,5,3,0,0,10375,10377,1,0,0,0,10376, + 10371,1,0,0,0,10376,10372,1,0,0,0,10377,1333,1,0,0,0,10378,10381, + 3,1430,715,0,10379,10381,3,1210,605,0,10380,10378,1,0,0,0,10380, + 10379,1,0,0,0,10381,1335,1,0,0,0,10382,10387,3,1338,669,0,10383, + 10384,5,6,0,0,10384,10386,3,1338,669,0,10385,10383,1,0,0,0,10386, + 10389,1,0,0,0,10387,10385,1,0,0,0,10387,10388,1,0,0,0,10388,1337, + 1,0,0,0,10389,10387,1,0,0,0,10390,10396,3,1210,605,0,10391,10392, + 3,682,341,0,10392,10393,7,76,0,0,10393,10394,3,1210,605,0,10394, + 10396,1,0,0,0,10395,10390,1,0,0,0,10395,10391,1,0,0,0,10396,1339, + 1,0,0,0,10397,10402,3,1166,583,0,10398,10399,5,6,0,0,10399,10401, + 3,1166,583,0,10400,10398,1,0,0,0,10401,10404,1,0,0,0,10402,10400, + 1,0,0,0,10402,10403,1,0,0,0,10403,1341,1,0,0,0,10404,10402,1,0,0, + 0,10405,10408,5,4,0,0,10406,10409,3,1326,663,0,10407,10409,3,1344, + 672,0,10408,10406,1,0,0,0,10408,10407,1,0,0,0,10408,10409,1,0,0, + 0,10409,10410,1,0,0,0,10410,10411,5,5,0,0,10411,1343,1,0,0,0,10412, + 10417,3,1342,671,0,10413,10414,5,6,0,0,10414,10416,3,1342,671,0, + 10415,10413,1,0,0,0,10416,10419,1,0,0,0,10417,10415,1,0,0,0,10417, + 10418,1,0,0,0,10418,1345,1,0,0,0,10419,10417,1,0,0,0,10420,10421, + 3,1348,674,0,10421,10422,5,64,0,0,10422,10423,3,1210,605,0,10423, + 1347,1,0,0,0,10424,10433,3,1490,745,0,10425,10433,5,384,0,0,10426, + 10433,5,264,0,0,10427,10433,5,176,0,0,10428,10433,5,218,0,0,10429, + 10433,5,261,0,0,10430,10433,5,326,0,0,10431,10433,3,1456,728,0,10432, + 10424,1,0,0,0,10432,10425,1,0,0,0,10432,10426,1,0,0,0,10432,10427, + 1,0,0,0,10432,10428,1,0,0,0,10432,10429,1,0,0,0,10432,10430,1,0, + 0,0,10432,10431,1,0,0,0,10433,1349,1,0,0,0,10434,10435,7,77,0,0, + 10435,1351,1,0,0,0,10436,10437,3,1210,605,0,10437,10438,5,84,0,0, + 10438,10439,3,1210,605,0,10439,10440,5,64,0,0,10440,10443,3,1210, + 605,0,10441,10442,5,62,0,0,10442,10444,3,1210,605,0,10443,10441, + 1,0,0,0,10443,10444,1,0,0,0,10444,1353,1,0,0,0,10445,10446,3,1250, + 625,0,10446,10447,5,68,0,0,10447,10448,3,1250,625,0,10448,1355,1, + 0,0,0,10449,10450,3,1210,605,0,10450,10451,5,64,0,0,10451,10452, + 3,1210,605,0,10452,10453,5,62,0,0,10453,10454,3,1210,605,0,10454, + 10477,1,0,0,0,10455,10456,3,1210,605,0,10456,10457,5,62,0,0,10457, + 10458,3,1210,605,0,10458,10459,5,64,0,0,10459,10460,3,1210,605,0, + 10460,10477,1,0,0,0,10461,10462,3,1210,605,0,10462,10463,5,64,0, + 0,10463,10464,3,1210,605,0,10464,10477,1,0,0,0,10465,10466,3,1210, + 605,0,10466,10467,5,62,0,0,10467,10468,3,1210,605,0,10468,10477, + 1,0,0,0,10469,10470,3,1210,605,0,10470,10471,5,127,0,0,10471,10472, + 3,1210,605,0,10472,10473,5,197,0,0,10473,10474,3,1210,605,0,10474, + 10477,1,0,0,0,10475,10477,3,1326,663,0,10476,10449,1,0,0,0,10476, + 10455,1,0,0,0,10476,10461,1,0,0,0,10476,10465,1,0,0,0,10476,10469, + 1,0,0,0,10476,10475,1,0,0,0,10477,1357,1,0,0,0,10478,10479,3,1210, + 605,0,10479,10480,5,64,0,0,10480,10481,3,1326,663,0,10481,10486, + 1,0,0,0,10482,10483,5,64,0,0,10483,10486,3,1326,663,0,10484,10486, + 3,1326,663,0,10485,10478,1,0,0,0,10485,10482,1,0,0,0,10485,10484, + 1,0,0,0,10486,1359,1,0,0,0,10487,10493,3,1000,500,0,10488,10489, + 5,2,0,0,10489,10490,3,1326,663,0,10490,10491,5,3,0,0,10491,10493, + 1,0,0,0,10492,10487,1,0,0,0,10492,10488,1,0,0,0,10493,1361,1,0,0, + 0,10494,10496,5,40,0,0,10495,10497,3,1370,685,0,10496,10495,1,0, + 0,0,10496,10497,1,0,0,0,10497,10498,1,0,0,0,10498,10500,3,1364,682, + 0,10499,10501,3,1368,684,0,10500,10499,1,0,0,0,10500,10501,1,0,0, + 0,10501,10502,1,0,0,0,10502,10503,5,454,0,0,10503,1363,1,0,0,0,10504, + 10506,3,1366,683,0,10505,10504,1,0,0,0,10506,10507,1,0,0,0,10507, + 10505,1,0,0,0,10507,10508,1,0,0,0,10508,1365,1,0,0,0,10509,10510, + 5,102,0,0,10510,10511,3,1210,605,0,10511,10512,5,93,0,0,10512,10513, + 3,1210,605,0,10513,1367,1,0,0,0,10514,10515,5,58,0,0,10515,10516, + 3,1210,605,0,10516,1369,1,0,0,0,10517,10518,3,1210,605,0,10518,1371, + 1,0,0,0,10519,10521,3,1472,736,0,10520,10522,3,1378,689,0,10521, + 10520,1,0,0,0,10521,10522,1,0,0,0,10522,1373,1,0,0,0,10523,10526, + 5,11,0,0,10524,10527,3,1436,718,0,10525,10527,5,9,0,0,10526,10524, + 1,0,0,0,10526,10525,1,0,0,0,10527,10541,1,0,0,0,10528,10537,5,4, + 0,0,10529,10538,3,1210,605,0,10530,10532,3,1376,688,0,10531,10530, + 1,0,0,0,10531,10532,1,0,0,0,10532,10533,1,0,0,0,10533,10535,5,8, + 0,0,10534,10536,3,1376,688,0,10535,10534,1,0,0,0,10535,10536,1,0, + 0,0,10536,10538,1,0,0,0,10537,10529,1,0,0,0,10537,10531,1,0,0,0, + 10538,10539,1,0,0,0,10539,10541,5,5,0,0,10540,10523,1,0,0,0,10540, + 10528,1,0,0,0,10541,1375,1,0,0,0,10542,10543,3,1210,605,0,10543, + 1377,1,0,0,0,10544,10546,3,1374,687,0,10545,10544,1,0,0,0,10546, + 10547,1,0,0,0,10547,10545,1,0,0,0,10547,10548,1,0,0,0,10548,1379, + 1,0,0,0,10549,10551,3,1374,687,0,10550,10549,1,0,0,0,10551,10554, + 1,0,0,0,10552,10550,1,0,0,0,10552,10553,1,0,0,0,10553,1381,1,0,0, + 0,10554,10552,1,0,0,0,10555,10556,3,1384,692,0,10556,1383,1,0,0, + 0,10557,10562,3,1386,693,0,10558,10559,5,6,0,0,10559,10561,3,1386, + 693,0,10560,10558,1,0,0,0,10561,10564,1,0,0,0,10562,10560,1,0,0, + 0,10562,10563,1,0,0,0,10563,1385,1,0,0,0,10564,10562,1,0,0,0,10565, + 10570,3,1334,667,0,10566,10567,5,36,0,0,10567,10571,3,1488,744,0, + 10568,10571,3,1490,745,0,10569,10571,1,0,0,0,10570,10566,1,0,0,0, + 10570,10568,1,0,0,0,10570,10569,1,0,0,0,10571,10574,1,0,0,0,10572, + 10574,5,9,0,0,10573,10565,1,0,0,0,10573,10572,1,0,0,0,10574,1387, + 1,0,0,0,10575,10580,3,1410,705,0,10576,10577,5,6,0,0,10577,10579, + 3,1410,705,0,10578,10576,1,0,0,0,10579,10582,1,0,0,0,10580,10578, + 1,0,0,0,10580,10581,1,0,0,0,10581,1389,1,0,0,0,10582,10580,1,0,0, + 0,10583,10588,3,1404,702,0,10584,10585,5,6,0,0,10585,10587,3,1404, + 702,0,10586,10584,1,0,0,0,10587,10590,1,0,0,0,10588,10586,1,0,0, + 0,10588,10589,1,0,0,0,10589,1391,1,0,0,0,10590,10588,1,0,0,0,10591, + 10596,3,1420,710,0,10592,10593,5,6,0,0,10593,10595,3,1420,710,0, + 10594,10592,1,0,0,0,10595,10598,1,0,0,0,10596,10594,1,0,0,0,10596, + 10597,1,0,0,0,10597,1393,1,0,0,0,10598,10596,1,0,0,0,10599,10604, + 3,1418,709,0,10600,10601,5,6,0,0,10601,10603,3,1418,709,0,10602, + 10600,1,0,0,0,10603,10606,1,0,0,0,10604,10602,1,0,0,0,10604,10605, + 1,0,0,0,10605,1395,1,0,0,0,10606,10604,1,0,0,0,10607,10612,3,1426, + 713,0,10608,10609,5,6,0,0,10609,10611,3,1426,713,0,10610,10608,1, + 0,0,0,10611,10614,1,0,0,0,10612,10610,1,0,0,0,10612,10613,1,0,0, + 0,10613,1397,1,0,0,0,10614,10612,1,0,0,0,10615,10617,3,1472,736, + 0,10616,10618,3,1378,689,0,10617,10616,1,0,0,0,10617,10618,1,0,0, + 0,10618,1399,1,0,0,0,10619,10621,3,1472,736,0,10620,10622,3,1378, + 689,0,10621,10620,1,0,0,0,10621,10622,1,0,0,0,10622,1401,1,0,0,0, + 10623,10625,3,1472,736,0,10624,10626,3,1378,689,0,10625,10624,1, + 0,0,0,10625,10626,1,0,0,0,10626,1403,1,0,0,0,10627,10629,3,1472, + 736,0,10628,10630,3,1378,689,0,10629,10628,1,0,0,0,10629,10630,1, + 0,0,0,10630,1405,1,0,0,0,10631,10633,3,1472,736,0,10632,10634,3, + 1378,689,0,10633,10632,1,0,0,0,10633,10634,1,0,0,0,10634,1407,1, + 0,0,0,10635,10637,3,1472,736,0,10636,10638,3,558,279,0,10637,10636, + 1,0,0,0,10637,10638,1,0,0,0,10638,1409,1,0,0,0,10639,10641,3,1472, + 736,0,10640,10642,3,1378,689,0,10641,10640,1,0,0,0,10641,10642,1, + 0,0,0,10642,1411,1,0,0,0,10643,10648,3,1400,700,0,10644,10645,5, + 6,0,0,10645,10647,3,1400,700,0,10646,10644,1,0,0,0,10647,10650,1, + 0,0,0,10648,10646,1,0,0,0,10648,10649,1,0,0,0,10649,1413,1,0,0,0, + 10650,10648,1,0,0,0,10651,10656,3,1434,717,0,10652,10653,5,6,0,0, + 10653,10655,3,1434,717,0,10654,10652,1,0,0,0,10655,10658,1,0,0,0, + 10656,10654,1,0,0,0,10656,10657,1,0,0,0,10657,1415,1,0,0,0,10658, + 10656,1,0,0,0,10659,10661,3,1472,736,0,10660,10662,3,558,279,0,10661, + 10660,1,0,0,0,10661,10662,1,0,0,0,10662,1417,1,0,0,0,10663,10665, + 3,1472,736,0,10664,10666,3,558,279,0,10665,10664,1,0,0,0,10665,10666, + 1,0,0,0,10666,1419,1,0,0,0,10667,10669,3,1472,736,0,10668,10670, + 3,558,279,0,10669,10668,1,0,0,0,10669,10670,1,0,0,0,10670,1421,1, + 0,0,0,10671,10672,3,1472,736,0,10672,1423,1,0,0,0,10673,10674,3, + 1472,736,0,10674,1425,1,0,0,0,10675,10680,3,1480,740,0,10676,10677, + 3,1472,736,0,10677,10678,3,1378,689,0,10678,10680,1,0,0,0,10679, + 10675,1,0,0,0,10679,10676,1,0,0,0,10680,1427,1,0,0,0,10681,10686, + 3,1480,740,0,10682,10683,3,1472,736,0,10683,10684,3,1378,689,0,10684, + 10686,1,0,0,0,10685,10681,1,0,0,0,10685,10682,1,0,0,0,10686,1429, + 1,0,0,0,10687,10691,3,1472,736,0,10688,10690,3,1374,687,0,10689, + 10688,1,0,0,0,10690,10693,1,0,0,0,10691,10689,1,0,0,0,10691,10692, + 1,0,0,0,10692,1431,1,0,0,0,10693,10691,1,0,0,0,10694,10695,3,1472, + 736,0,10695,1433,1,0,0,0,10696,10697,3,1472,736,0,10697,1435,1,0, + 0,0,10698,10699,3,1488,744,0,10699,1437,1,0,0,0,10700,10701,3,1456, + 728,0,10701,1439,1,0,0,0,10702,10707,3,1480,740,0,10703,10704,3, + 1472,736,0,10704,10705,3,1378,689,0,10705,10707,1,0,0,0,10706,10702, + 1,0,0,0,10706,10703,1,0,0,0,10707,1441,1,0,0,0,10708,10713,3,1480, + 740,0,10709,10710,3,1472,736,0,10710,10711,3,1378,689,0,10711,10713, + 1,0,0,0,10712,10708,1,0,0,0,10712,10709,1,0,0,0,10713,1443,1,0,0, + 0,10714,10719,3,1482,741,0,10715,10716,3,1472,736,0,10716,10717, + 3,1378,689,0,10717,10719,1,0,0,0,10718,10714,1,0,0,0,10718,10715, + 1,0,0,0,10719,1445,1,0,0,0,10720,10756,3,1454,727,0,10721,10756, + 3,1452,726,0,10722,10756,3,1456,728,0,10723,10756,3,1450,725,0,10724, + 10756,3,1448,724,0,10725,10735,3,1442,721,0,10726,10736,3,1456,728, + 0,10727,10728,5,2,0,0,10728,10730,3,1336,668,0,10729,10731,3,1040, + 520,0,10730,10729,1,0,0,0,10730,10731,1,0,0,0,10731,10732,1,0,0, + 0,10732,10733,5,3,0,0,10733,10734,3,1456,728,0,10734,10736,1,0,0, + 0,10735,10726,1,0,0,0,10735,10727,1,0,0,0,10736,10756,1,0,0,0,10737, + 10738,3,1172,586,0,10738,10739,3,1456,728,0,10739,10756,1,0,0,0, + 10740,10750,3,1200,600,0,10741,10743,3,1456,728,0,10742,10744,3, + 1204,602,0,10743,10742,1,0,0,0,10743,10744,1,0,0,0,10744,10751,1, + 0,0,0,10745,10746,5,2,0,0,10746,10747,3,1454,727,0,10747,10748,5, + 3,0,0,10748,10749,3,1456,728,0,10749,10751,1,0,0,0,10750,10741,1, + 0,0,0,10750,10745,1,0,0,0,10751,10756,1,0,0,0,10752,10756,5,96,0, + 0,10753,10756,5,60,0,0,10754,10756,5,78,0,0,10755,10720,1,0,0,0, + 10755,10721,1,0,0,0,10755,10722,1,0,0,0,10755,10723,1,0,0,0,10755, + 10724,1,0,0,0,10755,10725,1,0,0,0,10755,10737,1,0,0,0,10755,10740, + 1,0,0,0,10755,10752,1,0,0,0,10755,10753,1,0,0,0,10755,10754,1,0, + 0,0,10756,1447,1,0,0,0,10757,10758,5,567,0,0,10758,1449,1,0,0,0, + 10759,10760,5,563,0,0,10760,1451,1,0,0,0,10761,10762,5,573,0,0,10762, + 1453,1,0,0,0,10763,10764,5,571,0,0,10764,1455,1,0,0,0,10765,10767, + 3,1458,729,0,10766,10768,3,1460,730,0,10767,10766,1,0,0,0,10767, + 10768,1,0,0,0,10768,1457,1,0,0,0,10769,10781,5,558,0,0,10770,10781, + 5,560,0,0,10771,10775,5,562,0,0,10772,10774,5,588,0,0,10773,10772, + 1,0,0,0,10774,10777,1,0,0,0,10775,10773,1,0,0,0,10775,10776,1,0, + 0,0,10776,10778,1,0,0,0,10777,10775,1,0,0,0,10778,10781,5,589,0, + 0,10779,10781,5,584,0,0,10780,10769,1,0,0,0,10780,10770,1,0,0,0, + 10780,10771,1,0,0,0,10780,10779,1,0,0,0,10781,1459,1,0,0,0,10782, + 10783,5,487,0,0,10783,10784,3,1458,729,0,10784,1461,1,0,0,0,10785, + 10791,3,1454,727,0,10786,10787,5,12,0,0,10787,10791,3,1454,727,0, + 10788,10789,5,13,0,0,10789,10791,3,1454,727,0,10790,10785,1,0,0, + 0,10790,10786,1,0,0,0,10790,10788,1,0,0,0,10791,1463,1,0,0,0,10792, + 10793,3,1468,734,0,10793,1465,1,0,0,0,10794,10795,3,1468,734,0,10795, + 1467,1,0,0,0,10796,10802,3,1486,743,0,10797,10802,5,52,0,0,10798, + 10802,5,49,0,0,10799,10802,5,89,0,0,10800,10802,5,524,0,0,10801, + 10796,1,0,0,0,10801,10797,1,0,0,0,10801,10798,1,0,0,0,10801,10799, + 1,0,0,0,10801,10800,1,0,0,0,10802,1469,1,0,0,0,10803,10808,3,1468, + 734,0,10804,10805,5,6,0,0,10805,10807,3,1468,734,0,10806,10804,1, + 0,0,0,10807,10810,1,0,0,0,10808,10806,1,0,0,0,10808,10809,1,0,0, + 0,10809,1471,1,0,0,0,10810,10808,1,0,0,0,10811,10816,3,1490,745, + 0,10812,10816,3,1494,747,0,10813,10816,3,1496,748,0,10814,10816, + 3,1732,866,0,10815,10811,1,0,0,0,10815,10812,1,0,0,0,10815,10813, + 1,0,0,0,10815,10814,1,0,0,0,10816,1473,1,0,0,0,10817,10818,3,1490, + 745,0,10818,1475,1,0,0,0,10819,10832,3,708,354,0,10820,10821,5,2, + 0,0,10821,10822,3,1210,605,0,10822,10823,5,3,0,0,10823,10824,1,0, + 0,0,10824,10826,3,1490,745,0,10825,10827,3,648,324,0,10826,10825, + 1,0,0,0,10826,10827,1,0,0,0,10827,10829,1,0,0,0,10828,10830,3,650, + 325,0,10829,10828,1,0,0,0,10829,10830,1,0,0,0,10830,10832,1,0,0, + 0,10831,10819,1,0,0,0,10831,10820,1,0,0,0,10832,1477,1,0,0,0,10833, + 10834,5,105,0,0,10834,10836,3,132,66,0,10835,10833,1,0,0,0,10835, + 10836,1,0,0,0,10836,10838,1,0,0,0,10837,10839,3,284,142,0,10838, + 10837,1,0,0,0,10838,10839,1,0,0,0,10839,1479,1,0,0,0,10840,10845, + 3,1490,745,0,10841,10845,3,1494,747,0,10842,10845,3,1732,866,0,10843, + 10845,3,1498,749,0,10844,10840,1,0,0,0,10844,10841,1,0,0,0,10844, + 10842,1,0,0,0,10844,10843,1,0,0,0,10845,1481,1,0,0,0,10846,10851, + 3,1490,745,0,10847,10851,3,1494,747,0,10848,10851,3,1732,866,0,10849, + 10851,3,1498,749,0,10850,10846,1,0,0,0,10850,10847,1,0,0,0,10850, + 10848,1,0,0,0,10850,10849,1,0,0,0,10851,1483,1,0,0,0,10852,10855, + 3,1430,715,0,10853,10855,3,1498,749,0,10854,10852,1,0,0,0,10854, + 10853,1,0,0,0,10855,1485,1,0,0,0,10856,10861,3,1490,745,0,10857, + 10861,3,1494,747,0,10858,10861,3,1496,748,0,10859,10861,3,1498,749, + 0,10860,10856,1,0,0,0,10860,10857,1,0,0,0,10860,10858,1,0,0,0,10860, + 10859,1,0,0,0,10861,1487,1,0,0,0,10862,10869,3,1490,745,0,10863, + 10869,3,1732,866,0,10864,10869,3,1494,747,0,10865,10869,3,1496,748, + 0,10866,10869,3,1498,749,0,10867,10869,3,1500,750,0,10868,10862, + 1,0,0,0,10868,10863,1,0,0,0,10868,10864,1,0,0,0,10868,10865,1,0, + 0,0,10868,10866,1,0,0,0,10868,10867,1,0,0,0,10869,1489,1,0,0,0,10870, + 10872,5,549,0,0,10871,10873,3,1460,730,0,10872,10871,1,0,0,0,10872, + 10873,1,0,0,0,10873,10881,1,0,0,0,10874,10881,3,1456,728,0,10875, + 10881,5,550,0,0,10876,10881,5,554,0,0,10877,10881,3,1254,627,0,10878, + 10881,3,1492,746,0,10879,10881,3,1732,866,0,10880,10870,1,0,0,0, + 10880,10874,1,0,0,0,10880,10875,1,0,0,0,10880,10876,1,0,0,0,10880, + 10877,1,0,0,0,10880,10878,1,0,0,0,10880,10879,1,0,0,0,10881,1491, + 1,0,0,0,10882,10883,5,575,0,0,10883,1493,1,0,0,0,10884,10885,7,78, + 0,0,10885,1495,1,0,0,0,10886,10938,5,387,0,0,10887,10938,5,388,0, + 0,10888,10938,3,1182,591,0,10889,10938,5,390,0,0,10890,10938,5,391, + 0,0,10891,10938,3,1190,595,0,10892,10938,5,393,0,0,10893,10938,5, + 394,0,0,10894,10938,5,395,0,0,10895,10938,5,396,0,0,10896,10938, + 5,397,0,0,10897,10938,5,398,0,0,10898,10938,5,399,0,0,10899,10938, + 5,470,0,0,10900,10938,5,400,0,0,10901,10938,5,401,0,0,10902,10938, + 5,402,0,0,10903,10938,5,403,0,0,10904,10938,5,404,0,0,10905,10938, + 5,405,0,0,10906,10938,5,406,0,0,10907,10938,5,407,0,0,10908,10938, + 5,489,0,0,10909,10938,5,408,0,0,10910,10938,3,1178,589,0,10911,10938, + 5,453,0,0,10912,10938,5,410,0,0,10913,10938,5,411,0,0,10914,10938, + 5,412,0,0,10915,10938,5,413,0,0,10916,10938,5,414,0,0,10917,10938, + 5,415,0,0,10918,10938,5,416,0,0,10919,10938,5,417,0,0,10920,10938, + 5,418,0,0,10921,10938,5,419,0,0,10922,10938,5,420,0,0,10923,10938, + 5,421,0,0,10924,10938,5,422,0,0,10925,10938,5,423,0,0,10926,10938, + 5,424,0,0,10927,10938,5,425,0,0,10928,10938,5,426,0,0,10929,10938, + 5,427,0,0,10930,10938,5,428,0,0,10931,10938,5,476,0,0,10932,10938, + 5,429,0,0,10933,10938,5,430,0,0,10934,10938,5,431,0,0,10935,10938, + 5,432,0,0,10936,10938,5,474,0,0,10937,10886,1,0,0,0,10937,10887, + 1,0,0,0,10937,10888,1,0,0,0,10937,10889,1,0,0,0,10937,10890,1,0, + 0,0,10937,10891,1,0,0,0,10937,10892,1,0,0,0,10937,10893,1,0,0,0, + 10937,10894,1,0,0,0,10937,10895,1,0,0,0,10937,10896,1,0,0,0,10937, + 10897,1,0,0,0,10937,10898,1,0,0,0,10937,10899,1,0,0,0,10937,10900, + 1,0,0,0,10937,10901,1,0,0,0,10937,10902,1,0,0,0,10937,10903,1,0, + 0,0,10937,10904,1,0,0,0,10937,10905,1,0,0,0,10937,10906,1,0,0,0, + 10937,10907,1,0,0,0,10937,10908,1,0,0,0,10937,10909,1,0,0,0,10937, + 10910,1,0,0,0,10937,10911,1,0,0,0,10937,10912,1,0,0,0,10937,10913, + 1,0,0,0,10937,10914,1,0,0,0,10937,10915,1,0,0,0,10937,10916,1,0, + 0,0,10937,10917,1,0,0,0,10937,10918,1,0,0,0,10937,10919,1,0,0,0, + 10937,10920,1,0,0,0,10937,10921,1,0,0,0,10937,10922,1,0,0,0,10937, + 10923,1,0,0,0,10937,10924,1,0,0,0,10937,10925,1,0,0,0,10937,10926, + 1,0,0,0,10937,10927,1,0,0,0,10937,10928,1,0,0,0,10937,10929,1,0, + 0,0,10937,10930,1,0,0,0,10937,10931,1,0,0,0,10937,10932,1,0,0,0, + 10937,10933,1,0,0,0,10937,10934,1,0,0,0,10937,10935,1,0,0,0,10937, + 10936,1,0,0,0,10938,1497,1,0,0,0,10939,10940,7,79,0,0,10940,1499, + 1,0,0,0,10941,10942,7,80,0,0,10942,1501,1,0,0,0,10943,10944,3,1504, + 752,0,10944,10945,3,1514,757,0,10945,10946,3,1512,756,0,10946,1503, + 1,0,0,0,10947,10949,3,1506,753,0,10948,10947,1,0,0,0,10949,10952, + 1,0,0,0,10950,10948,1,0,0,0,10950,10951,1,0,0,0,10951,1505,1,0,0, + 0,10952,10950,1,0,0,0,10953,10954,3,1508,754,0,10954,10955,5,279, + 0,0,10955,10956,5,490,0,0,10956,10974,1,0,0,0,10957,10958,3,1508, + 754,0,10958,10959,5,491,0,0,10959,10960,3,1510,755,0,10960,10974, + 1,0,0,0,10961,10962,3,1508,754,0,10962,10963,5,492,0,0,10963,10964, + 5,493,0,0,10964,10974,1,0,0,0,10965,10966,3,1508,754,0,10966,10967, + 5,492,0,0,10967,10968,5,494,0,0,10968,10974,1,0,0,0,10969,10970, + 3,1508,754,0,10970,10971,5,492,0,0,10971,10972,5,495,0,0,10972,10974, + 1,0,0,0,10973,10953,1,0,0,0,10973,10957,1,0,0,0,10973,10961,1,0, + 0,0,10973,10965,1,0,0,0,10973,10969,1,0,0,0,10974,1507,1,0,0,0,10975, + 10976,5,29,0,0,10976,1509,1,0,0,0,10977,10982,3,1456,728,0,10978, + 10982,3,1500,750,0,10979,10982,3,1732,866,0,10980,10982,3,1494,747, + 0,10981,10977,1,0,0,0,10981,10978,1,0,0,0,10981,10979,1,0,0,0,10981, + 10980,1,0,0,0,10982,1511,1,0,0,0,10983,10986,1,0,0,0,10984,10986, + 5,7,0,0,10985,10983,1,0,0,0,10985,10984,1,0,0,0,10986,1513,1,0,0, + 0,10987,10988,3,1516,758,0,10988,10989,5,146,0,0,10989,10990,3,1558, + 779,0,10990,10991,3,1712,856,0,10991,10992,5,454,0,0,10992,10993, + 3,1726,863,0,10993,1515,1,0,0,0,10994,10999,3,1722,861,0,10995,10997, + 3,1518,759,0,10996,10998,3,1520,760,0,10997,10996,1,0,0,0,10997, + 10998,1,0,0,0,10998,11000,1,0,0,0,10999,10995,1,0,0,0,10999,11000, + 1,0,0,0,11000,1517,1,0,0,0,11001,11002,5,178,0,0,11002,1519,1,0, + 0,0,11003,11005,3,1524,762,0,11004,11003,1,0,0,0,11005,11006,1,0, + 0,0,11006,11004,1,0,0,0,11006,11007,1,0,0,0,11007,1521,1,0,0,0,11008, + 11009,5,18,0,0,11009,11010,3,1730,865,0,11010,11011,5,19,0,0,11011, + 1523,1,0,0,0,11012,11016,3,1526,763,0,11013,11016,5,178,0,0,11014, + 11016,3,1522,761,0,11015,11012,1,0,0,0,11015,11013,1,0,0,0,11015, + 11014,1,0,0,0,11016,1525,1,0,0,0,11017,11033,3,1542,771,0,11018, + 11019,5,496,0,0,11019,11020,5,62,0,0,11020,11034,3,1540,770,0,11021, + 11022,3,1544,772,0,11022,11023,3,1546,773,0,11023,11024,3,1548,774, + 0,11024,11025,3,1550,775,0,11025,11026,3,1552,776,0,11026,11034, + 1,0,0,0,11027,11028,3,1528,764,0,11028,11029,5,172,0,0,11029,11030, + 3,1532,766,0,11030,11031,3,1538,769,0,11031,11032,3,1530,765,0,11032, + 11034,1,0,0,0,11033,11018,1,0,0,0,11033,11021,1,0,0,0,11033,11027, + 1,0,0,0,11034,11035,1,0,0,0,11035,11036,5,7,0,0,11036,1527,1,0,0, + 0,11037,11042,1,0,0,0,11038,11039,5,269,0,0,11039,11042,5,324,0, + 0,11040,11042,5,324,0,0,11041,11037,1,0,0,0,11041,11038,1,0,0,0, + 11041,11040,1,0,0,0,11042,1529,1,0,0,0,11043,11044,3,998,499,0,11044, + 1531,1,0,0,0,11045,11051,1,0,0,0,11046,11047,5,2,0,0,11047,11048, + 3,1534,767,0,11048,11049,5,3,0,0,11049,11051,1,0,0,0,11050,11045, + 1,0,0,0,11050,11046,1,0,0,0,11051,1533,1,0,0,0,11052,11057,3,1536, + 768,0,11053,11054,5,6,0,0,11054,11056,3,1536,768,0,11055,11053,1, + 0,0,0,11056,11059,1,0,0,0,11057,11055,1,0,0,0,11057,11058,1,0,0, + 0,11058,1535,1,0,0,0,11059,11057,1,0,0,0,11060,11061,3,1542,771, + 0,11061,11062,3,1546,773,0,11062,1537,1,0,0,0,11063,11064,7,81,0, + 0,11064,1539,1,0,0,0,11065,11068,5,28,0,0,11066,11068,3,1472,736, + 0,11067,11065,1,0,0,0,11067,11066,1,0,0,0,11068,1541,1,0,0,0,11069, + 11070,3,1730,865,0,11070,1543,1,0,0,0,11071,11074,1,0,0,0,11072, + 11074,5,497,0,0,11073,11071,1,0,0,0,11073,11072,1,0,0,0,11074,1545, + 1,0,0,0,11075,11076,3,1166,583,0,11076,1547,1,0,0,0,11077,11081, + 1,0,0,0,11078,11079,5,43,0,0,11079,11081,3,556,278,0,11080,11077, + 1,0,0,0,11080,11078,1,0,0,0,11081,1549,1,0,0,0,11082,11086,1,0,0, + 0,11083,11084,5,77,0,0,11084,11086,5,78,0,0,11085,11082,1,0,0,0, + 11085,11083,1,0,0,0,11086,1551,1,0,0,0,11087,11092,1,0,0,0,11088, + 11089,3,1554,777,0,11089,11090,3,1734,867,0,11090,11092,1,0,0,0, + 11091,11087,1,0,0,0,11091,11088,1,0,0,0,11092,1553,1,0,0,0,11093, + 11096,3,1556,778,0,11094,11096,5,53,0,0,11095,11093,1,0,0,0,11095, + 11094,1,0,0,0,11096,1555,1,0,0,0,11097,11098,7,82,0,0,11098,1557, + 1,0,0,0,11099,11101,3,1560,780,0,11100,11099,1,0,0,0,11101,11104, + 1,0,0,0,11102,11100,1,0,0,0,11102,11103,1,0,0,0,11103,1559,1,0,0, + 0,11104,11102,1,0,0,0,11105,11106,3,1514,757,0,11106,11107,5,7,0, + 0,11107,11133,1,0,0,0,11108,11133,3,1626,813,0,11109,11133,3,1630, + 815,0,11110,11133,3,1568,784,0,11111,11133,3,1584,792,0,11112,11133, + 3,1590,795,0,11113,11133,3,1600,800,0,11114,11133,3,1602,801,0,11115, + 11133,3,1604,802,0,11116,11133,3,1618,809,0,11117,11133,3,1622,811, + 0,11118,11133,3,1642,821,0,11119,11133,3,1648,824,0,11120,11133, + 3,1650,825,0,11121,11133,3,1562,781,0,11122,11133,3,1564,782,0,11123, + 11133,3,1570,785,0,11124,11133,3,1658,829,0,11125,11133,3,1670,835, + 0,11126,11133,3,1678,839,0,11127,11133,3,1698,849,0,11128,11133, + 3,1700,850,0,11129,11133,3,1702,851,0,11130,11133,3,1704,852,0,11131, + 11133,3,1708,854,0,11132,11105,1,0,0,0,11132,11108,1,0,0,0,11132, + 11109,1,0,0,0,11132,11110,1,0,0,0,11132,11111,1,0,0,0,11132,11112, + 1,0,0,0,11132,11113,1,0,0,0,11132,11114,1,0,0,0,11132,11115,1,0, + 0,0,11132,11116,1,0,0,0,11132,11117,1,0,0,0,11132,11118,1,0,0,0, + 11132,11119,1,0,0,0,11132,11120,1,0,0,0,11132,11121,1,0,0,0,11132, + 11122,1,0,0,0,11132,11123,1,0,0,0,11132,11124,1,0,0,0,11132,11125, + 1,0,0,0,11132,11126,1,0,0,0,11132,11127,1,0,0,0,11132,11128,1,0, + 0,0,11132,11129,1,0,0,0,11132,11130,1,0,0,0,11132,11131,1,0,0,0, + 11133,1561,1,0,0,0,11134,11135,5,498,0,0,11135,11136,3,1738,869, + 0,11136,11137,5,7,0,0,11137,1563,1,0,0,0,11138,11139,5,433,0,0,11139, + 11145,3,1730,865,0,11140,11141,5,2,0,0,11141,11142,3,1566,783,0, + 11142,11143,5,3,0,0,11143,11144,5,7,0,0,11144,11146,1,0,0,0,11145, + 11140,1,0,0,0,11145,11146,1,0,0,0,11146,11155,1,0,0,0,11147,11148, + 5,57,0,0,11148,11149,3,1730,865,0,11149,11150,5,2,0,0,11150,11151, + 3,1566,783,0,11151,11152,5,3,0,0,11152,11153,5,7,0,0,11153,11155, + 1,0,0,0,11154,11138,1,0,0,0,11154,11147,1,0,0,0,11155,1565,1,0,0, + 0,11156,11159,1,0,0,0,11157,11159,3,1326,663,0,11158,11156,1,0,0, + 0,11158,11157,1,0,0,0,11159,1567,1,0,0,0,11160,11161,3,1582,791, + 0,11161,11162,3,1556,778,0,11162,11163,3,1734,867,0,11163,11164, + 5,7,0,0,11164,1569,1,0,0,0,11165,11166,5,499,0,0,11166,11167,3,1572, + 786,0,11167,11168,5,500,0,0,11168,11169,3,1574,787,0,11169,11170, + 5,7,0,0,11170,1571,1,0,0,0,11171,11175,1,0,0,0,11172,11175,5,434, + 0,0,11173,11175,5,501,0,0,11174,11171,1,0,0,0,11174,11172,1,0,0, + 0,11174,11173,1,0,0,0,11175,1573,1,0,0,0,11176,11181,3,1576,788, + 0,11177,11178,5,6,0,0,11178,11180,3,1576,788,0,11179,11177,1,0,0, + 0,11180,11183,1,0,0,0,11181,11179,1,0,0,0,11181,11182,1,0,0,0,11182, + 1575,1,0,0,0,11183,11181,1,0,0,0,11184,11185,3,1580,790,0,11185, + 11186,3,1556,778,0,11186,11187,3,1578,789,0,11187,1577,1,0,0,0,11188, + 11189,3,1472,736,0,11189,1579,1,0,0,0,11190,11191,3,1582,791,0,11191, + 1581,1,0,0,0,11192,11195,3,556,278,0,11193,11195,5,28,0,0,11194, + 11192,1,0,0,0,11194,11193,1,0,0,0,11195,11202,1,0,0,0,11196,11197, + 5,4,0,0,11197,11198,3,1740,870,0,11198,11199,5,5,0,0,11199,11201, + 1,0,0,0,11200,11196,1,0,0,0,11201,11204,1,0,0,0,11202,11200,1,0, + 0,0,11202,11203,1,0,0,0,11203,1583,1,0,0,0,11204,11202,1,0,0,0,11205, + 11206,5,220,0,0,11206,11207,3,1736,868,0,11207,11208,5,93,0,0,11208, + 11209,3,1558,779,0,11209,11210,3,1586,793,0,11210,11211,3,1588,794, + 0,11211,11212,5,454,0,0,11212,11213,5,220,0,0,11213,11214,5,7,0, + 0,11214,1585,1,0,0,0,11215,11216,5,502,0,0,11216,11217,3,1210,605, + 0,11217,11218,5,93,0,0,11218,11219,3,1558,779,0,11219,11221,1,0, + 0,0,11220,11215,1,0,0,0,11221,11224,1,0,0,0,11222,11220,1,0,0,0, + 11222,11223,1,0,0,0,11223,1587,1,0,0,0,11224,11222,1,0,0,0,11225, + 11229,1,0,0,0,11226,11227,5,58,0,0,11227,11229,3,1558,779,0,11228, + 11225,1,0,0,0,11228,11226,1,0,0,0,11229,1589,1,0,0,0,11230,11231, + 5,40,0,0,11231,11232,3,1592,796,0,11232,11233,3,1594,797,0,11233, + 11234,3,1598,799,0,11234,11235,5,454,0,0,11235,11236,5,40,0,0,11236, + 11237,5,7,0,0,11237,1591,1,0,0,0,11238,11241,1,0,0,0,11239,11241, + 3,1734,867,0,11240,11238,1,0,0,0,11240,11239,1,0,0,0,11241,1593, + 1,0,0,0,11242,11244,3,1596,798,0,11243,11242,1,0,0,0,11244,11245, + 1,0,0,0,11245,11243,1,0,0,0,11245,11246,1,0,0,0,11246,1595,1,0,0, + 0,11247,11248,5,102,0,0,11248,11249,3,1326,663,0,11249,11250,5,93, + 0,0,11250,11251,3,1558,779,0,11251,1597,1,0,0,0,11252,11256,1,0, + 0,0,11253,11254,5,58,0,0,11254,11256,3,1558,779,0,11255,11252,1, + 0,0,0,11255,11253,1,0,0,0,11256,1599,1,0,0,0,11257,11258,3,1724, + 862,0,11258,11259,3,1646,823,0,11259,1601,1,0,0,0,11260,11261,3, + 1724,862,0,11261,11262,5,503,0,0,11262,11263,3,1742,871,0,11263, + 11264,3,1646,823,0,11264,1603,1,0,0,0,11265,11266,3,1724,862,0,11266, + 11267,5,62,0,0,11267,11268,3,1606,803,0,11268,11269,3,1646,823,0, + 11269,1605,1,0,0,0,11270,11271,3,1616,808,0,11271,11287,5,68,0,0, + 11272,11273,3,992,496,0,11273,11274,3,1610,805,0,11274,11288,1,0, + 0,0,11275,11288,3,998,499,0,11276,11288,3,924,462,0,11277,11278, + 5,202,0,0,11278,11279,3,1210,605,0,11279,11280,3,1608,804,0,11280, + 11288,1,0,0,0,11281,11282,3,1612,806,0,11282,11283,3,1210,605,0, + 11283,11284,5,24,0,0,11284,11285,3,1210,605,0,11285,11286,3,1614, + 807,0,11286,11288,1,0,0,0,11287,11272,1,0,0,0,11287,11275,1,0,0, + 0,11287,11276,1,0,0,0,11287,11277,1,0,0,0,11287,11281,1,0,0,0,11288, + 1607,1,0,0,0,11289,11293,1,0,0,0,11290,11291,5,100,0,0,11291,11293, + 3,1326,663,0,11292,11289,1,0,0,0,11292,11290,1,0,0,0,11293,1609, + 1,0,0,0,11294,11307,1,0,0,0,11295,11296,5,2,0,0,11296,11301,3,1210, + 605,0,11297,11298,5,6,0,0,11298,11300,3,1210,605,0,11299,11297,1, + 0,0,0,11300,11303,1,0,0,0,11301,11299,1,0,0,0,11301,11302,1,0,0, + 0,11302,11304,1,0,0,0,11303,11301,1,0,0,0,11304,11305,5,3,0,0,11305, + 11307,1,0,0,0,11306,11294,1,0,0,0,11306,11295,1,0,0,0,11307,1611, + 1,0,0,0,11308,11311,1,0,0,0,11309,11311,5,504,0,0,11310,11308,1, + 0,0,0,11310,11309,1,0,0,0,11311,1613,1,0,0,0,11312,11316,1,0,0,0, + 11313,11314,5,147,0,0,11314,11316,3,1210,605,0,11315,11312,1,0,0, + 0,11315,11313,1,0,0,0,11316,1615,1,0,0,0,11317,11318,3,550,275,0, + 11318,1617,1,0,0,0,11319,11320,3,1724,862,0,11320,11321,5,505,0, + 0,11321,11322,3,1616,808,0,11322,11323,3,1620,810,0,11323,11324, + 5,68,0,0,11324,11325,5,35,0,0,11325,11326,3,1210,605,0,11326,11327, + 3,1646,823,0,11327,1619,1,0,0,0,11328,11332,1,0,0,0,11329,11330, + 5,506,0,0,11330,11332,3,1454,727,0,11331,11328,1,0,0,0,11331,11329, + 1,0,0,0,11332,1621,1,0,0,0,11333,11334,3,1624,812,0,11334,11336, + 3,1726,863,0,11335,11337,3,1728,864,0,11336,11335,1,0,0,0,11336, + 11337,1,0,0,0,11337,11338,1,0,0,0,11338,11339,5,7,0,0,11339,1623, + 1,0,0,0,11340,11341,7,83,0,0,11341,1625,1,0,0,0,11342,11354,5,508, + 0,0,11343,11344,5,268,0,0,11344,11355,3,1734,867,0,11345,11351,5, + 509,0,0,11346,11347,5,202,0,0,11347,11348,3,1210,605,0,11348,11349, + 3,1608,804,0,11349,11352,1,0,0,0,11350,11352,3,998,499,0,11351,11346, + 1,0,0,0,11351,11350,1,0,0,0,11352,11355,1,0,0,0,11353,11355,3,1628, + 814,0,11354,11343,1,0,0,0,11354,11345,1,0,0,0,11354,11353,1,0,0, + 0,11355,11356,1,0,0,0,11356,11357,5,7,0,0,11357,1627,1,0,0,0,11358, + 11361,1,0,0,0,11359,11361,3,1734,867,0,11360,11358,1,0,0,0,11360, + 11359,1,0,0,0,11361,1629,1,0,0,0,11362,11364,5,510,0,0,11363,11365, + 3,1632,816,0,11364,11363,1,0,0,0,11364,11365,1,0,0,0,11365,11366, + 1,0,0,0,11366,11367,3,1456,728,0,11367,11368,3,1634,817,0,11368, + 11369,3,1636,818,0,11369,11370,5,7,0,0,11370,11397,1,0,0,0,11371, + 11373,5,510,0,0,11372,11374,3,1632,816,0,11373,11372,1,0,0,0,11373, + 11374,1,0,0,0,11374,11375,1,0,0,0,11375,11376,3,1490,745,0,11376, + 11377,3,1636,818,0,11377,11378,5,7,0,0,11378,11397,1,0,0,0,11379, + 11381,5,510,0,0,11380,11382,3,1632,816,0,11381,11380,1,0,0,0,11381, + 11382,1,0,0,0,11382,11383,1,0,0,0,11383,11384,5,511,0,0,11384,11385, + 3,1456,728,0,11385,11386,3,1636,818,0,11386,11387,5,7,0,0,11387, + 11397,1,0,0,0,11388,11390,5,510,0,0,11389,11391,3,1632,816,0,11390, + 11389,1,0,0,0,11390,11391,1,0,0,0,11391,11392,1,0,0,0,11392,11393, + 3,1636,818,0,11393,11394,5,7,0,0,11394,11397,1,0,0,0,11395,11397, + 5,510,0,0,11396,11362,1,0,0,0,11396,11371,1,0,0,0,11396,11379,1, + 0,0,0,11396,11388,1,0,0,0,11396,11395,1,0,0,0,11397,1631,1,0,0,0, + 11398,11399,7,84,0,0,11399,1633,1,0,0,0,11400,11408,1,0,0,0,11401, + 11402,5,6,0,0,11402,11404,3,1210,605,0,11403,11401,1,0,0,0,11404, + 11405,1,0,0,0,11405,11403,1,0,0,0,11405,11406,1,0,0,0,11406,11408, + 1,0,0,0,11407,11400,1,0,0,0,11407,11403,1,0,0,0,11408,1635,1,0,0, + 0,11409,11413,1,0,0,0,11410,11411,5,100,0,0,11411,11413,3,1640,820, + 0,11412,11409,1,0,0,0,11412,11410,1,0,0,0,11413,1637,1,0,0,0,11414, + 11415,3,1490,745,0,11415,11416,5,10,0,0,11416,11417,3,1210,605,0, + 11417,1639,1,0,0,0,11418,11423,3,1638,819,0,11419,11420,5,6,0,0, + 11420,11422,3,1638,819,0,11421,11419,1,0,0,0,11422,11425,1,0,0,0, + 11423,11421,1,0,0,0,11423,11424,1,0,0,0,11424,1641,1,0,0,0,11425, + 11423,1,0,0,0,11426,11427,5,518,0,0,11427,11428,3,1734,867,0,11428, + 11429,3,1644,822,0,11429,11430,5,7,0,0,11430,1643,1,0,0,0,11431, + 11435,1,0,0,0,11432,11433,5,6,0,0,11433,11435,3,1734,867,0,11434, + 11431,1,0,0,0,11434,11432,1,0,0,0,11435,1645,1,0,0,0,11436,11437, + 5,519,0,0,11437,11438,3,1558,779,0,11438,11439,5,454,0,0,11439,11440, + 5,519,0,0,11440,11441,3,1726,863,0,11441,11442,5,7,0,0,11442,1647, + 1,0,0,0,11443,11444,3,1744,872,0,11444,11445,5,7,0,0,11445,1649, + 1,0,0,0,11446,11447,5,202,0,0,11447,11455,3,1210,605,0,11448,11449, + 3,1656,828,0,11449,11450,3,1652,826,0,11450,11456,1,0,0,0,11451, + 11452,3,1652,826,0,11452,11453,3,1656,828,0,11453,11456,1,0,0,0, + 11454,11456,1,0,0,0,11455,11448,1,0,0,0,11455,11451,1,0,0,0,11455, + 11454,1,0,0,0,11456,11457,1,0,0,0,11457,11458,5,7,0,0,11458,1651, + 1,0,0,0,11459,11463,1,0,0,0,11460,11461,5,100,0,0,11461,11463,3, + 1654,827,0,11462,11459,1,0,0,0,11462,11460,1,0,0,0,11463,1653,1, + 0,0,0,11464,11469,3,1210,605,0,11465,11466,5,6,0,0,11466,11468,3, + 1210,605,0,11467,11465,1,0,0,0,11468,11471,1,0,0,0,11469,11467,1, + 0,0,0,11469,11470,1,0,0,0,11470,1655,1,0,0,0,11471,11469,1,0,0,0, + 11472,11479,1,0,0,0,11473,11475,5,71,0,0,11474,11476,5,346,0,0,11475, + 11474,1,0,0,0,11475,11476,1,0,0,0,11476,11477,1,0,0,0,11477,11479, + 3,1672,836,0,11478,11472,1,0,0,0,11478,11473,1,0,0,0,11479,1657, + 1,0,0,0,11480,11498,5,520,0,0,11481,11482,3,1710,855,0,11482,11483, + 3,1666,833,0,11483,11489,5,62,0,0,11484,11490,3,998,499,0,11485, + 11486,5,202,0,0,11486,11487,3,1734,867,0,11487,11488,3,1664,832, + 0,11488,11490,1,0,0,0,11489,11484,1,0,0,0,11489,11485,1,0,0,0,11490, + 11499,1,0,0,0,11491,11496,3,1472,736,0,11492,11493,5,2,0,0,11493, + 11494,3,1662,831,0,11494,11495,5,3,0,0,11495,11497,1,0,0,0,11496, + 11492,1,0,0,0,11496,11497,1,0,0,0,11497,11499,1,0,0,0,11498,11481, + 1,0,0,0,11498,11491,1,0,0,0,11499,11500,1,0,0,0,11500,11501,5,7, + 0,0,11501,1659,1,0,0,0,11502,11503,3,1472,736,0,11503,11504,5,20, + 0,0,11504,11505,3,1210,605,0,11505,11508,1,0,0,0,11506,11508,3,1210, + 605,0,11507,11502,1,0,0,0,11507,11506,1,0,0,0,11508,1661,1,0,0,0, + 11509,11514,3,1660,830,0,11510,11511,5,6,0,0,11511,11513,3,1660, + 830,0,11512,11510,1,0,0,0,11513,11516,1,0,0,0,11514,11512,1,0,0, + 0,11514,11515,1,0,0,0,11515,1663,1,0,0,0,11516,11514,1,0,0,0,11517, + 11521,1,0,0,0,11518,11519,5,100,0,0,11519,11521,3,1326,663,0,11520, + 11517,1,0,0,0,11520,11518,1,0,0,0,11521,1665,1,0,0,0,11522,11527, + 1,0,0,0,11523,11524,3,1668,834,0,11524,11525,5,324,0,0,11525,11527, + 1,0,0,0,11526,11522,1,0,0,0,11526,11523,1,0,0,0,11527,1667,1,0,0, + 0,11528,11531,1,0,0,0,11529,11531,5,269,0,0,11530,11528,1,0,0,0, + 11530,11529,1,0,0,0,11531,1669,1,0,0,0,11532,11534,5,61,0,0,11533, + 11535,3,1676,838,0,11534,11533,1,0,0,0,11534,11535,1,0,0,0,11535, + 11536,1,0,0,0,11536,11537,3,1674,837,0,11537,11538,3,1710,855,0, + 11538,11539,5,71,0,0,11539,11540,3,1672,836,0,11540,11541,5,7,0, + 0,11541,1671,1,0,0,0,11542,11543,3,1326,663,0,11543,1673,1,0,0,0, + 11544,11548,1,0,0,0,11545,11548,5,64,0,0,11546,11548,5,68,0,0,11547, + 11544,1,0,0,0,11547,11545,1,0,0,0,11547,11546,1,0,0,0,11548,1675, + 1,0,0,0,11549,11565,5,268,0,0,11550,11565,5,293,0,0,11551,11565, + 5,207,0,0,11552,11565,5,249,0,0,11553,11554,5,130,0,0,11554,11565, + 3,1210,605,0,11555,11556,5,307,0,0,11556,11565,3,1210,605,0,11557, + 11565,3,1210,605,0,11558,11565,5,30,0,0,11559,11562,7,85,0,0,11560, + 11563,3,1210,605,0,11561,11563,5,30,0,0,11562,11560,1,0,0,0,11562, + 11561,1,0,0,0,11562,11563,1,0,0,0,11563,11565,1,0,0,0,11564,11549, + 1,0,0,0,11564,11550,1,0,0,0,11564,11551,1,0,0,0,11564,11552,1,0, + 0,0,11564,11553,1,0,0,0,11564,11555,1,0,0,0,11564,11557,1,0,0,0, + 11564,11558,1,0,0,0,11564,11559,1,0,0,0,11565,1677,1,0,0,0,11566, + 11568,5,265,0,0,11567,11569,3,1676,838,0,11568,11567,1,0,0,0,11568, + 11569,1,0,0,0,11569,11570,1,0,0,0,11570,11571,3,1710,855,0,11571, + 11572,5,7,0,0,11572,1679,1,0,0,0,11573,11575,3,1012,506,0,11574, + 11573,1,0,0,0,11574,11575,1,0,0,0,11575,11576,1,0,0,0,11576,11577, + 5,525,0,0,11577,11579,5,71,0,0,11578,11580,5,81,0,0,11579,11578, + 1,0,0,0,11579,11580,1,0,0,0,11580,11581,1,0,0,0,11581,11583,3,1404, + 702,0,11582,11584,5,9,0,0,11583,11582,1,0,0,0,11583,11584,1,0,0, + 0,11584,11589,1,0,0,0,11585,11587,5,36,0,0,11586,11585,1,0,0,0,11586, + 11587,1,0,0,0,11587,11588,1,0,0,0,11588,11590,3,1472,736,0,11589, + 11586,1,0,0,0,11589,11590,1,0,0,0,11590,11591,1,0,0,0,11591,11592, + 5,100,0,0,11592,11593,3,1682,841,0,11593,11594,5,80,0,0,11594,11596, + 3,1684,842,0,11595,11597,3,1686,843,0,11596,11595,1,0,0,0,11597, + 11598,1,0,0,0,11598,11596,1,0,0,0,11598,11599,1,0,0,0,11599,1681, + 1,0,0,0,11600,11602,5,81,0,0,11601,11600,1,0,0,0,11601,11602,1,0, + 0,0,11602,11603,1,0,0,0,11603,11605,3,1404,702,0,11604,11606,5,9, + 0,0,11605,11604,1,0,0,0,11605,11606,1,0,0,0,11606,11612,1,0,0,0, + 11607,11610,3,1002,501,0,11608,11610,3,1098,549,0,11609,11607,1, + 0,0,0,11609,11608,1,0,0,0,11610,11612,1,0,0,0,11611,11601,1,0,0, + 0,11611,11609,1,0,0,0,11612,11617,1,0,0,0,11613,11615,5,36,0,0,11614, + 11613,1,0,0,0,11614,11615,1,0,0,0,11615,11616,1,0,0,0,11616,11618, + 3,1472,736,0,11617,11614,1,0,0,0,11617,11618,1,0,0,0,11618,1683, + 1,0,0,0,11619,11620,3,1210,605,0,11620,1685,1,0,0,0,11621,11622, + 5,102,0,0,11622,11625,5,526,0,0,11623,11624,5,33,0,0,11624,11626, + 3,1210,605,0,11625,11623,1,0,0,0,11625,11626,1,0,0,0,11626,11627, + 1,0,0,0,11627,11632,5,93,0,0,11628,11633,3,1690,845,0,11629,11633, + 5,182,0,0,11630,11631,5,57,0,0,11631,11633,5,270,0,0,11632,11628, + 1,0,0,0,11632,11629,1,0,0,0,11632,11630,1,0,0,0,11633,11648,1,0, + 0,0,11634,11635,5,102,0,0,11635,11636,5,77,0,0,11636,11639,5,526, + 0,0,11637,11638,5,33,0,0,11638,11640,3,1210,605,0,11639,11637,1, + 0,0,0,11639,11640,1,0,0,0,11640,11641,1,0,0,0,11641,11645,5,93,0, + 0,11642,11646,3,1688,844,0,11643,11644,5,57,0,0,11644,11646,5,270, + 0,0,11645,11642,1,0,0,0,11645,11643,1,0,0,0,11646,11648,1,0,0,0, + 11647,11621,1,0,0,0,11647,11634,1,0,0,0,11648,1687,1,0,0,0,11649, + 11654,5,241,0,0,11650,11651,5,2,0,0,11651,11652,3,244,122,0,11652, + 11653,5,3,0,0,11653,11655,1,0,0,0,11654,11650,1,0,0,0,11654,11655, + 1,0,0,0,11655,11659,1,0,0,0,11656,11657,5,463,0,0,11657,11658,7, + 53,0,0,11658,11660,5,450,0,0,11659,11656,1,0,0,0,11659,11660,1,0, + 0,0,11660,11661,1,0,0,0,11661,11662,3,1692,846,0,11662,1689,1,0, + 0,0,11663,11664,5,369,0,0,11664,11677,5,333,0,0,11665,11666,3,1430, + 715,0,11666,11667,5,10,0,0,11667,11668,3,1696,848,0,11668,11678, + 1,0,0,0,11669,11670,5,2,0,0,11670,11671,3,244,122,0,11671,11672, + 5,3,0,0,11672,11673,5,10,0,0,11673,11674,5,2,0,0,11674,11675,3,1694, + 847,0,11675,11676,5,3,0,0,11676,11678,1,0,0,0,11677,11665,1,0,0, + 0,11677,11669,1,0,0,0,11678,11679,1,0,0,0,11679,11677,1,0,0,0,11679, + 11680,1,0,0,0,11680,1691,1,0,0,0,11681,11682,5,422,0,0,11682,11686, + 3,1694,847,0,11683,11684,5,53,0,0,11684,11686,5,422,0,0,11685,11681, + 1,0,0,0,11685,11683,1,0,0,0,11686,1693,1,0,0,0,11687,11688,5,2,0, + 0,11688,11693,3,1696,848,0,11689,11690,5,6,0,0,11690,11692,3,1696, + 848,0,11691,11689,1,0,0,0,11692,11695,1,0,0,0,11693,11691,1,0,0, + 0,11693,11694,1,0,0,0,11694,11696,1,0,0,0,11695,11693,1,0,0,0,11696, + 11697,5,3,0,0,11697,1695,1,0,0,0,11698,11701,3,1046,523,0,11699, + 11701,5,53,0,0,11700,11698,1,0,0,0,11700,11699,1,0,0,0,11701,1697, + 1,0,0,0,11702,11703,5,157,0,0,11703,11704,3,1710,855,0,11704,11705, + 5,7,0,0,11705,1699,1,0,0,0,11706,11707,5,78,0,0,11707,11708,5,7, + 0,0,11708,1701,1,0,0,0,11709,11711,5,161,0,0,11710,11712,3,1706, + 853,0,11711,11710,1,0,0,0,11711,11712,1,0,0,0,11712,11713,1,0,0, + 0,11713,11714,5,7,0,0,11714,1703,1,0,0,0,11715,11717,5,319,0,0,11716, + 11718,3,1706,853,0,11717,11716,1,0,0,0,11717,11718,1,0,0,0,11718, + 11719,1,0,0,0,11719,11720,5,7,0,0,11720,1705,1,0,0,0,11721,11723, + 5,33,0,0,11722,11724,5,269,0,0,11723,11722,1,0,0,0,11723,11724,1, + 0,0,0,11724,11725,1,0,0,0,11725,11726,5,153,0,0,11726,1707,1,0,0, + 0,11727,11728,5,333,0,0,11728,11729,3,556,278,0,11729,11730,5,94, + 0,0,11730,11731,5,53,0,0,11731,11732,5,7,0,0,11732,11740,1,0,0,0, + 11733,11736,5,313,0,0,11734,11737,3,556,278,0,11735,11737,5,30,0, + 0,11736,11734,1,0,0,0,11736,11735,1,0,0,0,11737,11738,1,0,0,0,11738, + 11740,5,7,0,0,11739,11727,1,0,0,0,11739,11733,1,0,0,0,11740,1709, + 1,0,0,0,11741,11744,3,1472,736,0,11742,11744,5,28,0,0,11743,11741, + 1,0,0,0,11743,11742,1,0,0,0,11744,1711,1,0,0,0,11745,11749,1,0,0, + 0,11746,11747,5,517,0,0,11747,11749,3,1714,857,0,11748,11745,1,0, + 0,0,11748,11746,1,0,0,0,11749,1713,1,0,0,0,11750,11752,3,1716,858, + 0,11751,11750,1,0,0,0,11752,11753,1,0,0,0,11753,11751,1,0,0,0,11753, + 11754,1,0,0,0,11754,1715,1,0,0,0,11755,11756,5,102,0,0,11756,11757, + 3,1718,859,0,11757,11758,5,93,0,0,11758,11759,3,1558,779,0,11759, + 1717,1,0,0,0,11760,11765,3,1720,860,0,11761,11762,5,82,0,0,11762, + 11764,3,1720,860,0,11763,11761,1,0,0,0,11764,11767,1,0,0,0,11765, + 11763,1,0,0,0,11765,11766,1,0,0,0,11766,1719,1,0,0,0,11767,11765, + 1,0,0,0,11768,11772,3,1730,865,0,11769,11770,5,511,0,0,11770,11772, + 3,1456,728,0,11771,11768,1,0,0,0,11771,11769,1,0,0,0,11772,1721, + 1,0,0,0,11773,11776,1,0,0,0,11774,11776,3,1522,761,0,11775,11773, + 1,0,0,0,11775,11774,1,0,0,0,11776,1723,1,0,0,0,11777,11780,1,0,0, + 0,11778,11780,3,1522,761,0,11779,11777,1,0,0,0,11779,11778,1,0,0, + 0,11780,1725,1,0,0,0,11781,11784,1,0,0,0,11782,11784,3,1730,865, + 0,11783,11781,1,0,0,0,11783,11782,1,0,0,0,11784,1727,1,0,0,0,11785, + 11786,5,102,0,0,11786,11787,3,1738,869,0,11787,1729,1,0,0,0,11788, + 11791,3,1472,736,0,11789,11791,3,1732,866,0,11790,11788,1,0,0,0, + 11790,11789,1,0,0,0,11791,1731,1,0,0,0,11792,11793,7,86,0,0,11793, + 1733,1,0,0,0,11794,11796,3,1382,691,0,11795,11794,1,0,0,0,11795, + 11796,1,0,0,0,11796,11798,1,0,0,0,11797,11799,3,1026,513,0,11798, + 11797,1,0,0,0,11798,11799,1,0,0,0,11799,11801,1,0,0,0,11800,11802, + 3,1100,550,0,11801,11800,1,0,0,0,11801,11802,1,0,0,0,11802,11804, + 1,0,0,0,11803,11805,3,1142,571,0,11804,11803,1,0,0,0,11804,11805, + 1,0,0,0,11805,11807,1,0,0,0,11806,11808,3,1070,535,0,11807,11806, + 1,0,0,0,11807,11808,1,0,0,0,11808,11810,1,0,0,0,11809,11811,3,1084, + 542,0,11810,11809,1,0,0,0,11810,11811,1,0,0,0,11811,11813,1,0,0, + 0,11812,11814,3,1286,643,0,11813,11812,1,0,0,0,11813,11814,1,0,0, + 0,11814,1735,1,0,0,0,11815,11816,3,1734,867,0,11816,1737,1,0,0,0, + 11817,11818,3,1734,867,0,11818,1739,1,0,0,0,11819,11820,3,1210,605, + 0,11820,1741,1,0,0,0,11821,11822,3,1210,605,0,11822,1743,1,0,0,0, + 11823,11825,3,6,3,0,11824,11826,3,1746,873,0,11825,11824,1,0,0,0, + 11825,11826,1,0,0,0,11826,1745,1,0,0,0,11827,11828,5,71,0,0,11828, + 11829,3,1028,514,0,11829,11830,3,1672,836,0,11830,1747,1,0,0,0,1283, + 1751,1760,1879,1883,1892,1901,1907,1913,1945,1957,1963,1971,1979, + 1985,1994,2000,2012,2018,2024,2031,2035,2040,2044,2057,2068,2074, + 2090,2093,2098,2104,2109,2118,2122,2134,2138,2141,2145,2156,2174, + 2181,2189,2194,2201,2207,2213,2220,2231,2235,2239,2243,2256,2260, + 2265,2270,2282,2291,2303,2308,2319,2325,2330,2340,2345,2352,2357, + 2362,2373,2379,2384,2392,2401,2416,2422,2428,2433,2440,2452,2460, + 2468,2486,2495,2509,2513,2528,2536,2546,2586,2589,2593,2597,2600, + 2605,2612,2621,2627,2631,2640,2648,2657,2666,2670,2677,2683,2687, + 2691,2696,2699,2703,2709,2716,2732,2746,2756,2758,2763,2767,2770, + 2776,2778,2806,2816,2829,2836,2841,2845,2851,2856,2859,2861,2866, + 2870,2874,2878,2882,2885,2889,2897,2901,2905,2914,2921,2926,2933, + 2938,2945,2950,2968,2973,2985,2990,2999,3006,3013,3017,3022,3026, + 3029,3032,3035,3038,3041,3046,3049,3052,3055,3058,3061,3067,3071, + 3074,3077,3080,3083,3085,3094,3109,3117,3123,3127,3132,3135,3138, + 3142,3146,3153,3156,3159,3163,3167,3181,3186,3193,3198,3202,3205, + 3209,3212,3214,3221,3224,3228,3234,3237,3244,3253,3260,3265,3268, + 3271,3274,3278,3285,3290,3303,3313,3326,3329,3332,3339,3347,3350, + 3353,3360,3364,3370,3373,3376,3379,3391,3394,3397,3401,3415,3431, + 3442,3457,3474,3476,3497,3502,3505,3509,3512,3518,3521,3523,3534, + 3543,3549,3552,3555,3569,3572,3575,3580,3588,3597,3601,3607,3611, + 3614,3617,3620,3623,3629,3633,3638,3644,3648,3651,3654,3657,3665, + 3669,3673,3677,3681,3686,3700,3709,3726,3731,3734,3736,3746,3753, + 3758,3761,3764,3771,3774,3776,3782,3791,3801,3806,3814,3818,3825, + 3835,3846,3954,3962,3965,3975,3980,3990,4001,4013,4026,4036,4048, + 4052,4055,4062,4070,4080,4082,4088,4093,4097,4102,4108,4115,4121, + 4123,4130,4138,4143,4154,4161,4165,4182,4185,4188,4191,4194,4202, + 4205,4208,4214,4222,4226,4238,4244,4247,4252,4256,4263,4274,4297, + 4317,4326,4329,4332,4342,4345,4354,4358,4361,4369,4375,4379,4390, + 4400,4408,4413,4425,4442,4446,4452,4459,4467,4481,4507,4514,4528, + 4539,4542,4555,4564,4589,4600,4642,4650,4656,4667,4673,4681,4692, + 4706,4715,4720,4731,4742,4750,4760,4767,4770,4776,4779,4794,4807, + 4836,4843,4858,4870,4874,4879,4883,4888,4892,4898,4902,4907,4911, + 4917,4921,4926,4930,4935,4939,4944,4948,4955,4959,4966,4970,4977, + 4981,4988,4992,4998,5002,5008,5012,5017,5021,5028,5032,5036,5040, + 5044,5049,5053,5058,5062,5067,5071,5076,5082,5087,5093,5098,5104, + 5109,5113,5118,5122,5128,5132,5137,5145,5151,5157,5163,5169,5176, + 5181,5185,5190,5194,5199,5205,5212,5217,5224,5234,5238,5244,5246, + 5253,5257,5262,5280,5295,5313,5322,5331,5335,5341,5348,5353,5360, + 5365,5368,5371,5375,5446,5542,5546,5551,5562,5573,5584,5595,5606, + 5618,5629,5640,5650,5657,5664,5670,5678,5683,5688,5693,5699,5706, + 5712,5718,5723,5729,5736,5741,5747,5754,5757,5770,5779,5791,5793, + 5811,5818,5828,5833,5837,5841,5845,5847,5907,5914,5920,5931,5934, + 5941,5944,5954,5957,5959,5978,5990,5999,6008,6020,6022,6028,6032, + 6035,6038,6043,6049,6052,6055,6058,6061,6077,6081,6084,6087,6090, + 6093,6098,6101,6103,6116,6128,6142,6146,6152,6162,6164,6169,6177, + 6187,6196,6204,6213,6215,6222,6231,6233,6240,6249,6251,6255,6264, + 6269,6275,6280,6284,6289,6307,6312,6327,6336,6347,6353,6390,6410, + 6417,6428,6442,6449,6457,6462,6469,6473,6478,6482,6487,6491,6493, + 6498,6502,6507,6511,6535,6542,6552,6564,6569,6582,6594,6606,6608, + 6614,6621,6666,6684,6688,6693,6696,6700,6705,6710,6713,6720,6737, + 6808,6839,6893,6903,6913,6924,6934,6945,6955,6960,6969,6974,6984, + 6989,6998,7011,7016,7128,7130,7139,7150,7161,7174,7186,7197,7204, + 7294,7347,7357,7368,7379,7393,7408,7419,7426,7480,7621,7627,7630, + 7640,7680,7690,7697,7720,7729,7738,7747,7780,7784,7794,7798,7808, + 7811,7815,7819,7827,7838,7850,7854,7857,7861,7864,7869,7873,7876, + 7882,7893,7896,7903,7907,7912,7915,7917,7931,7935,7940,7947,7954, + 7957,7962,7965,7974,7976,7981,7985,7997,8000,8007,8011,8016,8026, + 8036,8039,8042,8044,8050,8057,8077,8097,8101,8106,8175,8180,8186, + 8199,8203,8207,8213,8215,8223,8233,8236,8239,8242,8245,8252,8255, + 8257,8261,8264,8271,8273,8280,8287,8291,8295,8304,8310,8314,8318, + 8323,8335,8342,8352,8365,8376,8383,8388,8392,8396,8401,8414,8419, + 8423,8427,8434,8437,8439,8447,8451,8454,8461,8464,8469,8475,8481, + 8485,8494,8503,8510,8513,8519,8524,8530,8536,8539,8542,8549,8553, + 8556,8571,8574,8581,8584,8591,8594,8597,8604,8616,8623,8625,8635, + 8653,8655,8663,8667,8677,8681,8685,8689,8691,8696,8700,8704,8706, + 8708,8712,8716,8719,8722,8725,8728,8730,8733,8736,8739,8742,8745, + 8748,8757,8759,8764,8768,8774,8778,8782,8791,8796,8800,8806,8809, + 8828,8836,8845,8849,8852,8856,8861,8867,8879,8894,8901,8904,8908, + 8912,8916,8918,8926,8935,8941,8943,8950,8954,8963,8967,8976,8985, + 8997,9025,9032,9036,9039,9044,9048,9051,9067,9078,9083,9086,9089, + 9093,9097,9101,9106,9110,9114,9116,9125,9130,9136,9140,9142,9149, + 9154,9160,9162,9166,9173,9180,9183,9189,9193,9202,9205,9209,9217, + 9223,9225,9228,9232,9236,9240,9246,9249,9258,9265,9267,9274,9282, + 9287,9290,9298,9307,9315,9317,9321,9328,9347,9356,9362,9381,9390, + 9396,9400,9405,9415,9422,9431,9434,9443,9445,9451,9455,9460,9470, + 9476,9478,9484,9488,9491,9504,9510,9514,9518,9521,9529,9533,9537, + 9545,9552,9559,9563,9569,9571,9580,9583,9593,9609,9615,9620,9627, + 9636,9643,9651,9659,9664,9668,9671,9677,9682,9698,9701,9703,9715, + 9717,9721,9729,9731,9735,9737,9745,9749,9758,9766,9772,9775,9784, + 9789,9796,9806,9832,9843,9845,9847,9855,9877,9886,9896,9899,9904, + 9909,9913,9916,9920,9923,9926,9929,9933,9947,9954,9961,9968,9986, + 9994,10006,10012,10025,10064,10066,10086,10096,10107,10119,10126, + 10138,10150,10156,10164,10181,10206,10216,10220,10223,10226,10229, + 10242,10247,10252,10254,10262,10271,10280,10285,10294,10299,10313, + 10323,10331,10345,10352,10360,10368,10376,10380,10387,10395,10402, + 10408,10417,10432,10443,10476,10485,10492,10496,10500,10507,10521, + 10526,10531,10535,10537,10540,10547,10552,10562,10570,10573,10580, + 10588,10596,10604,10612,10617,10621,10625,10629,10633,10637,10641, + 10648,10656,10661,10665,10669,10679,10685,10691,10706,10712,10718, + 10730,10735,10743,10750,10755,10767,10775,10780,10790,10801,10808, + 10815,10826,10829,10831,10835,10838,10844,10850,10854,10860,10868, + 10872,10880,10937,10950,10973,10981,10985,10997,10999,11006,11015, + 11033,11041,11050,11057,11067,11073,11080,11085,11091,11095,11102, + 11132,11145,11154,11158,11174,11181,11194,11202,11222,11228,11240, + 11245,11255,11287,11292,11301,11306,11310,11315,11331,11336,11351, + 11354,11360,11364,11373,11381,11390,11396,11405,11407,11412,11423, + 11434,11455,11462,11469,11475,11478,11489,11496,11498,11507,11514, + 11520,11526,11530,11534,11547,11562,11564,11568,11574,11579,11583, + 11586,11589,11598,11601,11605,11609,11611,11614,11617,11625,11632, + 11639,11645,11647,11654,11659,11677,11679,11685,11693,11700,11711, + 11717,11723,11736,11739,11743,11748,11753,11765,11771,11775,11779, + 11783,11790,11795,11798,11801,11804,11807,11810,11813,11825 ]; private static __ATN: antlr.ATN; @@ -77516,18 +77966,18 @@ export class Generic_setContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public var_name(): Var_nameContext | null { - return this.getRuleContext(0, Var_nameContext); - } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_ALL, 0); } - public var_list(): Var_listContext | null { - return this.getRuleContext(0, Var_listContext); + public var_name(): Var_nameContext | null { + return this.getRuleContext(0, Var_nameContext); } public KW_DEFAULT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_DEFAULT, 0); } + public var_list(): Var_listContext | null { + return this.getRuleContext(0, Var_listContext); + } public KW_TO(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TO, 0); } @@ -77561,18 +78011,6 @@ export class Set_rest_moreContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generic_set(): Generic_setContext | null { - return this.getRuleContext(0, Generic_setContext); - } - public var_name(): Var_nameContext | null { - return this.getRuleContext(0, Var_nameContext); - } - public KW_FROM(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_FROM, 0); - } - public KW_CURRENT(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_CURRENT, 0); - } public KW_TIME(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TIME, 0); } @@ -77627,6 +78065,18 @@ export class Set_rest_moreContext extends antlr.ParserRuleContext { public KW_SNAPSHOT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_SNAPSHOT, 0); } + public var_name(): Var_nameContext | null { + return this.getRuleContext(0, Var_nameContext); + } + public KW_FROM(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_FROM, 0); + } + public KW_CURRENT(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_CURRENT, 0); + } + public generic_set(): Generic_setContext | null { + return this.getRuleContext(0, Generic_setContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_set_rest_more; } @@ -78086,9 +78536,6 @@ export class Reset_restContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public generic_reset(): Generic_resetContext | null { - return this.getRuleContext(0, Generic_resetContext); - } public KW_TIME(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TIME, 0); } @@ -78110,6 +78557,9 @@ export class Reset_restContext extends antlr.ParserRuleContext { public KW_AUTHORIZATION(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_AUTHORIZATION, 0); } + public generic_reset(): Generic_resetContext | null { + return this.getRuleContext(0, Generic_resetContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_reset_rest; } @@ -78137,12 +78587,12 @@ export class Generic_resetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public var_name(): Var_nameContext | null { - return this.getRuleContext(0, Var_nameContext); - } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_ALL, 0); } + public var_name(): Var_nameContext | null { + return this.getRuleContext(0, Var_nameContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_generic_reset; } @@ -78932,101 +79382,8 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public KW_ADD(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_ADD, 0); } - public columnDefCluase(): ColumnDefCluaseContext | null { - return this.getRuleContext(0, ColumnDefCluaseContext); - } - public opt_column(): Opt_columnContext | null { - return this.getRuleContext(0, Opt_columnContext); - } - public opt_if_not_exists(): Opt_if_not_existsContext | null { - return this.getRuleContext(0, Opt_if_not_existsContext); - } - public KW_ALTER(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_ALTER, 0); - } - public column_name(): Column_nameContext | null { - return this.getRuleContext(0, Column_nameContext); - } - public alter_column_default(): Alter_column_defaultContext | null { - return this.getRuleContext(0, Alter_column_defaultContext); - } - public KW_DROP(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_DROP, 0); - } - public KW_NOT(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_NOT, 0); - } - public KW_NULL(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_NULL, 0); - } - public KW_SET(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_SET, 0); - } - public KW_EXPRESSION(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_EXPRESSION, 0); - } - public opt_if_exists(): Opt_if_existsContext | null { - return this.getRuleContext(0, Opt_if_existsContext); - } - public KW_STATISTICS(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_STATISTICS, 0); - } - public signediconst(): SignediconstContext | null { - return this.getRuleContext(0, SignediconstContext); - } - public reloptions(): ReloptionsContext | null { - return this.getRuleContext(0, ReloptionsContext); - } - public KW_RESET(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_RESET, 0); - } - public KW_STORAGE(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_STORAGE, 0); - } - public colid(): ColidContext | null { - return this.getRuleContext(0, ColidContext); - } - public KW_GENERATED(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_GENERATED, 0); - } - public generated_when(): Generated_whenContext | null { - return this.getRuleContext(0, Generated_whenContext); - } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_AS, 0); - } - public KW_IDENTITY(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_IDENTITY, 0); - } - public optparenthesizedseqoptlist(): OptparenthesizedseqoptlistContext | null { - return this.getRuleContext(0, OptparenthesizedseqoptlistContext); - } - public alter_identity_column_option_list(): Alter_identity_column_option_listContext | null { - return this.getRuleContext(0, Alter_identity_column_option_listContext); - } - public opt_drop_behavior(): Opt_drop_behaviorContext | null { - return this.getRuleContext(0, Opt_drop_behaviorContext); - } - public KW_TYPE(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_TYPE, 0); - } - public typename(): TypenameContext | null { - return this.getRuleContext(0, TypenameContext); - } - public opt_set_data(): Opt_set_dataContext | null { - return this.getRuleContext(0, Opt_set_dataContext); - } - public opt_collate_clause(): Opt_collate_clauseContext | null { - return this.getRuleContext(0, Opt_collate_clauseContext); - } - public alter_using(): Alter_usingContext | null { - return this.getRuleContext(0, Alter_usingContext); - } - public alter_generic_options(): Alter_generic_optionsContext | null { - return this.getRuleContext(0, Alter_generic_optionsContext); - } - public tableconstraint(): TableconstraintContext | null { - return this.getRuleContext(0, TableconstraintContext); + public constraintelem(): ConstraintelemContext | null { + return this.getRuleContext(0, ConstraintelemContext); } public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_CONSTRAINT, 0); @@ -79034,12 +79391,27 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public name(): NameContext | null { return this.getRuleContext(0, NameContext); } + public KW_ALTER(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_ALTER, 0); + } public constraintattributespec(): ConstraintattributespecContext | null { return this.getRuleContext(0, ConstraintattributespecContext); } public KW_VALIDATE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_VALIDATE, 0); } + public KW_DROP(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_DROP, 0); + } + public opt_if_exists(): Opt_if_existsContext | null { + return this.getRuleContext(0, Opt_if_existsContext); + } + public opt_drop_behavior(): Opt_drop_behaviorContext | null { + return this.getRuleContext(0, Opt_drop_behaviorContext); + } + public KW_SET(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_SET, 0); + } public KW_WITHOUT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_WITHOUT, 0); } @@ -79064,11 +79436,14 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public KW_TRIGGER(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TRIGGER, 0); } + public KW_REPLICA(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_REPLICA, 0); + } public KW_ALWAYS(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_ALWAYS, 0); } - public KW_REPLICA(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_REPLICA, 0); + public KW_DISABLE(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_DISABLE, 0); } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_ALL, 0); @@ -79076,9 +79451,6 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public KW_USER(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_USER, 0); } - public KW_DISABLE(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_DISABLE, 0); - } public KW_RULE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_RULE, 0); } @@ -79097,6 +79469,9 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public any_name(): Any_nameContext | null { return this.getRuleContext(0, Any_nameContext); } + public KW_NOT(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_NOT, 0); + } public KW_OWNER(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_OWNER, 0); } @@ -79112,6 +79487,15 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public tablespace_name_create(): Tablespace_name_createContext | null { return this.getRuleContext(0, Tablespace_name_createContext); } + public reloptions(): ReloptionsContext | null { + return this.getRuleContext(0, ReloptionsContext); + } + public KW_RESET(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_RESET, 0); + } + public KW_IDENTITY(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_IDENTITY, 0); + } public replica_identity(): Replica_identityContext | null { return this.getRuleContext(0, Replica_identityContext); } @@ -79127,6 +79511,72 @@ export class Alter_table_cmdContext extends antlr.ParserRuleContext { public KW_FORCE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_FORCE, 0); } + public column_name(): Column_nameContext | null { + return this.getRuleContext(0, Column_nameContext); + } + public KW_COLUMN(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_COLUMN, 0); + } + public columnDefCluase(): ColumnDefCluaseContext | null { + return this.getRuleContext(0, ColumnDefCluaseContext); + } + public opt_if_not_exists(): Opt_if_not_existsContext | null { + return this.getRuleContext(0, Opt_if_not_existsContext); + } + public alter_column_default(): Alter_column_defaultContext | null { + return this.getRuleContext(0, Alter_column_defaultContext); + } + public KW_NULL(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_NULL, 0); + } + public KW_EXPRESSION(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_EXPRESSION, 0); + } + public KW_STATISTICS(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_STATISTICS, 0); + } + public signediconst(): SignediconstContext | null { + return this.getRuleContext(0, SignediconstContext); + } + public KW_STORAGE(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_STORAGE, 0); + } + public colid(): ColidContext | null { + return this.getRuleContext(0, ColidContext); + } + public KW_GENERATED(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_GENERATED, 0); + } + public generated_when(): Generated_whenContext | null { + return this.getRuleContext(0, Generated_whenContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_AS, 0); + } + public optparenthesizedseqoptlist(): OptparenthesizedseqoptlistContext | null { + return this.getRuleContext(0, OptparenthesizedseqoptlistContext); + } + public alter_identity_column_option_list(): Alter_identity_column_option_listContext | null { + return this.getRuleContext(0, Alter_identity_column_option_listContext); + } + public KW_TYPE(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_TYPE, 0); + } + public typename(): TypenameContext | null { + return this.getRuleContext(0, TypenameContext); + } + public opt_set_data(): Opt_set_dataContext | null { + return this.getRuleContext(0, Opt_set_dataContext); + } + public opt_collate_clause(): Opt_collate_clauseContext | null { + return this.getRuleContext(0, Opt_collate_clauseContext); + } + public alter_using(): Alter_usingContext | null { + return this.getRuleContext(0, Alter_usingContext); + } + public alter_generic_options(): Alter_generic_optionsContext | null { + return this.getRuleContext(0, Alter_generic_optionsContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_alter_table_cmd; } @@ -83336,8 +83786,8 @@ export class SeqoptelemContext extends antlr.ParserRuleContext { public KW_BY(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_BY, 0); } - public table_column_name(): Table_column_nameContext | null { - return this.getRuleContext(0, Table_column_nameContext); + public column_name(): Column_nameContext | null { + return this.getRuleContext(0, Column_nameContext); } public KW_SEQUENCE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_SEQUENCE, 0); @@ -88511,11 +88961,8 @@ export class Object_type_any_nameContext extends antlr.ParserRuleContext { public table_name(): Table_nameContext | null { return this.getRuleContext(0, Table_nameContext); } - public KW_SEQUENCE(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_SEQUENCE, 0); - } - public any_name(): Any_nameContext | null { - return this.getRuleContext(0, Any_nameContext); + public KW_FOREIGN(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_FOREIGN, 0); } public KW_VIEW(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_VIEW, 0); @@ -88529,8 +88976,8 @@ export class Object_type_any_nameContext extends antlr.ParserRuleContext { public KW_INDEX(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_INDEX, 0); } - public KW_FOREIGN(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_FOREIGN, 0); + public any_name(): Any_nameContext | null { + return this.getRuleContext(0, Any_nameContext); } public KW_COLLATION(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_COLLATION, 0); @@ -88541,6 +88988,9 @@ export class Object_type_any_nameContext extends antlr.ParserRuleContext { public KW_STATISTICS(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_STATISTICS, 0); } + public KW_SEQUENCE(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_SEQUENCE, 0); + } public KW_TEXT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TEXT, 0); } @@ -88753,42 +89203,6 @@ export class Any_name_listContext extends antlr.ParserRuleContext { } -export class Table_column_nameContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public table_name(): Table_nameContext { - return this.getRuleContext(0, Table_nameContext)!; - } - public DOT(): antlr.TerminalNode { - return this.getToken(PostgreSQLParser.DOT, 0)!; - } - public column_name(): Column_nameContext { - return this.getRuleContext(0, Column_nameContext)!; - } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_table_column_name; - } - public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterTable_column_name) { - listener.enterTable_column_name(this); - } - } - public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitTable_column_name) { - listener.exitTable_column_name(this); - } - } - public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitTable_column_name) { - return visitor.visitTable_column_name(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class Relation_column_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -88988,18 +89402,39 @@ export class TruncatestmtContext extends antlr.ParserRuleContext { public KW_TRUNCATE(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_TRUNCATE, 0)!; } - public relation_expr_list(): Relation_expr_listContext { - return this.getRuleContext(0, Relation_expr_listContext)!; + public truncate_table(): Truncate_tableContext[]; + public truncate_table(i: number): Truncate_tableContext | null; + public truncate_table(i?: number): Truncate_tableContext[] | Truncate_tableContext | null { + if (i === undefined) { + return this.getRuleContexts(Truncate_tableContext); + } + + return this.getRuleContext(i, Truncate_tableContext); } - public opt_table(): Opt_tableContext | null { - return this.getRuleContext(0, Opt_tableContext); + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_TABLE, 0); } - public opt_restart_seqs(): Opt_restart_seqsContext | null { - return this.getRuleContext(0, Opt_restart_seqsContext); + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSQLParser.COMMA); + } else { + return this.getToken(PostgreSQLParser.COMMA, i); + } + } + public KW_IDENTITY(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_IDENTITY, 0); } public opt_drop_behavior(): Opt_drop_behaviorContext | null { return this.getRuleContext(0, Opt_drop_behaviorContext); } + public KW_CONTINUE(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_CONTINUE, 0); + } + public KW_RESTART(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_RESTART, 0); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_truncatestmt; } @@ -89023,35 +89458,35 @@ export class TruncatestmtContext extends antlr.ParserRuleContext { } -export class Opt_restart_seqsContext extends antlr.ParserRuleContext { +export class Truncate_tableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_CONTINUE(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_CONTINUE, 0); + public table_name(): Table_nameContext { + return this.getRuleContext(0, Table_nameContext)!; } - public KW_IDENTITY(): antlr.TerminalNode { - return this.getToken(PostgreSQLParser.KW_IDENTITY, 0)!; + public KW_ONLY(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_ONLY, 0); } - public KW_RESTART(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_RESTART, 0); + public STAR(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.STAR, 0); } public override get ruleIndex(): number { - return PostgreSQLParser.RULE_opt_restart_seqs; + return PostgreSQLParser.RULE_truncate_table; } public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterOpt_restart_seqs) { - listener.enterOpt_restart_seqs(this); + if(listener.enterTruncate_table) { + listener.enterTruncate_table(this); } } public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitOpt_restart_seqs) { - listener.exitOpt_restart_seqs(this); + if(listener.exitTruncate_table) { + listener.exitTruncate_table(this); } } public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitOpt_restart_seqs) { - return visitor.visitOpt_restart_seqs(this); + if (visitor.visitTruncate_table) { + return visitor.visitTruncate_table(this); } else { return visitor.visitChildren(this); } @@ -89267,8 +89702,11 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { public KW_ON(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_ON, 0)!; } - public object_type_any_name(): Object_type_any_nameContext | null { - return this.getRuleContext(0, Object_type_any_nameContext); + public KW_COLUMN(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_COLUMN, 0); + } + public column_name(): Column_nameContext | null { + return this.getRuleContext(0, Column_nameContext); } public KW_IS(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_IS, 0)!; @@ -89279,15 +89717,6 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { public opt_provider(): Opt_providerContext | null { return this.getRuleContext(0, Opt_providerContext); } - public KW_COLUMN(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_COLUMN, 0); - } - public table_column_name(): Table_column_nameContext | null { - return this.getRuleContext(0, Table_column_nameContext); - } - public object_type_name(): Object_type_nameContext | null { - return this.getRuleContext(0, Object_type_nameContext); - } public KW_TYPE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TYPE, 0); } @@ -89330,6 +89759,12 @@ export class SeclabelstmtContext extends antlr.ParserRuleContext { public routine_with_argtypes(): Routine_with_argtypesContext | null { return this.getRuleContext(0, Routine_with_argtypesContext); } + public object_type_any_name(): Object_type_any_nameContext | null { + return this.getRuleContext(0, Object_type_any_nameContext); + } + public object_type_name(): Object_type_nameContext | null { + return this.getRuleContext(0, Object_type_nameContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_seclabelstmt; } @@ -93809,8 +94244,8 @@ export class RenamestmtContext extends antlr.ParserRuleContext { public column_name_create(): Column_name_createContext | null { return this.getRuleContext(0, Column_name_createContext); } - public opt_column(): Opt_columnContext | null { - return this.getRuleContext(0, Opt_columnContext); + public KW_COLUMN(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_COLUMN, 0); } public KW_RULE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_RULE, 0); @@ -93889,36 +94324,6 @@ export class RenamestmtContext extends antlr.ParserRuleContext { } -export class Opt_columnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_COLUMN(): antlr.TerminalNode { - return this.getToken(PostgreSQLParser.KW_COLUMN, 0)!; - } - public override get ruleIndex(): number { - return PostgreSQLParser.RULE_opt_column; - } - public override enterRule(listener: PostgreSQLParserListener): void { - if(listener.enterOpt_column) { - listener.enterOpt_column(this); - } - } - public override exitRule(listener: PostgreSQLParserListener): void { - if(listener.exitOpt_column) { - listener.exitOpt_column(this); - } - } - public override accept(visitor: PostgreSQLParserVisitor): Result | null { - if (visitor.visitOpt_column) { - return visitor.visitOpt_column(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class Opt_set_dataContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -95474,15 +95879,9 @@ export class TransactionstmtContext extends antlr.ParserRuleContext { public KW_TRANSACTION(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TRANSACTION, 0); } - public KW_COMMIT(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_COMMIT, 0); - } public KW_END(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_END, 0); } - public KW_ROLLBACK(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_ROLLBACK, 0); - } public KW_SAVEPOINT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_SAVEPOINT, 0); } @@ -95492,18 +95891,24 @@ export class TransactionstmtContext extends antlr.ParserRuleContext { public KW_RELEASE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_RELEASE, 0); } - public KW_TO(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_TO, 0); - } public KW_PREPARE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_PREPARE, 0); } public sconst(): SconstContext | null { return this.getRuleContext(0, SconstContext); } + public KW_COMMIT(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_COMMIT, 0); + } public KW_PREPARED(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_PREPARED, 0); } + public KW_ROLLBACK(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_ROLLBACK, 0); + } + public KW_TO(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_TO, 0); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_transactionstmt; } @@ -96023,9 +96428,6 @@ export class Createdb_opt_nameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public identifier(): IdentifierContext | null { - return this.getRuleContext(0, IdentifierContext); - } public KW_CONNECTION(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_CONNECTION, 0); } @@ -96047,6 +96449,9 @@ export class Createdb_opt_nameContext extends antlr.ParserRuleContext { public KW_TEMPLATE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_TEMPLATE, 0); } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_createdb_opt_name; } @@ -96113,9 +96518,6 @@ export class AlterdatabasestmtContext extends antlr.ParserRuleContext { public database_name(): Database_nameContext { return this.getRuleContext(0, Database_nameContext)!; } - public createdb_opt_list(): Createdb_opt_listContext | null { - return this.getRuleContext(0, Createdb_opt_listContext); - } public KW_SET(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_SET, 0); } @@ -96125,6 +96527,9 @@ export class AlterdatabasestmtContext extends antlr.ParserRuleContext { public tablespace_name_create(): Tablespace_name_createContext | null { return this.getRuleContext(0, Tablespace_name_createContext); } + public createdb_opt_list(): Createdb_opt_listContext | null { + return this.getRuleContext(0, Createdb_opt_listContext); + } public KW_WITH(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_WITH, 0); } @@ -98009,12 +98414,12 @@ export class DeallocatestmtContext extends antlr.ParserRuleContext { public name(): NameContext | null { return this.getRuleContext(0, NameContext); } - public KW_PREPARE(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_PREPARE, 0); - } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_ALL, 0); } + public KW_PREPARE(): antlr.TerminalNode | null { + return this.getToken(PostgreSQLParser.KW_PREPARE, 0); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_deallocatestmt; } @@ -100359,15 +100764,15 @@ export class Offset_clauseContext extends antlr.ParserRuleContext { public KW_OFFSET(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.KW_OFFSET, 0)!; } - public select_offset_value(): Select_offset_valueContext | null { - return this.getRuleContext(0, Select_offset_valueContext); - } public select_fetch_first_value(): Select_fetch_first_valueContext | null { return this.getRuleContext(0, Select_fetch_first_valueContext); } public row_or_rows(): Row_or_rowsContext | null { return this.getRuleContext(0, Row_or_rowsContext); } + public select_offset_value(): Select_offset_valueContext | null { + return this.getRuleContext(0, Select_offset_valueContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_offset_clause; } @@ -100458,9 +100863,6 @@ export class Select_fetch_first_valueContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public c_expr(): C_exprContext | null { - return this.getRuleContext(0, C_exprContext); - } public PLUS(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.PLUS, 0); } @@ -100470,6 +100872,9 @@ export class Select_fetch_first_valueContext extends antlr.ParserRuleContext { public MINUS(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.MINUS, 0); } + public c_expr(): C_exprContext | null { + return this.getRuleContext(0, C_exprContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_select_fetch_first_value; } @@ -101604,12 +102009,6 @@ export class Relation_exprContext extends antlr.ParserRuleContext { public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.STAR, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); - } - public where_clause(): Where_clauseContext | null { - return this.getRuleContext(0, Where_clauseContext); - } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0); } @@ -101664,12 +102063,6 @@ export class View_relation_exprContext extends antlr.ParserRuleContext { public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.STAR, 0); } - public columnlist(): ColumnlistContext | null { - return this.getRuleContext(0, ColumnlistContext); - } - public where_clause(): Where_clauseContext | null { - return this.getRuleContext(0, Where_clauseContext); - } public override get ruleIndex(): number { return PostgreSQLParser.RULE_view_relation_expr; } @@ -104717,9 +105110,6 @@ export class C_expr_exprContext extends C_exprContext { public KW_UNIQUE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_UNIQUE, 0); } - public columnref(): ColumnrefContext | null { - return this.getRuleContext(0, ColumnrefContext); - } public aexprconst(): AexprconstContext | null { return this.getRuleContext(0, AexprconstContext); } @@ -104753,6 +105143,9 @@ export class C_expr_exprContext extends C_exprContext { public KW_OVERLAPS(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_OVERLAPS, 0); } + public columnref(): ColumnrefContext | null { + return this.getRuleContext(0, ColumnrefContext); + } public override enterRule(listener: PostgreSQLParserListener): void { if(listener.enterC_expr_expr) { listener.enterC_expr_expr(this); @@ -106118,14 +106511,14 @@ export class Implicit_rowContext extends antlr.ParserRuleContext { public OPEN_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.OPEN_PAREN, 0)!; } - public expr_list(): Expr_listContext { - return this.getRuleContext(0, Expr_listContext)!; + public a_expr(): A_exprContext { + return this.getRuleContext(0, A_exprContext)!; } public COMMA(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.COMMA, 0)!; } - public a_expr(): A_exprContext { - return this.getRuleContext(0, A_exprContext)!; + public expr_list(): Expr_listContext { + return this.getRuleContext(0, Expr_listContext)!; } public CLOSE_PAREN(): antlr.TerminalNode { return this.getToken(PostgreSQLParser.CLOSE_PAREN, 0)!; @@ -108516,6 +108909,15 @@ export class Column_nameContext extends antlr.ParserRuleContext { public colid(): ColidContext { return this.getRuleContext(0, ColidContext)!; } + public indirection_el(): Indirection_elContext[]; + public indirection_el(i: number): Indirection_elContext | null; + public indirection_el(i?: number): Indirection_elContext[] | Indirection_elContext | null { + if (i === undefined) { + return this.getRuleContexts(Indirection_elContext); + } + + return this.getRuleContext(i, Indirection_elContext); + } public override get ruleIndex(): number { return PostgreSQLParser.RULE_column_name; } @@ -115807,9 +116209,6 @@ export class Plsql_unreserved_keywordContext extends antlr.ParserRuleContext { public KW_COLLATE(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_COLLATE, 0); } - public KW_COLUMN(): antlr.TerminalNode | null { - return this.getToken(PostgreSQLParser.KW_COLUMN, 0); - } public KW_COMMIT(): antlr.TerminalNode | null { return this.getToken(PostgreSQLParser.KW_COMMIT, 0); } diff --git a/src/lib/pgsql/PostgreSQLParserListener.ts b/src/lib/pgsql/PostgreSQLParserListener.ts index 19e895d..99ba2e3 100644 --- a/src/lib/pgsql/PostgreSQLParserListener.ts +++ b/src/lib/pgsql/PostgreSQLParserListener.ts @@ -279,14 +279,13 @@ import { Object_type_any_nameContext } from "./PostgreSQLParser.js"; import { Object_type_nameContext } from "./PostgreSQLParser.js"; import { Object_type_name_on_any_nameContext } from "./PostgreSQLParser.js"; import { Any_name_listContext } from "./PostgreSQLParser.js"; -import { Table_column_nameContext } from "./PostgreSQLParser.js"; import { Relation_column_nameContext } from "./PostgreSQLParser.js"; import { Relation_nameContext } from "./PostgreSQLParser.js"; import { Any_nameContext } from "./PostgreSQLParser.js"; import { AttrsContext } from "./PostgreSQLParser.js"; import { Type_name_listContext } from "./PostgreSQLParser.js"; import { TruncatestmtContext } from "./PostgreSQLParser.js"; -import { Opt_restart_seqsContext } from "./PostgreSQLParser.js"; +import { Truncate_tableContext } from "./PostgreSQLParser.js"; import { CommentstmtContext } from "./PostgreSQLParser.js"; import { Comment_textContext } from "./PostgreSQLParser.js"; import { SeclabelstmtContext } from "./PostgreSQLParser.js"; @@ -387,7 +386,6 @@ import { Reindex_option_listContext } from "./PostgreSQLParser.js"; import { Reindex_option_elemContext } from "./PostgreSQLParser.js"; import { AltertblspcstmtContext } from "./PostgreSQLParser.js"; import { RenamestmtContext } from "./PostgreSQLParser.js"; -import { Opt_columnContext } from "./PostgreSQLParser.js"; import { Opt_set_dataContext } from "./PostgreSQLParser.js"; import { AlterobjectdependsstmtContext } from "./PostgreSQLParser.js"; import { Opt_noContext } from "./PostgreSQLParser.js"; @@ -3652,16 +3650,6 @@ export class PostgreSQLParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitAny_name_list?: (ctx: Any_name_listContext) => void; - /** - * Enter a parse tree produced by `PostgreSQLParser.table_column_name`. - * @param ctx the parse tree - */ - enterTable_column_name?: (ctx: Table_column_nameContext) => void; - /** - * Exit a parse tree produced by `PostgreSQLParser.table_column_name`. - * @param ctx the parse tree - */ - exitTable_column_name?: (ctx: Table_column_nameContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.relation_column_name`. * @param ctx the parse tree @@ -3723,15 +3711,15 @@ export class PostgreSQLParserListener implements ParseTreeListener { */ exitTruncatestmt?: (ctx: TruncatestmtContext) => void; /** - * Enter a parse tree produced by `PostgreSQLParser.opt_restart_seqs`. + * Enter a parse tree produced by `PostgreSQLParser.truncate_table`. * @param ctx the parse tree */ - enterOpt_restart_seqs?: (ctx: Opt_restart_seqsContext) => void; + enterTruncate_table?: (ctx: Truncate_tableContext) => void; /** - * Exit a parse tree produced by `PostgreSQLParser.opt_restart_seqs`. + * Exit a parse tree produced by `PostgreSQLParser.truncate_table`. * @param ctx the parse tree */ - exitOpt_restart_seqs?: (ctx: Opt_restart_seqsContext) => void; + exitTruncate_table?: (ctx: Truncate_tableContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.commentstmt`. * @param ctx the parse tree @@ -4732,16 +4720,6 @@ export class PostgreSQLParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRenamestmt?: (ctx: RenamestmtContext) => void; - /** - * Enter a parse tree produced by `PostgreSQLParser.opt_column`. - * @param ctx the parse tree - */ - enterOpt_column?: (ctx: Opt_columnContext) => void; - /** - * Exit a parse tree produced by `PostgreSQLParser.opt_column`. - * @param ctx the parse tree - */ - exitOpt_column?: (ctx: Opt_columnContext) => void; /** * Enter a parse tree produced by `PostgreSQLParser.opt_set_data`. * @param ctx the parse tree diff --git a/src/lib/pgsql/PostgreSQLParserVisitor.ts b/src/lib/pgsql/PostgreSQLParserVisitor.ts index b03fb3e..273a1be 100644 --- a/src/lib/pgsql/PostgreSQLParserVisitor.ts +++ b/src/lib/pgsql/PostgreSQLParserVisitor.ts @@ -279,14 +279,13 @@ import { Object_type_any_nameContext } from "./PostgreSQLParser.js"; import { Object_type_nameContext } from "./PostgreSQLParser.js"; import { Object_type_name_on_any_nameContext } from "./PostgreSQLParser.js"; import { Any_name_listContext } from "./PostgreSQLParser.js"; -import { Table_column_nameContext } from "./PostgreSQLParser.js"; import { Relation_column_nameContext } from "./PostgreSQLParser.js"; import { Relation_nameContext } from "./PostgreSQLParser.js"; import { Any_nameContext } from "./PostgreSQLParser.js"; import { AttrsContext } from "./PostgreSQLParser.js"; import { Type_name_listContext } from "./PostgreSQLParser.js"; import { TruncatestmtContext } from "./PostgreSQLParser.js"; -import { Opt_restart_seqsContext } from "./PostgreSQLParser.js"; +import { Truncate_tableContext } from "./PostgreSQLParser.js"; import { CommentstmtContext } from "./PostgreSQLParser.js"; import { Comment_textContext } from "./PostgreSQLParser.js"; import { SeclabelstmtContext } from "./PostgreSQLParser.js"; @@ -387,7 +386,6 @@ import { Reindex_option_listContext } from "./PostgreSQLParser.js"; import { Reindex_option_elemContext } from "./PostgreSQLParser.js"; import { AltertblspcstmtContext } from "./PostgreSQLParser.js"; import { RenamestmtContext } from "./PostgreSQLParser.js"; -import { Opt_columnContext } from "./PostgreSQLParser.js"; import { Opt_set_dataContext } from "./PostgreSQLParser.js"; import { AlterobjectdependsstmtContext } from "./PostgreSQLParser.js"; import { Opt_noContext } from "./PostgreSQLParser.js"; @@ -2551,12 +2549,6 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `PostgreSQLParser.table_column_name`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTable_column_name?: (ctx: Table_column_nameContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.relation_column_name`. * @param ctx the parse tree @@ -2594,11 +2586,11 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSQLParser.opt_restart_seqs`. + * Visit a parse tree produced by `PostgreSQLParser.truncate_table`. * @param ctx the parse tree * @return the visitor result */ - visitOpt_restart_seqs?: (ctx: Opt_restart_seqsContext) => Result; + visitTruncate_table?: (ctx: Truncate_tableContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.commentstmt`. * @param ctx the parse tree @@ -3199,12 +3191,6 @@ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `PostgreSQLParser.opt_column`. - * @param ctx the parse tree - * @return the visitor result - */ - visitOpt_column?: (ctx: Opt_columnContext) => Result; /** * Visit a parse tree produced by `PostgreSQLParser.opt_set_data`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 67f8b8c..2828e9c 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -991,4 +991,4 @@ nonReserved atn: -[4, 1, 392, 3959, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 3, 2, 413, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 426, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 431, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 439, 8, 2, 10, 2, 12, 2, 442, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 460, 8, 2, 1, 2, 1, 2, 3, 2, 464, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 470, 8, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 3, 2, 476, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 3, 2, 486, 8, 2, 1, 2, 1, 2, 3, 2, 490, 8, 2, 1, 2, 3, 2, 493, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 498, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 509, 8, 2, 10, 2, 12, 2, 512, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 519, 8, 2, 1, 2, 3, 2, 522, 8, 2, 1, 2, 1, 2, 3, 2, 526, 8, 2, 1, 2, 3, 2, 529, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 535, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 546, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 552, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 557, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 590, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 600, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 611, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 622, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 633, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 638, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 647, 8, 2, 1, 2, 1, 2, 3, 2, 651, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 657, 8, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 666, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 672, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 684, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 692, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 709, 8, 2, 1, 2, 1, 2, 3, 2, 713, 8, 2, 1, 2, 4, 2, 716, 8, 2, 11, 2, 12, 2, 717, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 733, 8, 2, 1, 2, 1, 2, 3, 2, 737, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 742, 8, 2, 10, 2, 12, 2, 745, 9, 2, 1, 2, 3, 2, 748, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 754, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 783, 8, 2, 1, 2, 1, 2, 3, 2, 787, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 792, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 799, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 805, 8, 2, 1, 2, 3, 2, 808, 8, 2, 1, 2, 3, 2, 811, 8, 2, 1, 2, 1, 2, 3, 2, 815, 8, 2, 1, 2, 1, 2, 3, 2, 819, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 827, 8, 2, 10, 2, 12, 2, 830, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 838, 8, 2, 1, 2, 3, 2, 841, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 850, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 855, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 861, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 868, 8, 2, 1, 2, 3, 2, 871, 8, 2, 1, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 884, 8, 2, 10, 2, 12, 2, 887, 9, 2, 3, 2, 889, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 895, 8, 2, 1, 2, 1, 2, 3, 2, 899, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 914, 8, 2, 10, 2, 12, 2, 917, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 924, 8, 2, 1, 2, 1, 2, 3, 2, 928, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 934, 8, 2, 1, 2, 3, 2, 937, 8, 2, 1, 2, 1, 2, 3, 2, 941, 8, 2, 1, 2, 3, 2, 944, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 950, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 955, 8, 2, 1, 2, 1, 2, 3, 2, 959, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 966, 8, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 3, 2, 972, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 979, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 984, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 993, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1001, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 3, 2, 1013, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1019, 8, 2, 1, 2, 1, 2, 3, 2, 1023, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1028, 8, 2, 1, 2, 3, 2, 1031, 8, 2, 1, 2, 1, 2, 3, 2, 1035, 8, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1045, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1053, 8, 2, 1, 2, 3, 2, 1056, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1063, 8, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 3, 2, 1069, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1078, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1083, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1089, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1094, 8, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 1, 2, 3, 2, 1101, 8, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 1, 2, 3, 2, 1108, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1134, 8, 2, 10, 2, 12, 2, 1137, 9, 2, 3, 2, 1139, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1147, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1153, 8, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 3, 2, 1159, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1164, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1172, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1177, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1183, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1189, 8, 2, 1, 2, 3, 2, 1192, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1199, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1204, 8, 2, 10, 2, 12, 2, 1207, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1212, 8, 2, 10, 2, 12, 2, 1215, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1229, 8, 2, 10, 2, 12, 2, 1232, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1256, 8, 2, 10, 2, 12, 2, 1259, 9, 2, 3, 2, 1261, 8, 2, 1, 2, 1, 2, 5, 2, 1265, 8, 2, 10, 2, 12, 2, 1268, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1274, 8, 2, 10, 2, 12, 2, 1277, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1283, 8, 2, 10, 2, 12, 2, 1286, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1291, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1296, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1301, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1308, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1313, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1318, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1325, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1331, 8, 2, 10, 2, 12, 2, 1334, 9, 2, 3, 2, 1336, 8, 2, 1, 3, 1, 3, 3, 3, 1340, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1352, 8, 6, 1, 6, 1, 6, 3, 6, 1356, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1363, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1479, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1487, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1495, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1504, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1514, 8, 6, 1, 7, 1, 7, 3, 7, 1518, 8, 7, 1, 7, 3, 7, 1521, 8, 7, 1, 7, 1, 7, 3, 7, 1525, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1531, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1543, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1555, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1560, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1569, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1577, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1582, 8, 14, 3, 14, 1584, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1592, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1597, 8, 14, 1, 14, 1, 14, 3, 14, 1601, 8, 14, 1, 14, 3, 14, 1604, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1612, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1617, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1626, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1631, 8, 14, 1, 14, 3, 14, 1634, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1639, 8, 14, 1, 14, 1, 14, 3, 14, 1643, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1648, 8, 14, 3, 14, 1650, 8, 14, 1, 15, 1, 15, 3, 15, 1654, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1661, 8, 16, 10, 16, 12, 16, 1664, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1671, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1677, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1688, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1693, 8, 21, 10, 21, 12, 21, 1696, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1702, 8, 22, 10, 22, 12, 22, 1705, 9, 22, 1, 23, 1, 23, 3, 23, 1709, 8, 23, 1, 23, 3, 23, 1712, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1734, 8, 25, 10, 25, 12, 25, 1737, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1743, 8, 26, 10, 26, 12, 26, 1746, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 1752, 8, 27, 1, 27, 3, 27, 1755, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 1760, 8, 28, 10, 28, 12, 28, 1763, 9, 28, 1, 28, 3, 28, 1766, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1778, 8, 30, 10, 30, 12, 30, 1781, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 1787, 8, 31, 1, 31, 3, 31, 1790, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1796, 8, 32, 10, 32, 12, 32, 1799, 9, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1807, 8, 33, 10, 33, 12, 33, 1810, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1820, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1828, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 4, 38, 1844, 8, 38, 11, 38, 12, 38, 1845, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1853, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1860, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1872, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1878, 8, 38, 10, 38, 12, 38, 1881, 9, 38, 1, 38, 5, 38, 1884, 8, 38, 10, 38, 12, 38, 1887, 9, 38, 1, 38, 5, 38, 1890, 8, 38, 10, 38, 12, 38, 1893, 9, 38, 3, 38, 1895, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1914, 8, 46, 10, 46, 12, 46, 1917, 9, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1927, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1934, 8, 49, 10, 49, 12, 49, 1937, 9, 49, 3, 49, 1939, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1946, 8, 49, 10, 49, 12, 49, 1949, 9, 49, 3, 49, 1951, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1958, 8, 49, 10, 49, 12, 49, 1961, 9, 49, 3, 49, 1963, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1970, 8, 49, 10, 49, 12, 49, 1973, 9, 49, 3, 49, 1975, 8, 49, 1, 49, 3, 49, 1978, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1983, 8, 49, 3, 49, 1985, 8, 49, 1, 49, 1, 49, 3, 49, 1989, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2000, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2006, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2012, 8, 51, 1, 51, 5, 51, 2015, 8, 51, 10, 51, 12, 51, 2018, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2029, 8, 52, 1, 53, 1, 53, 3, 53, 2033, 8, 53, 1, 53, 3, 53, 2036, 8, 53, 1, 53, 1, 53, 3, 53, 2040, 8, 53, 1, 54, 1, 54, 4, 54, 2044, 8, 54, 11, 54, 12, 54, 2045, 1, 55, 1, 55, 3, 55, 2050, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2056, 8, 55, 10, 55, 12, 55, 2059, 9, 55, 1, 55, 3, 55, 2062, 8, 55, 1, 55, 3, 55, 2065, 8, 55, 1, 55, 3, 55, 2068, 8, 55, 1, 55, 3, 55, 2071, 8, 55, 1, 55, 1, 55, 3, 55, 2075, 8, 55, 1, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 5, 56, 2082, 8, 56, 10, 56, 12, 56, 2085, 9, 56, 1, 56, 3, 56, 2088, 8, 56, 1, 56, 3, 56, 2091, 8, 56, 1, 56, 3, 56, 2094, 8, 56, 1, 56, 3, 56, 2097, 8, 56, 1, 56, 1, 56, 3, 56, 2101, 8, 56, 1, 56, 5, 56, 2104, 8, 56, 10, 56, 12, 56, 2107, 9, 56, 1, 56, 3, 56, 2110, 8, 56, 1, 56, 3, 56, 2113, 8, 56, 1, 56, 3, 56, 2116, 8, 56, 1, 56, 3, 56, 2119, 8, 56, 3, 56, 2121, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2134, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2139, 8, 57, 1, 57, 3, 57, 2142, 8, 57, 1, 57, 3, 57, 2145, 8, 57, 1, 57, 1, 57, 3, 57, 2149, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2159, 8, 57, 1, 57, 1, 57, 3, 57, 2163, 8, 57, 3, 57, 2165, 8, 57, 1, 57, 3, 57, 2168, 8, 57, 1, 57, 1, 57, 3, 57, 2172, 8, 57, 1, 58, 1, 58, 5, 58, 2176, 8, 58, 10, 58, 12, 58, 2179, 9, 58, 1, 58, 3, 58, 2182, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2193, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2203, 8, 61, 1, 61, 1, 61, 3, 61, 2207, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2219, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2231, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2244, 8, 64, 10, 64, 12, 64, 2247, 9, 64, 1, 64, 1, 64, 3, 64, 2251, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2257, 8, 65, 1, 66, 1, 66, 1, 66, 5, 66, 2262, 8, 66, 10, 66, 12, 66, 2265, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 2280, 8, 70, 1, 70, 5, 70, 2283, 8, 70, 10, 70, 12, 70, 2286, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2296, 8, 71, 10, 71, 12, 71, 2299, 9, 71, 1, 71, 1, 71, 3, 71, 2303, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2309, 8, 72, 10, 72, 12, 72, 2312, 9, 72, 1, 72, 5, 72, 2315, 8, 72, 10, 72, 12, 72, 2318, 9, 72, 1, 72, 3, 72, 2321, 8, 72, 1, 72, 3, 72, 2324, 8, 72, 1, 73, 1, 73, 1, 74, 3, 74, 2329, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2336, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2342, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2349, 8, 75, 10, 75, 12, 75, 2352, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2359, 8, 75, 10, 75, 12, 75, 2362, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2374, 8, 75, 10, 75, 12, 75, 2377, 9, 75, 1, 75, 1, 75, 3, 75, 2381, 8, 75, 3, 75, 2383, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2388, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2395, 8, 77, 10, 77, 12, 77, 2398, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2408, 8, 77, 10, 77, 12, 77, 2411, 9, 77, 1, 77, 1, 77, 3, 77, 2415, 8, 77, 1, 78, 1, 78, 3, 78, 2419, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2426, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2431, 8, 79, 5, 79, 2433, 8, 79, 10, 79, 12, 79, 2436, 9, 79, 3, 79, 2438, 8, 79, 1, 79, 3, 79, 2441, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2453, 8, 80, 10, 80, 12, 80, 2456, 9, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2466, 8, 81, 10, 81, 12, 81, 2469, 9, 81, 1, 81, 1, 81, 3, 81, 2473, 8, 81, 1, 82, 1, 82, 3, 82, 2477, 8, 82, 1, 82, 3, 82, 2480, 8, 82, 1, 83, 1, 83, 3, 83, 2484, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2490, 8, 83, 1, 83, 3, 83, 2493, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 2500, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2510, 8, 86, 10, 86, 12, 86, 2513, 9, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2521, 8, 87, 10, 87, 12, 87, 2524, 9, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2534, 8, 87, 10, 87, 12, 87, 2537, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2545, 8, 88, 10, 88, 12, 88, 2548, 9, 88, 1, 88, 1, 88, 3, 88, 2552, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2560, 8, 91, 1, 92, 1, 92, 1, 93, 3, 93, 2565, 8, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2579, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2586, 8, 96, 10, 96, 12, 96, 2589, 9, 96, 3, 96, 2591, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2596, 8, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2601, 8, 96, 10, 96, 12, 96, 2604, 9, 96, 3, 96, 2606, 8, 96, 1, 97, 1, 97, 1, 98, 3, 98, 2611, 8, 98, 1, 98, 1, 98, 5, 98, 2615, 8, 98, 10, 98, 12, 98, 2618, 9, 98, 1, 98, 3, 98, 2621, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2626, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2631, 8, 100, 1, 100, 1, 100, 3, 100, 2635, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2641, 8, 100, 1, 100, 1, 100, 3, 100, 2645, 8, 100, 1, 101, 3, 101, 2648, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 101, 3, 101, 2656, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2661, 8, 101, 1, 101, 1, 101, 3, 101, 2665, 8, 101, 1, 101, 3, 101, 2668, 8, 101, 1, 101, 3, 101, 2671, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2677, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2682, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2689, 8, 103, 1, 104, 3, 104, 2692, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2710, 8, 104, 3, 104, 2712, 8, 104, 1, 104, 3, 104, 2715, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 5, 106, 2724, 8, 106, 10, 106, 12, 106, 2727, 9, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2733, 8, 107, 10, 107, 12, 107, 2736, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2742, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 2748, 8, 109, 10, 109, 12, 109, 2751, 9, 109, 1, 109, 1, 109, 1, 110, 1, 110, 3, 110, 2757, 8, 110, 1, 111, 1, 111, 3, 111, 2761, 8, 111, 1, 111, 3, 111, 2764, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2772, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2780, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2786, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2792, 8, 112, 10, 112, 12, 112, 2795, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2802, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2809, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2816, 8, 113, 3, 113, 2818, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2829, 8, 114, 10, 114, 12, 114, 2832, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2837, 8, 114, 3, 114, 2839, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2847, 8, 114, 10, 114, 12, 114, 2850, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2855, 8, 114, 3, 114, 2857, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 3, 116, 2865, 8, 116, 1, 117, 1, 117, 3, 117, 2869, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 2876, 8, 118, 10, 118, 12, 118, 2879, 9, 118, 3, 118, 2881, 8, 118, 1, 118, 1, 118, 1, 118, 1, 119, 3, 119, 2887, 8, 119, 1, 119, 1, 119, 3, 119, 2891, 8, 119, 3, 119, 2893, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2902, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2914, 8, 120, 3, 120, 2916, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2923, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2930, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2936, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2942, 8, 120, 3, 120, 2944, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2949, 8, 121, 10, 121, 12, 121, 2952, 9, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2957, 8, 122, 10, 122, 12, 122, 2960, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2965, 8, 123, 10, 123, 12, 123, 2968, 9, 123, 1, 124, 1, 124, 1, 124, 3, 124, 2973, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2978, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2985, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 2991, 8, 127, 1, 127, 3, 127, 2994, 8, 127, 1, 127, 1, 127, 3, 127, 2998, 8, 127, 3, 127, 3000, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3005, 8, 128, 10, 128, 12, 128, 3008, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3014, 8, 129, 10, 129, 12, 129, 3017, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3023, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3031, 8, 131, 10, 131, 12, 131, 3034, 9, 131, 1, 131, 1, 131, 3, 131, 3038, 8, 131, 1, 132, 1, 132, 3, 132, 3042, 8, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 3052, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3057, 8, 136, 10, 136, 12, 136, 3060, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3072, 8, 137, 3, 137, 3074, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3082, 8, 137, 10, 137, 12, 137, 3085, 9, 137, 1, 138, 3, 138, 3088, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3096, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3103, 8, 138, 10, 138, 12, 138, 3106, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3111, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3119, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3124, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3134, 8, 138, 10, 138, 12, 138, 3137, 9, 138, 1, 138, 1, 138, 3, 138, 3141, 8, 138, 1, 138, 3, 138, 3144, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3150, 8, 138, 1, 138, 1, 138, 3, 138, 3154, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3159, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3164, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3169, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3175, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3196, 8, 139, 10, 139, 12, 139, 3199, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3209, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3221, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3231, 8, 141, 11, 141, 12, 141, 3232, 1, 141, 1, 141, 3, 141, 3237, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3244, 8, 141, 11, 141, 12, 141, 3245, 1, 141, 1, 141, 3, 141, 3250, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3266, 8, 141, 10, 141, 12, 141, 3269, 9, 141, 3, 141, 3271, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3279, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3288, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3297, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3318, 8, 141, 11, 141, 12, 141, 3319, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3336, 8, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3341, 8, 141, 10, 141, 12, 141, 3344, 9, 141, 3, 141, 3346, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3355, 8, 141, 1, 141, 1, 141, 3, 141, 3359, 8, 141, 1, 141, 1, 141, 3, 141, 3363, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3373, 8, 141, 11, 141, 12, 141, 3374, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3400, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3407, 8, 141, 1, 141, 3, 141, 3410, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3425, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3446, 8, 141, 1, 141, 1, 141, 3, 141, 3450, 8, 141, 3, 141, 3452, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3462, 8, 141, 10, 141, 12, 141, 3465, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3474, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 3487, 8, 143, 11, 143, 12, 143, 3488, 3, 143, 3491, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 3, 148, 3504, 8, 148, 1, 149, 1, 149, 3, 149, 3508, 8, 149, 1, 150, 1, 150, 1, 150, 4, 150, 3513, 8, 150, 11, 150, 12, 150, 3514, 1, 151, 1, 151, 1, 151, 3, 151, 3520, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 3, 153, 3528, 8, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3533, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, 3542, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3574, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3591, 8, 158, 1, 158, 1, 158, 3, 158, 3595, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3601, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3607, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 3614, 8, 158, 10, 158, 12, 158, 3617, 9, 158, 1, 158, 3, 158, 3620, 8, 158, 3, 158, 3622, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3627, 8, 159, 10, 159, 12, 159, 3630, 9, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3635, 8, 160, 10, 160, 12, 160, 3638, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3643, 8, 161, 10, 161, 12, 161, 3646, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3651, 8, 162, 10, 162, 12, 162, 3654, 9, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3661, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3672, 8, 166, 10, 166, 12, 166, 3675, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3681, 8, 167, 1, 167, 3, 167, 3684, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3689, 8, 168, 10, 168, 12, 168, 3692, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3697, 8, 169, 10, 169, 12, 169, 3700, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3707, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3719, 8, 172, 10, 172, 12, 172, 3722, 9, 172, 1, 173, 1, 173, 3, 173, 3726, 8, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3731, 8, 173, 1, 173, 3, 173, 3734, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 3745, 8, 175, 10, 175, 12, 175, 3748, 9, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3769, 8, 178, 10, 178, 12, 178, 3772, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3779, 8, 178, 10, 178, 12, 178, 3782, 9, 178, 3, 178, 3784, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3791, 8, 178, 10, 178, 12, 178, 3794, 9, 178, 3, 178, 3796, 8, 178, 3, 178, 3798, 8, 178, 1, 178, 3, 178, 3801, 8, 178, 1, 178, 3, 178, 3804, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3822, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3831, 8, 180, 1, 181, 1, 181, 1, 181, 5, 181, 3836, 8, 181, 10, 181, 12, 181, 3839, 9, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3850, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 3857, 8, 184, 10, 184, 12, 184, 3860, 9, 184, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 4, 186, 3867, 8, 186, 11, 186, 12, 186, 3868, 1, 186, 3, 186, 3872, 8, 186, 1, 187, 1, 187, 3, 187, 3876, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3882, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 3, 191, 3889, 8, 191, 1, 191, 1, 191, 3, 191, 3893, 8, 191, 1, 191, 1, 191, 3, 191, 3897, 8, 191, 1, 191, 1, 191, 3, 191, 3901, 8, 191, 1, 191, 1, 191, 3, 191, 3905, 8, 191, 1, 191, 1, 191, 3, 191, 3909, 8, 191, 1, 191, 1, 191, 3, 191, 3913, 8, 191, 1, 191, 1, 191, 3, 191, 3917, 8, 191, 1, 191, 1, 191, 3, 191, 3921, 8, 191, 1, 191, 1, 191, 3, 191, 3925, 8, 191, 1, 191, 3, 191, 3928, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3941, 8, 192, 1, 193, 1, 193, 1, 194, 1, 194, 3, 194, 3947, 8, 194, 1, 195, 1, 195, 3, 195, 3951, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 9, 1135, 1205, 1213, 1230, 1257, 1266, 1275, 1284, 1332, 4, 102, 274, 278, 282, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 64, 2, 0, 78, 78, 228, 228, 2, 0, 34, 34, 246, 246, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 172, 172, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 288, 288, 2, 0, 8, 8, 166, 166, 1, 0, 334, 335, 3, 0, 72, 72, 189, 189, 260, 260, 3, 0, 73, 73, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 269, 269, 322, 322, 3, 0, 102, 102, 269, 269, 322, 322, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 289, 289, 330, 330, 2, 0, 291, 291, 336, 336, 2, 0, 290, 290, 302, 302, 2, 0, 61, 61, 255, 255, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 381, 381, 383, 383, 2, 0, 93, 93, 216, 216, 2, 0, 208, 208, 277, 277, 2, 0, 196, 196, 359, 359, 1, 0, 250, 251, 1, 0, 162, 163, 3, 0, 10, 10, 16, 16, 276, 276, 3, 0, 111, 111, 315, 315, 324, 324, 2, 0, 360, 361, 365, 365, 2, 0, 94, 94, 362, 364, 2, 0, 360, 361, 368, 368, 11, 0, 67, 67, 69, 69, 134, 134, 179, 179, 181, 181, 183, 183, 185, 185, 230, 230, 258, 258, 340, 340, 347, 347, 4, 0, 63, 63, 65, 66, 267, 267, 330, 330, 2, 0, 74, 75, 305, 305, 3, 0, 76, 77, 301, 301, 306, 306, 2, 0, 36, 36, 317, 317, 2, 0, 138, 138, 245, 245, 1, 0, 286, 287, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 310, 310, 1, 0, 219, 220, 1, 0, 351, 358, 2, 0, 94, 94, 360, 369, 4, 0, 14, 14, 140, 140, 196, 196, 207, 207, 2, 0, 111, 111, 315, 315, 1, 0, 360, 361, 7, 0, 67, 68, 134, 135, 179, 186, 191, 192, 258, 259, 340, 341, 347, 348, 6, 0, 67, 67, 134, 134, 183, 183, 185, 185, 258, 258, 347, 347, 2, 0, 185, 185, 347, 347, 4, 0, 67, 67, 134, 134, 183, 183, 258, 258, 3, 0, 134, 134, 183, 183, 258, 258, 2, 0, 82, 82, 351, 351, 2, 0, 118, 118, 225, 225, 2, 0, 377, 377, 388, 388, 1, 0, 382, 383, 2, 0, 96, 96, 268, 268, 1, 0, 376, 377, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 162, 192, 194, 194, 198, 200, 204, 206, 209, 209, 211, 212, 214, 218, 221, 225, 227, 237, 239, 248, 250, 261, 263, 266, 268, 275, 277, 291, 293, 298, 301, 307, 309, 309, 311, 321, 325, 329, 332, 341, 344, 344, 347, 350, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 193, 193, 202, 202, 249, 249, 263, 263, 269, 269, 322, 322, 331, 331, 18, 0, 8, 14, 16, 59, 61, 101, 103, 123, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 192, 194, 194, 196, 201, 203, 248, 250, 262, 264, 268, 270, 321, 323, 330, 332, 350, 4570, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 1335, 1, 0, 0, 0, 6, 1339, 1, 0, 0, 0, 8, 1341, 1, 0, 0, 0, 10, 1343, 1, 0, 0, 0, 12, 1513, 1, 0, 0, 0, 14, 1515, 1, 0, 0, 0, 16, 1530, 1, 0, 0, 0, 18, 1536, 1, 0, 0, 0, 20, 1548, 1, 0, 0, 0, 22, 1561, 1, 0, 0, 0, 24, 1564, 1, 0, 0, 0, 26, 1568, 1, 0, 0, 0, 28, 1649, 1, 0, 0, 0, 30, 1651, 1, 0, 0, 0, 32, 1655, 1, 0, 0, 0, 34, 1676, 1, 0, 0, 0, 36, 1678, 1, 0, 0, 0, 38, 1680, 1, 0, 0, 0, 40, 1687, 1, 0, 0, 0, 42, 1689, 1, 0, 0, 0, 44, 1697, 1, 0, 0, 0, 46, 1706, 1, 0, 0, 0, 48, 1717, 1, 0, 0, 0, 50, 1735, 1, 0, 0, 0, 52, 1738, 1, 0, 0, 0, 54, 1749, 1, 0, 0, 0, 56, 1765, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1773, 1, 0, 0, 0, 62, 1784, 1, 0, 0, 0, 64, 1791, 1, 0, 0, 0, 66, 1802, 1, 0, 0, 0, 68, 1819, 1, 0, 0, 0, 70, 1827, 1, 0, 0, 0, 72, 1829, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1894, 1, 0, 0, 0, 78, 1896, 1, 0, 0, 0, 80, 1898, 1, 0, 0, 0, 82, 1900, 1, 0, 0, 0, 84, 1902, 1, 0, 0, 0, 86, 1904, 1, 0, 0, 0, 88, 1906, 1, 0, 0, 0, 90, 1908, 1, 0, 0, 0, 92, 1910, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1938, 1, 0, 0, 0, 100, 1990, 1, 0, 0, 0, 102, 1993, 1, 0, 0, 0, 104, 2028, 1, 0, 0, 0, 106, 2032, 1, 0, 0, 0, 108, 2041, 1, 0, 0, 0, 110, 2074, 1, 0, 0, 0, 112, 2120, 1, 0, 0, 0, 114, 2141, 1, 0, 0, 0, 116, 2173, 1, 0, 0, 0, 118, 2185, 1, 0, 0, 0, 120, 2188, 1, 0, 0, 0, 122, 2197, 1, 0, 0, 0, 124, 2211, 1, 0, 0, 0, 126, 2230, 1, 0, 0, 0, 128, 2250, 1, 0, 0, 0, 130, 2256, 1, 0, 0, 0, 132, 2258, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2270, 1, 0, 0, 0, 138, 2273, 1, 0, 0, 0, 140, 2276, 1, 0, 0, 0, 142, 2302, 1, 0, 0, 0, 144, 2304, 1, 0, 0, 0, 146, 2325, 1, 0, 0, 0, 148, 2341, 1, 0, 0, 0, 150, 2382, 1, 0, 0, 0, 152, 2387, 1, 0, 0, 0, 154, 2414, 1, 0, 0, 0, 156, 2418, 1, 0, 0, 0, 158, 2440, 1, 0, 0, 0, 160, 2442, 1, 0, 0, 0, 162, 2472, 1, 0, 0, 0, 164, 2474, 1, 0, 0, 0, 166, 2481, 1, 0, 0, 0, 168, 2494, 1, 0, 0, 0, 170, 2499, 1, 0, 0, 0, 172, 2501, 1, 0, 0, 0, 174, 2516, 1, 0, 0, 0, 176, 2540, 1, 0, 0, 0, 178, 2553, 1, 0, 0, 0, 180, 2555, 1, 0, 0, 0, 182, 2557, 1, 0, 0, 0, 184, 2561, 1, 0, 0, 0, 186, 2564, 1, 0, 0, 0, 188, 2568, 1, 0, 0, 0, 190, 2572, 1, 0, 0, 0, 192, 2575, 1, 0, 0, 0, 194, 2607, 1, 0, 0, 0, 196, 2620, 1, 0, 0, 0, 198, 2625, 1, 0, 0, 0, 200, 2644, 1, 0, 0, 0, 202, 2670, 1, 0, 0, 0, 204, 2676, 1, 0, 0, 0, 206, 2678, 1, 0, 0, 0, 208, 2714, 1, 0, 0, 0, 210, 2716, 1, 0, 0, 0, 212, 2720, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2739, 1, 0, 0, 0, 218, 2743, 1, 0, 0, 0, 220, 2754, 1, 0, 0, 0, 222, 2785, 1, 0, 0, 0, 224, 2787, 1, 0, 0, 0, 226, 2817, 1, 0, 0, 0, 228, 2838, 1, 0, 0, 0, 230, 2858, 1, 0, 0, 0, 232, 2864, 1, 0, 0, 0, 234, 2868, 1, 0, 0, 0, 236, 2870, 1, 0, 0, 0, 238, 2892, 1, 0, 0, 0, 240, 2943, 1, 0, 0, 0, 242, 2945, 1, 0, 0, 0, 244, 2953, 1, 0, 0, 0, 246, 2961, 1, 0, 0, 0, 248, 2969, 1, 0, 0, 0, 250, 2977, 1, 0, 0, 0, 252, 2984, 1, 0, 0, 0, 254, 2990, 1, 0, 0, 0, 256, 3001, 1, 0, 0, 0, 258, 3009, 1, 0, 0, 0, 260, 3022, 1, 0, 0, 0, 262, 3037, 1, 0, 0, 0, 264, 3041, 1, 0, 0, 0, 266, 3043, 1, 0, 0, 0, 268, 3045, 1, 0, 0, 0, 270, 3051, 1, 0, 0, 0, 272, 3053, 1, 0, 0, 0, 274, 3073, 1, 0, 0, 0, 276, 3168, 1, 0, 0, 0, 278, 3174, 1, 0, 0, 0, 280, 3200, 1, 0, 0, 0, 282, 3451, 1, 0, 0, 0, 284, 3473, 1, 0, 0, 0, 286, 3490, 1, 0, 0, 0, 288, 3492, 1, 0, 0, 0, 290, 3494, 1, 0, 0, 0, 292, 3496, 1, 0, 0, 0, 294, 3498, 1, 0, 0, 0, 296, 3500, 1, 0, 0, 0, 298, 3505, 1, 0, 0, 0, 300, 3512, 1, 0, 0, 0, 302, 3516, 1, 0, 0, 0, 304, 3521, 1, 0, 0, 0, 306, 3527, 1, 0, 0, 0, 308, 3534, 1, 0, 0, 0, 310, 3536, 1, 0, 0, 0, 312, 3541, 1, 0, 0, 0, 314, 3573, 1, 0, 0, 0, 316, 3621, 1, 0, 0, 0, 318, 3623, 1, 0, 0, 0, 320, 3631, 1, 0, 0, 0, 322, 3639, 1, 0, 0, 0, 324, 3647, 1, 0, 0, 0, 326, 3660, 1, 0, 0, 0, 328, 3662, 1, 0, 0, 0, 330, 3665, 1, 0, 0, 0, 332, 3668, 1, 0, 0, 0, 334, 3676, 1, 0, 0, 0, 336, 3685, 1, 0, 0, 0, 338, 3693, 1, 0, 0, 0, 340, 3706, 1, 0, 0, 0, 342, 3708, 1, 0, 0, 0, 344, 3715, 1, 0, 0, 0, 346, 3723, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3740, 1, 0, 0, 0, 352, 3749, 1, 0, 0, 0, 354, 3753, 1, 0, 0, 0, 356, 3803, 1, 0, 0, 0, 358, 3821, 1, 0, 0, 0, 360, 3830, 1, 0, 0, 0, 362, 3832, 1, 0, 0, 0, 364, 3849, 1, 0, 0, 0, 366, 3851, 1, 0, 0, 0, 368, 3853, 1, 0, 0, 0, 370, 3861, 1, 0, 0, 0, 372, 3871, 1, 0, 0, 0, 374, 3875, 1, 0, 0, 0, 376, 3881, 1, 0, 0, 0, 378, 3883, 1, 0, 0, 0, 380, 3885, 1, 0, 0, 0, 382, 3927, 1, 0, 0, 0, 384, 3940, 1, 0, 0, 0, 386, 3942, 1, 0, 0, 0, 388, 3946, 1, 0, 0, 0, 390, 3950, 1, 0, 0, 0, 392, 3952, 1, 0, 0, 0, 394, 3954, 1, 0, 0, 0, 396, 3956, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 1, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 1336, 3, 26, 13, 0, 411, 413, 3, 44, 22, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 1336, 3, 76, 38, 0, 415, 416, 5, 329, 0, 0, 416, 1336, 3, 78, 39, 0, 417, 418, 5, 329, 0, 0, 418, 419, 3, 36, 18, 0, 419, 420, 3, 78, 39, 0, 420, 1336, 1, 0, 0, 0, 421, 422, 5, 268, 0, 0, 422, 425, 5, 37, 0, 0, 423, 426, 3, 374, 187, 0, 424, 426, 3, 386, 193, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 1336, 1, 0, 0, 0, 427, 428, 5, 59, 0, 0, 428, 430, 3, 36, 18, 0, 429, 431, 3, 188, 94, 0, 430, 429, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 440, 3, 80, 40, 0, 433, 439, 3, 24, 12, 0, 434, 439, 3, 22, 11, 0, 435, 436, 5, 345, 0, 0, 436, 437, 7, 0, 0, 0, 437, 439, 3, 52, 26, 0, 438, 433, 1, 0, 0, 0, 438, 434, 1, 0, 0, 0, 438, 435, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 1336, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 443, 444, 5, 11, 0, 0, 444, 445, 3, 36, 18, 0, 445, 446, 3, 78, 39, 0, 446, 447, 5, 268, 0, 0, 447, 448, 7, 0, 0, 0, 448, 449, 3, 52, 26, 0, 449, 1336, 1, 0, 0, 0, 450, 451, 5, 11, 0, 0, 451, 452, 3, 36, 18, 0, 452, 453, 3, 78, 39, 0, 453, 454, 5, 268, 0, 0, 454, 455, 3, 22, 11, 0, 455, 1336, 1, 0, 0, 0, 456, 457, 5, 96, 0, 0, 457, 459, 3, 36, 18, 0, 458, 460, 3, 190, 95, 0, 459, 458, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 463, 3, 78, 39, 0, 462, 464, 7, 1, 0, 0, 463, 462, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 1336, 1, 0, 0, 0, 465, 466, 5, 272, 0, 0, 466, 469, 3, 38, 19, 0, 467, 468, 7, 2, 0, 0, 468, 470, 3, 244, 122, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 475, 1, 0, 0, 0, 471, 473, 5, 162, 0, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 3, 386, 193, 0, 475, 472, 1, 0, 0, 0, 475, 476, 1, 0, 0, 0, 476, 1336, 1, 0, 0, 0, 477, 482, 3, 14, 7, 0, 478, 479, 5, 2, 0, 0, 479, 480, 3, 336, 168, 0, 480, 481, 5, 3, 0, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 485, 1, 0, 0, 0, 484, 486, 3, 48, 24, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 492, 3, 50, 25, 0, 488, 490, 5, 20, 0, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 3, 26, 13, 0, 492, 489, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 1336, 1, 0, 0, 0, 494, 495, 5, 59, 0, 0, 495, 497, 5, 292, 0, 0, 496, 498, 3, 188, 94, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 3, 82, 41, 0, 500, 501, 5, 162, 0, 0, 501, 510, 3, 84, 42, 0, 502, 509, 3, 48, 24, 0, 503, 509, 3, 240, 120, 0, 504, 509, 3, 68, 34, 0, 505, 509, 3, 22, 11, 0, 506, 507, 5, 296, 0, 0, 507, 509, 3, 52, 26, 0, 508, 502, 1, 0, 0, 0, 508, 503, 1, 0, 0, 0, 508, 504, 1, 0, 0, 0, 508, 505, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 512, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 1336, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 518, 3, 16, 8, 0, 514, 515, 5, 2, 0, 0, 515, 516, 3, 336, 168, 0, 516, 517, 5, 3, 0, 0, 517, 519, 1, 0, 0, 0, 518, 514, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 48, 24, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 528, 3, 50, 25, 0, 524, 526, 5, 20, 0, 0, 525, 524, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 529, 3, 26, 13, 0, 528, 525, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 1336, 1, 0, 0, 0, 530, 531, 5, 13, 0, 0, 531, 532, 5, 292, 0, 0, 532, 534, 3, 84, 42, 0, 533, 535, 3, 32, 16, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 5, 55, 0, 0, 537, 545, 5, 281, 0, 0, 538, 546, 5, 195, 0, 0, 539, 540, 5, 119, 0, 0, 540, 541, 5, 50, 0, 0, 541, 546, 3, 92, 46, 0, 542, 543, 5, 119, 0, 0, 543, 544, 5, 10, 0, 0, 544, 546, 5, 50, 0, 0, 545, 538, 1, 0, 0, 0, 545, 539, 1, 0, 0, 0, 545, 542, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 1336, 1, 0, 0, 0, 547, 548, 5, 13, 0, 0, 548, 551, 5, 293, 0, 0, 549, 550, 7, 2, 0, 0, 550, 552, 3, 78, 39, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 5, 55, 0, 0, 554, 556, 5, 281, 0, 0, 555, 557, 5, 195, 0, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 1336, 1, 0, 0, 0, 558, 559, 5, 11, 0, 0, 559, 560, 5, 292, 0, 0, 560, 561, 3, 84, 42, 0, 561, 562, 5, 8, 0, 0, 562, 563, 5, 49, 0, 0, 563, 564, 3, 320, 160, 0, 564, 1336, 1, 0, 0, 0, 565, 566, 5, 11, 0, 0, 566, 567, 5, 292, 0, 0, 567, 568, 3, 84, 42, 0, 568, 569, 5, 8, 0, 0, 569, 570, 5, 50, 0, 0, 570, 571, 5, 2, 0, 0, 571, 572, 3, 318, 159, 0, 572, 573, 5, 3, 0, 0, 573, 1336, 1, 0, 0, 0, 574, 575, 5, 11, 0, 0, 575, 576, 5, 292, 0, 0, 576, 577, 3, 84, 42, 0, 577, 578, 5, 240, 0, 0, 578, 579, 5, 49, 0, 0, 579, 580, 3, 90, 45, 0, 580, 581, 5, 308, 0, 0, 581, 582, 3, 94, 47, 0, 582, 1336, 1, 0, 0, 0, 583, 584, 5, 11, 0, 0, 584, 585, 5, 292, 0, 0, 585, 586, 3, 84, 42, 0, 586, 587, 5, 96, 0, 0, 587, 589, 5, 49, 0, 0, 588, 590, 3, 190, 95, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 3, 90, 45, 0, 592, 1336, 1, 0, 0, 0, 593, 594, 5, 11, 0, 0, 594, 595, 5, 292, 0, 0, 595, 596, 3, 84, 42, 0, 596, 597, 5, 96, 0, 0, 597, 599, 5, 50, 0, 0, 598, 600, 3, 190, 95, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 2, 0, 0, 602, 603, 3, 92, 46, 0, 603, 604, 5, 3, 0, 0, 604, 1336, 1, 0, 0, 0, 605, 610, 5, 11, 0, 0, 606, 607, 5, 292, 0, 0, 607, 611, 3, 84, 42, 0, 608, 609, 5, 337, 0, 0, 609, 611, 3, 88, 44, 0, 610, 606, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 5, 240, 0, 0, 613, 614, 5, 308, 0, 0, 614, 615, 3, 244, 122, 0, 615, 1336, 1, 0, 0, 0, 616, 621, 5, 11, 0, 0, 617, 618, 5, 292, 0, 0, 618, 622, 3, 84, 42, 0, 619, 620, 5, 337, 0, 0, 620, 622, 3, 88, 44, 0, 621, 617, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 5, 268, 0, 0, 624, 625, 5, 296, 0, 0, 625, 626, 3, 52, 26, 0, 626, 1336, 1, 0, 0, 0, 627, 632, 5, 11, 0, 0, 628, 629, 5, 292, 0, 0, 629, 633, 3, 84, 42, 0, 630, 631, 5, 337, 0, 0, 631, 633, 3, 88, 44, 0, 632, 628, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 327, 0, 0, 635, 637, 5, 296, 0, 0, 636, 638, 3, 190, 95, 0, 637, 636, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 3, 52, 26, 0, 640, 1336, 1, 0, 0, 0, 641, 642, 5, 11, 0, 0, 642, 643, 5, 292, 0, 0, 643, 644, 3, 84, 42, 0, 644, 646, 7, 3, 0, 0, 645, 647, 5, 49, 0, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 3, 90, 45, 0, 649, 651, 3, 384, 192, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 1336, 1, 0, 0, 0, 652, 653, 5, 11, 0, 0, 653, 654, 5, 292, 0, 0, 654, 656, 3, 84, 42, 0, 655, 657, 3, 32, 16, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 660, 5, 39, 0, 0, 659, 661, 5, 49, 0, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 3, 90, 45, 0, 663, 665, 3, 334, 167, 0, 664, 666, 3, 312, 156, 0, 665, 664, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 1336, 1, 0, 0, 0, 667, 668, 5, 11, 0, 0, 668, 669, 5, 292, 0, 0, 669, 671, 3, 84, 42, 0, 670, 672, 3, 32, 16, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 5, 243, 0, 0, 674, 675, 5, 50, 0, 0, 675, 676, 5, 2, 0, 0, 676, 677, 3, 322, 161, 0, 677, 678, 5, 3, 0, 0, 678, 1336, 1, 0, 0, 0, 679, 680, 5, 11, 0, 0, 680, 681, 5, 292, 0, 0, 681, 683, 3, 84, 42, 0, 682, 684, 3, 32, 16, 0, 683, 682, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 5, 268, 0, 0, 686, 687, 5, 265, 0, 0, 687, 691, 3, 386, 193, 0, 688, 689, 5, 345, 0, 0, 689, 690, 5, 266, 0, 0, 690, 692, 3, 52, 26, 0, 691, 688, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 1336, 1, 0, 0, 0, 693, 694, 5, 11, 0, 0, 694, 695, 5, 292, 0, 0, 695, 697, 3, 84, 42, 0, 696, 698, 3, 32, 16, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 268, 0, 0, 700, 701, 5, 266, 0, 0, 701, 702, 3, 52, 26, 0, 702, 1336, 1, 0, 0, 0, 703, 708, 5, 11, 0, 0, 704, 705, 5, 292, 0, 0, 705, 709, 3, 84, 42, 0, 706, 707, 5, 337, 0, 0, 707, 709, 3, 88, 44, 0, 708, 704, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 712, 5, 8, 0, 0, 711, 713, 3, 188, 94, 0, 712, 711, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 715, 1, 0, 0, 0, 714, 716, 3, 30, 15, 0, 715, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 1336, 1, 0, 0, 0, 719, 720, 5, 11, 0, 0, 720, 721, 5, 292, 0, 0, 721, 722, 3, 84, 42, 0, 722, 723, 3, 32, 16, 0, 723, 724, 5, 240, 0, 0, 724, 725, 5, 308, 0, 0, 725, 726, 3, 32, 16, 0, 726, 1336, 1, 0, 0, 0, 727, 732, 5, 11, 0, 0, 728, 729, 5, 292, 0, 0, 729, 733, 3, 84, 42, 0, 730, 731, 5, 337, 0, 0, 731, 733, 3, 88, 44, 0, 732, 728, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 736, 5, 96, 0, 0, 735, 737, 3, 190, 95, 0, 736, 735, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 743, 3, 32, 16, 0, 739, 740, 5, 4, 0, 0, 740, 742, 3, 32, 16, 0, 741, 739, 1, 0, 0, 0, 742, 745, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 746, 748, 5, 229, 0, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 1336, 1, 0, 0, 0, 749, 750, 5, 11, 0, 0, 750, 751, 5, 292, 0, 0, 751, 753, 3, 84, 42, 0, 752, 754, 3, 32, 16, 0, 753, 752, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 5, 268, 0, 0, 756, 757, 3, 22, 11, 0, 757, 1336, 1, 0, 0, 0, 758, 759, 5, 11, 0, 0, 759, 760, 5, 292, 0, 0, 760, 761, 3, 84, 42, 0, 761, 762, 5, 236, 0, 0, 762, 763, 5, 218, 0, 0, 763, 1336, 1, 0, 0, 0, 764, 765, 5, 11, 0, 0, 765, 766, 5, 175, 0, 0, 766, 767, 5, 337, 0, 0, 767, 768, 3, 88, 44, 0, 768, 769, 7, 4, 0, 0, 769, 770, 5, 247, 0, 0, 770, 1336, 1, 0, 0, 0, 771, 772, 5, 11, 0, 0, 772, 773, 5, 175, 0, 0, 773, 774, 5, 337, 0, 0, 774, 775, 3, 88, 44, 0, 775, 776, 5, 268, 0, 0, 776, 777, 5, 296, 0, 0, 777, 778, 3, 52, 26, 0, 778, 1336, 1, 0, 0, 0, 779, 780, 5, 96, 0, 0, 780, 782, 5, 292, 0, 0, 781, 783, 3, 190, 95, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 786, 3, 84, 42, 0, 785, 787, 5, 229, 0, 0, 786, 785, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 1336, 1, 0, 0, 0, 788, 789, 5, 96, 0, 0, 789, 791, 5, 337, 0, 0, 790, 792, 3, 190, 95, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 1336, 3, 88, 44, 0, 794, 795, 5, 96, 0, 0, 795, 796, 5, 175, 0, 0, 796, 798, 5, 337, 0, 0, 797, 799, 3, 190, 95, 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 1336, 3, 88, 44, 0, 801, 804, 5, 59, 0, 0, 802, 803, 5, 207, 0, 0, 803, 805, 5, 243, 0, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 810, 1, 0, 0, 0, 806, 808, 5, 128, 0, 0, 807, 806, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 811, 5, 297, 0, 0, 810, 807, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 5, 337, 0, 0, 813, 815, 3, 188, 94, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 3, 86, 43, 0, 817, 819, 3, 218, 109, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 828, 1, 0, 0, 0, 820, 827, 3, 24, 12, 0, 821, 822, 5, 217, 0, 0, 822, 823, 5, 202, 0, 0, 823, 827, 3, 210, 105, 0, 824, 825, 5, 296, 0, 0, 825, 827, 3, 52, 26, 0, 826, 820, 1, 0, 0, 0, 826, 821, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 830, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 832, 5, 20, 0, 0, 832, 833, 3, 26, 13, 0, 833, 1336, 1, 0, 0, 0, 834, 837, 5, 59, 0, 0, 835, 836, 5, 207, 0, 0, 836, 838, 5, 243, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 841, 5, 128, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 297, 0, 0, 843, 844, 5, 337, 0, 0, 844, 849, 3, 86, 43, 0, 845, 846, 5, 2, 0, 0, 846, 847, 3, 332, 166, 0, 847, 848, 5, 3, 0, 0, 848, 850, 1, 0, 0, 0, 849, 845, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 854, 3, 48, 24, 0, 852, 853, 5, 206, 0, 0, 853, 855, 3, 52, 26, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 1336, 1, 0, 0, 0, 856, 857, 5, 11, 0, 0, 857, 858, 5, 337, 0, 0, 858, 860, 3, 88, 44, 0, 859, 861, 5, 20, 0, 0, 860, 859, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 3, 26, 13, 0, 863, 1336, 1, 0, 0, 0, 864, 867, 5, 59, 0, 0, 865, 866, 5, 207, 0, 0, 866, 868, 5, 243, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 5, 297, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 125, 0, 0, 873, 875, 3, 188, 94, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 3, 366, 183, 0, 877, 878, 5, 20, 0, 0, 878, 888, 3, 386, 193, 0, 879, 880, 5, 331, 0, 0, 880, 885, 3, 74, 37, 0, 881, 882, 5, 4, 0, 0, 882, 884, 3, 74, 37, 0, 883, 881, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 888, 879, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 1336, 1, 0, 0, 0, 890, 891, 5, 59, 0, 0, 891, 892, 5, 175, 0, 0, 892, 894, 5, 337, 0, 0, 893, 895, 3, 188, 94, 0, 894, 893, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 3, 86, 43, 0, 897, 899, 3, 48, 24, 0, 898, 897, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 915, 1, 0, 0, 0, 900, 901, 5, 206, 0, 0, 901, 914, 3, 52, 26, 0, 902, 903, 5, 217, 0, 0, 903, 904, 5, 31, 0, 0, 904, 914, 3, 258, 129, 0, 905, 914, 3, 20, 10, 0, 906, 914, 3, 18, 9, 0, 907, 914, 3, 240, 120, 0, 908, 914, 3, 68, 34, 0, 909, 914, 3, 22, 11, 0, 910, 914, 3, 24, 12, 0, 911, 912, 5, 296, 0, 0, 912, 914, 3, 52, 26, 0, 913, 900, 1, 0, 0, 0, 913, 902, 1, 0, 0, 0, 913, 905, 1, 0, 0, 0, 913, 906, 1, 0, 0, 0, 913, 907, 1, 0, 0, 0, 913, 908, 1, 0, 0, 0, 913, 909, 1, 0, 0, 0, 913, 910, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 914, 917, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 918, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 919, 5, 20, 0, 0, 919, 920, 3, 26, 13, 0, 920, 1336, 1, 0, 0, 0, 921, 923, 5, 96, 0, 0, 922, 924, 5, 297, 0, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 927, 5, 125, 0, 0, 926, 928, 3, 190, 95, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 1336, 3, 364, 182, 0, 930, 933, 5, 81, 0, 0, 931, 932, 5, 207, 0, 0, 932, 934, 5, 243, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 937, 5, 335, 0, 0, 936, 935, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 3, 364, 182, 0, 939, 941, 3, 316, 158, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 1, 0, 0, 0, 942, 944, 3, 330, 165, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 1336, 1, 0, 0, 0, 945, 946, 5, 96, 0, 0, 946, 947, 5, 297, 0, 0, 947, 949, 5, 335, 0, 0, 948, 950, 3, 190, 95, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 954, 1, 0, 0, 0, 951, 955, 3, 84, 42, 0, 952, 955, 3, 88, 44, 0, 953, 955, 3, 364, 182, 0, 954, 951, 1, 0, 0, 0, 954, 952, 1, 0, 0, 0, 954, 953, 1, 0, 0, 0, 955, 1336, 1, 0, 0, 0, 956, 958, 5, 106, 0, 0, 957, 959, 7, 5, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 1336, 3, 4, 2, 0, 961, 962, 5, 272, 0, 0, 962, 965, 5, 293, 0, 0, 963, 964, 7, 2, 0, 0, 964, 966, 3, 78, 39, 0, 965, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 971, 1, 0, 0, 0, 967, 969, 5, 162, 0, 0, 968, 967, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 3, 386, 193, 0, 971, 968, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 1336, 1, 0, 0, 0, 973, 974, 5, 272, 0, 0, 974, 975, 5, 292, 0, 0, 975, 978, 5, 108, 0, 0, 976, 977, 7, 2, 0, 0, 977, 979, 3, 78, 39, 0, 978, 976, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 5, 162, 0, 0, 981, 983, 3, 386, 193, 0, 982, 984, 3, 32, 16, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 1336, 1, 0, 0, 0, 985, 986, 5, 272, 0, 0, 986, 987, 5, 296, 0, 0, 987, 992, 3, 84, 42, 0, 988, 989, 5, 2, 0, 0, 989, 990, 3, 56, 28, 0, 990, 991, 5, 3, 0, 0, 991, 993, 1, 0, 0, 0, 992, 988, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 1336, 1, 0, 0, 0, 994, 995, 5, 272, 0, 0, 995, 996, 5, 50, 0, 0, 996, 997, 7, 2, 0, 0, 997, 1000, 3, 84, 42, 0, 998, 999, 7, 2, 0, 0, 999, 1001, 3, 78, 39, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1336, 1, 0, 0, 0, 1002, 1003, 5, 272, 0, 0, 1003, 1006, 5, 338, 0, 0, 1004, 1005, 7, 2, 0, 0, 1005, 1007, 3, 78, 39, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1012, 1, 0, 0, 0, 1008, 1010, 5, 162, 0, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 3, 386, 193, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1336, 1, 0, 0, 0, 1014, 1015, 5, 272, 0, 0, 1015, 1016, 5, 218, 0, 0, 1016, 1018, 3, 84, 42, 0, 1017, 1019, 3, 32, 16, 0, 1018, 1017, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1336, 1, 0, 0, 0, 1020, 1022, 5, 272, 0, 0, 1021, 1023, 3, 146, 73, 0, 1022, 1021, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1027, 5, 126, 0, 0, 1025, 1026, 7, 2, 0, 0, 1026, 1028, 3, 78, 39, 0, 1027, 1025, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1036, 1, 0, 0, 0, 1029, 1031, 5, 162, 0, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1034, 1, 0, 0, 0, 1032, 1035, 3, 244, 122, 0, 1033, 1035, 3, 386, 193, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1033, 1, 0, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1030, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1336, 1, 0, 0, 0, 1038, 1039, 5, 272, 0, 0, 1039, 1040, 5, 59, 0, 0, 1040, 1041, 5, 292, 0, 0, 1041, 1044, 3, 84, 42, 0, 1042, 1043, 5, 20, 0, 0, 1043, 1045, 5, 265, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1336, 1, 0, 0, 0, 1046, 1047, 5, 272, 0, 0, 1047, 1048, 5, 62, 0, 0, 1048, 1336, 3, 36, 18, 0, 1049, 1050, 5, 272, 0, 0, 1050, 1055, 5, 38, 0, 0, 1051, 1053, 5, 162, 0, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1056, 3, 386, 193, 0, 1055, 1052, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1336, 1, 0, 0, 0, 1057, 1058, 5, 272, 0, 0, 1058, 1059, 5, 175, 0, 0, 1059, 1062, 5, 338, 0, 0, 1060, 1061, 7, 2, 0, 0, 1061, 1063, 3, 78, 39, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1068, 1, 0, 0, 0, 1064, 1066, 5, 162, 0, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1069, 3, 386, 193, 0, 1068, 1065, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1336, 1, 0, 0, 0, 1070, 1071, 5, 272, 0, 0, 1071, 1072, 5, 59, 0, 0, 1072, 1073, 5, 175, 0, 0, 1073, 1074, 5, 337, 0, 0, 1074, 1077, 3, 88, 44, 0, 1075, 1076, 5, 20, 0, 0, 1076, 1078, 5, 265, 0, 0, 1077, 1075, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1336, 1, 0, 0, 0, 1079, 1080, 7, 6, 0, 0, 1080, 1082, 5, 125, 0, 0, 1081, 1083, 5, 108, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1336, 3, 40, 20, 0, 1085, 1086, 7, 6, 0, 0, 1086, 1088, 5, 72, 0, 0, 1087, 1089, 5, 108, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1336, 3, 78, 39, 0, 1091, 1093, 7, 6, 0, 0, 1092, 1094, 5, 292, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 1, 0, 0, 0, 1095, 1097, 7, 7, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 84, 42, 0, 1099, 1101, 3, 32, 16, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1104, 3, 42, 21, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1336, 1, 0, 0, 0, 1105, 1107, 7, 6, 0, 0, 1106, 1108, 5, 231, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1336, 3, 26, 13, 0, 1110, 1111, 5, 51, 0, 0, 1111, 1112, 5, 202, 0, 0, 1112, 1113, 3, 36, 18, 0, 1113, 1114, 3, 78, 39, 0, 1114, 1115, 5, 153, 0, 0, 1115, 1116, 3, 388, 194, 0, 1116, 1336, 1, 0, 0, 0, 1117, 1118, 5, 51, 0, 0, 1118, 1119, 5, 202, 0, 0, 1119, 1120, 5, 292, 0, 0, 1120, 1121, 3, 84, 42, 0, 1121, 1122, 5, 153, 0, 0, 1122, 1123, 3, 388, 194, 0, 1123, 1336, 1, 0, 0, 0, 1124, 1125, 5, 239, 0, 0, 1125, 1126, 5, 292, 0, 0, 1126, 1336, 3, 84, 42, 0, 1127, 1128, 5, 239, 0, 0, 1128, 1129, 5, 125, 0, 0, 1129, 1336, 3, 364, 182, 0, 1130, 1138, 5, 239, 0, 0, 1131, 1139, 3, 386, 193, 0, 1132, 1134, 9, 0, 0, 0, 1133, 1132, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1131, 1, 0, 0, 0, 1138, 1135, 1, 0, 0, 0, 1139, 1336, 1, 0, 0, 0, 1140, 1141, 5, 239, 0, 0, 1141, 1142, 5, 175, 0, 0, 1142, 1143, 5, 337, 0, 0, 1143, 1336, 3, 88, 44, 0, 1144, 1146, 5, 33, 0, 0, 1145, 1147, 5, 159, 0, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 5, 292, 0, 0, 1149, 1152, 3, 84, 42, 0, 1150, 1151, 5, 206, 0, 0, 1151, 1153, 3, 52, 26, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1158, 1, 0, 0, 0, 1154, 1156, 5, 20, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 26, 13, 0, 1158, 1155, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1336, 1, 0, 0, 0, 1160, 1161, 5, 321, 0, 0, 1161, 1163, 5, 292, 0, 0, 1162, 1164, 3, 190, 95, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1336, 3, 84, 42, 0, 1166, 1167, 5, 43, 0, 0, 1167, 1336, 5, 33, 0, 0, 1168, 1169, 5, 167, 0, 0, 1169, 1171, 5, 70, 0, 0, 1170, 1172, 5, 168, 0, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 5, 145, 0, 0, 1174, 1176, 3, 386, 193, 0, 1175, 1177, 5, 215, 0, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 5, 152, 0, 0, 1179, 1180, 5, 292, 0, 0, 1180, 1182, 3, 84, 42, 0, 1181, 1183, 3, 32, 16, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1336, 1, 0, 0, 0, 1184, 1185, 5, 316, 0, 0, 1185, 1186, 5, 292, 0, 0, 1186, 1188, 3, 84, 42, 0, 1187, 1189, 3, 32, 16, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1336, 1, 0, 0, 0, 1190, 1192, 5, 187, 0, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 5, 241, 0, 0, 1194, 1195, 5, 292, 0, 0, 1195, 1198, 3, 84, 42, 0, 1196, 1197, 7, 8, 0, 0, 1197, 1199, 5, 218, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1336, 1, 0, 0, 0, 1200, 1201, 7, 9, 0, 0, 1201, 1205, 3, 374, 187, 0, 1202, 1204, 9, 0, 0, 0, 1203, 1202, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1336, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1209, 5, 268, 0, 0, 1209, 1213, 5, 252, 0, 0, 1210, 1212, 9, 0, 0, 0, 1211, 1210, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1336, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1217, 5, 268, 0, 0, 1217, 1218, 5, 300, 0, 0, 1218, 1219, 5, 349, 0, 0, 1219, 1336, 3, 296, 148, 0, 1220, 1221, 5, 268, 0, 0, 1221, 1222, 5, 300, 0, 0, 1222, 1223, 5, 349, 0, 0, 1223, 1336, 3, 6, 3, 0, 1224, 1225, 5, 268, 0, 0, 1225, 1226, 5, 300, 0, 0, 1226, 1230, 5, 349, 0, 0, 1227, 1229, 9, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1231, 1336, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1234, 5, 268, 0, 0, 1234, 1235, 7, 10, 0, 0, 1235, 1336, 3, 132, 66, 0, 1236, 1237, 5, 268, 0, 0, 1237, 1238, 7, 10, 0, 0, 1238, 1239, 5, 2, 0, 0, 1239, 1240, 3, 242, 121, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1242, 5, 351, 0, 0, 1242, 1243, 5, 2, 0, 0, 1243, 1244, 3, 26, 13, 0, 1244, 1245, 5, 3, 0, 0, 1245, 1336, 1, 0, 0, 0, 1246, 1247, 5, 268, 0, 0, 1247, 1248, 3, 8, 4, 0, 1248, 1249, 5, 351, 0, 0, 1249, 1250, 3, 10, 5, 0, 1250, 1336, 1, 0, 0, 0, 1251, 1252, 5, 268, 0, 0, 1252, 1260, 3, 8, 4, 0, 1253, 1257, 5, 351, 0, 0, 1254, 1256, 9, 0, 0, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1253, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1336, 1, 0, 0, 0, 1262, 1266, 5, 268, 0, 0, 1263, 1265, 9, 0, 0, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1270, 5, 351, 0, 0, 1270, 1336, 3, 10, 5, 0, 1271, 1275, 5, 268, 0, 0, 1272, 1274, 9, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1277, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1336, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1279, 5, 244, 0, 0, 1279, 1336, 3, 8, 4, 0, 1280, 1284, 5, 244, 0, 0, 1281, 1283, 9, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1286, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1336, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1288, 5, 59, 0, 0, 1288, 1290, 5, 142, 0, 0, 1289, 1291, 3, 188, 94, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 3, 374, 187, 0, 1293, 1295, 5, 202, 0, 0, 1294, 1296, 5, 292, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1300, 3, 84, 42, 0, 1298, 1299, 5, 331, 0, 0, 1299, 1301, 3, 374, 187, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 5, 2, 0, 0, 1303, 1304, 3, 246, 123, 0, 1304, 1307, 5, 3, 0, 0, 1305, 1306, 5, 206, 0, 0, 1306, 1308, 3, 52, 26, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1336, 1, 0, 0, 0, 1309, 1310, 5, 96, 0, 0, 1310, 1312, 5, 142, 0, 0, 1311, 1313, 3, 190, 95, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 3, 374, 187, 0, 1315, 1317, 5, 202, 0, 0, 1316, 1318, 5, 292, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 84, 42, 0, 1320, 1336, 1, 0, 0, 0, 1321, 1322, 5, 204, 0, 0, 1322, 1324, 3, 84, 42, 0, 1323, 1325, 3, 136, 68, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 3, 352, 176, 0, 1327, 1336, 1, 0, 0, 0, 1328, 1332, 3, 12, 6, 0, 1329, 1331, 9, 0, 0, 0, 1330, 1329, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 410, 1, 0, 0, 0, 1335, 412, 1, 0, 0, 0, 1335, 415, 1, 0, 0, 0, 1335, 417, 1, 0, 0, 0, 1335, 421, 1, 0, 0, 0, 1335, 427, 1, 0, 0, 0, 1335, 443, 1, 0, 0, 0, 1335, 450, 1, 0, 0, 0, 1335, 456, 1, 0, 0, 0, 1335, 465, 1, 0, 0, 0, 1335, 477, 1, 0, 0, 0, 1335, 494, 1, 0, 0, 0, 1335, 513, 1, 0, 0, 0, 1335, 530, 1, 0, 0, 0, 1335, 547, 1, 0, 0, 0, 1335, 558, 1, 0, 0, 0, 1335, 565, 1, 0, 0, 0, 1335, 574, 1, 0, 0, 0, 1335, 583, 1, 0, 0, 0, 1335, 593, 1, 0, 0, 0, 1335, 605, 1, 0, 0, 0, 1335, 616, 1, 0, 0, 0, 1335, 627, 1, 0, 0, 0, 1335, 641, 1, 0, 0, 0, 1335, 652, 1, 0, 0, 0, 1335, 667, 1, 0, 0, 0, 1335, 679, 1, 0, 0, 0, 1335, 693, 1, 0, 0, 0, 1335, 703, 1, 0, 0, 0, 1335, 719, 1, 0, 0, 0, 1335, 727, 1, 0, 0, 0, 1335, 749, 1, 0, 0, 0, 1335, 758, 1, 0, 0, 0, 1335, 764, 1, 0, 0, 0, 1335, 771, 1, 0, 0, 0, 1335, 779, 1, 0, 0, 0, 1335, 788, 1, 0, 0, 0, 1335, 794, 1, 0, 0, 0, 1335, 801, 1, 0, 0, 0, 1335, 834, 1, 0, 0, 0, 1335, 856, 1, 0, 0, 0, 1335, 864, 1, 0, 0, 0, 1335, 890, 1, 0, 0, 0, 1335, 921, 1, 0, 0, 0, 1335, 930, 1, 0, 0, 0, 1335, 945, 1, 0, 0, 0, 1335, 956, 1, 0, 0, 0, 1335, 961, 1, 0, 0, 0, 1335, 973, 1, 0, 0, 0, 1335, 985, 1, 0, 0, 0, 1335, 994, 1, 0, 0, 0, 1335, 1002, 1, 0, 0, 0, 1335, 1014, 1, 0, 0, 0, 1335, 1020, 1, 0, 0, 0, 1335, 1038, 1, 0, 0, 0, 1335, 1046, 1, 0, 0, 0, 1335, 1049, 1, 0, 0, 0, 1335, 1057, 1, 0, 0, 0, 1335, 1070, 1, 0, 0, 0, 1335, 1079, 1, 0, 0, 0, 1335, 1085, 1, 0, 0, 0, 1335, 1091, 1, 0, 0, 0, 1335, 1105, 1, 0, 0, 0, 1335, 1110, 1, 0, 0, 0, 1335, 1117, 1, 0, 0, 0, 1335, 1124, 1, 0, 0, 0, 1335, 1127, 1, 0, 0, 0, 1335, 1130, 1, 0, 0, 0, 1335, 1140, 1, 0, 0, 0, 1335, 1144, 1, 0, 0, 0, 1335, 1160, 1, 0, 0, 0, 1335, 1166, 1, 0, 0, 0, 1335, 1168, 1, 0, 0, 0, 1335, 1184, 1, 0, 0, 0, 1335, 1191, 1, 0, 0, 0, 1335, 1200, 1, 0, 0, 0, 1335, 1208, 1, 0, 0, 0, 1335, 1216, 1, 0, 0, 0, 1335, 1220, 1, 0, 0, 0, 1335, 1224, 1, 0, 0, 0, 1335, 1233, 1, 0, 0, 0, 1335, 1236, 1, 0, 0, 0, 1335, 1246, 1, 0, 0, 0, 1335, 1251, 1, 0, 0, 0, 1335, 1262, 1, 0, 0, 0, 1335, 1271, 1, 0, 0, 0, 1335, 1278, 1, 0, 0, 0, 1335, 1280, 1, 0, 0, 0, 1335, 1287, 1, 0, 0, 0, 1335, 1309, 1, 0, 0, 0, 1335, 1321, 1, 0, 0, 0, 1335, 1328, 1, 0, 0, 0, 1336, 5, 1, 0, 0, 0, 1337, 1340, 3, 386, 193, 0, 1338, 1340, 5, 168, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1340, 7, 1, 0, 0, 0, 1341, 1342, 3, 378, 189, 0, 1342, 9, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 11, 1, 0, 0, 0, 1345, 1346, 5, 59, 0, 0, 1346, 1514, 5, 252, 0, 0, 1347, 1348, 5, 96, 0, 0, 1348, 1514, 5, 252, 0, 0, 1349, 1351, 5, 129, 0, 0, 1350, 1352, 5, 252, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1514, 1, 0, 0, 0, 1353, 1355, 5, 248, 0, 0, 1354, 1356, 5, 252, 0, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1514, 1, 0, 0, 0, 1357, 1358, 5, 272, 0, 0, 1358, 1514, 5, 129, 0, 0, 1359, 1360, 5, 272, 0, 0, 1360, 1362, 5, 252, 0, 0, 1361, 1363, 5, 129, 0, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1514, 1, 0, 0, 0, 1364, 1365, 5, 272, 0, 0, 1365, 1514, 5, 227, 0, 0, 1366, 1367, 5, 272, 0, 0, 1367, 1514, 5, 253, 0, 0, 1368, 1369, 5, 272, 0, 0, 1369, 1370, 5, 62, 0, 0, 1370, 1514, 5, 253, 0, 0, 1371, 1372, 5, 107, 0, 0, 1372, 1514, 5, 292, 0, 0, 1373, 1374, 5, 139, 0, 0, 1374, 1514, 5, 292, 0, 0, 1375, 1376, 5, 272, 0, 0, 1376, 1514, 5, 54, 0, 0, 1377, 1378, 5, 272, 0, 0, 1378, 1379, 5, 59, 0, 0, 1379, 1514, 5, 292, 0, 0, 1380, 1381, 5, 272, 0, 0, 1381, 1514, 5, 312, 0, 0, 1382, 1383, 5, 272, 0, 0, 1383, 1514, 5, 143, 0, 0, 1384, 1385, 5, 272, 0, 0, 1385, 1514, 5, 171, 0, 0, 1386, 1387, 5, 59, 0, 0, 1387, 1514, 5, 142, 0, 0, 1388, 1389, 5, 96, 0, 0, 1389, 1514, 5, 142, 0, 0, 1390, 1391, 5, 11, 0, 0, 1391, 1514, 5, 142, 0, 0, 1392, 1393, 5, 170, 0, 0, 1393, 1514, 5, 292, 0, 0, 1394, 1395, 5, 170, 0, 0, 1395, 1514, 5, 72, 0, 0, 1396, 1397, 5, 325, 0, 0, 1397, 1514, 5, 292, 0, 0, 1398, 1399, 5, 325, 0, 0, 1399, 1514, 5, 72, 0, 0, 1400, 1401, 5, 59, 0, 0, 1401, 1402, 5, 297, 0, 0, 1402, 1514, 5, 174, 0, 0, 1403, 1404, 5, 96, 0, 0, 1404, 1405, 5, 297, 0, 0, 1405, 1514, 5, 174, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 292, 0, 0, 1408, 1409, 3, 84, 42, 0, 1409, 1410, 5, 196, 0, 0, 1410, 1411, 5, 45, 0, 0, 1411, 1514, 1, 0, 0, 0, 1412, 1413, 5, 11, 0, 0, 1413, 1414, 5, 292, 0, 0, 1414, 1415, 3, 84, 42, 0, 1415, 1416, 5, 45, 0, 0, 1416, 1417, 5, 31, 0, 0, 1417, 1514, 1, 0, 0, 0, 1418, 1419, 5, 11, 0, 0, 1419, 1420, 5, 292, 0, 0, 1420, 1421, 3, 84, 42, 0, 1421, 1422, 5, 196, 0, 0, 1422, 1423, 5, 278, 0, 0, 1423, 1514, 1, 0, 0, 0, 1424, 1425, 5, 11, 0, 0, 1425, 1426, 5, 292, 0, 0, 1426, 1427, 3, 84, 42, 0, 1427, 1428, 5, 274, 0, 0, 1428, 1429, 5, 31, 0, 0, 1429, 1514, 1, 0, 0, 0, 1430, 1431, 5, 11, 0, 0, 1431, 1432, 5, 292, 0, 0, 1432, 1433, 3, 84, 42, 0, 1433, 1434, 5, 196, 0, 0, 1434, 1435, 5, 274, 0, 0, 1435, 1514, 1, 0, 0, 0, 1436, 1437, 5, 11, 0, 0, 1437, 1438, 5, 292, 0, 0, 1438, 1439, 3, 84, 42, 0, 1439, 1440, 5, 196, 0, 0, 1440, 1441, 5, 282, 0, 0, 1441, 1442, 5, 20, 0, 0, 1442, 1443, 5, 89, 0, 0, 1443, 1514, 1, 0, 0, 0, 1444, 1445, 5, 11, 0, 0, 1445, 1446, 5, 292, 0, 0, 1446, 1447, 3, 84, 42, 0, 1447, 1448, 5, 268, 0, 0, 1448, 1449, 5, 274, 0, 0, 1449, 1450, 5, 169, 0, 0, 1450, 1514, 1, 0, 0, 0, 1451, 1452, 5, 11, 0, 0, 1452, 1453, 5, 292, 0, 0, 1453, 1454, 3, 84, 42, 0, 1454, 1455, 5, 103, 0, 0, 1455, 1456, 5, 216, 0, 0, 1456, 1514, 1, 0, 0, 0, 1457, 1458, 5, 11, 0, 0, 1458, 1459, 5, 292, 0, 0, 1459, 1460, 3, 84, 42, 0, 1460, 1461, 5, 18, 0, 0, 1461, 1462, 5, 216, 0, 0, 1462, 1514, 1, 0, 0, 0, 1463, 1464, 5, 11, 0, 0, 1464, 1465, 5, 292, 0, 0, 1465, 1466, 3, 84, 42, 0, 1466, 1467, 5, 319, 0, 0, 1467, 1468, 5, 216, 0, 0, 1468, 1514, 1, 0, 0, 0, 1469, 1470, 5, 11, 0, 0, 1470, 1471, 5, 292, 0, 0, 1471, 1472, 3, 84, 42, 0, 1472, 1473, 5, 309, 0, 0, 1473, 1514, 1, 0, 0, 0, 1474, 1475, 5, 11, 0, 0, 1475, 1476, 5, 292, 0, 0, 1476, 1478, 3, 84, 42, 0, 1477, 1479, 3, 32, 16, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 5, 53, 0, 0, 1481, 1514, 1, 0, 0, 0, 1482, 1483, 5, 11, 0, 0, 1483, 1484, 5, 292, 0, 0, 1484, 1486, 3, 84, 42, 0, 1485, 1487, 3, 32, 16, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 5, 56, 0, 0, 1489, 1514, 1, 0, 0, 0, 1490, 1491, 5, 11, 0, 0, 1491, 1492, 5, 292, 0, 0, 1492, 1494, 3, 84, 42, 0, 1493, 1495, 3, 32, 16, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 5, 268, 0, 0, 1497, 1498, 5, 115, 0, 0, 1498, 1514, 1, 0, 0, 0, 1499, 1500, 5, 11, 0, 0, 1500, 1501, 5, 292, 0, 0, 1501, 1503, 3, 84, 42, 0, 1502, 1504, 3, 32, 16, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 5, 243, 0, 0, 1506, 1507, 5, 50, 0, 0, 1507, 1514, 1, 0, 0, 0, 1508, 1509, 5, 280, 0, 0, 1509, 1514, 5, 311, 0, 0, 1510, 1514, 5, 52, 0, 0, 1511, 1514, 5, 254, 0, 0, 1512, 1514, 5, 88, 0, 0, 1513, 1345, 1, 0, 0, 0, 1513, 1347, 1, 0, 0, 0, 1513, 1349, 1, 0, 0, 0, 1513, 1353, 1, 0, 0, 0, 1513, 1357, 1, 0, 0, 0, 1513, 1359, 1, 0, 0, 0, 1513, 1364, 1, 0, 0, 0, 1513, 1366, 1, 0, 0, 0, 1513, 1368, 1, 0, 0, 0, 1513, 1371, 1, 0, 0, 0, 1513, 1373, 1, 0, 0, 0, 1513, 1375, 1, 0, 0, 0, 1513, 1377, 1, 0, 0, 0, 1513, 1380, 1, 0, 0, 0, 1513, 1382, 1, 0, 0, 0, 1513, 1384, 1, 0, 0, 0, 1513, 1386, 1, 0, 0, 0, 1513, 1388, 1, 0, 0, 0, 1513, 1390, 1, 0, 0, 0, 1513, 1392, 1, 0, 0, 0, 1513, 1394, 1, 0, 0, 0, 1513, 1396, 1, 0, 0, 0, 1513, 1398, 1, 0, 0, 0, 1513, 1400, 1, 0, 0, 0, 1513, 1403, 1, 0, 0, 0, 1513, 1406, 1, 0, 0, 0, 1513, 1412, 1, 0, 0, 0, 1513, 1418, 1, 0, 0, 0, 1513, 1424, 1, 0, 0, 0, 1513, 1430, 1, 0, 0, 0, 1513, 1436, 1, 0, 0, 0, 1513, 1444, 1, 0, 0, 0, 1513, 1451, 1, 0, 0, 0, 1513, 1457, 1, 0, 0, 0, 1513, 1463, 1, 0, 0, 0, 1513, 1469, 1, 0, 0, 0, 1513, 1474, 1, 0, 0, 0, 1513, 1482, 1, 0, 0, 0, 1513, 1490, 1, 0, 0, 0, 1513, 1499, 1, 0, 0, 0, 1513, 1508, 1, 0, 0, 0, 1513, 1510, 1, 0, 0, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 13, 1, 0, 0, 0, 1515, 1517, 5, 59, 0, 0, 1516, 1518, 5, 297, 0, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1521, 5, 109, 0, 0, 1520, 1519, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1524, 5, 292, 0, 0, 1523, 1525, 3, 188, 94, 0, 1524, 1523, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 3, 82, 41, 0, 1527, 15, 1, 0, 0, 0, 1528, 1529, 5, 59, 0, 0, 1529, 1531, 5, 207, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 5, 243, 0, 0, 1533, 1534, 5, 292, 0, 0, 1534, 1535, 3, 82, 41, 0, 1535, 17, 1, 0, 0, 0, 1536, 1537, 5, 45, 0, 0, 1537, 1538, 5, 31, 0, 0, 1538, 1542, 3, 210, 105, 0, 1539, 1540, 5, 278, 0, 0, 1540, 1541, 5, 31, 0, 0, 1541, 1543, 3, 214, 107, 0, 1542, 1539, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 5, 152, 0, 0, 1545, 1546, 5, 381, 0, 0, 1546, 1547, 5, 30, 0, 0, 1547, 19, 1, 0, 0, 0, 1548, 1549, 5, 274, 0, 0, 1549, 1550, 5, 31, 0, 0, 1550, 1551, 3, 210, 105, 0, 1551, 1554, 5, 202, 0, 0, 1552, 1555, 3, 64, 32, 0, 1553, 1555, 3, 66, 33, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1553, 1, 0, 0, 0, 1555, 1559, 1, 0, 0, 0, 1556, 1557, 5, 282, 0, 0, 1557, 1558, 5, 20, 0, 0, 1558, 1560, 5, 89, 0, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 21, 1, 0, 0, 0, 1561, 1562, 5, 169, 0, 0, 1562, 1563, 3, 386, 193, 0, 1563, 23, 1, 0, 0, 0, 1564, 1565, 5, 51, 0, 0, 1565, 1566, 3, 386, 193, 0, 1566, 25, 1, 0, 0, 0, 1567, 1569, 3, 44, 22, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 3, 102, 51, 0, 1571, 1572, 3, 98, 49, 0, 1572, 27, 1, 0, 0, 0, 1573, 1574, 5, 147, 0, 0, 1574, 1576, 5, 215, 0, 0, 1575, 1577, 5, 292, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1583, 3, 84, 42, 0, 1579, 1581, 3, 32, 16, 0, 1580, 1582, 3, 188, 94, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1584, 1, 0, 0, 0, 1583, 1579, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1591, 1, 0, 0, 0, 1585, 1586, 5, 31, 0, 0, 1586, 1592, 5, 188, 0, 0, 1587, 1588, 5, 2, 0, 0, 1588, 1589, 3, 92, 46, 0, 1589, 1590, 5, 3, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1585, 1, 0, 0, 0, 1591, 1587, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1650, 1, 0, 0, 0, 1593, 1594, 5, 147, 0, 0, 1594, 1596, 5, 152, 0, 0, 1595, 1597, 5, 292, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1600, 3, 84, 42, 0, 1599, 1601, 3, 32, 16, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1603, 1, 0, 0, 0, 1602, 1604, 3, 188, 94, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1611, 1, 0, 0, 0, 1605, 1606, 5, 31, 0, 0, 1606, 1612, 5, 188, 0, 0, 1607, 1608, 5, 2, 0, 0, 1608, 1609, 3, 92, 46, 0, 1609, 1610, 5, 3, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1605, 1, 0, 0, 0, 1611, 1607, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1650, 1, 0, 0, 0, 1613, 1614, 5, 147, 0, 0, 1614, 1616, 5, 152, 0, 0, 1615, 1617, 5, 292, 0, 0, 1616, 1615, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 3, 84, 42, 0, 1619, 1620, 5, 243, 0, 0, 1620, 1621, 3, 136, 68, 0, 1621, 1650, 1, 0, 0, 0, 1622, 1623, 5, 147, 0, 0, 1623, 1625, 5, 215, 0, 0, 1624, 1626, 5, 168, 0, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1628, 5, 90, 0, 0, 1628, 1630, 3, 386, 193, 0, 1629, 1631, 3, 240, 120, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 1, 0, 0, 0, 1632, 1634, 3, 68, 34, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1650, 1, 0, 0, 0, 1635, 1636, 5, 147, 0, 0, 1636, 1638, 5, 215, 0, 0, 1637, 1639, 5, 168, 0, 0, 1638, 1637, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 5, 90, 0, 0, 1641, 1643, 3, 386, 193, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1647, 3, 48, 24, 0, 1645, 1646, 5, 206, 0, 0, 1646, 1648, 3, 52, 26, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1650, 1, 0, 0, 0, 1649, 1573, 1, 0, 0, 0, 1649, 1593, 1, 0, 0, 0, 1649, 1613, 1, 0, 0, 0, 1649, 1622, 1, 0, 0, 0, 1649, 1635, 1, 0, 0, 0, 1650, 29, 1, 0, 0, 0, 1651, 1653, 3, 32, 16, 0, 1652, 1654, 3, 22, 11, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 31, 1, 0, 0, 0, 1655, 1656, 5, 216, 0, 0, 1656, 1657, 5, 2, 0, 0, 1657, 1662, 3, 34, 17, 0, 1658, 1659, 5, 4, 0, 0, 1659, 1661, 3, 34, 17, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1666, 5, 3, 0, 0, 1666, 33, 1, 0, 0, 0, 1667, 1670, 3, 374, 187, 0, 1668, 1669, 5, 351, 0, 0, 1669, 1671, 3, 286, 143, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1677, 1, 0, 0, 0, 1672, 1673, 3, 374, 187, 0, 1673, 1674, 5, 351, 0, 0, 1674, 1675, 5, 82, 0, 0, 1675, 1677, 1, 0, 0, 0, 1676, 1667, 1, 0, 0, 0, 1676, 1672, 1, 0, 0, 0, 1677, 35, 1, 0, 0, 0, 1678, 1679, 7, 11, 0, 0, 1679, 37, 1, 0, 0, 0, 1680, 1681, 7, 12, 0, 0, 1681, 39, 1, 0, 0, 0, 1682, 1688, 3, 96, 48, 0, 1683, 1688, 3, 386, 193, 0, 1684, 1688, 3, 288, 144, 0, 1685, 1688, 3, 290, 145, 0, 1686, 1688, 3, 292, 146, 0, 1687, 1682, 1, 0, 0, 0, 1687, 1683, 1, 0, 0, 0, 1687, 1684, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1687, 1686, 1, 0, 0, 0, 1688, 41, 1, 0, 0, 0, 1689, 1694, 3, 374, 187, 0, 1690, 1691, 5, 5, 0, 0, 1691, 1693, 3, 374, 187, 0, 1692, 1690, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 43, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1697, 1698, 5, 345, 0, 0, 1698, 1703, 3, 46, 23, 0, 1699, 1700, 5, 4, 0, 0, 1700, 1702, 3, 46, 23, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 45, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1708, 3, 370, 185, 0, 1707, 1709, 3, 210, 105, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1711, 1, 0, 0, 0, 1710, 1712, 5, 20, 0, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 5, 2, 0, 0, 1714, 1715, 3, 26, 13, 0, 1715, 1716, 5, 3, 0, 0, 1716, 47, 1, 0, 0, 0, 1717, 1718, 5, 331, 0, 0, 1718, 1719, 3, 244, 122, 0, 1719, 49, 1, 0, 0, 0, 1720, 1721, 5, 206, 0, 0, 1721, 1734, 3, 60, 30, 0, 1722, 1723, 5, 217, 0, 0, 1723, 1724, 5, 31, 0, 0, 1724, 1734, 3, 258, 129, 0, 1725, 1734, 3, 20, 10, 0, 1726, 1734, 3, 18, 9, 0, 1727, 1734, 3, 240, 120, 0, 1728, 1734, 3, 68, 34, 0, 1729, 1734, 3, 22, 11, 0, 1730, 1734, 3, 24, 12, 0, 1731, 1732, 5, 296, 0, 0, 1732, 1734, 3, 52, 26, 0, 1733, 1720, 1, 0, 0, 0, 1733, 1722, 1, 0, 0, 0, 1733, 1725, 1, 0, 0, 0, 1733, 1726, 1, 0, 0, 0, 1733, 1727, 1, 0, 0, 0, 1733, 1728, 1, 0, 0, 0, 1733, 1729, 1, 0, 0, 0, 1733, 1730, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1737, 1, 0, 0, 0, 1735, 1733, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 51, 1, 0, 0, 0, 1737, 1735, 1, 0, 0, 0, 1738, 1739, 5, 2, 0, 0, 1739, 1744, 3, 54, 27, 0, 1740, 1741, 5, 4, 0, 0, 1741, 1743, 3, 54, 27, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1746, 1, 0, 0, 0, 1744, 1742, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1747, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1748, 5, 3, 0, 0, 1748, 53, 1, 0, 0, 0, 1749, 1754, 3, 56, 28, 0, 1750, 1752, 5, 351, 0, 0, 1751, 1750, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 3, 58, 29, 0, 1754, 1751, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 55, 1, 0, 0, 0, 1756, 1761, 3, 374, 187, 0, 1757, 1758, 5, 5, 0, 0, 1758, 1760, 3, 374, 187, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1766, 3, 386, 193, 0, 1765, 1756, 1, 0, 0, 0, 1765, 1764, 1, 0, 0, 0, 1766, 57, 1, 0, 0, 0, 1767, 1772, 5, 381, 0, 0, 1768, 1772, 5, 383, 0, 0, 1769, 1772, 3, 294, 147, 0, 1770, 1772, 3, 386, 193, 0, 1771, 1767, 1, 0, 0, 0, 1771, 1768, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1774, 5, 2, 0, 0, 1774, 1779, 3, 62, 31, 0, 1775, 1776, 5, 4, 0, 0, 1776, 1778, 3, 62, 31, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1783, 5, 3, 0, 0, 1783, 61, 1, 0, 0, 0, 1784, 1789, 3, 56, 28, 0, 1785, 1787, 5, 351, 0, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1790, 3, 266, 133, 0, 1789, 1786, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 63, 1, 0, 0, 0, 1791, 1792, 5, 2, 0, 0, 1792, 1797, 3, 286, 143, 0, 1793, 1794, 5, 4, 0, 0, 1794, 1796, 3, 286, 143, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1801, 5, 3, 0, 0, 1801, 65, 1, 0, 0, 0, 1802, 1803, 5, 2, 0, 0, 1803, 1808, 3, 64, 32, 0, 1804, 1805, 5, 4, 0, 0, 1805, 1807, 3, 64, 32, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1810, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1812, 5, 3, 0, 0, 1812, 67, 1, 0, 0, 0, 1813, 1814, 5, 282, 0, 0, 1814, 1815, 5, 20, 0, 0, 1815, 1820, 3, 70, 35, 0, 1816, 1817, 5, 282, 0, 0, 1817, 1818, 5, 31, 0, 0, 1818, 1820, 3, 72, 36, 0, 1819, 1813, 1, 0, 0, 0, 1819, 1816, 1, 0, 0, 0, 1820, 69, 1, 0, 0, 0, 1821, 1822, 5, 146, 0, 0, 1822, 1823, 3, 386, 193, 0, 1823, 1824, 5, 211, 0, 0, 1824, 1825, 3, 386, 193, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1828, 3, 374, 187, 0, 1827, 1821, 1, 0, 0, 0, 1827, 1826, 1, 0, 0, 0, 1828, 71, 1, 0, 0, 0, 1829, 1833, 3, 386, 193, 0, 1830, 1831, 5, 345, 0, 0, 1831, 1832, 5, 266, 0, 0, 1832, 1834, 3, 52, 26, 0, 1833, 1830, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1836, 3, 374, 187, 0, 1836, 1837, 3, 386, 193, 0, 1837, 75, 1, 0, 0, 0, 1838, 1839, 3, 28, 14, 0, 1839, 1840, 3, 26, 13, 0, 1840, 1895, 1, 0, 0, 0, 1841, 1843, 3, 144, 72, 0, 1842, 1844, 3, 100, 50, 0, 1843, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1895, 1, 0, 0, 0, 1847, 1848, 5, 84, 0, 0, 1848, 1849, 5, 123, 0, 0, 1849, 1850, 3, 84, 42, 0, 1850, 1852, 3, 238, 119, 0, 1851, 1853, 3, 136, 68, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1895, 1, 0, 0, 0, 1854, 1855, 5, 328, 0, 0, 1855, 1856, 3, 84, 42, 0, 1856, 1857, 3, 238, 119, 0, 1857, 1859, 3, 118, 59, 0, 1858, 1860, 3, 136, 68, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1895, 1, 0, 0, 0, 1861, 1862, 5, 178, 0, 0, 1862, 1863, 5, 152, 0, 0, 1863, 1864, 3, 84, 42, 0, 1864, 1865, 3, 238, 119, 0, 1865, 1871, 5, 331, 0, 0, 1866, 1872, 3, 96, 48, 0, 1867, 1868, 5, 2, 0, 0, 1868, 1869, 3, 26, 13, 0, 1869, 1870, 5, 3, 0, 0, 1870, 1872, 1, 0, 0, 0, 1871, 1866, 1, 0, 0, 0, 1871, 1867, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 3, 238, 119, 0, 1874, 1875, 5, 202, 0, 0, 1875, 1879, 3, 274, 137, 0, 1876, 1878, 3, 120, 60, 0, 1877, 1876, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1885, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1884, 3, 122, 61, 0, 1883, 1882, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1891, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1890, 3, 124, 62, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1895, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1838, 1, 0, 0, 0, 1894, 1841, 1, 0, 0, 0, 1894, 1847, 1, 0, 0, 0, 1894, 1854, 1, 0, 0, 0, 1894, 1861, 1, 0, 0, 0, 1895, 77, 1, 0, 0, 0, 1896, 1897, 3, 96, 48, 0, 1897, 79, 1, 0, 0, 0, 1898, 1899, 3, 96, 48, 0, 1899, 81, 1, 0, 0, 0, 1900, 1901, 3, 250, 125, 0, 1901, 83, 1, 0, 0, 0, 1902, 1903, 3, 250, 125, 0, 1903, 85, 1, 0, 0, 0, 1904, 1905, 3, 252, 126, 0, 1905, 87, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 89, 1, 0, 0, 0, 1908, 1909, 3, 244, 122, 0, 1909, 91, 1, 0, 0, 0, 1910, 1915, 3, 90, 45, 0, 1911, 1912, 5, 4, 0, 0, 1912, 1914, 3, 90, 45, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 93, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 3, 370, 185, 0, 1919, 95, 1, 0, 0, 0, 1920, 1921, 5, 136, 0, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1923, 3, 266, 133, 0, 1923, 1924, 5, 3, 0, 0, 1924, 1927, 1, 0, 0, 0, 1925, 1927, 3, 244, 122, 0, 1926, 1920, 1, 0, 0, 0, 1926, 1925, 1, 0, 0, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 208, 0, 0, 1929, 1930, 5, 31, 0, 0, 1930, 1935, 3, 106, 53, 0, 1931, 1932, 5, 4, 0, 0, 1932, 1934, 3, 106, 53, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1939, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1928, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1950, 1, 0, 0, 0, 1940, 1941, 5, 44, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 1947, 3, 266, 133, 0, 1943, 1944, 5, 4, 0, 0, 1944, 1946, 3, 266, 133, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1949, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1940, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1962, 1, 0, 0, 0, 1952, 1953, 5, 93, 0, 0, 1953, 1954, 5, 31, 0, 0, 1954, 1959, 3, 266, 133, 0, 1955, 1956, 5, 4, 0, 0, 1956, 1958, 3, 266, 133, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1961, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1963, 1, 0, 0, 0, 1961, 1959, 1, 0, 0, 0, 1962, 1952, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1974, 1, 0, 0, 0, 1964, 1965, 5, 277, 0, 0, 1965, 1966, 5, 31, 0, 0, 1966, 1971, 3, 106, 53, 0, 1967, 1968, 5, 4, 0, 0, 1968, 1970, 3, 106, 53, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1973, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1975, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1964, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 350, 175, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1984, 1, 0, 0, 0, 1979, 1982, 5, 164, 0, 0, 1980, 1983, 5, 10, 0, 0, 1981, 1983, 3, 266, 133, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1981, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1979, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1987, 5, 201, 0, 0, 1987, 1989, 3, 266, 133, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 99, 1, 0, 0, 0, 1990, 1991, 3, 28, 14, 0, 1991, 1992, 3, 110, 55, 0, 1992, 101, 1, 0, 0, 0, 1993, 1994, 6, 51, -1, 0, 1994, 1995, 3, 104, 52, 0, 1995, 2016, 1, 0, 0, 0, 1996, 1997, 10, 3, 0, 0, 1997, 1999, 7, 13, 0, 0, 1998, 2000, 3, 194, 97, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2015, 3, 102, 51, 4, 2002, 2003, 10, 2, 0, 0, 2003, 2005, 5, 148, 0, 0, 2004, 2006, 3, 194, 97, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2015, 3, 102, 51, 3, 2008, 2009, 10, 1, 0, 0, 2009, 2011, 7, 14, 0, 0, 2010, 2012, 3, 194, 97, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 3, 102, 51, 2, 2014, 1996, 1, 0, 0, 0, 2014, 2002, 1, 0, 0, 0, 2014, 2008, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 103, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2029, 3, 112, 56, 0, 2020, 2029, 3, 108, 54, 0, 2021, 2022, 5, 292, 0, 0, 2022, 2029, 3, 84, 42, 0, 2023, 2029, 3, 224, 112, 0, 2024, 2025, 5, 2, 0, 0, 2025, 2026, 3, 26, 13, 0, 2026, 2027, 5, 3, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2019, 1, 0, 0, 0, 2028, 2020, 1, 0, 0, 0, 2028, 2021, 1, 0, 0, 0, 2028, 2023, 1, 0, 0, 0, 2028, 2024, 1, 0, 0, 0, 2029, 105, 1, 0, 0, 0, 2030, 2033, 3, 90, 45, 0, 2031, 2033, 3, 266, 133, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2036, 7, 15, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2039, 1, 0, 0, 0, 2037, 2038, 5, 198, 0, 0, 2038, 2040, 7, 16, 0, 0, 2039, 2037, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 107, 1, 0, 0, 0, 2041, 2043, 3, 144, 72, 0, 2042, 2044, 3, 110, 55, 0, 2043, 2042, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 109, 1, 0, 0, 0, 2047, 2049, 3, 114, 57, 0, 2048, 2050, 3, 136, 68, 0, 2049, 2048, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 3, 98, 49, 0, 2052, 2075, 1, 0, 0, 0, 2053, 2057, 3, 116, 58, 0, 2054, 2056, 3, 192, 96, 0, 2055, 2054, 1, 0, 0, 0, 2056, 2059, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2061, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2060, 2062, 3, 136, 68, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2065, 3, 150, 75, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2067, 1, 0, 0, 0, 2066, 2068, 3, 138, 69, 0, 2067, 2066, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2071, 3, 350, 175, 0, 2070, 2069, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 3, 98, 49, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2047, 1, 0, 0, 0, 2074, 2053, 1, 0, 0, 0, 2075, 111, 1, 0, 0, 0, 2076, 2078, 3, 114, 57, 0, 2077, 2079, 3, 144, 72, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2083, 1, 0, 0, 0, 2080, 2082, 3, 192, 96, 0, 2081, 2080, 1, 0, 0, 0, 2082, 2085, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2088, 3, 136, 68, 0, 2087, 2086, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2091, 3, 150, 75, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2093, 1, 0, 0, 0, 2092, 2094, 3, 138, 69, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2097, 3, 350, 175, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2121, 1, 0, 0, 0, 2098, 2100, 3, 116, 58, 0, 2099, 2101, 3, 144, 72, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2105, 1, 0, 0, 0, 2102, 2104, 3, 192, 96, 0, 2103, 2102, 1, 0, 0, 0, 2104, 2107, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2109, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2110, 3, 136, 68, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 150, 75, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 138, 69, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 350, 175, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2076, 1, 0, 0, 0, 2120, 2098, 1, 0, 0, 0, 2121, 113, 1, 0, 0, 0, 2122, 2123, 5, 262, 0, 0, 2123, 2124, 5, 313, 0, 0, 2124, 2126, 5, 2, 0, 0, 2125, 2127, 3, 194, 97, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 3, 272, 136, 0, 2129, 2130, 5, 3, 0, 0, 2130, 2142, 1, 0, 0, 0, 2131, 2133, 5, 176, 0, 0, 2132, 2134, 3, 194, 97, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2142, 3, 272, 136, 0, 2136, 2138, 5, 237, 0, 0, 2137, 2139, 3, 194, 97, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 3, 272, 136, 0, 2141, 2122, 1, 0, 0, 0, 2141, 2131, 1, 0, 0, 0, 2141, 2136, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2145, 3, 240, 120, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2148, 1, 0, 0, 0, 2146, 2147, 5, 235, 0, 0, 2147, 2149, 3, 386, 193, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 5, 331, 0, 0, 2151, 2164, 3, 386, 193, 0, 2152, 2162, 5, 20, 0, 0, 2153, 2163, 3, 212, 106, 0, 2154, 2163, 3, 332, 166, 0, 2155, 2158, 5, 2, 0, 0, 2156, 2159, 3, 212, 106, 0, 2157, 2159, 3, 332, 166, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 5, 3, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2153, 1, 0, 0, 0, 2162, 2154, 1, 0, 0, 0, 2162, 2155, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2152, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 1, 0, 0, 0, 2166, 2168, 3, 240, 120, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2171, 1, 0, 0, 0, 2169, 2170, 5, 234, 0, 0, 2170, 2172, 3, 386, 193, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 115, 1, 0, 0, 0, 2173, 2177, 5, 262, 0, 0, 2174, 2176, 3, 140, 70, 0, 2175, 2174, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2182, 3, 194, 97, 0, 2181, 2180, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2184, 3, 256, 128, 0, 2184, 117, 1, 0, 0, 0, 2185, 2186, 5, 268, 0, 0, 2186, 2187, 3, 132, 66, 0, 2187, 119, 1, 0, 0, 0, 2188, 2189, 5, 342, 0, 0, 2189, 2192, 5, 177, 0, 0, 2190, 2191, 5, 14, 0, 0, 2191, 2193, 3, 274, 137, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 5, 299, 0, 0, 2195, 2196, 3, 126, 63, 0, 2196, 121, 1, 0, 0, 0, 2197, 2198, 5, 342, 0, 0, 2198, 2199, 5, 196, 0, 0, 2199, 2202, 5, 177, 0, 0, 2200, 2201, 5, 31, 0, 0, 2201, 2203, 5, 295, 0, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2206, 1, 0, 0, 0, 2204, 2205, 5, 14, 0, 0, 2205, 2207, 3, 274, 137, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 5, 299, 0, 0, 2209, 2210, 3, 128, 64, 0, 2210, 123, 1, 0, 0, 0, 2211, 2212, 5, 342, 0, 0, 2212, 2213, 5, 196, 0, 0, 2213, 2214, 5, 177, 0, 0, 2214, 2215, 5, 31, 0, 0, 2215, 2218, 5, 279, 0, 0, 2216, 2217, 5, 14, 0, 0, 2217, 2219, 3, 274, 137, 0, 2218, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 5, 299, 0, 0, 2221, 2222, 3, 130, 65, 0, 2222, 125, 1, 0, 0, 0, 2223, 2231, 5, 84, 0, 0, 2224, 2225, 5, 328, 0, 0, 2225, 2226, 5, 268, 0, 0, 2226, 2231, 5, 362, 0, 0, 2227, 2228, 5, 328, 0, 0, 2228, 2229, 5, 268, 0, 0, 2229, 2231, 3, 132, 66, 0, 2230, 2223, 1, 0, 0, 0, 2230, 2224, 1, 0, 0, 0, 2230, 2227, 1, 0, 0, 0, 2231, 127, 1, 0, 0, 0, 2232, 2233, 5, 147, 0, 0, 2233, 2251, 5, 362, 0, 0, 2234, 2235, 5, 147, 0, 0, 2235, 2236, 5, 2, 0, 0, 2236, 2237, 3, 242, 121, 0, 2237, 2238, 5, 3, 0, 0, 2238, 2239, 5, 332, 0, 0, 2239, 2240, 5, 2, 0, 0, 2240, 2245, 3, 266, 133, 0, 2241, 2242, 5, 4, 0, 0, 2242, 2244, 3, 266, 133, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2248, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2248, 2249, 5, 3, 0, 0, 2249, 2251, 1, 0, 0, 0, 2250, 2232, 1, 0, 0, 0, 2250, 2234, 1, 0, 0, 0, 2251, 129, 1, 0, 0, 0, 2252, 2257, 5, 84, 0, 0, 2253, 2254, 5, 328, 0, 0, 2254, 2255, 5, 268, 0, 0, 2255, 2257, 3, 132, 66, 0, 2256, 2252, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2257, 131, 1, 0, 0, 0, 2258, 2263, 3, 134, 67, 0, 2259, 2260, 5, 4, 0, 0, 2260, 2262, 3, 134, 67, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 133, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 3, 244, 122, 0, 2267, 2268, 5, 351, 0, 0, 2268, 2269, 3, 266, 133, 0, 2269, 135, 1, 0, 0, 0, 2270, 2271, 5, 343, 0, 0, 2271, 2272, 3, 274, 137, 0, 2272, 137, 1, 0, 0, 0, 2273, 2274, 5, 132, 0, 0, 2274, 2275, 3, 274, 137, 0, 2275, 139, 1, 0, 0, 0, 2276, 2277, 5, 373, 0, 0, 2277, 2284, 3, 142, 71, 0, 2278, 2280, 5, 4, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 3, 142, 71, 0, 2282, 2279, 1, 0, 0, 0, 2283, 2286, 1, 0, 0, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2287, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2287, 2288, 5, 374, 0, 0, 2288, 141, 1, 0, 0, 0, 2289, 2303, 3, 374, 187, 0, 2290, 2291, 3, 374, 187, 0, 2291, 2292, 5, 2, 0, 0, 2292, 2297, 3, 282, 141, 0, 2293, 2294, 5, 4, 0, 0, 2294, 2296, 3, 282, 141, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 3, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2289, 1, 0, 0, 0, 2302, 2290, 1, 0, 0, 0, 2303, 143, 1, 0, 0, 0, 2304, 2305, 5, 123, 0, 0, 2305, 2310, 3, 196, 98, 0, 2306, 2307, 5, 4, 0, 0, 2307, 2309, 3, 196, 98, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2312, 1, 0, 0, 0, 2310, 2308, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2316, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2315, 3, 192, 96, 0, 2314, 2313, 1, 0, 0, 0, 2315, 2318, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2321, 3, 160, 80, 0, 2320, 2319, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2324, 3, 166, 83, 0, 2323, 2322, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 145, 1, 0, 0, 0, 2325, 2326, 7, 17, 0, 0, 2326, 147, 1, 0, 0, 0, 2327, 2329, 5, 119, 0, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 7, 18, 0, 0, 2331, 2332, 5, 20, 0, 0, 2332, 2333, 5, 200, 0, 0, 2333, 2342, 3, 390, 195, 0, 2334, 2336, 5, 119, 0, 0, 2335, 2334, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 7, 19, 0, 0, 2338, 2339, 5, 20, 0, 0, 2339, 2340, 5, 200, 0, 0, 2340, 2342, 3, 278, 139, 0, 2341, 2328, 1, 0, 0, 0, 2341, 2335, 1, 0, 0, 0, 2342, 149, 1, 0, 0, 0, 2343, 2344, 5, 130, 0, 0, 2344, 2345, 5, 31, 0, 0, 2345, 2350, 3, 152, 76, 0, 2346, 2347, 5, 4, 0, 0, 2347, 2349, 3, 152, 76, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2383, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 2354, 5, 130, 0, 0, 2354, 2355, 5, 31, 0, 0, 2355, 2360, 3, 266, 133, 0, 2356, 2357, 5, 4, 0, 0, 2357, 2359, 3, 266, 133, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2362, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2380, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 2364, 5, 345, 0, 0, 2364, 2381, 5, 255, 0, 0, 2365, 2366, 5, 345, 0, 0, 2366, 2381, 5, 61, 0, 0, 2367, 2368, 5, 131, 0, 0, 2368, 2369, 5, 270, 0, 0, 2369, 2370, 5, 2, 0, 0, 2370, 2375, 3, 158, 79, 0, 2371, 2372, 5, 4, 0, 0, 2372, 2374, 3, 158, 79, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 3, 0, 0, 2379, 2381, 1, 0, 0, 0, 2380, 2363, 1, 0, 0, 0, 2380, 2365, 1, 0, 0, 0, 2380, 2367, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2383, 1, 0, 0, 0, 2382, 2343, 1, 0, 0, 0, 2382, 2353, 1, 0, 0, 0, 2383, 151, 1, 0, 0, 0, 2384, 2388, 3, 90, 45, 0, 2385, 2388, 3, 154, 77, 0, 2386, 2388, 3, 266, 133, 0, 2387, 2384, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2386, 1, 0, 0, 0, 2388, 153, 1, 0, 0, 0, 2389, 2390, 7, 20, 0, 0, 2390, 2391, 5, 2, 0, 0, 2391, 2396, 3, 158, 79, 0, 2392, 2393, 5, 4, 0, 0, 2393, 2395, 3, 158, 79, 0, 2394, 2392, 1, 0, 0, 0, 2395, 2398, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2400, 5, 3, 0, 0, 2400, 2415, 1, 0, 0, 0, 2401, 2402, 5, 131, 0, 0, 2402, 2403, 5, 270, 0, 0, 2403, 2404, 5, 2, 0, 0, 2404, 2409, 3, 156, 78, 0, 2405, 2406, 5, 4, 0, 0, 2406, 2408, 3, 156, 78, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2411, 1, 0, 0, 0, 2409, 2407, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2412, 1, 0, 0, 0, 2411, 2409, 1, 0, 0, 0, 2412, 2413, 5, 3, 0, 0, 2413, 2415, 1, 0, 0, 0, 2414, 2389, 1, 0, 0, 0, 2414, 2401, 1, 0, 0, 0, 2415, 155, 1, 0, 0, 0, 2416, 2419, 3, 154, 77, 0, 2417, 2419, 3, 158, 79, 0, 2418, 2416, 1, 0, 0, 0, 2418, 2417, 1, 0, 0, 0, 2419, 157, 1, 0, 0, 0, 2420, 2441, 3, 90, 45, 0, 2421, 2441, 3, 266, 133, 0, 2422, 2437, 5, 2, 0, 0, 2423, 2426, 3, 90, 45, 0, 2424, 2426, 3, 266, 133, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2424, 1, 0, 0, 0, 2426, 2434, 1, 0, 0, 0, 2427, 2430, 5, 4, 0, 0, 2428, 2431, 3, 90, 45, 0, 2429, 2431, 3, 266, 133, 0, 2430, 2428, 1, 0, 0, 0, 2430, 2429, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2427, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2425, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 5, 3, 0, 0, 2440, 2420, 1, 0, 0, 0, 2440, 2421, 1, 0, 0, 0, 2440, 2422, 1, 0, 0, 0, 2441, 159, 1, 0, 0, 0, 2442, 2443, 5, 222, 0, 0, 2443, 2444, 5, 2, 0, 0, 2444, 2445, 3, 256, 128, 0, 2445, 2446, 5, 119, 0, 0, 2446, 2447, 3, 162, 81, 0, 2447, 2448, 5, 140, 0, 0, 2448, 2449, 5, 2, 0, 0, 2449, 2454, 3, 164, 82, 0, 2450, 2451, 5, 4, 0, 0, 2451, 2453, 3, 164, 82, 0, 2452, 2450, 1, 0, 0, 0, 2453, 2456, 1, 0, 0, 0, 2454, 2452, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2457, 2458, 5, 3, 0, 0, 2458, 2459, 5, 3, 0, 0, 2459, 161, 1, 0, 0, 0, 2460, 2473, 3, 374, 187, 0, 2461, 2462, 5, 2, 0, 0, 2462, 2467, 3, 374, 187, 0, 2463, 2464, 5, 4, 0, 0, 2464, 2466, 3, 374, 187, 0, 2465, 2463, 1, 0, 0, 0, 2466, 2469, 1, 0, 0, 0, 2467, 2465, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2470, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2470, 2471, 5, 3, 0, 0, 2471, 2473, 1, 0, 0, 0, 2472, 2460, 1, 0, 0, 0, 2472, 2461, 1, 0, 0, 0, 2473, 163, 1, 0, 0, 0, 2474, 2479, 3, 266, 133, 0, 2475, 2477, 5, 20, 0, 0, 2476, 2475, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 3, 374, 187, 0, 2479, 2476, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 165, 1, 0, 0, 0, 2481, 2483, 5, 326, 0, 0, 2482, 2484, 3, 168, 84, 0, 2483, 2482, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 5, 2, 0, 0, 2486, 2487, 3, 170, 85, 0, 2487, 2492, 5, 3, 0, 0, 2488, 2490, 5, 20, 0, 0, 2489, 2488, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2493, 3, 374, 187, 0, 2492, 2489, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 167, 1, 0, 0, 0, 2494, 2495, 7, 21, 0, 0, 2495, 2496, 5, 198, 0, 0, 2496, 169, 1, 0, 0, 0, 2497, 2500, 3, 172, 86, 0, 2498, 2500, 3, 174, 87, 0, 2499, 2497, 1, 0, 0, 0, 2499, 2498, 1, 0, 0, 0, 2500, 171, 1, 0, 0, 0, 2501, 2502, 3, 178, 89, 0, 2502, 2503, 5, 119, 0, 0, 2503, 2504, 3, 180, 90, 0, 2504, 2505, 5, 140, 0, 0, 2505, 2506, 5, 2, 0, 0, 2506, 2511, 3, 182, 91, 0, 2507, 2508, 5, 4, 0, 0, 2508, 2510, 3, 182, 91, 0, 2509, 2507, 1, 0, 0, 0, 2510, 2513, 1, 0, 0, 0, 2511, 2509, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2511, 1, 0, 0, 0, 2514, 2515, 5, 3, 0, 0, 2515, 173, 1, 0, 0, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2522, 3, 178, 89, 0, 2518, 2519, 5, 4, 0, 0, 2519, 2521, 3, 178, 89, 0, 2520, 2518, 1, 0, 0, 0, 2521, 2524, 1, 0, 0, 0, 2522, 2520, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2525, 2526, 5, 3, 0, 0, 2526, 2527, 5, 119, 0, 0, 2527, 2528, 3, 180, 90, 0, 2528, 2529, 5, 140, 0, 0, 2529, 2530, 5, 2, 0, 0, 2530, 2535, 3, 176, 88, 0, 2531, 2532, 5, 4, 0, 0, 2532, 2534, 3, 176, 88, 0, 2533, 2531, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2538, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2539, 5, 3, 0, 0, 2539, 175, 1, 0, 0, 0, 2540, 2541, 5, 2, 0, 0, 2541, 2546, 3, 184, 92, 0, 2542, 2543, 5, 4, 0, 0, 2543, 2545, 3, 184, 92, 0, 2544, 2542, 1, 0, 0, 0, 2545, 2548, 1, 0, 0, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2549, 2551, 5, 3, 0, 0, 2550, 2552, 3, 186, 93, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 177, 1, 0, 0, 0, 2553, 2554, 3, 374, 187, 0, 2554, 179, 1, 0, 0, 0, 2555, 2556, 3, 374, 187, 0, 2556, 181, 1, 0, 0, 0, 2557, 2559, 3, 184, 92, 0, 2558, 2560, 3, 186, 93, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 183, 1, 0, 0, 0, 2561, 2562, 3, 244, 122, 0, 2562, 185, 1, 0, 0, 0, 2563, 2565, 5, 20, 0, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 3, 374, 187, 0, 2567, 187, 1, 0, 0, 0, 2568, 2569, 5, 137, 0, 0, 2569, 2570, 5, 196, 0, 0, 2570, 2571, 5, 105, 0, 0, 2571, 189, 1, 0, 0, 0, 2572, 2573, 5, 137, 0, 0, 2573, 2574, 5, 105, 0, 0, 2574, 191, 1, 0, 0, 0, 2575, 2576, 5, 158, 0, 0, 2576, 2578, 5, 337, 0, 0, 2577, 2579, 5, 210, 0, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 3, 88, 44, 0, 2581, 2590, 5, 2, 0, 0, 2582, 2587, 3, 266, 133, 0, 2583, 2584, 5, 4, 0, 0, 2584, 2586, 3, 266, 133, 0, 2585, 2583, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2591, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2582, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 5, 3, 0, 0, 2593, 2605, 3, 238, 119, 0, 2594, 2596, 5, 20, 0, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2602, 3, 374, 187, 0, 2598, 2599, 5, 4, 0, 0, 2599, 2601, 3, 374, 187, 0, 2600, 2598, 1, 0, 0, 0, 2601, 2604, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2606, 1, 0, 0, 0, 2604, 2602, 1, 0, 0, 0, 2605, 2595, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 193, 1, 0, 0, 0, 2607, 2608, 7, 22, 0, 0, 2608, 195, 1, 0, 0, 0, 2609, 2611, 5, 158, 0, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2616, 3, 222, 111, 0, 2613, 2615, 3, 198, 99, 0, 2614, 2613, 1, 0, 0, 0, 2615, 2618, 1, 0, 0, 0, 2616, 2614, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2621, 1, 0, 0, 0, 2618, 2616, 1, 0, 0, 0, 2619, 2621, 3, 84, 42, 0, 2620, 2610, 1, 0, 0, 0, 2620, 2619, 1, 0, 0, 0, 2621, 197, 1, 0, 0, 0, 2622, 2626, 3, 200, 100, 0, 2623, 2626, 3, 160, 80, 0, 2624, 2626, 3, 166, 83, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 199, 1, 0, 0, 0, 2627, 2628, 3, 202, 101, 0, 2628, 2630, 5, 155, 0, 0, 2629, 2631, 5, 158, 0, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2634, 3, 222, 111, 0, 2633, 2635, 3, 204, 102, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2645, 1, 0, 0, 0, 2636, 2637, 5, 193, 0, 0, 2637, 2638, 3, 202, 101, 0, 2638, 2640, 5, 155, 0, 0, 2639, 2641, 5, 158, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 3, 222, 111, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2627, 1, 0, 0, 0, 2644, 2636, 1, 0, 0, 0, 2645, 201, 1, 0, 0, 0, 2646, 2648, 5, 144, 0, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2671, 1, 0, 0, 0, 2649, 2671, 5, 60, 0, 0, 2650, 2652, 5, 161, 0, 0, 2651, 2653, 5, 210, 0, 0, 2652, 2651, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2671, 1, 0, 0, 0, 2654, 2656, 5, 161, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2671, 5, 263, 0, 0, 2658, 2660, 5, 249, 0, 0, 2659, 2661, 5, 210, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2671, 1, 0, 0, 0, 2662, 2664, 5, 124, 0, 0, 2663, 2665, 5, 210, 0, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2671, 1, 0, 0, 0, 2666, 2668, 5, 161, 0, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 5, 15, 0, 0, 2670, 2647, 1, 0, 0, 0, 2670, 2649, 1, 0, 0, 0, 2670, 2650, 1, 0, 0, 0, 2670, 2655, 1, 0, 0, 0, 2670, 2658, 1, 0, 0, 0, 2670, 2662, 1, 0, 0, 0, 2670, 2667, 1, 0, 0, 0, 2671, 203, 1, 0, 0, 0, 2672, 2673, 5, 202, 0, 0, 2673, 2677, 3, 274, 137, 0, 2674, 2675, 5, 331, 0, 0, 2675, 2677, 3, 210, 105, 0, 2676, 2672, 1, 0, 0, 0, 2676, 2674, 1, 0, 0, 0, 2677, 205, 1, 0, 0, 0, 2678, 2679, 5, 294, 0, 0, 2679, 2681, 5, 2, 0, 0, 2680, 2682, 3, 208, 104, 0, 2681, 2680, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2688, 5, 3, 0, 0, 2684, 2685, 5, 242, 0, 0, 2685, 2686, 5, 2, 0, 0, 2686, 2687, 5, 381, 0, 0, 2687, 2689, 5, 3, 0, 0, 2688, 2684, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 207, 1, 0, 0, 0, 2690, 2692, 5, 361, 0, 0, 2691, 2690, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 7, 23, 0, 0, 2694, 2715, 5, 221, 0, 0, 2695, 2696, 3, 266, 133, 0, 2696, 2697, 5, 257, 0, 0, 2697, 2715, 1, 0, 0, 0, 2698, 2699, 5, 29, 0, 0, 2699, 2700, 5, 381, 0, 0, 2700, 2701, 5, 209, 0, 0, 2701, 2702, 5, 200, 0, 0, 2702, 2711, 5, 381, 0, 0, 2703, 2709, 5, 202, 0, 0, 2704, 2710, 3, 374, 187, 0, 2705, 2706, 3, 368, 184, 0, 2706, 2707, 5, 2, 0, 0, 2707, 2708, 5, 3, 0, 0, 2708, 2710, 1, 0, 0, 0, 2709, 2704, 1, 0, 0, 0, 2709, 2705, 1, 0, 0, 0, 2710, 2712, 1, 0, 0, 0, 2711, 2703, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2715, 1, 0, 0, 0, 2713, 2715, 3, 266, 133, 0, 2714, 2691, 1, 0, 0, 0, 2714, 2695, 1, 0, 0, 0, 2714, 2698, 1, 0, 0, 0, 2714, 2713, 1, 0, 0, 0, 2715, 209, 1, 0, 0, 0, 2716, 2717, 5, 2, 0, 0, 2717, 2718, 3, 212, 106, 0, 2718, 2719, 5, 3, 0, 0, 2719, 211, 1, 0, 0, 0, 2720, 2725, 3, 370, 185, 0, 2721, 2722, 5, 4, 0, 0, 2722, 2724, 3, 370, 185, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2727, 1, 0, 0, 0, 2725, 2723, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 213, 1, 0, 0, 0, 2727, 2725, 1, 0, 0, 0, 2728, 2729, 5, 2, 0, 0, 2729, 2734, 3, 216, 108, 0, 2730, 2731, 5, 4, 0, 0, 2731, 2733, 3, 216, 108, 0, 2732, 2730, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2737, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2738, 5, 3, 0, 0, 2738, 215, 1, 0, 0, 0, 2739, 2741, 3, 370, 185, 0, 2740, 2742, 7, 15, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 217, 1, 0, 0, 0, 2743, 2744, 5, 2, 0, 0, 2744, 2749, 3, 220, 110, 0, 2745, 2746, 5, 4, 0, 0, 2746, 2748, 3, 220, 110, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2751, 1, 0, 0, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2752, 2753, 5, 3, 0, 0, 2753, 219, 1, 0, 0, 0, 2754, 2756, 3, 374, 187, 0, 2755, 2757, 3, 24, 12, 0, 2756, 2755, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 221, 1, 0, 0, 0, 2758, 2760, 3, 96, 48, 0, 2759, 2761, 3, 148, 74, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 1, 0, 0, 0, 2762, 2764, 3, 206, 103, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2766, 3, 238, 119, 0, 2766, 2786, 1, 0, 0, 0, 2767, 2768, 5, 2, 0, 0, 2768, 2769, 3, 26, 13, 0, 2769, 2771, 5, 3, 0, 0, 2770, 2772, 3, 206, 103, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 3, 238, 119, 0, 2774, 2786, 1, 0, 0, 0, 2775, 2776, 5, 2, 0, 0, 2776, 2777, 3, 196, 98, 0, 2777, 2779, 5, 3, 0, 0, 2778, 2780, 3, 206, 103, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 3, 238, 119, 0, 2782, 2786, 1, 0, 0, 0, 2783, 2786, 3, 224, 112, 0, 2784, 2786, 3, 236, 118, 0, 2785, 2758, 1, 0, 0, 0, 2785, 2767, 1, 0, 0, 0, 2785, 2775, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2785, 2784, 1, 0, 0, 0, 2786, 223, 1, 0, 0, 0, 2787, 2788, 5, 332, 0, 0, 2788, 2793, 3, 266, 133, 0, 2789, 2790, 5, 4, 0, 0, 2790, 2792, 3, 266, 133, 0, 2791, 2789, 1, 0, 0, 0, 2792, 2795, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2796, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2796, 2797, 3, 238, 119, 0, 2797, 225, 1, 0, 0, 0, 2798, 2799, 5, 292, 0, 0, 2799, 2801, 3, 84, 42, 0, 2800, 2802, 3, 228, 114, 0, 2801, 2800, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2818, 1, 0, 0, 0, 2803, 2804, 5, 292, 0, 0, 2804, 2805, 5, 2, 0, 0, 2805, 2806, 3, 84, 42, 0, 2806, 2808, 5, 3, 0, 0, 2807, 2809, 3, 228, 114, 0, 2808, 2807, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 2818, 1, 0, 0, 0, 2810, 2811, 5, 292, 0, 0, 2811, 2812, 5, 2, 0, 0, 2812, 2813, 3, 26, 13, 0, 2813, 2815, 5, 3, 0, 0, 2814, 2816, 3, 228, 114, 0, 2815, 2814, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 1, 0, 0, 0, 2817, 2798, 1, 0, 0, 0, 2817, 2803, 1, 0, 0, 0, 2817, 2810, 1, 0, 0, 0, 2818, 227, 1, 0, 0, 0, 2819, 2820, 5, 345, 0, 0, 2820, 2821, 5, 273, 0, 0, 2821, 2839, 5, 216, 0, 0, 2822, 2823, 7, 24, 0, 0, 2823, 2836, 5, 31, 0, 0, 2824, 2825, 5, 2, 0, 0, 2825, 2830, 3, 266, 133, 0, 2826, 2827, 5, 4, 0, 0, 2827, 2829, 3, 266, 133, 0, 2828, 2826, 1, 0, 0, 0, 2829, 2832, 1, 0, 0, 0, 2830, 2828, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 2833, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2833, 2834, 5, 3, 0, 0, 2834, 2837, 1, 0, 0, 0, 2835, 2837, 3, 266, 133, 0, 2836, 2824, 1, 0, 0, 0, 2836, 2835, 1, 0, 0, 0, 2837, 2839, 1, 0, 0, 0, 2838, 2819, 1, 0, 0, 0, 2838, 2822, 1, 0, 0, 0, 2839, 2856, 1, 0, 0, 0, 2840, 2841, 7, 25, 0, 0, 2841, 2854, 5, 31, 0, 0, 2842, 2843, 5, 2, 0, 0, 2843, 2848, 3, 106, 53, 0, 2844, 2845, 5, 4, 0, 0, 2845, 2847, 3, 106, 53, 0, 2846, 2844, 1, 0, 0, 0, 2847, 2850, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2852, 5, 3, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2855, 3, 106, 53, 0, 2854, 2842, 1, 0, 0, 0, 2854, 2853, 1, 0, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2840, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 229, 1, 0, 0, 0, 2858, 2859, 3, 374, 187, 0, 2859, 2860, 5, 372, 0, 0, 2860, 2861, 3, 226, 113, 0, 2861, 231, 1, 0, 0, 0, 2862, 2865, 3, 226, 113, 0, 2863, 2865, 3, 230, 115, 0, 2864, 2862, 1, 0, 0, 0, 2864, 2863, 1, 0, 0, 0, 2865, 233, 1, 0, 0, 0, 2866, 2869, 3, 232, 116, 0, 2867, 2869, 3, 270, 135, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 235, 1, 0, 0, 0, 2870, 2871, 3, 364, 182, 0, 2871, 2880, 5, 2, 0, 0, 2872, 2877, 3, 234, 117, 0, 2873, 2874, 5, 4, 0, 0, 2874, 2876, 3, 234, 117, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2879, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2881, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 2872, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, 5, 3, 0, 0, 2883, 2884, 3, 238, 119, 0, 2884, 237, 1, 0, 0, 0, 2885, 2887, 5, 20, 0, 0, 2886, 2885, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2890, 3, 376, 188, 0, 2889, 2891, 3, 210, 105, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2886, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 239, 1, 0, 0, 0, 2894, 2895, 5, 256, 0, 0, 2895, 2896, 5, 121, 0, 0, 2896, 2897, 5, 265, 0, 0, 2897, 2901, 3, 386, 193, 0, 2898, 2899, 5, 345, 0, 0, 2899, 2900, 5, 266, 0, 0, 2900, 2902, 3, 52, 26, 0, 2901, 2898, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2944, 1, 0, 0, 0, 2903, 2904, 5, 256, 0, 0, 2904, 2905, 5, 121, 0, 0, 2905, 2915, 5, 85, 0, 0, 2906, 2907, 5, 113, 0, 0, 2907, 2908, 5, 298, 0, 0, 2908, 2909, 5, 31, 0, 0, 2909, 2913, 3, 386, 193, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 31, 0, 0, 2912, 2914, 3, 386, 193, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2916, 1, 0, 0, 0, 2915, 2906, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2922, 1, 0, 0, 0, 2917, 2918, 5, 48, 0, 0, 2918, 2919, 5, 154, 0, 0, 2919, 2920, 5, 298, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2923, 3, 386, 193, 0, 2922, 2917, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2929, 1, 0, 0, 0, 2924, 2925, 5, 176, 0, 0, 2925, 2926, 5, 156, 0, 0, 2926, 2927, 5, 298, 0, 0, 2927, 2928, 5, 31, 0, 0, 2928, 2930, 3, 386, 193, 0, 2929, 2924, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2935, 1, 0, 0, 0, 2931, 2932, 5, 165, 0, 0, 2932, 2933, 5, 298, 0, 0, 2933, 2934, 5, 31, 0, 0, 2934, 2936, 3, 386, 193, 0, 2935, 2931, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2941, 1, 0, 0, 0, 2937, 2938, 5, 197, 0, 0, 2938, 2939, 5, 83, 0, 0, 2939, 2940, 5, 20, 0, 0, 2940, 2942, 3, 386, 193, 0, 2941, 2937, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2894, 1, 0, 0, 0, 2943, 2903, 1, 0, 0, 0, 2944, 241, 1, 0, 0, 0, 2945, 2950, 3, 244, 122, 0, 2946, 2947, 5, 4, 0, 0, 2947, 2949, 3, 244, 122, 0, 2948, 2946, 1, 0, 0, 0, 2949, 2952, 1, 0, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 243, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 2958, 3, 370, 185, 0, 2954, 2955, 5, 5, 0, 0, 2955, 2957, 3, 370, 185, 0, 2956, 2954, 1, 0, 0, 0, 2957, 2960, 1, 0, 0, 0, 2958, 2956, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 245, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2966, 3, 248, 124, 0, 2962, 2963, 5, 4, 0, 0, 2963, 2965, 3, 248, 124, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2968, 1, 0, 0, 0, 2966, 2964, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 247, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 3, 244, 122, 0, 2970, 2971, 5, 206, 0, 0, 2971, 2973, 3, 52, 26, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 249, 1, 0, 0, 0, 2974, 2975, 3, 370, 185, 0, 2975, 2976, 5, 5, 0, 0, 2976, 2978, 1, 0, 0, 0, 2977, 2974, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 3, 370, 185, 0, 2980, 251, 1, 0, 0, 0, 2981, 2982, 3, 370, 185, 0, 2982, 2983, 5, 5, 0, 0, 2983, 2985, 1, 0, 0, 0, 2984, 2981, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 3, 370, 185, 0, 2987, 253, 1, 0, 0, 0, 2988, 2991, 3, 90, 45, 0, 2989, 2991, 3, 266, 133, 0, 2990, 2988, 1, 0, 0, 0, 2990, 2989, 1, 0, 0, 0, 2991, 2999, 1, 0, 0, 0, 2992, 2994, 5, 20, 0, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2997, 1, 0, 0, 0, 2995, 2998, 3, 370, 185, 0, 2996, 2998, 3, 210, 105, 0, 2997, 2995, 1, 0, 0, 0, 2997, 2996, 1, 0, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2993, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 255, 1, 0, 0, 0, 3001, 3006, 3, 254, 127, 0, 3002, 3003, 5, 4, 0, 0, 3003, 3005, 3, 254, 127, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3008, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 257, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3010, 5, 2, 0, 0, 3010, 3015, 3, 260, 130, 0, 3011, 3012, 5, 4, 0, 0, 3012, 3014, 3, 260, 130, 0, 3013, 3011, 1, 0, 0, 0, 3014, 3017, 1, 0, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3018, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3018, 3019, 5, 3, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3023, 3, 262, 131, 0, 3021, 3023, 3, 334, 167, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3021, 1, 0, 0, 0, 3023, 261, 1, 0, 0, 0, 3024, 3038, 3, 368, 184, 0, 3025, 3026, 3, 374, 187, 0, 3026, 3027, 5, 2, 0, 0, 3027, 3032, 3, 264, 132, 0, 3028, 3029, 5, 4, 0, 0, 3029, 3031, 3, 264, 132, 0, 3030, 3028, 1, 0, 0, 0, 3031, 3034, 1, 0, 0, 0, 3032, 3030, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3035, 1, 0, 0, 0, 3034, 3032, 1, 0, 0, 0, 3035, 3036, 5, 3, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3024, 1, 0, 0, 0, 3037, 3025, 1, 0, 0, 0, 3038, 263, 1, 0, 0, 0, 3039, 3042, 3, 368, 184, 0, 3040, 3042, 3, 286, 143, 0, 3041, 3039, 1, 0, 0, 0, 3041, 3040, 1, 0, 0, 0, 3042, 265, 1, 0, 0, 0, 3043, 3044, 3, 274, 137, 0, 3044, 267, 1, 0, 0, 0, 3045, 3046, 3, 374, 187, 0, 3046, 3047, 5, 372, 0, 0, 3047, 3048, 3, 266, 133, 0, 3048, 269, 1, 0, 0, 0, 3049, 3052, 3, 266, 133, 0, 3050, 3052, 3, 268, 134, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3050, 1, 0, 0, 0, 3052, 271, 1, 0, 0, 0, 3053, 3058, 3, 266, 133, 0, 3054, 3055, 5, 4, 0, 0, 3055, 3057, 3, 266, 133, 0, 3056, 3054, 1, 0, 0, 0, 3057, 3060, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 273, 1, 0, 0, 0, 3060, 3058, 1, 0, 0, 0, 3061, 3062, 6, 137, -1, 0, 3062, 3063, 7, 26, 0, 0, 3063, 3074, 3, 274, 137, 5, 3064, 3065, 5, 105, 0, 0, 3065, 3066, 5, 2, 0, 0, 3066, 3067, 3, 26, 13, 0, 3067, 3068, 5, 3, 0, 0, 3068, 3074, 1, 0, 0, 0, 3069, 3071, 3, 278, 139, 0, 3070, 3072, 3, 276, 138, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3074, 1, 0, 0, 0, 3073, 3061, 1, 0, 0, 0, 3073, 3064, 1, 0, 0, 0, 3073, 3069, 1, 0, 0, 0, 3074, 3083, 1, 0, 0, 0, 3075, 3076, 10, 2, 0, 0, 3076, 3077, 5, 14, 0, 0, 3077, 3082, 3, 274, 137, 3, 3078, 3079, 10, 1, 0, 0, 3079, 3080, 5, 207, 0, 0, 3080, 3082, 3, 274, 137, 2, 3081, 3075, 1, 0, 0, 0, 3081, 3078, 1, 0, 0, 0, 3082, 3085, 1, 0, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 275, 1, 0, 0, 0, 3085, 3083, 1, 0, 0, 0, 3086, 3088, 5, 196, 0, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3090, 5, 24, 0, 0, 3090, 3091, 3, 278, 139, 0, 3091, 3092, 5, 14, 0, 0, 3092, 3093, 3, 278, 139, 0, 3093, 3169, 1, 0, 0, 0, 3094, 3096, 5, 196, 0, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 1, 0, 0, 0, 3097, 3098, 5, 140, 0, 0, 3098, 3099, 5, 2, 0, 0, 3099, 3104, 3, 266, 133, 0, 3100, 3101, 5, 4, 0, 0, 3101, 3103, 3, 266, 133, 0, 3102, 3100, 1, 0, 0, 0, 3103, 3106, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3107, 1, 0, 0, 0, 3106, 3104, 1, 0, 0, 0, 3107, 3108, 5, 3, 0, 0, 3108, 3169, 1, 0, 0, 0, 3109, 3111, 5, 196, 0, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 5, 140, 0, 0, 3113, 3114, 5, 2, 0, 0, 3114, 3115, 3, 26, 13, 0, 3115, 3116, 5, 3, 0, 0, 3116, 3169, 1, 0, 0, 0, 3117, 3119, 5, 196, 0, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 7, 27, 0, 0, 3121, 3169, 3, 278, 139, 0, 3122, 3124, 5, 196, 0, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 7, 28, 0, 0, 3126, 3140, 7, 29, 0, 0, 3127, 3128, 5, 2, 0, 0, 3128, 3141, 5, 3, 0, 0, 3129, 3130, 5, 2, 0, 0, 3130, 3135, 3, 266, 133, 0, 3131, 3132, 5, 4, 0, 0, 3132, 3134, 3, 266, 133, 0, 3133, 3131, 1, 0, 0, 0, 3134, 3137, 1, 0, 0, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3138, 3139, 5, 3, 0, 0, 3139, 3141, 1, 0, 0, 0, 3140, 3127, 1, 0, 0, 0, 3140, 3129, 1, 0, 0, 0, 3141, 3169, 1, 0, 0, 0, 3142, 3144, 5, 196, 0, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 7, 28, 0, 0, 3146, 3149, 3, 278, 139, 0, 3147, 3148, 5, 100, 0, 0, 3148, 3150, 3, 386, 193, 0, 3149, 3147, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3169, 1, 0, 0, 0, 3151, 3153, 5, 153, 0, 0, 3152, 3154, 5, 196, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3169, 5, 197, 0, 0, 3156, 3158, 5, 153, 0, 0, 3157, 3159, 5, 196, 0, 0, 3158, 3157, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3169, 7, 30, 0, 0, 3161, 3163, 5, 153, 0, 0, 3162, 3164, 5, 196, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3166, 5, 92, 0, 0, 3166, 3167, 5, 123, 0, 0, 3167, 3169, 3, 278, 139, 0, 3168, 3087, 1, 0, 0, 0, 3168, 3095, 1, 0, 0, 0, 3168, 3110, 1, 0, 0, 0, 3168, 3118, 1, 0, 0, 0, 3168, 3123, 1, 0, 0, 0, 3168, 3143, 1, 0, 0, 0, 3168, 3151, 1, 0, 0, 0, 3168, 3156, 1, 0, 0, 0, 3168, 3161, 1, 0, 0, 0, 3169, 277, 1, 0, 0, 0, 3170, 3171, 6, 139, -1, 0, 3171, 3175, 3, 282, 141, 0, 3172, 3173, 7, 31, 0, 0, 3173, 3175, 3, 278, 139, 7, 3174, 3170, 1, 0, 0, 0, 3174, 3172, 1, 0, 0, 0, 3175, 3197, 1, 0, 0, 0, 3176, 3177, 10, 6, 0, 0, 3177, 3178, 7, 32, 0, 0, 3178, 3196, 3, 278, 139, 7, 3179, 3180, 10, 5, 0, 0, 3180, 3181, 7, 33, 0, 0, 3181, 3196, 3, 278, 139, 6, 3182, 3183, 10, 4, 0, 0, 3183, 3184, 5, 366, 0, 0, 3184, 3196, 3, 278, 139, 5, 3185, 3186, 10, 3, 0, 0, 3186, 3187, 5, 369, 0, 0, 3187, 3196, 3, 278, 139, 4, 3188, 3189, 10, 2, 0, 0, 3189, 3190, 5, 367, 0, 0, 3190, 3196, 3, 278, 139, 3, 3191, 3192, 10, 1, 0, 0, 3192, 3193, 3, 288, 144, 0, 3193, 3194, 3, 278, 139, 2, 3194, 3196, 1, 0, 0, 0, 3195, 3176, 1, 0, 0, 0, 3195, 3179, 1, 0, 0, 0, 3195, 3182, 1, 0, 0, 0, 3195, 3185, 1, 0, 0, 0, 3195, 3188, 1, 0, 0, 0, 3195, 3191, 1, 0, 0, 0, 3196, 3199, 1, 0, 0, 0, 3197, 3195, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 279, 1, 0, 0, 0, 3199, 3197, 1, 0, 0, 0, 3200, 3201, 7, 34, 0, 0, 3201, 281, 1, 0, 0, 0, 3202, 3203, 6, 141, -1, 0, 3203, 3452, 7, 35, 0, 0, 3204, 3205, 7, 36, 0, 0, 3205, 3208, 5, 2, 0, 0, 3206, 3209, 3, 280, 140, 0, 3207, 3209, 3, 386, 193, 0, 3208, 3206, 1, 0, 0, 0, 3208, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 5, 4, 0, 0, 3211, 3212, 3, 278, 139, 0, 3212, 3213, 5, 4, 0, 0, 3213, 3214, 3, 278, 139, 0, 3214, 3215, 5, 3, 0, 0, 3215, 3452, 1, 0, 0, 0, 3216, 3217, 7, 37, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 280, 140, 0, 3219, 3221, 3, 386, 193, 0, 3220, 3218, 1, 0, 0, 0, 3220, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 5, 4, 0, 0, 3223, 3224, 3, 278, 139, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 278, 139, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3452, 1, 0, 0, 0, 3228, 3230, 5, 35, 0, 0, 3229, 3231, 3, 348, 174, 0, 3230, 3229, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3236, 1, 0, 0, 0, 3234, 3235, 5, 97, 0, 0, 3235, 3237, 3, 266, 133, 0, 3236, 3234, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 5, 99, 0, 0, 3239, 3452, 1, 0, 0, 0, 3240, 3241, 5, 35, 0, 0, 3241, 3243, 3, 266, 133, 0, 3242, 3244, 3, 348, 174, 0, 3243, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3243, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3249, 1, 0, 0, 0, 3247, 3248, 5, 97, 0, 0, 3248, 3250, 3, 266, 133, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 5, 99, 0, 0, 3252, 3452, 1, 0, 0, 0, 3253, 3254, 7, 38, 0, 0, 3254, 3255, 5, 2, 0, 0, 3255, 3256, 3, 266, 133, 0, 3256, 3257, 5, 20, 0, 0, 3257, 3258, 3, 316, 158, 0, 3258, 3259, 5, 3, 0, 0, 3259, 3452, 1, 0, 0, 0, 3260, 3261, 5, 285, 0, 0, 3261, 3270, 5, 2, 0, 0, 3262, 3267, 3, 254, 127, 0, 3263, 3264, 5, 4, 0, 0, 3264, 3266, 3, 254, 127, 0, 3265, 3263, 1, 0, 0, 0, 3266, 3269, 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 3262, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3452, 5, 3, 0, 0, 3273, 3274, 5, 116, 0, 0, 3274, 3275, 5, 2, 0, 0, 3275, 3278, 3, 266, 133, 0, 3276, 3277, 5, 138, 0, 0, 3277, 3279, 5, 198, 0, 0, 3278, 3276, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 5, 3, 0, 0, 3281, 3452, 1, 0, 0, 0, 3282, 3283, 5, 17, 0, 0, 3283, 3284, 5, 2, 0, 0, 3284, 3287, 3, 266, 133, 0, 3285, 3286, 5, 138, 0, 0, 3286, 3288, 5, 198, 0, 0, 3287, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 3290, 5, 3, 0, 0, 3290, 3452, 1, 0, 0, 0, 3291, 3292, 5, 157, 0, 0, 3292, 3293, 5, 2, 0, 0, 3293, 3296, 3, 266, 133, 0, 3294, 3295, 5, 138, 0, 0, 3295, 3297, 5, 198, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 3299, 5, 3, 0, 0, 3299, 3452, 1, 0, 0, 0, 3300, 3301, 5, 224, 0, 0, 3301, 3302, 5, 2, 0, 0, 3302, 3303, 3, 278, 139, 0, 3303, 3304, 5, 140, 0, 0, 3304, 3305, 3, 278, 139, 0, 3305, 3306, 5, 3, 0, 0, 3306, 3452, 1, 0, 0, 0, 3307, 3452, 3, 286, 143, 0, 3308, 3452, 5, 362, 0, 0, 3309, 3310, 3, 368, 184, 0, 3310, 3311, 5, 5, 0, 0, 3311, 3312, 5, 362, 0, 0, 3312, 3452, 1, 0, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3317, 3, 254, 127, 0, 3315, 3316, 5, 4, 0, 0, 3316, 3318, 3, 254, 127, 0, 3317, 3315, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3322, 5, 3, 0, 0, 3322, 3452, 1, 0, 0, 0, 3323, 3324, 5, 2, 0, 0, 3324, 3325, 3, 26, 13, 0, 3325, 3326, 5, 3, 0, 0, 3326, 3452, 1, 0, 0, 0, 3327, 3328, 5, 136, 0, 0, 3328, 3329, 5, 2, 0, 0, 3329, 3330, 3, 266, 133, 0, 3330, 3331, 5, 3, 0, 0, 3331, 3452, 1, 0, 0, 0, 3332, 3333, 3, 364, 182, 0, 3333, 3345, 5, 2, 0, 0, 3334, 3336, 3, 194, 97, 0, 3335, 3334, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3342, 3, 270, 135, 0, 3338, 3339, 5, 4, 0, 0, 3339, 3341, 3, 270, 135, 0, 3340, 3338, 1, 0, 0, 0, 3341, 3344, 1, 0, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3346, 1, 0, 0, 0, 3344, 3342, 1, 0, 0, 0, 3345, 3335, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3354, 5, 3, 0, 0, 3348, 3349, 5, 114, 0, 0, 3349, 3350, 5, 2, 0, 0, 3350, 3351, 5, 343, 0, 0, 3351, 3352, 3, 274, 137, 0, 3352, 3353, 5, 3, 0, 0, 3353, 3355, 1, 0, 0, 0, 3354, 3348, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 7, 39, 0, 0, 3357, 3359, 5, 198, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3362, 1, 0, 0, 0, 3360, 3361, 5, 212, 0, 0, 3361, 3363, 3, 356, 178, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3452, 1, 0, 0, 0, 3364, 3365, 3, 374, 187, 0, 3365, 3366, 5, 371, 0, 0, 3366, 3367, 3, 266, 133, 0, 3367, 3452, 1, 0, 0, 0, 3368, 3369, 5, 2, 0, 0, 3369, 3372, 3, 374, 187, 0, 3370, 3371, 5, 4, 0, 0, 3371, 3373, 3, 374, 187, 0, 3372, 3370, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 5, 3, 0, 0, 3377, 3378, 5, 371, 0, 0, 3378, 3379, 3, 266, 133, 0, 3379, 3452, 1, 0, 0, 0, 3380, 3452, 3, 374, 187, 0, 3381, 3382, 5, 2, 0, 0, 3382, 3383, 3, 266, 133, 0, 3383, 3384, 5, 3, 0, 0, 3384, 3452, 1, 0, 0, 0, 3385, 3386, 5, 110, 0, 0, 3386, 3387, 5, 2, 0, 0, 3387, 3388, 3, 374, 187, 0, 3388, 3389, 5, 123, 0, 0, 3389, 3390, 3, 278, 139, 0, 3390, 3391, 5, 3, 0, 0, 3391, 3452, 1, 0, 0, 0, 3392, 3393, 7, 40, 0, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3396, 7, 41, 0, 0, 3396, 3399, 3, 278, 139, 0, 3397, 3398, 7, 42, 0, 0, 3398, 3400, 3, 278, 139, 0, 3399, 3397, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 5, 3, 0, 0, 3402, 3452, 1, 0, 0, 0, 3403, 3404, 5, 314, 0, 0, 3404, 3406, 5, 2, 0, 0, 3405, 3407, 7, 43, 0, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, 0, 3408, 3410, 3, 278, 139, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 5, 123, 0, 0, 3412, 3413, 3, 278, 139, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3452, 1, 0, 0, 0, 3415, 3416, 5, 214, 0, 0, 3416, 3417, 5, 2, 0, 0, 3417, 3418, 3, 278, 139, 0, 3418, 3419, 5, 223, 0, 0, 3419, 3420, 3, 278, 139, 0, 3420, 3421, 5, 123, 0, 0, 3421, 3424, 3, 278, 139, 0, 3422, 3423, 5, 119, 0, 0, 3423, 3425, 3, 278, 139, 0, 3424, 3422, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3427, 5, 3, 0, 0, 3427, 3452, 1, 0, 0, 0, 3428, 3429, 7, 44, 0, 0, 3429, 3430, 5, 2, 0, 0, 3430, 3431, 3, 278, 139, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3433, 5, 346, 0, 0, 3433, 3434, 5, 130, 0, 0, 3434, 3435, 5, 2, 0, 0, 3435, 3436, 5, 208, 0, 0, 3436, 3437, 5, 31, 0, 0, 3437, 3438, 3, 106, 53, 0, 3438, 3445, 5, 3, 0, 0, 3439, 3440, 5, 114, 0, 0, 3440, 3441, 5, 2, 0, 0, 3441, 3442, 5, 343, 0, 0, 3442, 3443, 3, 274, 137, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3439, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3448, 5, 212, 0, 0, 3448, 3450, 3, 356, 178, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3452, 1, 0, 0, 0, 3451, 3202, 1, 0, 0, 0, 3451, 3204, 1, 0, 0, 0, 3451, 3216, 1, 0, 0, 0, 3451, 3228, 1, 0, 0, 0, 3451, 3240, 1, 0, 0, 0, 3451, 3253, 1, 0, 0, 0, 3451, 3260, 1, 0, 0, 0, 3451, 3273, 1, 0, 0, 0, 3451, 3282, 1, 0, 0, 0, 3451, 3291, 1, 0, 0, 0, 3451, 3300, 1, 0, 0, 0, 3451, 3307, 1, 0, 0, 0, 3451, 3308, 1, 0, 0, 0, 3451, 3309, 1, 0, 0, 0, 3451, 3313, 1, 0, 0, 0, 3451, 3323, 1, 0, 0, 0, 3451, 3327, 1, 0, 0, 0, 3451, 3332, 1, 0, 0, 0, 3451, 3364, 1, 0, 0, 0, 3451, 3368, 1, 0, 0, 0, 3451, 3380, 1, 0, 0, 0, 3451, 3381, 1, 0, 0, 0, 3451, 3385, 1, 0, 0, 0, 3451, 3392, 1, 0, 0, 0, 3451, 3403, 1, 0, 0, 0, 3451, 3415, 1, 0, 0, 0, 3451, 3428, 1, 0, 0, 0, 3452, 3463, 1, 0, 0, 0, 3453, 3454, 10, 9, 0, 0, 3454, 3455, 5, 6, 0, 0, 3455, 3456, 3, 278, 139, 0, 3456, 3457, 5, 7, 0, 0, 3457, 3462, 1, 0, 0, 0, 3458, 3459, 10, 7, 0, 0, 3459, 3460, 5, 5, 0, 0, 3460, 3462, 3, 374, 187, 0, 3461, 3453, 1, 0, 0, 0, 3461, 3458, 1, 0, 0, 0, 3462, 3465, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 283, 1, 0, 0, 0, 3465, 3463, 1, 0, 0, 0, 3466, 3474, 5, 71, 0, 0, 3467, 3474, 5, 302, 0, 0, 3468, 3474, 5, 303, 0, 0, 3469, 3474, 5, 304, 0, 0, 3470, 3474, 5, 149, 0, 0, 3471, 3474, 5, 133, 0, 0, 3472, 3474, 3, 374, 187, 0, 3473, 3466, 1, 0, 0, 0, 3473, 3467, 1, 0, 0, 0, 3473, 3468, 1, 0, 0, 0, 3473, 3469, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3472, 1, 0, 0, 0, 3474, 285, 1, 0, 0, 0, 3475, 3491, 5, 197, 0, 0, 3476, 3491, 5, 375, 0, 0, 3477, 3478, 5, 370, 0, 0, 3478, 3491, 3, 374, 187, 0, 3479, 3491, 3, 296, 148, 0, 3480, 3481, 3, 284, 142, 0, 3481, 3482, 3, 386, 193, 0, 3482, 3491, 1, 0, 0, 0, 3483, 3491, 3, 382, 191, 0, 3484, 3491, 3, 294, 147, 0, 3485, 3487, 3, 386, 193, 0, 3486, 3485, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 1, 0, 0, 0, 3490, 3475, 1, 0, 0, 0, 3490, 3476, 1, 0, 0, 0, 3490, 3477, 1, 0, 0, 0, 3490, 3479, 1, 0, 0, 0, 3490, 3480, 1, 0, 0, 0, 3490, 3483, 1, 0, 0, 0, 3490, 3484, 1, 0, 0, 0, 3490, 3486, 1, 0, 0, 0, 3491, 287, 1, 0, 0, 0, 3492, 3493, 7, 45, 0, 0, 3493, 289, 1, 0, 0, 0, 3494, 3495, 7, 46, 0, 0, 3495, 291, 1, 0, 0, 0, 3496, 3497, 7, 47, 0, 0, 3497, 293, 1, 0, 0, 0, 3498, 3499, 7, 48, 0, 0, 3499, 295, 1, 0, 0, 0, 3500, 3503, 5, 149, 0, 0, 3501, 3504, 3, 298, 149, 0, 3502, 3504, 3, 302, 151, 0, 3503, 3501, 1, 0, 0, 0, 3503, 3502, 1, 0, 0, 0, 3504, 297, 1, 0, 0, 0, 3505, 3507, 3, 300, 150, 0, 3506, 3508, 3, 304, 152, 0, 3507, 3506, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 299, 1, 0, 0, 0, 3509, 3510, 3, 306, 153, 0, 3510, 3511, 3, 308, 154, 0, 3511, 3513, 1, 0, 0, 0, 3512, 3509, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 3512, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 301, 1, 0, 0, 0, 3516, 3519, 3, 304, 152, 0, 3517, 3520, 3, 300, 150, 0, 3518, 3520, 3, 304, 152, 0, 3519, 3517, 1, 0, 0, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 303, 1, 0, 0, 0, 3521, 3522, 3, 306, 153, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3524, 5, 308, 0, 0, 3524, 3525, 3, 310, 155, 0, 3525, 305, 1, 0, 0, 0, 3526, 3528, 7, 49, 0, 0, 3527, 3526, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3532, 1, 0, 0, 0, 3529, 3533, 5, 381, 0, 0, 3530, 3533, 5, 383, 0, 0, 3531, 3533, 3, 386, 193, 0, 3532, 3529, 1, 0, 0, 0, 3532, 3530, 1, 0, 0, 0, 3532, 3531, 1, 0, 0, 0, 3533, 307, 1, 0, 0, 0, 3534, 3535, 7, 50, 0, 0, 3535, 309, 1, 0, 0, 0, 3536, 3537, 7, 51, 0, 0, 3537, 311, 1, 0, 0, 0, 3538, 3542, 5, 116, 0, 0, 3539, 3540, 5, 9, 0, 0, 3540, 3542, 3, 370, 185, 0, 3541, 3538, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3542, 313, 1, 0, 0, 0, 3543, 3574, 5, 27, 0, 0, 3544, 3574, 5, 307, 0, 0, 3545, 3574, 5, 32, 0, 0, 3546, 3574, 5, 275, 0, 0, 3547, 3574, 5, 271, 0, 0, 3548, 3574, 5, 150, 0, 0, 3549, 3574, 5, 151, 0, 0, 3550, 3574, 5, 25, 0, 0, 3551, 3574, 5, 173, 0, 0, 3552, 3574, 5, 117, 0, 0, 3553, 3574, 5, 233, 0, 0, 3554, 3574, 5, 95, 0, 0, 3555, 3574, 5, 71, 0, 0, 3556, 3574, 5, 302, 0, 0, 3557, 3574, 5, 304, 0, 0, 3558, 3574, 5, 303, 0, 0, 3559, 3574, 5, 284, 0, 0, 3560, 3574, 5, 41, 0, 0, 3561, 3574, 5, 40, 0, 0, 3562, 3574, 5, 333, 0, 0, 3563, 3574, 5, 26, 0, 0, 3564, 3574, 5, 80, 0, 0, 3565, 3574, 5, 79, 0, 0, 3566, 3574, 5, 199, 0, 0, 3567, 3574, 5, 339, 0, 0, 3568, 3574, 5, 149, 0, 0, 3569, 3574, 5, 19, 0, 0, 3570, 3574, 5, 285, 0, 0, 3571, 3574, 5, 176, 0, 0, 3572, 3574, 3, 374, 187, 0, 3573, 3543, 1, 0, 0, 0, 3573, 3544, 1, 0, 0, 0, 3573, 3545, 1, 0, 0, 0, 3573, 3546, 1, 0, 0, 0, 3573, 3547, 1, 0, 0, 0, 3573, 3548, 1, 0, 0, 0, 3573, 3549, 1, 0, 0, 0, 3573, 3550, 1, 0, 0, 0, 3573, 3551, 1, 0, 0, 0, 3573, 3552, 1, 0, 0, 0, 3573, 3553, 1, 0, 0, 0, 3573, 3554, 1, 0, 0, 0, 3573, 3555, 1, 0, 0, 0, 3573, 3556, 1, 0, 0, 0, 3573, 3557, 1, 0, 0, 0, 3573, 3558, 1, 0, 0, 0, 3573, 3559, 1, 0, 0, 0, 3573, 3560, 1, 0, 0, 0, 3573, 3561, 1, 0, 0, 0, 3573, 3562, 1, 0, 0, 0, 3573, 3563, 1, 0, 0, 0, 3573, 3564, 1, 0, 0, 0, 3573, 3565, 1, 0, 0, 0, 3573, 3566, 1, 0, 0, 0, 3573, 3567, 1, 0, 0, 0, 3573, 3568, 1, 0, 0, 0, 3573, 3569, 1, 0, 0, 0, 3573, 3570, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3573, 3572, 1, 0, 0, 0, 3574, 315, 1, 0, 0, 0, 3575, 3576, 5, 19, 0, 0, 3576, 3577, 5, 355, 0, 0, 3577, 3578, 3, 316, 158, 0, 3578, 3579, 5, 357, 0, 0, 3579, 3622, 1, 0, 0, 0, 3580, 3581, 5, 176, 0, 0, 3581, 3582, 5, 355, 0, 0, 3582, 3583, 3, 316, 158, 0, 3583, 3584, 5, 4, 0, 0, 3584, 3585, 3, 316, 158, 0, 3585, 3586, 5, 357, 0, 0, 3586, 3622, 1, 0, 0, 0, 3587, 3594, 5, 285, 0, 0, 3588, 3590, 5, 355, 0, 0, 3589, 3591, 3, 344, 172, 0, 3590, 3589, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3595, 5, 357, 0, 0, 3593, 3595, 5, 353, 0, 0, 3594, 3588, 1, 0, 0, 0, 3594, 3593, 1, 0, 0, 0, 3595, 3622, 1, 0, 0, 0, 3596, 3597, 5, 149, 0, 0, 3597, 3600, 7, 52, 0, 0, 3598, 3599, 5, 308, 0, 0, 3599, 3601, 5, 185, 0, 0, 3600, 3598, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3622, 1, 0, 0, 0, 3602, 3603, 5, 149, 0, 0, 3603, 3606, 7, 53, 0, 0, 3604, 3605, 5, 308, 0, 0, 3605, 3607, 7, 54, 0, 0, 3606, 3604, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3622, 1, 0, 0, 0, 3608, 3619, 3, 314, 157, 0, 3609, 3610, 5, 2, 0, 0, 3610, 3615, 5, 381, 0, 0, 3611, 3612, 5, 4, 0, 0, 3612, 3614, 5, 381, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3617, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3618, 1, 0, 0, 0, 3617, 3615, 1, 0, 0, 0, 3618, 3620, 5, 3, 0, 0, 3619, 3609, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3622, 1, 0, 0, 0, 3621, 3575, 1, 0, 0, 0, 3621, 3580, 1, 0, 0, 0, 3621, 3587, 1, 0, 0, 0, 3621, 3596, 1, 0, 0, 0, 3621, 3602, 1, 0, 0, 0, 3621, 3608, 1, 0, 0, 0, 3622, 317, 1, 0, 0, 0, 3623, 3628, 3, 320, 160, 0, 3624, 3625, 5, 4, 0, 0, 3625, 3627, 3, 320, 160, 0, 3626, 3624, 1, 0, 0, 0, 3627, 3630, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 319, 1, 0, 0, 0, 3630, 3628, 1, 0, 0, 0, 3631, 3632, 3, 94, 47, 0, 3632, 3636, 3, 316, 158, 0, 3633, 3635, 3, 326, 163, 0, 3634, 3633, 1, 0, 0, 0, 3635, 3638, 1, 0, 0, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 321, 1, 0, 0, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3644, 3, 324, 162, 0, 3640, 3641, 5, 4, 0, 0, 3641, 3643, 3, 324, 162, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3646, 1, 0, 0, 0, 3644, 3642, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 323, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3647, 3648, 3, 90, 45, 0, 3648, 3652, 3, 316, 158, 0, 3649, 3651, 3, 326, 163, 0, 3650, 3649, 1, 0, 0, 0, 3651, 3654, 1, 0, 0, 0, 3652, 3650, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 325, 1, 0, 0, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3656, 5, 196, 0, 0, 3656, 3661, 5, 197, 0, 0, 3657, 3661, 3, 328, 164, 0, 3658, 3661, 3, 24, 12, 0, 3659, 3661, 3, 312, 156, 0, 3660, 3655, 1, 0, 0, 0, 3660, 3657, 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3660, 3659, 1, 0, 0, 0, 3661, 327, 1, 0, 0, 0, 3662, 3663, 5, 82, 0, 0, 3663, 3664, 3, 266, 133, 0, 3664, 329, 1, 0, 0, 0, 3665, 3666, 7, 55, 0, 0, 3666, 3667, 3, 266, 133, 0, 3667, 331, 1, 0, 0, 0, 3668, 3673, 3, 334, 167, 0, 3669, 3670, 5, 4, 0, 0, 3670, 3672, 3, 334, 167, 0, 3671, 3669, 1, 0, 0, 0, 3672, 3675, 1, 0, 0, 0, 3673, 3671, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 333, 1, 0, 0, 0, 3675, 3673, 1, 0, 0, 0, 3676, 3677, 3, 370, 185, 0, 3677, 3680, 3, 316, 158, 0, 3678, 3679, 5, 196, 0, 0, 3679, 3681, 5, 197, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3683, 1, 0, 0, 0, 3682, 3684, 3, 24, 12, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 335, 1, 0, 0, 0, 3685, 3690, 3, 338, 169, 0, 3686, 3687, 5, 4, 0, 0, 3687, 3689, 3, 338, 169, 0, 3688, 3686, 1, 0, 0, 0, 3689, 3692, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 337, 1, 0, 0, 0, 3692, 3690, 1, 0, 0, 0, 3693, 3694, 3, 94, 47, 0, 3694, 3698, 3, 316, 158, 0, 3695, 3697, 3, 340, 170, 0, 3696, 3695, 1, 0, 0, 0, 3697, 3700, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 339, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3702, 5, 196, 0, 0, 3702, 3707, 5, 197, 0, 0, 3703, 3707, 3, 328, 164, 0, 3704, 3707, 3, 342, 171, 0, 3705, 3707, 3, 24, 12, 0, 3706, 3701, 1, 0, 0, 0, 3706, 3703, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3705, 1, 0, 0, 0, 3707, 341, 1, 0, 0, 0, 3708, 3709, 5, 127, 0, 0, 3709, 3710, 5, 12, 0, 0, 3710, 3711, 5, 20, 0, 0, 3711, 3712, 5, 2, 0, 0, 3712, 3713, 3, 266, 133, 0, 3713, 3714, 5, 3, 0, 0, 3714, 343, 1, 0, 0, 0, 3715, 3720, 3, 346, 173, 0, 3716, 3717, 5, 4, 0, 0, 3717, 3719, 3, 346, 173, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 345, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3725, 3, 374, 187, 0, 3724, 3726, 5, 370, 0, 0, 3725, 3724, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3730, 3, 316, 158, 0, 3728, 3729, 5, 196, 0, 0, 3729, 3731, 5, 197, 0, 0, 3730, 3728, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3733, 1, 0, 0, 0, 3732, 3734, 3, 24, 12, 0, 3733, 3732, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 347, 1, 0, 0, 0, 3735, 3736, 5, 342, 0, 0, 3736, 3737, 3, 266, 133, 0, 3737, 3738, 5, 299, 0, 0, 3738, 3739, 3, 266, 133, 0, 3739, 349, 1, 0, 0, 0, 3740, 3741, 5, 344, 0, 0, 3741, 3746, 3, 354, 177, 0, 3742, 3743, 5, 4, 0, 0, 3743, 3745, 3, 354, 177, 0, 3744, 3742, 1, 0, 0, 0, 3745, 3748, 1, 0, 0, 0, 3746, 3744, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 351, 1, 0, 0, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3750, 5, 350, 0, 0, 3750, 3751, 5, 31, 0, 0, 3751, 3752, 3, 92, 46, 0, 3752, 353, 1, 0, 0, 0, 3753, 3754, 3, 370, 185, 0, 3754, 3755, 5, 20, 0, 0, 3755, 3756, 3, 356, 178, 0, 3756, 355, 1, 0, 0, 0, 3757, 3804, 3, 370, 185, 0, 3758, 3759, 5, 2, 0, 0, 3759, 3760, 3, 370, 185, 0, 3760, 3761, 5, 3, 0, 0, 3761, 3804, 1, 0, 0, 0, 3762, 3797, 5, 2, 0, 0, 3763, 3764, 5, 44, 0, 0, 3764, 3765, 5, 31, 0, 0, 3765, 3770, 3, 266, 133, 0, 3766, 3767, 5, 4, 0, 0, 3767, 3769, 3, 266, 133, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3798, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3774, 7, 24, 0, 0, 3774, 3775, 5, 31, 0, 0, 3775, 3780, 3, 266, 133, 0, 3776, 3777, 5, 4, 0, 0, 3777, 3779, 3, 266, 133, 0, 3778, 3776, 1, 0, 0, 0, 3779, 3782, 1, 0, 0, 0, 3780, 3778, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3783, 3773, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3795, 1, 0, 0, 0, 3785, 3786, 7, 25, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 106, 53, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 106, 53, 0, 3790, 3788, 1, 0, 0, 0, 3791, 3794, 1, 0, 0, 0, 3792, 3790, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3796, 1, 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3785, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3798, 1, 0, 0, 0, 3797, 3763, 1, 0, 0, 0, 3797, 3783, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3801, 3, 358, 179, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3804, 5, 3, 0, 0, 3803, 3757, 1, 0, 0, 0, 3803, 3758, 1, 0, 0, 0, 3803, 3762, 1, 0, 0, 0, 3804, 357, 1, 0, 0, 0, 3805, 3806, 5, 232, 0, 0, 3806, 3822, 3, 360, 180, 0, 3807, 3808, 5, 257, 0, 0, 3808, 3822, 3, 360, 180, 0, 3809, 3810, 5, 232, 0, 0, 3810, 3811, 5, 24, 0, 0, 3811, 3812, 3, 360, 180, 0, 3812, 3813, 5, 14, 0, 0, 3813, 3814, 3, 360, 180, 0, 3814, 3822, 1, 0, 0, 0, 3815, 3816, 5, 257, 0, 0, 3816, 3817, 5, 24, 0, 0, 3817, 3818, 3, 360, 180, 0, 3818, 3819, 5, 14, 0, 0, 3819, 3820, 3, 360, 180, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3805, 1, 0, 0, 0, 3821, 3807, 1, 0, 0, 0, 3821, 3809, 1, 0, 0, 0, 3821, 3815, 1, 0, 0, 0, 3822, 359, 1, 0, 0, 0, 3823, 3824, 5, 320, 0, 0, 3824, 3831, 7, 56, 0, 0, 3825, 3826, 5, 62, 0, 0, 3826, 3831, 5, 256, 0, 0, 3827, 3828, 3, 266, 133, 0, 3828, 3829, 7, 56, 0, 0, 3829, 3831, 1, 0, 0, 0, 3830, 3823, 1, 0, 0, 0, 3830, 3825, 1, 0, 0, 0, 3830, 3827, 1, 0, 0, 0, 3831, 361, 1, 0, 0, 0, 3832, 3837, 3, 368, 184, 0, 3833, 3834, 5, 4, 0, 0, 3834, 3836, 3, 368, 184, 0, 3835, 3833, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 363, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3841, 5, 136, 0, 0, 3841, 3842, 5, 2, 0, 0, 3842, 3843, 3, 266, 133, 0, 3843, 3844, 5, 3, 0, 0, 3844, 3850, 1, 0, 0, 0, 3845, 3850, 3, 368, 184, 0, 3846, 3850, 5, 114, 0, 0, 3847, 3850, 5, 161, 0, 0, 3848, 3850, 5, 249, 0, 0, 3849, 3840, 1, 0, 0, 0, 3849, 3845, 1, 0, 0, 0, 3849, 3846, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3848, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3852, 3, 368, 184, 0, 3852, 367, 1, 0, 0, 0, 3853, 3858, 3, 374, 187, 0, 3854, 3855, 5, 5, 0, 0, 3855, 3857, 3, 374, 187, 0, 3856, 3854, 1, 0, 0, 0, 3857, 3860, 1, 0, 0, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 369, 1, 0, 0, 0, 3860, 3858, 1, 0, 0, 0, 3861, 3862, 3, 374, 187, 0, 3862, 3863, 3, 372, 186, 0, 3863, 371, 1, 0, 0, 0, 3864, 3865, 5, 361, 0, 0, 3865, 3867, 3, 374, 187, 0, 3866, 3864, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3866, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3872, 1, 0, 0, 0, 3871, 3866, 1, 0, 0, 0, 3871, 3870, 1, 0, 0, 0, 3872, 373, 1, 0, 0, 0, 3873, 3876, 3, 376, 188, 0, 3874, 3876, 3, 394, 197, 0, 3875, 3873, 1, 0, 0, 0, 3875, 3874, 1, 0, 0, 0, 3876, 375, 1, 0, 0, 0, 3877, 3882, 5, 387, 0, 0, 3878, 3882, 3, 378, 189, 0, 3879, 3882, 3, 392, 196, 0, 3880, 3882, 3, 396, 198, 0, 3881, 3877, 1, 0, 0, 0, 3881, 3878, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3881, 3880, 1, 0, 0, 0, 3882, 377, 1, 0, 0, 0, 3883, 3884, 7, 57, 0, 0, 3884, 379, 1, 0, 0, 0, 3885, 3886, 5, 388, 0, 0, 3886, 381, 1, 0, 0, 0, 3887, 3889, 5, 361, 0, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3928, 5, 382, 0, 0, 3891, 3893, 5, 361, 0, 0, 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3928, 5, 383, 0, 0, 3895, 3897, 5, 361, 0, 0, 3896, 3895, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3928, 7, 58, 0, 0, 3899, 3901, 5, 361, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3928, 5, 381, 0, 0, 3903, 3905, 5, 361, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3928, 5, 378, 0, 0, 3907, 3909, 5, 361, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3928, 5, 379, 0, 0, 3911, 3913, 5, 361, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3928, 5, 380, 0, 0, 3915, 3917, 5, 361, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3928, 5, 385, 0, 0, 3919, 3921, 5, 361, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3928, 5, 384, 0, 0, 3923, 3925, 5, 361, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3928, 5, 386, 0, 0, 3927, 3888, 1, 0, 0, 0, 3927, 3892, 1, 0, 0, 0, 3927, 3896, 1, 0, 0, 0, 3927, 3900, 1, 0, 0, 0, 3927, 3904, 1, 0, 0, 0, 3927, 3908, 1, 0, 0, 0, 3927, 3912, 1, 0, 0, 0, 3927, 3916, 1, 0, 0, 0, 3927, 3920, 1, 0, 0, 0, 3927, 3924, 1, 0, 0, 0, 3928, 383, 1, 0, 0, 0, 3929, 3930, 5, 318, 0, 0, 3930, 3941, 3, 316, 158, 0, 3931, 3941, 3, 24, 12, 0, 3932, 3941, 3, 312, 156, 0, 3933, 3934, 7, 59, 0, 0, 3934, 3935, 5, 196, 0, 0, 3935, 3941, 5, 197, 0, 0, 3936, 3937, 5, 268, 0, 0, 3937, 3941, 3, 328, 164, 0, 3938, 3939, 5, 96, 0, 0, 3939, 3941, 5, 82, 0, 0, 3940, 3929, 1, 0, 0, 0, 3940, 3931, 1, 0, 0, 0, 3940, 3932, 1, 0, 0, 0, 3940, 3933, 1, 0, 0, 0, 3940, 3936, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3941, 385, 1, 0, 0, 0, 3942, 3943, 7, 60, 0, 0, 3943, 387, 1, 0, 0, 0, 3944, 3947, 3, 386, 193, 0, 3945, 3947, 5, 197, 0, 0, 3946, 3944, 1, 0, 0, 0, 3946, 3945, 1, 0, 0, 0, 3947, 389, 1, 0, 0, 0, 3948, 3951, 5, 381, 0, 0, 3949, 3951, 3, 386, 193, 0, 3950, 3948, 1, 0, 0, 0, 3950, 3949, 1, 0, 0, 0, 3951, 391, 1, 0, 0, 0, 3952, 3953, 7, 61, 0, 0, 3953, 393, 1, 0, 0, 0, 3954, 3955, 7, 62, 0, 0, 3955, 395, 1, 0, 0, 0, 3956, 3957, 7, 63, 0, 0, 3957, 397, 1, 0, 0, 0, 514, 401, 408, 412, 425, 430, 438, 440, 459, 463, 469, 472, 475, 482, 485, 489, 492, 497, 508, 510, 518, 521, 525, 528, 534, 545, 551, 556, 589, 599, 610, 621, 632, 637, 646, 650, 656, 660, 665, 671, 683, 691, 697, 708, 712, 717, 732, 736, 743, 747, 753, 782, 786, 791, 798, 804, 807, 810, 814, 818, 826, 828, 837, 840, 849, 854, 860, 867, 870, 874, 885, 888, 894, 898, 913, 915, 923, 927, 933, 936, 940, 943, 949, 954, 958, 965, 968, 971, 978, 983, 992, 1000, 1006, 1009, 1012, 1018, 1022, 1027, 1030, 1034, 1036, 1044, 1052, 1055, 1062, 1065, 1068, 1077, 1082, 1088, 1093, 1096, 1100, 1103, 1107, 1135, 1138, 1146, 1152, 1155, 1158, 1163, 1171, 1176, 1182, 1188, 1191, 1198, 1205, 1213, 1230, 1257, 1260, 1266, 1275, 1284, 1290, 1295, 1300, 1307, 1312, 1317, 1324, 1332, 1335, 1339, 1351, 1355, 1362, 1478, 1486, 1494, 1503, 1513, 1517, 1520, 1524, 1530, 1542, 1554, 1559, 1568, 1576, 1581, 1583, 1591, 1596, 1600, 1603, 1611, 1616, 1625, 1630, 1633, 1638, 1642, 1647, 1649, 1653, 1662, 1670, 1676, 1687, 1694, 1703, 1708, 1711, 1733, 1735, 1744, 1751, 1754, 1761, 1765, 1771, 1779, 1786, 1789, 1797, 1808, 1819, 1827, 1833, 1845, 1852, 1859, 1871, 1879, 1885, 1891, 1894, 1915, 1926, 1935, 1938, 1947, 1950, 1959, 1962, 1971, 1974, 1977, 1982, 1984, 1988, 1999, 2005, 2011, 2014, 2016, 2028, 2032, 2035, 2039, 2045, 2049, 2057, 2061, 2064, 2067, 2070, 2074, 2078, 2083, 2087, 2090, 2093, 2096, 2100, 2105, 2109, 2112, 2115, 2118, 2120, 2126, 2133, 2138, 2141, 2144, 2148, 2158, 2162, 2164, 2167, 2171, 2177, 2181, 2192, 2202, 2206, 2218, 2230, 2245, 2250, 2256, 2263, 2279, 2284, 2297, 2302, 2310, 2316, 2320, 2323, 2328, 2335, 2341, 2350, 2360, 2375, 2380, 2382, 2387, 2396, 2409, 2414, 2418, 2425, 2430, 2434, 2437, 2440, 2454, 2467, 2472, 2476, 2479, 2483, 2489, 2492, 2499, 2511, 2522, 2535, 2546, 2551, 2559, 2564, 2578, 2587, 2590, 2595, 2602, 2605, 2610, 2616, 2620, 2625, 2630, 2634, 2640, 2644, 2647, 2652, 2655, 2660, 2664, 2667, 2670, 2676, 2681, 2688, 2691, 2709, 2711, 2714, 2725, 2734, 2741, 2749, 2756, 2760, 2763, 2771, 2779, 2785, 2793, 2801, 2808, 2815, 2817, 2830, 2836, 2838, 2848, 2854, 2856, 2864, 2868, 2877, 2880, 2886, 2890, 2892, 2901, 2913, 2915, 2922, 2929, 2935, 2941, 2943, 2950, 2958, 2966, 2972, 2977, 2984, 2990, 2993, 2997, 2999, 3006, 3015, 3022, 3032, 3037, 3041, 3051, 3058, 3071, 3073, 3081, 3083, 3087, 3095, 3104, 3110, 3118, 3123, 3135, 3140, 3143, 3149, 3153, 3158, 3163, 3168, 3174, 3195, 3197, 3208, 3220, 3232, 3236, 3245, 3249, 3267, 3270, 3278, 3287, 3296, 3319, 3335, 3342, 3345, 3354, 3358, 3362, 3374, 3399, 3406, 3409, 3424, 3445, 3449, 3451, 3461, 3463, 3473, 3488, 3490, 3503, 3507, 3514, 3519, 3527, 3532, 3541, 3573, 3590, 3594, 3600, 3606, 3615, 3619, 3621, 3628, 3636, 3644, 3652, 3660, 3673, 3680, 3683, 3690, 3698, 3706, 3720, 3725, 3730, 3733, 3746, 3770, 3780, 3783, 3792, 3795, 3797, 3800, 3803, 3821, 3830, 3837, 3849, 3858, 3868, 3871, 3875, 3881, 3888, 3892, 3896, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3927, 3940, 3946, 3950] \ No newline at end of file +[4, 1, 392, 3959, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 3, 2, 413, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 426, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 431, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 439, 8, 2, 10, 2, 12, 2, 442, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 460, 8, 2, 1, 2, 1, 2, 3, 2, 464, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 470, 8, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 3, 2, 476, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 3, 2, 486, 8, 2, 1, 2, 1, 2, 3, 2, 490, 8, 2, 1, 2, 3, 2, 493, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 498, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 509, 8, 2, 10, 2, 12, 2, 512, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 519, 8, 2, 1, 2, 3, 2, 522, 8, 2, 1, 2, 1, 2, 3, 2, 526, 8, 2, 1, 2, 3, 2, 529, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 535, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 546, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 552, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 557, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 590, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 600, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 611, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 622, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 633, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 638, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 647, 8, 2, 1, 2, 1, 2, 3, 2, 651, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 657, 8, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 666, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 672, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 684, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 692, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 709, 8, 2, 1, 2, 1, 2, 3, 2, 713, 8, 2, 1, 2, 4, 2, 716, 8, 2, 11, 2, 12, 2, 717, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 733, 8, 2, 1, 2, 1, 2, 3, 2, 737, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 742, 8, 2, 10, 2, 12, 2, 745, 9, 2, 1, 2, 3, 2, 748, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 754, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 783, 8, 2, 1, 2, 1, 2, 3, 2, 787, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 792, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 799, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 805, 8, 2, 1, 2, 3, 2, 808, 8, 2, 1, 2, 3, 2, 811, 8, 2, 1, 2, 1, 2, 3, 2, 815, 8, 2, 1, 2, 1, 2, 3, 2, 819, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 827, 8, 2, 10, 2, 12, 2, 830, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 838, 8, 2, 1, 2, 3, 2, 841, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 850, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 855, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 861, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 868, 8, 2, 1, 2, 3, 2, 871, 8, 2, 1, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 884, 8, 2, 10, 2, 12, 2, 887, 9, 2, 3, 2, 889, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 895, 8, 2, 1, 2, 1, 2, 3, 2, 899, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 914, 8, 2, 10, 2, 12, 2, 917, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 924, 8, 2, 1, 2, 1, 2, 3, 2, 928, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 934, 8, 2, 1, 2, 3, 2, 937, 8, 2, 1, 2, 1, 2, 3, 2, 941, 8, 2, 1, 2, 3, 2, 944, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 950, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 955, 8, 2, 1, 2, 1, 2, 3, 2, 959, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 966, 8, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 3, 2, 972, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 979, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 984, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 993, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1001, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 3, 2, 1013, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1019, 8, 2, 1, 2, 1, 2, 3, 2, 1023, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1028, 8, 2, 1, 2, 3, 2, 1031, 8, 2, 1, 2, 1, 2, 3, 2, 1035, 8, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1045, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1053, 8, 2, 1, 2, 3, 2, 1056, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1063, 8, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 3, 2, 1069, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1078, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1083, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1089, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1094, 8, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 1, 2, 3, 2, 1101, 8, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 1, 2, 3, 2, 1108, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1134, 8, 2, 10, 2, 12, 2, 1137, 9, 2, 3, 2, 1139, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1147, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1153, 8, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 3, 2, 1159, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1164, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1172, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1177, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1183, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1189, 8, 2, 1, 2, 3, 2, 1192, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1199, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1204, 8, 2, 10, 2, 12, 2, 1207, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1212, 8, 2, 10, 2, 12, 2, 1215, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1229, 8, 2, 10, 2, 12, 2, 1232, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1256, 8, 2, 10, 2, 12, 2, 1259, 9, 2, 3, 2, 1261, 8, 2, 1, 2, 1, 2, 5, 2, 1265, 8, 2, 10, 2, 12, 2, 1268, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1274, 8, 2, 10, 2, 12, 2, 1277, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1283, 8, 2, 10, 2, 12, 2, 1286, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1291, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1296, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1301, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1308, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1313, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1318, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1325, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1331, 8, 2, 10, 2, 12, 2, 1334, 9, 2, 3, 2, 1336, 8, 2, 1, 3, 1, 3, 3, 3, 1340, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1352, 8, 6, 1, 6, 1, 6, 3, 6, 1356, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1363, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1479, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1487, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1495, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1504, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1514, 8, 6, 1, 7, 1, 7, 3, 7, 1518, 8, 7, 1, 7, 3, 7, 1521, 8, 7, 1, 7, 1, 7, 3, 7, 1525, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1531, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1543, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1555, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1560, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1569, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1577, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1582, 8, 14, 3, 14, 1584, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1592, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1597, 8, 14, 1, 14, 1, 14, 3, 14, 1601, 8, 14, 1, 14, 3, 14, 1604, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1612, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1617, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1626, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1631, 8, 14, 1, 14, 3, 14, 1634, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1639, 8, 14, 1, 14, 1, 14, 3, 14, 1643, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1648, 8, 14, 3, 14, 1650, 8, 14, 1, 15, 1, 15, 3, 15, 1654, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1661, 8, 16, 10, 16, 12, 16, 1664, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1671, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1677, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1688, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1693, 8, 21, 10, 21, 12, 21, 1696, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1702, 8, 22, 10, 22, 12, 22, 1705, 9, 22, 1, 23, 1, 23, 3, 23, 1709, 8, 23, 1, 23, 3, 23, 1712, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1734, 8, 25, 10, 25, 12, 25, 1737, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1743, 8, 26, 10, 26, 12, 26, 1746, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 1752, 8, 27, 1, 27, 3, 27, 1755, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 1760, 8, 28, 10, 28, 12, 28, 1763, 9, 28, 1, 28, 3, 28, 1766, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1778, 8, 30, 10, 30, 12, 30, 1781, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 1787, 8, 31, 1, 31, 3, 31, 1790, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1796, 8, 32, 10, 32, 12, 32, 1799, 9, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1807, 8, 33, 10, 33, 12, 33, 1810, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1820, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1828, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 4, 38, 1844, 8, 38, 11, 38, 12, 38, 1845, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1853, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1860, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1872, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1878, 8, 38, 10, 38, 12, 38, 1881, 9, 38, 1, 38, 5, 38, 1884, 8, 38, 10, 38, 12, 38, 1887, 9, 38, 1, 38, 5, 38, 1890, 8, 38, 10, 38, 12, 38, 1893, 9, 38, 3, 38, 1895, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1914, 8, 46, 10, 46, 12, 46, 1917, 9, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1927, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1934, 8, 49, 10, 49, 12, 49, 1937, 9, 49, 3, 49, 1939, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1946, 8, 49, 10, 49, 12, 49, 1949, 9, 49, 3, 49, 1951, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1958, 8, 49, 10, 49, 12, 49, 1961, 9, 49, 3, 49, 1963, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1970, 8, 49, 10, 49, 12, 49, 1973, 9, 49, 3, 49, 1975, 8, 49, 1, 49, 3, 49, 1978, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1983, 8, 49, 3, 49, 1985, 8, 49, 1, 49, 1, 49, 3, 49, 1989, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2000, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2006, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2012, 8, 51, 1, 51, 5, 51, 2015, 8, 51, 10, 51, 12, 51, 2018, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2029, 8, 52, 1, 53, 1, 53, 3, 53, 2033, 8, 53, 1, 53, 3, 53, 2036, 8, 53, 1, 53, 1, 53, 3, 53, 2040, 8, 53, 1, 54, 1, 54, 4, 54, 2044, 8, 54, 11, 54, 12, 54, 2045, 1, 55, 1, 55, 3, 55, 2050, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2056, 8, 55, 10, 55, 12, 55, 2059, 9, 55, 1, 55, 3, 55, 2062, 8, 55, 1, 55, 3, 55, 2065, 8, 55, 1, 55, 3, 55, 2068, 8, 55, 1, 55, 3, 55, 2071, 8, 55, 1, 55, 1, 55, 3, 55, 2075, 8, 55, 1, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 5, 56, 2082, 8, 56, 10, 56, 12, 56, 2085, 9, 56, 1, 56, 3, 56, 2088, 8, 56, 1, 56, 3, 56, 2091, 8, 56, 1, 56, 3, 56, 2094, 8, 56, 1, 56, 3, 56, 2097, 8, 56, 1, 56, 1, 56, 3, 56, 2101, 8, 56, 1, 56, 5, 56, 2104, 8, 56, 10, 56, 12, 56, 2107, 9, 56, 1, 56, 3, 56, 2110, 8, 56, 1, 56, 3, 56, 2113, 8, 56, 1, 56, 3, 56, 2116, 8, 56, 1, 56, 3, 56, 2119, 8, 56, 3, 56, 2121, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2134, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2139, 8, 57, 1, 57, 3, 57, 2142, 8, 57, 1, 57, 3, 57, 2145, 8, 57, 1, 57, 1, 57, 3, 57, 2149, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2159, 8, 57, 1, 57, 1, 57, 3, 57, 2163, 8, 57, 3, 57, 2165, 8, 57, 1, 57, 3, 57, 2168, 8, 57, 1, 57, 1, 57, 3, 57, 2172, 8, 57, 1, 58, 1, 58, 5, 58, 2176, 8, 58, 10, 58, 12, 58, 2179, 9, 58, 1, 58, 3, 58, 2182, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2193, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2203, 8, 61, 1, 61, 1, 61, 3, 61, 2207, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2219, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2231, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2244, 8, 64, 10, 64, 12, 64, 2247, 9, 64, 1, 64, 1, 64, 3, 64, 2251, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2257, 8, 65, 1, 66, 1, 66, 1, 66, 5, 66, 2262, 8, 66, 10, 66, 12, 66, 2265, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 2280, 8, 70, 1, 70, 5, 70, 2283, 8, 70, 10, 70, 12, 70, 2286, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2296, 8, 71, 10, 71, 12, 71, 2299, 9, 71, 1, 71, 1, 71, 3, 71, 2303, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2309, 8, 72, 10, 72, 12, 72, 2312, 9, 72, 1, 72, 5, 72, 2315, 8, 72, 10, 72, 12, 72, 2318, 9, 72, 1, 72, 3, 72, 2321, 8, 72, 1, 72, 3, 72, 2324, 8, 72, 1, 73, 1, 73, 1, 74, 3, 74, 2329, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2336, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2342, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2349, 8, 75, 10, 75, 12, 75, 2352, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2359, 8, 75, 10, 75, 12, 75, 2362, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2374, 8, 75, 10, 75, 12, 75, 2377, 9, 75, 1, 75, 1, 75, 3, 75, 2381, 8, 75, 3, 75, 2383, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2388, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2395, 8, 77, 10, 77, 12, 77, 2398, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2408, 8, 77, 10, 77, 12, 77, 2411, 9, 77, 1, 77, 1, 77, 3, 77, 2415, 8, 77, 1, 78, 1, 78, 3, 78, 2419, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2426, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2431, 8, 79, 5, 79, 2433, 8, 79, 10, 79, 12, 79, 2436, 9, 79, 3, 79, 2438, 8, 79, 1, 79, 3, 79, 2441, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2453, 8, 80, 10, 80, 12, 80, 2456, 9, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2466, 8, 81, 10, 81, 12, 81, 2469, 9, 81, 1, 81, 1, 81, 3, 81, 2473, 8, 81, 1, 82, 1, 82, 3, 82, 2477, 8, 82, 1, 82, 3, 82, 2480, 8, 82, 1, 83, 1, 83, 3, 83, 2484, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2490, 8, 83, 1, 83, 3, 83, 2493, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 2500, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2510, 8, 86, 10, 86, 12, 86, 2513, 9, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2521, 8, 87, 10, 87, 12, 87, 2524, 9, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2534, 8, 87, 10, 87, 12, 87, 2537, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2545, 8, 88, 10, 88, 12, 88, 2548, 9, 88, 1, 88, 1, 88, 3, 88, 2552, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2560, 8, 91, 1, 92, 1, 92, 1, 93, 3, 93, 2565, 8, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2579, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2586, 8, 96, 10, 96, 12, 96, 2589, 9, 96, 3, 96, 2591, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2596, 8, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2601, 8, 96, 10, 96, 12, 96, 2604, 9, 96, 3, 96, 2606, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 2612, 8, 98, 1, 98, 1, 98, 5, 98, 2616, 8, 98, 10, 98, 12, 98, 2619, 9, 98, 3, 98, 2621, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2626, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2631, 8, 100, 1, 100, 1, 100, 3, 100, 2635, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2641, 8, 100, 1, 100, 1, 100, 3, 100, 2645, 8, 100, 1, 101, 3, 101, 2648, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 101, 3, 101, 2656, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2661, 8, 101, 1, 101, 1, 101, 3, 101, 2665, 8, 101, 1, 101, 3, 101, 2668, 8, 101, 1, 101, 3, 101, 2671, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2677, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2682, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2689, 8, 103, 1, 104, 3, 104, 2692, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2710, 8, 104, 3, 104, 2712, 8, 104, 1, 104, 3, 104, 2715, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 5, 106, 2724, 8, 106, 10, 106, 12, 106, 2727, 9, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2733, 8, 107, 10, 107, 12, 107, 2736, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2742, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 2748, 8, 109, 10, 109, 12, 109, 2751, 9, 109, 1, 109, 1, 109, 1, 110, 1, 110, 3, 110, 2757, 8, 110, 1, 111, 1, 111, 3, 111, 2761, 8, 111, 1, 111, 3, 111, 2764, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2772, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2780, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2786, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2792, 8, 112, 10, 112, 12, 112, 2795, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2802, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2809, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2816, 8, 113, 3, 113, 2818, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2829, 8, 114, 10, 114, 12, 114, 2832, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2837, 8, 114, 3, 114, 2839, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2847, 8, 114, 10, 114, 12, 114, 2850, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2855, 8, 114, 3, 114, 2857, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 3, 116, 2865, 8, 116, 1, 117, 1, 117, 3, 117, 2869, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 2876, 8, 118, 10, 118, 12, 118, 2879, 9, 118, 3, 118, 2881, 8, 118, 1, 118, 1, 118, 1, 118, 1, 119, 3, 119, 2887, 8, 119, 1, 119, 1, 119, 3, 119, 2891, 8, 119, 3, 119, 2893, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2902, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2914, 8, 120, 3, 120, 2916, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2923, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2930, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2936, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2942, 8, 120, 3, 120, 2944, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2949, 8, 121, 10, 121, 12, 121, 2952, 9, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2957, 8, 122, 10, 122, 12, 122, 2960, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2965, 8, 123, 10, 123, 12, 123, 2968, 9, 123, 1, 124, 1, 124, 1, 124, 3, 124, 2973, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2978, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2985, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 2991, 8, 127, 1, 127, 3, 127, 2994, 8, 127, 1, 127, 1, 127, 3, 127, 2998, 8, 127, 3, 127, 3000, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3005, 8, 128, 10, 128, 12, 128, 3008, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3014, 8, 129, 10, 129, 12, 129, 3017, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3023, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3031, 8, 131, 10, 131, 12, 131, 3034, 9, 131, 1, 131, 1, 131, 3, 131, 3038, 8, 131, 1, 132, 1, 132, 3, 132, 3042, 8, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 3052, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3057, 8, 136, 10, 136, 12, 136, 3060, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3072, 8, 137, 3, 137, 3074, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3082, 8, 137, 10, 137, 12, 137, 3085, 9, 137, 1, 138, 3, 138, 3088, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3096, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3103, 8, 138, 10, 138, 12, 138, 3106, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3111, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3119, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3124, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3134, 8, 138, 10, 138, 12, 138, 3137, 9, 138, 1, 138, 1, 138, 3, 138, 3141, 8, 138, 1, 138, 3, 138, 3144, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3150, 8, 138, 1, 138, 1, 138, 3, 138, 3154, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3159, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3164, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3169, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3175, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3196, 8, 139, 10, 139, 12, 139, 3199, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3209, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3221, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3231, 8, 141, 11, 141, 12, 141, 3232, 1, 141, 1, 141, 3, 141, 3237, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3244, 8, 141, 11, 141, 12, 141, 3245, 1, 141, 1, 141, 3, 141, 3250, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3266, 8, 141, 10, 141, 12, 141, 3269, 9, 141, 3, 141, 3271, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3279, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3288, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3297, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3318, 8, 141, 11, 141, 12, 141, 3319, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3336, 8, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3341, 8, 141, 10, 141, 12, 141, 3344, 9, 141, 3, 141, 3346, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3355, 8, 141, 1, 141, 1, 141, 3, 141, 3359, 8, 141, 1, 141, 1, 141, 3, 141, 3363, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3373, 8, 141, 11, 141, 12, 141, 3374, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3400, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3407, 8, 141, 1, 141, 3, 141, 3410, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3425, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3446, 8, 141, 1, 141, 1, 141, 3, 141, 3450, 8, 141, 3, 141, 3452, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3462, 8, 141, 10, 141, 12, 141, 3465, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3474, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 3487, 8, 143, 11, 143, 12, 143, 3488, 3, 143, 3491, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 3, 148, 3504, 8, 148, 1, 149, 1, 149, 3, 149, 3508, 8, 149, 1, 150, 1, 150, 1, 150, 4, 150, 3513, 8, 150, 11, 150, 12, 150, 3514, 1, 151, 1, 151, 1, 151, 3, 151, 3520, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 3, 153, 3528, 8, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3533, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, 3542, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3574, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3591, 8, 158, 1, 158, 1, 158, 3, 158, 3595, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3601, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3607, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 3614, 8, 158, 10, 158, 12, 158, 3617, 9, 158, 1, 158, 3, 158, 3620, 8, 158, 3, 158, 3622, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3627, 8, 159, 10, 159, 12, 159, 3630, 9, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3635, 8, 160, 10, 160, 12, 160, 3638, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3643, 8, 161, 10, 161, 12, 161, 3646, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3651, 8, 162, 10, 162, 12, 162, 3654, 9, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3661, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3672, 8, 166, 10, 166, 12, 166, 3675, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3681, 8, 167, 1, 167, 3, 167, 3684, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3689, 8, 168, 10, 168, 12, 168, 3692, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3697, 8, 169, 10, 169, 12, 169, 3700, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3707, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3719, 8, 172, 10, 172, 12, 172, 3722, 9, 172, 1, 173, 1, 173, 3, 173, 3726, 8, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3731, 8, 173, 1, 173, 3, 173, 3734, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 3745, 8, 175, 10, 175, 12, 175, 3748, 9, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3769, 8, 178, 10, 178, 12, 178, 3772, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3779, 8, 178, 10, 178, 12, 178, 3782, 9, 178, 3, 178, 3784, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3791, 8, 178, 10, 178, 12, 178, 3794, 9, 178, 3, 178, 3796, 8, 178, 3, 178, 3798, 8, 178, 1, 178, 3, 178, 3801, 8, 178, 1, 178, 3, 178, 3804, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3822, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3831, 8, 180, 1, 181, 1, 181, 1, 181, 5, 181, 3836, 8, 181, 10, 181, 12, 181, 3839, 9, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3850, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 3857, 8, 184, 10, 184, 12, 184, 3860, 9, 184, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 4, 186, 3867, 8, 186, 11, 186, 12, 186, 3868, 1, 186, 3, 186, 3872, 8, 186, 1, 187, 1, 187, 3, 187, 3876, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3882, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 3, 191, 3889, 8, 191, 1, 191, 1, 191, 3, 191, 3893, 8, 191, 1, 191, 1, 191, 3, 191, 3897, 8, 191, 1, 191, 1, 191, 3, 191, 3901, 8, 191, 1, 191, 1, 191, 3, 191, 3905, 8, 191, 1, 191, 1, 191, 3, 191, 3909, 8, 191, 1, 191, 1, 191, 3, 191, 3913, 8, 191, 1, 191, 1, 191, 3, 191, 3917, 8, 191, 1, 191, 1, 191, 3, 191, 3921, 8, 191, 1, 191, 1, 191, 3, 191, 3925, 8, 191, 1, 191, 3, 191, 3928, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3941, 8, 192, 1, 193, 1, 193, 1, 194, 1, 194, 3, 194, 3947, 8, 194, 1, 195, 1, 195, 3, 195, 3951, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 9, 1135, 1205, 1213, 1230, 1257, 1266, 1275, 1284, 1332, 4, 102, 274, 278, 282, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 64, 2, 0, 78, 78, 228, 228, 2, 0, 34, 34, 246, 246, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 172, 172, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 288, 288, 2, 0, 8, 8, 166, 166, 1, 0, 334, 335, 3, 0, 72, 72, 189, 189, 260, 260, 3, 0, 73, 73, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 269, 269, 322, 322, 3, 0, 102, 102, 269, 269, 322, 322, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 289, 289, 330, 330, 2, 0, 291, 291, 336, 336, 2, 0, 290, 290, 302, 302, 2, 0, 61, 61, 255, 255, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 381, 381, 383, 383, 2, 0, 93, 93, 216, 216, 2, 0, 208, 208, 277, 277, 2, 0, 196, 196, 359, 359, 1, 0, 250, 251, 1, 0, 162, 163, 3, 0, 10, 10, 16, 16, 276, 276, 3, 0, 111, 111, 315, 315, 324, 324, 2, 0, 360, 361, 365, 365, 2, 0, 94, 94, 362, 364, 2, 0, 360, 361, 368, 368, 11, 0, 67, 67, 69, 69, 134, 134, 179, 179, 181, 181, 183, 183, 185, 185, 230, 230, 258, 258, 340, 340, 347, 347, 4, 0, 63, 63, 65, 66, 267, 267, 330, 330, 2, 0, 74, 75, 305, 305, 3, 0, 76, 77, 301, 301, 306, 306, 2, 0, 36, 36, 317, 317, 2, 0, 138, 138, 245, 245, 1, 0, 286, 287, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 310, 310, 1, 0, 219, 220, 1, 0, 351, 358, 2, 0, 94, 94, 360, 369, 4, 0, 14, 14, 140, 140, 196, 196, 207, 207, 2, 0, 111, 111, 315, 315, 1, 0, 360, 361, 7, 0, 67, 68, 134, 135, 179, 186, 191, 192, 258, 259, 340, 341, 347, 348, 6, 0, 67, 67, 134, 134, 183, 183, 185, 185, 258, 258, 347, 347, 2, 0, 185, 185, 347, 347, 4, 0, 67, 67, 134, 134, 183, 183, 258, 258, 3, 0, 134, 134, 183, 183, 258, 258, 2, 0, 82, 82, 351, 351, 2, 0, 118, 118, 225, 225, 2, 0, 377, 377, 388, 388, 1, 0, 382, 383, 2, 0, 96, 96, 268, 268, 1, 0, 376, 377, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 162, 192, 194, 194, 198, 200, 204, 206, 209, 209, 211, 212, 214, 218, 221, 225, 227, 237, 239, 248, 250, 261, 263, 266, 268, 275, 277, 291, 293, 298, 301, 307, 309, 309, 311, 321, 325, 329, 332, 341, 344, 344, 347, 350, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 193, 193, 202, 202, 249, 249, 263, 263, 269, 269, 322, 322, 331, 331, 18, 0, 8, 14, 16, 59, 61, 101, 103, 123, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 192, 194, 194, 196, 201, 203, 248, 250, 261, 264, 268, 270, 321, 323, 330, 332, 350, 4570, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 1335, 1, 0, 0, 0, 6, 1339, 1, 0, 0, 0, 8, 1341, 1, 0, 0, 0, 10, 1343, 1, 0, 0, 0, 12, 1513, 1, 0, 0, 0, 14, 1515, 1, 0, 0, 0, 16, 1530, 1, 0, 0, 0, 18, 1536, 1, 0, 0, 0, 20, 1548, 1, 0, 0, 0, 22, 1561, 1, 0, 0, 0, 24, 1564, 1, 0, 0, 0, 26, 1568, 1, 0, 0, 0, 28, 1649, 1, 0, 0, 0, 30, 1651, 1, 0, 0, 0, 32, 1655, 1, 0, 0, 0, 34, 1676, 1, 0, 0, 0, 36, 1678, 1, 0, 0, 0, 38, 1680, 1, 0, 0, 0, 40, 1687, 1, 0, 0, 0, 42, 1689, 1, 0, 0, 0, 44, 1697, 1, 0, 0, 0, 46, 1706, 1, 0, 0, 0, 48, 1717, 1, 0, 0, 0, 50, 1735, 1, 0, 0, 0, 52, 1738, 1, 0, 0, 0, 54, 1749, 1, 0, 0, 0, 56, 1765, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1773, 1, 0, 0, 0, 62, 1784, 1, 0, 0, 0, 64, 1791, 1, 0, 0, 0, 66, 1802, 1, 0, 0, 0, 68, 1819, 1, 0, 0, 0, 70, 1827, 1, 0, 0, 0, 72, 1829, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1894, 1, 0, 0, 0, 78, 1896, 1, 0, 0, 0, 80, 1898, 1, 0, 0, 0, 82, 1900, 1, 0, 0, 0, 84, 1902, 1, 0, 0, 0, 86, 1904, 1, 0, 0, 0, 88, 1906, 1, 0, 0, 0, 90, 1908, 1, 0, 0, 0, 92, 1910, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1938, 1, 0, 0, 0, 100, 1990, 1, 0, 0, 0, 102, 1993, 1, 0, 0, 0, 104, 2028, 1, 0, 0, 0, 106, 2032, 1, 0, 0, 0, 108, 2041, 1, 0, 0, 0, 110, 2074, 1, 0, 0, 0, 112, 2120, 1, 0, 0, 0, 114, 2141, 1, 0, 0, 0, 116, 2173, 1, 0, 0, 0, 118, 2185, 1, 0, 0, 0, 120, 2188, 1, 0, 0, 0, 122, 2197, 1, 0, 0, 0, 124, 2211, 1, 0, 0, 0, 126, 2230, 1, 0, 0, 0, 128, 2250, 1, 0, 0, 0, 130, 2256, 1, 0, 0, 0, 132, 2258, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2270, 1, 0, 0, 0, 138, 2273, 1, 0, 0, 0, 140, 2276, 1, 0, 0, 0, 142, 2302, 1, 0, 0, 0, 144, 2304, 1, 0, 0, 0, 146, 2325, 1, 0, 0, 0, 148, 2341, 1, 0, 0, 0, 150, 2382, 1, 0, 0, 0, 152, 2387, 1, 0, 0, 0, 154, 2414, 1, 0, 0, 0, 156, 2418, 1, 0, 0, 0, 158, 2440, 1, 0, 0, 0, 160, 2442, 1, 0, 0, 0, 162, 2472, 1, 0, 0, 0, 164, 2474, 1, 0, 0, 0, 166, 2481, 1, 0, 0, 0, 168, 2494, 1, 0, 0, 0, 170, 2499, 1, 0, 0, 0, 172, 2501, 1, 0, 0, 0, 174, 2516, 1, 0, 0, 0, 176, 2540, 1, 0, 0, 0, 178, 2553, 1, 0, 0, 0, 180, 2555, 1, 0, 0, 0, 182, 2557, 1, 0, 0, 0, 184, 2561, 1, 0, 0, 0, 186, 2564, 1, 0, 0, 0, 188, 2568, 1, 0, 0, 0, 190, 2572, 1, 0, 0, 0, 192, 2575, 1, 0, 0, 0, 194, 2607, 1, 0, 0, 0, 196, 2620, 1, 0, 0, 0, 198, 2625, 1, 0, 0, 0, 200, 2644, 1, 0, 0, 0, 202, 2670, 1, 0, 0, 0, 204, 2676, 1, 0, 0, 0, 206, 2678, 1, 0, 0, 0, 208, 2714, 1, 0, 0, 0, 210, 2716, 1, 0, 0, 0, 212, 2720, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2739, 1, 0, 0, 0, 218, 2743, 1, 0, 0, 0, 220, 2754, 1, 0, 0, 0, 222, 2785, 1, 0, 0, 0, 224, 2787, 1, 0, 0, 0, 226, 2817, 1, 0, 0, 0, 228, 2838, 1, 0, 0, 0, 230, 2858, 1, 0, 0, 0, 232, 2864, 1, 0, 0, 0, 234, 2868, 1, 0, 0, 0, 236, 2870, 1, 0, 0, 0, 238, 2892, 1, 0, 0, 0, 240, 2943, 1, 0, 0, 0, 242, 2945, 1, 0, 0, 0, 244, 2953, 1, 0, 0, 0, 246, 2961, 1, 0, 0, 0, 248, 2969, 1, 0, 0, 0, 250, 2977, 1, 0, 0, 0, 252, 2984, 1, 0, 0, 0, 254, 2990, 1, 0, 0, 0, 256, 3001, 1, 0, 0, 0, 258, 3009, 1, 0, 0, 0, 260, 3022, 1, 0, 0, 0, 262, 3037, 1, 0, 0, 0, 264, 3041, 1, 0, 0, 0, 266, 3043, 1, 0, 0, 0, 268, 3045, 1, 0, 0, 0, 270, 3051, 1, 0, 0, 0, 272, 3053, 1, 0, 0, 0, 274, 3073, 1, 0, 0, 0, 276, 3168, 1, 0, 0, 0, 278, 3174, 1, 0, 0, 0, 280, 3200, 1, 0, 0, 0, 282, 3451, 1, 0, 0, 0, 284, 3473, 1, 0, 0, 0, 286, 3490, 1, 0, 0, 0, 288, 3492, 1, 0, 0, 0, 290, 3494, 1, 0, 0, 0, 292, 3496, 1, 0, 0, 0, 294, 3498, 1, 0, 0, 0, 296, 3500, 1, 0, 0, 0, 298, 3505, 1, 0, 0, 0, 300, 3512, 1, 0, 0, 0, 302, 3516, 1, 0, 0, 0, 304, 3521, 1, 0, 0, 0, 306, 3527, 1, 0, 0, 0, 308, 3534, 1, 0, 0, 0, 310, 3536, 1, 0, 0, 0, 312, 3541, 1, 0, 0, 0, 314, 3573, 1, 0, 0, 0, 316, 3621, 1, 0, 0, 0, 318, 3623, 1, 0, 0, 0, 320, 3631, 1, 0, 0, 0, 322, 3639, 1, 0, 0, 0, 324, 3647, 1, 0, 0, 0, 326, 3660, 1, 0, 0, 0, 328, 3662, 1, 0, 0, 0, 330, 3665, 1, 0, 0, 0, 332, 3668, 1, 0, 0, 0, 334, 3676, 1, 0, 0, 0, 336, 3685, 1, 0, 0, 0, 338, 3693, 1, 0, 0, 0, 340, 3706, 1, 0, 0, 0, 342, 3708, 1, 0, 0, 0, 344, 3715, 1, 0, 0, 0, 346, 3723, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3740, 1, 0, 0, 0, 352, 3749, 1, 0, 0, 0, 354, 3753, 1, 0, 0, 0, 356, 3803, 1, 0, 0, 0, 358, 3821, 1, 0, 0, 0, 360, 3830, 1, 0, 0, 0, 362, 3832, 1, 0, 0, 0, 364, 3849, 1, 0, 0, 0, 366, 3851, 1, 0, 0, 0, 368, 3853, 1, 0, 0, 0, 370, 3861, 1, 0, 0, 0, 372, 3871, 1, 0, 0, 0, 374, 3875, 1, 0, 0, 0, 376, 3881, 1, 0, 0, 0, 378, 3883, 1, 0, 0, 0, 380, 3885, 1, 0, 0, 0, 382, 3927, 1, 0, 0, 0, 384, 3940, 1, 0, 0, 0, 386, 3942, 1, 0, 0, 0, 388, 3946, 1, 0, 0, 0, 390, 3950, 1, 0, 0, 0, 392, 3952, 1, 0, 0, 0, 394, 3954, 1, 0, 0, 0, 396, 3956, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 1, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 1336, 3, 26, 13, 0, 411, 413, 3, 44, 22, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 1336, 3, 76, 38, 0, 415, 416, 5, 329, 0, 0, 416, 1336, 3, 78, 39, 0, 417, 418, 5, 329, 0, 0, 418, 419, 3, 36, 18, 0, 419, 420, 3, 78, 39, 0, 420, 1336, 1, 0, 0, 0, 421, 422, 5, 268, 0, 0, 422, 425, 5, 37, 0, 0, 423, 426, 3, 374, 187, 0, 424, 426, 3, 386, 193, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 1336, 1, 0, 0, 0, 427, 428, 5, 59, 0, 0, 428, 430, 3, 36, 18, 0, 429, 431, 3, 188, 94, 0, 430, 429, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 440, 3, 80, 40, 0, 433, 439, 3, 24, 12, 0, 434, 439, 3, 22, 11, 0, 435, 436, 5, 345, 0, 0, 436, 437, 7, 0, 0, 0, 437, 439, 3, 52, 26, 0, 438, 433, 1, 0, 0, 0, 438, 434, 1, 0, 0, 0, 438, 435, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 1336, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 443, 444, 5, 11, 0, 0, 444, 445, 3, 36, 18, 0, 445, 446, 3, 78, 39, 0, 446, 447, 5, 268, 0, 0, 447, 448, 7, 0, 0, 0, 448, 449, 3, 52, 26, 0, 449, 1336, 1, 0, 0, 0, 450, 451, 5, 11, 0, 0, 451, 452, 3, 36, 18, 0, 452, 453, 3, 78, 39, 0, 453, 454, 5, 268, 0, 0, 454, 455, 3, 22, 11, 0, 455, 1336, 1, 0, 0, 0, 456, 457, 5, 96, 0, 0, 457, 459, 3, 36, 18, 0, 458, 460, 3, 190, 95, 0, 459, 458, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 463, 3, 78, 39, 0, 462, 464, 7, 1, 0, 0, 463, 462, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 1336, 1, 0, 0, 0, 465, 466, 5, 272, 0, 0, 466, 469, 3, 38, 19, 0, 467, 468, 7, 2, 0, 0, 468, 470, 3, 244, 122, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 475, 1, 0, 0, 0, 471, 473, 5, 162, 0, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 3, 386, 193, 0, 475, 472, 1, 0, 0, 0, 475, 476, 1, 0, 0, 0, 476, 1336, 1, 0, 0, 0, 477, 482, 3, 14, 7, 0, 478, 479, 5, 2, 0, 0, 479, 480, 3, 336, 168, 0, 480, 481, 5, 3, 0, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 485, 1, 0, 0, 0, 484, 486, 3, 48, 24, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 492, 3, 50, 25, 0, 488, 490, 5, 20, 0, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 3, 26, 13, 0, 492, 489, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 1336, 1, 0, 0, 0, 494, 495, 5, 59, 0, 0, 495, 497, 5, 292, 0, 0, 496, 498, 3, 188, 94, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 3, 82, 41, 0, 500, 501, 5, 162, 0, 0, 501, 510, 3, 84, 42, 0, 502, 509, 3, 48, 24, 0, 503, 509, 3, 240, 120, 0, 504, 509, 3, 68, 34, 0, 505, 509, 3, 22, 11, 0, 506, 507, 5, 296, 0, 0, 507, 509, 3, 52, 26, 0, 508, 502, 1, 0, 0, 0, 508, 503, 1, 0, 0, 0, 508, 504, 1, 0, 0, 0, 508, 505, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 512, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 1336, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 518, 3, 16, 8, 0, 514, 515, 5, 2, 0, 0, 515, 516, 3, 336, 168, 0, 516, 517, 5, 3, 0, 0, 517, 519, 1, 0, 0, 0, 518, 514, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 48, 24, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 528, 3, 50, 25, 0, 524, 526, 5, 20, 0, 0, 525, 524, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 529, 3, 26, 13, 0, 528, 525, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 1336, 1, 0, 0, 0, 530, 531, 5, 13, 0, 0, 531, 532, 5, 292, 0, 0, 532, 534, 3, 84, 42, 0, 533, 535, 3, 32, 16, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 5, 55, 0, 0, 537, 545, 5, 281, 0, 0, 538, 546, 5, 195, 0, 0, 539, 540, 5, 119, 0, 0, 540, 541, 5, 50, 0, 0, 541, 546, 3, 92, 46, 0, 542, 543, 5, 119, 0, 0, 543, 544, 5, 10, 0, 0, 544, 546, 5, 50, 0, 0, 545, 538, 1, 0, 0, 0, 545, 539, 1, 0, 0, 0, 545, 542, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 1336, 1, 0, 0, 0, 547, 548, 5, 13, 0, 0, 548, 551, 5, 293, 0, 0, 549, 550, 7, 2, 0, 0, 550, 552, 3, 78, 39, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 5, 55, 0, 0, 554, 556, 5, 281, 0, 0, 555, 557, 5, 195, 0, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 1336, 1, 0, 0, 0, 558, 559, 5, 11, 0, 0, 559, 560, 5, 292, 0, 0, 560, 561, 3, 84, 42, 0, 561, 562, 5, 8, 0, 0, 562, 563, 5, 49, 0, 0, 563, 564, 3, 320, 160, 0, 564, 1336, 1, 0, 0, 0, 565, 566, 5, 11, 0, 0, 566, 567, 5, 292, 0, 0, 567, 568, 3, 84, 42, 0, 568, 569, 5, 8, 0, 0, 569, 570, 5, 50, 0, 0, 570, 571, 5, 2, 0, 0, 571, 572, 3, 318, 159, 0, 572, 573, 5, 3, 0, 0, 573, 1336, 1, 0, 0, 0, 574, 575, 5, 11, 0, 0, 575, 576, 5, 292, 0, 0, 576, 577, 3, 84, 42, 0, 577, 578, 5, 240, 0, 0, 578, 579, 5, 49, 0, 0, 579, 580, 3, 90, 45, 0, 580, 581, 5, 308, 0, 0, 581, 582, 3, 94, 47, 0, 582, 1336, 1, 0, 0, 0, 583, 584, 5, 11, 0, 0, 584, 585, 5, 292, 0, 0, 585, 586, 3, 84, 42, 0, 586, 587, 5, 96, 0, 0, 587, 589, 5, 49, 0, 0, 588, 590, 3, 190, 95, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 3, 90, 45, 0, 592, 1336, 1, 0, 0, 0, 593, 594, 5, 11, 0, 0, 594, 595, 5, 292, 0, 0, 595, 596, 3, 84, 42, 0, 596, 597, 5, 96, 0, 0, 597, 599, 5, 50, 0, 0, 598, 600, 3, 190, 95, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 2, 0, 0, 602, 603, 3, 92, 46, 0, 603, 604, 5, 3, 0, 0, 604, 1336, 1, 0, 0, 0, 605, 610, 5, 11, 0, 0, 606, 607, 5, 292, 0, 0, 607, 611, 3, 84, 42, 0, 608, 609, 5, 337, 0, 0, 609, 611, 3, 88, 44, 0, 610, 606, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 5, 240, 0, 0, 613, 614, 5, 308, 0, 0, 614, 615, 3, 244, 122, 0, 615, 1336, 1, 0, 0, 0, 616, 621, 5, 11, 0, 0, 617, 618, 5, 292, 0, 0, 618, 622, 3, 84, 42, 0, 619, 620, 5, 337, 0, 0, 620, 622, 3, 88, 44, 0, 621, 617, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 5, 268, 0, 0, 624, 625, 5, 296, 0, 0, 625, 626, 3, 52, 26, 0, 626, 1336, 1, 0, 0, 0, 627, 632, 5, 11, 0, 0, 628, 629, 5, 292, 0, 0, 629, 633, 3, 84, 42, 0, 630, 631, 5, 337, 0, 0, 631, 633, 3, 88, 44, 0, 632, 628, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 327, 0, 0, 635, 637, 5, 296, 0, 0, 636, 638, 3, 190, 95, 0, 637, 636, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 3, 52, 26, 0, 640, 1336, 1, 0, 0, 0, 641, 642, 5, 11, 0, 0, 642, 643, 5, 292, 0, 0, 643, 644, 3, 84, 42, 0, 644, 646, 7, 3, 0, 0, 645, 647, 5, 49, 0, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 3, 90, 45, 0, 649, 651, 3, 384, 192, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 1336, 1, 0, 0, 0, 652, 653, 5, 11, 0, 0, 653, 654, 5, 292, 0, 0, 654, 656, 3, 84, 42, 0, 655, 657, 3, 32, 16, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 660, 5, 39, 0, 0, 659, 661, 5, 49, 0, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 3, 90, 45, 0, 663, 665, 3, 334, 167, 0, 664, 666, 3, 312, 156, 0, 665, 664, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 1336, 1, 0, 0, 0, 667, 668, 5, 11, 0, 0, 668, 669, 5, 292, 0, 0, 669, 671, 3, 84, 42, 0, 670, 672, 3, 32, 16, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 5, 243, 0, 0, 674, 675, 5, 50, 0, 0, 675, 676, 5, 2, 0, 0, 676, 677, 3, 322, 161, 0, 677, 678, 5, 3, 0, 0, 678, 1336, 1, 0, 0, 0, 679, 680, 5, 11, 0, 0, 680, 681, 5, 292, 0, 0, 681, 683, 3, 84, 42, 0, 682, 684, 3, 32, 16, 0, 683, 682, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 5, 268, 0, 0, 686, 687, 5, 265, 0, 0, 687, 691, 3, 386, 193, 0, 688, 689, 5, 345, 0, 0, 689, 690, 5, 266, 0, 0, 690, 692, 3, 52, 26, 0, 691, 688, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 1336, 1, 0, 0, 0, 693, 694, 5, 11, 0, 0, 694, 695, 5, 292, 0, 0, 695, 697, 3, 84, 42, 0, 696, 698, 3, 32, 16, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 268, 0, 0, 700, 701, 5, 266, 0, 0, 701, 702, 3, 52, 26, 0, 702, 1336, 1, 0, 0, 0, 703, 708, 5, 11, 0, 0, 704, 705, 5, 292, 0, 0, 705, 709, 3, 84, 42, 0, 706, 707, 5, 337, 0, 0, 707, 709, 3, 88, 44, 0, 708, 704, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 712, 5, 8, 0, 0, 711, 713, 3, 188, 94, 0, 712, 711, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 715, 1, 0, 0, 0, 714, 716, 3, 30, 15, 0, 715, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 1336, 1, 0, 0, 0, 719, 720, 5, 11, 0, 0, 720, 721, 5, 292, 0, 0, 721, 722, 3, 84, 42, 0, 722, 723, 3, 32, 16, 0, 723, 724, 5, 240, 0, 0, 724, 725, 5, 308, 0, 0, 725, 726, 3, 32, 16, 0, 726, 1336, 1, 0, 0, 0, 727, 732, 5, 11, 0, 0, 728, 729, 5, 292, 0, 0, 729, 733, 3, 84, 42, 0, 730, 731, 5, 337, 0, 0, 731, 733, 3, 88, 44, 0, 732, 728, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 736, 5, 96, 0, 0, 735, 737, 3, 190, 95, 0, 736, 735, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 743, 3, 32, 16, 0, 739, 740, 5, 4, 0, 0, 740, 742, 3, 32, 16, 0, 741, 739, 1, 0, 0, 0, 742, 745, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 746, 748, 5, 229, 0, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 1336, 1, 0, 0, 0, 749, 750, 5, 11, 0, 0, 750, 751, 5, 292, 0, 0, 751, 753, 3, 84, 42, 0, 752, 754, 3, 32, 16, 0, 753, 752, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 5, 268, 0, 0, 756, 757, 3, 22, 11, 0, 757, 1336, 1, 0, 0, 0, 758, 759, 5, 11, 0, 0, 759, 760, 5, 292, 0, 0, 760, 761, 3, 84, 42, 0, 761, 762, 5, 236, 0, 0, 762, 763, 5, 218, 0, 0, 763, 1336, 1, 0, 0, 0, 764, 765, 5, 11, 0, 0, 765, 766, 5, 175, 0, 0, 766, 767, 5, 337, 0, 0, 767, 768, 3, 88, 44, 0, 768, 769, 7, 4, 0, 0, 769, 770, 5, 247, 0, 0, 770, 1336, 1, 0, 0, 0, 771, 772, 5, 11, 0, 0, 772, 773, 5, 175, 0, 0, 773, 774, 5, 337, 0, 0, 774, 775, 3, 88, 44, 0, 775, 776, 5, 268, 0, 0, 776, 777, 5, 296, 0, 0, 777, 778, 3, 52, 26, 0, 778, 1336, 1, 0, 0, 0, 779, 780, 5, 96, 0, 0, 780, 782, 5, 292, 0, 0, 781, 783, 3, 190, 95, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 786, 3, 84, 42, 0, 785, 787, 5, 229, 0, 0, 786, 785, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 1336, 1, 0, 0, 0, 788, 789, 5, 96, 0, 0, 789, 791, 5, 337, 0, 0, 790, 792, 3, 190, 95, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 1336, 3, 88, 44, 0, 794, 795, 5, 96, 0, 0, 795, 796, 5, 175, 0, 0, 796, 798, 5, 337, 0, 0, 797, 799, 3, 190, 95, 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 1336, 3, 88, 44, 0, 801, 804, 5, 59, 0, 0, 802, 803, 5, 207, 0, 0, 803, 805, 5, 243, 0, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 810, 1, 0, 0, 0, 806, 808, 5, 128, 0, 0, 807, 806, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 811, 5, 297, 0, 0, 810, 807, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 5, 337, 0, 0, 813, 815, 3, 188, 94, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 3, 86, 43, 0, 817, 819, 3, 218, 109, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 828, 1, 0, 0, 0, 820, 827, 3, 24, 12, 0, 821, 822, 5, 217, 0, 0, 822, 823, 5, 202, 0, 0, 823, 827, 3, 210, 105, 0, 824, 825, 5, 296, 0, 0, 825, 827, 3, 52, 26, 0, 826, 820, 1, 0, 0, 0, 826, 821, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 830, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 832, 5, 20, 0, 0, 832, 833, 3, 26, 13, 0, 833, 1336, 1, 0, 0, 0, 834, 837, 5, 59, 0, 0, 835, 836, 5, 207, 0, 0, 836, 838, 5, 243, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 841, 5, 128, 0, 0, 840, 839, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 297, 0, 0, 843, 844, 5, 337, 0, 0, 844, 849, 3, 86, 43, 0, 845, 846, 5, 2, 0, 0, 846, 847, 3, 332, 166, 0, 847, 848, 5, 3, 0, 0, 848, 850, 1, 0, 0, 0, 849, 845, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 854, 3, 48, 24, 0, 852, 853, 5, 206, 0, 0, 853, 855, 3, 52, 26, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 1336, 1, 0, 0, 0, 856, 857, 5, 11, 0, 0, 857, 858, 5, 337, 0, 0, 858, 860, 3, 88, 44, 0, 859, 861, 5, 20, 0, 0, 860, 859, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 3, 26, 13, 0, 863, 1336, 1, 0, 0, 0, 864, 867, 5, 59, 0, 0, 865, 866, 5, 207, 0, 0, 866, 868, 5, 243, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 5, 297, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 125, 0, 0, 873, 875, 3, 188, 94, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 3, 366, 183, 0, 877, 878, 5, 20, 0, 0, 878, 888, 3, 386, 193, 0, 879, 880, 5, 331, 0, 0, 880, 885, 3, 74, 37, 0, 881, 882, 5, 4, 0, 0, 882, 884, 3, 74, 37, 0, 883, 881, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 888, 879, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 1336, 1, 0, 0, 0, 890, 891, 5, 59, 0, 0, 891, 892, 5, 175, 0, 0, 892, 894, 5, 337, 0, 0, 893, 895, 3, 188, 94, 0, 894, 893, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 3, 86, 43, 0, 897, 899, 3, 48, 24, 0, 898, 897, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 915, 1, 0, 0, 0, 900, 901, 5, 206, 0, 0, 901, 914, 3, 52, 26, 0, 902, 903, 5, 217, 0, 0, 903, 904, 5, 31, 0, 0, 904, 914, 3, 258, 129, 0, 905, 914, 3, 20, 10, 0, 906, 914, 3, 18, 9, 0, 907, 914, 3, 240, 120, 0, 908, 914, 3, 68, 34, 0, 909, 914, 3, 22, 11, 0, 910, 914, 3, 24, 12, 0, 911, 912, 5, 296, 0, 0, 912, 914, 3, 52, 26, 0, 913, 900, 1, 0, 0, 0, 913, 902, 1, 0, 0, 0, 913, 905, 1, 0, 0, 0, 913, 906, 1, 0, 0, 0, 913, 907, 1, 0, 0, 0, 913, 908, 1, 0, 0, 0, 913, 909, 1, 0, 0, 0, 913, 910, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 914, 917, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 918, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 918, 919, 5, 20, 0, 0, 919, 920, 3, 26, 13, 0, 920, 1336, 1, 0, 0, 0, 921, 923, 5, 96, 0, 0, 922, 924, 5, 297, 0, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 927, 5, 125, 0, 0, 926, 928, 3, 190, 95, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 1336, 3, 364, 182, 0, 930, 933, 5, 81, 0, 0, 931, 932, 5, 207, 0, 0, 932, 934, 5, 243, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 936, 1, 0, 0, 0, 935, 937, 5, 335, 0, 0, 936, 935, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 3, 364, 182, 0, 939, 941, 3, 316, 158, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 1, 0, 0, 0, 942, 944, 3, 330, 165, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 1336, 1, 0, 0, 0, 945, 946, 5, 96, 0, 0, 946, 947, 5, 297, 0, 0, 947, 949, 5, 335, 0, 0, 948, 950, 3, 190, 95, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 954, 1, 0, 0, 0, 951, 955, 3, 84, 42, 0, 952, 955, 3, 88, 44, 0, 953, 955, 3, 364, 182, 0, 954, 951, 1, 0, 0, 0, 954, 952, 1, 0, 0, 0, 954, 953, 1, 0, 0, 0, 955, 1336, 1, 0, 0, 0, 956, 958, 5, 106, 0, 0, 957, 959, 7, 5, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 1336, 3, 4, 2, 0, 961, 962, 5, 272, 0, 0, 962, 965, 5, 293, 0, 0, 963, 964, 7, 2, 0, 0, 964, 966, 3, 78, 39, 0, 965, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 971, 1, 0, 0, 0, 967, 969, 5, 162, 0, 0, 968, 967, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 972, 3, 386, 193, 0, 971, 968, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 1336, 1, 0, 0, 0, 973, 974, 5, 272, 0, 0, 974, 975, 5, 292, 0, 0, 975, 978, 5, 108, 0, 0, 976, 977, 7, 2, 0, 0, 977, 979, 3, 78, 39, 0, 978, 976, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 5, 162, 0, 0, 981, 983, 3, 386, 193, 0, 982, 984, 3, 32, 16, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 1336, 1, 0, 0, 0, 985, 986, 5, 272, 0, 0, 986, 987, 5, 296, 0, 0, 987, 992, 3, 84, 42, 0, 988, 989, 5, 2, 0, 0, 989, 990, 3, 56, 28, 0, 990, 991, 5, 3, 0, 0, 991, 993, 1, 0, 0, 0, 992, 988, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 1336, 1, 0, 0, 0, 994, 995, 5, 272, 0, 0, 995, 996, 5, 50, 0, 0, 996, 997, 7, 2, 0, 0, 997, 1000, 3, 84, 42, 0, 998, 999, 7, 2, 0, 0, 999, 1001, 3, 78, 39, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1336, 1, 0, 0, 0, 1002, 1003, 5, 272, 0, 0, 1003, 1006, 5, 338, 0, 0, 1004, 1005, 7, 2, 0, 0, 1005, 1007, 3, 78, 39, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1012, 1, 0, 0, 0, 1008, 1010, 5, 162, 0, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 3, 386, 193, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1336, 1, 0, 0, 0, 1014, 1015, 5, 272, 0, 0, 1015, 1016, 5, 218, 0, 0, 1016, 1018, 3, 84, 42, 0, 1017, 1019, 3, 32, 16, 0, 1018, 1017, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1336, 1, 0, 0, 0, 1020, 1022, 5, 272, 0, 0, 1021, 1023, 3, 146, 73, 0, 1022, 1021, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1027, 5, 126, 0, 0, 1025, 1026, 7, 2, 0, 0, 1026, 1028, 3, 78, 39, 0, 1027, 1025, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1036, 1, 0, 0, 0, 1029, 1031, 5, 162, 0, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1034, 1, 0, 0, 0, 1032, 1035, 3, 244, 122, 0, 1033, 1035, 3, 386, 193, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1033, 1, 0, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1030, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1336, 1, 0, 0, 0, 1038, 1039, 5, 272, 0, 0, 1039, 1040, 5, 59, 0, 0, 1040, 1041, 5, 292, 0, 0, 1041, 1044, 3, 84, 42, 0, 1042, 1043, 5, 20, 0, 0, 1043, 1045, 5, 265, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1336, 1, 0, 0, 0, 1046, 1047, 5, 272, 0, 0, 1047, 1048, 5, 62, 0, 0, 1048, 1336, 3, 36, 18, 0, 1049, 1050, 5, 272, 0, 0, 1050, 1055, 5, 38, 0, 0, 1051, 1053, 5, 162, 0, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1056, 3, 386, 193, 0, 1055, 1052, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1336, 1, 0, 0, 0, 1057, 1058, 5, 272, 0, 0, 1058, 1059, 5, 175, 0, 0, 1059, 1062, 5, 338, 0, 0, 1060, 1061, 7, 2, 0, 0, 1061, 1063, 3, 78, 39, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1068, 1, 0, 0, 0, 1064, 1066, 5, 162, 0, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1069, 3, 386, 193, 0, 1068, 1065, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1336, 1, 0, 0, 0, 1070, 1071, 5, 272, 0, 0, 1071, 1072, 5, 59, 0, 0, 1072, 1073, 5, 175, 0, 0, 1073, 1074, 5, 337, 0, 0, 1074, 1077, 3, 88, 44, 0, 1075, 1076, 5, 20, 0, 0, 1076, 1078, 5, 265, 0, 0, 1077, 1075, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1336, 1, 0, 0, 0, 1079, 1080, 7, 6, 0, 0, 1080, 1082, 5, 125, 0, 0, 1081, 1083, 5, 108, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1336, 3, 40, 20, 0, 1085, 1086, 7, 6, 0, 0, 1086, 1088, 5, 72, 0, 0, 1087, 1089, 5, 108, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1336, 3, 78, 39, 0, 1091, 1093, 7, 6, 0, 0, 1092, 1094, 5, 292, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 1, 0, 0, 0, 1095, 1097, 7, 7, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 3, 84, 42, 0, 1099, 1101, 3, 32, 16, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1104, 3, 42, 21, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1336, 1, 0, 0, 0, 1105, 1107, 7, 6, 0, 0, 1106, 1108, 5, 231, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1336, 3, 26, 13, 0, 1110, 1111, 5, 51, 0, 0, 1111, 1112, 5, 202, 0, 0, 1112, 1113, 3, 36, 18, 0, 1113, 1114, 3, 78, 39, 0, 1114, 1115, 5, 153, 0, 0, 1115, 1116, 3, 388, 194, 0, 1116, 1336, 1, 0, 0, 0, 1117, 1118, 5, 51, 0, 0, 1118, 1119, 5, 202, 0, 0, 1119, 1120, 5, 292, 0, 0, 1120, 1121, 3, 84, 42, 0, 1121, 1122, 5, 153, 0, 0, 1122, 1123, 3, 388, 194, 0, 1123, 1336, 1, 0, 0, 0, 1124, 1125, 5, 239, 0, 0, 1125, 1126, 5, 292, 0, 0, 1126, 1336, 3, 84, 42, 0, 1127, 1128, 5, 239, 0, 0, 1128, 1129, 5, 125, 0, 0, 1129, 1336, 3, 364, 182, 0, 1130, 1138, 5, 239, 0, 0, 1131, 1139, 3, 386, 193, 0, 1132, 1134, 9, 0, 0, 0, 1133, 1132, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1131, 1, 0, 0, 0, 1138, 1135, 1, 0, 0, 0, 1139, 1336, 1, 0, 0, 0, 1140, 1141, 5, 239, 0, 0, 1141, 1142, 5, 175, 0, 0, 1142, 1143, 5, 337, 0, 0, 1143, 1336, 3, 88, 44, 0, 1144, 1146, 5, 33, 0, 0, 1145, 1147, 5, 159, 0, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 5, 292, 0, 0, 1149, 1152, 3, 84, 42, 0, 1150, 1151, 5, 206, 0, 0, 1151, 1153, 3, 52, 26, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1158, 1, 0, 0, 0, 1154, 1156, 5, 20, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 26, 13, 0, 1158, 1155, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1336, 1, 0, 0, 0, 1160, 1161, 5, 321, 0, 0, 1161, 1163, 5, 292, 0, 0, 1162, 1164, 3, 190, 95, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1336, 3, 84, 42, 0, 1166, 1167, 5, 43, 0, 0, 1167, 1336, 5, 33, 0, 0, 1168, 1169, 5, 167, 0, 0, 1169, 1171, 5, 70, 0, 0, 1170, 1172, 5, 168, 0, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 5, 145, 0, 0, 1174, 1176, 3, 386, 193, 0, 1175, 1177, 5, 215, 0, 0, 1176, 1175, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 5, 152, 0, 0, 1179, 1180, 5, 292, 0, 0, 1180, 1182, 3, 84, 42, 0, 1181, 1183, 3, 32, 16, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1336, 1, 0, 0, 0, 1184, 1185, 5, 316, 0, 0, 1185, 1186, 5, 292, 0, 0, 1186, 1188, 3, 84, 42, 0, 1187, 1189, 3, 32, 16, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1336, 1, 0, 0, 0, 1190, 1192, 5, 187, 0, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 5, 241, 0, 0, 1194, 1195, 5, 292, 0, 0, 1195, 1198, 3, 84, 42, 0, 1196, 1197, 7, 8, 0, 0, 1197, 1199, 5, 218, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1336, 1, 0, 0, 0, 1200, 1201, 7, 9, 0, 0, 1201, 1205, 3, 374, 187, 0, 1202, 1204, 9, 0, 0, 0, 1203, 1202, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1336, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1209, 5, 268, 0, 0, 1209, 1213, 5, 252, 0, 0, 1210, 1212, 9, 0, 0, 0, 1211, 1210, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1336, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1217, 5, 268, 0, 0, 1217, 1218, 5, 300, 0, 0, 1218, 1219, 5, 349, 0, 0, 1219, 1336, 3, 296, 148, 0, 1220, 1221, 5, 268, 0, 0, 1221, 1222, 5, 300, 0, 0, 1222, 1223, 5, 349, 0, 0, 1223, 1336, 3, 6, 3, 0, 1224, 1225, 5, 268, 0, 0, 1225, 1226, 5, 300, 0, 0, 1226, 1230, 5, 349, 0, 0, 1227, 1229, 9, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1231, 1336, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1234, 5, 268, 0, 0, 1234, 1235, 7, 10, 0, 0, 1235, 1336, 3, 132, 66, 0, 1236, 1237, 5, 268, 0, 0, 1237, 1238, 7, 10, 0, 0, 1238, 1239, 5, 2, 0, 0, 1239, 1240, 3, 242, 121, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1242, 5, 351, 0, 0, 1242, 1243, 5, 2, 0, 0, 1243, 1244, 3, 26, 13, 0, 1244, 1245, 5, 3, 0, 0, 1245, 1336, 1, 0, 0, 0, 1246, 1247, 5, 268, 0, 0, 1247, 1248, 3, 8, 4, 0, 1248, 1249, 5, 351, 0, 0, 1249, 1250, 3, 10, 5, 0, 1250, 1336, 1, 0, 0, 0, 1251, 1252, 5, 268, 0, 0, 1252, 1260, 3, 8, 4, 0, 1253, 1257, 5, 351, 0, 0, 1254, 1256, 9, 0, 0, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1253, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1336, 1, 0, 0, 0, 1262, 1266, 5, 268, 0, 0, 1263, 1265, 9, 0, 0, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1270, 5, 351, 0, 0, 1270, 1336, 3, 10, 5, 0, 1271, 1275, 5, 268, 0, 0, 1272, 1274, 9, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1277, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1336, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1279, 5, 244, 0, 0, 1279, 1336, 3, 8, 4, 0, 1280, 1284, 5, 244, 0, 0, 1281, 1283, 9, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1286, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1336, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1288, 5, 59, 0, 0, 1288, 1290, 5, 142, 0, 0, 1289, 1291, 3, 188, 94, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 3, 374, 187, 0, 1293, 1295, 5, 202, 0, 0, 1294, 1296, 5, 292, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1300, 3, 84, 42, 0, 1298, 1299, 5, 331, 0, 0, 1299, 1301, 3, 374, 187, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 5, 2, 0, 0, 1303, 1304, 3, 246, 123, 0, 1304, 1307, 5, 3, 0, 0, 1305, 1306, 5, 206, 0, 0, 1306, 1308, 3, 52, 26, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1336, 1, 0, 0, 0, 1309, 1310, 5, 96, 0, 0, 1310, 1312, 5, 142, 0, 0, 1311, 1313, 3, 190, 95, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 3, 374, 187, 0, 1315, 1317, 5, 202, 0, 0, 1316, 1318, 5, 292, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 84, 42, 0, 1320, 1336, 1, 0, 0, 0, 1321, 1322, 5, 204, 0, 0, 1322, 1324, 3, 84, 42, 0, 1323, 1325, 3, 136, 68, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 3, 352, 176, 0, 1327, 1336, 1, 0, 0, 0, 1328, 1332, 3, 12, 6, 0, 1329, 1331, 9, 0, 0, 0, 1330, 1329, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 410, 1, 0, 0, 0, 1335, 412, 1, 0, 0, 0, 1335, 415, 1, 0, 0, 0, 1335, 417, 1, 0, 0, 0, 1335, 421, 1, 0, 0, 0, 1335, 427, 1, 0, 0, 0, 1335, 443, 1, 0, 0, 0, 1335, 450, 1, 0, 0, 0, 1335, 456, 1, 0, 0, 0, 1335, 465, 1, 0, 0, 0, 1335, 477, 1, 0, 0, 0, 1335, 494, 1, 0, 0, 0, 1335, 513, 1, 0, 0, 0, 1335, 530, 1, 0, 0, 0, 1335, 547, 1, 0, 0, 0, 1335, 558, 1, 0, 0, 0, 1335, 565, 1, 0, 0, 0, 1335, 574, 1, 0, 0, 0, 1335, 583, 1, 0, 0, 0, 1335, 593, 1, 0, 0, 0, 1335, 605, 1, 0, 0, 0, 1335, 616, 1, 0, 0, 0, 1335, 627, 1, 0, 0, 0, 1335, 641, 1, 0, 0, 0, 1335, 652, 1, 0, 0, 0, 1335, 667, 1, 0, 0, 0, 1335, 679, 1, 0, 0, 0, 1335, 693, 1, 0, 0, 0, 1335, 703, 1, 0, 0, 0, 1335, 719, 1, 0, 0, 0, 1335, 727, 1, 0, 0, 0, 1335, 749, 1, 0, 0, 0, 1335, 758, 1, 0, 0, 0, 1335, 764, 1, 0, 0, 0, 1335, 771, 1, 0, 0, 0, 1335, 779, 1, 0, 0, 0, 1335, 788, 1, 0, 0, 0, 1335, 794, 1, 0, 0, 0, 1335, 801, 1, 0, 0, 0, 1335, 834, 1, 0, 0, 0, 1335, 856, 1, 0, 0, 0, 1335, 864, 1, 0, 0, 0, 1335, 890, 1, 0, 0, 0, 1335, 921, 1, 0, 0, 0, 1335, 930, 1, 0, 0, 0, 1335, 945, 1, 0, 0, 0, 1335, 956, 1, 0, 0, 0, 1335, 961, 1, 0, 0, 0, 1335, 973, 1, 0, 0, 0, 1335, 985, 1, 0, 0, 0, 1335, 994, 1, 0, 0, 0, 1335, 1002, 1, 0, 0, 0, 1335, 1014, 1, 0, 0, 0, 1335, 1020, 1, 0, 0, 0, 1335, 1038, 1, 0, 0, 0, 1335, 1046, 1, 0, 0, 0, 1335, 1049, 1, 0, 0, 0, 1335, 1057, 1, 0, 0, 0, 1335, 1070, 1, 0, 0, 0, 1335, 1079, 1, 0, 0, 0, 1335, 1085, 1, 0, 0, 0, 1335, 1091, 1, 0, 0, 0, 1335, 1105, 1, 0, 0, 0, 1335, 1110, 1, 0, 0, 0, 1335, 1117, 1, 0, 0, 0, 1335, 1124, 1, 0, 0, 0, 1335, 1127, 1, 0, 0, 0, 1335, 1130, 1, 0, 0, 0, 1335, 1140, 1, 0, 0, 0, 1335, 1144, 1, 0, 0, 0, 1335, 1160, 1, 0, 0, 0, 1335, 1166, 1, 0, 0, 0, 1335, 1168, 1, 0, 0, 0, 1335, 1184, 1, 0, 0, 0, 1335, 1191, 1, 0, 0, 0, 1335, 1200, 1, 0, 0, 0, 1335, 1208, 1, 0, 0, 0, 1335, 1216, 1, 0, 0, 0, 1335, 1220, 1, 0, 0, 0, 1335, 1224, 1, 0, 0, 0, 1335, 1233, 1, 0, 0, 0, 1335, 1236, 1, 0, 0, 0, 1335, 1246, 1, 0, 0, 0, 1335, 1251, 1, 0, 0, 0, 1335, 1262, 1, 0, 0, 0, 1335, 1271, 1, 0, 0, 0, 1335, 1278, 1, 0, 0, 0, 1335, 1280, 1, 0, 0, 0, 1335, 1287, 1, 0, 0, 0, 1335, 1309, 1, 0, 0, 0, 1335, 1321, 1, 0, 0, 0, 1335, 1328, 1, 0, 0, 0, 1336, 5, 1, 0, 0, 0, 1337, 1340, 3, 386, 193, 0, 1338, 1340, 5, 168, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1340, 7, 1, 0, 0, 0, 1341, 1342, 3, 378, 189, 0, 1342, 9, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 11, 1, 0, 0, 0, 1345, 1346, 5, 59, 0, 0, 1346, 1514, 5, 252, 0, 0, 1347, 1348, 5, 96, 0, 0, 1348, 1514, 5, 252, 0, 0, 1349, 1351, 5, 129, 0, 0, 1350, 1352, 5, 252, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1514, 1, 0, 0, 0, 1353, 1355, 5, 248, 0, 0, 1354, 1356, 5, 252, 0, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1514, 1, 0, 0, 0, 1357, 1358, 5, 272, 0, 0, 1358, 1514, 5, 129, 0, 0, 1359, 1360, 5, 272, 0, 0, 1360, 1362, 5, 252, 0, 0, 1361, 1363, 5, 129, 0, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1514, 1, 0, 0, 0, 1364, 1365, 5, 272, 0, 0, 1365, 1514, 5, 227, 0, 0, 1366, 1367, 5, 272, 0, 0, 1367, 1514, 5, 253, 0, 0, 1368, 1369, 5, 272, 0, 0, 1369, 1370, 5, 62, 0, 0, 1370, 1514, 5, 253, 0, 0, 1371, 1372, 5, 107, 0, 0, 1372, 1514, 5, 292, 0, 0, 1373, 1374, 5, 139, 0, 0, 1374, 1514, 5, 292, 0, 0, 1375, 1376, 5, 272, 0, 0, 1376, 1514, 5, 54, 0, 0, 1377, 1378, 5, 272, 0, 0, 1378, 1379, 5, 59, 0, 0, 1379, 1514, 5, 292, 0, 0, 1380, 1381, 5, 272, 0, 0, 1381, 1514, 5, 312, 0, 0, 1382, 1383, 5, 272, 0, 0, 1383, 1514, 5, 143, 0, 0, 1384, 1385, 5, 272, 0, 0, 1385, 1514, 5, 171, 0, 0, 1386, 1387, 5, 59, 0, 0, 1387, 1514, 5, 142, 0, 0, 1388, 1389, 5, 96, 0, 0, 1389, 1514, 5, 142, 0, 0, 1390, 1391, 5, 11, 0, 0, 1391, 1514, 5, 142, 0, 0, 1392, 1393, 5, 170, 0, 0, 1393, 1514, 5, 292, 0, 0, 1394, 1395, 5, 170, 0, 0, 1395, 1514, 5, 72, 0, 0, 1396, 1397, 5, 325, 0, 0, 1397, 1514, 5, 292, 0, 0, 1398, 1399, 5, 325, 0, 0, 1399, 1514, 5, 72, 0, 0, 1400, 1401, 5, 59, 0, 0, 1401, 1402, 5, 297, 0, 0, 1402, 1514, 5, 174, 0, 0, 1403, 1404, 5, 96, 0, 0, 1404, 1405, 5, 297, 0, 0, 1405, 1514, 5, 174, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 292, 0, 0, 1408, 1409, 3, 84, 42, 0, 1409, 1410, 5, 196, 0, 0, 1410, 1411, 5, 45, 0, 0, 1411, 1514, 1, 0, 0, 0, 1412, 1413, 5, 11, 0, 0, 1413, 1414, 5, 292, 0, 0, 1414, 1415, 3, 84, 42, 0, 1415, 1416, 5, 45, 0, 0, 1416, 1417, 5, 31, 0, 0, 1417, 1514, 1, 0, 0, 0, 1418, 1419, 5, 11, 0, 0, 1419, 1420, 5, 292, 0, 0, 1420, 1421, 3, 84, 42, 0, 1421, 1422, 5, 196, 0, 0, 1422, 1423, 5, 278, 0, 0, 1423, 1514, 1, 0, 0, 0, 1424, 1425, 5, 11, 0, 0, 1425, 1426, 5, 292, 0, 0, 1426, 1427, 3, 84, 42, 0, 1427, 1428, 5, 274, 0, 0, 1428, 1429, 5, 31, 0, 0, 1429, 1514, 1, 0, 0, 0, 1430, 1431, 5, 11, 0, 0, 1431, 1432, 5, 292, 0, 0, 1432, 1433, 3, 84, 42, 0, 1433, 1434, 5, 196, 0, 0, 1434, 1435, 5, 274, 0, 0, 1435, 1514, 1, 0, 0, 0, 1436, 1437, 5, 11, 0, 0, 1437, 1438, 5, 292, 0, 0, 1438, 1439, 3, 84, 42, 0, 1439, 1440, 5, 196, 0, 0, 1440, 1441, 5, 282, 0, 0, 1441, 1442, 5, 20, 0, 0, 1442, 1443, 5, 89, 0, 0, 1443, 1514, 1, 0, 0, 0, 1444, 1445, 5, 11, 0, 0, 1445, 1446, 5, 292, 0, 0, 1446, 1447, 3, 84, 42, 0, 1447, 1448, 5, 268, 0, 0, 1448, 1449, 5, 274, 0, 0, 1449, 1450, 5, 169, 0, 0, 1450, 1514, 1, 0, 0, 0, 1451, 1452, 5, 11, 0, 0, 1452, 1453, 5, 292, 0, 0, 1453, 1454, 3, 84, 42, 0, 1454, 1455, 5, 103, 0, 0, 1455, 1456, 5, 216, 0, 0, 1456, 1514, 1, 0, 0, 0, 1457, 1458, 5, 11, 0, 0, 1458, 1459, 5, 292, 0, 0, 1459, 1460, 3, 84, 42, 0, 1460, 1461, 5, 18, 0, 0, 1461, 1462, 5, 216, 0, 0, 1462, 1514, 1, 0, 0, 0, 1463, 1464, 5, 11, 0, 0, 1464, 1465, 5, 292, 0, 0, 1465, 1466, 3, 84, 42, 0, 1466, 1467, 5, 319, 0, 0, 1467, 1468, 5, 216, 0, 0, 1468, 1514, 1, 0, 0, 0, 1469, 1470, 5, 11, 0, 0, 1470, 1471, 5, 292, 0, 0, 1471, 1472, 3, 84, 42, 0, 1472, 1473, 5, 309, 0, 0, 1473, 1514, 1, 0, 0, 0, 1474, 1475, 5, 11, 0, 0, 1475, 1476, 5, 292, 0, 0, 1476, 1478, 3, 84, 42, 0, 1477, 1479, 3, 32, 16, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 5, 53, 0, 0, 1481, 1514, 1, 0, 0, 0, 1482, 1483, 5, 11, 0, 0, 1483, 1484, 5, 292, 0, 0, 1484, 1486, 3, 84, 42, 0, 1485, 1487, 3, 32, 16, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 5, 56, 0, 0, 1489, 1514, 1, 0, 0, 0, 1490, 1491, 5, 11, 0, 0, 1491, 1492, 5, 292, 0, 0, 1492, 1494, 3, 84, 42, 0, 1493, 1495, 3, 32, 16, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 5, 268, 0, 0, 1497, 1498, 5, 115, 0, 0, 1498, 1514, 1, 0, 0, 0, 1499, 1500, 5, 11, 0, 0, 1500, 1501, 5, 292, 0, 0, 1501, 1503, 3, 84, 42, 0, 1502, 1504, 3, 32, 16, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 5, 243, 0, 0, 1506, 1507, 5, 50, 0, 0, 1507, 1514, 1, 0, 0, 0, 1508, 1509, 5, 280, 0, 0, 1509, 1514, 5, 311, 0, 0, 1510, 1514, 5, 52, 0, 0, 1511, 1514, 5, 254, 0, 0, 1512, 1514, 5, 88, 0, 0, 1513, 1345, 1, 0, 0, 0, 1513, 1347, 1, 0, 0, 0, 1513, 1349, 1, 0, 0, 0, 1513, 1353, 1, 0, 0, 0, 1513, 1357, 1, 0, 0, 0, 1513, 1359, 1, 0, 0, 0, 1513, 1364, 1, 0, 0, 0, 1513, 1366, 1, 0, 0, 0, 1513, 1368, 1, 0, 0, 0, 1513, 1371, 1, 0, 0, 0, 1513, 1373, 1, 0, 0, 0, 1513, 1375, 1, 0, 0, 0, 1513, 1377, 1, 0, 0, 0, 1513, 1380, 1, 0, 0, 0, 1513, 1382, 1, 0, 0, 0, 1513, 1384, 1, 0, 0, 0, 1513, 1386, 1, 0, 0, 0, 1513, 1388, 1, 0, 0, 0, 1513, 1390, 1, 0, 0, 0, 1513, 1392, 1, 0, 0, 0, 1513, 1394, 1, 0, 0, 0, 1513, 1396, 1, 0, 0, 0, 1513, 1398, 1, 0, 0, 0, 1513, 1400, 1, 0, 0, 0, 1513, 1403, 1, 0, 0, 0, 1513, 1406, 1, 0, 0, 0, 1513, 1412, 1, 0, 0, 0, 1513, 1418, 1, 0, 0, 0, 1513, 1424, 1, 0, 0, 0, 1513, 1430, 1, 0, 0, 0, 1513, 1436, 1, 0, 0, 0, 1513, 1444, 1, 0, 0, 0, 1513, 1451, 1, 0, 0, 0, 1513, 1457, 1, 0, 0, 0, 1513, 1463, 1, 0, 0, 0, 1513, 1469, 1, 0, 0, 0, 1513, 1474, 1, 0, 0, 0, 1513, 1482, 1, 0, 0, 0, 1513, 1490, 1, 0, 0, 0, 1513, 1499, 1, 0, 0, 0, 1513, 1508, 1, 0, 0, 0, 1513, 1510, 1, 0, 0, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 13, 1, 0, 0, 0, 1515, 1517, 5, 59, 0, 0, 1516, 1518, 5, 297, 0, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1521, 5, 109, 0, 0, 1520, 1519, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1524, 5, 292, 0, 0, 1523, 1525, 3, 188, 94, 0, 1524, 1523, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 3, 82, 41, 0, 1527, 15, 1, 0, 0, 0, 1528, 1529, 5, 59, 0, 0, 1529, 1531, 5, 207, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 5, 243, 0, 0, 1533, 1534, 5, 292, 0, 0, 1534, 1535, 3, 82, 41, 0, 1535, 17, 1, 0, 0, 0, 1536, 1537, 5, 45, 0, 0, 1537, 1538, 5, 31, 0, 0, 1538, 1542, 3, 210, 105, 0, 1539, 1540, 5, 278, 0, 0, 1540, 1541, 5, 31, 0, 0, 1541, 1543, 3, 214, 107, 0, 1542, 1539, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 5, 152, 0, 0, 1545, 1546, 5, 381, 0, 0, 1546, 1547, 5, 30, 0, 0, 1547, 19, 1, 0, 0, 0, 1548, 1549, 5, 274, 0, 0, 1549, 1550, 5, 31, 0, 0, 1550, 1551, 3, 210, 105, 0, 1551, 1554, 5, 202, 0, 0, 1552, 1555, 3, 64, 32, 0, 1553, 1555, 3, 66, 33, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1553, 1, 0, 0, 0, 1555, 1559, 1, 0, 0, 0, 1556, 1557, 5, 282, 0, 0, 1557, 1558, 5, 20, 0, 0, 1558, 1560, 5, 89, 0, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 21, 1, 0, 0, 0, 1561, 1562, 5, 169, 0, 0, 1562, 1563, 3, 386, 193, 0, 1563, 23, 1, 0, 0, 0, 1564, 1565, 5, 51, 0, 0, 1565, 1566, 3, 386, 193, 0, 1566, 25, 1, 0, 0, 0, 1567, 1569, 3, 44, 22, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 3, 102, 51, 0, 1571, 1572, 3, 98, 49, 0, 1572, 27, 1, 0, 0, 0, 1573, 1574, 5, 147, 0, 0, 1574, 1576, 5, 215, 0, 0, 1575, 1577, 5, 292, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1583, 3, 84, 42, 0, 1579, 1581, 3, 32, 16, 0, 1580, 1582, 3, 188, 94, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1584, 1, 0, 0, 0, 1583, 1579, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1591, 1, 0, 0, 0, 1585, 1586, 5, 31, 0, 0, 1586, 1592, 5, 188, 0, 0, 1587, 1588, 5, 2, 0, 0, 1588, 1589, 3, 92, 46, 0, 1589, 1590, 5, 3, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1585, 1, 0, 0, 0, 1591, 1587, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1650, 1, 0, 0, 0, 1593, 1594, 5, 147, 0, 0, 1594, 1596, 5, 152, 0, 0, 1595, 1597, 5, 292, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1600, 3, 84, 42, 0, 1599, 1601, 3, 32, 16, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1603, 1, 0, 0, 0, 1602, 1604, 3, 188, 94, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1611, 1, 0, 0, 0, 1605, 1606, 5, 31, 0, 0, 1606, 1612, 5, 188, 0, 0, 1607, 1608, 5, 2, 0, 0, 1608, 1609, 3, 92, 46, 0, 1609, 1610, 5, 3, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1605, 1, 0, 0, 0, 1611, 1607, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1650, 1, 0, 0, 0, 1613, 1614, 5, 147, 0, 0, 1614, 1616, 5, 152, 0, 0, 1615, 1617, 5, 292, 0, 0, 1616, 1615, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 3, 84, 42, 0, 1619, 1620, 5, 243, 0, 0, 1620, 1621, 3, 136, 68, 0, 1621, 1650, 1, 0, 0, 0, 1622, 1623, 5, 147, 0, 0, 1623, 1625, 5, 215, 0, 0, 1624, 1626, 5, 168, 0, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1628, 5, 90, 0, 0, 1628, 1630, 3, 386, 193, 0, 1629, 1631, 3, 240, 120, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 1, 0, 0, 0, 1632, 1634, 3, 68, 34, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1650, 1, 0, 0, 0, 1635, 1636, 5, 147, 0, 0, 1636, 1638, 5, 215, 0, 0, 1637, 1639, 5, 168, 0, 0, 1638, 1637, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 5, 90, 0, 0, 1641, 1643, 3, 386, 193, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1647, 3, 48, 24, 0, 1645, 1646, 5, 206, 0, 0, 1646, 1648, 3, 52, 26, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1650, 1, 0, 0, 0, 1649, 1573, 1, 0, 0, 0, 1649, 1593, 1, 0, 0, 0, 1649, 1613, 1, 0, 0, 0, 1649, 1622, 1, 0, 0, 0, 1649, 1635, 1, 0, 0, 0, 1650, 29, 1, 0, 0, 0, 1651, 1653, 3, 32, 16, 0, 1652, 1654, 3, 22, 11, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 31, 1, 0, 0, 0, 1655, 1656, 5, 216, 0, 0, 1656, 1657, 5, 2, 0, 0, 1657, 1662, 3, 34, 17, 0, 1658, 1659, 5, 4, 0, 0, 1659, 1661, 3, 34, 17, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1666, 5, 3, 0, 0, 1666, 33, 1, 0, 0, 0, 1667, 1670, 3, 374, 187, 0, 1668, 1669, 5, 351, 0, 0, 1669, 1671, 3, 286, 143, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1677, 1, 0, 0, 0, 1672, 1673, 3, 374, 187, 0, 1673, 1674, 5, 351, 0, 0, 1674, 1675, 5, 82, 0, 0, 1675, 1677, 1, 0, 0, 0, 1676, 1667, 1, 0, 0, 0, 1676, 1672, 1, 0, 0, 0, 1677, 35, 1, 0, 0, 0, 1678, 1679, 7, 11, 0, 0, 1679, 37, 1, 0, 0, 0, 1680, 1681, 7, 12, 0, 0, 1681, 39, 1, 0, 0, 0, 1682, 1688, 3, 96, 48, 0, 1683, 1688, 3, 386, 193, 0, 1684, 1688, 3, 288, 144, 0, 1685, 1688, 3, 290, 145, 0, 1686, 1688, 3, 292, 146, 0, 1687, 1682, 1, 0, 0, 0, 1687, 1683, 1, 0, 0, 0, 1687, 1684, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1687, 1686, 1, 0, 0, 0, 1688, 41, 1, 0, 0, 0, 1689, 1694, 3, 374, 187, 0, 1690, 1691, 5, 5, 0, 0, 1691, 1693, 3, 374, 187, 0, 1692, 1690, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 43, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1697, 1698, 5, 345, 0, 0, 1698, 1703, 3, 46, 23, 0, 1699, 1700, 5, 4, 0, 0, 1700, 1702, 3, 46, 23, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 45, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1708, 3, 370, 185, 0, 1707, 1709, 3, 210, 105, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1711, 1, 0, 0, 0, 1710, 1712, 5, 20, 0, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 5, 2, 0, 0, 1714, 1715, 3, 26, 13, 0, 1715, 1716, 5, 3, 0, 0, 1716, 47, 1, 0, 0, 0, 1717, 1718, 5, 331, 0, 0, 1718, 1719, 3, 244, 122, 0, 1719, 49, 1, 0, 0, 0, 1720, 1721, 5, 206, 0, 0, 1721, 1734, 3, 60, 30, 0, 1722, 1723, 5, 217, 0, 0, 1723, 1724, 5, 31, 0, 0, 1724, 1734, 3, 258, 129, 0, 1725, 1734, 3, 20, 10, 0, 1726, 1734, 3, 18, 9, 0, 1727, 1734, 3, 240, 120, 0, 1728, 1734, 3, 68, 34, 0, 1729, 1734, 3, 22, 11, 0, 1730, 1734, 3, 24, 12, 0, 1731, 1732, 5, 296, 0, 0, 1732, 1734, 3, 52, 26, 0, 1733, 1720, 1, 0, 0, 0, 1733, 1722, 1, 0, 0, 0, 1733, 1725, 1, 0, 0, 0, 1733, 1726, 1, 0, 0, 0, 1733, 1727, 1, 0, 0, 0, 1733, 1728, 1, 0, 0, 0, 1733, 1729, 1, 0, 0, 0, 1733, 1730, 1, 0, 0, 0, 1733, 1731, 1, 0, 0, 0, 1734, 1737, 1, 0, 0, 0, 1735, 1733, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 51, 1, 0, 0, 0, 1737, 1735, 1, 0, 0, 0, 1738, 1739, 5, 2, 0, 0, 1739, 1744, 3, 54, 27, 0, 1740, 1741, 5, 4, 0, 0, 1741, 1743, 3, 54, 27, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1746, 1, 0, 0, 0, 1744, 1742, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1747, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1748, 5, 3, 0, 0, 1748, 53, 1, 0, 0, 0, 1749, 1754, 3, 56, 28, 0, 1750, 1752, 5, 351, 0, 0, 1751, 1750, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 3, 58, 29, 0, 1754, 1751, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 55, 1, 0, 0, 0, 1756, 1761, 3, 374, 187, 0, 1757, 1758, 5, 5, 0, 0, 1758, 1760, 3, 374, 187, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1766, 3, 386, 193, 0, 1765, 1756, 1, 0, 0, 0, 1765, 1764, 1, 0, 0, 0, 1766, 57, 1, 0, 0, 0, 1767, 1772, 5, 381, 0, 0, 1768, 1772, 5, 383, 0, 0, 1769, 1772, 3, 294, 147, 0, 1770, 1772, 3, 386, 193, 0, 1771, 1767, 1, 0, 0, 0, 1771, 1768, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1774, 5, 2, 0, 0, 1774, 1779, 3, 62, 31, 0, 1775, 1776, 5, 4, 0, 0, 1776, 1778, 3, 62, 31, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1783, 5, 3, 0, 0, 1783, 61, 1, 0, 0, 0, 1784, 1789, 3, 56, 28, 0, 1785, 1787, 5, 351, 0, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1790, 3, 266, 133, 0, 1789, 1786, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 63, 1, 0, 0, 0, 1791, 1792, 5, 2, 0, 0, 1792, 1797, 3, 286, 143, 0, 1793, 1794, 5, 4, 0, 0, 1794, 1796, 3, 286, 143, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1801, 5, 3, 0, 0, 1801, 65, 1, 0, 0, 0, 1802, 1803, 5, 2, 0, 0, 1803, 1808, 3, 64, 32, 0, 1804, 1805, 5, 4, 0, 0, 1805, 1807, 3, 64, 32, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1810, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1812, 5, 3, 0, 0, 1812, 67, 1, 0, 0, 0, 1813, 1814, 5, 282, 0, 0, 1814, 1815, 5, 20, 0, 0, 1815, 1820, 3, 70, 35, 0, 1816, 1817, 5, 282, 0, 0, 1817, 1818, 5, 31, 0, 0, 1818, 1820, 3, 72, 36, 0, 1819, 1813, 1, 0, 0, 0, 1819, 1816, 1, 0, 0, 0, 1820, 69, 1, 0, 0, 0, 1821, 1822, 5, 146, 0, 0, 1822, 1823, 3, 386, 193, 0, 1823, 1824, 5, 211, 0, 0, 1824, 1825, 3, 386, 193, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1828, 3, 374, 187, 0, 1827, 1821, 1, 0, 0, 0, 1827, 1826, 1, 0, 0, 0, 1828, 71, 1, 0, 0, 0, 1829, 1833, 3, 386, 193, 0, 1830, 1831, 5, 345, 0, 0, 1831, 1832, 5, 266, 0, 0, 1832, 1834, 3, 52, 26, 0, 1833, 1830, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1836, 3, 374, 187, 0, 1836, 1837, 3, 386, 193, 0, 1837, 75, 1, 0, 0, 0, 1838, 1839, 3, 28, 14, 0, 1839, 1840, 3, 26, 13, 0, 1840, 1895, 1, 0, 0, 0, 1841, 1843, 3, 144, 72, 0, 1842, 1844, 3, 100, 50, 0, 1843, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1895, 1, 0, 0, 0, 1847, 1848, 5, 84, 0, 0, 1848, 1849, 5, 123, 0, 0, 1849, 1850, 3, 84, 42, 0, 1850, 1852, 3, 238, 119, 0, 1851, 1853, 3, 136, 68, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1895, 1, 0, 0, 0, 1854, 1855, 5, 328, 0, 0, 1855, 1856, 3, 84, 42, 0, 1856, 1857, 3, 238, 119, 0, 1857, 1859, 3, 118, 59, 0, 1858, 1860, 3, 136, 68, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1895, 1, 0, 0, 0, 1861, 1862, 5, 178, 0, 0, 1862, 1863, 5, 152, 0, 0, 1863, 1864, 3, 84, 42, 0, 1864, 1865, 3, 238, 119, 0, 1865, 1871, 5, 331, 0, 0, 1866, 1872, 3, 96, 48, 0, 1867, 1868, 5, 2, 0, 0, 1868, 1869, 3, 26, 13, 0, 1869, 1870, 5, 3, 0, 0, 1870, 1872, 1, 0, 0, 0, 1871, 1866, 1, 0, 0, 0, 1871, 1867, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 3, 238, 119, 0, 1874, 1875, 5, 202, 0, 0, 1875, 1879, 3, 274, 137, 0, 1876, 1878, 3, 120, 60, 0, 1877, 1876, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1885, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1884, 3, 122, 61, 0, 1883, 1882, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1891, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1890, 3, 124, 62, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1895, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1838, 1, 0, 0, 0, 1894, 1841, 1, 0, 0, 0, 1894, 1847, 1, 0, 0, 0, 1894, 1854, 1, 0, 0, 0, 1894, 1861, 1, 0, 0, 0, 1895, 77, 1, 0, 0, 0, 1896, 1897, 3, 96, 48, 0, 1897, 79, 1, 0, 0, 0, 1898, 1899, 3, 96, 48, 0, 1899, 81, 1, 0, 0, 0, 1900, 1901, 3, 250, 125, 0, 1901, 83, 1, 0, 0, 0, 1902, 1903, 3, 250, 125, 0, 1903, 85, 1, 0, 0, 0, 1904, 1905, 3, 252, 126, 0, 1905, 87, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 89, 1, 0, 0, 0, 1908, 1909, 3, 244, 122, 0, 1909, 91, 1, 0, 0, 0, 1910, 1915, 3, 90, 45, 0, 1911, 1912, 5, 4, 0, 0, 1912, 1914, 3, 90, 45, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 93, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 3, 370, 185, 0, 1919, 95, 1, 0, 0, 0, 1920, 1921, 5, 136, 0, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1923, 3, 266, 133, 0, 1923, 1924, 5, 3, 0, 0, 1924, 1927, 1, 0, 0, 0, 1925, 1927, 3, 244, 122, 0, 1926, 1920, 1, 0, 0, 0, 1926, 1925, 1, 0, 0, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 208, 0, 0, 1929, 1930, 5, 31, 0, 0, 1930, 1935, 3, 106, 53, 0, 1931, 1932, 5, 4, 0, 0, 1932, 1934, 3, 106, 53, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1939, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1928, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1950, 1, 0, 0, 0, 1940, 1941, 5, 44, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 1947, 3, 266, 133, 0, 1943, 1944, 5, 4, 0, 0, 1944, 1946, 3, 266, 133, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1949, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1940, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1962, 1, 0, 0, 0, 1952, 1953, 5, 93, 0, 0, 1953, 1954, 5, 31, 0, 0, 1954, 1959, 3, 266, 133, 0, 1955, 1956, 5, 4, 0, 0, 1956, 1958, 3, 266, 133, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1961, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1963, 1, 0, 0, 0, 1961, 1959, 1, 0, 0, 0, 1962, 1952, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1974, 1, 0, 0, 0, 1964, 1965, 5, 277, 0, 0, 1965, 1966, 5, 31, 0, 0, 1966, 1971, 3, 106, 53, 0, 1967, 1968, 5, 4, 0, 0, 1968, 1970, 3, 106, 53, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1973, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1975, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1964, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 350, 175, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1984, 1, 0, 0, 0, 1979, 1982, 5, 164, 0, 0, 1980, 1983, 5, 10, 0, 0, 1981, 1983, 3, 266, 133, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1981, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1979, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1987, 5, 201, 0, 0, 1987, 1989, 3, 266, 133, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 99, 1, 0, 0, 0, 1990, 1991, 3, 28, 14, 0, 1991, 1992, 3, 110, 55, 0, 1992, 101, 1, 0, 0, 0, 1993, 1994, 6, 51, -1, 0, 1994, 1995, 3, 104, 52, 0, 1995, 2016, 1, 0, 0, 0, 1996, 1997, 10, 3, 0, 0, 1997, 1999, 7, 13, 0, 0, 1998, 2000, 3, 194, 97, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2015, 3, 102, 51, 4, 2002, 2003, 10, 2, 0, 0, 2003, 2005, 5, 148, 0, 0, 2004, 2006, 3, 194, 97, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2015, 3, 102, 51, 3, 2008, 2009, 10, 1, 0, 0, 2009, 2011, 7, 14, 0, 0, 2010, 2012, 3, 194, 97, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 3, 102, 51, 2, 2014, 1996, 1, 0, 0, 0, 2014, 2002, 1, 0, 0, 0, 2014, 2008, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 103, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2029, 3, 112, 56, 0, 2020, 2029, 3, 108, 54, 0, 2021, 2022, 5, 292, 0, 0, 2022, 2029, 3, 84, 42, 0, 2023, 2029, 3, 224, 112, 0, 2024, 2025, 5, 2, 0, 0, 2025, 2026, 3, 26, 13, 0, 2026, 2027, 5, 3, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2019, 1, 0, 0, 0, 2028, 2020, 1, 0, 0, 0, 2028, 2021, 1, 0, 0, 0, 2028, 2023, 1, 0, 0, 0, 2028, 2024, 1, 0, 0, 0, 2029, 105, 1, 0, 0, 0, 2030, 2033, 3, 90, 45, 0, 2031, 2033, 3, 266, 133, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2036, 7, 15, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2039, 1, 0, 0, 0, 2037, 2038, 5, 198, 0, 0, 2038, 2040, 7, 16, 0, 0, 2039, 2037, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 107, 1, 0, 0, 0, 2041, 2043, 3, 144, 72, 0, 2042, 2044, 3, 110, 55, 0, 2043, 2042, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 109, 1, 0, 0, 0, 2047, 2049, 3, 114, 57, 0, 2048, 2050, 3, 136, 68, 0, 2049, 2048, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 3, 98, 49, 0, 2052, 2075, 1, 0, 0, 0, 2053, 2057, 3, 116, 58, 0, 2054, 2056, 3, 192, 96, 0, 2055, 2054, 1, 0, 0, 0, 2056, 2059, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2061, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2060, 2062, 3, 136, 68, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2065, 3, 150, 75, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2067, 1, 0, 0, 0, 2066, 2068, 3, 138, 69, 0, 2067, 2066, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2071, 3, 350, 175, 0, 2070, 2069, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 3, 98, 49, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2047, 1, 0, 0, 0, 2074, 2053, 1, 0, 0, 0, 2075, 111, 1, 0, 0, 0, 2076, 2078, 3, 114, 57, 0, 2077, 2079, 3, 144, 72, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2083, 1, 0, 0, 0, 2080, 2082, 3, 192, 96, 0, 2081, 2080, 1, 0, 0, 0, 2082, 2085, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2088, 3, 136, 68, 0, 2087, 2086, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2091, 3, 150, 75, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2093, 1, 0, 0, 0, 2092, 2094, 3, 138, 69, 0, 2093, 2092, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2097, 3, 350, 175, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2121, 1, 0, 0, 0, 2098, 2100, 3, 116, 58, 0, 2099, 2101, 3, 144, 72, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2105, 1, 0, 0, 0, 2102, 2104, 3, 192, 96, 0, 2103, 2102, 1, 0, 0, 0, 2104, 2107, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2109, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2110, 3, 136, 68, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 150, 75, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 138, 69, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 350, 175, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2076, 1, 0, 0, 0, 2120, 2098, 1, 0, 0, 0, 2121, 113, 1, 0, 0, 0, 2122, 2123, 5, 262, 0, 0, 2123, 2124, 5, 313, 0, 0, 2124, 2126, 5, 2, 0, 0, 2125, 2127, 3, 194, 97, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 3, 272, 136, 0, 2129, 2130, 5, 3, 0, 0, 2130, 2142, 1, 0, 0, 0, 2131, 2133, 5, 176, 0, 0, 2132, 2134, 3, 194, 97, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2142, 3, 272, 136, 0, 2136, 2138, 5, 237, 0, 0, 2137, 2139, 3, 194, 97, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 3, 272, 136, 0, 2141, 2122, 1, 0, 0, 0, 2141, 2131, 1, 0, 0, 0, 2141, 2136, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2145, 3, 240, 120, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2148, 1, 0, 0, 0, 2146, 2147, 5, 235, 0, 0, 2147, 2149, 3, 386, 193, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 5, 331, 0, 0, 2151, 2164, 3, 386, 193, 0, 2152, 2162, 5, 20, 0, 0, 2153, 2163, 3, 212, 106, 0, 2154, 2163, 3, 332, 166, 0, 2155, 2158, 5, 2, 0, 0, 2156, 2159, 3, 212, 106, 0, 2157, 2159, 3, 332, 166, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2161, 5, 3, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2153, 1, 0, 0, 0, 2162, 2154, 1, 0, 0, 0, 2162, 2155, 1, 0, 0, 0, 2163, 2165, 1, 0, 0, 0, 2164, 2152, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 1, 0, 0, 0, 2166, 2168, 3, 240, 120, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2171, 1, 0, 0, 0, 2169, 2170, 5, 234, 0, 0, 2170, 2172, 3, 386, 193, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 115, 1, 0, 0, 0, 2173, 2177, 5, 262, 0, 0, 2174, 2176, 3, 140, 70, 0, 2175, 2174, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2182, 3, 194, 97, 0, 2181, 2180, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2184, 3, 256, 128, 0, 2184, 117, 1, 0, 0, 0, 2185, 2186, 5, 268, 0, 0, 2186, 2187, 3, 132, 66, 0, 2187, 119, 1, 0, 0, 0, 2188, 2189, 5, 342, 0, 0, 2189, 2192, 5, 177, 0, 0, 2190, 2191, 5, 14, 0, 0, 2191, 2193, 3, 274, 137, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 5, 299, 0, 0, 2195, 2196, 3, 126, 63, 0, 2196, 121, 1, 0, 0, 0, 2197, 2198, 5, 342, 0, 0, 2198, 2199, 5, 196, 0, 0, 2199, 2202, 5, 177, 0, 0, 2200, 2201, 5, 31, 0, 0, 2201, 2203, 5, 295, 0, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2206, 1, 0, 0, 0, 2204, 2205, 5, 14, 0, 0, 2205, 2207, 3, 274, 137, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 5, 299, 0, 0, 2209, 2210, 3, 128, 64, 0, 2210, 123, 1, 0, 0, 0, 2211, 2212, 5, 342, 0, 0, 2212, 2213, 5, 196, 0, 0, 2213, 2214, 5, 177, 0, 0, 2214, 2215, 5, 31, 0, 0, 2215, 2218, 5, 279, 0, 0, 2216, 2217, 5, 14, 0, 0, 2217, 2219, 3, 274, 137, 0, 2218, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 5, 299, 0, 0, 2221, 2222, 3, 130, 65, 0, 2222, 125, 1, 0, 0, 0, 2223, 2231, 5, 84, 0, 0, 2224, 2225, 5, 328, 0, 0, 2225, 2226, 5, 268, 0, 0, 2226, 2231, 5, 362, 0, 0, 2227, 2228, 5, 328, 0, 0, 2228, 2229, 5, 268, 0, 0, 2229, 2231, 3, 132, 66, 0, 2230, 2223, 1, 0, 0, 0, 2230, 2224, 1, 0, 0, 0, 2230, 2227, 1, 0, 0, 0, 2231, 127, 1, 0, 0, 0, 2232, 2233, 5, 147, 0, 0, 2233, 2251, 5, 362, 0, 0, 2234, 2235, 5, 147, 0, 0, 2235, 2236, 5, 2, 0, 0, 2236, 2237, 3, 242, 121, 0, 2237, 2238, 5, 3, 0, 0, 2238, 2239, 5, 332, 0, 0, 2239, 2240, 5, 2, 0, 0, 2240, 2245, 3, 266, 133, 0, 2241, 2242, 5, 4, 0, 0, 2242, 2244, 3, 266, 133, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2248, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2248, 2249, 5, 3, 0, 0, 2249, 2251, 1, 0, 0, 0, 2250, 2232, 1, 0, 0, 0, 2250, 2234, 1, 0, 0, 0, 2251, 129, 1, 0, 0, 0, 2252, 2257, 5, 84, 0, 0, 2253, 2254, 5, 328, 0, 0, 2254, 2255, 5, 268, 0, 0, 2255, 2257, 3, 132, 66, 0, 2256, 2252, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2257, 131, 1, 0, 0, 0, 2258, 2263, 3, 134, 67, 0, 2259, 2260, 5, 4, 0, 0, 2260, 2262, 3, 134, 67, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 133, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 3, 244, 122, 0, 2267, 2268, 5, 351, 0, 0, 2268, 2269, 3, 266, 133, 0, 2269, 135, 1, 0, 0, 0, 2270, 2271, 5, 343, 0, 0, 2271, 2272, 3, 274, 137, 0, 2272, 137, 1, 0, 0, 0, 2273, 2274, 5, 132, 0, 0, 2274, 2275, 3, 274, 137, 0, 2275, 139, 1, 0, 0, 0, 2276, 2277, 5, 373, 0, 0, 2277, 2284, 3, 142, 71, 0, 2278, 2280, 5, 4, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 3, 142, 71, 0, 2282, 2279, 1, 0, 0, 0, 2283, 2286, 1, 0, 0, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2287, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2287, 2288, 5, 374, 0, 0, 2288, 141, 1, 0, 0, 0, 2289, 2303, 3, 374, 187, 0, 2290, 2291, 3, 374, 187, 0, 2291, 2292, 5, 2, 0, 0, 2292, 2297, 3, 282, 141, 0, 2293, 2294, 5, 4, 0, 0, 2294, 2296, 3, 282, 141, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 3, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2289, 1, 0, 0, 0, 2302, 2290, 1, 0, 0, 0, 2303, 143, 1, 0, 0, 0, 2304, 2305, 5, 123, 0, 0, 2305, 2310, 3, 196, 98, 0, 2306, 2307, 5, 4, 0, 0, 2307, 2309, 3, 196, 98, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2312, 1, 0, 0, 0, 2310, 2308, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2316, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2315, 3, 192, 96, 0, 2314, 2313, 1, 0, 0, 0, 2315, 2318, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2321, 3, 160, 80, 0, 2320, 2319, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2324, 3, 166, 83, 0, 2323, 2322, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 145, 1, 0, 0, 0, 2325, 2326, 7, 17, 0, 0, 2326, 147, 1, 0, 0, 0, 2327, 2329, 5, 119, 0, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 7, 18, 0, 0, 2331, 2332, 5, 20, 0, 0, 2332, 2333, 5, 200, 0, 0, 2333, 2342, 3, 390, 195, 0, 2334, 2336, 5, 119, 0, 0, 2335, 2334, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 7, 19, 0, 0, 2338, 2339, 5, 20, 0, 0, 2339, 2340, 5, 200, 0, 0, 2340, 2342, 3, 278, 139, 0, 2341, 2328, 1, 0, 0, 0, 2341, 2335, 1, 0, 0, 0, 2342, 149, 1, 0, 0, 0, 2343, 2344, 5, 130, 0, 0, 2344, 2345, 5, 31, 0, 0, 2345, 2350, 3, 152, 76, 0, 2346, 2347, 5, 4, 0, 0, 2347, 2349, 3, 152, 76, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2383, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 2354, 5, 130, 0, 0, 2354, 2355, 5, 31, 0, 0, 2355, 2360, 3, 266, 133, 0, 2356, 2357, 5, 4, 0, 0, 2357, 2359, 3, 266, 133, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2362, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2380, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 2364, 5, 345, 0, 0, 2364, 2381, 5, 255, 0, 0, 2365, 2366, 5, 345, 0, 0, 2366, 2381, 5, 61, 0, 0, 2367, 2368, 5, 131, 0, 0, 2368, 2369, 5, 270, 0, 0, 2369, 2370, 5, 2, 0, 0, 2370, 2375, 3, 158, 79, 0, 2371, 2372, 5, 4, 0, 0, 2372, 2374, 3, 158, 79, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2377, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 3, 0, 0, 2379, 2381, 1, 0, 0, 0, 2380, 2363, 1, 0, 0, 0, 2380, 2365, 1, 0, 0, 0, 2380, 2367, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2383, 1, 0, 0, 0, 2382, 2343, 1, 0, 0, 0, 2382, 2353, 1, 0, 0, 0, 2383, 151, 1, 0, 0, 0, 2384, 2388, 3, 90, 45, 0, 2385, 2388, 3, 154, 77, 0, 2386, 2388, 3, 266, 133, 0, 2387, 2384, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2386, 1, 0, 0, 0, 2388, 153, 1, 0, 0, 0, 2389, 2390, 7, 20, 0, 0, 2390, 2391, 5, 2, 0, 0, 2391, 2396, 3, 158, 79, 0, 2392, 2393, 5, 4, 0, 0, 2393, 2395, 3, 158, 79, 0, 2394, 2392, 1, 0, 0, 0, 2395, 2398, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2400, 5, 3, 0, 0, 2400, 2415, 1, 0, 0, 0, 2401, 2402, 5, 131, 0, 0, 2402, 2403, 5, 270, 0, 0, 2403, 2404, 5, 2, 0, 0, 2404, 2409, 3, 156, 78, 0, 2405, 2406, 5, 4, 0, 0, 2406, 2408, 3, 156, 78, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2411, 1, 0, 0, 0, 2409, 2407, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2412, 1, 0, 0, 0, 2411, 2409, 1, 0, 0, 0, 2412, 2413, 5, 3, 0, 0, 2413, 2415, 1, 0, 0, 0, 2414, 2389, 1, 0, 0, 0, 2414, 2401, 1, 0, 0, 0, 2415, 155, 1, 0, 0, 0, 2416, 2419, 3, 154, 77, 0, 2417, 2419, 3, 158, 79, 0, 2418, 2416, 1, 0, 0, 0, 2418, 2417, 1, 0, 0, 0, 2419, 157, 1, 0, 0, 0, 2420, 2441, 3, 90, 45, 0, 2421, 2441, 3, 266, 133, 0, 2422, 2437, 5, 2, 0, 0, 2423, 2426, 3, 90, 45, 0, 2424, 2426, 3, 266, 133, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2424, 1, 0, 0, 0, 2426, 2434, 1, 0, 0, 0, 2427, 2430, 5, 4, 0, 0, 2428, 2431, 3, 90, 45, 0, 2429, 2431, 3, 266, 133, 0, 2430, 2428, 1, 0, 0, 0, 2430, 2429, 1, 0, 0, 0, 2431, 2433, 1, 0, 0, 0, 2432, 2427, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2425, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 5, 3, 0, 0, 2440, 2420, 1, 0, 0, 0, 2440, 2421, 1, 0, 0, 0, 2440, 2422, 1, 0, 0, 0, 2441, 159, 1, 0, 0, 0, 2442, 2443, 5, 222, 0, 0, 2443, 2444, 5, 2, 0, 0, 2444, 2445, 3, 256, 128, 0, 2445, 2446, 5, 119, 0, 0, 2446, 2447, 3, 162, 81, 0, 2447, 2448, 5, 140, 0, 0, 2448, 2449, 5, 2, 0, 0, 2449, 2454, 3, 164, 82, 0, 2450, 2451, 5, 4, 0, 0, 2451, 2453, 3, 164, 82, 0, 2452, 2450, 1, 0, 0, 0, 2453, 2456, 1, 0, 0, 0, 2454, 2452, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2457, 2458, 5, 3, 0, 0, 2458, 2459, 5, 3, 0, 0, 2459, 161, 1, 0, 0, 0, 2460, 2473, 3, 374, 187, 0, 2461, 2462, 5, 2, 0, 0, 2462, 2467, 3, 374, 187, 0, 2463, 2464, 5, 4, 0, 0, 2464, 2466, 3, 374, 187, 0, 2465, 2463, 1, 0, 0, 0, 2466, 2469, 1, 0, 0, 0, 2467, 2465, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2470, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2470, 2471, 5, 3, 0, 0, 2471, 2473, 1, 0, 0, 0, 2472, 2460, 1, 0, 0, 0, 2472, 2461, 1, 0, 0, 0, 2473, 163, 1, 0, 0, 0, 2474, 2479, 3, 266, 133, 0, 2475, 2477, 5, 20, 0, 0, 2476, 2475, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 3, 374, 187, 0, 2479, 2476, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 165, 1, 0, 0, 0, 2481, 2483, 5, 326, 0, 0, 2482, 2484, 3, 168, 84, 0, 2483, 2482, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 5, 2, 0, 0, 2486, 2487, 3, 170, 85, 0, 2487, 2492, 5, 3, 0, 0, 2488, 2490, 5, 20, 0, 0, 2489, 2488, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2493, 3, 374, 187, 0, 2492, 2489, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 167, 1, 0, 0, 0, 2494, 2495, 7, 21, 0, 0, 2495, 2496, 5, 198, 0, 0, 2496, 169, 1, 0, 0, 0, 2497, 2500, 3, 172, 86, 0, 2498, 2500, 3, 174, 87, 0, 2499, 2497, 1, 0, 0, 0, 2499, 2498, 1, 0, 0, 0, 2500, 171, 1, 0, 0, 0, 2501, 2502, 3, 178, 89, 0, 2502, 2503, 5, 119, 0, 0, 2503, 2504, 3, 180, 90, 0, 2504, 2505, 5, 140, 0, 0, 2505, 2506, 5, 2, 0, 0, 2506, 2511, 3, 182, 91, 0, 2507, 2508, 5, 4, 0, 0, 2508, 2510, 3, 182, 91, 0, 2509, 2507, 1, 0, 0, 0, 2510, 2513, 1, 0, 0, 0, 2511, 2509, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2511, 1, 0, 0, 0, 2514, 2515, 5, 3, 0, 0, 2515, 173, 1, 0, 0, 0, 2516, 2517, 5, 2, 0, 0, 2517, 2522, 3, 178, 89, 0, 2518, 2519, 5, 4, 0, 0, 2519, 2521, 3, 178, 89, 0, 2520, 2518, 1, 0, 0, 0, 2521, 2524, 1, 0, 0, 0, 2522, 2520, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2525, 2526, 5, 3, 0, 0, 2526, 2527, 5, 119, 0, 0, 2527, 2528, 3, 180, 90, 0, 2528, 2529, 5, 140, 0, 0, 2529, 2530, 5, 2, 0, 0, 2530, 2535, 3, 176, 88, 0, 2531, 2532, 5, 4, 0, 0, 2532, 2534, 3, 176, 88, 0, 2533, 2531, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2538, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2539, 5, 3, 0, 0, 2539, 175, 1, 0, 0, 0, 2540, 2541, 5, 2, 0, 0, 2541, 2546, 3, 184, 92, 0, 2542, 2543, 5, 4, 0, 0, 2543, 2545, 3, 184, 92, 0, 2544, 2542, 1, 0, 0, 0, 2545, 2548, 1, 0, 0, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2549, 2551, 5, 3, 0, 0, 2550, 2552, 3, 186, 93, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 177, 1, 0, 0, 0, 2553, 2554, 3, 374, 187, 0, 2554, 179, 1, 0, 0, 0, 2555, 2556, 3, 374, 187, 0, 2556, 181, 1, 0, 0, 0, 2557, 2559, 3, 184, 92, 0, 2558, 2560, 3, 186, 93, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 183, 1, 0, 0, 0, 2561, 2562, 3, 244, 122, 0, 2562, 185, 1, 0, 0, 0, 2563, 2565, 5, 20, 0, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 3, 374, 187, 0, 2567, 187, 1, 0, 0, 0, 2568, 2569, 5, 137, 0, 0, 2569, 2570, 5, 196, 0, 0, 2570, 2571, 5, 105, 0, 0, 2571, 189, 1, 0, 0, 0, 2572, 2573, 5, 137, 0, 0, 2573, 2574, 5, 105, 0, 0, 2574, 191, 1, 0, 0, 0, 2575, 2576, 5, 158, 0, 0, 2576, 2578, 5, 337, 0, 0, 2577, 2579, 5, 210, 0, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 3, 88, 44, 0, 2581, 2590, 5, 2, 0, 0, 2582, 2587, 3, 266, 133, 0, 2583, 2584, 5, 4, 0, 0, 2584, 2586, 3, 266, 133, 0, 2585, 2583, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2591, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2582, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 5, 3, 0, 0, 2593, 2605, 3, 238, 119, 0, 2594, 2596, 5, 20, 0, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2602, 3, 374, 187, 0, 2598, 2599, 5, 4, 0, 0, 2599, 2601, 3, 374, 187, 0, 2600, 2598, 1, 0, 0, 0, 2601, 2604, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2606, 1, 0, 0, 0, 2604, 2602, 1, 0, 0, 0, 2605, 2595, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 193, 1, 0, 0, 0, 2607, 2608, 7, 22, 0, 0, 2608, 195, 1, 0, 0, 0, 2609, 2621, 3, 84, 42, 0, 2610, 2612, 5, 158, 0, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2617, 3, 222, 111, 0, 2614, 2616, 3, 198, 99, 0, 2615, 2614, 1, 0, 0, 0, 2616, 2619, 1, 0, 0, 0, 2617, 2615, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2617, 1, 0, 0, 0, 2620, 2609, 1, 0, 0, 0, 2620, 2611, 1, 0, 0, 0, 2621, 197, 1, 0, 0, 0, 2622, 2626, 3, 200, 100, 0, 2623, 2626, 3, 160, 80, 0, 2624, 2626, 3, 166, 83, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 199, 1, 0, 0, 0, 2627, 2628, 3, 202, 101, 0, 2628, 2630, 5, 155, 0, 0, 2629, 2631, 5, 158, 0, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2634, 3, 222, 111, 0, 2633, 2635, 3, 204, 102, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2645, 1, 0, 0, 0, 2636, 2637, 5, 193, 0, 0, 2637, 2638, 3, 202, 101, 0, 2638, 2640, 5, 155, 0, 0, 2639, 2641, 5, 158, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 3, 222, 111, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2627, 1, 0, 0, 0, 2644, 2636, 1, 0, 0, 0, 2645, 201, 1, 0, 0, 0, 2646, 2648, 5, 144, 0, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2671, 1, 0, 0, 0, 2649, 2671, 5, 60, 0, 0, 2650, 2652, 5, 161, 0, 0, 2651, 2653, 5, 210, 0, 0, 2652, 2651, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2671, 1, 0, 0, 0, 2654, 2656, 5, 161, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2671, 5, 263, 0, 0, 2658, 2660, 5, 249, 0, 0, 2659, 2661, 5, 210, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2671, 1, 0, 0, 0, 2662, 2664, 5, 124, 0, 0, 2663, 2665, 5, 210, 0, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2671, 1, 0, 0, 0, 2666, 2668, 5, 161, 0, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 5, 15, 0, 0, 2670, 2647, 1, 0, 0, 0, 2670, 2649, 1, 0, 0, 0, 2670, 2650, 1, 0, 0, 0, 2670, 2655, 1, 0, 0, 0, 2670, 2658, 1, 0, 0, 0, 2670, 2662, 1, 0, 0, 0, 2670, 2667, 1, 0, 0, 0, 2671, 203, 1, 0, 0, 0, 2672, 2673, 5, 202, 0, 0, 2673, 2677, 3, 274, 137, 0, 2674, 2675, 5, 331, 0, 0, 2675, 2677, 3, 210, 105, 0, 2676, 2672, 1, 0, 0, 0, 2676, 2674, 1, 0, 0, 0, 2677, 205, 1, 0, 0, 0, 2678, 2679, 5, 294, 0, 0, 2679, 2681, 5, 2, 0, 0, 2680, 2682, 3, 208, 104, 0, 2681, 2680, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2688, 5, 3, 0, 0, 2684, 2685, 5, 242, 0, 0, 2685, 2686, 5, 2, 0, 0, 2686, 2687, 5, 381, 0, 0, 2687, 2689, 5, 3, 0, 0, 2688, 2684, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 207, 1, 0, 0, 0, 2690, 2692, 5, 361, 0, 0, 2691, 2690, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 7, 23, 0, 0, 2694, 2715, 5, 221, 0, 0, 2695, 2696, 3, 266, 133, 0, 2696, 2697, 5, 257, 0, 0, 2697, 2715, 1, 0, 0, 0, 2698, 2699, 5, 29, 0, 0, 2699, 2700, 5, 381, 0, 0, 2700, 2701, 5, 209, 0, 0, 2701, 2702, 5, 200, 0, 0, 2702, 2711, 5, 381, 0, 0, 2703, 2709, 5, 202, 0, 0, 2704, 2710, 3, 374, 187, 0, 2705, 2706, 3, 368, 184, 0, 2706, 2707, 5, 2, 0, 0, 2707, 2708, 5, 3, 0, 0, 2708, 2710, 1, 0, 0, 0, 2709, 2704, 1, 0, 0, 0, 2709, 2705, 1, 0, 0, 0, 2710, 2712, 1, 0, 0, 0, 2711, 2703, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2715, 1, 0, 0, 0, 2713, 2715, 3, 266, 133, 0, 2714, 2691, 1, 0, 0, 0, 2714, 2695, 1, 0, 0, 0, 2714, 2698, 1, 0, 0, 0, 2714, 2713, 1, 0, 0, 0, 2715, 209, 1, 0, 0, 0, 2716, 2717, 5, 2, 0, 0, 2717, 2718, 3, 212, 106, 0, 2718, 2719, 5, 3, 0, 0, 2719, 211, 1, 0, 0, 0, 2720, 2725, 3, 370, 185, 0, 2721, 2722, 5, 4, 0, 0, 2722, 2724, 3, 370, 185, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2727, 1, 0, 0, 0, 2725, 2723, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 213, 1, 0, 0, 0, 2727, 2725, 1, 0, 0, 0, 2728, 2729, 5, 2, 0, 0, 2729, 2734, 3, 216, 108, 0, 2730, 2731, 5, 4, 0, 0, 2731, 2733, 3, 216, 108, 0, 2732, 2730, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2737, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2738, 5, 3, 0, 0, 2738, 215, 1, 0, 0, 0, 2739, 2741, 3, 370, 185, 0, 2740, 2742, 7, 15, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 217, 1, 0, 0, 0, 2743, 2744, 5, 2, 0, 0, 2744, 2749, 3, 220, 110, 0, 2745, 2746, 5, 4, 0, 0, 2746, 2748, 3, 220, 110, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2751, 1, 0, 0, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2752, 2753, 5, 3, 0, 0, 2753, 219, 1, 0, 0, 0, 2754, 2756, 3, 374, 187, 0, 2755, 2757, 3, 24, 12, 0, 2756, 2755, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 221, 1, 0, 0, 0, 2758, 2760, 3, 96, 48, 0, 2759, 2761, 3, 148, 74, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 1, 0, 0, 0, 2762, 2764, 3, 206, 103, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2766, 3, 238, 119, 0, 2766, 2786, 1, 0, 0, 0, 2767, 2768, 5, 2, 0, 0, 2768, 2769, 3, 26, 13, 0, 2769, 2771, 5, 3, 0, 0, 2770, 2772, 3, 206, 103, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 3, 238, 119, 0, 2774, 2786, 1, 0, 0, 0, 2775, 2776, 5, 2, 0, 0, 2776, 2777, 3, 196, 98, 0, 2777, 2779, 5, 3, 0, 0, 2778, 2780, 3, 206, 103, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 3, 238, 119, 0, 2782, 2786, 1, 0, 0, 0, 2783, 2786, 3, 224, 112, 0, 2784, 2786, 3, 236, 118, 0, 2785, 2758, 1, 0, 0, 0, 2785, 2767, 1, 0, 0, 0, 2785, 2775, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2785, 2784, 1, 0, 0, 0, 2786, 223, 1, 0, 0, 0, 2787, 2788, 5, 332, 0, 0, 2788, 2793, 3, 266, 133, 0, 2789, 2790, 5, 4, 0, 0, 2790, 2792, 3, 266, 133, 0, 2791, 2789, 1, 0, 0, 0, 2792, 2795, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2796, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2796, 2797, 3, 238, 119, 0, 2797, 225, 1, 0, 0, 0, 2798, 2799, 5, 292, 0, 0, 2799, 2801, 3, 84, 42, 0, 2800, 2802, 3, 228, 114, 0, 2801, 2800, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2818, 1, 0, 0, 0, 2803, 2804, 5, 292, 0, 0, 2804, 2805, 5, 2, 0, 0, 2805, 2806, 3, 84, 42, 0, 2806, 2808, 5, 3, 0, 0, 2807, 2809, 3, 228, 114, 0, 2808, 2807, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 2818, 1, 0, 0, 0, 2810, 2811, 5, 292, 0, 0, 2811, 2812, 5, 2, 0, 0, 2812, 2813, 3, 26, 13, 0, 2813, 2815, 5, 3, 0, 0, 2814, 2816, 3, 228, 114, 0, 2815, 2814, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 1, 0, 0, 0, 2817, 2798, 1, 0, 0, 0, 2817, 2803, 1, 0, 0, 0, 2817, 2810, 1, 0, 0, 0, 2818, 227, 1, 0, 0, 0, 2819, 2820, 5, 345, 0, 0, 2820, 2821, 5, 273, 0, 0, 2821, 2839, 5, 216, 0, 0, 2822, 2823, 7, 24, 0, 0, 2823, 2836, 5, 31, 0, 0, 2824, 2825, 5, 2, 0, 0, 2825, 2830, 3, 266, 133, 0, 2826, 2827, 5, 4, 0, 0, 2827, 2829, 3, 266, 133, 0, 2828, 2826, 1, 0, 0, 0, 2829, 2832, 1, 0, 0, 0, 2830, 2828, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 2833, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2833, 2834, 5, 3, 0, 0, 2834, 2837, 1, 0, 0, 0, 2835, 2837, 3, 266, 133, 0, 2836, 2824, 1, 0, 0, 0, 2836, 2835, 1, 0, 0, 0, 2837, 2839, 1, 0, 0, 0, 2838, 2819, 1, 0, 0, 0, 2838, 2822, 1, 0, 0, 0, 2839, 2856, 1, 0, 0, 0, 2840, 2841, 7, 25, 0, 0, 2841, 2854, 5, 31, 0, 0, 2842, 2843, 5, 2, 0, 0, 2843, 2848, 3, 106, 53, 0, 2844, 2845, 5, 4, 0, 0, 2845, 2847, 3, 106, 53, 0, 2846, 2844, 1, 0, 0, 0, 2847, 2850, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2852, 5, 3, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2855, 3, 106, 53, 0, 2854, 2842, 1, 0, 0, 0, 2854, 2853, 1, 0, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2840, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 229, 1, 0, 0, 0, 2858, 2859, 3, 374, 187, 0, 2859, 2860, 5, 372, 0, 0, 2860, 2861, 3, 226, 113, 0, 2861, 231, 1, 0, 0, 0, 2862, 2865, 3, 226, 113, 0, 2863, 2865, 3, 230, 115, 0, 2864, 2862, 1, 0, 0, 0, 2864, 2863, 1, 0, 0, 0, 2865, 233, 1, 0, 0, 0, 2866, 2869, 3, 232, 116, 0, 2867, 2869, 3, 270, 135, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 235, 1, 0, 0, 0, 2870, 2871, 3, 364, 182, 0, 2871, 2880, 5, 2, 0, 0, 2872, 2877, 3, 234, 117, 0, 2873, 2874, 5, 4, 0, 0, 2874, 2876, 3, 234, 117, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2879, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2881, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 2872, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, 5, 3, 0, 0, 2883, 2884, 3, 238, 119, 0, 2884, 237, 1, 0, 0, 0, 2885, 2887, 5, 20, 0, 0, 2886, 2885, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2890, 3, 376, 188, 0, 2889, 2891, 3, 210, 105, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2886, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 239, 1, 0, 0, 0, 2894, 2895, 5, 256, 0, 0, 2895, 2896, 5, 121, 0, 0, 2896, 2897, 5, 265, 0, 0, 2897, 2901, 3, 386, 193, 0, 2898, 2899, 5, 345, 0, 0, 2899, 2900, 5, 266, 0, 0, 2900, 2902, 3, 52, 26, 0, 2901, 2898, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2944, 1, 0, 0, 0, 2903, 2904, 5, 256, 0, 0, 2904, 2905, 5, 121, 0, 0, 2905, 2915, 5, 85, 0, 0, 2906, 2907, 5, 113, 0, 0, 2907, 2908, 5, 298, 0, 0, 2908, 2909, 5, 31, 0, 0, 2909, 2913, 3, 386, 193, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 31, 0, 0, 2912, 2914, 3, 386, 193, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2916, 1, 0, 0, 0, 2915, 2906, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2922, 1, 0, 0, 0, 2917, 2918, 5, 48, 0, 0, 2918, 2919, 5, 154, 0, 0, 2919, 2920, 5, 298, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2923, 3, 386, 193, 0, 2922, 2917, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2929, 1, 0, 0, 0, 2924, 2925, 5, 176, 0, 0, 2925, 2926, 5, 156, 0, 0, 2926, 2927, 5, 298, 0, 0, 2927, 2928, 5, 31, 0, 0, 2928, 2930, 3, 386, 193, 0, 2929, 2924, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2935, 1, 0, 0, 0, 2931, 2932, 5, 165, 0, 0, 2932, 2933, 5, 298, 0, 0, 2933, 2934, 5, 31, 0, 0, 2934, 2936, 3, 386, 193, 0, 2935, 2931, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2941, 1, 0, 0, 0, 2937, 2938, 5, 197, 0, 0, 2938, 2939, 5, 83, 0, 0, 2939, 2940, 5, 20, 0, 0, 2940, 2942, 3, 386, 193, 0, 2941, 2937, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2894, 1, 0, 0, 0, 2943, 2903, 1, 0, 0, 0, 2944, 241, 1, 0, 0, 0, 2945, 2950, 3, 244, 122, 0, 2946, 2947, 5, 4, 0, 0, 2947, 2949, 3, 244, 122, 0, 2948, 2946, 1, 0, 0, 0, 2949, 2952, 1, 0, 0, 0, 2950, 2948, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 243, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 2958, 3, 370, 185, 0, 2954, 2955, 5, 5, 0, 0, 2955, 2957, 3, 370, 185, 0, 2956, 2954, 1, 0, 0, 0, 2957, 2960, 1, 0, 0, 0, 2958, 2956, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 245, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2966, 3, 248, 124, 0, 2962, 2963, 5, 4, 0, 0, 2963, 2965, 3, 248, 124, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2968, 1, 0, 0, 0, 2966, 2964, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 247, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 3, 244, 122, 0, 2970, 2971, 5, 206, 0, 0, 2971, 2973, 3, 52, 26, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 249, 1, 0, 0, 0, 2974, 2975, 3, 370, 185, 0, 2975, 2976, 5, 5, 0, 0, 2976, 2978, 1, 0, 0, 0, 2977, 2974, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 3, 370, 185, 0, 2980, 251, 1, 0, 0, 0, 2981, 2982, 3, 370, 185, 0, 2982, 2983, 5, 5, 0, 0, 2983, 2985, 1, 0, 0, 0, 2984, 2981, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 3, 370, 185, 0, 2987, 253, 1, 0, 0, 0, 2988, 2991, 3, 90, 45, 0, 2989, 2991, 3, 266, 133, 0, 2990, 2988, 1, 0, 0, 0, 2990, 2989, 1, 0, 0, 0, 2991, 2999, 1, 0, 0, 0, 2992, 2994, 5, 20, 0, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2997, 1, 0, 0, 0, 2995, 2998, 3, 370, 185, 0, 2996, 2998, 3, 210, 105, 0, 2997, 2995, 1, 0, 0, 0, 2997, 2996, 1, 0, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2993, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 255, 1, 0, 0, 0, 3001, 3006, 3, 254, 127, 0, 3002, 3003, 5, 4, 0, 0, 3003, 3005, 3, 254, 127, 0, 3004, 3002, 1, 0, 0, 0, 3005, 3008, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 257, 1, 0, 0, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3010, 5, 2, 0, 0, 3010, 3015, 3, 260, 130, 0, 3011, 3012, 5, 4, 0, 0, 3012, 3014, 3, 260, 130, 0, 3013, 3011, 1, 0, 0, 0, 3014, 3017, 1, 0, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3018, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3018, 3019, 5, 3, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3023, 3, 262, 131, 0, 3021, 3023, 3, 334, 167, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3021, 1, 0, 0, 0, 3023, 261, 1, 0, 0, 0, 3024, 3038, 3, 368, 184, 0, 3025, 3026, 3, 374, 187, 0, 3026, 3027, 5, 2, 0, 0, 3027, 3032, 3, 264, 132, 0, 3028, 3029, 5, 4, 0, 0, 3029, 3031, 3, 264, 132, 0, 3030, 3028, 1, 0, 0, 0, 3031, 3034, 1, 0, 0, 0, 3032, 3030, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3035, 1, 0, 0, 0, 3034, 3032, 1, 0, 0, 0, 3035, 3036, 5, 3, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3024, 1, 0, 0, 0, 3037, 3025, 1, 0, 0, 0, 3038, 263, 1, 0, 0, 0, 3039, 3042, 3, 368, 184, 0, 3040, 3042, 3, 286, 143, 0, 3041, 3039, 1, 0, 0, 0, 3041, 3040, 1, 0, 0, 0, 3042, 265, 1, 0, 0, 0, 3043, 3044, 3, 274, 137, 0, 3044, 267, 1, 0, 0, 0, 3045, 3046, 3, 374, 187, 0, 3046, 3047, 5, 372, 0, 0, 3047, 3048, 3, 266, 133, 0, 3048, 269, 1, 0, 0, 0, 3049, 3052, 3, 266, 133, 0, 3050, 3052, 3, 268, 134, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3050, 1, 0, 0, 0, 3052, 271, 1, 0, 0, 0, 3053, 3058, 3, 266, 133, 0, 3054, 3055, 5, 4, 0, 0, 3055, 3057, 3, 266, 133, 0, 3056, 3054, 1, 0, 0, 0, 3057, 3060, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 273, 1, 0, 0, 0, 3060, 3058, 1, 0, 0, 0, 3061, 3062, 6, 137, -1, 0, 3062, 3063, 7, 26, 0, 0, 3063, 3074, 3, 274, 137, 5, 3064, 3065, 5, 105, 0, 0, 3065, 3066, 5, 2, 0, 0, 3066, 3067, 3, 26, 13, 0, 3067, 3068, 5, 3, 0, 0, 3068, 3074, 1, 0, 0, 0, 3069, 3071, 3, 278, 139, 0, 3070, 3072, 3, 276, 138, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3074, 1, 0, 0, 0, 3073, 3061, 1, 0, 0, 0, 3073, 3064, 1, 0, 0, 0, 3073, 3069, 1, 0, 0, 0, 3074, 3083, 1, 0, 0, 0, 3075, 3076, 10, 2, 0, 0, 3076, 3077, 5, 14, 0, 0, 3077, 3082, 3, 274, 137, 3, 3078, 3079, 10, 1, 0, 0, 3079, 3080, 5, 207, 0, 0, 3080, 3082, 3, 274, 137, 2, 3081, 3075, 1, 0, 0, 0, 3081, 3078, 1, 0, 0, 0, 3082, 3085, 1, 0, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 275, 1, 0, 0, 0, 3085, 3083, 1, 0, 0, 0, 3086, 3088, 5, 196, 0, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3090, 5, 24, 0, 0, 3090, 3091, 3, 278, 139, 0, 3091, 3092, 5, 14, 0, 0, 3092, 3093, 3, 278, 139, 0, 3093, 3169, 1, 0, 0, 0, 3094, 3096, 5, 196, 0, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 1, 0, 0, 0, 3097, 3098, 5, 140, 0, 0, 3098, 3099, 5, 2, 0, 0, 3099, 3104, 3, 266, 133, 0, 3100, 3101, 5, 4, 0, 0, 3101, 3103, 3, 266, 133, 0, 3102, 3100, 1, 0, 0, 0, 3103, 3106, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3107, 1, 0, 0, 0, 3106, 3104, 1, 0, 0, 0, 3107, 3108, 5, 3, 0, 0, 3108, 3169, 1, 0, 0, 0, 3109, 3111, 5, 196, 0, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 5, 140, 0, 0, 3113, 3114, 5, 2, 0, 0, 3114, 3115, 3, 26, 13, 0, 3115, 3116, 5, 3, 0, 0, 3116, 3169, 1, 0, 0, 0, 3117, 3119, 5, 196, 0, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 7, 27, 0, 0, 3121, 3169, 3, 278, 139, 0, 3122, 3124, 5, 196, 0, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 7, 28, 0, 0, 3126, 3140, 7, 29, 0, 0, 3127, 3128, 5, 2, 0, 0, 3128, 3141, 5, 3, 0, 0, 3129, 3130, 5, 2, 0, 0, 3130, 3135, 3, 266, 133, 0, 3131, 3132, 5, 4, 0, 0, 3132, 3134, 3, 266, 133, 0, 3133, 3131, 1, 0, 0, 0, 3134, 3137, 1, 0, 0, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3138, 3139, 5, 3, 0, 0, 3139, 3141, 1, 0, 0, 0, 3140, 3127, 1, 0, 0, 0, 3140, 3129, 1, 0, 0, 0, 3141, 3169, 1, 0, 0, 0, 3142, 3144, 5, 196, 0, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 7, 28, 0, 0, 3146, 3149, 3, 278, 139, 0, 3147, 3148, 5, 100, 0, 0, 3148, 3150, 3, 386, 193, 0, 3149, 3147, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3169, 1, 0, 0, 0, 3151, 3153, 5, 153, 0, 0, 3152, 3154, 5, 196, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3169, 5, 197, 0, 0, 3156, 3158, 5, 153, 0, 0, 3157, 3159, 5, 196, 0, 0, 3158, 3157, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3169, 7, 30, 0, 0, 3161, 3163, 5, 153, 0, 0, 3162, 3164, 5, 196, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3166, 5, 92, 0, 0, 3166, 3167, 5, 123, 0, 0, 3167, 3169, 3, 278, 139, 0, 3168, 3087, 1, 0, 0, 0, 3168, 3095, 1, 0, 0, 0, 3168, 3110, 1, 0, 0, 0, 3168, 3118, 1, 0, 0, 0, 3168, 3123, 1, 0, 0, 0, 3168, 3143, 1, 0, 0, 0, 3168, 3151, 1, 0, 0, 0, 3168, 3156, 1, 0, 0, 0, 3168, 3161, 1, 0, 0, 0, 3169, 277, 1, 0, 0, 0, 3170, 3171, 6, 139, -1, 0, 3171, 3175, 3, 282, 141, 0, 3172, 3173, 7, 31, 0, 0, 3173, 3175, 3, 278, 139, 7, 3174, 3170, 1, 0, 0, 0, 3174, 3172, 1, 0, 0, 0, 3175, 3197, 1, 0, 0, 0, 3176, 3177, 10, 6, 0, 0, 3177, 3178, 7, 32, 0, 0, 3178, 3196, 3, 278, 139, 7, 3179, 3180, 10, 5, 0, 0, 3180, 3181, 7, 33, 0, 0, 3181, 3196, 3, 278, 139, 6, 3182, 3183, 10, 4, 0, 0, 3183, 3184, 5, 366, 0, 0, 3184, 3196, 3, 278, 139, 5, 3185, 3186, 10, 3, 0, 0, 3186, 3187, 5, 369, 0, 0, 3187, 3196, 3, 278, 139, 4, 3188, 3189, 10, 2, 0, 0, 3189, 3190, 5, 367, 0, 0, 3190, 3196, 3, 278, 139, 3, 3191, 3192, 10, 1, 0, 0, 3192, 3193, 3, 288, 144, 0, 3193, 3194, 3, 278, 139, 2, 3194, 3196, 1, 0, 0, 0, 3195, 3176, 1, 0, 0, 0, 3195, 3179, 1, 0, 0, 0, 3195, 3182, 1, 0, 0, 0, 3195, 3185, 1, 0, 0, 0, 3195, 3188, 1, 0, 0, 0, 3195, 3191, 1, 0, 0, 0, 3196, 3199, 1, 0, 0, 0, 3197, 3195, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 279, 1, 0, 0, 0, 3199, 3197, 1, 0, 0, 0, 3200, 3201, 7, 34, 0, 0, 3201, 281, 1, 0, 0, 0, 3202, 3203, 6, 141, -1, 0, 3203, 3452, 7, 35, 0, 0, 3204, 3205, 7, 36, 0, 0, 3205, 3208, 5, 2, 0, 0, 3206, 3209, 3, 280, 140, 0, 3207, 3209, 3, 386, 193, 0, 3208, 3206, 1, 0, 0, 0, 3208, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 5, 4, 0, 0, 3211, 3212, 3, 278, 139, 0, 3212, 3213, 5, 4, 0, 0, 3213, 3214, 3, 278, 139, 0, 3214, 3215, 5, 3, 0, 0, 3215, 3452, 1, 0, 0, 0, 3216, 3217, 7, 37, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 280, 140, 0, 3219, 3221, 3, 386, 193, 0, 3220, 3218, 1, 0, 0, 0, 3220, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 5, 4, 0, 0, 3223, 3224, 3, 278, 139, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 278, 139, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3452, 1, 0, 0, 0, 3228, 3230, 5, 35, 0, 0, 3229, 3231, 3, 348, 174, 0, 3230, 3229, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3236, 1, 0, 0, 0, 3234, 3235, 5, 97, 0, 0, 3235, 3237, 3, 266, 133, 0, 3236, 3234, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 5, 99, 0, 0, 3239, 3452, 1, 0, 0, 0, 3240, 3241, 5, 35, 0, 0, 3241, 3243, 3, 266, 133, 0, 3242, 3244, 3, 348, 174, 0, 3243, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3243, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3249, 1, 0, 0, 0, 3247, 3248, 5, 97, 0, 0, 3248, 3250, 3, 266, 133, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 5, 99, 0, 0, 3252, 3452, 1, 0, 0, 0, 3253, 3254, 7, 38, 0, 0, 3254, 3255, 5, 2, 0, 0, 3255, 3256, 3, 266, 133, 0, 3256, 3257, 5, 20, 0, 0, 3257, 3258, 3, 316, 158, 0, 3258, 3259, 5, 3, 0, 0, 3259, 3452, 1, 0, 0, 0, 3260, 3261, 5, 285, 0, 0, 3261, 3270, 5, 2, 0, 0, 3262, 3267, 3, 254, 127, 0, 3263, 3264, 5, 4, 0, 0, 3264, 3266, 3, 254, 127, 0, 3265, 3263, 1, 0, 0, 0, 3266, 3269, 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 3262, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3452, 5, 3, 0, 0, 3273, 3274, 5, 116, 0, 0, 3274, 3275, 5, 2, 0, 0, 3275, 3278, 3, 266, 133, 0, 3276, 3277, 5, 138, 0, 0, 3277, 3279, 5, 198, 0, 0, 3278, 3276, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 5, 3, 0, 0, 3281, 3452, 1, 0, 0, 0, 3282, 3283, 5, 17, 0, 0, 3283, 3284, 5, 2, 0, 0, 3284, 3287, 3, 266, 133, 0, 3285, 3286, 5, 138, 0, 0, 3286, 3288, 5, 198, 0, 0, 3287, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 3290, 5, 3, 0, 0, 3290, 3452, 1, 0, 0, 0, 3291, 3292, 5, 157, 0, 0, 3292, 3293, 5, 2, 0, 0, 3293, 3296, 3, 266, 133, 0, 3294, 3295, 5, 138, 0, 0, 3295, 3297, 5, 198, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 3299, 5, 3, 0, 0, 3299, 3452, 1, 0, 0, 0, 3300, 3301, 5, 224, 0, 0, 3301, 3302, 5, 2, 0, 0, 3302, 3303, 3, 278, 139, 0, 3303, 3304, 5, 140, 0, 0, 3304, 3305, 3, 278, 139, 0, 3305, 3306, 5, 3, 0, 0, 3306, 3452, 1, 0, 0, 0, 3307, 3452, 3, 286, 143, 0, 3308, 3452, 5, 362, 0, 0, 3309, 3310, 3, 368, 184, 0, 3310, 3311, 5, 5, 0, 0, 3311, 3312, 5, 362, 0, 0, 3312, 3452, 1, 0, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3317, 3, 254, 127, 0, 3315, 3316, 5, 4, 0, 0, 3316, 3318, 3, 254, 127, 0, 3317, 3315, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3322, 5, 3, 0, 0, 3322, 3452, 1, 0, 0, 0, 3323, 3324, 5, 2, 0, 0, 3324, 3325, 3, 26, 13, 0, 3325, 3326, 5, 3, 0, 0, 3326, 3452, 1, 0, 0, 0, 3327, 3328, 5, 136, 0, 0, 3328, 3329, 5, 2, 0, 0, 3329, 3330, 3, 266, 133, 0, 3330, 3331, 5, 3, 0, 0, 3331, 3452, 1, 0, 0, 0, 3332, 3333, 3, 364, 182, 0, 3333, 3345, 5, 2, 0, 0, 3334, 3336, 3, 194, 97, 0, 3335, 3334, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3342, 3, 270, 135, 0, 3338, 3339, 5, 4, 0, 0, 3339, 3341, 3, 270, 135, 0, 3340, 3338, 1, 0, 0, 0, 3341, 3344, 1, 0, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3346, 1, 0, 0, 0, 3344, 3342, 1, 0, 0, 0, 3345, 3335, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3354, 5, 3, 0, 0, 3348, 3349, 5, 114, 0, 0, 3349, 3350, 5, 2, 0, 0, 3350, 3351, 5, 343, 0, 0, 3351, 3352, 3, 274, 137, 0, 3352, 3353, 5, 3, 0, 0, 3353, 3355, 1, 0, 0, 0, 3354, 3348, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 7, 39, 0, 0, 3357, 3359, 5, 198, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3362, 1, 0, 0, 0, 3360, 3361, 5, 212, 0, 0, 3361, 3363, 3, 356, 178, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3452, 1, 0, 0, 0, 3364, 3365, 3, 374, 187, 0, 3365, 3366, 5, 371, 0, 0, 3366, 3367, 3, 266, 133, 0, 3367, 3452, 1, 0, 0, 0, 3368, 3369, 5, 2, 0, 0, 3369, 3372, 3, 374, 187, 0, 3370, 3371, 5, 4, 0, 0, 3371, 3373, 3, 374, 187, 0, 3372, 3370, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 5, 3, 0, 0, 3377, 3378, 5, 371, 0, 0, 3378, 3379, 3, 266, 133, 0, 3379, 3452, 1, 0, 0, 0, 3380, 3452, 3, 374, 187, 0, 3381, 3382, 5, 2, 0, 0, 3382, 3383, 3, 266, 133, 0, 3383, 3384, 5, 3, 0, 0, 3384, 3452, 1, 0, 0, 0, 3385, 3386, 5, 110, 0, 0, 3386, 3387, 5, 2, 0, 0, 3387, 3388, 3, 374, 187, 0, 3388, 3389, 5, 123, 0, 0, 3389, 3390, 3, 278, 139, 0, 3390, 3391, 5, 3, 0, 0, 3391, 3452, 1, 0, 0, 0, 3392, 3393, 7, 40, 0, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3396, 7, 41, 0, 0, 3396, 3399, 3, 278, 139, 0, 3397, 3398, 7, 42, 0, 0, 3398, 3400, 3, 278, 139, 0, 3399, 3397, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 5, 3, 0, 0, 3402, 3452, 1, 0, 0, 0, 3403, 3404, 5, 314, 0, 0, 3404, 3406, 5, 2, 0, 0, 3405, 3407, 7, 43, 0, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, 0, 3408, 3410, 3, 278, 139, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 5, 123, 0, 0, 3412, 3413, 3, 278, 139, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3452, 1, 0, 0, 0, 3415, 3416, 5, 214, 0, 0, 3416, 3417, 5, 2, 0, 0, 3417, 3418, 3, 278, 139, 0, 3418, 3419, 5, 223, 0, 0, 3419, 3420, 3, 278, 139, 0, 3420, 3421, 5, 123, 0, 0, 3421, 3424, 3, 278, 139, 0, 3422, 3423, 5, 119, 0, 0, 3423, 3425, 3, 278, 139, 0, 3424, 3422, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3427, 5, 3, 0, 0, 3427, 3452, 1, 0, 0, 0, 3428, 3429, 7, 44, 0, 0, 3429, 3430, 5, 2, 0, 0, 3430, 3431, 3, 278, 139, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3433, 5, 346, 0, 0, 3433, 3434, 5, 130, 0, 0, 3434, 3435, 5, 2, 0, 0, 3435, 3436, 5, 208, 0, 0, 3436, 3437, 5, 31, 0, 0, 3437, 3438, 3, 106, 53, 0, 3438, 3445, 5, 3, 0, 0, 3439, 3440, 5, 114, 0, 0, 3440, 3441, 5, 2, 0, 0, 3441, 3442, 5, 343, 0, 0, 3442, 3443, 3, 274, 137, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3439, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3448, 5, 212, 0, 0, 3448, 3450, 3, 356, 178, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3452, 1, 0, 0, 0, 3451, 3202, 1, 0, 0, 0, 3451, 3204, 1, 0, 0, 0, 3451, 3216, 1, 0, 0, 0, 3451, 3228, 1, 0, 0, 0, 3451, 3240, 1, 0, 0, 0, 3451, 3253, 1, 0, 0, 0, 3451, 3260, 1, 0, 0, 0, 3451, 3273, 1, 0, 0, 0, 3451, 3282, 1, 0, 0, 0, 3451, 3291, 1, 0, 0, 0, 3451, 3300, 1, 0, 0, 0, 3451, 3307, 1, 0, 0, 0, 3451, 3308, 1, 0, 0, 0, 3451, 3309, 1, 0, 0, 0, 3451, 3313, 1, 0, 0, 0, 3451, 3323, 1, 0, 0, 0, 3451, 3327, 1, 0, 0, 0, 3451, 3332, 1, 0, 0, 0, 3451, 3364, 1, 0, 0, 0, 3451, 3368, 1, 0, 0, 0, 3451, 3380, 1, 0, 0, 0, 3451, 3381, 1, 0, 0, 0, 3451, 3385, 1, 0, 0, 0, 3451, 3392, 1, 0, 0, 0, 3451, 3403, 1, 0, 0, 0, 3451, 3415, 1, 0, 0, 0, 3451, 3428, 1, 0, 0, 0, 3452, 3463, 1, 0, 0, 0, 3453, 3454, 10, 9, 0, 0, 3454, 3455, 5, 6, 0, 0, 3455, 3456, 3, 278, 139, 0, 3456, 3457, 5, 7, 0, 0, 3457, 3462, 1, 0, 0, 0, 3458, 3459, 10, 7, 0, 0, 3459, 3460, 5, 5, 0, 0, 3460, 3462, 3, 374, 187, 0, 3461, 3453, 1, 0, 0, 0, 3461, 3458, 1, 0, 0, 0, 3462, 3465, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 283, 1, 0, 0, 0, 3465, 3463, 1, 0, 0, 0, 3466, 3474, 5, 71, 0, 0, 3467, 3474, 5, 302, 0, 0, 3468, 3474, 5, 303, 0, 0, 3469, 3474, 5, 304, 0, 0, 3470, 3474, 5, 149, 0, 0, 3471, 3474, 5, 133, 0, 0, 3472, 3474, 3, 374, 187, 0, 3473, 3466, 1, 0, 0, 0, 3473, 3467, 1, 0, 0, 0, 3473, 3468, 1, 0, 0, 0, 3473, 3469, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3472, 1, 0, 0, 0, 3474, 285, 1, 0, 0, 0, 3475, 3491, 5, 197, 0, 0, 3476, 3491, 5, 375, 0, 0, 3477, 3478, 5, 370, 0, 0, 3478, 3491, 3, 374, 187, 0, 3479, 3491, 3, 296, 148, 0, 3480, 3481, 3, 284, 142, 0, 3481, 3482, 3, 386, 193, 0, 3482, 3491, 1, 0, 0, 0, 3483, 3491, 3, 382, 191, 0, 3484, 3491, 3, 294, 147, 0, 3485, 3487, 3, 386, 193, 0, 3486, 3485, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 1, 0, 0, 0, 3490, 3475, 1, 0, 0, 0, 3490, 3476, 1, 0, 0, 0, 3490, 3477, 1, 0, 0, 0, 3490, 3479, 1, 0, 0, 0, 3490, 3480, 1, 0, 0, 0, 3490, 3483, 1, 0, 0, 0, 3490, 3484, 1, 0, 0, 0, 3490, 3486, 1, 0, 0, 0, 3491, 287, 1, 0, 0, 0, 3492, 3493, 7, 45, 0, 0, 3493, 289, 1, 0, 0, 0, 3494, 3495, 7, 46, 0, 0, 3495, 291, 1, 0, 0, 0, 3496, 3497, 7, 47, 0, 0, 3497, 293, 1, 0, 0, 0, 3498, 3499, 7, 48, 0, 0, 3499, 295, 1, 0, 0, 0, 3500, 3503, 5, 149, 0, 0, 3501, 3504, 3, 298, 149, 0, 3502, 3504, 3, 302, 151, 0, 3503, 3501, 1, 0, 0, 0, 3503, 3502, 1, 0, 0, 0, 3504, 297, 1, 0, 0, 0, 3505, 3507, 3, 300, 150, 0, 3506, 3508, 3, 304, 152, 0, 3507, 3506, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 299, 1, 0, 0, 0, 3509, 3510, 3, 306, 153, 0, 3510, 3511, 3, 308, 154, 0, 3511, 3513, 1, 0, 0, 0, 3512, 3509, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 3512, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 301, 1, 0, 0, 0, 3516, 3519, 3, 304, 152, 0, 3517, 3520, 3, 300, 150, 0, 3518, 3520, 3, 304, 152, 0, 3519, 3517, 1, 0, 0, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 303, 1, 0, 0, 0, 3521, 3522, 3, 306, 153, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3524, 5, 308, 0, 0, 3524, 3525, 3, 310, 155, 0, 3525, 305, 1, 0, 0, 0, 3526, 3528, 7, 49, 0, 0, 3527, 3526, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3532, 1, 0, 0, 0, 3529, 3533, 5, 381, 0, 0, 3530, 3533, 5, 383, 0, 0, 3531, 3533, 3, 386, 193, 0, 3532, 3529, 1, 0, 0, 0, 3532, 3530, 1, 0, 0, 0, 3532, 3531, 1, 0, 0, 0, 3533, 307, 1, 0, 0, 0, 3534, 3535, 7, 50, 0, 0, 3535, 309, 1, 0, 0, 0, 3536, 3537, 7, 51, 0, 0, 3537, 311, 1, 0, 0, 0, 3538, 3542, 5, 116, 0, 0, 3539, 3540, 5, 9, 0, 0, 3540, 3542, 3, 370, 185, 0, 3541, 3538, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3542, 313, 1, 0, 0, 0, 3543, 3574, 5, 27, 0, 0, 3544, 3574, 5, 307, 0, 0, 3545, 3574, 5, 32, 0, 0, 3546, 3574, 5, 275, 0, 0, 3547, 3574, 5, 271, 0, 0, 3548, 3574, 5, 150, 0, 0, 3549, 3574, 5, 151, 0, 0, 3550, 3574, 5, 25, 0, 0, 3551, 3574, 5, 173, 0, 0, 3552, 3574, 5, 117, 0, 0, 3553, 3574, 5, 233, 0, 0, 3554, 3574, 5, 95, 0, 0, 3555, 3574, 5, 71, 0, 0, 3556, 3574, 5, 302, 0, 0, 3557, 3574, 5, 304, 0, 0, 3558, 3574, 5, 303, 0, 0, 3559, 3574, 5, 284, 0, 0, 3560, 3574, 5, 41, 0, 0, 3561, 3574, 5, 40, 0, 0, 3562, 3574, 5, 333, 0, 0, 3563, 3574, 5, 26, 0, 0, 3564, 3574, 5, 80, 0, 0, 3565, 3574, 5, 79, 0, 0, 3566, 3574, 5, 199, 0, 0, 3567, 3574, 5, 339, 0, 0, 3568, 3574, 5, 149, 0, 0, 3569, 3574, 5, 19, 0, 0, 3570, 3574, 5, 285, 0, 0, 3571, 3574, 5, 176, 0, 0, 3572, 3574, 3, 374, 187, 0, 3573, 3543, 1, 0, 0, 0, 3573, 3544, 1, 0, 0, 0, 3573, 3545, 1, 0, 0, 0, 3573, 3546, 1, 0, 0, 0, 3573, 3547, 1, 0, 0, 0, 3573, 3548, 1, 0, 0, 0, 3573, 3549, 1, 0, 0, 0, 3573, 3550, 1, 0, 0, 0, 3573, 3551, 1, 0, 0, 0, 3573, 3552, 1, 0, 0, 0, 3573, 3553, 1, 0, 0, 0, 3573, 3554, 1, 0, 0, 0, 3573, 3555, 1, 0, 0, 0, 3573, 3556, 1, 0, 0, 0, 3573, 3557, 1, 0, 0, 0, 3573, 3558, 1, 0, 0, 0, 3573, 3559, 1, 0, 0, 0, 3573, 3560, 1, 0, 0, 0, 3573, 3561, 1, 0, 0, 0, 3573, 3562, 1, 0, 0, 0, 3573, 3563, 1, 0, 0, 0, 3573, 3564, 1, 0, 0, 0, 3573, 3565, 1, 0, 0, 0, 3573, 3566, 1, 0, 0, 0, 3573, 3567, 1, 0, 0, 0, 3573, 3568, 1, 0, 0, 0, 3573, 3569, 1, 0, 0, 0, 3573, 3570, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3573, 3572, 1, 0, 0, 0, 3574, 315, 1, 0, 0, 0, 3575, 3576, 5, 19, 0, 0, 3576, 3577, 5, 355, 0, 0, 3577, 3578, 3, 316, 158, 0, 3578, 3579, 5, 357, 0, 0, 3579, 3622, 1, 0, 0, 0, 3580, 3581, 5, 176, 0, 0, 3581, 3582, 5, 355, 0, 0, 3582, 3583, 3, 316, 158, 0, 3583, 3584, 5, 4, 0, 0, 3584, 3585, 3, 316, 158, 0, 3585, 3586, 5, 357, 0, 0, 3586, 3622, 1, 0, 0, 0, 3587, 3594, 5, 285, 0, 0, 3588, 3590, 5, 355, 0, 0, 3589, 3591, 3, 344, 172, 0, 3590, 3589, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3595, 5, 357, 0, 0, 3593, 3595, 5, 353, 0, 0, 3594, 3588, 1, 0, 0, 0, 3594, 3593, 1, 0, 0, 0, 3595, 3622, 1, 0, 0, 0, 3596, 3597, 5, 149, 0, 0, 3597, 3600, 7, 52, 0, 0, 3598, 3599, 5, 308, 0, 0, 3599, 3601, 5, 185, 0, 0, 3600, 3598, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3622, 1, 0, 0, 0, 3602, 3603, 5, 149, 0, 0, 3603, 3606, 7, 53, 0, 0, 3604, 3605, 5, 308, 0, 0, 3605, 3607, 7, 54, 0, 0, 3606, 3604, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3622, 1, 0, 0, 0, 3608, 3619, 3, 314, 157, 0, 3609, 3610, 5, 2, 0, 0, 3610, 3615, 5, 381, 0, 0, 3611, 3612, 5, 4, 0, 0, 3612, 3614, 5, 381, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3617, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3618, 1, 0, 0, 0, 3617, 3615, 1, 0, 0, 0, 3618, 3620, 5, 3, 0, 0, 3619, 3609, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3622, 1, 0, 0, 0, 3621, 3575, 1, 0, 0, 0, 3621, 3580, 1, 0, 0, 0, 3621, 3587, 1, 0, 0, 0, 3621, 3596, 1, 0, 0, 0, 3621, 3602, 1, 0, 0, 0, 3621, 3608, 1, 0, 0, 0, 3622, 317, 1, 0, 0, 0, 3623, 3628, 3, 320, 160, 0, 3624, 3625, 5, 4, 0, 0, 3625, 3627, 3, 320, 160, 0, 3626, 3624, 1, 0, 0, 0, 3627, 3630, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 319, 1, 0, 0, 0, 3630, 3628, 1, 0, 0, 0, 3631, 3632, 3, 94, 47, 0, 3632, 3636, 3, 316, 158, 0, 3633, 3635, 3, 326, 163, 0, 3634, 3633, 1, 0, 0, 0, 3635, 3638, 1, 0, 0, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 321, 1, 0, 0, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3644, 3, 324, 162, 0, 3640, 3641, 5, 4, 0, 0, 3641, 3643, 3, 324, 162, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3646, 1, 0, 0, 0, 3644, 3642, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 323, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3647, 3648, 3, 90, 45, 0, 3648, 3652, 3, 316, 158, 0, 3649, 3651, 3, 326, 163, 0, 3650, 3649, 1, 0, 0, 0, 3651, 3654, 1, 0, 0, 0, 3652, 3650, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 325, 1, 0, 0, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3656, 5, 196, 0, 0, 3656, 3661, 5, 197, 0, 0, 3657, 3661, 3, 328, 164, 0, 3658, 3661, 3, 24, 12, 0, 3659, 3661, 3, 312, 156, 0, 3660, 3655, 1, 0, 0, 0, 3660, 3657, 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3660, 3659, 1, 0, 0, 0, 3661, 327, 1, 0, 0, 0, 3662, 3663, 5, 82, 0, 0, 3663, 3664, 3, 266, 133, 0, 3664, 329, 1, 0, 0, 0, 3665, 3666, 7, 55, 0, 0, 3666, 3667, 3, 266, 133, 0, 3667, 331, 1, 0, 0, 0, 3668, 3673, 3, 334, 167, 0, 3669, 3670, 5, 4, 0, 0, 3670, 3672, 3, 334, 167, 0, 3671, 3669, 1, 0, 0, 0, 3672, 3675, 1, 0, 0, 0, 3673, 3671, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 333, 1, 0, 0, 0, 3675, 3673, 1, 0, 0, 0, 3676, 3677, 3, 370, 185, 0, 3677, 3680, 3, 316, 158, 0, 3678, 3679, 5, 196, 0, 0, 3679, 3681, 5, 197, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3683, 1, 0, 0, 0, 3682, 3684, 3, 24, 12, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 335, 1, 0, 0, 0, 3685, 3690, 3, 338, 169, 0, 3686, 3687, 5, 4, 0, 0, 3687, 3689, 3, 338, 169, 0, 3688, 3686, 1, 0, 0, 0, 3689, 3692, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 337, 1, 0, 0, 0, 3692, 3690, 1, 0, 0, 0, 3693, 3694, 3, 94, 47, 0, 3694, 3698, 3, 316, 158, 0, 3695, 3697, 3, 340, 170, 0, 3696, 3695, 1, 0, 0, 0, 3697, 3700, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 339, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3702, 5, 196, 0, 0, 3702, 3707, 5, 197, 0, 0, 3703, 3707, 3, 328, 164, 0, 3704, 3707, 3, 342, 171, 0, 3705, 3707, 3, 24, 12, 0, 3706, 3701, 1, 0, 0, 0, 3706, 3703, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3705, 1, 0, 0, 0, 3707, 341, 1, 0, 0, 0, 3708, 3709, 5, 127, 0, 0, 3709, 3710, 5, 12, 0, 0, 3710, 3711, 5, 20, 0, 0, 3711, 3712, 5, 2, 0, 0, 3712, 3713, 3, 266, 133, 0, 3713, 3714, 5, 3, 0, 0, 3714, 343, 1, 0, 0, 0, 3715, 3720, 3, 346, 173, 0, 3716, 3717, 5, 4, 0, 0, 3717, 3719, 3, 346, 173, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 345, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3725, 3, 374, 187, 0, 3724, 3726, 5, 370, 0, 0, 3725, 3724, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3730, 3, 316, 158, 0, 3728, 3729, 5, 196, 0, 0, 3729, 3731, 5, 197, 0, 0, 3730, 3728, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3733, 1, 0, 0, 0, 3732, 3734, 3, 24, 12, 0, 3733, 3732, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 347, 1, 0, 0, 0, 3735, 3736, 5, 342, 0, 0, 3736, 3737, 3, 266, 133, 0, 3737, 3738, 5, 299, 0, 0, 3738, 3739, 3, 266, 133, 0, 3739, 349, 1, 0, 0, 0, 3740, 3741, 5, 344, 0, 0, 3741, 3746, 3, 354, 177, 0, 3742, 3743, 5, 4, 0, 0, 3743, 3745, 3, 354, 177, 0, 3744, 3742, 1, 0, 0, 0, 3745, 3748, 1, 0, 0, 0, 3746, 3744, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 351, 1, 0, 0, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3750, 5, 350, 0, 0, 3750, 3751, 5, 31, 0, 0, 3751, 3752, 3, 92, 46, 0, 3752, 353, 1, 0, 0, 0, 3753, 3754, 3, 370, 185, 0, 3754, 3755, 5, 20, 0, 0, 3755, 3756, 3, 356, 178, 0, 3756, 355, 1, 0, 0, 0, 3757, 3804, 3, 370, 185, 0, 3758, 3759, 5, 2, 0, 0, 3759, 3760, 3, 370, 185, 0, 3760, 3761, 5, 3, 0, 0, 3761, 3804, 1, 0, 0, 0, 3762, 3797, 5, 2, 0, 0, 3763, 3764, 5, 44, 0, 0, 3764, 3765, 5, 31, 0, 0, 3765, 3770, 3, 266, 133, 0, 3766, 3767, 5, 4, 0, 0, 3767, 3769, 3, 266, 133, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3798, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3774, 7, 24, 0, 0, 3774, 3775, 5, 31, 0, 0, 3775, 3780, 3, 266, 133, 0, 3776, 3777, 5, 4, 0, 0, 3777, 3779, 3, 266, 133, 0, 3778, 3776, 1, 0, 0, 0, 3779, 3782, 1, 0, 0, 0, 3780, 3778, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3783, 3773, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3795, 1, 0, 0, 0, 3785, 3786, 7, 25, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 106, 53, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 106, 53, 0, 3790, 3788, 1, 0, 0, 0, 3791, 3794, 1, 0, 0, 0, 3792, 3790, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3796, 1, 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3785, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3798, 1, 0, 0, 0, 3797, 3763, 1, 0, 0, 0, 3797, 3783, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3801, 3, 358, 179, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3804, 5, 3, 0, 0, 3803, 3757, 1, 0, 0, 0, 3803, 3758, 1, 0, 0, 0, 3803, 3762, 1, 0, 0, 0, 3804, 357, 1, 0, 0, 0, 3805, 3806, 5, 232, 0, 0, 3806, 3822, 3, 360, 180, 0, 3807, 3808, 5, 257, 0, 0, 3808, 3822, 3, 360, 180, 0, 3809, 3810, 5, 232, 0, 0, 3810, 3811, 5, 24, 0, 0, 3811, 3812, 3, 360, 180, 0, 3812, 3813, 5, 14, 0, 0, 3813, 3814, 3, 360, 180, 0, 3814, 3822, 1, 0, 0, 0, 3815, 3816, 5, 257, 0, 0, 3816, 3817, 5, 24, 0, 0, 3817, 3818, 3, 360, 180, 0, 3818, 3819, 5, 14, 0, 0, 3819, 3820, 3, 360, 180, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3805, 1, 0, 0, 0, 3821, 3807, 1, 0, 0, 0, 3821, 3809, 1, 0, 0, 0, 3821, 3815, 1, 0, 0, 0, 3822, 359, 1, 0, 0, 0, 3823, 3824, 5, 320, 0, 0, 3824, 3831, 7, 56, 0, 0, 3825, 3826, 5, 62, 0, 0, 3826, 3831, 5, 256, 0, 0, 3827, 3828, 3, 266, 133, 0, 3828, 3829, 7, 56, 0, 0, 3829, 3831, 1, 0, 0, 0, 3830, 3823, 1, 0, 0, 0, 3830, 3825, 1, 0, 0, 0, 3830, 3827, 1, 0, 0, 0, 3831, 361, 1, 0, 0, 0, 3832, 3837, 3, 368, 184, 0, 3833, 3834, 5, 4, 0, 0, 3834, 3836, 3, 368, 184, 0, 3835, 3833, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 363, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3841, 5, 136, 0, 0, 3841, 3842, 5, 2, 0, 0, 3842, 3843, 3, 266, 133, 0, 3843, 3844, 5, 3, 0, 0, 3844, 3850, 1, 0, 0, 0, 3845, 3850, 3, 368, 184, 0, 3846, 3850, 5, 114, 0, 0, 3847, 3850, 5, 161, 0, 0, 3848, 3850, 5, 249, 0, 0, 3849, 3840, 1, 0, 0, 0, 3849, 3845, 1, 0, 0, 0, 3849, 3846, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3848, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3852, 3, 368, 184, 0, 3852, 367, 1, 0, 0, 0, 3853, 3858, 3, 374, 187, 0, 3854, 3855, 5, 5, 0, 0, 3855, 3857, 3, 374, 187, 0, 3856, 3854, 1, 0, 0, 0, 3857, 3860, 1, 0, 0, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 369, 1, 0, 0, 0, 3860, 3858, 1, 0, 0, 0, 3861, 3862, 3, 374, 187, 0, 3862, 3863, 3, 372, 186, 0, 3863, 371, 1, 0, 0, 0, 3864, 3865, 5, 361, 0, 0, 3865, 3867, 3, 374, 187, 0, 3866, 3864, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3866, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3872, 1, 0, 0, 0, 3871, 3866, 1, 0, 0, 0, 3871, 3870, 1, 0, 0, 0, 3872, 373, 1, 0, 0, 0, 3873, 3876, 3, 376, 188, 0, 3874, 3876, 3, 394, 197, 0, 3875, 3873, 1, 0, 0, 0, 3875, 3874, 1, 0, 0, 0, 3876, 375, 1, 0, 0, 0, 3877, 3882, 5, 387, 0, 0, 3878, 3882, 3, 378, 189, 0, 3879, 3882, 3, 392, 196, 0, 3880, 3882, 3, 396, 198, 0, 3881, 3877, 1, 0, 0, 0, 3881, 3878, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3881, 3880, 1, 0, 0, 0, 3882, 377, 1, 0, 0, 0, 3883, 3884, 7, 57, 0, 0, 3884, 379, 1, 0, 0, 0, 3885, 3886, 5, 388, 0, 0, 3886, 381, 1, 0, 0, 0, 3887, 3889, 5, 361, 0, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3928, 5, 382, 0, 0, 3891, 3893, 5, 361, 0, 0, 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3928, 5, 383, 0, 0, 3895, 3897, 5, 361, 0, 0, 3896, 3895, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3928, 7, 58, 0, 0, 3899, 3901, 5, 361, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3928, 5, 381, 0, 0, 3903, 3905, 5, 361, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3928, 5, 378, 0, 0, 3907, 3909, 5, 361, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3928, 5, 379, 0, 0, 3911, 3913, 5, 361, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3928, 5, 380, 0, 0, 3915, 3917, 5, 361, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3928, 5, 385, 0, 0, 3919, 3921, 5, 361, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3928, 5, 384, 0, 0, 3923, 3925, 5, 361, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3928, 5, 386, 0, 0, 3927, 3888, 1, 0, 0, 0, 3927, 3892, 1, 0, 0, 0, 3927, 3896, 1, 0, 0, 0, 3927, 3900, 1, 0, 0, 0, 3927, 3904, 1, 0, 0, 0, 3927, 3908, 1, 0, 0, 0, 3927, 3912, 1, 0, 0, 0, 3927, 3916, 1, 0, 0, 0, 3927, 3920, 1, 0, 0, 0, 3927, 3924, 1, 0, 0, 0, 3928, 383, 1, 0, 0, 0, 3929, 3930, 5, 318, 0, 0, 3930, 3941, 3, 316, 158, 0, 3931, 3941, 3, 24, 12, 0, 3932, 3941, 3, 312, 156, 0, 3933, 3934, 7, 59, 0, 0, 3934, 3935, 5, 196, 0, 0, 3935, 3941, 5, 197, 0, 0, 3936, 3937, 5, 268, 0, 0, 3937, 3941, 3, 328, 164, 0, 3938, 3939, 5, 96, 0, 0, 3939, 3941, 5, 82, 0, 0, 3940, 3929, 1, 0, 0, 0, 3940, 3931, 1, 0, 0, 0, 3940, 3932, 1, 0, 0, 0, 3940, 3933, 1, 0, 0, 0, 3940, 3936, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3941, 385, 1, 0, 0, 0, 3942, 3943, 7, 60, 0, 0, 3943, 387, 1, 0, 0, 0, 3944, 3947, 3, 386, 193, 0, 3945, 3947, 5, 197, 0, 0, 3946, 3944, 1, 0, 0, 0, 3946, 3945, 1, 0, 0, 0, 3947, 389, 1, 0, 0, 0, 3948, 3951, 5, 381, 0, 0, 3949, 3951, 3, 386, 193, 0, 3950, 3948, 1, 0, 0, 0, 3950, 3949, 1, 0, 0, 0, 3951, 391, 1, 0, 0, 0, 3952, 3953, 7, 61, 0, 0, 3953, 393, 1, 0, 0, 0, 3954, 3955, 7, 62, 0, 0, 3955, 395, 1, 0, 0, 0, 3956, 3957, 7, 63, 0, 0, 3957, 397, 1, 0, 0, 0, 514, 401, 408, 412, 425, 430, 438, 440, 459, 463, 469, 472, 475, 482, 485, 489, 492, 497, 508, 510, 518, 521, 525, 528, 534, 545, 551, 556, 589, 599, 610, 621, 632, 637, 646, 650, 656, 660, 665, 671, 683, 691, 697, 708, 712, 717, 732, 736, 743, 747, 753, 782, 786, 791, 798, 804, 807, 810, 814, 818, 826, 828, 837, 840, 849, 854, 860, 867, 870, 874, 885, 888, 894, 898, 913, 915, 923, 927, 933, 936, 940, 943, 949, 954, 958, 965, 968, 971, 978, 983, 992, 1000, 1006, 1009, 1012, 1018, 1022, 1027, 1030, 1034, 1036, 1044, 1052, 1055, 1062, 1065, 1068, 1077, 1082, 1088, 1093, 1096, 1100, 1103, 1107, 1135, 1138, 1146, 1152, 1155, 1158, 1163, 1171, 1176, 1182, 1188, 1191, 1198, 1205, 1213, 1230, 1257, 1260, 1266, 1275, 1284, 1290, 1295, 1300, 1307, 1312, 1317, 1324, 1332, 1335, 1339, 1351, 1355, 1362, 1478, 1486, 1494, 1503, 1513, 1517, 1520, 1524, 1530, 1542, 1554, 1559, 1568, 1576, 1581, 1583, 1591, 1596, 1600, 1603, 1611, 1616, 1625, 1630, 1633, 1638, 1642, 1647, 1649, 1653, 1662, 1670, 1676, 1687, 1694, 1703, 1708, 1711, 1733, 1735, 1744, 1751, 1754, 1761, 1765, 1771, 1779, 1786, 1789, 1797, 1808, 1819, 1827, 1833, 1845, 1852, 1859, 1871, 1879, 1885, 1891, 1894, 1915, 1926, 1935, 1938, 1947, 1950, 1959, 1962, 1971, 1974, 1977, 1982, 1984, 1988, 1999, 2005, 2011, 2014, 2016, 2028, 2032, 2035, 2039, 2045, 2049, 2057, 2061, 2064, 2067, 2070, 2074, 2078, 2083, 2087, 2090, 2093, 2096, 2100, 2105, 2109, 2112, 2115, 2118, 2120, 2126, 2133, 2138, 2141, 2144, 2148, 2158, 2162, 2164, 2167, 2171, 2177, 2181, 2192, 2202, 2206, 2218, 2230, 2245, 2250, 2256, 2263, 2279, 2284, 2297, 2302, 2310, 2316, 2320, 2323, 2328, 2335, 2341, 2350, 2360, 2375, 2380, 2382, 2387, 2396, 2409, 2414, 2418, 2425, 2430, 2434, 2437, 2440, 2454, 2467, 2472, 2476, 2479, 2483, 2489, 2492, 2499, 2511, 2522, 2535, 2546, 2551, 2559, 2564, 2578, 2587, 2590, 2595, 2602, 2605, 2611, 2617, 2620, 2625, 2630, 2634, 2640, 2644, 2647, 2652, 2655, 2660, 2664, 2667, 2670, 2676, 2681, 2688, 2691, 2709, 2711, 2714, 2725, 2734, 2741, 2749, 2756, 2760, 2763, 2771, 2779, 2785, 2793, 2801, 2808, 2815, 2817, 2830, 2836, 2838, 2848, 2854, 2856, 2864, 2868, 2877, 2880, 2886, 2890, 2892, 2901, 2913, 2915, 2922, 2929, 2935, 2941, 2943, 2950, 2958, 2966, 2972, 2977, 2984, 2990, 2993, 2997, 2999, 3006, 3015, 3022, 3032, 3037, 3041, 3051, 3058, 3071, 3073, 3081, 3083, 3087, 3095, 3104, 3110, 3118, 3123, 3135, 3140, 3143, 3149, 3153, 3158, 3163, 3168, 3174, 3195, 3197, 3208, 3220, 3232, 3236, 3245, 3249, 3267, 3270, 3278, 3287, 3296, 3319, 3335, 3342, 3345, 3354, 3358, 3362, 3374, 3399, 3406, 3409, 3424, 3445, 3449, 3451, 3461, 3463, 3473, 3488, 3490, 3503, 3507, 3514, 3519, 3527, 3532, 3541, 3573, 3590, 3594, 3600, 3606, 3615, 3619, 3621, 3628, 3636, 3644, 3652, 3660, 3673, 3680, 3683, 3690, 3698, 3706, 3720, 3725, 3730, 3733, 3746, 3770, 3780, 3783, 3792, 3795, 3797, 3800, 3803, 3821, 3830, 3837, 3849, 3858, 3868, 3871, 3875, 3881, 3888, 3892, 3896, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3927, 3940, 3946, 3950] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index 3291778..8ab2b21 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -6065,7 +6065,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { this.state = 1786; this.errorHandler.sync(this); @@ -6700,7 +6700,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SECONDS: case SparkSqlParser.KW_SCHEMA: case SparkSqlParser.KW_SCHEMAS: - case SparkSqlParser.KW_SELECT: case SparkSqlParser.KW_SEMI: case SparkSqlParser.KW_SEPARATED: case SparkSqlParser.KW_SERDE: @@ -8727,7 +8726,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { { this.state = 2279; @@ -9368,7 +9367,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { this.state = 2425; this.errorHandler.sync(this); @@ -9761,7 +9760,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SECONDS: case SparkSqlParser.KW_SCHEMA: case SparkSqlParser.KW_SCHEMAS: - case SparkSqlParser.KW_SELECT: case SparkSqlParser.KW_SEMI: case SparkSqlParser.KW_SEPARATED: case SparkSqlParser.KW_SERDE: @@ -9919,7 +9917,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { this.state = 2476; this.errorHandler.sync(this); @@ -10309,7 +10307,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SECONDS: case SparkSqlParser.KW_SCHEMA: case SparkSqlParser.KW_SCHEMAS: - case SparkSqlParser.KW_SELECT: case SparkSqlParser.KW_SEMI: case SparkSqlParser.KW_SEPARATED: case SparkSqlParser.KW_SERDE: @@ -10597,7 +10594,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { this.state = 2550; this.unpivotAlias(); @@ -10680,7 +10677,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { this.state = 2558; this.unpivotAlias(); @@ -10844,7 +10841,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { this.state = 2582; this.expression(); @@ -10970,43 +10967,43 @@ export class SparkSqlParser extends antlr.Parser { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2610; + this.state = 2609; + this.tableName(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2609; + this.state = 2610; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2612; + this.state = 2613; this.relationPrimary(); - this.state = 2616; + this.state = 2617; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2613; + this.state = 2614; this.relationExtension(); } } } - this.state = 2618; + this.state = 2619; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); } } break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2619; - this.tableName(); - } - break; } } catch (re) { @@ -11353,7 +11350,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { this.state = 2680; this.sampleMethod(); @@ -12272,7 +12269,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 2880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { this.state = 2872; this.functionTableArgument(); @@ -13055,7 +13052,6 @@ export class SparkSqlParser extends antlr.Parser { case SparkSqlParser.KW_SECONDS: case SparkSqlParser.KW_SCHEMA: case SparkSqlParser.KW_SCHEMAS: - case SparkSqlParser.KW_SELECT: case SparkSqlParser.KW_SEMI: case SparkSqlParser.KW_SEPARATED: case SparkSqlParser.KW_SERDE: @@ -14453,7 +14449,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 3270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { this.state = 3262; this.namedExpression(); @@ -14647,7 +14643,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 3345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { { this.state = 3335; this.errorHandler.sync(this); @@ -16011,7 +16007,7 @@ export class SparkSqlParser extends antlr.Parser { this.state = 3590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967295) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4294967295) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { { this.state = 3589; this.complexColTypeList(); @@ -18112,7 +18108,7 @@ export class SparkSqlParser extends antlr.Parser { { this.state = 3956; _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4026531775) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294966261) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4261412863) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294958975) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147481595) !== 0))) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4026531775) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294966261) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4261412863) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294958911) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147481595) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -18413,514 +18409,515 @@ export class SparkSqlParser extends antlr.Parser { 3,96,2579,8,96,1,96,1,96,1,96,1,96,1,96,5,96,2586,8,96,10,96,12, 96,2589,9,96,3,96,2591,8,96,1,96,1,96,1,96,3,96,2596,8,96,1,96,1, 96,1,96,5,96,2601,8,96,10,96,12,96,2604,9,96,3,96,2606,8,96,1,97, - 1,97,1,98,3,98,2611,8,98,1,98,1,98,5,98,2615,8,98,10,98,12,98,2618, - 9,98,1,98,3,98,2621,8,98,1,99,1,99,1,99,3,99,2626,8,99,1,100,1,100, - 1,100,3,100,2631,8,100,1,100,1,100,3,100,2635,8,100,1,100,1,100, - 1,100,1,100,3,100,2641,8,100,1,100,1,100,3,100,2645,8,100,1,101, - 3,101,2648,8,101,1,101,1,101,1,101,3,101,2653,8,101,1,101,3,101, - 2656,8,101,1,101,1,101,1,101,3,101,2661,8,101,1,101,1,101,3,101, - 2665,8,101,1,101,3,101,2668,8,101,1,101,3,101,2671,8,101,1,102,1, - 102,1,102,1,102,3,102,2677,8,102,1,103,1,103,1,103,3,103,2682,8, - 103,1,103,1,103,1,103,1,103,1,103,3,103,2689,8,103,1,104,3,104,2692, - 8,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,3,104,2710,8,104,3,104,2712, - 8,104,1,104,3,104,2715,8,104,1,105,1,105,1,105,1,105,1,106,1,106, - 1,106,5,106,2724,8,106,10,106,12,106,2727,9,106,1,107,1,107,1,107, - 1,107,5,107,2733,8,107,10,107,12,107,2736,9,107,1,107,1,107,1,108, - 1,108,3,108,2742,8,108,1,109,1,109,1,109,1,109,5,109,2748,8,109, - 10,109,12,109,2751,9,109,1,109,1,109,1,110,1,110,3,110,2757,8,110, - 1,111,1,111,3,111,2761,8,111,1,111,3,111,2764,8,111,1,111,1,111, - 1,111,1,111,1,111,1,111,3,111,2772,8,111,1,111,1,111,1,111,1,111, - 1,111,1,111,3,111,2780,8,111,1,111,1,111,1,111,1,111,3,111,2786, - 8,111,1,112,1,112,1,112,1,112,5,112,2792,8,112,10,112,12,112,2795, - 9,112,1,112,1,112,1,113,1,113,1,113,3,113,2802,8,113,1,113,1,113, - 1,113,1,113,1,113,3,113,2809,8,113,1,113,1,113,1,113,1,113,1,113, - 3,113,2816,8,113,3,113,2818,8,113,1,114,1,114,1,114,1,114,1,114, - 1,114,1,114,1,114,1,114,5,114,2829,8,114,10,114,12,114,2832,9,114, - 1,114,1,114,1,114,3,114,2837,8,114,3,114,2839,8,114,1,114,1,114, - 1,114,1,114,1,114,1,114,5,114,2847,8,114,10,114,12,114,2850,9,114, - 1,114,1,114,1,114,3,114,2855,8,114,3,114,2857,8,114,1,115,1,115, - 1,115,1,115,1,116,1,116,3,116,2865,8,116,1,117,1,117,3,117,2869, - 8,117,1,118,1,118,1,118,1,118,1,118,5,118,2876,8,118,10,118,12,118, - 2879,9,118,3,118,2881,8,118,1,118,1,118,1,118,1,119,3,119,2887,8, - 119,1,119,1,119,3,119,2891,8,119,3,119,2893,8,119,1,120,1,120,1, - 120,1,120,1,120,1,120,1,120,3,120,2902,8,120,1,120,1,120,1,120,1, - 120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,2914,8,120,3,120,2916, - 8,120,1,120,1,120,1,120,1,120,1,120,3,120,2923,8,120,1,120,1,120, - 1,120,1,120,1,120,3,120,2930,8,120,1,120,1,120,1,120,1,120,3,120, - 2936,8,120,1,120,1,120,1,120,1,120,3,120,2942,8,120,3,120,2944,8, - 120,1,121,1,121,1,121,5,121,2949,8,121,10,121,12,121,2952,9,121, - 1,122,1,122,1,122,5,122,2957,8,122,10,122,12,122,2960,9,122,1,123, - 1,123,1,123,5,123,2965,8,123,10,123,12,123,2968,9,123,1,124,1,124, - 1,124,3,124,2973,8,124,1,125,1,125,1,125,3,125,2978,8,125,1,125, - 1,125,1,126,1,126,1,126,3,126,2985,8,126,1,126,1,126,1,127,1,127, - 3,127,2991,8,127,1,127,3,127,2994,8,127,1,127,1,127,3,127,2998,8, - 127,3,127,3000,8,127,1,128,1,128,1,128,5,128,3005,8,128,10,128,12, - 128,3008,9,128,1,129,1,129,1,129,1,129,5,129,3014,8,129,10,129,12, - 129,3017,9,129,1,129,1,129,1,130,1,130,3,130,3023,8,130,1,131,1, - 131,1,131,1,131,1,131,1,131,5,131,3031,8,131,10,131,12,131,3034, - 9,131,1,131,1,131,3,131,3038,8,131,1,132,1,132,3,132,3042,8,132, - 1,133,1,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135,3052,8,135, - 1,136,1,136,1,136,5,136,3057,8,136,10,136,12,136,3060,9,136,1,137, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,3072, - 8,137,3,137,3074,8,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137, - 3082,8,137,10,137,12,137,3085,9,137,1,138,3,138,3088,8,138,1,138, - 1,138,1,138,1,138,1,138,1,138,3,138,3096,8,138,1,138,1,138,1,138, - 1,138,1,138,5,138,3103,8,138,10,138,12,138,3106,9,138,1,138,1,138, - 1,138,3,138,3111,8,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138, - 3119,8,138,1,138,1,138,1,138,3,138,3124,8,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,5,138,3134,8,138,10,138,12,138,3137, - 9,138,1,138,1,138,3,138,3141,8,138,1,138,3,138,3144,8,138,1,138, - 1,138,1,138,1,138,3,138,3150,8,138,1,138,1,138,3,138,3154,8,138, - 1,138,1,138,1,138,3,138,3159,8,138,1,138,1,138,1,138,3,138,3164, - 8,138,1,138,1,138,1,138,3,138,3169,8,138,1,139,1,139,1,139,1,139, - 3,139,3175,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 1,97,1,98,1,98,3,98,2612,8,98,1,98,1,98,5,98,2616,8,98,10,98,12, + 98,2619,9,98,3,98,2621,8,98,1,99,1,99,1,99,3,99,2626,8,99,1,100, + 1,100,1,100,3,100,2631,8,100,1,100,1,100,3,100,2635,8,100,1,100, + 1,100,1,100,1,100,3,100,2641,8,100,1,100,1,100,3,100,2645,8,100, + 1,101,3,101,2648,8,101,1,101,1,101,1,101,3,101,2653,8,101,1,101, + 3,101,2656,8,101,1,101,1,101,1,101,3,101,2661,8,101,1,101,1,101, + 3,101,2665,8,101,1,101,3,101,2668,8,101,1,101,3,101,2671,8,101,1, + 102,1,102,1,102,1,102,3,102,2677,8,102,1,103,1,103,1,103,3,103,2682, + 8,103,1,103,1,103,1,103,1,103,1,103,3,103,2689,8,103,1,104,3,104, + 2692,8,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,2710,8,104,3,104, + 2712,8,104,1,104,3,104,2715,8,104,1,105,1,105,1,105,1,105,1,106, + 1,106,1,106,5,106,2724,8,106,10,106,12,106,2727,9,106,1,107,1,107, + 1,107,1,107,5,107,2733,8,107,10,107,12,107,2736,9,107,1,107,1,107, + 1,108,1,108,3,108,2742,8,108,1,109,1,109,1,109,1,109,5,109,2748, + 8,109,10,109,12,109,2751,9,109,1,109,1,109,1,110,1,110,3,110,2757, + 8,110,1,111,1,111,3,111,2761,8,111,1,111,3,111,2764,8,111,1,111, + 1,111,1,111,1,111,1,111,1,111,3,111,2772,8,111,1,111,1,111,1,111, + 1,111,1,111,1,111,3,111,2780,8,111,1,111,1,111,1,111,1,111,3,111, + 2786,8,111,1,112,1,112,1,112,1,112,5,112,2792,8,112,10,112,12,112, + 2795,9,112,1,112,1,112,1,113,1,113,1,113,3,113,2802,8,113,1,113, + 1,113,1,113,1,113,1,113,3,113,2809,8,113,1,113,1,113,1,113,1,113, + 1,113,3,113,2816,8,113,3,113,2818,8,113,1,114,1,114,1,114,1,114, + 1,114,1,114,1,114,1,114,1,114,5,114,2829,8,114,10,114,12,114,2832, + 9,114,1,114,1,114,1,114,3,114,2837,8,114,3,114,2839,8,114,1,114, + 1,114,1,114,1,114,1,114,1,114,5,114,2847,8,114,10,114,12,114,2850, + 9,114,1,114,1,114,1,114,3,114,2855,8,114,3,114,2857,8,114,1,115, + 1,115,1,115,1,115,1,116,1,116,3,116,2865,8,116,1,117,1,117,3,117, + 2869,8,117,1,118,1,118,1,118,1,118,1,118,5,118,2876,8,118,10,118, + 12,118,2879,9,118,3,118,2881,8,118,1,118,1,118,1,118,1,119,3,119, + 2887,8,119,1,119,1,119,3,119,2891,8,119,3,119,2893,8,119,1,120,1, + 120,1,120,1,120,1,120,1,120,1,120,3,120,2902,8,120,1,120,1,120,1, + 120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,2914,8,120,3, + 120,2916,8,120,1,120,1,120,1,120,1,120,1,120,3,120,2923,8,120,1, + 120,1,120,1,120,1,120,1,120,3,120,2930,8,120,1,120,1,120,1,120,1, + 120,3,120,2936,8,120,1,120,1,120,1,120,1,120,3,120,2942,8,120,3, + 120,2944,8,120,1,121,1,121,1,121,5,121,2949,8,121,10,121,12,121, + 2952,9,121,1,122,1,122,1,122,5,122,2957,8,122,10,122,12,122,2960, + 9,122,1,123,1,123,1,123,5,123,2965,8,123,10,123,12,123,2968,9,123, + 1,124,1,124,1,124,3,124,2973,8,124,1,125,1,125,1,125,3,125,2978, + 8,125,1,125,1,125,1,126,1,126,1,126,3,126,2985,8,126,1,126,1,126, + 1,127,1,127,3,127,2991,8,127,1,127,3,127,2994,8,127,1,127,1,127, + 3,127,2998,8,127,3,127,3000,8,127,1,128,1,128,1,128,5,128,3005,8, + 128,10,128,12,128,3008,9,128,1,129,1,129,1,129,1,129,5,129,3014, + 8,129,10,129,12,129,3017,9,129,1,129,1,129,1,130,1,130,3,130,3023, + 8,130,1,131,1,131,1,131,1,131,1,131,1,131,5,131,3031,8,131,10,131, + 12,131,3034,9,131,1,131,1,131,3,131,3038,8,131,1,132,1,132,3,132, + 3042,8,132,1,133,1,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135, + 3052,8,135,1,136,1,136,1,136,5,136,3057,8,136,10,136,12,136,3060, + 9,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 3,137,3072,8,137,3,137,3074,8,137,1,137,1,137,1,137,1,137,1,137, + 1,137,5,137,3082,8,137,10,137,12,137,3085,9,137,1,138,3,138,3088, + 8,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3096,8,138,1,138, + 1,138,1,138,1,138,1,138,5,138,3103,8,138,10,138,12,138,3106,9,138, + 1,138,1,138,1,138,3,138,3111,8,138,1,138,1,138,1,138,1,138,1,138, + 1,138,3,138,3119,8,138,1,138,1,138,1,138,3,138,3124,8,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,5,138,3134,8,138,10,138, + 12,138,3137,9,138,1,138,1,138,3,138,3141,8,138,1,138,3,138,3144, + 8,138,1,138,1,138,1,138,1,138,3,138,3150,8,138,1,138,1,138,3,138, + 3154,8,138,1,138,1,138,1,138,3,138,3159,8,138,1,138,1,138,1,138, + 3,138,3164,8,138,1,138,1,138,1,138,3,138,3169,8,138,1,139,1,139, + 1,139,1,139,3,139,3175,8,139,1,139,1,139,1,139,1,139,1,139,1,139, 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, - 5,139,3196,8,139,10,139,12,139,3199,9,139,1,140,1,140,1,141,1,141, - 1,141,1,141,1,141,1,141,3,141,3209,8,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3221,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3231,8,141,11,141,12,141, - 3232,1,141,1,141,3,141,3237,8,141,1,141,1,141,1,141,1,141,1,141, - 4,141,3244,8,141,11,141,12,141,3245,1,141,1,141,3,141,3250,8,141, + 1,139,1,139,5,139,3196,8,139,10,139,12,139,3199,9,139,1,140,1,140, + 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3209,8,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3221,8,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,4,141,3231,8,141, + 11,141,12,141,3232,1,141,1,141,3,141,3237,8,141,1,141,1,141,1,141, + 1,141,1,141,4,141,3244,8,141,11,141,12,141,3245,1,141,1,141,3,141, + 3250,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,5,141,3266,8,141,10,141,12,141,3269, + 9,141,3,141,3271,8,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141, + 3279,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3288, + 8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3297,8,141, 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,5,141,3266,8,141,10,141,12,141,3269,9,141,3,141, - 3271,8,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3279,8,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3288,8,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3297,8,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,4,141,3318,8,141, + 11,141,12,141,3319,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3336,8,141,1,141,1,141, + 1,141,5,141,3341,8,141,10,141,12,141,3344,9,141,3,141,3346,8,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3355,8,141,1,141, + 1,141,3,141,3359,8,141,1,141,1,141,3,141,3363,8,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3373,8,141,11,141,12,141, + 3374,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3318,8,141,11,141,12,141, - 3319,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,3,141,3336,8,141,1,141,1,141,1,141,5,141, - 3341,8,141,10,141,12,141,3344,9,141,3,141,3346,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,3,141,3355,8,141,1,141,1,141,3,141, - 3359,8,141,1,141,1,141,3,141,3363,8,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,4,141,3373,8,141,11,141,12,141,3374,1,141, + 1,141,1,141,3,141,3400,8,141,1,141,1,141,1,141,1,141,1,141,3,141, + 3407,8,141,1,141,3,141,3410,8,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3425,8,141, 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 3,141,3400,8,141,1,141,1,141,1,141,1,141,1,141,3,141,3407,8,141, - 1,141,3,141,3410,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3425,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3446,8,141,1,141,1,141, - 3,141,3450,8,141,3,141,3452,8,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,5,141,3462,8,141,10,141,12,141,3465,9,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,3,142,3474,8,142,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,4,143,3487, - 8,143,11,143,12,143,3488,3,143,3491,8,143,1,144,1,144,1,145,1,145, - 1,146,1,146,1,147,1,147,1,148,1,148,1,148,3,148,3504,8,148,1,149, - 1,149,3,149,3508,8,149,1,150,1,150,1,150,4,150,3513,8,150,11,150, - 12,150,3514,1,151,1,151,1,151,3,151,3520,8,151,1,152,1,152,1,152, - 1,152,1,152,1,153,3,153,3528,8,153,1,153,1,153,1,153,3,153,3533, - 8,153,1,154,1,154,1,155,1,155,1,156,1,156,1,156,3,156,3542,8,156, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3446,8,141, + 1,141,1,141,3,141,3450,8,141,3,141,3452,8,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,5,141,3462,8,141,10,141,12,141,3465, + 9,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3474,8,142, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, + 4,143,3487,8,143,11,143,12,143,3488,3,143,3491,8,143,1,144,1,144, + 1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148,1,148,3,148,3504, + 8,148,1,149,1,149,3,149,3508,8,149,1,150,1,150,1,150,4,150,3513, + 8,150,11,150,12,150,3514,1,151,1,151,1,151,3,151,3520,8,151,1,152, + 1,152,1,152,1,152,1,152,1,153,3,153,3528,8,153,1,153,1,153,1,153, + 3,153,3533,8,153,1,154,1,154,1,155,1,155,1,156,1,156,1,156,3,156, + 3542,8,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,3574,8,157, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,3,158,3591,8,158,1,158,1,158,3,158,3595, - 8,158,1,158,1,158,1,158,1,158,3,158,3601,8,158,1,158,1,158,1,158, - 1,158,3,158,3607,8,158,1,158,1,158,1,158,1,158,1,158,5,158,3614, - 8,158,10,158,12,158,3617,9,158,1,158,3,158,3620,8,158,3,158,3622, - 8,158,1,159,1,159,1,159,5,159,3627,8,159,10,159,12,159,3630,9,159, - 1,160,1,160,1,160,5,160,3635,8,160,10,160,12,160,3638,9,160,1,161, - 1,161,1,161,5,161,3643,8,161,10,161,12,161,3646,9,161,1,162,1,162, - 1,162,5,162,3651,8,162,10,162,12,162,3654,9,162,1,163,1,163,1,163, - 1,163,1,163,3,163,3661,8,163,1,164,1,164,1,164,1,165,1,165,1,165, - 1,166,1,166,1,166,5,166,3672,8,166,10,166,12,166,3675,9,166,1,167, - 1,167,1,167,1,167,3,167,3681,8,167,1,167,3,167,3684,8,167,1,168, - 1,168,1,168,5,168,3689,8,168,10,168,12,168,3692,9,168,1,169,1,169, - 1,169,5,169,3697,8,169,10,169,12,169,3700,9,169,1,170,1,170,1,170, - 1,170,1,170,3,170,3707,8,170,1,171,1,171,1,171,1,171,1,171,1,171, - 1,171,1,172,1,172,1,172,5,172,3719,8,172,10,172,12,172,3722,9,172, - 1,173,1,173,3,173,3726,8,173,1,173,1,173,1,173,3,173,3731,8,173, - 1,173,3,173,3734,8,173,1,174,1,174,1,174,1,174,1,174,1,175,1,175, - 1,175,1,175,5,175,3745,8,175,10,175,12,175,3748,9,175,1,176,1,176, - 1,176,1,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178, - 1,178,1,178,1,178,1,178,1,178,1,178,5,178,3769,8,178,10,178,12,178, - 3772,9,178,1,178,1,178,1,178,1,178,1,178,5,178,3779,8,178,10,178, - 12,178,3782,9,178,3,178,3784,8,178,1,178,1,178,1,178,1,178,1,178, - 5,178,3791,8,178,10,178,12,178,3794,9,178,3,178,3796,8,178,3,178, - 3798,8,178,1,178,3,178,3801,8,178,1,178,3,178,3804,8,178,1,179,1, - 179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 1,179,1,179,1,179,1,179,3,179,3822,8,179,1,180,1,180,1,180,1,180, - 1,180,1,180,1,180,3,180,3831,8,180,1,181,1,181,1,181,5,181,3836, - 8,181,10,181,12,181,3839,9,181,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,3,182,3850,8,182,1,183,1,183,1,184,1,184,1,184, - 5,184,3857,8,184,10,184,12,184,3860,9,184,1,185,1,185,1,185,1,186, - 1,186,4,186,3867,8,186,11,186,12,186,3868,1,186,3,186,3872,8,186, - 1,187,1,187,3,187,3876,8,187,1,188,1,188,1,188,1,188,3,188,3882, - 8,188,1,189,1,189,1,190,1,190,1,191,3,191,3889,8,191,1,191,1,191, - 3,191,3893,8,191,1,191,1,191,3,191,3897,8,191,1,191,1,191,3,191, - 3901,8,191,1,191,1,191,3,191,3905,8,191,1,191,1,191,3,191,3909,8, - 191,1,191,1,191,3,191,3913,8,191,1,191,1,191,3,191,3917,8,191,1, - 191,1,191,3,191,3921,8,191,1,191,1,191,3,191,3925,8,191,1,191,3, - 191,3928,8,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1, - 192,1,192,1,192,3,192,3941,8,192,1,193,1,193,1,194,1,194,3,194,3947, - 8,194,1,195,1,195,3,195,3951,8,195,1,196,1,196,1,197,1,197,1,198, - 1,198,1,198,9,1135,1205,1213,1230,1257,1266,1275,1284,1332,4,102, - 274,278,282,199,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, - 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, - 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, - 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, - 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, - 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, - 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, - 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, - 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, - 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, - 342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372, - 374,376,378,380,382,384,386,388,390,392,394,396,0,64,2,0,78,78,228, - 228,2,0,34,34,246,246,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91, - 91,98,98,5,0,46,46,58,58,108,108,122,122,172,172,1,0,86,87,2,0,108, - 108,122,122,3,0,8,8,96,96,288,288,2,0,8,8,166,166,1,0,334,335,3, - 0,72,72,189,189,260,260,3,0,73,73,190,190,261,261,4,0,102,102,148, - 148,269,269,322,322,3,0,102,102,269,269,322,322,2,0,21,21,86,86, - 2,0,116,116,157,157,3,0,10,10,289,289,330,330,2,0,291,291,336,336, - 2,0,290,290,302,302,2,0,61,61,255,255,2,0,104,104,141,141,2,0,10, - 10,92,92,2,0,381,381,383,383,2,0,93,93,216,216,2,0,208,208,277,277, - 2,0,196,196,359,359,1,0,250,251,1,0,162,163,3,0,10,10,16,16,276, - 276,3,0,111,111,315,315,324,324,2,0,360,361,365,365,2,0,94,94,362, - 364,2,0,360,361,368,368,11,0,67,67,69,69,134,134,179,179,181,181, - 183,183,185,185,230,230,258,258,340,340,347,347,4,0,63,63,65,66, - 267,267,330,330,2,0,74,75,305,305,3,0,76,77,301,301,306,306,2,0, - 36,36,317,317,2,0,138,138,245,245,1,0,286,287,2,0,4,4,123,123,2, - 0,4,4,119,119,3,0,28,28,160,160,310,310,1,0,219,220,1,0,351,358, - 2,0,94,94,360,369,4,0,14,14,140,140,196,196,207,207,2,0,111,111, - 315,315,1,0,360,361,7,0,67,68,134,135,179,186,191,192,258,259,340, - 341,347,348,6,0,67,67,134,134,183,183,185,185,258,258,347,347,2, - 0,185,185,347,347,4,0,67,67,134,134,183,183,258,258,3,0,134,134, - 183,183,258,258,2,0,82,82,351,351,2,0,118,118,225,225,2,0,377,377, - 388,388,1,0,382,383,2,0,96,96,268,268,1,0,376,377,52,0,8,9,11,13, - 15,15,17,19,21,22,24,27,29,34,37,41,43,46,48,48,50,56,58,58,61,62, - 67,91,93,96,98,98,101,101,103,110,113,113,115,118,121,122,125,128, - 131,131,133,139,141,143,145,147,149,151,154,154,156,157,159,159, - 162,192,194,194,198,200,204,206,209,209,211,212,214,218,221,225, - 227,237,239,248,250,261,263,266,268,275,277,291,293,298,301,307, - 309,309,311,321,325,329,332,341,344,344,347,350,16,0,15,15,60,60, - 102,102,124,124,144,144,148,148,155,155,158,158,161,161,193,193, - 202,202,249,249,263,263,269,269,322,322,331,331,18,0,8,14,16,59, - 61,101,103,123,125,143,145,147,149,154,156,157,159,160,162,192,194, - 194,196,201,203,248,250,262,264,268,270,321,323,330,332,350,4570, - 0,401,1,0,0,0,2,406,1,0,0,0,4,1335,1,0,0,0,6,1339,1,0,0,0,8,1341, - 1,0,0,0,10,1343,1,0,0,0,12,1513,1,0,0,0,14,1515,1,0,0,0,16,1530, - 1,0,0,0,18,1536,1,0,0,0,20,1548,1,0,0,0,22,1561,1,0,0,0,24,1564, - 1,0,0,0,26,1568,1,0,0,0,28,1649,1,0,0,0,30,1651,1,0,0,0,32,1655, - 1,0,0,0,34,1676,1,0,0,0,36,1678,1,0,0,0,38,1680,1,0,0,0,40,1687, - 1,0,0,0,42,1689,1,0,0,0,44,1697,1,0,0,0,46,1706,1,0,0,0,48,1717, - 1,0,0,0,50,1735,1,0,0,0,52,1738,1,0,0,0,54,1749,1,0,0,0,56,1765, - 1,0,0,0,58,1771,1,0,0,0,60,1773,1,0,0,0,62,1784,1,0,0,0,64,1791, - 1,0,0,0,66,1802,1,0,0,0,68,1819,1,0,0,0,70,1827,1,0,0,0,72,1829, - 1,0,0,0,74,1835,1,0,0,0,76,1894,1,0,0,0,78,1896,1,0,0,0,80,1898, - 1,0,0,0,82,1900,1,0,0,0,84,1902,1,0,0,0,86,1904,1,0,0,0,88,1906, - 1,0,0,0,90,1908,1,0,0,0,92,1910,1,0,0,0,94,1918,1,0,0,0,96,1926, - 1,0,0,0,98,1938,1,0,0,0,100,1990,1,0,0,0,102,1993,1,0,0,0,104,2028, - 1,0,0,0,106,2032,1,0,0,0,108,2041,1,0,0,0,110,2074,1,0,0,0,112,2120, - 1,0,0,0,114,2141,1,0,0,0,116,2173,1,0,0,0,118,2185,1,0,0,0,120,2188, - 1,0,0,0,122,2197,1,0,0,0,124,2211,1,0,0,0,126,2230,1,0,0,0,128,2250, - 1,0,0,0,130,2256,1,0,0,0,132,2258,1,0,0,0,134,2266,1,0,0,0,136,2270, - 1,0,0,0,138,2273,1,0,0,0,140,2276,1,0,0,0,142,2302,1,0,0,0,144,2304, - 1,0,0,0,146,2325,1,0,0,0,148,2341,1,0,0,0,150,2382,1,0,0,0,152,2387, - 1,0,0,0,154,2414,1,0,0,0,156,2418,1,0,0,0,158,2440,1,0,0,0,160,2442, - 1,0,0,0,162,2472,1,0,0,0,164,2474,1,0,0,0,166,2481,1,0,0,0,168,2494, - 1,0,0,0,170,2499,1,0,0,0,172,2501,1,0,0,0,174,2516,1,0,0,0,176,2540, - 1,0,0,0,178,2553,1,0,0,0,180,2555,1,0,0,0,182,2557,1,0,0,0,184,2561, - 1,0,0,0,186,2564,1,0,0,0,188,2568,1,0,0,0,190,2572,1,0,0,0,192,2575, - 1,0,0,0,194,2607,1,0,0,0,196,2620,1,0,0,0,198,2625,1,0,0,0,200,2644, - 1,0,0,0,202,2670,1,0,0,0,204,2676,1,0,0,0,206,2678,1,0,0,0,208,2714, - 1,0,0,0,210,2716,1,0,0,0,212,2720,1,0,0,0,214,2728,1,0,0,0,216,2739, - 1,0,0,0,218,2743,1,0,0,0,220,2754,1,0,0,0,222,2785,1,0,0,0,224,2787, - 1,0,0,0,226,2817,1,0,0,0,228,2838,1,0,0,0,230,2858,1,0,0,0,232,2864, - 1,0,0,0,234,2868,1,0,0,0,236,2870,1,0,0,0,238,2892,1,0,0,0,240,2943, - 1,0,0,0,242,2945,1,0,0,0,244,2953,1,0,0,0,246,2961,1,0,0,0,248,2969, - 1,0,0,0,250,2977,1,0,0,0,252,2984,1,0,0,0,254,2990,1,0,0,0,256,3001, - 1,0,0,0,258,3009,1,0,0,0,260,3022,1,0,0,0,262,3037,1,0,0,0,264,3041, - 1,0,0,0,266,3043,1,0,0,0,268,3045,1,0,0,0,270,3051,1,0,0,0,272,3053, - 1,0,0,0,274,3073,1,0,0,0,276,3168,1,0,0,0,278,3174,1,0,0,0,280,3200, - 1,0,0,0,282,3451,1,0,0,0,284,3473,1,0,0,0,286,3490,1,0,0,0,288,3492, - 1,0,0,0,290,3494,1,0,0,0,292,3496,1,0,0,0,294,3498,1,0,0,0,296,3500, - 1,0,0,0,298,3505,1,0,0,0,300,3512,1,0,0,0,302,3516,1,0,0,0,304,3521, - 1,0,0,0,306,3527,1,0,0,0,308,3534,1,0,0,0,310,3536,1,0,0,0,312,3541, - 1,0,0,0,314,3573,1,0,0,0,316,3621,1,0,0,0,318,3623,1,0,0,0,320,3631, - 1,0,0,0,322,3639,1,0,0,0,324,3647,1,0,0,0,326,3660,1,0,0,0,328,3662, - 1,0,0,0,330,3665,1,0,0,0,332,3668,1,0,0,0,334,3676,1,0,0,0,336,3685, - 1,0,0,0,338,3693,1,0,0,0,340,3706,1,0,0,0,342,3708,1,0,0,0,344,3715, - 1,0,0,0,346,3723,1,0,0,0,348,3735,1,0,0,0,350,3740,1,0,0,0,352,3749, - 1,0,0,0,354,3753,1,0,0,0,356,3803,1,0,0,0,358,3821,1,0,0,0,360,3830, - 1,0,0,0,362,3832,1,0,0,0,364,3849,1,0,0,0,366,3851,1,0,0,0,368,3853, - 1,0,0,0,370,3861,1,0,0,0,372,3871,1,0,0,0,374,3875,1,0,0,0,376,3881, - 1,0,0,0,378,3883,1,0,0,0,380,3885,1,0,0,0,382,3927,1,0,0,0,384,3940, - 1,0,0,0,386,3942,1,0,0,0,388,3946,1,0,0,0,390,3950,1,0,0,0,392,3952, - 1,0,0,0,394,3954,1,0,0,0,396,3956,1,0,0,0,398,400,3,2,1,0,399,398, - 1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402,1,0,0,0,402,404, - 1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1,0,0,0,406,408,3, - 4,2,0,407,409,5,1,0,0,408,407,1,0,0,0,408,409,1,0,0,0,409,3,1,0, - 0,0,410,1336,3,26,13,0,411,413,3,44,22,0,412,411,1,0,0,0,412,413, - 1,0,0,0,413,414,1,0,0,0,414,1336,3,76,38,0,415,416,5,329,0,0,416, - 1336,3,78,39,0,417,418,5,329,0,0,418,419,3,36,18,0,419,420,3,78, - 39,0,420,1336,1,0,0,0,421,422,5,268,0,0,422,425,5,37,0,0,423,426, - 3,374,187,0,424,426,3,386,193,0,425,423,1,0,0,0,425,424,1,0,0,0, - 426,1336,1,0,0,0,427,428,5,59,0,0,428,430,3,36,18,0,429,431,3,188, - 94,0,430,429,1,0,0,0,430,431,1,0,0,0,431,432,1,0,0,0,432,440,3,80, - 40,0,433,439,3,24,12,0,434,439,3,22,11,0,435,436,5,345,0,0,436,437, - 7,0,0,0,437,439,3,52,26,0,438,433,1,0,0,0,438,434,1,0,0,0,438,435, - 1,0,0,0,439,442,1,0,0,0,440,438,1,0,0,0,440,441,1,0,0,0,441,1336, - 1,0,0,0,442,440,1,0,0,0,443,444,5,11,0,0,444,445,3,36,18,0,445,446, - 3,78,39,0,446,447,5,268,0,0,447,448,7,0,0,0,448,449,3,52,26,0,449, - 1336,1,0,0,0,450,451,5,11,0,0,451,452,3,36,18,0,452,453,3,78,39, - 0,453,454,5,268,0,0,454,455,3,22,11,0,455,1336,1,0,0,0,456,457,5, - 96,0,0,457,459,3,36,18,0,458,460,3,190,95,0,459,458,1,0,0,0,459, - 460,1,0,0,0,460,461,1,0,0,0,461,463,3,78,39,0,462,464,7,1,0,0,463, - 462,1,0,0,0,463,464,1,0,0,0,464,1336,1,0,0,0,465,466,5,272,0,0,466, - 469,3,38,19,0,467,468,7,2,0,0,468,470,3,244,122,0,469,467,1,0,0, - 0,469,470,1,0,0,0,470,475,1,0,0,0,471,473,5,162,0,0,472,471,1,0, - 0,0,472,473,1,0,0,0,473,474,1,0,0,0,474,476,3,386,193,0,475,472, - 1,0,0,0,475,476,1,0,0,0,476,1336,1,0,0,0,477,482,3,14,7,0,478,479, - 5,2,0,0,479,480,3,336,168,0,480,481,5,3,0,0,481,483,1,0,0,0,482, - 478,1,0,0,0,482,483,1,0,0,0,483,485,1,0,0,0,484,486,3,48,24,0,485, - 484,1,0,0,0,485,486,1,0,0,0,486,487,1,0,0,0,487,492,3,50,25,0,488, - 490,5,20,0,0,489,488,1,0,0,0,489,490,1,0,0,0,490,491,1,0,0,0,491, - 493,3,26,13,0,492,489,1,0,0,0,492,493,1,0,0,0,493,1336,1,0,0,0,494, - 495,5,59,0,0,495,497,5,292,0,0,496,498,3,188,94,0,497,496,1,0,0, - 0,497,498,1,0,0,0,498,499,1,0,0,0,499,500,3,82,41,0,500,501,5,162, - 0,0,501,510,3,84,42,0,502,509,3,48,24,0,503,509,3,240,120,0,504, - 509,3,68,34,0,505,509,3,22,11,0,506,507,5,296,0,0,507,509,3,52,26, - 0,508,502,1,0,0,0,508,503,1,0,0,0,508,504,1,0,0,0,508,505,1,0,0, - 0,508,506,1,0,0,0,509,512,1,0,0,0,510,508,1,0,0,0,510,511,1,0,0, - 0,511,1336,1,0,0,0,512,510,1,0,0,0,513,518,3,16,8,0,514,515,5,2, - 0,0,515,516,3,336,168,0,516,517,5,3,0,0,517,519,1,0,0,0,518,514, - 1,0,0,0,518,519,1,0,0,0,519,521,1,0,0,0,520,522,3,48,24,0,521,520, - 1,0,0,0,521,522,1,0,0,0,522,523,1,0,0,0,523,528,3,50,25,0,524,526, - 5,20,0,0,525,524,1,0,0,0,525,526,1,0,0,0,526,527,1,0,0,0,527,529, - 3,26,13,0,528,525,1,0,0,0,528,529,1,0,0,0,529,1336,1,0,0,0,530,531, - 5,13,0,0,531,532,5,292,0,0,532,534,3,84,42,0,533,535,3,32,16,0,534, - 533,1,0,0,0,534,535,1,0,0,0,535,536,1,0,0,0,536,537,5,55,0,0,537, - 545,5,281,0,0,538,546,5,195,0,0,539,540,5,119,0,0,540,541,5,50,0, - 0,541,546,3,92,46,0,542,543,5,119,0,0,543,544,5,10,0,0,544,546,5, - 50,0,0,545,538,1,0,0,0,545,539,1,0,0,0,545,542,1,0,0,0,545,546,1, - 0,0,0,546,1336,1,0,0,0,547,548,5,13,0,0,548,551,5,293,0,0,549,550, - 7,2,0,0,550,552,3,78,39,0,551,549,1,0,0,0,551,552,1,0,0,0,552,553, - 1,0,0,0,553,554,5,55,0,0,554,556,5,281,0,0,555,557,5,195,0,0,556, - 555,1,0,0,0,556,557,1,0,0,0,557,1336,1,0,0,0,558,559,5,11,0,0,559, - 560,5,292,0,0,560,561,3,84,42,0,561,562,5,8,0,0,562,563,5,49,0,0, - 563,564,3,320,160,0,564,1336,1,0,0,0,565,566,5,11,0,0,566,567,5, - 292,0,0,567,568,3,84,42,0,568,569,5,8,0,0,569,570,5,50,0,0,570,571, - 5,2,0,0,571,572,3,318,159,0,572,573,5,3,0,0,573,1336,1,0,0,0,574, - 575,5,11,0,0,575,576,5,292,0,0,576,577,3,84,42,0,577,578,5,240,0, - 0,578,579,5,49,0,0,579,580,3,90,45,0,580,581,5,308,0,0,581,582,3, - 94,47,0,582,1336,1,0,0,0,583,584,5,11,0,0,584,585,5,292,0,0,585, - 586,3,84,42,0,586,587,5,96,0,0,587,589,5,49,0,0,588,590,3,190,95, - 0,589,588,1,0,0,0,589,590,1,0,0,0,590,591,1,0,0,0,591,592,3,90,45, - 0,592,1336,1,0,0,0,593,594,5,11,0,0,594,595,5,292,0,0,595,596,3, - 84,42,0,596,597,5,96,0,0,597,599,5,50,0,0,598,600,3,190,95,0,599, - 598,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,602,5,2,0,0,602, - 603,3,92,46,0,603,604,5,3,0,0,604,1336,1,0,0,0,605,610,5,11,0,0, - 606,607,5,292,0,0,607,611,3,84,42,0,608,609,5,337,0,0,609,611,3, - 88,44,0,610,606,1,0,0,0,610,608,1,0,0,0,611,612,1,0,0,0,612,613, - 5,240,0,0,613,614,5,308,0,0,614,615,3,244,122,0,615,1336,1,0,0,0, - 616,621,5,11,0,0,617,618,5,292,0,0,618,622,3,84,42,0,619,620,5,337, - 0,0,620,622,3,88,44,0,621,617,1,0,0,0,621,619,1,0,0,0,622,623,1, - 0,0,0,623,624,5,268,0,0,624,625,5,296,0,0,625,626,3,52,26,0,626, - 1336,1,0,0,0,627,632,5,11,0,0,628,629,5,292,0,0,629,633,3,84,42, - 0,630,631,5,337,0,0,631,633,3,88,44,0,632,628,1,0,0,0,632,630,1, - 0,0,0,633,634,1,0,0,0,634,635,5,327,0,0,635,637,5,296,0,0,636,638, - 3,190,95,0,637,636,1,0,0,0,637,638,1,0,0,0,638,639,1,0,0,0,639,640, - 3,52,26,0,640,1336,1,0,0,0,641,642,5,11,0,0,642,643,5,292,0,0,643, - 644,3,84,42,0,644,646,7,3,0,0,645,647,5,49,0,0,646,645,1,0,0,0,646, - 647,1,0,0,0,647,648,1,0,0,0,648,650,3,90,45,0,649,651,3,384,192, - 0,650,649,1,0,0,0,650,651,1,0,0,0,651,1336,1,0,0,0,652,653,5,11, - 0,0,653,654,5,292,0,0,654,656,3,84,42,0,655,657,3,32,16,0,656,655, - 1,0,0,0,656,657,1,0,0,0,657,658,1,0,0,0,658,660,5,39,0,0,659,661, - 5,49,0,0,660,659,1,0,0,0,660,661,1,0,0,0,661,662,1,0,0,0,662,663, - 3,90,45,0,663,665,3,334,167,0,664,666,3,312,156,0,665,664,1,0,0, - 0,665,666,1,0,0,0,666,1336,1,0,0,0,667,668,5,11,0,0,668,669,5,292, - 0,0,669,671,3,84,42,0,670,672,3,32,16,0,671,670,1,0,0,0,671,672, - 1,0,0,0,672,673,1,0,0,0,673,674,5,243,0,0,674,675,5,50,0,0,675,676, - 5,2,0,0,676,677,3,322,161,0,677,678,5,3,0,0,678,1336,1,0,0,0,679, - 680,5,11,0,0,680,681,5,292,0,0,681,683,3,84,42,0,682,684,3,32,16, - 0,683,682,1,0,0,0,683,684,1,0,0,0,684,685,1,0,0,0,685,686,5,268, - 0,0,686,687,5,265,0,0,687,691,3,386,193,0,688,689,5,345,0,0,689, - 690,5,266,0,0,690,692,3,52,26,0,691,688,1,0,0,0,691,692,1,0,0,0, - 692,1336,1,0,0,0,693,694,5,11,0,0,694,695,5,292,0,0,695,697,3,84, - 42,0,696,698,3,32,16,0,697,696,1,0,0,0,697,698,1,0,0,0,698,699,1, - 0,0,0,699,700,5,268,0,0,700,701,5,266,0,0,701,702,3,52,26,0,702, - 1336,1,0,0,0,703,708,5,11,0,0,704,705,5,292,0,0,705,709,3,84,42, - 0,706,707,5,337,0,0,707,709,3,88,44,0,708,704,1,0,0,0,708,706,1, - 0,0,0,709,710,1,0,0,0,710,712,5,8,0,0,711,713,3,188,94,0,712,711, - 1,0,0,0,712,713,1,0,0,0,713,715,1,0,0,0,714,716,3,30,15,0,715,714, - 1,0,0,0,716,717,1,0,0,0,717,715,1,0,0,0,717,718,1,0,0,0,718,1336, - 1,0,0,0,719,720,5,11,0,0,720,721,5,292,0,0,721,722,3,84,42,0,722, - 723,3,32,16,0,723,724,5,240,0,0,724,725,5,308,0,0,725,726,3,32,16, - 0,726,1336,1,0,0,0,727,732,5,11,0,0,728,729,5,292,0,0,729,733,3, - 84,42,0,730,731,5,337,0,0,731,733,3,88,44,0,732,728,1,0,0,0,732, - 730,1,0,0,0,733,734,1,0,0,0,734,736,5,96,0,0,735,737,3,190,95,0, - 736,735,1,0,0,0,736,737,1,0,0,0,737,738,1,0,0,0,738,743,3,32,16, - 0,739,740,5,4,0,0,740,742,3,32,16,0,741,739,1,0,0,0,742,745,1,0, - 0,0,743,741,1,0,0,0,743,744,1,0,0,0,744,747,1,0,0,0,745,743,1,0, - 0,0,746,748,5,229,0,0,747,746,1,0,0,0,747,748,1,0,0,0,748,1336,1, - 0,0,0,749,750,5,11,0,0,750,751,5,292,0,0,751,753,3,84,42,0,752,754, - 3,32,16,0,753,752,1,0,0,0,753,754,1,0,0,0,754,755,1,0,0,0,755,756, - 5,268,0,0,756,757,3,22,11,0,757,1336,1,0,0,0,758,759,5,11,0,0,759, - 760,5,292,0,0,760,761,3,84,42,0,761,762,5,236,0,0,762,763,5,218, - 0,0,763,1336,1,0,0,0,764,765,5,11,0,0,765,766,5,175,0,0,766,767, - 5,337,0,0,767,768,3,88,44,0,768,769,7,4,0,0,769,770,5,247,0,0,770, - 1336,1,0,0,0,771,772,5,11,0,0,772,773,5,175,0,0,773,774,5,337,0, - 0,774,775,3,88,44,0,775,776,5,268,0,0,776,777,5,296,0,0,777,778, - 3,52,26,0,778,1336,1,0,0,0,779,780,5,96,0,0,780,782,5,292,0,0,781, - 783,3,190,95,0,782,781,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784, - 786,3,84,42,0,785,787,5,229,0,0,786,785,1,0,0,0,786,787,1,0,0,0, - 787,1336,1,0,0,0,788,789,5,96,0,0,789,791,5,337,0,0,790,792,3,190, - 95,0,791,790,1,0,0,0,791,792,1,0,0,0,792,793,1,0,0,0,793,1336,3, - 88,44,0,794,795,5,96,0,0,795,796,5,175,0,0,796,798,5,337,0,0,797, - 799,3,190,95,0,798,797,1,0,0,0,798,799,1,0,0,0,799,800,1,0,0,0,800, - 1336,3,88,44,0,801,804,5,59,0,0,802,803,5,207,0,0,803,805,5,243, - 0,0,804,802,1,0,0,0,804,805,1,0,0,0,805,810,1,0,0,0,806,808,5,128, - 0,0,807,806,1,0,0,0,807,808,1,0,0,0,808,809,1,0,0,0,809,811,5,297, - 0,0,810,807,1,0,0,0,810,811,1,0,0,0,811,812,1,0,0,0,812,814,5,337, - 0,0,813,815,3,188,94,0,814,813,1,0,0,0,814,815,1,0,0,0,815,816,1, - 0,0,0,816,818,3,86,43,0,817,819,3,218,109,0,818,817,1,0,0,0,818, - 819,1,0,0,0,819,828,1,0,0,0,820,827,3,24,12,0,821,822,5,217,0,0, - 822,823,5,202,0,0,823,827,3,210,105,0,824,825,5,296,0,0,825,827, - 3,52,26,0,826,820,1,0,0,0,826,821,1,0,0,0,826,824,1,0,0,0,827,830, - 1,0,0,0,828,826,1,0,0,0,828,829,1,0,0,0,829,831,1,0,0,0,830,828, - 1,0,0,0,831,832,5,20,0,0,832,833,3,26,13,0,833,1336,1,0,0,0,834, - 837,5,59,0,0,835,836,5,207,0,0,836,838,5,243,0,0,837,835,1,0,0,0, - 837,838,1,0,0,0,838,840,1,0,0,0,839,841,5,128,0,0,840,839,1,0,0, - 0,840,841,1,0,0,0,841,842,1,0,0,0,842,843,5,297,0,0,843,844,5,337, - 0,0,844,849,3,86,43,0,845,846,5,2,0,0,846,847,3,332,166,0,847,848, - 5,3,0,0,848,850,1,0,0,0,849,845,1,0,0,0,849,850,1,0,0,0,850,851, - 1,0,0,0,851,854,3,48,24,0,852,853,5,206,0,0,853,855,3,52,26,0,854, - 852,1,0,0,0,854,855,1,0,0,0,855,1336,1,0,0,0,856,857,5,11,0,0,857, - 858,5,337,0,0,858,860,3,88,44,0,859,861,5,20,0,0,860,859,1,0,0,0, - 860,861,1,0,0,0,861,862,1,0,0,0,862,863,3,26,13,0,863,1336,1,0,0, - 0,864,867,5,59,0,0,865,866,5,207,0,0,866,868,5,243,0,0,867,865,1, - 0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,871,5,297,0,0,870,869, - 1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872,874,5,125,0,0,873,875, - 3,188,94,0,874,873,1,0,0,0,874,875,1,0,0,0,875,876,1,0,0,0,876,877, - 3,366,183,0,877,878,5,20,0,0,878,888,3,386,193,0,879,880,5,331,0, - 0,880,885,3,74,37,0,881,882,5,4,0,0,882,884,3,74,37,0,883,881,1, - 0,0,0,884,887,1,0,0,0,885,883,1,0,0,0,885,886,1,0,0,0,886,889,1, - 0,0,0,887,885,1,0,0,0,888,879,1,0,0,0,888,889,1,0,0,0,889,1336,1, - 0,0,0,890,891,5,59,0,0,891,892,5,175,0,0,892,894,5,337,0,0,893,895, - 3,188,94,0,894,893,1,0,0,0,894,895,1,0,0,0,895,896,1,0,0,0,896,898, - 3,86,43,0,897,899,3,48,24,0,898,897,1,0,0,0,898,899,1,0,0,0,899, - 915,1,0,0,0,900,901,5,206,0,0,901,914,3,52,26,0,902,903,5,217,0, - 0,903,904,5,31,0,0,904,914,3,258,129,0,905,914,3,20,10,0,906,914, - 3,18,9,0,907,914,3,240,120,0,908,914,3,68,34,0,909,914,3,22,11,0, - 910,914,3,24,12,0,911,912,5,296,0,0,912,914,3,52,26,0,913,900,1, - 0,0,0,913,902,1,0,0,0,913,905,1,0,0,0,913,906,1,0,0,0,913,907,1, - 0,0,0,913,908,1,0,0,0,913,909,1,0,0,0,913,910,1,0,0,0,913,911,1, - 0,0,0,914,917,1,0,0,0,915,913,1,0,0,0,915,916,1,0,0,0,916,918,1, - 0,0,0,917,915,1,0,0,0,918,919,5,20,0,0,919,920,3,26,13,0,920,1336, - 1,0,0,0,921,923,5,96,0,0,922,924,5,297,0,0,923,922,1,0,0,0,923,924, - 1,0,0,0,924,925,1,0,0,0,925,927,5,125,0,0,926,928,3,190,95,0,927, - 926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,1336,3,364,182,0, - 930,933,5,81,0,0,931,932,5,207,0,0,932,934,5,243,0,0,933,931,1,0, - 0,0,933,934,1,0,0,0,934,936,1,0,0,0,935,937,5,335,0,0,936,935,1, - 0,0,0,936,937,1,0,0,0,937,938,1,0,0,0,938,940,3,364,182,0,939,941, - 3,316,158,0,940,939,1,0,0,0,940,941,1,0,0,0,941,943,1,0,0,0,942, - 944,3,330,165,0,943,942,1,0,0,0,943,944,1,0,0,0,944,1336,1,0,0,0, - 945,946,5,96,0,0,946,947,5,297,0,0,947,949,5,335,0,0,948,950,3,190, - 95,0,949,948,1,0,0,0,949,950,1,0,0,0,950,954,1,0,0,0,951,955,3,84, - 42,0,952,955,3,88,44,0,953,955,3,364,182,0,954,951,1,0,0,0,954,952, - 1,0,0,0,954,953,1,0,0,0,955,1336,1,0,0,0,956,958,5,106,0,0,957,959, - 7,5,0,0,958,957,1,0,0,0,958,959,1,0,0,0,959,960,1,0,0,0,960,1336, - 3,4,2,0,961,962,5,272,0,0,962,965,5,293,0,0,963,964,7,2,0,0,964, - 966,3,78,39,0,965,963,1,0,0,0,965,966,1,0,0,0,966,971,1,0,0,0,967, - 969,5,162,0,0,968,967,1,0,0,0,968,969,1,0,0,0,969,970,1,0,0,0,970, - 972,3,386,193,0,971,968,1,0,0,0,971,972,1,0,0,0,972,1336,1,0,0,0, - 973,974,5,272,0,0,974,975,5,292,0,0,975,978,5,108,0,0,976,977,7, - 2,0,0,977,979,3,78,39,0,978,976,1,0,0,0,978,979,1,0,0,0,979,980, - 1,0,0,0,980,981,5,162,0,0,981,983,3,386,193,0,982,984,3,32,16,0, - 983,982,1,0,0,0,983,984,1,0,0,0,984,1336,1,0,0,0,985,986,5,272,0, - 0,986,987,5,296,0,0,987,992,3,84,42,0,988,989,5,2,0,0,989,990,3, - 56,28,0,990,991,5,3,0,0,991,993,1,0,0,0,992,988,1,0,0,0,992,993, - 1,0,0,0,993,1336,1,0,0,0,994,995,5,272,0,0,995,996,5,50,0,0,996, - 997,7,2,0,0,997,1000,3,84,42,0,998,999,7,2,0,0,999,1001,3,78,39, - 0,1000,998,1,0,0,0,1000,1001,1,0,0,0,1001,1336,1,0,0,0,1002,1003, - 5,272,0,0,1003,1006,5,338,0,0,1004,1005,7,2,0,0,1005,1007,3,78,39, - 0,1006,1004,1,0,0,0,1006,1007,1,0,0,0,1007,1012,1,0,0,0,1008,1010, - 5,162,0,0,1009,1008,1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0, - 1011,1013,3,386,193,0,1012,1009,1,0,0,0,1012,1013,1,0,0,0,1013,1336, - 1,0,0,0,1014,1015,5,272,0,0,1015,1016,5,218,0,0,1016,1018,3,84,42, - 0,1017,1019,3,32,16,0,1018,1017,1,0,0,0,1018,1019,1,0,0,0,1019,1336, - 1,0,0,0,1020,1022,5,272,0,0,1021,1023,3,146,73,0,1022,1021,1,0,0, - 0,1022,1023,1,0,0,0,1023,1024,1,0,0,0,1024,1027,5,126,0,0,1025,1026, - 7,2,0,0,1026,1028,3,78,39,0,1027,1025,1,0,0,0,1027,1028,1,0,0,0, - 1028,1036,1,0,0,0,1029,1031,5,162,0,0,1030,1029,1,0,0,0,1030,1031, - 1,0,0,0,1031,1034,1,0,0,0,1032,1035,3,244,122,0,1033,1035,3,386, - 193,0,1034,1032,1,0,0,0,1034,1033,1,0,0,0,1035,1037,1,0,0,0,1036, - 1030,1,0,0,0,1036,1037,1,0,0,0,1037,1336,1,0,0,0,1038,1039,5,272, - 0,0,1039,1040,5,59,0,0,1040,1041,5,292,0,0,1041,1044,3,84,42,0,1042, - 1043,5,20,0,0,1043,1045,5,265,0,0,1044,1042,1,0,0,0,1044,1045,1, - 0,0,0,1045,1336,1,0,0,0,1046,1047,5,272,0,0,1047,1048,5,62,0,0,1048, - 1336,3,36,18,0,1049,1050,5,272,0,0,1050,1055,5,38,0,0,1051,1053, - 5,162,0,0,1052,1051,1,0,0,0,1052,1053,1,0,0,0,1053,1054,1,0,0,0, - 1054,1056,3,386,193,0,1055,1052,1,0,0,0,1055,1056,1,0,0,0,1056,1336, - 1,0,0,0,1057,1058,5,272,0,0,1058,1059,5,175,0,0,1059,1062,5,338, - 0,0,1060,1061,7,2,0,0,1061,1063,3,78,39,0,1062,1060,1,0,0,0,1062, - 1063,1,0,0,0,1063,1068,1,0,0,0,1064,1066,5,162,0,0,1065,1064,1,0, - 0,0,1065,1066,1,0,0,0,1066,1067,1,0,0,0,1067,1069,3,386,193,0,1068, - 1065,1,0,0,0,1068,1069,1,0,0,0,1069,1336,1,0,0,0,1070,1071,5,272, - 0,0,1071,1072,5,59,0,0,1072,1073,5,175,0,0,1073,1074,5,337,0,0,1074, - 1077,3,88,44,0,1075,1076,5,20,0,0,1076,1078,5,265,0,0,1077,1075, - 1,0,0,0,1077,1078,1,0,0,0,1078,1336,1,0,0,0,1079,1080,7,6,0,0,1080, - 1082,5,125,0,0,1081,1083,5,108,0,0,1082,1081,1,0,0,0,1082,1083,1, - 0,0,0,1083,1084,1,0,0,0,1084,1336,3,40,20,0,1085,1086,7,6,0,0,1086, - 1088,5,72,0,0,1087,1089,5,108,0,0,1088,1087,1,0,0,0,1088,1089,1, - 0,0,0,1089,1090,1,0,0,0,1090,1336,3,78,39,0,1091,1093,7,6,0,0,1092, - 1094,5,292,0,0,1093,1092,1,0,0,0,1093,1094,1,0,0,0,1094,1096,1,0, - 0,0,1095,1097,7,7,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097,1098, - 1,0,0,0,1098,1100,3,84,42,0,1099,1101,3,32,16,0,1100,1099,1,0,0, - 0,1100,1101,1,0,0,0,1101,1103,1,0,0,0,1102,1104,3,42,21,0,1103,1102, - 1,0,0,0,1103,1104,1,0,0,0,1104,1336,1,0,0,0,1105,1107,7,6,0,0,1106, - 1108,5,231,0,0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0, - 0,0,1109,1336,3,26,13,0,1110,1111,5,51,0,0,1111,1112,5,202,0,0,1112, - 1113,3,36,18,0,1113,1114,3,78,39,0,1114,1115,5,153,0,0,1115,1116, - 3,388,194,0,1116,1336,1,0,0,0,1117,1118,5,51,0,0,1118,1119,5,202, - 0,0,1119,1120,5,292,0,0,1120,1121,3,84,42,0,1121,1122,5,153,0,0, - 1122,1123,3,388,194,0,1123,1336,1,0,0,0,1124,1125,5,239,0,0,1125, - 1126,5,292,0,0,1126,1336,3,84,42,0,1127,1128,5,239,0,0,1128,1129, - 5,125,0,0,1129,1336,3,364,182,0,1130,1138,5,239,0,0,1131,1139,3, - 386,193,0,1132,1134,9,0,0,0,1133,1132,1,0,0,0,1134,1137,1,0,0,0, - 1135,1136,1,0,0,0,1135,1133,1,0,0,0,1136,1139,1,0,0,0,1137,1135, - 1,0,0,0,1138,1131,1,0,0,0,1138,1135,1,0,0,0,1139,1336,1,0,0,0,1140, - 1141,5,239,0,0,1141,1142,5,175,0,0,1142,1143,5,337,0,0,1143,1336, - 3,88,44,0,1144,1146,5,33,0,0,1145,1147,5,159,0,0,1146,1145,1,0,0, - 0,1146,1147,1,0,0,0,1147,1148,1,0,0,0,1148,1149,5,292,0,0,1149,1152, - 3,84,42,0,1150,1151,5,206,0,0,1151,1153,3,52,26,0,1152,1150,1,0, - 0,0,1152,1153,1,0,0,0,1153,1158,1,0,0,0,1154,1156,5,20,0,0,1155, - 1154,1,0,0,0,1155,1156,1,0,0,0,1156,1157,1,0,0,0,1157,1159,3,26, - 13,0,1158,1155,1,0,0,0,1158,1159,1,0,0,0,1159,1336,1,0,0,0,1160, - 1161,5,321,0,0,1161,1163,5,292,0,0,1162,1164,3,190,95,0,1163,1162, - 1,0,0,0,1163,1164,1,0,0,0,1164,1165,1,0,0,0,1165,1336,3,84,42,0, - 1166,1167,5,43,0,0,1167,1336,5,33,0,0,1168,1169,5,167,0,0,1169,1171, - 5,70,0,0,1170,1172,5,168,0,0,1171,1170,1,0,0,0,1171,1172,1,0,0,0, - 1172,1173,1,0,0,0,1173,1174,5,145,0,0,1174,1176,3,386,193,0,1175, - 1177,5,215,0,0,1176,1175,1,0,0,0,1176,1177,1,0,0,0,1177,1178,1,0, - 0,0,1178,1179,5,152,0,0,1179,1180,5,292,0,0,1180,1182,3,84,42,0, - 1181,1183,3,32,16,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,1336, - 1,0,0,0,1184,1185,5,316,0,0,1185,1186,5,292,0,0,1186,1188,3,84,42, - 0,1187,1189,3,32,16,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1336, - 1,0,0,0,1190,1192,5,187,0,0,1191,1190,1,0,0,0,1191,1192,1,0,0,0, - 1192,1193,1,0,0,0,1193,1194,5,241,0,0,1194,1195,5,292,0,0,1195,1198, - 3,84,42,0,1196,1197,7,8,0,0,1197,1199,5,218,0,0,1198,1196,1,0,0, - 0,1198,1199,1,0,0,0,1199,1336,1,0,0,0,1200,1201,7,9,0,0,1201,1205, - 3,374,187,0,1202,1204,9,0,0,0,1203,1202,1,0,0,0,1204,1207,1,0,0, - 0,1205,1206,1,0,0,0,1205,1203,1,0,0,0,1206,1336,1,0,0,0,1207,1205, - 1,0,0,0,1208,1209,5,268,0,0,1209,1213,5,252,0,0,1210,1212,9,0,0, - 0,1211,1210,1,0,0,0,1212,1215,1,0,0,0,1213,1214,1,0,0,0,1213,1211, - 1,0,0,0,1214,1336,1,0,0,0,1215,1213,1,0,0,0,1216,1217,5,268,0,0, - 1217,1218,5,300,0,0,1218,1219,5,349,0,0,1219,1336,3,296,148,0,1220, - 1221,5,268,0,0,1221,1222,5,300,0,0,1222,1223,5,349,0,0,1223,1336, - 3,6,3,0,1224,1225,5,268,0,0,1225,1226,5,300,0,0,1226,1230,5,349, - 0,0,1227,1229,9,0,0,0,1228,1227,1,0,0,0,1229,1232,1,0,0,0,1230,1231, - 1,0,0,0,1230,1228,1,0,0,0,1231,1336,1,0,0,0,1232,1230,1,0,0,0,1233, - 1234,5,268,0,0,1234,1235,7,10,0,0,1235,1336,3,132,66,0,1236,1237, - 5,268,0,0,1237,1238,7,10,0,0,1238,1239,5,2,0,0,1239,1240,3,242,121, - 0,1240,1241,5,3,0,0,1241,1242,5,351,0,0,1242,1243,5,2,0,0,1243,1244, - 3,26,13,0,1244,1245,5,3,0,0,1245,1336,1,0,0,0,1246,1247,5,268,0, - 0,1247,1248,3,8,4,0,1248,1249,5,351,0,0,1249,1250,3,10,5,0,1250, - 1336,1,0,0,0,1251,1252,5,268,0,0,1252,1260,3,8,4,0,1253,1257,5,351, - 0,0,1254,1256,9,0,0,0,1255,1254,1,0,0,0,1256,1259,1,0,0,0,1257,1258, + 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157, + 3574,8,157,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, + 1,158,1,158,1,158,1,158,1,158,1,158,3,158,3591,8,158,1,158,1,158, + 3,158,3595,8,158,1,158,1,158,1,158,1,158,3,158,3601,8,158,1,158, + 1,158,1,158,1,158,3,158,3607,8,158,1,158,1,158,1,158,1,158,1,158, + 5,158,3614,8,158,10,158,12,158,3617,9,158,1,158,3,158,3620,8,158, + 3,158,3622,8,158,1,159,1,159,1,159,5,159,3627,8,159,10,159,12,159, + 3630,9,159,1,160,1,160,1,160,5,160,3635,8,160,10,160,12,160,3638, + 9,160,1,161,1,161,1,161,5,161,3643,8,161,10,161,12,161,3646,9,161, + 1,162,1,162,1,162,5,162,3651,8,162,10,162,12,162,3654,9,162,1,163, + 1,163,1,163,1,163,1,163,3,163,3661,8,163,1,164,1,164,1,164,1,165, + 1,165,1,165,1,166,1,166,1,166,5,166,3672,8,166,10,166,12,166,3675, + 9,166,1,167,1,167,1,167,1,167,3,167,3681,8,167,1,167,3,167,3684, + 8,167,1,168,1,168,1,168,5,168,3689,8,168,10,168,12,168,3692,9,168, + 1,169,1,169,1,169,5,169,3697,8,169,10,169,12,169,3700,9,169,1,170, + 1,170,1,170,1,170,1,170,3,170,3707,8,170,1,171,1,171,1,171,1,171, + 1,171,1,171,1,171,1,172,1,172,1,172,5,172,3719,8,172,10,172,12,172, + 3722,9,172,1,173,1,173,3,173,3726,8,173,1,173,1,173,1,173,3,173, + 3731,8,173,1,173,3,173,3734,8,173,1,174,1,174,1,174,1,174,1,174, + 1,175,1,175,1,175,1,175,5,175,3745,8,175,10,175,12,175,3748,9,175, + 1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,5,178,3769,8,178, + 10,178,12,178,3772,9,178,1,178,1,178,1,178,1,178,1,178,5,178,3779, + 8,178,10,178,12,178,3782,9,178,3,178,3784,8,178,1,178,1,178,1,178, + 1,178,1,178,5,178,3791,8,178,10,178,12,178,3794,9,178,3,178,3796, + 8,178,3,178,3798,8,178,1,178,3,178,3801,8,178,1,178,3,178,3804,8, + 178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, + 1,179,1,179,1,179,1,179,1,179,1,179,3,179,3822,8,179,1,180,1,180, + 1,180,1,180,1,180,1,180,1,180,3,180,3831,8,180,1,181,1,181,1,181, + 5,181,3836,8,181,10,181,12,181,3839,9,181,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,3,182,3850,8,182,1,183,1,183,1,184, + 1,184,1,184,5,184,3857,8,184,10,184,12,184,3860,9,184,1,185,1,185, + 1,185,1,186,1,186,4,186,3867,8,186,11,186,12,186,3868,1,186,3,186, + 3872,8,186,1,187,1,187,3,187,3876,8,187,1,188,1,188,1,188,1,188, + 3,188,3882,8,188,1,189,1,189,1,190,1,190,1,191,3,191,3889,8,191, + 1,191,1,191,3,191,3893,8,191,1,191,1,191,3,191,3897,8,191,1,191, + 1,191,3,191,3901,8,191,1,191,1,191,3,191,3905,8,191,1,191,1,191, + 3,191,3909,8,191,1,191,1,191,3,191,3913,8,191,1,191,1,191,3,191, + 3917,8,191,1,191,1,191,3,191,3921,8,191,1,191,1,191,3,191,3925,8, + 191,1,191,3,191,3928,8,191,1,192,1,192,1,192,1,192,1,192,1,192,1, + 192,1,192,1,192,1,192,1,192,3,192,3941,8,192,1,193,1,193,1,194,1, + 194,3,194,3947,8,194,1,195,1,195,3,195,3951,8,195,1,196,1,196,1, + 197,1,197,1,198,1,198,1,198,9,1135,1205,1213,1230,1257,1266,1275, + 1284,1332,4,102,274,278,282,199,0,2,4,6,8,10,12,14,16,18,20,22,24, + 26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68, + 70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108, + 110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140, + 142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172, + 174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204, + 206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236, + 238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268, + 270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300, + 302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332, + 334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364, + 366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396, + 0,64,2,0,78,78,228,228,2,0,34,34,246,246,2,0,123,123,140,140,2,0, + 11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58,108,108,122,122,172, + 172,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96,96,288,288,2,0,8,8, + 166,166,1,0,334,335,3,0,72,72,189,189,260,260,3,0,73,73,190,190, + 261,261,4,0,102,102,148,148,269,269,322,322,3,0,102,102,269,269, + 322,322,2,0,21,21,86,86,2,0,116,116,157,157,3,0,10,10,289,289,330, + 330,2,0,291,291,336,336,2,0,290,290,302,302,2,0,61,61,255,255,2, + 0,104,104,141,141,2,0,10,10,92,92,2,0,381,381,383,383,2,0,93,93, + 216,216,2,0,208,208,277,277,2,0,196,196,359,359,1,0,250,251,1,0, + 162,163,3,0,10,10,16,16,276,276,3,0,111,111,315,315,324,324,2,0, + 360,361,365,365,2,0,94,94,362,364,2,0,360,361,368,368,11,0,67,67, + 69,69,134,134,179,179,181,181,183,183,185,185,230,230,258,258,340, + 340,347,347,4,0,63,63,65,66,267,267,330,330,2,0,74,75,305,305,3, + 0,76,77,301,301,306,306,2,0,36,36,317,317,2,0,138,138,245,245,1, + 0,286,287,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28,160,160,310, + 310,1,0,219,220,1,0,351,358,2,0,94,94,360,369,4,0,14,14,140,140, + 196,196,207,207,2,0,111,111,315,315,1,0,360,361,7,0,67,68,134,135, + 179,186,191,192,258,259,340,341,347,348,6,0,67,67,134,134,183,183, + 185,185,258,258,347,347,2,0,185,185,347,347,4,0,67,67,134,134,183, + 183,258,258,3,0,134,134,183,183,258,258,2,0,82,82,351,351,2,0,118, + 118,225,225,2,0,377,377,388,388,1,0,382,383,2,0,96,96,268,268,1, + 0,376,377,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34,37,41,43, + 46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103,110,113, + 113,115,118,121,122,125,128,131,131,133,139,141,143,145,147,149, + 151,154,154,156,157,159,159,162,192,194,194,198,200,204,206,209, + 209,211,212,214,218,221,225,227,237,239,248,250,261,263,266,268, + 275,277,291,293,298,301,307,309,309,311,321,325,329,332,341,344, + 344,347,350,16,0,15,15,60,60,102,102,124,124,144,144,148,148,155, + 155,158,158,161,161,193,193,202,202,249,249,263,263,269,269,322, + 322,331,331,18,0,8,14,16,59,61,101,103,123,125,143,145,147,149,154, + 156,157,159,160,162,192,194,194,196,201,203,248,250,261,264,268, + 270,321,323,330,332,350,4570,0,401,1,0,0,0,2,406,1,0,0,0,4,1335, + 1,0,0,0,6,1339,1,0,0,0,8,1341,1,0,0,0,10,1343,1,0,0,0,12,1513,1, + 0,0,0,14,1515,1,0,0,0,16,1530,1,0,0,0,18,1536,1,0,0,0,20,1548,1, + 0,0,0,22,1561,1,0,0,0,24,1564,1,0,0,0,26,1568,1,0,0,0,28,1649,1, + 0,0,0,30,1651,1,0,0,0,32,1655,1,0,0,0,34,1676,1,0,0,0,36,1678,1, + 0,0,0,38,1680,1,0,0,0,40,1687,1,0,0,0,42,1689,1,0,0,0,44,1697,1, + 0,0,0,46,1706,1,0,0,0,48,1717,1,0,0,0,50,1735,1,0,0,0,52,1738,1, + 0,0,0,54,1749,1,0,0,0,56,1765,1,0,0,0,58,1771,1,0,0,0,60,1773,1, + 0,0,0,62,1784,1,0,0,0,64,1791,1,0,0,0,66,1802,1,0,0,0,68,1819,1, + 0,0,0,70,1827,1,0,0,0,72,1829,1,0,0,0,74,1835,1,0,0,0,76,1894,1, + 0,0,0,78,1896,1,0,0,0,80,1898,1,0,0,0,82,1900,1,0,0,0,84,1902,1, + 0,0,0,86,1904,1,0,0,0,88,1906,1,0,0,0,90,1908,1,0,0,0,92,1910,1, + 0,0,0,94,1918,1,0,0,0,96,1926,1,0,0,0,98,1938,1,0,0,0,100,1990,1, + 0,0,0,102,1993,1,0,0,0,104,2028,1,0,0,0,106,2032,1,0,0,0,108,2041, + 1,0,0,0,110,2074,1,0,0,0,112,2120,1,0,0,0,114,2141,1,0,0,0,116,2173, + 1,0,0,0,118,2185,1,0,0,0,120,2188,1,0,0,0,122,2197,1,0,0,0,124,2211, + 1,0,0,0,126,2230,1,0,0,0,128,2250,1,0,0,0,130,2256,1,0,0,0,132,2258, + 1,0,0,0,134,2266,1,0,0,0,136,2270,1,0,0,0,138,2273,1,0,0,0,140,2276, + 1,0,0,0,142,2302,1,0,0,0,144,2304,1,0,0,0,146,2325,1,0,0,0,148,2341, + 1,0,0,0,150,2382,1,0,0,0,152,2387,1,0,0,0,154,2414,1,0,0,0,156,2418, + 1,0,0,0,158,2440,1,0,0,0,160,2442,1,0,0,0,162,2472,1,0,0,0,164,2474, + 1,0,0,0,166,2481,1,0,0,0,168,2494,1,0,0,0,170,2499,1,0,0,0,172,2501, + 1,0,0,0,174,2516,1,0,0,0,176,2540,1,0,0,0,178,2553,1,0,0,0,180,2555, + 1,0,0,0,182,2557,1,0,0,0,184,2561,1,0,0,0,186,2564,1,0,0,0,188,2568, + 1,0,0,0,190,2572,1,0,0,0,192,2575,1,0,0,0,194,2607,1,0,0,0,196,2620, + 1,0,0,0,198,2625,1,0,0,0,200,2644,1,0,0,0,202,2670,1,0,0,0,204,2676, + 1,0,0,0,206,2678,1,0,0,0,208,2714,1,0,0,0,210,2716,1,0,0,0,212,2720, + 1,0,0,0,214,2728,1,0,0,0,216,2739,1,0,0,0,218,2743,1,0,0,0,220,2754, + 1,0,0,0,222,2785,1,0,0,0,224,2787,1,0,0,0,226,2817,1,0,0,0,228,2838, + 1,0,0,0,230,2858,1,0,0,0,232,2864,1,0,0,0,234,2868,1,0,0,0,236,2870, + 1,0,0,0,238,2892,1,0,0,0,240,2943,1,0,0,0,242,2945,1,0,0,0,244,2953, + 1,0,0,0,246,2961,1,0,0,0,248,2969,1,0,0,0,250,2977,1,0,0,0,252,2984, + 1,0,0,0,254,2990,1,0,0,0,256,3001,1,0,0,0,258,3009,1,0,0,0,260,3022, + 1,0,0,0,262,3037,1,0,0,0,264,3041,1,0,0,0,266,3043,1,0,0,0,268,3045, + 1,0,0,0,270,3051,1,0,0,0,272,3053,1,0,0,0,274,3073,1,0,0,0,276,3168, + 1,0,0,0,278,3174,1,0,0,0,280,3200,1,0,0,0,282,3451,1,0,0,0,284,3473, + 1,0,0,0,286,3490,1,0,0,0,288,3492,1,0,0,0,290,3494,1,0,0,0,292,3496, + 1,0,0,0,294,3498,1,0,0,0,296,3500,1,0,0,0,298,3505,1,0,0,0,300,3512, + 1,0,0,0,302,3516,1,0,0,0,304,3521,1,0,0,0,306,3527,1,0,0,0,308,3534, + 1,0,0,0,310,3536,1,0,0,0,312,3541,1,0,0,0,314,3573,1,0,0,0,316,3621, + 1,0,0,0,318,3623,1,0,0,0,320,3631,1,0,0,0,322,3639,1,0,0,0,324,3647, + 1,0,0,0,326,3660,1,0,0,0,328,3662,1,0,0,0,330,3665,1,0,0,0,332,3668, + 1,0,0,0,334,3676,1,0,0,0,336,3685,1,0,0,0,338,3693,1,0,0,0,340,3706, + 1,0,0,0,342,3708,1,0,0,0,344,3715,1,0,0,0,346,3723,1,0,0,0,348,3735, + 1,0,0,0,350,3740,1,0,0,0,352,3749,1,0,0,0,354,3753,1,0,0,0,356,3803, + 1,0,0,0,358,3821,1,0,0,0,360,3830,1,0,0,0,362,3832,1,0,0,0,364,3849, + 1,0,0,0,366,3851,1,0,0,0,368,3853,1,0,0,0,370,3861,1,0,0,0,372,3871, + 1,0,0,0,374,3875,1,0,0,0,376,3881,1,0,0,0,378,3883,1,0,0,0,380,3885, + 1,0,0,0,382,3927,1,0,0,0,384,3940,1,0,0,0,386,3942,1,0,0,0,388,3946, + 1,0,0,0,390,3950,1,0,0,0,392,3952,1,0,0,0,394,3954,1,0,0,0,396,3956, + 1,0,0,0,398,400,3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399, + 1,0,0,0,401,402,1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405, + 5,0,0,1,405,1,1,0,0,0,406,408,3,4,2,0,407,409,5,1,0,0,408,407,1, + 0,0,0,408,409,1,0,0,0,409,3,1,0,0,0,410,1336,3,26,13,0,411,413,3, + 44,22,0,412,411,1,0,0,0,412,413,1,0,0,0,413,414,1,0,0,0,414,1336, + 3,76,38,0,415,416,5,329,0,0,416,1336,3,78,39,0,417,418,5,329,0,0, + 418,419,3,36,18,0,419,420,3,78,39,0,420,1336,1,0,0,0,421,422,5,268, + 0,0,422,425,5,37,0,0,423,426,3,374,187,0,424,426,3,386,193,0,425, + 423,1,0,0,0,425,424,1,0,0,0,426,1336,1,0,0,0,427,428,5,59,0,0,428, + 430,3,36,18,0,429,431,3,188,94,0,430,429,1,0,0,0,430,431,1,0,0,0, + 431,432,1,0,0,0,432,440,3,80,40,0,433,439,3,24,12,0,434,439,3,22, + 11,0,435,436,5,345,0,0,436,437,7,0,0,0,437,439,3,52,26,0,438,433, + 1,0,0,0,438,434,1,0,0,0,438,435,1,0,0,0,439,442,1,0,0,0,440,438, + 1,0,0,0,440,441,1,0,0,0,441,1336,1,0,0,0,442,440,1,0,0,0,443,444, + 5,11,0,0,444,445,3,36,18,0,445,446,3,78,39,0,446,447,5,268,0,0,447, + 448,7,0,0,0,448,449,3,52,26,0,449,1336,1,0,0,0,450,451,5,11,0,0, + 451,452,3,36,18,0,452,453,3,78,39,0,453,454,5,268,0,0,454,455,3, + 22,11,0,455,1336,1,0,0,0,456,457,5,96,0,0,457,459,3,36,18,0,458, + 460,3,190,95,0,459,458,1,0,0,0,459,460,1,0,0,0,460,461,1,0,0,0,461, + 463,3,78,39,0,462,464,7,1,0,0,463,462,1,0,0,0,463,464,1,0,0,0,464, + 1336,1,0,0,0,465,466,5,272,0,0,466,469,3,38,19,0,467,468,7,2,0,0, + 468,470,3,244,122,0,469,467,1,0,0,0,469,470,1,0,0,0,470,475,1,0, + 0,0,471,473,5,162,0,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474,1, + 0,0,0,474,476,3,386,193,0,475,472,1,0,0,0,475,476,1,0,0,0,476,1336, + 1,0,0,0,477,482,3,14,7,0,478,479,5,2,0,0,479,480,3,336,168,0,480, + 481,5,3,0,0,481,483,1,0,0,0,482,478,1,0,0,0,482,483,1,0,0,0,483, + 485,1,0,0,0,484,486,3,48,24,0,485,484,1,0,0,0,485,486,1,0,0,0,486, + 487,1,0,0,0,487,492,3,50,25,0,488,490,5,20,0,0,489,488,1,0,0,0,489, + 490,1,0,0,0,490,491,1,0,0,0,491,493,3,26,13,0,492,489,1,0,0,0,492, + 493,1,0,0,0,493,1336,1,0,0,0,494,495,5,59,0,0,495,497,5,292,0,0, + 496,498,3,188,94,0,497,496,1,0,0,0,497,498,1,0,0,0,498,499,1,0,0, + 0,499,500,3,82,41,0,500,501,5,162,0,0,501,510,3,84,42,0,502,509, + 3,48,24,0,503,509,3,240,120,0,504,509,3,68,34,0,505,509,3,22,11, + 0,506,507,5,296,0,0,507,509,3,52,26,0,508,502,1,0,0,0,508,503,1, + 0,0,0,508,504,1,0,0,0,508,505,1,0,0,0,508,506,1,0,0,0,509,512,1, + 0,0,0,510,508,1,0,0,0,510,511,1,0,0,0,511,1336,1,0,0,0,512,510,1, + 0,0,0,513,518,3,16,8,0,514,515,5,2,0,0,515,516,3,336,168,0,516,517, + 5,3,0,0,517,519,1,0,0,0,518,514,1,0,0,0,518,519,1,0,0,0,519,521, + 1,0,0,0,520,522,3,48,24,0,521,520,1,0,0,0,521,522,1,0,0,0,522,523, + 1,0,0,0,523,528,3,50,25,0,524,526,5,20,0,0,525,524,1,0,0,0,525,526, + 1,0,0,0,526,527,1,0,0,0,527,529,3,26,13,0,528,525,1,0,0,0,528,529, + 1,0,0,0,529,1336,1,0,0,0,530,531,5,13,0,0,531,532,5,292,0,0,532, + 534,3,84,42,0,533,535,3,32,16,0,534,533,1,0,0,0,534,535,1,0,0,0, + 535,536,1,0,0,0,536,537,5,55,0,0,537,545,5,281,0,0,538,546,5,195, + 0,0,539,540,5,119,0,0,540,541,5,50,0,0,541,546,3,92,46,0,542,543, + 5,119,0,0,543,544,5,10,0,0,544,546,5,50,0,0,545,538,1,0,0,0,545, + 539,1,0,0,0,545,542,1,0,0,0,545,546,1,0,0,0,546,1336,1,0,0,0,547, + 548,5,13,0,0,548,551,5,293,0,0,549,550,7,2,0,0,550,552,3,78,39,0, + 551,549,1,0,0,0,551,552,1,0,0,0,552,553,1,0,0,0,553,554,5,55,0,0, + 554,556,5,281,0,0,555,557,5,195,0,0,556,555,1,0,0,0,556,557,1,0, + 0,0,557,1336,1,0,0,0,558,559,5,11,0,0,559,560,5,292,0,0,560,561, + 3,84,42,0,561,562,5,8,0,0,562,563,5,49,0,0,563,564,3,320,160,0,564, + 1336,1,0,0,0,565,566,5,11,0,0,566,567,5,292,0,0,567,568,3,84,42, + 0,568,569,5,8,0,0,569,570,5,50,0,0,570,571,5,2,0,0,571,572,3,318, + 159,0,572,573,5,3,0,0,573,1336,1,0,0,0,574,575,5,11,0,0,575,576, + 5,292,0,0,576,577,3,84,42,0,577,578,5,240,0,0,578,579,5,49,0,0,579, + 580,3,90,45,0,580,581,5,308,0,0,581,582,3,94,47,0,582,1336,1,0,0, + 0,583,584,5,11,0,0,584,585,5,292,0,0,585,586,3,84,42,0,586,587,5, + 96,0,0,587,589,5,49,0,0,588,590,3,190,95,0,589,588,1,0,0,0,589,590, + 1,0,0,0,590,591,1,0,0,0,591,592,3,90,45,0,592,1336,1,0,0,0,593,594, + 5,11,0,0,594,595,5,292,0,0,595,596,3,84,42,0,596,597,5,96,0,0,597, + 599,5,50,0,0,598,600,3,190,95,0,599,598,1,0,0,0,599,600,1,0,0,0, + 600,601,1,0,0,0,601,602,5,2,0,0,602,603,3,92,46,0,603,604,5,3,0, + 0,604,1336,1,0,0,0,605,610,5,11,0,0,606,607,5,292,0,0,607,611,3, + 84,42,0,608,609,5,337,0,0,609,611,3,88,44,0,610,606,1,0,0,0,610, + 608,1,0,0,0,611,612,1,0,0,0,612,613,5,240,0,0,613,614,5,308,0,0, + 614,615,3,244,122,0,615,1336,1,0,0,0,616,621,5,11,0,0,617,618,5, + 292,0,0,618,622,3,84,42,0,619,620,5,337,0,0,620,622,3,88,44,0,621, + 617,1,0,0,0,621,619,1,0,0,0,622,623,1,0,0,0,623,624,5,268,0,0,624, + 625,5,296,0,0,625,626,3,52,26,0,626,1336,1,0,0,0,627,632,5,11,0, + 0,628,629,5,292,0,0,629,633,3,84,42,0,630,631,5,337,0,0,631,633, + 3,88,44,0,632,628,1,0,0,0,632,630,1,0,0,0,633,634,1,0,0,0,634,635, + 5,327,0,0,635,637,5,296,0,0,636,638,3,190,95,0,637,636,1,0,0,0,637, + 638,1,0,0,0,638,639,1,0,0,0,639,640,3,52,26,0,640,1336,1,0,0,0,641, + 642,5,11,0,0,642,643,5,292,0,0,643,644,3,84,42,0,644,646,7,3,0,0, + 645,647,5,49,0,0,646,645,1,0,0,0,646,647,1,0,0,0,647,648,1,0,0,0, + 648,650,3,90,45,0,649,651,3,384,192,0,650,649,1,0,0,0,650,651,1, + 0,0,0,651,1336,1,0,0,0,652,653,5,11,0,0,653,654,5,292,0,0,654,656, + 3,84,42,0,655,657,3,32,16,0,656,655,1,0,0,0,656,657,1,0,0,0,657, + 658,1,0,0,0,658,660,5,39,0,0,659,661,5,49,0,0,660,659,1,0,0,0,660, + 661,1,0,0,0,661,662,1,0,0,0,662,663,3,90,45,0,663,665,3,334,167, + 0,664,666,3,312,156,0,665,664,1,0,0,0,665,666,1,0,0,0,666,1336,1, + 0,0,0,667,668,5,11,0,0,668,669,5,292,0,0,669,671,3,84,42,0,670,672, + 3,32,16,0,671,670,1,0,0,0,671,672,1,0,0,0,672,673,1,0,0,0,673,674, + 5,243,0,0,674,675,5,50,0,0,675,676,5,2,0,0,676,677,3,322,161,0,677, + 678,5,3,0,0,678,1336,1,0,0,0,679,680,5,11,0,0,680,681,5,292,0,0, + 681,683,3,84,42,0,682,684,3,32,16,0,683,682,1,0,0,0,683,684,1,0, + 0,0,684,685,1,0,0,0,685,686,5,268,0,0,686,687,5,265,0,0,687,691, + 3,386,193,0,688,689,5,345,0,0,689,690,5,266,0,0,690,692,3,52,26, + 0,691,688,1,0,0,0,691,692,1,0,0,0,692,1336,1,0,0,0,693,694,5,11, + 0,0,694,695,5,292,0,0,695,697,3,84,42,0,696,698,3,32,16,0,697,696, + 1,0,0,0,697,698,1,0,0,0,698,699,1,0,0,0,699,700,5,268,0,0,700,701, + 5,266,0,0,701,702,3,52,26,0,702,1336,1,0,0,0,703,708,5,11,0,0,704, + 705,5,292,0,0,705,709,3,84,42,0,706,707,5,337,0,0,707,709,3,88,44, + 0,708,704,1,0,0,0,708,706,1,0,0,0,709,710,1,0,0,0,710,712,5,8,0, + 0,711,713,3,188,94,0,712,711,1,0,0,0,712,713,1,0,0,0,713,715,1,0, + 0,0,714,716,3,30,15,0,715,714,1,0,0,0,716,717,1,0,0,0,717,715,1, + 0,0,0,717,718,1,0,0,0,718,1336,1,0,0,0,719,720,5,11,0,0,720,721, + 5,292,0,0,721,722,3,84,42,0,722,723,3,32,16,0,723,724,5,240,0,0, + 724,725,5,308,0,0,725,726,3,32,16,0,726,1336,1,0,0,0,727,732,5,11, + 0,0,728,729,5,292,0,0,729,733,3,84,42,0,730,731,5,337,0,0,731,733, + 3,88,44,0,732,728,1,0,0,0,732,730,1,0,0,0,733,734,1,0,0,0,734,736, + 5,96,0,0,735,737,3,190,95,0,736,735,1,0,0,0,736,737,1,0,0,0,737, + 738,1,0,0,0,738,743,3,32,16,0,739,740,5,4,0,0,740,742,3,32,16,0, + 741,739,1,0,0,0,742,745,1,0,0,0,743,741,1,0,0,0,743,744,1,0,0,0, + 744,747,1,0,0,0,745,743,1,0,0,0,746,748,5,229,0,0,747,746,1,0,0, + 0,747,748,1,0,0,0,748,1336,1,0,0,0,749,750,5,11,0,0,750,751,5,292, + 0,0,751,753,3,84,42,0,752,754,3,32,16,0,753,752,1,0,0,0,753,754, + 1,0,0,0,754,755,1,0,0,0,755,756,5,268,0,0,756,757,3,22,11,0,757, + 1336,1,0,0,0,758,759,5,11,0,0,759,760,5,292,0,0,760,761,3,84,42, + 0,761,762,5,236,0,0,762,763,5,218,0,0,763,1336,1,0,0,0,764,765,5, + 11,0,0,765,766,5,175,0,0,766,767,5,337,0,0,767,768,3,88,44,0,768, + 769,7,4,0,0,769,770,5,247,0,0,770,1336,1,0,0,0,771,772,5,11,0,0, + 772,773,5,175,0,0,773,774,5,337,0,0,774,775,3,88,44,0,775,776,5, + 268,0,0,776,777,5,296,0,0,777,778,3,52,26,0,778,1336,1,0,0,0,779, + 780,5,96,0,0,780,782,5,292,0,0,781,783,3,190,95,0,782,781,1,0,0, + 0,782,783,1,0,0,0,783,784,1,0,0,0,784,786,3,84,42,0,785,787,5,229, + 0,0,786,785,1,0,0,0,786,787,1,0,0,0,787,1336,1,0,0,0,788,789,5,96, + 0,0,789,791,5,337,0,0,790,792,3,190,95,0,791,790,1,0,0,0,791,792, + 1,0,0,0,792,793,1,0,0,0,793,1336,3,88,44,0,794,795,5,96,0,0,795, + 796,5,175,0,0,796,798,5,337,0,0,797,799,3,190,95,0,798,797,1,0,0, + 0,798,799,1,0,0,0,799,800,1,0,0,0,800,1336,3,88,44,0,801,804,5,59, + 0,0,802,803,5,207,0,0,803,805,5,243,0,0,804,802,1,0,0,0,804,805, + 1,0,0,0,805,810,1,0,0,0,806,808,5,128,0,0,807,806,1,0,0,0,807,808, + 1,0,0,0,808,809,1,0,0,0,809,811,5,297,0,0,810,807,1,0,0,0,810,811, + 1,0,0,0,811,812,1,0,0,0,812,814,5,337,0,0,813,815,3,188,94,0,814, + 813,1,0,0,0,814,815,1,0,0,0,815,816,1,0,0,0,816,818,3,86,43,0,817, + 819,3,218,109,0,818,817,1,0,0,0,818,819,1,0,0,0,819,828,1,0,0,0, + 820,827,3,24,12,0,821,822,5,217,0,0,822,823,5,202,0,0,823,827,3, + 210,105,0,824,825,5,296,0,0,825,827,3,52,26,0,826,820,1,0,0,0,826, + 821,1,0,0,0,826,824,1,0,0,0,827,830,1,0,0,0,828,826,1,0,0,0,828, + 829,1,0,0,0,829,831,1,0,0,0,830,828,1,0,0,0,831,832,5,20,0,0,832, + 833,3,26,13,0,833,1336,1,0,0,0,834,837,5,59,0,0,835,836,5,207,0, + 0,836,838,5,243,0,0,837,835,1,0,0,0,837,838,1,0,0,0,838,840,1,0, + 0,0,839,841,5,128,0,0,840,839,1,0,0,0,840,841,1,0,0,0,841,842,1, + 0,0,0,842,843,5,297,0,0,843,844,5,337,0,0,844,849,3,86,43,0,845, + 846,5,2,0,0,846,847,3,332,166,0,847,848,5,3,0,0,848,850,1,0,0,0, + 849,845,1,0,0,0,849,850,1,0,0,0,850,851,1,0,0,0,851,854,3,48,24, + 0,852,853,5,206,0,0,853,855,3,52,26,0,854,852,1,0,0,0,854,855,1, + 0,0,0,855,1336,1,0,0,0,856,857,5,11,0,0,857,858,5,337,0,0,858,860, + 3,88,44,0,859,861,5,20,0,0,860,859,1,0,0,0,860,861,1,0,0,0,861,862, + 1,0,0,0,862,863,3,26,13,0,863,1336,1,0,0,0,864,867,5,59,0,0,865, + 866,5,207,0,0,866,868,5,243,0,0,867,865,1,0,0,0,867,868,1,0,0,0, + 868,870,1,0,0,0,869,871,5,297,0,0,870,869,1,0,0,0,870,871,1,0,0, + 0,871,872,1,0,0,0,872,874,5,125,0,0,873,875,3,188,94,0,874,873,1, + 0,0,0,874,875,1,0,0,0,875,876,1,0,0,0,876,877,3,366,183,0,877,878, + 5,20,0,0,878,888,3,386,193,0,879,880,5,331,0,0,880,885,3,74,37,0, + 881,882,5,4,0,0,882,884,3,74,37,0,883,881,1,0,0,0,884,887,1,0,0, + 0,885,883,1,0,0,0,885,886,1,0,0,0,886,889,1,0,0,0,887,885,1,0,0, + 0,888,879,1,0,0,0,888,889,1,0,0,0,889,1336,1,0,0,0,890,891,5,59, + 0,0,891,892,5,175,0,0,892,894,5,337,0,0,893,895,3,188,94,0,894,893, + 1,0,0,0,894,895,1,0,0,0,895,896,1,0,0,0,896,898,3,86,43,0,897,899, + 3,48,24,0,898,897,1,0,0,0,898,899,1,0,0,0,899,915,1,0,0,0,900,901, + 5,206,0,0,901,914,3,52,26,0,902,903,5,217,0,0,903,904,5,31,0,0,904, + 914,3,258,129,0,905,914,3,20,10,0,906,914,3,18,9,0,907,914,3,240, + 120,0,908,914,3,68,34,0,909,914,3,22,11,0,910,914,3,24,12,0,911, + 912,5,296,0,0,912,914,3,52,26,0,913,900,1,0,0,0,913,902,1,0,0,0, + 913,905,1,0,0,0,913,906,1,0,0,0,913,907,1,0,0,0,913,908,1,0,0,0, + 913,909,1,0,0,0,913,910,1,0,0,0,913,911,1,0,0,0,914,917,1,0,0,0, + 915,913,1,0,0,0,915,916,1,0,0,0,916,918,1,0,0,0,917,915,1,0,0,0, + 918,919,5,20,0,0,919,920,3,26,13,0,920,1336,1,0,0,0,921,923,5,96, + 0,0,922,924,5,297,0,0,923,922,1,0,0,0,923,924,1,0,0,0,924,925,1, + 0,0,0,925,927,5,125,0,0,926,928,3,190,95,0,927,926,1,0,0,0,927,928, + 1,0,0,0,928,929,1,0,0,0,929,1336,3,364,182,0,930,933,5,81,0,0,931, + 932,5,207,0,0,932,934,5,243,0,0,933,931,1,0,0,0,933,934,1,0,0,0, + 934,936,1,0,0,0,935,937,5,335,0,0,936,935,1,0,0,0,936,937,1,0,0, + 0,937,938,1,0,0,0,938,940,3,364,182,0,939,941,3,316,158,0,940,939, + 1,0,0,0,940,941,1,0,0,0,941,943,1,0,0,0,942,944,3,330,165,0,943, + 942,1,0,0,0,943,944,1,0,0,0,944,1336,1,0,0,0,945,946,5,96,0,0,946, + 947,5,297,0,0,947,949,5,335,0,0,948,950,3,190,95,0,949,948,1,0,0, + 0,949,950,1,0,0,0,950,954,1,0,0,0,951,955,3,84,42,0,952,955,3,88, + 44,0,953,955,3,364,182,0,954,951,1,0,0,0,954,952,1,0,0,0,954,953, + 1,0,0,0,955,1336,1,0,0,0,956,958,5,106,0,0,957,959,7,5,0,0,958,957, + 1,0,0,0,958,959,1,0,0,0,959,960,1,0,0,0,960,1336,3,4,2,0,961,962, + 5,272,0,0,962,965,5,293,0,0,963,964,7,2,0,0,964,966,3,78,39,0,965, + 963,1,0,0,0,965,966,1,0,0,0,966,971,1,0,0,0,967,969,5,162,0,0,968, + 967,1,0,0,0,968,969,1,0,0,0,969,970,1,0,0,0,970,972,3,386,193,0, + 971,968,1,0,0,0,971,972,1,0,0,0,972,1336,1,0,0,0,973,974,5,272,0, + 0,974,975,5,292,0,0,975,978,5,108,0,0,976,977,7,2,0,0,977,979,3, + 78,39,0,978,976,1,0,0,0,978,979,1,0,0,0,979,980,1,0,0,0,980,981, + 5,162,0,0,981,983,3,386,193,0,982,984,3,32,16,0,983,982,1,0,0,0, + 983,984,1,0,0,0,984,1336,1,0,0,0,985,986,5,272,0,0,986,987,5,296, + 0,0,987,992,3,84,42,0,988,989,5,2,0,0,989,990,3,56,28,0,990,991, + 5,3,0,0,991,993,1,0,0,0,992,988,1,0,0,0,992,993,1,0,0,0,993,1336, + 1,0,0,0,994,995,5,272,0,0,995,996,5,50,0,0,996,997,7,2,0,0,997,1000, + 3,84,42,0,998,999,7,2,0,0,999,1001,3,78,39,0,1000,998,1,0,0,0,1000, + 1001,1,0,0,0,1001,1336,1,0,0,0,1002,1003,5,272,0,0,1003,1006,5,338, + 0,0,1004,1005,7,2,0,0,1005,1007,3,78,39,0,1006,1004,1,0,0,0,1006, + 1007,1,0,0,0,1007,1012,1,0,0,0,1008,1010,5,162,0,0,1009,1008,1,0, + 0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0,1011,1013,3,386,193,0,1012, + 1009,1,0,0,0,1012,1013,1,0,0,0,1013,1336,1,0,0,0,1014,1015,5,272, + 0,0,1015,1016,5,218,0,0,1016,1018,3,84,42,0,1017,1019,3,32,16,0, + 1018,1017,1,0,0,0,1018,1019,1,0,0,0,1019,1336,1,0,0,0,1020,1022, + 5,272,0,0,1021,1023,3,146,73,0,1022,1021,1,0,0,0,1022,1023,1,0,0, + 0,1023,1024,1,0,0,0,1024,1027,5,126,0,0,1025,1026,7,2,0,0,1026,1028, + 3,78,39,0,1027,1025,1,0,0,0,1027,1028,1,0,0,0,1028,1036,1,0,0,0, + 1029,1031,5,162,0,0,1030,1029,1,0,0,0,1030,1031,1,0,0,0,1031,1034, + 1,0,0,0,1032,1035,3,244,122,0,1033,1035,3,386,193,0,1034,1032,1, + 0,0,0,1034,1033,1,0,0,0,1035,1037,1,0,0,0,1036,1030,1,0,0,0,1036, + 1037,1,0,0,0,1037,1336,1,0,0,0,1038,1039,5,272,0,0,1039,1040,5,59, + 0,0,1040,1041,5,292,0,0,1041,1044,3,84,42,0,1042,1043,5,20,0,0,1043, + 1045,5,265,0,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,1336,1,0, + 0,0,1046,1047,5,272,0,0,1047,1048,5,62,0,0,1048,1336,3,36,18,0,1049, + 1050,5,272,0,0,1050,1055,5,38,0,0,1051,1053,5,162,0,0,1052,1051, + 1,0,0,0,1052,1053,1,0,0,0,1053,1054,1,0,0,0,1054,1056,3,386,193, + 0,1055,1052,1,0,0,0,1055,1056,1,0,0,0,1056,1336,1,0,0,0,1057,1058, + 5,272,0,0,1058,1059,5,175,0,0,1059,1062,5,338,0,0,1060,1061,7,2, + 0,0,1061,1063,3,78,39,0,1062,1060,1,0,0,0,1062,1063,1,0,0,0,1063, + 1068,1,0,0,0,1064,1066,5,162,0,0,1065,1064,1,0,0,0,1065,1066,1,0, + 0,0,1066,1067,1,0,0,0,1067,1069,3,386,193,0,1068,1065,1,0,0,0,1068, + 1069,1,0,0,0,1069,1336,1,0,0,0,1070,1071,5,272,0,0,1071,1072,5,59, + 0,0,1072,1073,5,175,0,0,1073,1074,5,337,0,0,1074,1077,3,88,44,0, + 1075,1076,5,20,0,0,1076,1078,5,265,0,0,1077,1075,1,0,0,0,1077,1078, + 1,0,0,0,1078,1336,1,0,0,0,1079,1080,7,6,0,0,1080,1082,5,125,0,0, + 1081,1083,5,108,0,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084, + 1,0,0,0,1084,1336,3,40,20,0,1085,1086,7,6,0,0,1086,1088,5,72,0,0, + 1087,1089,5,108,0,0,1088,1087,1,0,0,0,1088,1089,1,0,0,0,1089,1090, + 1,0,0,0,1090,1336,3,78,39,0,1091,1093,7,6,0,0,1092,1094,5,292,0, + 0,1093,1092,1,0,0,0,1093,1094,1,0,0,0,1094,1096,1,0,0,0,1095,1097, + 7,7,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097,1098,1,0,0,0,1098, + 1100,3,84,42,0,1099,1101,3,32,16,0,1100,1099,1,0,0,0,1100,1101,1, + 0,0,0,1101,1103,1,0,0,0,1102,1104,3,42,21,0,1103,1102,1,0,0,0,1103, + 1104,1,0,0,0,1104,1336,1,0,0,0,1105,1107,7,6,0,0,1106,1108,5,231, + 0,0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0,0,0,1109,1336, + 3,26,13,0,1110,1111,5,51,0,0,1111,1112,5,202,0,0,1112,1113,3,36, + 18,0,1113,1114,3,78,39,0,1114,1115,5,153,0,0,1115,1116,3,388,194, + 0,1116,1336,1,0,0,0,1117,1118,5,51,0,0,1118,1119,5,202,0,0,1119, + 1120,5,292,0,0,1120,1121,3,84,42,0,1121,1122,5,153,0,0,1122,1123, + 3,388,194,0,1123,1336,1,0,0,0,1124,1125,5,239,0,0,1125,1126,5,292, + 0,0,1126,1336,3,84,42,0,1127,1128,5,239,0,0,1128,1129,5,125,0,0, + 1129,1336,3,364,182,0,1130,1138,5,239,0,0,1131,1139,3,386,193,0, + 1132,1134,9,0,0,0,1133,1132,1,0,0,0,1134,1137,1,0,0,0,1135,1136, + 1,0,0,0,1135,1133,1,0,0,0,1136,1139,1,0,0,0,1137,1135,1,0,0,0,1138, + 1131,1,0,0,0,1138,1135,1,0,0,0,1139,1336,1,0,0,0,1140,1141,5,239, + 0,0,1141,1142,5,175,0,0,1142,1143,5,337,0,0,1143,1336,3,88,44,0, + 1144,1146,5,33,0,0,1145,1147,5,159,0,0,1146,1145,1,0,0,0,1146,1147, + 1,0,0,0,1147,1148,1,0,0,0,1148,1149,5,292,0,0,1149,1152,3,84,42, + 0,1150,1151,5,206,0,0,1151,1153,3,52,26,0,1152,1150,1,0,0,0,1152, + 1153,1,0,0,0,1153,1158,1,0,0,0,1154,1156,5,20,0,0,1155,1154,1,0, + 0,0,1155,1156,1,0,0,0,1156,1157,1,0,0,0,1157,1159,3,26,13,0,1158, + 1155,1,0,0,0,1158,1159,1,0,0,0,1159,1336,1,0,0,0,1160,1161,5,321, + 0,0,1161,1163,5,292,0,0,1162,1164,3,190,95,0,1163,1162,1,0,0,0,1163, + 1164,1,0,0,0,1164,1165,1,0,0,0,1165,1336,3,84,42,0,1166,1167,5,43, + 0,0,1167,1336,5,33,0,0,1168,1169,5,167,0,0,1169,1171,5,70,0,0,1170, + 1172,5,168,0,0,1171,1170,1,0,0,0,1171,1172,1,0,0,0,1172,1173,1,0, + 0,0,1173,1174,5,145,0,0,1174,1176,3,386,193,0,1175,1177,5,215,0, + 0,1176,1175,1,0,0,0,1176,1177,1,0,0,0,1177,1178,1,0,0,0,1178,1179, + 5,152,0,0,1179,1180,5,292,0,0,1180,1182,3,84,42,0,1181,1183,3,32, + 16,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,1336,1,0,0,0,1184, + 1185,5,316,0,0,1185,1186,5,292,0,0,1186,1188,3,84,42,0,1187,1189, + 3,32,16,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1336,1,0,0,0, + 1190,1192,5,187,0,0,1191,1190,1,0,0,0,1191,1192,1,0,0,0,1192,1193, + 1,0,0,0,1193,1194,5,241,0,0,1194,1195,5,292,0,0,1195,1198,3,84,42, + 0,1196,1197,7,8,0,0,1197,1199,5,218,0,0,1198,1196,1,0,0,0,1198,1199, + 1,0,0,0,1199,1336,1,0,0,0,1200,1201,7,9,0,0,1201,1205,3,374,187, + 0,1202,1204,9,0,0,0,1203,1202,1,0,0,0,1204,1207,1,0,0,0,1205,1206, + 1,0,0,0,1205,1203,1,0,0,0,1206,1336,1,0,0,0,1207,1205,1,0,0,0,1208, + 1209,5,268,0,0,1209,1213,5,252,0,0,1210,1212,9,0,0,0,1211,1210,1, + 0,0,0,1212,1215,1,0,0,0,1213,1214,1,0,0,0,1213,1211,1,0,0,0,1214, + 1336,1,0,0,0,1215,1213,1,0,0,0,1216,1217,5,268,0,0,1217,1218,5,300, + 0,0,1218,1219,5,349,0,0,1219,1336,3,296,148,0,1220,1221,5,268,0, + 0,1221,1222,5,300,0,0,1222,1223,5,349,0,0,1223,1336,3,6,3,0,1224, + 1225,5,268,0,0,1225,1226,5,300,0,0,1226,1230,5,349,0,0,1227,1229, + 9,0,0,0,1228,1227,1,0,0,0,1229,1232,1,0,0,0,1230,1231,1,0,0,0,1230, + 1228,1,0,0,0,1231,1336,1,0,0,0,1232,1230,1,0,0,0,1233,1234,5,268, + 0,0,1234,1235,7,10,0,0,1235,1336,3,132,66,0,1236,1237,5,268,0,0, + 1237,1238,7,10,0,0,1238,1239,5,2,0,0,1239,1240,3,242,121,0,1240, + 1241,5,3,0,0,1241,1242,5,351,0,0,1242,1243,5,2,0,0,1243,1244,3,26, + 13,0,1244,1245,5,3,0,0,1245,1336,1,0,0,0,1246,1247,5,268,0,0,1247, + 1248,3,8,4,0,1248,1249,5,351,0,0,1249,1250,3,10,5,0,1250,1336,1, + 0,0,0,1251,1252,5,268,0,0,1252,1260,3,8,4,0,1253,1257,5,351,0,0, + 1254,1256,9,0,0,0,1255,1254,1,0,0,0,1256,1259,1,0,0,0,1257,1258, 1,0,0,0,1257,1255,1,0,0,0,1258,1261,1,0,0,0,1259,1257,1,0,0,0,1260, 1253,1,0,0,0,1260,1261,1,0,0,0,1261,1336,1,0,0,0,1262,1266,5,268, 0,0,1263,1265,9,0,0,0,1264,1263,1,0,0,0,1265,1268,1,0,0,0,1266,1267, @@ -19410,26 +19407,26 @@ export class SparkSqlParser extends antlr.Parser { 0,2598,2599,5,4,0,0,2599,2601,3,374,187,0,2600,2598,1,0,0,0,2601, 2604,1,0,0,0,2602,2600,1,0,0,0,2602,2603,1,0,0,0,2603,2606,1,0,0, 0,2604,2602,1,0,0,0,2605,2595,1,0,0,0,2605,2606,1,0,0,0,2606,193, - 1,0,0,0,2607,2608,7,22,0,0,2608,195,1,0,0,0,2609,2611,5,158,0,0, - 2610,2609,1,0,0,0,2610,2611,1,0,0,0,2611,2612,1,0,0,0,2612,2616, - 3,222,111,0,2613,2615,3,198,99,0,2614,2613,1,0,0,0,2615,2618,1,0, - 0,0,2616,2614,1,0,0,0,2616,2617,1,0,0,0,2617,2621,1,0,0,0,2618,2616, - 1,0,0,0,2619,2621,3,84,42,0,2620,2610,1,0,0,0,2620,2619,1,0,0,0, - 2621,197,1,0,0,0,2622,2626,3,200,100,0,2623,2626,3,160,80,0,2624, - 2626,3,166,83,0,2625,2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624,1, - 0,0,0,2626,199,1,0,0,0,2627,2628,3,202,101,0,2628,2630,5,155,0,0, - 2629,2631,5,158,0,0,2630,2629,1,0,0,0,2630,2631,1,0,0,0,2631,2632, - 1,0,0,0,2632,2634,3,222,111,0,2633,2635,3,204,102,0,2634,2633,1, - 0,0,0,2634,2635,1,0,0,0,2635,2645,1,0,0,0,2636,2637,5,193,0,0,2637, - 2638,3,202,101,0,2638,2640,5,155,0,0,2639,2641,5,158,0,0,2640,2639, - 1,0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642,2643,3,222,111, - 0,2643,2645,1,0,0,0,2644,2627,1,0,0,0,2644,2636,1,0,0,0,2645,201, - 1,0,0,0,2646,2648,5,144,0,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0, - 2648,2671,1,0,0,0,2649,2671,5,60,0,0,2650,2652,5,161,0,0,2651,2653, - 5,210,0,0,2652,2651,1,0,0,0,2652,2653,1,0,0,0,2653,2671,1,0,0,0, - 2654,2656,5,161,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0,2656,2657, - 1,0,0,0,2657,2671,5,263,0,0,2658,2660,5,249,0,0,2659,2661,5,210, - 0,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2671,1,0,0,0,2662,2664, + 1,0,0,0,2607,2608,7,22,0,0,2608,195,1,0,0,0,2609,2621,3,84,42,0, + 2610,2612,5,158,0,0,2611,2610,1,0,0,0,2611,2612,1,0,0,0,2612,2613, + 1,0,0,0,2613,2617,3,222,111,0,2614,2616,3,198,99,0,2615,2614,1,0, + 0,0,2616,2619,1,0,0,0,2617,2615,1,0,0,0,2617,2618,1,0,0,0,2618,2621, + 1,0,0,0,2619,2617,1,0,0,0,2620,2609,1,0,0,0,2620,2611,1,0,0,0,2621, + 197,1,0,0,0,2622,2626,3,200,100,0,2623,2626,3,160,80,0,2624,2626, + 3,166,83,0,2625,2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624,1,0,0,0, + 2626,199,1,0,0,0,2627,2628,3,202,101,0,2628,2630,5,155,0,0,2629, + 2631,5,158,0,0,2630,2629,1,0,0,0,2630,2631,1,0,0,0,2631,2632,1,0, + 0,0,2632,2634,3,222,111,0,2633,2635,3,204,102,0,2634,2633,1,0,0, + 0,2634,2635,1,0,0,0,2635,2645,1,0,0,0,2636,2637,5,193,0,0,2637,2638, + 3,202,101,0,2638,2640,5,155,0,0,2639,2641,5,158,0,0,2640,2639,1, + 0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642,2643,3,222,111,0, + 2643,2645,1,0,0,0,2644,2627,1,0,0,0,2644,2636,1,0,0,0,2645,201,1, + 0,0,0,2646,2648,5,144,0,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648, + 2671,1,0,0,0,2649,2671,5,60,0,0,2650,2652,5,161,0,0,2651,2653,5, + 210,0,0,2652,2651,1,0,0,0,2652,2653,1,0,0,0,2653,2671,1,0,0,0,2654, + 2656,5,161,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0,2656,2657,1,0, + 0,0,2657,2671,5,263,0,0,2658,2660,5,249,0,0,2659,2661,5,210,0,0, + 2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2671,1,0,0,0,2662,2664, 5,124,0,0,2663,2665,5,210,0,0,2664,2663,1,0,0,0,2664,2665,1,0,0, 0,2665,2671,1,0,0,0,2666,2668,5,161,0,0,2667,2666,1,0,0,0,2667,2668, 1,0,0,0,2668,2669,1,0,0,0,2669,2671,5,15,0,0,2670,2647,1,0,0,0,2670, @@ -19915,7 +19912,7 @@ export class SparkSqlParser extends antlr.Parser { 2328,2335,2341,2350,2360,2375,2380,2382,2387,2396,2409,2414,2418, 2425,2430,2434,2437,2440,2454,2467,2472,2476,2479,2483,2489,2492, 2499,2511,2522,2535,2546,2551,2559,2564,2578,2587,2590,2595,2602, - 2605,2610,2616,2620,2625,2630,2634,2640,2644,2647,2652,2655,2660, + 2605,2611,2617,2620,2625,2630,2634,2640,2644,2647,2652,2655,2660, 2664,2667,2670,2676,2681,2688,2691,2709,2711,2714,2725,2734,2741, 2749,2756,2760,2763,2771,2779,2785,2793,2801,2808,2815,2817,2830, 2836,2838,2848,2854,2856,2864,2868,2877,2880,2886,2890,2892,2901, @@ -25418,6 +25415,9 @@ export class RelationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } public relationPrimary(): RelationPrimaryContext | null { return this.getRuleContext(0, RelationPrimaryContext); } @@ -25433,9 +25433,6 @@ export class RelationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RelationExtensionContext); } - public tableName(): TableNameContext | null { - return this.getRuleContext(0, TableNameContext); - } public override get ruleIndex(): number { return SparkSqlParser.RULE_relation; } @@ -32109,9 +32106,6 @@ export class NonReservedContext extends antlr.ParserRuleContext { public KW_SECONDS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SECONDS, 0); } - public KW_SELECT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SELECT, 0); - } public KW_SEPARATED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SEPARATED, 0); } diff --git a/src/parser/common/basicParser.ts b/src/parser/common/basicParser.ts index ffc5c3c..8547e60 100644 --- a/src/parser/common/basicParser.ts +++ b/src/parser/common/basicParser.ts @@ -8,6 +8,7 @@ import { ParserRuleContext, ParseTreeWalker, ParseTreeListener, + PredictionMode, } from 'antlr4ng'; import { CandidatesCollection, CodeCompletionCore } from 'antlr4-c3'; import { findCaretTokenIndex } from './utils/findCaretTokenIndex'; @@ -110,7 +111,7 @@ export default abstract class BasicParser< const lexer = this.createLexer(input, errorListener); const tokenStream = new CommonTokenStream(lexer); const parser = this.createParserFromTokenStream(tokenStream); - + parser.interpreter.predictionMode = PredictionMode.SLL; if (errorListener) { parser.removeErrorListeners(); parser.addErrorListener(new ParseErrorListener(errorListener)); @@ -155,6 +156,7 @@ export default abstract class BasicParser< this._tokenStream.fill(); this._parser = this.createParserFromTokenStream(this._tokenStream); + this._parser.interpreter.predictionMode = PredictionMode.SLL; this._parser.buildParseTrees = true; this._parser.errorHandler = new ErrorStrategy(); @@ -340,6 +342,7 @@ export default abstract class BasicParser< tokenStream.fill(); const parser = this.createParserFromTokenStream(tokenStream); + parser.interpreter.predictionMode = PredictionMode.SLL; parser.removeErrorListeners(); parser.buildParseTrees = true; parser.errorHandler = new ErrorStrategy(); diff --git a/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts b/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts index fc96d7b..53261ad 100644 --- a/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/pgsql/suggestion/syntaxSuggestion.test.ts @@ -405,7 +405,11 @@ describe('Postgre SQL Syntax Suggestion', () => { (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['column_name']); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([ + 'table_name', + '.', + 'column_name', + ]); }); test('Alter Table With Column', () => { @@ -764,7 +768,11 @@ describe('Postgre SQL Syntax Suggestion', () => { (syn) => syn.syntaxContextType === SyntaxContextType.COLUMN ); expect(suggestion).not.toBeUndefined(); - expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['columnname']); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([ + 'tablename', + '.', + 'columnname', + ]); }); test('Select With Column', () => { diff --git a/test/parser/spark/listener.test.ts b/test/parser/spark/listener.test.ts index 932bd73..eacf73a 100644 --- a/test/parser/spark/listener.test.ts +++ b/test/parser/spark/listener.test.ts @@ -9,10 +9,10 @@ describe('Spark SQL Listener Tests', () => { const parseTree = parser.parse(sql); - test('Listener exitRelationPrimary', () => { + test('Listener exitTableName', () => { let result = ''; class MyListener implements SparkSqlParserListener { - exitRelationPrimary = (ctx): void => { + exitTableName = (ctx): void => { result = ctx.getText().toLowerCase(); }; visitTerminal() {} diff --git a/test/parser/spark/visitor.test.ts b/test/parser/spark/visitor.test.ts index 96ffa32..7f28d85 100644 --- a/test/parser/spark/visitor.test.ts +++ b/test/parser/spark/visitor.test.ts @@ -11,7 +11,7 @@ describe('Spark SQL Visitor Tests', () => { console.error('Parse error:', error); }); - test('Visitor visitRelationPrimary', () => { + test('Visitor visitTableName', () => { class MyVisitor extends AbstractParseTreeVisitor implements SparkSqlParserVisitor @@ -20,7 +20,7 @@ describe('Spark SQL Visitor Tests', () => { protected defaultResult() { return this.result; } - visitRelationPrimary = (ctx): void => { + visitTableName = (ctx): void => { this.result = ctx.getText().toLowerCase(); }; }