diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index ec50fa3c..80e949fe 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -887,7 +887,9 @@ tableConstraint ; columnNameTypeConstraint - : colName=columnNameCreate columnType columnConstraint? (KW_COMMENT comment=StringLiteral)? + : colName=columnNameCreate colType=columnType columnConstraint? ( + KW_COMMENT comment=StringLiteral + )? ; columnConstraint @@ -1363,10 +1365,12 @@ joinToken ; lateralView - : KW_LATERAL KW_VIEW KW_OUTER function_ tableAlias (KW_AS id_ (COMMA id_)*)? + : KW_LATERAL KW_VIEW KW_OUTER function_ alias=tableAlias (KW_AS id_ (COMMA id_)*)? | COMMA? KW_LATERAL ( - KW_VIEW function_ tableAlias (KW_AS id_ (COMMA id_)*)? - | KW_TABLE LPAREN valuesClause RPAREN KW_AS? tableAlias (LPAREN id_ (COMMA id_)* RPAREN)? + KW_VIEW function_ alias=tableAlias (KW_AS id_ (COMMA id_)*)? + | KW_TABLE LPAREN valuesClause RPAREN KW_AS? alias=tableAlias ( + LPAREN id_ (COMMA id_)* RPAREN + )? ) ; diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index 198db2b3..75cb5889 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -96,20 +96,20 @@ createKuduTableAsSelect : KW_CREATE KW_EXTERNAL? KW_TABLE ifNotExists? tableNameCreate ( LPAREN kuduTableElement (COMMA kuduTableElement)* (COMMA KW_PRIMARY KW_KEY columnAliases)? RPAREN )? (KW_PRIMARY KW_KEY columnAliases?)? (KW_PARTITION KW_BY kuduPartitionClause)? ( - KW_COMMENT stringLiteral + commentClause )? KW_STORED KW_AS KW_KUDU (KW_TBLPROPERTIES tblProp=properties)? (KW_AS queryStatement)? ; createView - : KW_CREATE KW_VIEW ifNotExists? viewNameCreate viewColumns? (KW_COMMENT stringLiteral)? ( + : KW_CREATE KW_VIEW ifNotExists? viewNameCreate viewColumns? commentClause? ( KW_TBLPROPERTIES tblProp=properties )? KW_AS queryStatement ; createSchema - : KW_CREATE (KW_SCHEMA | KW_DATABASE) ifNotExists? databaseNameCreate ( - KW_COMMENT comment=stringLiteral - )? (KW_LOCATION location=stringLiteral)? + : KW_CREATE (KW_SCHEMA | KW_DATABASE) ifNotExists? databaseNameCreate (commentClause)? ( + KW_LOCATION location=stringLiteral + )? ; createRole @@ -119,14 +119,14 @@ createRole createAggregateFunction : KW_CREATE KW_AGGREGATE? KW_FUNCTION ifNotExists? functionNameCreate ( LPAREN (type (COMMA type)*)? RPAREN - )? KW_RETURNS type (KW_INTERMEDIATE type)? KW_LOCATION STRING (KW_INIT_FN EQ STRING)? KW_UPDATE_FN EQ STRING KW_MERGE_FN EQ STRING ( + )? KW_RETURNS returnType=type (KW_INTERMEDIATE type)? KW_LOCATION STRING (KW_INIT_FN EQ STRING)? KW_UPDATE_FN EQ STRING KW_MERGE_FN EQ STRING ( KW_PREPARE_FN EQ STRING )? (KW_CLOSEFN EQ STRING)? (KW_SERIALIZE_FN EQ STRING)? (KW_FINALIZE_FN EQ STRING)? ; createFunction : KW_CREATE KW_FUNCTION ifNotExists? functionNameCreate (LPAREN (type (COMMA type)*)? RPAREN)? ( - KW_RETURNS type + KW_RETURNS returnType=type )? KW_LOCATION STRING KW_SYMBOL EQ symbol=stringLiteral ; @@ -569,11 +569,9 @@ tableOrViewPath ; createCommonItem - : (KW_SORT KW_BY columnAliases)? (KW_COMMENT comment=stringLiteral)? ( - KW_ROW KW_FORMAT rowFormat - )? (KW_WITH KW_SERDEPROPERTIES serdProp=properties)? (KW_STORED KW_AS fileFormat)? ( - KW_LOCATION location=stringLiteral - )? ( + : (KW_SORT KW_BY columnAliases)? commentClause? (KW_ROW KW_FORMAT rowFormat)? ( + KW_WITH KW_SERDEPROPERTIES serdProp=properties + )? (KW_STORED KW_AS fileFormat)? (KW_LOCATION location=stringLiteral)? ( KW_CACHED KW_IN cacheName=qualifiedName (KW_WITH KW_REPLICATION EQ INTEGER_VALUE)? | KW_UNCACHED )? (KW_TBLPROPERTIES tblProp=properties)? @@ -588,9 +586,11 @@ assignmentItem ; viewColumns - : LPAREN columnNamePathCreate (KW_COMMENT stringLiteral)? ( - COMMA columnNamePathCreate (KW_COMMENT stringLiteral)? - )* RPAREN + : LPAREN viewColumnItem? (COMMA viewColumnItem?)* RPAREN + ; + +viewColumnItem + : columnNamePathCreate commentClause? ; queryStatement @@ -621,7 +621,7 @@ columnSpec ; columnDefinition - : columnNamePathCreate type (KW_COMMENT stringLiteral)? + : columnNamePathCreate colType=type commentClause? ; kuduTableElement @@ -629,11 +629,15 @@ kuduTableElement ; kuduColumnDefinition - : columnNamePathCreate type (kuduAttributes kuduAttributes*?)? (KW_COMMENT stringLiteral)? ( + : columnNamePathCreate colType=type (kuduAttributes kuduAttributes*?)? commentClause? ( KW_PRIMARY KW_KEY )? ; +commentClause + : KW_COMMENT comment=stringLiteral + ; + columnSpecWithKudu : columnSpec (kuduAttributes kuduAttributes*?)? ; @@ -838,7 +842,7 @@ sampleType ; aliasedRelation - : relationPrimary (KW_AS? identifier columnAliases?)? + : relationPrimary (KW_AS? alias=identifier columnAliases?)? ; columnAliases diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index 328a5589..bc299c29 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -442,7 +442,7 @@ functionParameter ; routineOption - : KW_COMMENT STRING_LITERAL # routineComment + : KW_COMMENT comment=STRING_LITERAL # routineComment | KW_LANGUAGE KW_SQL # routineLanguage | KW_NOT? KW_DETERMINISTIC # routineBehavior | (KW_CONTAINS KW_SQL | KW_NO KW_SQL | KW_READS KW_SQL KW_DATA | KW_MODIFIES KW_SQL KW_DATA) # routineData @@ -483,7 +483,7 @@ constraintSymbol ; columnDefinition - : dataType columnConstraint* + : colType=dataType columnConstraint* ; columnConstraint @@ -494,7 +494,7 @@ columnConstraint | (KW_AUTO_INCREMENT | KW_ON KW_UPDATE currentTimestamp) # autoIncrementColumnConstraint | KW_PRIMARY? KW_KEY # primaryKeyColumnConstraint | KW_UNIQUE KW_KEY? # uniqueKeyColumnConstraint - | KW_COMMENT STRING_LITERAL # commentColumnConstraint + | KW_COMMENT comment=STRING_LITERAL # commentColumnConstraint | KW_COLUMN_FORMAT colformat=(KW_FIXED | KW_DYNAMIC | KW_DEFAULT) # formatColumnConstraint | KW_STORAGE storageval=(KW_DISK | KW_MEMORY | KW_DEFAULT) # storageColumnConstraint | referenceDefinition # referenceColumnConstraint @@ -536,7 +536,7 @@ tableOption | KW_DEFAULT? charSet '='? (charsetName | KW_DEFAULT) # tableOptionCharset | (KW_CHECKSUM | KW_PAGE_CHECKSUM) '='? boolValue=('0' | '1') # tableOptionChecksum | KW_DEFAULT? KW_COLLATE '='? collationName # tableOptionCollate - | KW_COMMENT '='? STRING_LITERAL # tableOptionComment + | KW_COMMENT '='? comment=STRING_LITERAL # tableOptionComment | KW_COMPRESSION '='? (STRING_LITERAL | ID) # tableOptionCompression | KW_CONNECTION '='? STRING_LITERAL # tableOptionConnection | (KW_DATA | KW_INDEX) KW_DIRECTORY '='? STRING_LITERAL # tableOptionDataDirectory diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index 59a9e64f..750159f6 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -620,7 +620,7 @@ typedtableelement ; column_def - : column_name_create typename create_generic_options? ( + : column_name_create colType=typename create_generic_options? ( KW_STORAGE (KW_PLAIN | KW_EXTERNAL | KW_EXTENDED | KW_MAIN | KW_DEFAULT | colid) )? (KW_COMPRESSION colid)? (opt_collate_clause)? (KW_WITH KW_OPTIONS)? colconstraint* ; @@ -2163,12 +2163,12 @@ table_ref ; alias_clause - : KW_AS? colid (OPEN_PAREN name_list CLOSE_PAREN)? + : KW_AS? alias=colid (OPEN_PAREN name_list CLOSE_PAREN)? ; func_alias_clause : alias_clause - | (KW_AS colid? | colid) OPEN_PAREN tablefuncelementlist CLOSE_PAREN + | (KW_AS alias=colid? | alias=colid) OPEN_PAREN tablefuncelementlist CLOSE_PAREN ; join_type @@ -2600,7 +2600,7 @@ func_arg_list func_arg_expr : expression - | type_function_name (COLON_EQUALS | EQUALS_GREATER) expression + | type_function_name ((COLON_EQUALS | EQUALS_GREATER) expression)? ; array_expr diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index f87e0f23..b57f65b6 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -85,7 +85,7 @@ statement | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_SET KW_TBLPROPERTIES propertyList # setTableProperties | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_UNSET KW_TBLPROPERTIES (ifExists)? propertyList # unsetTableProperties | KW_ALTER KW_TABLE table=tableName (KW_ALTER | KW_CHANGE) KW_COLUMN? column=columnName alterColumnAction? # alterTableAlterColumn - | KW_ALTER KW_TABLE table=tableName partitionSpec? KW_CHANGE KW_COLUMN? colName=columnName colType colPosition? # hiveChangeColumn + | KW_ALTER KW_TABLE table=tableName partitionSpec? KW_CHANGE KW_COLUMN? colName=columnName columnType colPosition? # hiveChangeColumn | KW_ALTER KW_TABLE table=tableName partitionSpec? KW_REPLACE KW_COLUMNS LEFT_PAREN qualifiedColTypeWithPositionSeqForReplace RIGHT_PAREN # hiveReplaceColumns | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET KW_SERDE stringLit ( @@ -153,8 +153,8 @@ statement | (KW_DESC | KW_DESCRIBE) KW_DATABASE KW_EXTENDED? namespaceName # describeNamespace | (KW_DESC | KW_DESCRIBE) KW_TABLE? option=(KW_EXTENDED | KW_FORMATTED)? tableName partitionSpec? describeColName? # describeRelation | (KW_DESC | KW_DESCRIBE) KW_QUERY? query # describeQuery - | KW_COMMENT KW_ON namespace namespaceName KW_IS comment # commentNamespace - | KW_COMMENT KW_ON KW_TABLE tableName KW_IS comment # commentTable + | KW_COMMENT KW_ON namespace namespaceName KW_IS commentStr # commentNamespace + | KW_COMMENT KW_ON KW_TABLE tableName KW_IS commentStr # commentTable | KW_REFRESH KW_TABLE tableName # refreshTable | KW_REFRESH KW_FUNCTION functionName # refreshFunction | KW_REFRESH (stringLit | .*?) # refreshResource @@ -269,7 +269,7 @@ locationSpec ; commentSpec - : KW_COMMENT stringLit + : KW_COMMENT comment=stringLit ; query @@ -851,7 +851,7 @@ functionTable ; tableAlias - : (KW_AS? strictIdentifier identifierList?)? + : (KW_AS? alias=strictIdentifier identifierList?)? ; rowFormat @@ -905,7 +905,7 @@ partitionFieldList partitionField : transform - | colType + | columnType ; transform @@ -1227,10 +1227,10 @@ variableDefaultExpression ; colTypeList - : colType (COMMA colType)* + : columnType (COMMA columnType)* ; -colType +columnType : colName=errorCapturingIdentifier dataType (KW_NOT KW_NULL)? commentSpec? ; @@ -1239,7 +1239,7 @@ createOrReplaceTableColTypeList ; createOrReplaceTableColType - : colName=columnNameCreate dataType colDefinitionOption* + : colName=columnNameCreate colType=dataType colDefinitionOption* ; colDefinitionOption @@ -1388,7 +1388,7 @@ stringLit | DOUBLEQUOTED_STRING ; -comment +commentStr : stringLit | KW_NULL ; diff --git a/src/grammar/trino/TrinoSql.g4 b/src/grammar/trino/TrinoSql.g4 index ed74b529..bebc0464 100644 --- a/src/grammar/trino/TrinoSql.g4 +++ b/src/grammar/trino/TrinoSql.g4 @@ -84,11 +84,11 @@ statement | KW_ALTER KW_SCHEMA schemaRef KW_RENAME KW_TO schemaNameCreate # renameSchema | KW_ALTER KW_SCHEMA schemaRef KW_SET KW_AUTHORIZATION principal # setSchemaAuthorization | KW_CREATE (KW_OR KW_REPLACE)? KW_TABLE (KW_IF KW_NOT KW_EXISTS)? tableNameCreate columnListCreate? ( - KW_COMMENT string + KW_COMMENT comment=string )? (KW_WITH properties)? KW_AS (rootQuery | '(' rootQuery ')') (KW_WITH (KW_NO)? KW_DATA)? # createTableAsSelect | KW_CREATE (KW_OR KW_REPLACE)? KW_TABLE (KW_IF KW_NOT KW_EXISTS)? tableNameCreate '(' tableElement ( ',' tableElement - )* ')' (KW_COMMENT string)? (KW_WITH properties)? # createTable + )* ')' (KW_COMMENT comment=string)? (KW_WITH properties)? # createTable | KW_DROP KW_TABLE (KW_IF KW_EXISTS)? tableRef # dropTable | KW_INSERT KW_INTO tableRef columnList? rootQuery # insertInto | KW_DELETE KW_FROM tableRef (KW_WHERE booleanExpression)? # delete @@ -110,8 +110,8 @@ statement | KW_ANALYZE tableRef (KW_WITH properties)? # analyze | KW_CREATE (KW_OR KW_REPLACE)? KW_MATERIALIZED KW_VIEW (KW_IF KW_NOT KW_EXISTS)? viewNameCreate ( KW_GRACE KW_PERIOD interval - )? (KW_COMMENT string)? (KW_WITH properties)? KW_AS rootQuery # createMaterializedView - | KW_CREATE (KW_OR KW_REPLACE)? KW_VIEW viewNameCreate (KW_COMMENT string)? ( + )? (KW_COMMENT comment=string)? (KW_WITH properties)? KW_AS rootQuery # createMaterializedView + | KW_CREATE (KW_OR KW_REPLACE)? KW_VIEW viewNameCreate (KW_COMMENT comment=string)? ( KW_SECURITY (KW_DEFINER | KW_INVOKER) )? (KW_WITH properties)? KW_AS rootQuery # createView | KW_REFRESH KW_MATERIALIZED KW_VIEW viewRef # refreshMaterializedView @@ -214,7 +214,7 @@ tableElement ; columnDefinition - : columnNameCreate type (KW_NOT KW_NULL)? (KW_COMMENT string)? (KW_WITH properties)? + : columnNameCreate colType=type (KW_NOT KW_NULL)? (KW_COMMENT comment=string)? (KW_WITH properties)? ; likeClause @@ -330,7 +330,7 @@ setQuantifier ; selectItem - : (columnRef | expression) (KW_AS? identifier)? # selectSingle + : (columnRef | expression) (KW_AS? alias=identifier)? # selectSingle | primaryExpression '.' ASTERISK (KW_AS columnAliases)? # selectAll | ASTERISK # selectAll ; @@ -425,7 +425,7 @@ variableDefinition ; aliasedRelation - : relationPrimary (KW_AS? identifier columnAliases?)? + : relationPrimary (KW_AS? alias=identifier columnAliases?)? ; columnListCreate diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index b7caa520..0dbcfbe3 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -10836,7 +10836,7 @@ export class HiveSqlParser extends SQLParserBase { this.state = 2290; localContext._colName = this.columnNameCreate(); this.state = 2291; - this.columnType(); + localContext._colType = this.columnType(); this.state = 2293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -16816,7 +16816,7 @@ export class HiveSqlParser extends SQLParserBase { this.state = 3480; this.function_(); this.state = 3481; - this.tableAlias(); + localContext._alias = this.tableAlias(); this.state = 3491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -16874,7 +16874,7 @@ export class HiveSqlParser extends SQLParserBase { this.state = 3498; this.function_(); this.state = 3499; - this.tableAlias(); + localContext._alias = this.tableAlias(); this.state = 3509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -16928,7 +16928,7 @@ export class HiveSqlParser extends SQLParserBase { } this.state = 3518; - this.tableAlias(); + localContext._alias = this.tableAlias(); this.state = 3530; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { @@ -34747,16 +34747,17 @@ export class TableConstraintContext extends antlr.ParserRuleContext { export class ColumnNameTypeConstraintContext extends antlr.ParserRuleContext { public _colName?: ColumnNameCreateContext; + public _colType?: ColumnTypeContext; public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnType(): ColumnTypeContext { - return this.getRuleContext(0, ColumnTypeContext)!; - } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; } + public columnType(): ColumnTypeContext { + return this.getRuleContext(0, ColumnTypeContext)!; + } public columnConstraint(): ColumnConstraintContext | null { return this.getRuleContext(0, ColumnConstraintContext); } @@ -38744,6 +38745,7 @@ export class JoinTokenContext extends antlr.ParserRuleContext { export class LateralViewContext extends antlr.ParserRuleContext { + public _alias?: TableAliasContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index fe75d1a6..6c98fc59 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -685,6 +685,7 @@ createCommonItem assignmentList assignmentItem viewColumns +viewColumnItem queryStatement with constraintSpecification @@ -693,6 +694,7 @@ columnSpec columnDefinition kuduTableElement kuduColumnDefinition +commentClause columnSpecWithKudu createColumnSpecWithKudu kuduAttributes @@ -769,4 +771,4 @@ nonReserved atn: -[4, 1, 289, 2771, 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, 1, 0, 5, 0, 368, 8, 0, 10, 0, 12, 0, 371, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 377, 8, 1, 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, 401, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 414, 8, 4, 1, 5, 1, 5, 3, 5, 418, 8, 5, 1, 5, 1, 5, 3, 5, 422, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 429, 8, 5, 10, 5, 12, 5, 432, 9, 5, 1, 5, 1, 5, 3, 5, 436, 8, 5, 1, 5, 1, 5, 3, 5, 440, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 446, 8, 5, 3, 5, 448, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 453, 8, 5, 1, 6, 1, 6, 3, 6, 457, 8, 6, 1, 6, 1, 6, 3, 6, 461, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 468, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 473, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 479, 8, 7, 1, 7, 1, 7, 3, 7, 483, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 490, 8, 7, 10, 7, 12, 7, 493, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 499, 8, 7, 1, 7, 1, 7, 3, 7, 503, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 508, 8, 7, 3, 7, 510, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 3, 7, 519, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 526, 8, 7, 1, 7, 1, 7, 3, 7, 530, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 535, 8, 8, 1, 8, 1, 8, 3, 8, 539, 8, 8, 1, 8, 1, 8, 3, 8, 543, 8, 8, 1, 8, 1, 8, 3, 8, 547, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 555, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 560, 8, 9, 1, 9, 1, 9, 3, 9, 564, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 572, 8, 11, 1, 11, 1, 11, 3, 11, 576, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 583, 8, 11, 10, 11, 12, 11, 586, 9, 11, 3, 11, 588, 8, 11, 1, 11, 3, 11, 591, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 597, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 604, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 615, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 620, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 625, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 630, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 635, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 642, 8, 12, 10, 12, 12, 12, 645, 9, 12, 3, 12, 647, 8, 12, 1, 12, 3, 12, 650, 8, 12, 1, 12, 1, 12, 3, 12, 654, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 680, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 706, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 715, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 725, 8, 16, 1, 16, 3, 16, 728, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 742, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 760, 8, 20, 3, 20, 762, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 769, 8, 20, 10, 20, 12, 20, 772, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 782, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 791, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 798, 8, 22, 1, 22, 1, 22, 3, 22, 802, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 809, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 815, 8, 23, 1, 23, 3, 23, 818, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 823, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 830, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 844, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 857, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 862, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 867, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 873, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 909, 8, 32, 1, 32, 3, 32, 912, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 918, 8, 33, 1, 33, 3, 33, 921, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 927, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 933, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 945, 8, 35, 3, 35, 947, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 958, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 966, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 971, 8, 38, 1, 38, 1, 38, 3, 38, 975, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 980, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 987, 8, 40, 1, 40, 1, 40, 3, 40, 991, 8, 40, 1, 41, 1, 41, 3, 41, 995, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1001, 8, 41, 1, 42, 1, 42, 3, 42, 1005, 8, 42, 1, 42, 1, 42, 3, 42, 1009, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1016, 8, 42, 10, 42, 12, 42, 1019, 9, 42, 3, 42, 1021, 8, 42, 1, 42, 3, 42, 1024, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1032, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1046, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1053, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1066, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1072, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1077, 8, 49, 1, 49, 3, 49, 1080, 8, 49, 1, 50, 3, 50, 1083, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1088, 8, 50, 1, 50, 1, 50, 3, 50, 1092, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1099, 8, 50, 10, 50, 12, 50, 1102, 9, 50, 1, 50, 1, 50, 3, 50, 1106, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1112, 8, 51, 1, 52, 1, 52, 3, 52, 1116, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1121, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1126, 8, 53, 1, 53, 3, 53, 1129, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1135, 8, 53, 10, 53, 12, 53, 1138, 9, 53, 3, 53, 1140, 8, 53, 1, 53, 1, 53, 3, 53, 1144, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1154, 8, 54, 10, 54, 12, 54, 1157, 9, 54, 3, 54, 1159, 8, 54, 1, 54, 1, 54, 3, 54, 1163, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1168, 8, 55, 1, 55, 1, 55, 3, 55, 1172, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1188, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1193, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1198, 8, 57, 10, 57, 12, 57, 1201, 9, 57, 3, 57, 1203, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1209, 8, 58, 1, 58, 3, 58, 1212, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1217, 8, 58, 10, 58, 12, 58, 1220, 9, 58, 3, 58, 1222, 8, 58, 1, 59, 1, 59, 3, 59, 1226, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1231, 8, 59, 1, 59, 3, 59, 1234, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1239, 8, 59, 10, 59, 12, 59, 1242, 9, 59, 3, 59, 1244, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1268, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1282, 8, 65, 1, 65, 1, 65, 3, 65, 1286, 8, 65, 1, 66, 1, 66, 3, 66, 1290, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1310, 8, 68, 3, 68, 1312, 8, 68, 3, 68, 1314, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1323, 8, 69, 3, 69, 1325, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1334, 8, 70, 3, 70, 1336, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1345, 8, 71, 3, 71, 1347, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1352, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1361, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1370, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1379, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1390, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1396, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1401, 8, 78, 1, 78, 3, 78, 1404, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1417, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1427, 8, 80, 1, 80, 1, 80, 3, 80, 1431, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1436, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1445, 8, 82, 10, 82, 12, 82, 1448, 9, 82, 1, 82, 1, 82, 3, 82, 1452, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1483, 8, 93, 10, 93, 12, 93, 1486, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1491, 8, 94, 10, 94, 12, 94, 1494, 9, 94, 1, 95, 1, 95, 3, 95, 1498, 8, 95, 1, 96, 1, 96, 3, 96, 1502, 8, 96, 1, 97, 1, 97, 3, 97, 1506, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1511, 8, 98, 1, 98, 1, 98, 3, 98, 1515, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1520, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1525, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1530, 8, 98, 1, 98, 1, 98, 3, 98, 1534, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1543, 8, 98, 1, 98, 3, 98, 1546, 8, 98, 1, 98, 1, 98, 3, 98, 1550, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1555, 8, 99, 10, 99, 12, 99, 1558, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1568, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1574, 8, 101, 5, 101, 1576, 8, 101, 10, 101, 12, 101, 1579, 9, 101, 1, 101, 1, 101, 1, 102, 3, 102, 1584, 8, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1592, 8, 103, 10, 103, 12, 103, 1595, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1601, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1606, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1611, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1616, 8, 104, 1, 104, 1, 104, 5, 104, 1620, 8, 104, 10, 104, 12, 104, 1623, 9, 104, 3, 104, 1625, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1634, 8, 105, 1, 105, 3, 105, 1637, 8, 105, 1, 105, 3, 105, 1640, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1646, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1652, 8, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 1660, 8, 109, 10, 109, 12, 109, 1663, 9, 109, 3, 109, 1665, 8, 109, 1, 109, 1, 109, 3, 109, 1669, 8, 109, 1, 109, 1, 109, 3, 109, 1673, 8, 109, 1, 110, 1, 110, 1, 110, 5, 110, 1678, 8, 110, 10, 110, 12, 110, 1681, 9, 110, 3, 110, 1683, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1689, 8, 111, 1, 111, 1, 111, 5, 111, 1693, 8, 111, 10, 111, 12, 111, 1696, 9, 111, 3, 111, 1698, 8, 111, 1, 112, 3, 112, 1701, 8, 112, 1, 112, 1, 112, 3, 112, 1705, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1715, 8, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 1724, 8, 116, 10, 116, 12, 116, 1727, 9, 116, 1, 116, 1, 116, 3, 116, 1731, 8, 116, 1, 116, 3, 116, 1734, 8, 116, 1, 117, 1, 117, 3, 117, 1738, 8, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 1745, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 1753, 8, 118, 10, 118, 12, 118, 1756, 9, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1767, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1773, 8, 119, 3, 119, 1775, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1784, 8, 120, 1, 120, 3, 120, 1787, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1794, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1804, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1810, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1816, 8, 124, 10, 124, 12, 124, 1819, 9, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1827, 8, 125, 10, 125, 12, 125, 1830, 9, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 5, 126, 1837, 8, 126, 10, 126, 12, 126, 1840, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1850, 8, 127, 3, 127, 1852, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1858, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 1863, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 1871, 8, 129, 10, 129, 12, 129, 1874, 9, 129, 3, 129, 1876, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1882, 8, 129, 3, 129, 1884, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1892, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1898, 8, 130, 1, 130, 5, 130, 1901, 8, 130, 10, 130, 12, 130, 1904, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1913, 8, 131, 10, 131, 12, 131, 1916, 9, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1922, 8, 131, 1, 132, 1, 132, 3, 132, 1926, 8, 132, 1, 132, 1, 132, 3, 132, 1930, 8, 132, 1, 133, 1, 133, 3, 133, 1934, 8, 133, 1, 133, 3, 133, 1937, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1942, 8, 133, 10, 133, 12, 133, 1945, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1951, 8, 133, 10, 133, 12, 133, 1954, 9, 133, 3, 133, 1956, 8, 133, 1, 133, 1, 133, 3, 133, 1960, 8, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1965, 8, 133, 1, 133, 1, 133, 3, 133, 1969, 8, 133, 1, 134, 3, 134, 1972, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1977, 8, 134, 10, 134, 12, 134, 1980, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1988, 8, 136, 10, 136, 12, 136, 1991, 9, 136, 3, 136, 1993, 8, 136, 1, 136, 1, 136, 3, 136, 1997, 8, 136, 1, 137, 1, 137, 3, 137, 2001, 8, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2010, 8, 139, 1, 139, 3, 139, 2013, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2020, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2034, 8, 140, 5, 140, 2036, 8, 140, 10, 140, 12, 140, 2039, 9, 140, 1, 141, 3, 141, 2042, 8, 141, 1, 141, 1, 141, 3, 141, 2046, 8, 141, 1, 141, 1, 141, 3, 141, 2050, 8, 141, 1, 141, 1, 141, 3, 141, 2054, 8, 141, 1, 141, 1, 141, 3, 141, 2058, 8, 141, 1, 141, 1, 141, 3, 141, 2062, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2072, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2081, 8, 142, 10, 142, 12, 142, 2084, 9, 142, 1, 142, 1, 142, 3, 142, 2088, 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, 2101, 8, 143, 3, 143, 2103, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2109, 8, 145, 1, 145, 1, 145, 3, 145, 2113, 8, 145, 3, 145, 2115, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2121, 8, 146, 10, 146, 12, 146, 2124, 9, 146, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2130, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2135, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 2146, 8, 149, 10, 149, 12, 149, 2149, 9, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2154, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2162, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2169, 8, 153, 1, 153, 1, 153, 3, 153, 2173, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 5, 153, 2181, 8, 153, 10, 153, 12, 153, 2184, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2194, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2202, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2209, 8, 154, 10, 154, 12, 154, 2212, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2217, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2222, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2228, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2234, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2239, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2244, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2250, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2261, 8, 155, 10, 155, 12, 155, 2264, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2290, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2296, 8, 156, 5, 156, 2298, 8, 156, 10, 156, 12, 156, 2301, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2310, 8, 156, 10, 156, 12, 156, 2313, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2322, 8, 156, 1, 156, 3, 156, 2325, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2330, 8, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2335, 8, 156, 10, 156, 12, 156, 2338, 9, 156, 3, 156, 2340, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2347, 8, 156, 10, 156, 12, 156, 2350, 9, 156, 3, 156, 2352, 8, 156, 1, 156, 1, 156, 3, 156, 2356, 8, 156, 1, 156, 3, 156, 2359, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2369, 8, 156, 10, 156, 12, 156, 2372, 9, 156, 3, 156, 2374, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2391, 8, 156, 11, 156, 12, 156, 2392, 1, 156, 1, 156, 3, 156, 2397, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2403, 8, 156, 11, 156, 12, 156, 2404, 1, 156, 1, 156, 3, 156, 2409, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2432, 8, 156, 10, 156, 12, 156, 2435, 9, 156, 3, 156, 2437, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2446, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2452, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2458, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2464, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2475, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2484, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2504, 8, 156, 10, 156, 12, 156, 2507, 9, 156, 3, 156, 2509, 8, 156, 1, 156, 3, 156, 2512, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2522, 8, 156, 10, 156, 12, 156, 2525, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2531, 8, 157, 3, 157, 2533, 8, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2555, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2582, 8, 164, 10, 164, 12, 164, 2585, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2591, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2597, 8, 164, 10, 164, 12, 164, 2600, 9, 164, 1, 164, 1, 164, 3, 164, 2604, 8, 164, 3, 164, 2606, 8, 164, 1, 164, 1, 164, 5, 164, 2610, 8, 164, 10, 164, 12, 164, 2613, 9, 164, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 2619, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2625, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2645, 8, 170, 10, 170, 12, 170, 2648, 9, 170, 3, 170, 2650, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2657, 8, 170, 10, 170, 12, 170, 2660, 9, 170, 3, 170, 2662, 8, 170, 1, 170, 3, 170, 2665, 8, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2685, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2696, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2703, 8, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2708, 8, 174, 10, 174, 12, 174, 2711, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2724, 8, 175, 3, 175, 2726, 8, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 5, 177, 2733, 8, 177, 10, 177, 12, 177, 2736, 9, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2744, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2751, 8, 179, 1, 180, 3, 180, 2754, 8, 180, 1, 180, 1, 180, 3, 180, 2758, 8, 180, 1, 180, 1, 180, 3, 180, 2762, 8, 180, 1, 180, 3, 180, 2765, 8, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 10, 770, 1446, 1621, 1661, 1679, 1694, 1725, 1754, 1828, 2299, 6, 260, 280, 306, 310, 312, 328, 183, 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, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3093, 0, 369, 1, 0, 0, 0, 2, 374, 1, 0, 0, 0, 4, 400, 1, 0, 0, 0, 6, 402, 1, 0, 0, 0, 8, 413, 1, 0, 0, 0, 10, 415, 1, 0, 0, 0, 12, 454, 1, 0, 0, 0, 14, 476, 1, 0, 0, 0, 16, 531, 1, 0, 0, 0, 18, 551, 1, 0, 0, 0, 20, 565, 1, 0, 0, 0, 22, 569, 1, 0, 0, 0, 24, 631, 1, 0, 0, 0, 26, 679, 1, 0, 0, 0, 28, 681, 1, 0, 0, 0, 30, 689, 1, 0, 0, 0, 32, 709, 1, 0, 0, 0, 34, 729, 1, 0, 0, 0, 36, 736, 1, 0, 0, 0, 38, 745, 1, 0, 0, 0, 40, 753, 1, 0, 0, 0, 42, 775, 1, 0, 0, 0, 44, 785, 1, 0, 0, 0, 46, 803, 1, 0, 0, 0, 48, 824, 1, 0, 0, 0, 50, 845, 1, 0, 0, 0, 52, 851, 1, 0, 0, 0, 54, 868, 1, 0, 0, 0, 56, 877, 1, 0, 0, 0, 58, 884, 1, 0, 0, 0, 60, 892, 1, 0, 0, 0, 62, 899, 1, 0, 0, 0, 64, 906, 1, 0, 0, 0, 66, 915, 1, 0, 0, 0, 68, 926, 1, 0, 0, 0, 70, 928, 1, 0, 0, 0, 72, 948, 1, 0, 0, 0, 74, 965, 1, 0, 0, 0, 76, 967, 1, 0, 0, 0, 78, 976, 1, 0, 0, 0, 80, 983, 1, 0, 0, 0, 82, 992, 1, 0, 0, 0, 84, 1002, 1, 0, 0, 0, 86, 1025, 1, 0, 0, 0, 88, 1031, 1, 0, 0, 0, 90, 1033, 1, 0, 0, 0, 92, 1040, 1, 0, 0, 0, 94, 1052, 1, 0, 0, 0, 96, 1054, 1, 0, 0, 0, 98, 1061, 1, 0, 0, 0, 100, 1082, 1, 0, 0, 0, 102, 1111, 1, 0, 0, 0, 104, 1113, 1, 0, 0, 0, 106, 1122, 1, 0, 0, 0, 108, 1145, 1, 0, 0, 0, 110, 1164, 1, 0, 0, 0, 112, 1187, 1, 0, 0, 0, 114, 1189, 1, 0, 0, 0, 116, 1204, 1, 0, 0, 0, 118, 1223, 1, 0, 0, 0, 120, 1245, 1, 0, 0, 0, 122, 1250, 1, 0, 0, 0, 124, 1255, 1, 0, 0, 0, 126, 1260, 1, 0, 0, 0, 128, 1265, 1, 0, 0, 0, 130, 1272, 1, 0, 0, 0, 132, 1287, 1, 0, 0, 0, 134, 1293, 1, 0, 0, 0, 136, 1313, 1, 0, 0, 0, 138, 1315, 1, 0, 0, 0, 140, 1326, 1, 0, 0, 0, 142, 1337, 1, 0, 0, 0, 144, 1351, 1, 0, 0, 0, 146, 1353, 1, 0, 0, 0, 148, 1362, 1, 0, 0, 0, 150, 1371, 1, 0, 0, 0, 152, 1380, 1, 0, 0, 0, 154, 1383, 1, 0, 0, 0, 156, 1391, 1, 0, 0, 0, 158, 1407, 1, 0, 0, 0, 160, 1411, 1, 0, 0, 0, 162, 1435, 1, 0, 0, 0, 164, 1437, 1, 0, 0, 0, 166, 1453, 1, 0, 0, 0, 168, 1456, 1, 0, 0, 0, 170, 1460, 1, 0, 0, 0, 172, 1463, 1, 0, 0, 0, 174, 1467, 1, 0, 0, 0, 176, 1469, 1, 0, 0, 0, 178, 1471, 1, 0, 0, 0, 180, 1473, 1, 0, 0, 0, 182, 1475, 1, 0, 0, 0, 184, 1477, 1, 0, 0, 0, 186, 1479, 1, 0, 0, 0, 188, 1487, 1, 0, 0, 0, 190, 1497, 1, 0, 0, 0, 192, 1501, 1, 0, 0, 0, 194, 1505, 1, 0, 0, 0, 196, 1510, 1, 0, 0, 0, 198, 1551, 1, 0, 0, 0, 200, 1559, 1, 0, 0, 0, 202, 1563, 1, 0, 0, 0, 204, 1583, 1, 0, 0, 0, 206, 1587, 1, 0, 0, 0, 208, 1596, 1, 0, 0, 0, 210, 1626, 1, 0, 0, 0, 212, 1641, 1, 0, 0, 0, 214, 1647, 1, 0, 0, 0, 216, 1653, 1, 0, 0, 0, 218, 1655, 1, 0, 0, 0, 220, 1674, 1, 0, 0, 0, 222, 1684, 1, 0, 0, 0, 224, 1704, 1, 0, 0, 0, 226, 1714, 1, 0, 0, 0, 228, 1716, 1, 0, 0, 0, 230, 1718, 1, 0, 0, 0, 232, 1733, 1, 0, 0, 0, 234, 1735, 1, 0, 0, 0, 236, 1742, 1, 0, 0, 0, 238, 1774, 1, 0, 0, 0, 240, 1786, 1, 0, 0, 0, 242, 1793, 1, 0, 0, 0, 244, 1803, 1, 0, 0, 0, 246, 1805, 1, 0, 0, 0, 248, 1811, 1, 0, 0, 0, 250, 1822, 1, 0, 0, 0, 252, 1833, 1, 0, 0, 0, 254, 1841, 1, 0, 0, 0, 256, 1859, 1, 0, 0, 0, 258, 1864, 1, 0, 0, 0, 260, 1885, 1, 0, 0, 0, 262, 1921, 1, 0, 0, 0, 264, 1923, 1, 0, 0, 0, 266, 1931, 1, 0, 0, 0, 268, 1971, 1, 0, 0, 0, 270, 1981, 1, 0, 0, 0, 272, 1996, 1, 0, 0, 0, 274, 1998, 1, 0, 0, 0, 276, 2005, 1, 0, 0, 0, 278, 2019, 1, 0, 0, 0, 280, 2021, 1, 0, 0, 0, 282, 2071, 1, 0, 0, 0, 284, 2087, 1, 0, 0, 0, 286, 2089, 1, 0, 0, 0, 288, 2104, 1, 0, 0, 0, 290, 2106, 1, 0, 0, 0, 292, 2116, 1, 0, 0, 0, 294, 2134, 1, 0, 0, 0, 296, 2136, 1, 0, 0, 0, 298, 2140, 1, 0, 0, 0, 300, 2155, 1, 0, 0, 0, 302, 2161, 1, 0, 0, 0, 304, 2163, 1, 0, 0, 0, 306, 2172, 1, 0, 0, 0, 308, 2243, 1, 0, 0, 0, 310, 2249, 1, 0, 0, 0, 312, 2511, 1, 0, 0, 0, 314, 2532, 1, 0, 0, 0, 316, 2534, 1, 0, 0, 0, 318, 2536, 1, 0, 0, 0, 320, 2538, 1, 0, 0, 0, 322, 2554, 1, 0, 0, 0, 324, 2556, 1, 0, 0, 0, 326, 2558, 1, 0, 0, 0, 328, 2605, 1, 0, 0, 0, 330, 2614, 1, 0, 0, 0, 332, 2618, 1, 0, 0, 0, 334, 2624, 1, 0, 0, 0, 336, 2626, 1, 0, 0, 0, 338, 2631, 1, 0, 0, 0, 340, 2637, 1, 0, 0, 0, 342, 2684, 1, 0, 0, 0, 344, 2695, 1, 0, 0, 0, 346, 2702, 1, 0, 0, 0, 348, 2704, 1, 0, 0, 0, 350, 2725, 1, 0, 0, 0, 352, 2727, 1, 0, 0, 0, 354, 2729, 1, 0, 0, 0, 356, 2743, 1, 0, 0, 0, 358, 2750, 1, 0, 0, 0, 360, 2764, 1, 0, 0, 0, 362, 2766, 1, 0, 0, 0, 364, 2768, 1, 0, 0, 0, 366, 368, 3, 2, 1, 0, 367, 366, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 372, 373, 5, 0, 0, 1, 373, 1, 1, 0, 0, 0, 374, 376, 3, 4, 2, 0, 375, 377, 5, 262, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 3, 1, 0, 0, 0, 378, 401, 3, 204, 102, 0, 379, 401, 3, 6, 3, 0, 380, 401, 3, 8, 4, 0, 381, 401, 3, 26, 13, 0, 382, 401, 3, 64, 32, 0, 383, 401, 3, 66, 33, 0, 384, 401, 3, 68, 34, 0, 385, 401, 3, 74, 37, 0, 386, 401, 3, 88, 44, 0, 387, 401, 3, 94, 47, 0, 388, 401, 3, 100, 50, 0, 389, 401, 3, 102, 51, 0, 390, 401, 3, 108, 54, 0, 391, 401, 3, 110, 55, 0, 392, 401, 3, 112, 56, 0, 393, 401, 3, 144, 72, 0, 394, 401, 3, 152, 76, 0, 395, 401, 3, 154, 77, 0, 396, 401, 3, 156, 78, 0, 397, 401, 3, 158, 79, 0, 398, 401, 3, 160, 80, 0, 399, 401, 3, 162, 81, 0, 400, 378, 1, 0, 0, 0, 400, 379, 1, 0, 0, 0, 400, 380, 1, 0, 0, 0, 400, 381, 1, 0, 0, 0, 400, 382, 1, 0, 0, 0, 400, 383, 1, 0, 0, 0, 400, 384, 1, 0, 0, 0, 400, 385, 1, 0, 0, 0, 400, 386, 1, 0, 0, 0, 400, 387, 1, 0, 0, 0, 400, 388, 1, 0, 0, 0, 400, 389, 1, 0, 0, 0, 400, 390, 1, 0, 0, 0, 400, 391, 1, 0, 0, 0, 400, 392, 1, 0, 0, 0, 400, 393, 1, 0, 0, 0, 400, 394, 1, 0, 0, 0, 400, 395, 1, 0, 0, 0, 400, 396, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 5, 1, 0, 0, 0, 402, 403, 5, 203, 0, 0, 403, 404, 3, 184, 92, 0, 404, 7, 1, 0, 0, 0, 405, 414, 3, 18, 9, 0, 406, 414, 3, 20, 10, 0, 407, 414, 3, 22, 11, 0, 408, 414, 3, 24, 12, 0, 409, 414, 3, 16, 8, 0, 410, 414, 3, 14, 7, 0, 411, 414, 3, 12, 6, 0, 412, 414, 3, 10, 5, 0, 413, 405, 1, 0, 0, 0, 413, 406, 1, 0, 0, 0, 413, 407, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 409, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 412, 1, 0, 0, 0, 414, 9, 1, 0, 0, 0, 415, 417, 5, 37, 0, 0, 416, 418, 5, 19, 0, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 421, 5, 188, 0, 0, 420, 422, 3, 172, 86, 0, 421, 420, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 439, 3, 174, 87, 0, 424, 425, 5, 265, 0, 0, 425, 430, 3, 214, 107, 0, 426, 427, 5, 263, 0, 0, 427, 429, 3, 214, 107, 0, 428, 426, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 435, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 434, 5, 263, 0, 0, 434, 436, 3, 208, 104, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 5, 266, 0, 0, 438, 440, 1, 0, 0, 0, 439, 424, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 447, 1, 0, 0, 0, 441, 442, 5, 17, 0, 0, 442, 445, 5, 26, 0, 0, 443, 446, 3, 292, 146, 0, 444, 446, 3, 250, 125, 0, 445, 443, 1, 0, 0, 0, 445, 444, 1, 0, 0, 0, 446, 448, 1, 0, 0, 0, 447, 441, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 452, 3, 196, 98, 0, 450, 451, 5, 9, 0, 0, 451, 453, 3, 204, 102, 0, 452, 450, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 11, 1, 0, 0, 0, 454, 456, 5, 37, 0, 0, 455, 457, 5, 19, 0, 0, 456, 455, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 460, 5, 188, 0, 0, 459, 461, 3, 172, 86, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 463, 3, 174, 87, 0, 463, 467, 5, 115, 0, 0, 464, 468, 3, 186, 93, 0, 465, 466, 5, 147, 0, 0, 466, 468, 3, 314, 157, 0, 467, 464, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 468, 472, 1, 0, 0, 0, 469, 470, 5, 17, 0, 0, 470, 471, 5, 26, 0, 0, 471, 473, 3, 250, 125, 0, 472, 469, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 3, 196, 98, 0, 475, 13, 1, 0, 0, 0, 476, 478, 5, 37, 0, 0, 477, 479, 5, 19, 0, 0, 478, 477, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 482, 5, 188, 0, 0, 481, 483, 3, 172, 86, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 502, 3, 174, 87, 0, 485, 486, 5, 265, 0, 0, 486, 491, 3, 216, 108, 0, 487, 488, 5, 263, 0, 0, 488, 490, 3, 216, 108, 0, 489, 487, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 498, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 495, 5, 263, 0, 0, 495, 496, 5, 150, 0, 0, 496, 497, 5, 110, 0, 0, 497, 499, 3, 292, 146, 0, 498, 494, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 5, 266, 0, 0, 501, 503, 1, 0, 0, 0, 502, 485, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 509, 1, 0, 0, 0, 504, 505, 5, 150, 0, 0, 505, 507, 5, 110, 0, 0, 506, 508, 3, 292, 146, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 1, 0, 0, 0, 509, 504, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 514, 1, 0, 0, 0, 511, 512, 5, 145, 0, 0, 512, 513, 5, 26, 0, 0, 513, 515, 3, 232, 116, 0, 514, 511, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 518, 1, 0, 0, 0, 516, 517, 5, 34, 0, 0, 517, 519, 3, 314, 157, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 521, 5, 23, 0, 0, 521, 522, 5, 9, 0, 0, 522, 525, 5, 111, 0, 0, 523, 524, 5, 25, 0, 0, 524, 526, 3, 248, 124, 0, 525, 523, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 528, 5, 9, 0, 0, 528, 530, 3, 204, 102, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 15, 1, 0, 0, 0, 531, 532, 5, 37, 0, 0, 532, 534, 5, 212, 0, 0, 533, 535, 3, 172, 86, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 538, 3, 178, 89, 0, 537, 539, 3, 202, 101, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 541, 5, 34, 0, 0, 541, 543, 3, 314, 157, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 25, 0, 0, 545, 547, 3, 248, 124, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 9, 0, 0, 549, 550, 3, 204, 102, 0, 550, 17, 1, 0, 0, 0, 551, 552, 5, 37, 0, 0, 552, 554, 7, 0, 0, 0, 553, 555, 3, 172, 86, 0, 554, 553, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 559, 3, 176, 88, 0, 557, 558, 5, 34, 0, 0, 558, 560, 3, 314, 157, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 563, 1, 0, 0, 0, 561, 562, 5, 24, 0, 0, 562, 564, 3, 314, 157, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 19, 1, 0, 0, 0, 565, 566, 5, 37, 0, 0, 566, 567, 5, 166, 0, 0, 567, 568, 3, 358, 179, 0, 568, 21, 1, 0, 0, 0, 569, 571, 5, 37, 0, 0, 570, 572, 5, 12, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, 5, 84, 0, 0, 574, 576, 3, 172, 86, 0, 575, 574, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 590, 3, 180, 90, 0, 578, 587, 5, 265, 0, 0, 579, 584, 3, 328, 164, 0, 580, 581, 5, 263, 0, 0, 581, 583, 3, 328, 164, 0, 582, 580, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 579, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 5, 266, 0, 0, 590, 578, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 5, 160, 0, 0, 593, 596, 3, 328, 164, 0, 594, 595, 5, 102, 0, 0, 595, 597, 3, 328, 164, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 24, 0, 0, 599, 603, 5, 274, 0, 0, 600, 601, 5, 104, 0, 0, 601, 602, 5, 249, 0, 0, 602, 604, 5, 274, 0, 0, 603, 600, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 5, 206, 0, 0, 606, 607, 5, 249, 0, 0, 607, 608, 5, 274, 0, 0, 608, 609, 5, 126, 0, 0, 609, 610, 5, 249, 0, 0, 610, 614, 5, 274, 0, 0, 611, 612, 5, 18, 0, 0, 612, 613, 5, 249, 0, 0, 613, 615, 5, 274, 0, 0, 614, 611, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 619, 1, 0, 0, 0, 616, 617, 5, 20, 0, 0, 617, 618, 5, 249, 0, 0, 618, 620, 5, 274, 0, 0, 619, 616, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 624, 1, 0, 0, 0, 621, 622, 5, 187, 0, 0, 622, 623, 5, 249, 0, 0, 623, 625, 5, 274, 0, 0, 624, 621, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 629, 1, 0, 0, 0, 626, 627, 5, 76, 0, 0, 627, 628, 5, 249, 0, 0, 628, 630, 5, 274, 0, 0, 629, 626, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 23, 1, 0, 0, 0, 631, 632, 5, 37, 0, 0, 632, 634, 5, 84, 0, 0, 633, 635, 3, 172, 86, 0, 634, 633, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 649, 3, 180, 90, 0, 637, 646, 5, 265, 0, 0, 638, 643, 3, 328, 164, 0, 639, 640, 5, 263, 0, 0, 640, 642, 3, 328, 164, 0, 641, 639, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 647, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 646, 638, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 5, 266, 0, 0, 649, 637, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 652, 5, 160, 0, 0, 652, 654, 3, 328, 164, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 5, 24, 0, 0, 656, 657, 5, 274, 0, 0, 657, 658, 5, 186, 0, 0, 658, 659, 5, 249, 0, 0, 659, 660, 3, 314, 157, 0, 660, 25, 1, 0, 0, 0, 661, 680, 3, 28, 14, 0, 662, 680, 3, 62, 31, 0, 663, 680, 3, 60, 30, 0, 664, 680, 3, 58, 29, 0, 665, 680, 3, 54, 27, 0, 666, 680, 3, 56, 28, 0, 667, 680, 3, 52, 26, 0, 668, 680, 3, 48, 24, 0, 669, 680, 3, 50, 25, 0, 670, 680, 3, 46, 23, 0, 671, 680, 3, 44, 22, 0, 672, 680, 3, 42, 21, 0, 673, 680, 3, 40, 20, 0, 674, 680, 3, 34, 17, 0, 675, 680, 3, 30, 15, 0, 676, 680, 3, 32, 16, 0, 677, 680, 3, 36, 18, 0, 678, 680, 3, 38, 19, 0, 679, 661, 1, 0, 0, 0, 679, 662, 1, 0, 0, 0, 679, 663, 1, 0, 0, 0, 679, 664, 1, 0, 0, 0, 679, 665, 1, 0, 0, 0, 679, 666, 1, 0, 0, 0, 679, 667, 1, 0, 0, 0, 679, 668, 1, 0, 0, 0, 679, 669, 1, 0, 0, 0, 679, 670, 1, 0, 0, 0, 679, 671, 1, 0, 0, 0, 679, 672, 1, 0, 0, 0, 679, 673, 1, 0, 0, 0, 679, 674, 1, 0, 0, 0, 679, 675, 1, 0, 0, 0, 679, 676, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 678, 1, 0, 0, 0, 680, 27, 1, 0, 0, 0, 681, 682, 5, 4, 0, 0, 682, 683, 5, 46, 0, 0, 683, 684, 3, 184, 92, 0, 684, 685, 5, 176, 0, 0, 685, 686, 5, 142, 0, 0, 686, 687, 7, 1, 0, 0, 687, 688, 3, 358, 179, 0, 688, 29, 1, 0, 0, 0, 689, 690, 5, 4, 0, 0, 690, 691, 5, 188, 0, 0, 691, 692, 3, 186, 93, 0, 692, 693, 5, 176, 0, 0, 693, 694, 5, 32, 0, 0, 694, 695, 5, 182, 0, 0, 695, 696, 3, 192, 96, 0, 696, 697, 5, 265, 0, 0, 697, 698, 3, 228, 114, 0, 698, 699, 5, 249, 0, 0, 699, 705, 3, 314, 157, 0, 700, 701, 5, 263, 0, 0, 701, 702, 3, 228, 114, 0, 702, 703, 5, 249, 0, 0, 703, 704, 3, 314, 157, 0, 704, 706, 1, 0, 0, 0, 705, 700, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 266, 0, 0, 708, 31, 1, 0, 0, 0, 709, 710, 5, 4, 0, 0, 710, 711, 5, 188, 0, 0, 711, 714, 3, 186, 93, 0, 712, 713, 5, 145, 0, 0, 713, 715, 3, 304, 152, 0, 714, 712, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 727, 5, 176, 0, 0, 717, 718, 5, 30, 0, 0, 718, 719, 5, 94, 0, 0, 719, 724, 3, 314, 157, 0, 720, 721, 5, 216, 0, 0, 721, 722, 5, 151, 0, 0, 722, 723, 5, 249, 0, 0, 723, 725, 3, 360, 180, 0, 724, 720, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 728, 5, 197, 0, 0, 727, 717, 1, 0, 0, 0, 727, 726, 1, 0, 0, 0, 728, 33, 1, 0, 0, 0, 729, 730, 5, 4, 0, 0, 730, 731, 5, 188, 0, 0, 731, 732, 3, 186, 93, 0, 732, 733, 5, 31, 0, 0, 733, 734, 3, 192, 96, 0, 734, 735, 3, 220, 110, 0, 735, 35, 1, 0, 0, 0, 736, 737, 5, 4, 0, 0, 737, 738, 5, 188, 0, 0, 738, 739, 3, 186, 93, 0, 739, 741, 5, 58, 0, 0, 740, 742, 5, 32, 0, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 3, 192, 96, 0, 744, 37, 1, 0, 0, 0, 745, 746, 5, 4, 0, 0, 746, 747, 5, 188, 0, 0, 747, 748, 3, 186, 93, 0, 748, 749, 5, 176, 0, 0, 749, 750, 5, 142, 0, 0, 750, 751, 7, 1, 0, 0, 751, 752, 3, 358, 179, 0, 752, 39, 1, 0, 0, 0, 753, 754, 5, 4, 0, 0, 754, 755, 5, 188, 0, 0, 755, 761, 3, 186, 93, 0, 756, 762, 5, 158, 0, 0, 757, 759, 5, 1, 0, 0, 758, 760, 3, 172, 86, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 762, 1, 0, 0, 0, 761, 756, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 5, 33, 0, 0, 764, 765, 5, 265, 0, 0, 765, 770, 3, 220, 110, 0, 766, 767, 5, 263, 0, 0, 767, 769, 3, 220, 110, 0, 768, 766, 1, 0, 0, 0, 769, 772, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 773, 1, 0, 0, 0, 772, 770, 1, 0, 0, 0, 773, 774, 5, 266, 0, 0, 774, 41, 1, 0, 0, 0, 775, 776, 5, 4, 0, 0, 776, 777, 5, 188, 0, 0, 777, 778, 3, 186, 93, 0, 778, 779, 5, 1, 0, 0, 779, 781, 5, 32, 0, 0, 780, 782, 3, 172, 86, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 3, 222, 111, 0, 784, 43, 1, 0, 0, 0, 785, 786, 5, 4, 0, 0, 786, 787, 5, 188, 0, 0, 787, 788, 3, 186, 93, 0, 788, 790, 5, 4, 0, 0, 789, 791, 5, 32, 0, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 801, 3, 192, 96, 0, 793, 797, 5, 176, 0, 0, 794, 798, 3, 226, 113, 0, 795, 796, 5, 34, 0, 0, 796, 798, 3, 314, 157, 0, 797, 794, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 798, 802, 1, 0, 0, 0, 799, 800, 5, 58, 0, 0, 800, 802, 5, 51, 0, 0, 801, 793, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 45, 1, 0, 0, 0, 803, 804, 5, 4, 0, 0, 804, 805, 5, 188, 0, 0, 805, 806, 3, 186, 93, 0, 806, 808, 5, 1, 0, 0, 807, 809, 3, 172, 86, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 822, 1, 0, 0, 0, 810, 811, 5, 145, 0, 0, 811, 814, 3, 304, 152, 0, 812, 813, 5, 24, 0, 0, 813, 815, 3, 314, 157, 0, 814, 812, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 817, 1, 0, 0, 0, 816, 818, 3, 240, 120, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 823, 1, 0, 0, 0, 819, 820, 5, 154, 0, 0, 820, 821, 5, 145, 0, 0, 821, 823, 3, 238, 119, 0, 822, 810, 1, 0, 0, 0, 822, 819, 1, 0, 0, 0, 823, 47, 1, 0, 0, 0, 824, 825, 5, 4, 0, 0, 825, 826, 5, 188, 0, 0, 826, 829, 3, 186, 93, 0, 827, 828, 5, 145, 0, 0, 828, 830, 3, 304, 152, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 843, 5, 176, 0, 0, 832, 833, 5, 72, 0, 0, 833, 844, 3, 230, 115, 0, 834, 835, 5, 168, 0, 0, 835, 836, 5, 79, 0, 0, 836, 844, 3, 254, 127, 0, 837, 838, 5, 24, 0, 0, 838, 844, 3, 314, 157, 0, 839, 840, 5, 25, 0, 0, 840, 844, 3, 248, 124, 0, 841, 842, 5, 175, 0, 0, 842, 844, 3, 248, 124, 0, 843, 832, 1, 0, 0, 0, 843, 834, 1, 0, 0, 0, 843, 837, 1, 0, 0, 0, 843, 839, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 844, 49, 1, 0, 0, 0, 845, 846, 5, 4, 0, 0, 846, 847, 5, 188, 0, 0, 847, 848, 3, 186, 93, 0, 848, 849, 5, 155, 0, 0, 849, 850, 5, 146, 0, 0, 850, 51, 1, 0, 0, 0, 851, 852, 5, 4, 0, 0, 852, 853, 5, 188, 0, 0, 853, 854, 3, 186, 93, 0, 854, 856, 5, 58, 0, 0, 855, 857, 3, 170, 85, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 866, 1, 0, 0, 0, 858, 859, 5, 145, 0, 0, 859, 861, 3, 304, 152, 0, 860, 862, 5, 22, 0, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 867, 1, 0, 0, 0, 863, 864, 5, 154, 0, 0, 864, 865, 5, 145, 0, 0, 865, 867, 3, 238, 119, 0, 866, 858, 1, 0, 0, 0, 866, 863, 1, 0, 0, 0, 867, 53, 1, 0, 0, 0, 868, 869, 5, 4, 0, 0, 869, 870, 5, 212, 0, 0, 870, 872, 3, 188, 94, 0, 871, 873, 3, 202, 101, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 5, 9, 0, 0, 875, 876, 3, 204, 102, 0, 876, 55, 1, 0, 0, 0, 877, 878, 5, 4, 0, 0, 878, 879, 5, 212, 0, 0, 879, 880, 3, 188, 94, 0, 880, 881, 5, 156, 0, 0, 881, 882, 5, 193, 0, 0, 882, 883, 3, 188, 94, 0, 883, 57, 1, 0, 0, 0, 884, 885, 5, 4, 0, 0, 885, 886, 5, 212, 0, 0, 886, 887, 3, 188, 94, 0, 887, 888, 5, 176, 0, 0, 888, 889, 5, 142, 0, 0, 889, 890, 7, 1, 0, 0, 890, 891, 3, 354, 177, 0, 891, 59, 1, 0, 0, 0, 892, 893, 5, 4, 0, 0, 893, 894, 5, 188, 0, 0, 894, 895, 3, 186, 93, 0, 895, 896, 5, 156, 0, 0, 896, 897, 5, 193, 0, 0, 897, 898, 3, 186, 93, 0, 898, 61, 1, 0, 0, 0, 899, 900, 5, 4, 0, 0, 900, 901, 5, 212, 0, 0, 901, 902, 3, 188, 94, 0, 902, 903, 7, 2, 0, 0, 903, 904, 5, 25, 0, 0, 904, 905, 3, 248, 124, 0, 905, 63, 1, 0, 0, 0, 906, 908, 5, 196, 0, 0, 907, 909, 5, 188, 0, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 911, 1, 0, 0, 0, 910, 912, 3, 170, 85, 0, 911, 910, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 3, 186, 93, 0, 914, 65, 1, 0, 0, 0, 915, 917, 5, 56, 0, 0, 916, 918, 5, 46, 0, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 921, 7, 3, 0, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 3, 354, 177, 0, 923, 67, 1, 0, 0, 0, 924, 927, 3, 70, 35, 0, 925, 927, 3, 72, 36, 0, 926, 924, 1, 0, 0, 0, 926, 925, 1, 0, 0, 0, 927, 69, 1, 0, 0, 0, 928, 929, 5, 36, 0, 0, 929, 930, 5, 182, 0, 0, 930, 932, 3, 186, 93, 0, 931, 933, 3, 292, 146, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 946, 1, 0, 0, 0, 934, 935, 5, 190, 0, 0, 935, 936, 5, 185, 0, 0, 936, 937, 5, 265, 0, 0, 937, 938, 3, 360, 180, 0, 938, 944, 5, 266, 0, 0, 939, 940, 5, 157, 0, 0, 940, 941, 5, 265, 0, 0, 941, 942, 3, 360, 180, 0, 942, 943, 5, 266, 0, 0, 943, 945, 1, 0, 0, 0, 944, 939, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 1, 0, 0, 0, 946, 934, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 71, 1, 0, 0, 0, 948, 949, 5, 36, 0, 0, 949, 950, 5, 96, 0, 0, 950, 951, 5, 182, 0, 0, 951, 957, 3, 186, 93, 0, 952, 953, 5, 145, 0, 0, 953, 954, 5, 265, 0, 0, 954, 955, 3, 304, 152, 0, 955, 956, 5, 266, 0, 0, 956, 958, 1, 0, 0, 0, 957, 952, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 73, 1, 0, 0, 0, 959, 966, 3, 86, 43, 0, 960, 966, 3, 84, 42, 0, 961, 966, 3, 82, 41, 0, 962, 966, 3, 78, 39, 0, 963, 966, 3, 80, 40, 0, 964, 966, 3, 76, 38, 0, 965, 959, 1, 0, 0, 0, 965, 960, 1, 0, 0, 0, 965, 961, 1, 0, 0, 0, 965, 962, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 964, 1, 0, 0, 0, 966, 75, 1, 0, 0, 0, 967, 968, 5, 58, 0, 0, 968, 970, 7, 0, 0, 0, 969, 971, 3, 170, 85, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 184, 92, 0, 973, 975, 7, 4, 0, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 77, 1, 0, 0, 0, 976, 977, 5, 58, 0, 0, 977, 979, 5, 212, 0, 0, 978, 980, 3, 170, 85, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 3, 188, 94, 0, 982, 79, 1, 0, 0, 0, 983, 984, 5, 58, 0, 0, 984, 986, 5, 188, 0, 0, 985, 987, 3, 170, 85, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 990, 3, 186, 93, 0, 989, 991, 5, 22, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 81, 1, 0, 0, 0, 992, 994, 5, 58, 0, 0, 993, 995, 5, 96, 0, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 5, 182, 0, 0, 997, 1000, 3, 186, 93, 0, 998, 999, 5, 145, 0, 0, 999, 1001, 3, 304, 152, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 83, 1, 0, 0, 0, 1002, 1004, 5, 58, 0, 0, 1003, 1005, 5, 12, 0, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 5, 84, 0, 0, 1007, 1009, 3, 170, 85, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1023, 3, 190, 95, 0, 1011, 1020, 5, 265, 0, 0, 1012, 1017, 3, 328, 164, 0, 1013, 1014, 5, 263, 0, 0, 1014, 1016, 3, 328, 164, 0, 1015, 1013, 1, 0, 0, 0, 1016, 1019, 1, 0, 0, 0, 1017, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1021, 1, 0, 0, 0, 1019, 1017, 1, 0, 0, 0, 1020, 1012, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1024, 5, 266, 0, 0, 1023, 1011, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 85, 1, 0, 0, 0, 1025, 1026, 5, 58, 0, 0, 1026, 1027, 5, 166, 0, 0, 1027, 1028, 3, 358, 179, 0, 1028, 87, 1, 0, 0, 0, 1029, 1032, 3, 90, 45, 0, 1030, 1032, 3, 92, 46, 0, 1031, 1029, 1, 0, 0, 0, 1031, 1030, 1, 0, 0, 0, 1032, 89, 1, 0, 0, 0, 1033, 1034, 5, 86, 0, 0, 1034, 1035, 5, 166, 0, 0, 1035, 1036, 3, 358, 179, 0, 1036, 1037, 5, 193, 0, 0, 1037, 1038, 5, 87, 0, 0, 1038, 1039, 3, 358, 179, 0, 1039, 91, 1, 0, 0, 0, 1040, 1041, 5, 86, 0, 0, 1041, 1042, 3, 350, 175, 0, 1042, 1043, 5, 136, 0, 0, 1043, 1045, 3, 352, 176, 0, 1044, 1046, 3, 354, 177, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 5, 193, 0, 0, 1048, 1049, 3, 356, 178, 0, 1049, 93, 1, 0, 0, 0, 1050, 1053, 3, 96, 48, 0, 1051, 1053, 3, 98, 49, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1051, 1, 0, 0, 0, 1053, 95, 1, 0, 0, 0, 1054, 1055, 5, 161, 0, 0, 1055, 1056, 5, 166, 0, 0, 1056, 1057, 3, 358, 179, 0, 1057, 1058, 5, 82, 0, 0, 1058, 1059, 5, 87, 0, 0, 1059, 1060, 3, 358, 179, 0, 1060, 97, 1, 0, 0, 0, 1061, 1065, 5, 161, 0, 0, 1062, 1063, 5, 86, 0, 0, 1063, 1064, 5, 137, 0, 0, 1064, 1066, 5, 78, 0, 0, 1065, 1062, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 350, 175, 0, 1068, 1069, 5, 136, 0, 0, 1069, 1071, 3, 352, 176, 0, 1070, 1072, 3, 354, 177, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1079, 5, 82, 0, 0, 1074, 1080, 3, 356, 178, 0, 1075, 1077, 5, 166, 0, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 3, 358, 179, 0, 1079, 1074, 1, 0, 0, 0, 1079, 1076, 1, 0, 0, 0, 1080, 99, 1, 0, 0, 0, 1081, 1083, 3, 206, 103, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 5, 99, 0, 0, 1085, 1087, 7, 5, 0, 0, 1086, 1088, 5, 188, 0, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1091, 3, 186, 93, 0, 1090, 1092, 3, 292, 146, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1105, 1, 0, 0, 0, 1093, 1094, 5, 145, 0, 0, 1094, 1095, 5, 265, 0, 0, 1095, 1100, 3, 304, 152, 0, 1096, 1097, 5, 263, 0, 0, 1097, 1099, 3, 304, 152, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1102, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1104, 5, 266, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1093, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 3, 204, 102, 0, 1108, 101, 1, 0, 0, 0, 1109, 1112, 3, 104, 52, 0, 1110, 1112, 3, 106, 53, 0, 1111, 1109, 1, 0, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 103, 1, 0, 0, 0, 1113, 1115, 5, 50, 0, 0, 1114, 1116, 5, 82, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1120, 3, 186, 93, 0, 1118, 1119, 5, 215, 0, 0, 1119, 1121, 3, 306, 153, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 105, 1, 0, 0, 0, 1122, 1123, 5, 50, 0, 0, 1123, 1128, 3, 186, 93, 0, 1124, 1126, 5, 9, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 3, 358, 179, 0, 1128, 1125, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1139, 5, 82, 0, 0, 1131, 1136, 3, 280, 140, 0, 1132, 1133, 5, 263, 0, 0, 1133, 1135, 3, 280, 140, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1131, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1143, 1, 0, 0, 0, 1141, 1142, 5, 215, 0, 0, 1142, 1144, 3, 306, 153, 0, 1143, 1141, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 107, 1, 0, 0, 0, 1145, 1146, 5, 54, 0, 0, 1146, 1147, 3, 186, 93, 0, 1147, 1148, 5, 176, 0, 0, 1148, 1158, 3, 198, 99, 0, 1149, 1150, 5, 82, 0, 0, 1150, 1155, 3, 280, 140, 0, 1151, 1152, 5, 263, 0, 0, 1152, 1154, 3, 280, 140, 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, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1149, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1161, 5, 215, 0, 0, 1161, 1163, 3, 306, 153, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 109, 1, 0, 0, 0, 1164, 1165, 5, 207, 0, 0, 1165, 1167, 5, 103, 0, 0, 1166, 1168, 5, 188, 0, 0, 1167, 1166, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1171, 3, 186, 93, 0, 1170, 1172, 3, 292, 146, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 3, 204, 102, 0, 1174, 111, 1, 0, 0, 0, 1175, 1188, 3, 132, 66, 0, 1176, 1188, 3, 134, 67, 0, 1177, 1188, 3, 136, 68, 0, 1178, 1188, 3, 130, 65, 0, 1179, 1188, 3, 128, 64, 0, 1180, 1188, 3, 126, 63, 0, 1181, 1188, 3, 124, 62, 0, 1182, 1188, 3, 122, 61, 0, 1183, 1188, 3, 120, 60, 0, 1184, 1188, 3, 118, 59, 0, 1185, 1188, 3, 116, 58, 0, 1186, 1188, 3, 114, 57, 0, 1187, 1175, 1, 0, 0, 0, 1187, 1176, 1, 0, 0, 0, 1187, 1177, 1, 0, 0, 0, 1187, 1178, 1, 0, 0, 0, 1187, 1179, 1, 0, 0, 0, 1187, 1180, 1, 0, 0, 0, 1187, 1181, 1, 0, 0, 0, 1187, 1182, 1, 0, 0, 0, 1187, 1183, 1, 0, 0, 0, 1187, 1184, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1186, 1, 0, 0, 0, 1188, 113, 1, 0, 0, 0, 1189, 1190, 5, 179, 0, 0, 1190, 1202, 7, 6, 0, 0, 1191, 1193, 5, 115, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1199, 3, 314, 157, 0, 1195, 1196, 5, 271, 0, 0, 1196, 1198, 3, 314, 157, 0, 1197, 1195, 1, 0, 0, 0, 1198, 1201, 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1202, 1192, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 115, 1, 0, 0, 0, 1204, 1205, 5, 179, 0, 0, 1205, 1208, 5, 189, 0, 0, 1206, 1207, 5, 94, 0, 0, 1207, 1209, 3, 186, 93, 0, 1208, 1206, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1221, 1, 0, 0, 0, 1210, 1212, 5, 115, 0, 0, 1211, 1210, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1218, 3, 314, 157, 0, 1214, 1215, 5, 271, 0, 0, 1215, 1217, 3, 314, 157, 0, 1216, 1214, 1, 0, 0, 0, 1217, 1220, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1222, 1, 0, 0, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1211, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 117, 1, 0, 0, 0, 1223, 1225, 5, 179, 0, 0, 1224, 1226, 7, 7, 0, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1230, 5, 85, 0, 0, 1228, 1229, 5, 94, 0, 0, 1229, 1231, 3, 184, 92, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1243, 1, 0, 0, 0, 1232, 1234, 5, 115, 0, 0, 1233, 1232, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1240, 3, 314, 157, 0, 1236, 1237, 5, 271, 0, 0, 1237, 1239, 3, 314, 157, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1242, 1, 0, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1244, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1233, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 119, 1, 0, 0, 0, 1245, 1246, 5, 179, 0, 0, 1246, 1247, 5, 37, 0, 0, 1247, 1248, 5, 188, 0, 0, 1248, 1249, 3, 186, 93, 0, 1249, 121, 1, 0, 0, 0, 1250, 1251, 5, 179, 0, 0, 1251, 1252, 5, 37, 0, 0, 1252, 1253, 5, 212, 0, 0, 1253, 1254, 3, 188, 94, 0, 1254, 123, 1, 0, 0, 0, 1255, 1256, 5, 179, 0, 0, 1256, 1257, 5, 188, 0, 0, 1257, 1258, 5, 182, 0, 0, 1258, 1259, 3, 186, 93, 0, 1259, 125, 1, 0, 0, 0, 1260, 1261, 5, 179, 0, 0, 1261, 1262, 5, 32, 0, 0, 1262, 1263, 5, 182, 0, 0, 1263, 1264, 3, 186, 93, 0, 1264, 127, 1, 0, 0, 0, 1265, 1267, 5, 179, 0, 0, 1266, 1268, 5, 154, 0, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 5, 146, 0, 0, 1270, 1271, 3, 186, 93, 0, 1271, 129, 1, 0, 0, 0, 1272, 1273, 5, 179, 0, 0, 1273, 1274, 5, 73, 0, 0, 1274, 1275, 5, 94, 0, 0, 1275, 1285, 3, 186, 93, 0, 1276, 1277, 5, 145, 0, 0, 1277, 1278, 5, 265, 0, 0, 1278, 1281, 3, 304, 152, 0, 1279, 1280, 5, 263, 0, 0, 1280, 1282, 3, 304, 152, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 5, 266, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1276, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 131, 1, 0, 0, 0, 1287, 1289, 5, 179, 0, 0, 1288, 1290, 5, 39, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 5, 167, 0, 0, 1292, 133, 1, 0, 0, 0, 1293, 1294, 5, 179, 0, 0, 1294, 1295, 5, 166, 0, 0, 1295, 1296, 5, 86, 0, 0, 1296, 1297, 5, 87, 0, 0, 1297, 1298, 3, 358, 179, 0, 1298, 135, 1, 0, 0, 0, 1299, 1314, 3, 138, 69, 0, 1300, 1314, 3, 140, 70, 0, 1301, 1314, 3, 142, 71, 0, 1302, 1303, 5, 179, 0, 0, 1303, 1304, 5, 86, 0, 0, 1304, 1305, 7, 8, 0, 0, 1305, 1311, 3, 358, 179, 0, 1306, 1307, 5, 136, 0, 0, 1307, 1309, 7, 9, 0, 0, 1308, 1310, 3, 354, 177, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1306, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1299, 1, 0, 0, 0, 1313, 1300, 1, 0, 0, 0, 1313, 1301, 1, 0, 0, 0, 1313, 1302, 1, 0, 0, 0, 1314, 137, 1, 0, 0, 0, 1315, 1316, 5, 179, 0, 0, 1316, 1317, 5, 86, 0, 0, 1317, 1318, 7, 8, 0, 0, 1318, 1324, 3, 358, 179, 0, 1319, 1320, 5, 136, 0, 0, 1320, 1322, 5, 46, 0, 0, 1321, 1323, 3, 184, 92, 0, 1322, 1321, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1325, 1, 0, 0, 0, 1324, 1319, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 139, 1, 0, 0, 0, 1326, 1327, 5, 179, 0, 0, 1327, 1328, 5, 86, 0, 0, 1328, 1329, 7, 8, 0, 0, 1329, 1335, 3, 358, 179, 0, 1330, 1331, 5, 136, 0, 0, 1331, 1333, 5, 188, 0, 0, 1332, 1334, 3, 186, 93, 0, 1333, 1332, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 1, 0, 0, 0, 1335, 1330, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 141, 1, 0, 0, 0, 1337, 1338, 5, 179, 0, 0, 1338, 1339, 5, 86, 0, 0, 1339, 1340, 7, 8, 0, 0, 1340, 1346, 3, 358, 179, 0, 1341, 1342, 5, 136, 0, 0, 1342, 1344, 5, 32, 0, 0, 1343, 1345, 3, 192, 96, 0, 1344, 1343, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1347, 1, 0, 0, 0, 1346, 1341, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 143, 1, 0, 0, 0, 1348, 1352, 3, 146, 73, 0, 1349, 1352, 3, 148, 74, 0, 1350, 1352, 3, 150, 75, 0, 1351, 1348, 1, 0, 0, 0, 1351, 1349, 1, 0, 0, 0, 1351, 1350, 1, 0, 0, 0, 1352, 145, 1, 0, 0, 0, 1353, 1354, 5, 34, 0, 0, 1354, 1355, 5, 136, 0, 0, 1355, 1356, 5, 46, 0, 0, 1356, 1357, 3, 184, 92, 0, 1357, 1360, 5, 108, 0, 0, 1358, 1361, 3, 314, 157, 0, 1359, 1361, 5, 133, 0, 0, 1360, 1358, 1, 0, 0, 0, 1360, 1359, 1, 0, 0, 0, 1361, 147, 1, 0, 0, 0, 1362, 1363, 5, 34, 0, 0, 1363, 1364, 5, 136, 0, 0, 1364, 1365, 5, 188, 0, 0, 1365, 1366, 3, 186, 93, 0, 1366, 1369, 5, 108, 0, 0, 1367, 1370, 3, 314, 157, 0, 1368, 1370, 5, 133, 0, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1368, 1, 0, 0, 0, 1370, 149, 1, 0, 0, 0, 1371, 1372, 5, 34, 0, 0, 1372, 1373, 5, 136, 0, 0, 1373, 1374, 5, 32, 0, 0, 1374, 1375, 3, 192, 96, 0, 1375, 1378, 5, 108, 0, 0, 1376, 1379, 3, 314, 157, 0, 1377, 1379, 5, 133, 0, 0, 1378, 1376, 1, 0, 0, 0, 1378, 1377, 1, 0, 0, 0, 1379, 151, 1, 0, 0, 0, 1380, 1381, 5, 67, 0, 0, 1381, 1382, 3, 4, 2, 0, 1382, 153, 1, 0, 0, 0, 1383, 1389, 5, 176, 0, 0, 1384, 1390, 5, 2, 0, 0, 1385, 1386, 3, 358, 179, 0, 1386, 1387, 5, 249, 0, 0, 1387, 1388, 3, 304, 152, 0, 1388, 1390, 1, 0, 0, 0, 1389, 1384, 1, 0, 0, 0, 1389, 1385, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 155, 1, 0, 0, 0, 1391, 1392, 5, 264, 0, 0, 1392, 1393, 5, 180, 0, 0, 1393, 1403, 5, 265, 0, 0, 1394, 1396, 3, 314, 157, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1404, 1, 0, 0, 0, 1397, 1400, 3, 314, 157, 0, 1398, 1399, 5, 263, 0, 0, 1399, 1401, 3, 304, 152, 0, 1400, 1398, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1404, 1, 0, 0, 0, 1402, 1404, 3, 304, 152, 0, 1403, 1395, 1, 0, 0, 0, 1403, 1397, 1, 0, 0, 0, 1403, 1402, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 5, 266, 0, 0, 1406, 157, 1, 0, 0, 0, 1407, 1408, 5, 107, 0, 0, 1408, 1409, 5, 121, 0, 0, 1409, 1410, 3, 186, 93, 0, 1410, 159, 1, 0, 0, 0, 1411, 1412, 5, 118, 0, 0, 1412, 1413, 5, 45, 0, 0, 1413, 1414, 5, 98, 0, 0, 1414, 1416, 5, 274, 0, 0, 1415, 1417, 5, 144, 0, 0, 1416, 1415, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 5, 103, 0, 0, 1419, 1420, 5, 188, 0, 0, 1420, 1430, 3, 186, 93, 0, 1421, 1422, 5, 145, 0, 0, 1422, 1423, 5, 265, 0, 0, 1423, 1426, 3, 304, 152, 0, 1424, 1425, 5, 263, 0, 0, 1425, 1427, 3, 304, 152, 0, 1426, 1424, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 5, 266, 0, 0, 1429, 1431, 1, 0, 0, 0, 1430, 1421, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 161, 1, 0, 0, 0, 1432, 1436, 3, 164, 82, 0, 1433, 1436, 3, 166, 83, 0, 1434, 1436, 3, 168, 84, 0, 1435, 1432, 1, 0, 0, 0, 1435, 1433, 1, 0, 0, 0, 1435, 1434, 1, 0, 0, 0, 1436, 163, 1, 0, 0, 0, 1437, 1438, 5, 162, 0, 0, 1438, 1451, 3, 186, 93, 0, 1439, 1440, 5, 145, 0, 0, 1440, 1441, 5, 265, 0, 0, 1441, 1446, 3, 304, 152, 0, 1442, 1443, 5, 263, 0, 0, 1443, 1445, 3, 304, 152, 0, 1444, 1442, 1, 0, 0, 0, 1445, 1448, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1446, 1444, 1, 0, 0, 0, 1447, 1449, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1449, 1450, 5, 266, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, 1439, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 165, 1, 0, 0, 0, 1453, 1454, 5, 162, 0, 0, 1454, 1455, 5, 13, 0, 0, 1455, 167, 1, 0, 0, 0, 1456, 1457, 5, 162, 0, 0, 1457, 1458, 5, 85, 0, 0, 1458, 1459, 3, 190, 95, 0, 1459, 169, 1, 0, 0, 0, 1460, 1461, 5, 93, 0, 0, 1461, 1462, 5, 66, 0, 0, 1462, 171, 1, 0, 0, 0, 1463, 1464, 5, 93, 0, 0, 1464, 1465, 5, 132, 0, 0, 1465, 1466, 5, 66, 0, 0, 1466, 173, 1, 0, 0, 0, 1467, 1468, 3, 354, 177, 0, 1468, 175, 1, 0, 0, 0, 1469, 1470, 3, 354, 177, 0, 1470, 177, 1, 0, 0, 0, 1471, 1472, 3, 354, 177, 0, 1472, 179, 1, 0, 0, 0, 1473, 1474, 3, 354, 177, 0, 1474, 181, 1, 0, 0, 0, 1475, 1476, 3, 354, 177, 0, 1476, 183, 1, 0, 0, 0, 1477, 1478, 3, 354, 177, 0, 1478, 185, 1, 0, 0, 0, 1479, 1484, 3, 358, 179, 0, 1480, 1481, 5, 261, 0, 0, 1481, 1483, 3, 358, 179, 0, 1482, 1480, 1, 0, 0, 0, 1483, 1486, 1, 0, 0, 0, 1484, 1482, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 187, 1, 0, 0, 0, 1486, 1484, 1, 0, 0, 0, 1487, 1492, 3, 358, 179, 0, 1488, 1489, 5, 261, 0, 0, 1489, 1491, 3, 358, 179, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1494, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 189, 1, 0, 0, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 3, 362, 181, 0, 1496, 1498, 3, 354, 177, 0, 1497, 1495, 1, 0, 0, 0, 1497, 1496, 1, 0, 0, 0, 1498, 191, 1, 0, 0, 0, 1499, 1502, 3, 354, 177, 0, 1500, 1502, 4, 96, 0, 0, 1501, 1499, 1, 0, 0, 0, 1501, 1500, 1, 0, 0, 0, 1502, 193, 1, 0, 0, 0, 1503, 1506, 3, 186, 93, 0, 1504, 1506, 3, 188, 94, 0, 1505, 1503, 1, 0, 0, 0, 1505, 1504, 1, 0, 0, 0, 1506, 195, 1, 0, 0, 0, 1507, 1508, 5, 21, 0, 0, 1508, 1509, 5, 26, 0, 0, 1509, 1511, 3, 292, 146, 0, 1510, 1507, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1513, 5, 34, 0, 0, 1513, 1515, 3, 314, 157, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 168, 0, 0, 1517, 1518, 5, 79, 0, 0, 1518, 1520, 3, 254, 127, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 216, 0, 0, 1522, 1523, 5, 175, 0, 0, 1523, 1525, 3, 248, 124, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 23, 0, 0, 1527, 1528, 5, 9, 0, 0, 1528, 1530, 3, 230, 115, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1532, 5, 24, 0, 0, 1532, 1534, 3, 314, 157, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1545, 1, 0, 0, 0, 1535, 1536, 5, 30, 0, 0, 1536, 1537, 5, 94, 0, 0, 1537, 1542, 3, 354, 177, 0, 1538, 1539, 5, 216, 0, 0, 1539, 1540, 5, 151, 0, 0, 1540, 1541, 5, 249, 0, 0, 1541, 1543, 5, 277, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1546, 5, 197, 0, 0, 1545, 1535, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1548, 5, 25, 0, 0, 1548, 1550, 3, 248, 124, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 197, 1, 0, 0, 0, 1551, 1556, 3, 200, 100, 0, 1552, 1553, 5, 263, 0, 0, 1553, 1555, 3, 200, 100, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 3, 354, 177, 0, 1560, 1561, 5, 249, 0, 0, 1561, 1562, 3, 304, 152, 0, 1562, 201, 1, 0, 0, 0, 1563, 1564, 5, 265, 0, 0, 1564, 1567, 3, 182, 91, 0, 1565, 1566, 5, 34, 0, 0, 1566, 1568, 3, 314, 157, 0, 1567, 1565, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1577, 1, 0, 0, 0, 1569, 1570, 5, 263, 0, 0, 1570, 1573, 3, 182, 91, 0, 1571, 1572, 5, 34, 0, 0, 1572, 1574, 3, 314, 157, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1569, 1, 0, 0, 0, 1576, 1579, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1581, 5, 266, 0, 0, 1581, 203, 1, 0, 0, 0, 1582, 1584, 3, 206, 103, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 3, 258, 129, 0, 1586, 205, 1, 0, 0, 0, 1587, 1588, 5, 216, 0, 0, 1588, 1593, 3, 274, 137, 0, 1589, 1590, 5, 263, 0, 0, 1590, 1592, 3, 274, 137, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 207, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 150, 0, 0, 1597, 1598, 5, 110, 0, 0, 1598, 1600, 3, 292, 146, 0, 1599, 1601, 5, 53, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 225, 0, 0, 1603, 1604, 5, 263, 0, 0, 1604, 1606, 5, 225, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1610, 1, 0, 0, 0, 1607, 1611, 5, 226, 0, 0, 1608, 1609, 5, 263, 0, 0, 1609, 1611, 5, 226, 0, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1624, 1, 0, 0, 0, 1612, 1613, 5, 263, 0, 0, 1613, 1616, 3, 210, 105, 0, 1614, 1616, 3, 210, 105, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1621, 1, 0, 0, 0, 1617, 1618, 5, 263, 0, 0, 1618, 1620, 3, 210, 105, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1622, 1625, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1615, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 209, 1, 0, 0, 0, 1626, 1627, 5, 81, 0, 0, 1627, 1628, 5, 110, 0, 0, 1628, 1629, 3, 292, 146, 0, 1629, 1630, 5, 224, 0, 0, 1630, 1631, 3, 186, 93, 0, 1631, 1633, 3, 292, 146, 0, 1632, 1634, 5, 53, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1637, 5, 225, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1640, 5, 226, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 211, 1, 0, 0, 0, 1641, 1642, 3, 192, 96, 0, 1642, 1645, 3, 328, 164, 0, 1643, 1644, 5, 34, 0, 0, 1644, 1646, 3, 314, 157, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 213, 1, 0, 0, 0, 1647, 1648, 3, 182, 91, 0, 1648, 1651, 3, 328, 164, 0, 1649, 1650, 5, 34, 0, 0, 1650, 1652, 3, 314, 157, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 215, 1, 0, 0, 0, 1653, 1654, 3, 218, 109, 0, 1654, 217, 1, 0, 0, 0, 1655, 1656, 3, 182, 91, 0, 1656, 1664, 3, 328, 164, 0, 1657, 1661, 3, 224, 112, 0, 1658, 1660, 3, 224, 112, 0, 1659, 1658, 1, 0, 0, 0, 1660, 1663, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1662, 1665, 1, 0, 0, 0, 1663, 1661, 1, 0, 0, 0, 1664, 1657, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1668, 1, 0, 0, 0, 1666, 1667, 5, 34, 0, 0, 1667, 1669, 3, 314, 157, 0, 1668, 1666, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1672, 1, 0, 0, 0, 1670, 1671, 5, 150, 0, 0, 1671, 1673, 5, 110, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 219, 1, 0, 0, 0, 1674, 1682, 3, 212, 106, 0, 1675, 1679, 3, 224, 112, 0, 1676, 1678, 3, 224, 112, 0, 1677, 1676, 1, 0, 0, 0, 1678, 1681, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1679, 1677, 1, 0, 0, 0, 1680, 1683, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1675, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 221, 1, 0, 0, 0, 1684, 1685, 3, 182, 91, 0, 1685, 1688, 3, 328, 164, 0, 1686, 1687, 5, 34, 0, 0, 1687, 1689, 3, 314, 157, 0, 1688, 1686, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1697, 1, 0, 0, 0, 1690, 1694, 3, 224, 112, 0, 1691, 1693, 3, 224, 112, 0, 1692, 1691, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1697, 1690, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 223, 1, 0, 0, 0, 1699, 1701, 5, 132, 0, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1705, 5, 133, 0, 0, 1703, 1705, 3, 226, 113, 0, 1704, 1700, 1, 0, 0, 0, 1704, 1703, 1, 0, 0, 0, 1705, 225, 1, 0, 0, 0, 1706, 1707, 5, 60, 0, 0, 1707, 1715, 3, 304, 152, 0, 1708, 1709, 5, 35, 0, 0, 1709, 1715, 3, 304, 152, 0, 1710, 1711, 5, 51, 0, 0, 1711, 1715, 3, 304, 152, 0, 1712, 1713, 5, 16, 0, 0, 1713, 1715, 3, 360, 180, 0, 1714, 1706, 1, 0, 0, 0, 1714, 1708, 1, 0, 0, 0, 1714, 1710, 1, 0, 0, 0, 1714, 1712, 1, 0, 0, 0, 1715, 227, 1, 0, 0, 0, 1716, 1717, 7, 10, 0, 0, 1717, 229, 1, 0, 0, 0, 1718, 1719, 7, 11, 0, 0, 1719, 231, 1, 0, 0, 0, 1720, 1725, 3, 234, 117, 0, 1721, 1722, 5, 263, 0, 0, 1722, 1724, 3, 234, 117, 0, 1723, 1721, 1, 0, 0, 0, 1724, 1727, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1730, 1, 0, 0, 0, 1727, 1725, 1, 0, 0, 0, 1728, 1729, 5, 263, 0, 0, 1729, 1731, 3, 236, 118, 0, 1730, 1728, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1734, 3, 236, 118, 0, 1733, 1720, 1, 0, 0, 0, 1733, 1732, 1, 0, 0, 0, 1734, 233, 1, 0, 0, 0, 1735, 1737, 5, 89, 0, 0, 1736, 1738, 3, 292, 146, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 5, 146, 0, 0, 1740, 1741, 3, 360, 180, 0, 1741, 235, 1, 0, 0, 0, 1742, 1744, 5, 154, 0, 0, 1743, 1745, 3, 292, 146, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 5, 265, 0, 0, 1747, 1748, 5, 145, 0, 0, 1748, 1754, 3, 238, 119, 0, 1749, 1750, 5, 263, 0, 0, 1750, 1751, 5, 145, 0, 0, 1751, 1753, 3, 238, 119, 0, 1752, 1749, 1, 0, 0, 0, 1753, 1756, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1754, 1752, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1758, 5, 266, 0, 0, 1758, 237, 1, 0, 0, 0, 1759, 1760, 5, 210, 0, 0, 1760, 1761, 3, 244, 122, 0, 1761, 1762, 3, 304, 152, 0, 1762, 1775, 1, 0, 0, 0, 1763, 1764, 3, 304, 152, 0, 1764, 1765, 3, 242, 121, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1763, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1772, 5, 211, 0, 0, 1769, 1770, 3, 242, 121, 0, 1770, 1771, 3, 304, 152, 0, 1771, 1773, 1, 0, 0, 0, 1772, 1769, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1759, 1, 0, 0, 0, 1774, 1766, 1, 0, 0, 0, 1775, 239, 1, 0, 0, 0, 1776, 1777, 5, 30, 0, 0, 1777, 1778, 5, 94, 0, 0, 1778, 1783, 3, 358, 179, 0, 1779, 1780, 5, 216, 0, 0, 1780, 1781, 5, 151, 0, 0, 1781, 1782, 5, 249, 0, 0, 1782, 1784, 3, 360, 180, 0, 1783, 1779, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1787, 5, 197, 0, 0, 1786, 1776, 1, 0, 0, 0, 1786, 1785, 1, 0, 0, 0, 1787, 241, 1, 0, 0, 0, 1788, 1794, 1, 0, 0, 0, 1789, 1794, 5, 251, 0, 0, 1790, 1794, 5, 252, 0, 0, 1791, 1794, 5, 253, 0, 0, 1792, 1794, 5, 254, 0, 0, 1793, 1788, 1, 0, 0, 0, 1793, 1789, 1, 0, 0, 0, 1793, 1790, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1793, 1792, 1, 0, 0, 0, 1794, 243, 1, 0, 0, 0, 1795, 1804, 5, 249, 0, 0, 1796, 1804, 5, 250, 0, 0, 1797, 1804, 5, 115, 0, 0, 1798, 1804, 5, 164, 0, 0, 1799, 1804, 5, 163, 0, 0, 1800, 1804, 5, 15, 0, 0, 1801, 1804, 5, 94, 0, 0, 1802, 1804, 3, 242, 121, 0, 1803, 1795, 1, 0, 0, 0, 1803, 1796, 1, 0, 0, 0, 1803, 1797, 1, 0, 0, 0, 1803, 1798, 1, 0, 0, 0, 1803, 1799, 1, 0, 0, 0, 1803, 1800, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1802, 1, 0, 0, 0, 1804, 245, 1, 0, 0, 0, 1805, 1806, 5, 115, 0, 0, 1806, 1809, 3, 354, 177, 0, 1807, 1808, 7, 12, 0, 0, 1808, 1810, 5, 153, 0, 0, 1809, 1807, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 247, 1, 0, 0, 0, 1811, 1812, 5, 265, 0, 0, 1812, 1817, 3, 256, 128, 0, 1813, 1814, 5, 263, 0, 0, 1814, 1816, 3, 256, 128, 0, 1815, 1813, 1, 0, 0, 0, 1816, 1819, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1820, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1820, 1821, 5, 266, 0, 0, 1821, 249, 1, 0, 0, 0, 1822, 1823, 5, 265, 0, 0, 1823, 1828, 3, 212, 106, 0, 1824, 1825, 5, 263, 0, 0, 1825, 1827, 3, 212, 106, 0, 1826, 1824, 1, 0, 0, 0, 1827, 1830, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1831, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1831, 1832, 5, 266, 0, 0, 1832, 251, 1, 0, 0, 0, 1833, 1838, 3, 304, 152, 0, 1834, 1835, 5, 263, 0, 0, 1835, 1837, 3, 304, 152, 0, 1836, 1834, 1, 0, 0, 0, 1837, 1840, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 253, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1841, 1851, 5, 52, 0, 0, 1842, 1843, 5, 71, 0, 0, 1843, 1844, 5, 191, 0, 0, 1844, 1845, 5, 26, 0, 0, 1845, 1849, 3, 314, 157, 0, 1846, 1847, 5, 63, 0, 0, 1847, 1848, 5, 26, 0, 0, 1848, 1850, 3, 314, 157, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1852, 1, 0, 0, 0, 1851, 1842, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1857, 1, 0, 0, 0, 1853, 1854, 5, 117, 0, 0, 1854, 1855, 5, 191, 0, 0, 1855, 1856, 5, 26, 0, 0, 1856, 1858, 3, 314, 157, 0, 1857, 1853, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 255, 1, 0, 0, 0, 1859, 1862, 3, 358, 179, 0, 1860, 1861, 5, 249, 0, 0, 1861, 1863, 3, 304, 152, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 257, 1, 0, 0, 0, 1864, 1875, 3, 260, 130, 0, 1865, 1866, 5, 139, 0, 0, 1866, 1867, 5, 26, 0, 0, 1867, 1872, 3, 264, 132, 0, 1868, 1869, 5, 263, 0, 0, 1869, 1871, 3, 264, 132, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1876, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1875, 1865, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1883, 1, 0, 0, 0, 1877, 1878, 5, 116, 0, 0, 1878, 1881, 3, 304, 152, 0, 1879, 1880, 5, 135, 0, 0, 1880, 1882, 5, 277, 0, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1884, 1, 0, 0, 0, 1883, 1877, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 259, 1, 0, 0, 0, 1885, 1886, 6, 130, -1, 0, 1886, 1887, 3, 262, 131, 0, 1887, 1902, 1, 0, 0, 0, 1888, 1889, 10, 2, 0, 0, 1889, 1891, 5, 100, 0, 0, 1890, 1892, 3, 276, 138, 0, 1891, 1890, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1901, 3, 260, 130, 3, 1894, 1895, 10, 1, 0, 0, 1895, 1897, 7, 13, 0, 0, 1896, 1898, 3, 276, 138, 0, 1897, 1896, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1901, 3, 260, 130, 2, 1900, 1888, 1, 0, 0, 0, 1900, 1894, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 261, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1922, 3, 266, 133, 0, 1906, 1907, 5, 188, 0, 0, 1907, 1922, 3, 186, 93, 0, 1908, 1909, 5, 211, 0, 0, 1909, 1914, 3, 304, 152, 0, 1910, 1911, 5, 263, 0, 0, 1911, 1913, 3, 304, 152, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1922, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1917, 1918, 5, 265, 0, 0, 1918, 1919, 3, 258, 129, 0, 1919, 1920, 5, 266, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1905, 1, 0, 0, 0, 1921, 1906, 1, 0, 0, 0, 1921, 1908, 1, 0, 0, 0, 1921, 1917, 1, 0, 0, 0, 1922, 263, 1, 0, 0, 0, 1923, 1925, 3, 302, 151, 0, 1924, 1926, 7, 14, 0, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1929, 1, 0, 0, 0, 1927, 1928, 5, 134, 0, 0, 1928, 1930, 7, 15, 0, 0, 1929, 1927, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 265, 1, 0, 0, 0, 1931, 1933, 5, 174, 0, 0, 1932, 1934, 3, 276, 138, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1936, 1, 0, 0, 0, 1935, 1937, 5, 183, 0, 0, 1936, 1935, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1943, 3, 278, 139, 0, 1939, 1940, 5, 263, 0, 0, 1940, 1942, 3, 278, 139, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1955, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1947, 5, 82, 0, 0, 1947, 1952, 3, 280, 140, 0, 1948, 1949, 5, 263, 0, 0, 1949, 1951, 3, 280, 140, 0, 1950, 1948, 1, 0, 0, 0, 1951, 1954, 1, 0, 0, 0, 1952, 1950, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1956, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1955, 1946, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1958, 5, 215, 0, 0, 1958, 1960, 3, 306, 153, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1964, 1, 0, 0, 0, 1961, 1962, 5, 87, 0, 0, 1962, 1963, 5, 26, 0, 0, 1963, 1965, 3, 268, 134, 0, 1964, 1961, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1967, 5, 90, 0, 0, 1967, 1969, 3, 306, 153, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 267, 1, 0, 0, 0, 1970, 1972, 3, 276, 138, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1978, 3, 270, 135, 0, 1974, 1975, 5, 263, 0, 0, 1975, 1977, 3, 270, 135, 0, 1976, 1974, 1, 0, 0, 0, 1977, 1980, 1, 0, 0, 0, 1978, 1976, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 269, 1, 0, 0, 0, 1980, 1978, 1, 0, 0, 0, 1981, 1982, 3, 272, 136, 0, 1982, 271, 1, 0, 0, 0, 1983, 1992, 5, 265, 0, 0, 1984, 1989, 3, 302, 151, 0, 1985, 1986, 5, 263, 0, 0, 1986, 1988, 3, 302, 151, 0, 1987, 1985, 1, 0, 0, 0, 1988, 1991, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1993, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1984, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1997, 5, 266, 0, 0, 1995, 1997, 3, 302, 151, 0, 1996, 1983, 1, 0, 0, 0, 1996, 1995, 1, 0, 0, 0, 1997, 273, 1, 0, 0, 0, 1998, 2000, 3, 358, 179, 0, 1999, 2001, 3, 292, 146, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 5, 9, 0, 0, 2003, 2004, 3, 296, 148, 0, 2004, 275, 1, 0, 0, 0, 2005, 2006, 7, 16, 0, 0, 2006, 277, 1, 0, 0, 0, 2007, 2012, 3, 302, 151, 0, 2008, 2010, 5, 9, 0, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2013, 3, 358, 179, 0, 2012, 2009, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2020, 1, 0, 0, 0, 2014, 2015, 3, 354, 177, 0, 2015, 2016, 5, 261, 0, 0, 2016, 2017, 5, 257, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2020, 5, 257, 0, 0, 2019, 2007, 1, 0, 0, 0, 2019, 2014, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 279, 1, 0, 0, 0, 2021, 2022, 6, 140, -1, 0, 2022, 2023, 3, 286, 143, 0, 2023, 2037, 1, 0, 0, 0, 2024, 2033, 10, 2, 0, 0, 2025, 2026, 5, 38, 0, 0, 2026, 2027, 5, 109, 0, 0, 2027, 2034, 3, 286, 143, 0, 2028, 2029, 3, 282, 141, 0, 2029, 2030, 5, 109, 0, 0, 2030, 2031, 3, 280, 140, 0, 2031, 2032, 3, 284, 142, 0, 2032, 2034, 1, 0, 0, 0, 2033, 2025, 1, 0, 0, 0, 2033, 2028, 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2024, 1, 0, 0, 0, 2036, 2039, 1, 0, 0, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 281, 1, 0, 0, 0, 2039, 2037, 1, 0, 0, 0, 2040, 2042, 5, 97, 0, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2072, 1, 0, 0, 0, 2043, 2045, 5, 114, 0, 0, 2044, 2046, 5, 97, 0, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2072, 1, 0, 0, 0, 2047, 2049, 5, 165, 0, 0, 2048, 2050, 5, 97, 0, 0, 2049, 2048, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2072, 1, 0, 0, 0, 2051, 2053, 5, 114, 0, 0, 2052, 2054, 5, 141, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2072, 1, 0, 0, 0, 2055, 2057, 5, 165, 0, 0, 2056, 2058, 5, 141, 0, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2072, 1, 0, 0, 0, 2059, 2061, 5, 83, 0, 0, 2060, 2062, 5, 141, 0, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2072, 1, 0, 0, 0, 2063, 2064, 5, 114, 0, 0, 2064, 2072, 5, 177, 0, 0, 2065, 2066, 5, 165, 0, 0, 2066, 2072, 5, 177, 0, 0, 2067, 2068, 5, 114, 0, 0, 2068, 2072, 5, 7, 0, 0, 2069, 2070, 5, 165, 0, 0, 2070, 2072, 5, 7, 0, 0, 2071, 2041, 1, 0, 0, 0, 2071, 2043, 1, 0, 0, 0, 2071, 2047, 1, 0, 0, 0, 2071, 2051, 1, 0, 0, 0, 2071, 2055, 1, 0, 0, 0, 2071, 2059, 1, 0, 0, 0, 2071, 2063, 1, 0, 0, 0, 2071, 2065, 1, 0, 0, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2072, 283, 1, 0, 0, 0, 2073, 2074, 5, 136, 0, 0, 2074, 2088, 3, 306, 153, 0, 2075, 2076, 5, 205, 0, 0, 2076, 2077, 5, 265, 0, 0, 2077, 2082, 3, 358, 179, 0, 2078, 2079, 5, 263, 0, 0, 2079, 2081, 3, 358, 179, 0, 2080, 2078, 1, 0, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2080, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2085, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2085, 2086, 5, 266, 0, 0, 2086, 2088, 1, 0, 0, 0, 2087, 2073, 1, 0, 0, 0, 2087, 2075, 1, 0, 0, 0, 2088, 285, 1, 0, 0, 0, 2089, 2102, 3, 290, 145, 0, 2090, 2091, 5, 190, 0, 0, 2091, 2092, 3, 288, 144, 0, 2092, 2093, 5, 265, 0, 0, 2093, 2094, 3, 304, 152, 0, 2094, 2100, 5, 266, 0, 0, 2095, 2096, 5, 157, 0, 0, 2096, 2097, 5, 265, 0, 0, 2097, 2098, 3, 304, 152, 0, 2098, 2099, 5, 266, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2095, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2090, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 287, 1, 0, 0, 0, 2104, 2105, 7, 17, 0, 0, 2105, 289, 1, 0, 0, 0, 2106, 2114, 3, 294, 147, 0, 2107, 2109, 5, 9, 0, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 3, 358, 179, 0, 2111, 2113, 3, 292, 146, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2108, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 291, 1, 0, 0, 0, 2116, 2117, 5, 265, 0, 0, 2117, 2122, 3, 192, 96, 0, 2118, 2119, 5, 263, 0, 0, 2119, 2121, 3, 192, 96, 0, 2120, 2118, 1, 0, 0, 0, 2121, 2124, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2125, 2126, 5, 266, 0, 0, 2126, 293, 1, 0, 0, 0, 2127, 2135, 3, 194, 97, 0, 2128, 2130, 5, 113, 0, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2135, 3, 296, 148, 0, 2132, 2135, 3, 298, 149, 0, 2133, 2135, 3, 300, 150, 0, 2134, 2127, 1, 0, 0, 0, 2134, 2129, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2133, 1, 0, 0, 0, 2135, 295, 1, 0, 0, 0, 2136, 2137, 5, 265, 0, 0, 2137, 2138, 3, 204, 102, 0, 2138, 2139, 5, 266, 0, 0, 2139, 297, 1, 0, 0, 0, 2140, 2141, 5, 201, 0, 0, 2141, 2142, 5, 265, 0, 0, 2142, 2147, 3, 304, 152, 0, 2143, 2144, 5, 263, 0, 0, 2144, 2146, 3, 304, 152, 0, 2145, 2143, 1, 0, 0, 0, 2146, 2149, 1, 0, 0, 0, 2147, 2145, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2147, 1, 0, 0, 0, 2150, 2153, 5, 266, 0, 0, 2151, 2152, 5, 216, 0, 0, 2152, 2154, 5, 140, 0, 0, 2153, 2151, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 299, 1, 0, 0, 0, 2155, 2156, 5, 265, 0, 0, 2156, 2157, 3, 280, 140, 0, 2157, 2158, 5, 266, 0, 0, 2158, 301, 1, 0, 0, 0, 2159, 2162, 3, 192, 96, 0, 2160, 2162, 3, 304, 152, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2160, 1, 0, 0, 0, 2162, 303, 1, 0, 0, 0, 2163, 2164, 3, 306, 153, 0, 2164, 305, 1, 0, 0, 0, 2165, 2166, 6, 153, -1, 0, 2166, 2168, 3, 310, 155, 0, 2167, 2169, 3, 308, 154, 0, 2168, 2167, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2173, 1, 0, 0, 0, 2170, 2171, 5, 132, 0, 0, 2171, 2173, 3, 306, 153, 3, 2172, 2165, 1, 0, 0, 0, 2172, 2170, 1, 0, 0, 0, 2173, 2182, 1, 0, 0, 0, 2174, 2175, 10, 2, 0, 0, 2175, 2176, 5, 5, 0, 0, 2176, 2181, 3, 306, 153, 3, 2177, 2178, 10, 1, 0, 0, 2178, 2179, 5, 138, 0, 0, 2179, 2181, 3, 306, 153, 2, 2180, 2174, 1, 0, 0, 0, 2180, 2177, 1, 0, 0, 0, 2181, 2184, 1, 0, 0, 0, 2182, 2180, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 307, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2185, 2186, 3, 316, 158, 0, 2186, 2187, 3, 310, 155, 0, 2187, 2244, 1, 0, 0, 0, 2188, 2189, 3, 316, 158, 0, 2189, 2190, 3, 318, 159, 0, 2190, 2191, 3, 296, 148, 0, 2191, 2244, 1, 0, 0, 0, 2192, 2194, 5, 132, 0, 0, 2193, 2192, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 5, 15, 0, 0, 2196, 2197, 3, 310, 155, 0, 2197, 2198, 5, 5, 0, 0, 2198, 2199, 3, 310, 155, 0, 2199, 2244, 1, 0, 0, 0, 2200, 2202, 5, 132, 0, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 5, 94, 0, 0, 2204, 2205, 5, 265, 0, 0, 2205, 2210, 3, 304, 152, 0, 2206, 2207, 5, 263, 0, 0, 2207, 2209, 3, 304, 152, 0, 2208, 2206, 1, 0, 0, 0, 2209, 2212, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2213, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2214, 5, 266, 0, 0, 2214, 2244, 1, 0, 0, 0, 2215, 2217, 5, 132, 0, 0, 2216, 2215, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2219, 5, 94, 0, 0, 2219, 2244, 3, 296, 148, 0, 2220, 2222, 5, 132, 0, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 7, 18, 0, 0, 2224, 2227, 3, 310, 155, 0, 2225, 2226, 5, 62, 0, 0, 2226, 2228, 3, 310, 155, 0, 2227, 2225, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2244, 1, 0, 0, 0, 2229, 2230, 7, 19, 0, 0, 2230, 2244, 3, 310, 155, 0, 2231, 2233, 5, 108, 0, 0, 2232, 2234, 5, 132, 0, 0, 2233, 2232, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2244, 7, 20, 0, 0, 2236, 2238, 5, 108, 0, 0, 2237, 2239, 5, 132, 0, 0, 2238, 2237, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 5, 57, 0, 0, 2241, 2242, 5, 82, 0, 0, 2242, 2244, 3, 310, 155, 0, 2243, 2185, 1, 0, 0, 0, 2243, 2188, 1, 0, 0, 0, 2243, 2193, 1, 0, 0, 0, 2243, 2201, 1, 0, 0, 0, 2243, 2216, 1, 0, 0, 0, 2243, 2221, 1, 0, 0, 0, 2243, 2229, 1, 0, 0, 0, 2243, 2231, 1, 0, 0, 0, 2243, 2236, 1, 0, 0, 0, 2244, 309, 1, 0, 0, 0, 2245, 2246, 6, 155, -1, 0, 2246, 2250, 3, 312, 156, 0, 2247, 2248, 7, 21, 0, 0, 2248, 2250, 3, 310, 155, 4, 2249, 2245, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2262, 1, 0, 0, 0, 2251, 2252, 10, 3, 0, 0, 2252, 2253, 7, 22, 0, 0, 2253, 2261, 3, 310, 155, 4, 2254, 2255, 10, 2, 0, 0, 2255, 2256, 7, 21, 0, 0, 2256, 2261, 3, 310, 155, 3, 2257, 2258, 10, 1, 0, 0, 2258, 2259, 5, 260, 0, 0, 2259, 2261, 3, 310, 155, 2, 2260, 2251, 1, 0, 0, 0, 2260, 2254, 1, 0, 0, 0, 2260, 2257, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 311, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2266, 6, 156, -1, 0, 2266, 2512, 5, 133, 0, 0, 2267, 2512, 3, 322, 161, 0, 2268, 2269, 3, 358, 179, 0, 2269, 2270, 3, 314, 157, 0, 2270, 2512, 1, 0, 0, 0, 2271, 2272, 5, 286, 0, 0, 2272, 2512, 3, 314, 157, 0, 2273, 2512, 3, 360, 180, 0, 2274, 2512, 3, 320, 160, 0, 2275, 2512, 3, 314, 157, 0, 2276, 2512, 5, 276, 0, 0, 2277, 2512, 5, 272, 0, 0, 2278, 2279, 5, 148, 0, 0, 2279, 2280, 5, 265, 0, 0, 2280, 2281, 3, 310, 155, 0, 2281, 2282, 5, 94, 0, 0, 2282, 2283, 3, 310, 155, 0, 2283, 2284, 5, 266, 0, 0, 2284, 2512, 1, 0, 0, 0, 2285, 2286, 5, 265, 0, 0, 2286, 2289, 3, 304, 152, 0, 2287, 2288, 5, 9, 0, 0, 2288, 2290, 3, 328, 164, 0, 2289, 2287, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2299, 1, 0, 0, 0, 2291, 2292, 5, 263, 0, 0, 2292, 2295, 3, 304, 152, 0, 2293, 2294, 5, 9, 0, 0, 2294, 2296, 3, 328, 164, 0, 2295, 2293, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2298, 1, 0, 0, 0, 2297, 2291, 1, 0, 0, 0, 2298, 2301, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2299, 1, 0, 0, 0, 2302, 2303, 5, 266, 0, 0, 2303, 2512, 1, 0, 0, 0, 2304, 2305, 5, 168, 0, 0, 2305, 2306, 5, 265, 0, 0, 2306, 2311, 3, 304, 152, 0, 2307, 2308, 5, 263, 0, 0, 2308, 2310, 3, 304, 152, 0, 2309, 2307, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 266, 0, 0, 2315, 2512, 1, 0, 0, 0, 2316, 2317, 3, 190, 95, 0, 2317, 2318, 5, 265, 0, 0, 2318, 2319, 5, 257, 0, 0, 2319, 2321, 5, 266, 0, 0, 2320, 2322, 3, 338, 169, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2324, 1, 0, 0, 0, 2323, 2325, 3, 340, 170, 0, 2324, 2323, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2512, 1, 0, 0, 0, 2326, 2327, 3, 190, 95, 0, 2327, 2339, 5, 265, 0, 0, 2328, 2330, 3, 276, 138, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2336, 3, 304, 152, 0, 2332, 2333, 5, 263, 0, 0, 2333, 2335, 3, 304, 152, 0, 2334, 2332, 1, 0, 0, 0, 2335, 2338, 1, 0, 0, 0, 2336, 2334, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2329, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2351, 1, 0, 0, 0, 2341, 2342, 5, 139, 0, 0, 2342, 2343, 5, 26, 0, 0, 2343, 2348, 3, 264, 132, 0, 2344, 2345, 5, 263, 0, 0, 2345, 2347, 3, 264, 132, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2341, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 5, 266, 0, 0, 2354, 2356, 3, 338, 169, 0, 2355, 2354, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2359, 3, 340, 170, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2512, 1, 0, 0, 0, 2360, 2361, 3, 358, 179, 0, 2361, 2362, 5, 273, 0, 0, 2362, 2363, 3, 304, 152, 0, 2363, 2512, 1, 0, 0, 0, 2364, 2373, 5, 265, 0, 0, 2365, 2370, 3, 358, 179, 0, 2366, 2367, 5, 263, 0, 0, 2367, 2369, 3, 358, 179, 0, 2368, 2366, 1, 0, 0, 0, 2369, 2372, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2374, 1, 0, 0, 0, 2372, 2370, 1, 0, 0, 0, 2373, 2365, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 5, 266, 0, 0, 2376, 2377, 5, 273, 0, 0, 2377, 2512, 3, 304, 152, 0, 2378, 2379, 5, 265, 0, 0, 2379, 2380, 3, 204, 102, 0, 2380, 2381, 5, 266, 0, 0, 2381, 2512, 1, 0, 0, 0, 2382, 2383, 5, 66, 0, 0, 2383, 2384, 5, 265, 0, 0, 2384, 2385, 3, 204, 102, 0, 2385, 2386, 5, 266, 0, 0, 2386, 2512, 1, 0, 0, 0, 2387, 2388, 5, 28, 0, 0, 2388, 2390, 3, 310, 155, 0, 2389, 2391, 3, 336, 168, 0, 2390, 2389, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2396, 1, 0, 0, 0, 2394, 2395, 5, 59, 0, 0, 2395, 2397, 3, 304, 152, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 5, 61, 0, 0, 2399, 2512, 1, 0, 0, 0, 2400, 2402, 5, 28, 0, 0, 2401, 2403, 3, 336, 168, 0, 2402, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2407, 5, 59, 0, 0, 2407, 2409, 3, 304, 152, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 5, 61, 0, 0, 2411, 2512, 1, 0, 0, 0, 2412, 2413, 5, 29, 0, 0, 2413, 2414, 5, 265, 0, 0, 2414, 2415, 3, 304, 152, 0, 2415, 2416, 5, 9, 0, 0, 2416, 2417, 3, 328, 164, 0, 2417, 2418, 5, 266, 0, 0, 2418, 2512, 1, 0, 0, 0, 2419, 2420, 5, 195, 0, 0, 2420, 2421, 5, 265, 0, 0, 2421, 2422, 3, 304, 152, 0, 2422, 2423, 5, 9, 0, 0, 2423, 2424, 3, 328, 164, 0, 2424, 2425, 5, 266, 0, 0, 2425, 2512, 1, 0, 0, 0, 2426, 2427, 5, 8, 0, 0, 2427, 2436, 5, 267, 0, 0, 2428, 2433, 3, 304, 152, 0, 2429, 2430, 5, 263, 0, 0, 2430, 2432, 3, 304, 152, 0, 2431, 2429, 1, 0, 0, 0, 2432, 2435, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2436, 2428, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2512, 5, 268, 0, 0, 2439, 2512, 3, 358, 179, 0, 2440, 2512, 5, 40, 0, 0, 2441, 2445, 5, 42, 0, 0, 2442, 2443, 5, 265, 0, 0, 2443, 2444, 5, 277, 0, 0, 2444, 2446, 5, 266, 0, 0, 2445, 2442, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2512, 1, 0, 0, 0, 2447, 2451, 5, 43, 0, 0, 2448, 2449, 5, 265, 0, 0, 2449, 2450, 5, 277, 0, 0, 2450, 2452, 5, 266, 0, 0, 2451, 2448, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2512, 1, 0, 0, 0, 2453, 2457, 5, 119, 0, 0, 2454, 2455, 5, 265, 0, 0, 2455, 2456, 5, 277, 0, 0, 2456, 2458, 5, 266, 0, 0, 2457, 2454, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2512, 1, 0, 0, 0, 2459, 2463, 5, 120, 0, 0, 2460, 2461, 5, 265, 0, 0, 2461, 2462, 5, 277, 0, 0, 2462, 2464, 5, 266, 0, 0, 2463, 2460, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2512, 1, 0, 0, 0, 2465, 2512, 5, 44, 0, 0, 2466, 2512, 5, 41, 0, 0, 2467, 2468, 5, 184, 0, 0, 2468, 2469, 5, 265, 0, 0, 2469, 2470, 3, 310, 155, 0, 2470, 2471, 5, 82, 0, 0, 2471, 2474, 3, 310, 155, 0, 2472, 2473, 5, 78, 0, 0, 2473, 2475, 3, 310, 155, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2477, 5, 266, 0, 0, 2477, 2512, 1, 0, 0, 0, 2478, 2479, 5, 131, 0, 0, 2479, 2480, 5, 265, 0, 0, 2480, 2483, 3, 310, 155, 0, 2481, 2482, 5, 263, 0, 0, 2482, 2484, 3, 326, 163, 0, 2483, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 5, 266, 0, 0, 2486, 2512, 1, 0, 0, 0, 2487, 2488, 5, 68, 0, 0, 2488, 2489, 5, 265, 0, 0, 2489, 2490, 3, 358, 179, 0, 2490, 2491, 5, 82, 0, 0, 2491, 2492, 3, 310, 155, 0, 2492, 2493, 5, 266, 0, 0, 2493, 2512, 1, 0, 0, 0, 2494, 2495, 5, 265, 0, 0, 2495, 2496, 3, 304, 152, 0, 2496, 2497, 5, 266, 0, 0, 2497, 2512, 1, 0, 0, 0, 2498, 2499, 5, 88, 0, 0, 2499, 2508, 5, 265, 0, 0, 2500, 2505, 3, 354, 177, 0, 2501, 2502, 5, 263, 0, 0, 2502, 2504, 3, 354, 177, 0, 2503, 2501, 1, 0, 0, 0, 2504, 2507, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2509, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2508, 2500, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2512, 5, 266, 0, 0, 2511, 2265, 1, 0, 0, 0, 2511, 2267, 1, 0, 0, 0, 2511, 2268, 1, 0, 0, 0, 2511, 2271, 1, 0, 0, 0, 2511, 2273, 1, 0, 0, 0, 2511, 2274, 1, 0, 0, 0, 2511, 2275, 1, 0, 0, 0, 2511, 2276, 1, 0, 0, 0, 2511, 2277, 1, 0, 0, 0, 2511, 2278, 1, 0, 0, 0, 2511, 2285, 1, 0, 0, 0, 2511, 2304, 1, 0, 0, 0, 2511, 2316, 1, 0, 0, 0, 2511, 2326, 1, 0, 0, 0, 2511, 2360, 1, 0, 0, 0, 2511, 2364, 1, 0, 0, 0, 2511, 2378, 1, 0, 0, 0, 2511, 2382, 1, 0, 0, 0, 2511, 2387, 1, 0, 0, 0, 2511, 2400, 1, 0, 0, 0, 2511, 2412, 1, 0, 0, 0, 2511, 2419, 1, 0, 0, 0, 2511, 2426, 1, 0, 0, 0, 2511, 2439, 1, 0, 0, 0, 2511, 2440, 1, 0, 0, 0, 2511, 2441, 1, 0, 0, 0, 2511, 2447, 1, 0, 0, 0, 2511, 2453, 1, 0, 0, 0, 2511, 2459, 1, 0, 0, 0, 2511, 2465, 1, 0, 0, 0, 2511, 2466, 1, 0, 0, 0, 2511, 2467, 1, 0, 0, 0, 2511, 2478, 1, 0, 0, 0, 2511, 2487, 1, 0, 0, 0, 2511, 2494, 1, 0, 0, 0, 2511, 2498, 1, 0, 0, 0, 2512, 2523, 1, 0, 0, 0, 2513, 2514, 10, 15, 0, 0, 2514, 2515, 5, 267, 0, 0, 2515, 2516, 3, 310, 155, 0, 2516, 2517, 5, 268, 0, 0, 2517, 2522, 1, 0, 0, 0, 2518, 2519, 10, 13, 0, 0, 2519, 2520, 5, 261, 0, 0, 2520, 2522, 3, 358, 179, 0, 2521, 2513, 1, 0, 0, 0, 2521, 2518, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 313, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2533, 5, 274, 0, 0, 2527, 2530, 5, 275, 0, 0, 2528, 2529, 5, 198, 0, 0, 2529, 2531, 5, 274, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2526, 1, 0, 0, 0, 2532, 2527, 1, 0, 0, 0, 2533, 315, 1, 0, 0, 0, 2534, 2535, 7, 23, 0, 0, 2535, 317, 1, 0, 0, 0, 2536, 2537, 7, 24, 0, 0, 2537, 319, 1, 0, 0, 0, 2538, 2539, 7, 25, 0, 0, 2539, 321, 1, 0, 0, 0, 2540, 2541, 5, 277, 0, 0, 2541, 2555, 3, 324, 162, 0, 2542, 2543, 5, 265, 0, 0, 2543, 2544, 5, 277, 0, 0, 2544, 2545, 5, 266, 0, 0, 2545, 2555, 3, 324, 162, 0, 2546, 2547, 5, 101, 0, 0, 2547, 2548, 5, 277, 0, 0, 2548, 2555, 3, 324, 162, 0, 2549, 2550, 5, 101, 0, 0, 2550, 2551, 5, 265, 0, 0, 2551, 2552, 5, 277, 0, 0, 2552, 2553, 5, 266, 0, 0, 2553, 2555, 3, 324, 162, 0, 2554, 2540, 1, 0, 0, 0, 2554, 2542, 1, 0, 0, 0, 2554, 2546, 1, 0, 0, 0, 2554, 2549, 1, 0, 0, 0, 2555, 323, 1, 0, 0, 0, 2556, 2557, 7, 26, 0, 0, 2557, 325, 1, 0, 0, 0, 2558, 2559, 7, 27, 0, 0, 2559, 327, 1, 0, 0, 0, 2560, 2561, 6, 164, -1, 0, 2561, 2562, 5, 8, 0, 0, 2562, 2563, 5, 251, 0, 0, 2563, 2564, 3, 328, 164, 0, 2564, 2565, 5, 253, 0, 0, 2565, 2606, 1, 0, 0, 0, 2566, 2567, 5, 235, 0, 0, 2567, 2568, 5, 251, 0, 0, 2568, 2569, 3, 328, 164, 0, 2569, 2570, 5, 263, 0, 0, 2570, 2571, 3, 328, 164, 0, 2571, 2572, 5, 253, 0, 0, 2572, 2606, 1, 0, 0, 0, 2573, 2574, 5, 240, 0, 0, 2574, 2575, 5, 251, 0, 0, 2575, 2576, 3, 358, 179, 0, 2576, 2583, 3, 328, 164, 0, 2577, 2578, 5, 263, 0, 0, 2578, 2579, 3, 358, 179, 0, 2579, 2580, 3, 328, 164, 0, 2580, 2582, 1, 0, 0, 0, 2581, 2577, 1, 0, 0, 0, 2582, 2585, 1, 0, 0, 0, 2583, 2581, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2583, 1, 0, 0, 0, 2586, 2587, 5, 253, 0, 0, 2587, 2606, 1, 0, 0, 0, 2588, 2591, 3, 334, 167, 0, 2589, 2591, 3, 330, 165, 0, 2590, 2588, 1, 0, 0, 0, 2590, 2589, 1, 0, 0, 0, 2591, 2603, 1, 0, 0, 0, 2592, 2593, 5, 265, 0, 0, 2593, 2598, 3, 332, 166, 0, 2594, 2595, 5, 263, 0, 0, 2595, 2597, 3, 332, 166, 0, 2596, 2594, 1, 0, 0, 0, 2597, 2600, 1, 0, 0, 0, 2598, 2596, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2601, 2602, 5, 266, 0, 0, 2602, 2604, 1, 0, 0, 0, 2603, 2592, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2606, 1, 0, 0, 0, 2605, 2560, 1, 0, 0, 0, 2605, 2566, 1, 0, 0, 0, 2605, 2573, 1, 0, 0, 0, 2605, 2590, 1, 0, 0, 0, 2606, 2611, 1, 0, 0, 0, 2607, 2608, 10, 5, 0, 0, 2608, 2610, 5, 8, 0, 0, 2609, 2607, 1, 0, 0, 0, 2610, 2613, 1, 0, 0, 0, 2611, 2609, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 329, 1, 0, 0, 0, 2613, 2611, 1, 0, 0, 0, 2614, 2615, 7, 28, 0, 0, 2615, 331, 1, 0, 0, 0, 2616, 2619, 5, 277, 0, 0, 2617, 2619, 3, 328, 164, 0, 2618, 2616, 1, 0, 0, 0, 2618, 2617, 1, 0, 0, 0, 2619, 333, 1, 0, 0, 0, 2620, 2625, 5, 284, 0, 0, 2621, 2625, 5, 285, 0, 0, 2622, 2625, 5, 286, 0, 0, 2623, 2625, 3, 358, 179, 0, 2624, 2620, 1, 0, 0, 0, 2624, 2621, 1, 0, 0, 0, 2624, 2622, 1, 0, 0, 0, 2624, 2623, 1, 0, 0, 0, 2625, 335, 1, 0, 0, 0, 2626, 2627, 5, 214, 0, 0, 2627, 2628, 3, 304, 152, 0, 2628, 2629, 5, 192, 0, 0, 2629, 2630, 3, 304, 152, 0, 2630, 337, 1, 0, 0, 0, 2631, 2632, 5, 74, 0, 0, 2632, 2633, 5, 265, 0, 0, 2633, 2634, 5, 215, 0, 0, 2634, 2635, 3, 306, 153, 0, 2635, 2636, 5, 266, 0, 0, 2636, 339, 1, 0, 0, 0, 2637, 2638, 5, 143, 0, 0, 2638, 2649, 5, 265, 0, 0, 2639, 2640, 5, 145, 0, 0, 2640, 2641, 5, 26, 0, 0, 2641, 2646, 3, 304, 152, 0, 2642, 2643, 5, 263, 0, 0, 2643, 2645, 3, 304, 152, 0, 2644, 2642, 1, 0, 0, 0, 2645, 2648, 1, 0, 0, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2650, 1, 0, 0, 0, 2648, 2646, 1, 0, 0, 0, 2649, 2639, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2661, 1, 0, 0, 0, 2651, 2652, 5, 139, 0, 0, 2652, 2653, 5, 26, 0, 0, 2653, 2658, 3, 264, 132, 0, 2654, 2655, 5, 263, 0, 0, 2655, 2657, 3, 264, 132, 0, 2656, 2654, 1, 0, 0, 0, 2657, 2660, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2662, 1, 0, 0, 0, 2660, 2658, 1, 0, 0, 0, 2661, 2651, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2665, 3, 342, 171, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 5, 266, 0, 0, 2667, 341, 1, 0, 0, 0, 2668, 2669, 5, 154, 0, 0, 2669, 2685, 3, 344, 172, 0, 2670, 2671, 5, 169, 0, 0, 2671, 2685, 3, 344, 172, 0, 2672, 2673, 5, 154, 0, 0, 2673, 2674, 5, 15, 0, 0, 2674, 2675, 3, 344, 172, 0, 2675, 2676, 5, 5, 0, 0, 2676, 2677, 3, 344, 172, 0, 2677, 2685, 1, 0, 0, 0, 2678, 2679, 5, 169, 0, 0, 2679, 2680, 5, 15, 0, 0, 2680, 2681, 3, 344, 172, 0, 2681, 2682, 5, 5, 0, 0, 2682, 2683, 3, 344, 172, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2668, 1, 0, 0, 0, 2684, 2670, 1, 0, 0, 0, 2684, 2672, 1, 0, 0, 0, 2684, 2678, 1, 0, 0, 0, 2685, 343, 1, 0, 0, 0, 2686, 2687, 5, 199, 0, 0, 2687, 2696, 5, 149, 0, 0, 2688, 2689, 5, 199, 0, 0, 2689, 2696, 5, 77, 0, 0, 2690, 2691, 5, 39, 0, 0, 2691, 2696, 5, 168, 0, 0, 2692, 2693, 3, 304, 152, 0, 2693, 2694, 7, 29, 0, 0, 2694, 2696, 1, 0, 0, 0, 2695, 2686, 1, 0, 0, 0, 2695, 2688, 1, 0, 0, 0, 2695, 2690, 1, 0, 0, 0, 2695, 2692, 1, 0, 0, 0, 2696, 345, 1, 0, 0, 0, 2697, 2698, 3, 358, 179, 0, 2698, 2699, 5, 261, 0, 0, 2699, 2700, 3, 358, 179, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2703, 3, 358, 179, 0, 2702, 2697, 1, 0, 0, 0, 2702, 2701, 1, 0, 0, 0, 2703, 347, 1, 0, 0, 0, 2704, 2709, 3, 346, 173, 0, 2705, 2706, 5, 263, 0, 0, 2706, 2708, 3, 346, 173, 0, 2707, 2705, 1, 0, 0, 0, 2708, 2711, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 349, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2712, 2726, 5, 2, 0, 0, 2713, 2726, 5, 4, 0, 0, 2714, 2726, 5, 58, 0, 0, 2715, 2726, 5, 37, 0, 0, 2716, 2726, 5, 99, 0, 0, 2717, 2726, 5, 162, 0, 0, 2718, 2723, 5, 174, 0, 0, 2719, 2720, 5, 265, 0, 0, 2720, 2721, 3, 358, 179, 0, 2721, 2722, 5, 266, 0, 0, 2722, 2724, 1, 0, 0, 0, 2723, 2719, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2712, 1, 0, 0, 0, 2725, 2713, 1, 0, 0, 0, 2725, 2714, 1, 0, 0, 0, 2725, 2715, 1, 0, 0, 0, 2725, 2716, 1, 0, 0, 0, 2725, 2717, 1, 0, 0, 0, 2725, 2718, 1, 0, 0, 0, 2726, 351, 1, 0, 0, 0, 2727, 2728, 7, 30, 0, 0, 2728, 353, 1, 0, 0, 0, 2729, 2734, 3, 358, 179, 0, 2730, 2731, 5, 261, 0, 0, 2731, 2733, 3, 358, 179, 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, 355, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2738, 5, 166, 0, 0, 2738, 2744, 3, 358, 179, 0, 2739, 2740, 5, 204, 0, 0, 2740, 2744, 3, 358, 179, 0, 2741, 2742, 5, 87, 0, 0, 2742, 2744, 3, 358, 179, 0, 2743, 2737, 1, 0, 0, 0, 2743, 2739, 1, 0, 0, 0, 2743, 2741, 1, 0, 0, 0, 2744, 357, 1, 0, 0, 0, 2745, 2751, 5, 280, 0, 0, 2746, 2751, 5, 274, 0, 0, 2747, 2751, 3, 364, 182, 0, 2748, 2751, 5, 283, 0, 0, 2749, 2751, 5, 281, 0, 0, 2750, 2745, 1, 0, 0, 0, 2750, 2746, 1, 0, 0, 0, 2750, 2747, 1, 0, 0, 0, 2750, 2748, 1, 0, 0, 0, 2750, 2749, 1, 0, 0, 0, 2751, 359, 1, 0, 0, 0, 2752, 2754, 5, 256, 0, 0, 2753, 2752, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2765, 5, 278, 0, 0, 2756, 2758, 5, 256, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2765, 5, 279, 0, 0, 2760, 2762, 5, 256, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2765, 5, 277, 0, 0, 2764, 2753, 1, 0, 0, 0, 2764, 2757, 1, 0, 0, 0, 2764, 2761, 1, 0, 0, 0, 2765, 361, 1, 0, 0, 0, 2766, 2767, 7, 31, 0, 0, 2767, 363, 1, 0, 0, 0, 2768, 2769, 7, 32, 0, 0, 2769, 365, 1, 0, 0, 0, 352, 369, 376, 400, 413, 417, 421, 430, 435, 439, 445, 447, 452, 456, 460, 467, 472, 478, 482, 491, 498, 502, 507, 509, 514, 518, 525, 529, 534, 538, 542, 546, 554, 559, 563, 571, 575, 584, 587, 590, 596, 603, 614, 619, 624, 629, 634, 643, 646, 649, 653, 679, 705, 714, 724, 727, 741, 759, 761, 770, 781, 790, 797, 801, 808, 814, 817, 822, 829, 843, 856, 861, 866, 872, 908, 911, 917, 920, 926, 932, 944, 946, 957, 965, 970, 974, 979, 986, 990, 994, 1000, 1004, 1008, 1017, 1020, 1023, 1031, 1045, 1052, 1065, 1071, 1076, 1079, 1082, 1087, 1091, 1100, 1105, 1111, 1115, 1120, 1125, 1128, 1136, 1139, 1143, 1155, 1158, 1162, 1167, 1171, 1187, 1192, 1199, 1202, 1208, 1211, 1218, 1221, 1225, 1230, 1233, 1240, 1243, 1267, 1281, 1285, 1289, 1309, 1311, 1313, 1322, 1324, 1333, 1335, 1344, 1346, 1351, 1360, 1369, 1378, 1389, 1395, 1400, 1403, 1416, 1426, 1430, 1435, 1446, 1451, 1484, 1492, 1497, 1501, 1505, 1510, 1514, 1519, 1524, 1529, 1533, 1542, 1545, 1549, 1556, 1567, 1573, 1577, 1583, 1593, 1600, 1605, 1610, 1615, 1621, 1624, 1633, 1636, 1639, 1645, 1651, 1661, 1664, 1668, 1672, 1679, 1682, 1688, 1694, 1697, 1700, 1704, 1714, 1725, 1730, 1733, 1737, 1744, 1754, 1766, 1772, 1774, 1783, 1786, 1793, 1803, 1809, 1817, 1828, 1838, 1849, 1851, 1857, 1862, 1872, 1875, 1881, 1883, 1891, 1897, 1900, 1902, 1914, 1921, 1925, 1929, 1933, 1936, 1943, 1952, 1955, 1959, 1964, 1968, 1971, 1978, 1989, 1992, 1996, 2000, 2009, 2012, 2019, 2033, 2037, 2041, 2045, 2049, 2053, 2057, 2061, 2071, 2082, 2087, 2100, 2102, 2108, 2112, 2114, 2122, 2129, 2134, 2147, 2153, 2161, 2168, 2172, 2180, 2182, 2193, 2201, 2210, 2216, 2221, 2227, 2233, 2238, 2243, 2249, 2260, 2262, 2289, 2295, 2299, 2311, 2321, 2324, 2329, 2336, 2339, 2348, 2351, 2355, 2358, 2370, 2373, 2392, 2396, 2404, 2408, 2433, 2436, 2445, 2451, 2457, 2463, 2474, 2483, 2505, 2508, 2511, 2521, 2523, 2530, 2532, 2554, 2583, 2590, 2598, 2603, 2605, 2611, 2618, 2624, 2646, 2649, 2658, 2661, 2664, 2684, 2695, 2702, 2709, 2723, 2725, 2734, 2743, 2750, 2753, 2757, 2761, 2764] \ No newline at end of file +[4, 1, 289, 2772, 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, 1, 0, 5, 0, 372, 8, 0, 10, 0, 12, 0, 375, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 381, 8, 1, 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, 405, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 418, 8, 4, 1, 5, 1, 5, 3, 5, 422, 8, 5, 1, 5, 1, 5, 3, 5, 426, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 433, 8, 5, 10, 5, 12, 5, 436, 9, 5, 1, 5, 1, 5, 3, 5, 440, 8, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 450, 8, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 457, 8, 5, 1, 6, 1, 6, 3, 6, 461, 8, 6, 1, 6, 1, 6, 3, 6, 465, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 472, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 477, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 483, 8, 7, 1, 7, 1, 7, 3, 7, 487, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 494, 8, 7, 10, 7, 12, 7, 497, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 503, 8, 7, 1, 7, 1, 7, 3, 7, 507, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 512, 8, 7, 3, 7, 514, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 519, 8, 7, 1, 7, 3, 7, 522, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 529, 8, 7, 1, 7, 1, 7, 3, 7, 533, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 538, 8, 8, 1, 8, 1, 8, 3, 8, 542, 8, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 3, 8, 549, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 557, 8, 9, 1, 9, 1, 9, 3, 9, 561, 8, 9, 1, 9, 1, 9, 3, 9, 565, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 573, 8, 11, 1, 11, 1, 11, 3, 11, 577, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 584, 8, 11, 10, 11, 12, 11, 587, 9, 11, 3, 11, 589, 8, 11, 1, 11, 3, 11, 592, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 598, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 605, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 616, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 621, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 626, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 631, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 636, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 643, 8, 12, 10, 12, 12, 12, 646, 9, 12, 3, 12, 648, 8, 12, 1, 12, 3, 12, 651, 8, 12, 1, 12, 1, 12, 3, 12, 655, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 681, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 707, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 716, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 726, 8, 16, 1, 16, 3, 16, 729, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 743, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 761, 8, 20, 3, 20, 763, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 770, 8, 20, 10, 20, 12, 20, 773, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 783, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 792, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 799, 8, 22, 1, 22, 1, 22, 3, 22, 803, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 810, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 816, 8, 23, 1, 23, 3, 23, 819, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 824, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 831, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 845, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 858, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 863, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 868, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 874, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 910, 8, 32, 1, 32, 3, 32, 913, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 919, 8, 33, 1, 33, 3, 33, 922, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 928, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 934, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 946, 8, 35, 3, 35, 948, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 959, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 967, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 972, 8, 38, 1, 38, 1, 38, 3, 38, 976, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 981, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 988, 8, 40, 1, 40, 1, 40, 3, 40, 992, 8, 40, 1, 41, 1, 41, 3, 41, 996, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1002, 8, 41, 1, 42, 1, 42, 3, 42, 1006, 8, 42, 1, 42, 1, 42, 3, 42, 1010, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1017, 8, 42, 10, 42, 12, 42, 1020, 9, 42, 3, 42, 1022, 8, 42, 1, 42, 3, 42, 1025, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1033, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1047, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1054, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1067, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1073, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1078, 8, 49, 1, 49, 3, 49, 1081, 8, 49, 1, 50, 3, 50, 1084, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1089, 8, 50, 1, 50, 1, 50, 3, 50, 1093, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1100, 8, 50, 10, 50, 12, 50, 1103, 9, 50, 1, 50, 1, 50, 3, 50, 1107, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1113, 8, 51, 1, 52, 1, 52, 3, 52, 1117, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1122, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1127, 8, 53, 1, 53, 3, 53, 1130, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1136, 8, 53, 10, 53, 12, 53, 1139, 9, 53, 3, 53, 1141, 8, 53, 1, 53, 1, 53, 3, 53, 1145, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1155, 8, 54, 10, 54, 12, 54, 1158, 9, 54, 3, 54, 1160, 8, 54, 1, 54, 1, 54, 3, 54, 1164, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1169, 8, 55, 1, 55, 1, 55, 3, 55, 1173, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1189, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1194, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1199, 8, 57, 10, 57, 12, 57, 1202, 9, 57, 3, 57, 1204, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1210, 8, 58, 1, 58, 3, 58, 1213, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1218, 8, 58, 10, 58, 12, 58, 1221, 9, 58, 3, 58, 1223, 8, 58, 1, 59, 1, 59, 3, 59, 1227, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1232, 8, 59, 1, 59, 3, 59, 1235, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1240, 8, 59, 10, 59, 12, 59, 1243, 9, 59, 3, 59, 1245, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1269, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1283, 8, 65, 1, 65, 1, 65, 3, 65, 1287, 8, 65, 1, 66, 1, 66, 3, 66, 1291, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1311, 8, 68, 3, 68, 1313, 8, 68, 3, 68, 1315, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1324, 8, 69, 3, 69, 1326, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1335, 8, 70, 3, 70, 1337, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1346, 8, 71, 3, 71, 1348, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1353, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1362, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1371, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1380, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1391, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1397, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1402, 8, 78, 1, 78, 3, 78, 1405, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1418, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1428, 8, 80, 1, 80, 1, 80, 3, 80, 1432, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1437, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1446, 8, 82, 10, 82, 12, 82, 1449, 9, 82, 1, 82, 1, 82, 3, 82, 1453, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1484, 8, 93, 10, 93, 12, 93, 1487, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1492, 8, 94, 10, 94, 12, 94, 1495, 9, 94, 1, 95, 1, 95, 3, 95, 1499, 8, 95, 1, 96, 1, 96, 3, 96, 1503, 8, 96, 1, 97, 1, 97, 3, 97, 1507, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1512, 8, 98, 1, 98, 3, 98, 1515, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1520, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1525, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1530, 8, 98, 1, 98, 1, 98, 3, 98, 1534, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1543, 8, 98, 1, 98, 3, 98, 1546, 8, 98, 1, 98, 1, 98, 3, 98, 1550, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1555, 8, 99, 10, 99, 12, 99, 1558, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 3, 101, 1566, 8, 101, 1, 101, 1, 101, 3, 101, 1570, 8, 101, 5, 101, 1572, 8, 101, 10, 101, 12, 101, 1575, 9, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1581, 8, 102, 1, 103, 3, 103, 1584, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1592, 8, 104, 10, 104, 12, 104, 1595, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1601, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1606, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1611, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1616, 8, 105, 1, 105, 1, 105, 5, 105, 1620, 8, 105, 10, 105, 12, 105, 1623, 9, 105, 3, 105, 1625, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1634, 8, 106, 1, 106, 3, 106, 1637, 8, 106, 1, 106, 3, 106, 1640, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1646, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 1651, 8, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1659, 8, 110, 10, 110, 12, 110, 1662, 9, 110, 3, 110, 1664, 8, 110, 1, 110, 3, 110, 1667, 8, 110, 1, 110, 1, 110, 3, 110, 1671, 8, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1679, 8, 112, 10, 112, 12, 112, 1682, 9, 112, 3, 112, 1684, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1690, 8, 113, 1, 113, 1, 113, 5, 113, 1694, 8, 113, 10, 113, 12, 113, 1697, 9, 113, 3, 113, 1699, 8, 113, 1, 114, 3, 114, 1702, 8, 114, 1, 114, 1, 114, 3, 114, 1706, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1716, 8, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 5, 118, 1725, 8, 118, 10, 118, 12, 118, 1728, 9, 118, 1, 118, 1, 118, 3, 118, 1732, 8, 118, 1, 118, 3, 118, 1735, 8, 118, 1, 119, 1, 119, 3, 119, 1739, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 3, 120, 1746, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1754, 8, 120, 10, 120, 12, 120, 1757, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1768, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1774, 8, 121, 3, 121, 1776, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1785, 8, 122, 1, 122, 3, 122, 1788, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1795, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1805, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1811, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1817, 8, 126, 10, 126, 12, 126, 1820, 9, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1828, 8, 127, 10, 127, 12, 127, 1831, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 5, 128, 1838, 8, 128, 10, 128, 12, 128, 1841, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1851, 8, 129, 3, 129, 1853, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1859, 8, 129, 1, 130, 1, 130, 1, 130, 3, 130, 1864, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1872, 8, 131, 10, 131, 12, 131, 1875, 9, 131, 3, 131, 1877, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1883, 8, 131, 3, 131, 1885, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1893, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1899, 8, 132, 1, 132, 5, 132, 1902, 8, 132, 10, 132, 12, 132, 1905, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1914, 8, 133, 10, 133, 12, 133, 1917, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1923, 8, 133, 1, 134, 1, 134, 3, 134, 1927, 8, 134, 1, 134, 1, 134, 3, 134, 1931, 8, 134, 1, 135, 1, 135, 3, 135, 1935, 8, 135, 1, 135, 3, 135, 1938, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1943, 8, 135, 10, 135, 12, 135, 1946, 9, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1952, 8, 135, 10, 135, 12, 135, 1955, 9, 135, 3, 135, 1957, 8, 135, 1, 135, 1, 135, 3, 135, 1961, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1966, 8, 135, 1, 135, 1, 135, 3, 135, 1970, 8, 135, 1, 136, 3, 136, 1973, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1978, 8, 136, 10, 136, 12, 136, 1981, 9, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1989, 8, 138, 10, 138, 12, 138, 1992, 9, 138, 3, 138, 1994, 8, 138, 1, 138, 1, 138, 3, 138, 1998, 8, 138, 1, 139, 1, 139, 3, 139, 2002, 8, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 2011, 8, 141, 1, 141, 3, 141, 2014, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2021, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2035, 8, 142, 5, 142, 2037, 8, 142, 10, 142, 12, 142, 2040, 9, 142, 1, 143, 3, 143, 2043, 8, 143, 1, 143, 1, 143, 3, 143, 2047, 8, 143, 1, 143, 1, 143, 3, 143, 2051, 8, 143, 1, 143, 1, 143, 3, 143, 2055, 8, 143, 1, 143, 1, 143, 3, 143, 2059, 8, 143, 1, 143, 1, 143, 3, 143, 2063, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2073, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 2082, 8, 144, 10, 144, 12, 144, 2085, 9, 144, 1, 144, 1, 144, 3, 144, 2089, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2102, 8, 145, 3, 145, 2104, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2110, 8, 147, 1, 147, 1, 147, 3, 147, 2114, 8, 147, 3, 147, 2116, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 2122, 8, 148, 10, 148, 12, 148, 2125, 9, 148, 1, 148, 1, 148, 1, 149, 1, 149, 3, 149, 2131, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2136, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 2147, 8, 151, 10, 151, 12, 151, 2150, 9, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2155, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2163, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2170, 8, 155, 1, 155, 1, 155, 3, 155, 2174, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2182, 8, 155, 10, 155, 12, 155, 2185, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2195, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2203, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2210, 8, 156, 10, 156, 12, 156, 2213, 9, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2218, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2223, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2229, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2235, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2240, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2245, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2251, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 2262, 8, 157, 10, 157, 12, 157, 2265, 9, 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, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2291, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2297, 8, 158, 5, 158, 2299, 8, 158, 10, 158, 12, 158, 2302, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2311, 8, 158, 10, 158, 12, 158, 2314, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2323, 8, 158, 1, 158, 3, 158, 2326, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2331, 8, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2336, 8, 158, 10, 158, 12, 158, 2339, 9, 158, 3, 158, 2341, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2348, 8, 158, 10, 158, 12, 158, 2351, 9, 158, 3, 158, 2353, 8, 158, 1, 158, 1, 158, 3, 158, 2357, 8, 158, 1, 158, 3, 158, 2360, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2370, 8, 158, 10, 158, 12, 158, 2373, 9, 158, 3, 158, 2375, 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, 4, 158, 2392, 8, 158, 11, 158, 12, 158, 2393, 1, 158, 1, 158, 3, 158, 2398, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 4, 158, 2404, 8, 158, 11, 158, 12, 158, 2405, 1, 158, 1, 158, 3, 158, 2410, 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, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2433, 8, 158, 10, 158, 12, 158, 2436, 9, 158, 3, 158, 2438, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2447, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2453, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2459, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2465, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2476, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2485, 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, 1, 158, 1, 158, 1, 158, 5, 158, 2505, 8, 158, 10, 158, 12, 158, 2508, 9, 158, 3, 158, 2510, 8, 158, 1, 158, 3, 158, 2513, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2523, 8, 158, 10, 158, 12, 158, 2526, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2532, 8, 159, 3, 159, 2534, 8, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2556, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2583, 8, 166, 10, 166, 12, 166, 2586, 9, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2592, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2598, 8, 166, 10, 166, 12, 166, 2601, 9, 166, 1, 166, 1, 166, 3, 166, 2605, 8, 166, 3, 166, 2607, 8, 166, 1, 166, 1, 166, 5, 166, 2611, 8, 166, 10, 166, 12, 166, 2614, 9, 166, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 2620, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2626, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2646, 8, 172, 10, 172, 12, 172, 2649, 9, 172, 3, 172, 2651, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2658, 8, 172, 10, 172, 12, 172, 2661, 9, 172, 3, 172, 2663, 8, 172, 1, 172, 3, 172, 2666, 8, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2686, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2697, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2704, 8, 175, 1, 176, 1, 176, 1, 176, 5, 176, 2709, 8, 176, 10, 176, 12, 176, 2712, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2725, 8, 177, 3, 177, 2727, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 5, 179, 2734, 8, 179, 10, 179, 12, 179, 2737, 9, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2745, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2752, 8, 181, 1, 182, 3, 182, 2755, 8, 182, 1, 182, 1, 182, 3, 182, 2759, 8, 182, 1, 182, 1, 182, 3, 182, 2763, 8, 182, 1, 182, 3, 182, 2766, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 10, 771, 1447, 1621, 1660, 1680, 1695, 1726, 1755, 1829, 2300, 6, 264, 284, 310, 314, 316, 332, 185, 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, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3093, 0, 373, 1, 0, 0, 0, 2, 378, 1, 0, 0, 0, 4, 404, 1, 0, 0, 0, 6, 406, 1, 0, 0, 0, 8, 417, 1, 0, 0, 0, 10, 419, 1, 0, 0, 0, 12, 458, 1, 0, 0, 0, 14, 480, 1, 0, 0, 0, 16, 534, 1, 0, 0, 0, 18, 553, 1, 0, 0, 0, 20, 566, 1, 0, 0, 0, 22, 570, 1, 0, 0, 0, 24, 632, 1, 0, 0, 0, 26, 680, 1, 0, 0, 0, 28, 682, 1, 0, 0, 0, 30, 690, 1, 0, 0, 0, 32, 710, 1, 0, 0, 0, 34, 730, 1, 0, 0, 0, 36, 737, 1, 0, 0, 0, 38, 746, 1, 0, 0, 0, 40, 754, 1, 0, 0, 0, 42, 776, 1, 0, 0, 0, 44, 786, 1, 0, 0, 0, 46, 804, 1, 0, 0, 0, 48, 825, 1, 0, 0, 0, 50, 846, 1, 0, 0, 0, 52, 852, 1, 0, 0, 0, 54, 869, 1, 0, 0, 0, 56, 878, 1, 0, 0, 0, 58, 885, 1, 0, 0, 0, 60, 893, 1, 0, 0, 0, 62, 900, 1, 0, 0, 0, 64, 907, 1, 0, 0, 0, 66, 916, 1, 0, 0, 0, 68, 927, 1, 0, 0, 0, 70, 929, 1, 0, 0, 0, 72, 949, 1, 0, 0, 0, 74, 966, 1, 0, 0, 0, 76, 968, 1, 0, 0, 0, 78, 977, 1, 0, 0, 0, 80, 984, 1, 0, 0, 0, 82, 993, 1, 0, 0, 0, 84, 1003, 1, 0, 0, 0, 86, 1026, 1, 0, 0, 0, 88, 1032, 1, 0, 0, 0, 90, 1034, 1, 0, 0, 0, 92, 1041, 1, 0, 0, 0, 94, 1053, 1, 0, 0, 0, 96, 1055, 1, 0, 0, 0, 98, 1062, 1, 0, 0, 0, 100, 1083, 1, 0, 0, 0, 102, 1112, 1, 0, 0, 0, 104, 1114, 1, 0, 0, 0, 106, 1123, 1, 0, 0, 0, 108, 1146, 1, 0, 0, 0, 110, 1165, 1, 0, 0, 0, 112, 1188, 1, 0, 0, 0, 114, 1190, 1, 0, 0, 0, 116, 1205, 1, 0, 0, 0, 118, 1224, 1, 0, 0, 0, 120, 1246, 1, 0, 0, 0, 122, 1251, 1, 0, 0, 0, 124, 1256, 1, 0, 0, 0, 126, 1261, 1, 0, 0, 0, 128, 1266, 1, 0, 0, 0, 130, 1273, 1, 0, 0, 0, 132, 1288, 1, 0, 0, 0, 134, 1294, 1, 0, 0, 0, 136, 1314, 1, 0, 0, 0, 138, 1316, 1, 0, 0, 0, 140, 1327, 1, 0, 0, 0, 142, 1338, 1, 0, 0, 0, 144, 1352, 1, 0, 0, 0, 146, 1354, 1, 0, 0, 0, 148, 1363, 1, 0, 0, 0, 150, 1372, 1, 0, 0, 0, 152, 1381, 1, 0, 0, 0, 154, 1384, 1, 0, 0, 0, 156, 1392, 1, 0, 0, 0, 158, 1408, 1, 0, 0, 0, 160, 1412, 1, 0, 0, 0, 162, 1436, 1, 0, 0, 0, 164, 1438, 1, 0, 0, 0, 166, 1454, 1, 0, 0, 0, 168, 1457, 1, 0, 0, 0, 170, 1461, 1, 0, 0, 0, 172, 1464, 1, 0, 0, 0, 174, 1468, 1, 0, 0, 0, 176, 1470, 1, 0, 0, 0, 178, 1472, 1, 0, 0, 0, 180, 1474, 1, 0, 0, 0, 182, 1476, 1, 0, 0, 0, 184, 1478, 1, 0, 0, 0, 186, 1480, 1, 0, 0, 0, 188, 1488, 1, 0, 0, 0, 190, 1498, 1, 0, 0, 0, 192, 1502, 1, 0, 0, 0, 194, 1506, 1, 0, 0, 0, 196, 1511, 1, 0, 0, 0, 198, 1551, 1, 0, 0, 0, 200, 1559, 1, 0, 0, 0, 202, 1563, 1, 0, 0, 0, 204, 1578, 1, 0, 0, 0, 206, 1583, 1, 0, 0, 0, 208, 1587, 1, 0, 0, 0, 210, 1596, 1, 0, 0, 0, 212, 1626, 1, 0, 0, 0, 214, 1641, 1, 0, 0, 0, 216, 1647, 1, 0, 0, 0, 218, 1652, 1, 0, 0, 0, 220, 1654, 1, 0, 0, 0, 222, 1672, 1, 0, 0, 0, 224, 1675, 1, 0, 0, 0, 226, 1685, 1, 0, 0, 0, 228, 1705, 1, 0, 0, 0, 230, 1715, 1, 0, 0, 0, 232, 1717, 1, 0, 0, 0, 234, 1719, 1, 0, 0, 0, 236, 1734, 1, 0, 0, 0, 238, 1736, 1, 0, 0, 0, 240, 1743, 1, 0, 0, 0, 242, 1775, 1, 0, 0, 0, 244, 1787, 1, 0, 0, 0, 246, 1794, 1, 0, 0, 0, 248, 1804, 1, 0, 0, 0, 250, 1806, 1, 0, 0, 0, 252, 1812, 1, 0, 0, 0, 254, 1823, 1, 0, 0, 0, 256, 1834, 1, 0, 0, 0, 258, 1842, 1, 0, 0, 0, 260, 1860, 1, 0, 0, 0, 262, 1865, 1, 0, 0, 0, 264, 1886, 1, 0, 0, 0, 266, 1922, 1, 0, 0, 0, 268, 1924, 1, 0, 0, 0, 270, 1932, 1, 0, 0, 0, 272, 1972, 1, 0, 0, 0, 274, 1982, 1, 0, 0, 0, 276, 1997, 1, 0, 0, 0, 278, 1999, 1, 0, 0, 0, 280, 2006, 1, 0, 0, 0, 282, 2020, 1, 0, 0, 0, 284, 2022, 1, 0, 0, 0, 286, 2072, 1, 0, 0, 0, 288, 2088, 1, 0, 0, 0, 290, 2090, 1, 0, 0, 0, 292, 2105, 1, 0, 0, 0, 294, 2107, 1, 0, 0, 0, 296, 2117, 1, 0, 0, 0, 298, 2135, 1, 0, 0, 0, 300, 2137, 1, 0, 0, 0, 302, 2141, 1, 0, 0, 0, 304, 2156, 1, 0, 0, 0, 306, 2162, 1, 0, 0, 0, 308, 2164, 1, 0, 0, 0, 310, 2173, 1, 0, 0, 0, 312, 2244, 1, 0, 0, 0, 314, 2250, 1, 0, 0, 0, 316, 2512, 1, 0, 0, 0, 318, 2533, 1, 0, 0, 0, 320, 2535, 1, 0, 0, 0, 322, 2537, 1, 0, 0, 0, 324, 2539, 1, 0, 0, 0, 326, 2555, 1, 0, 0, 0, 328, 2557, 1, 0, 0, 0, 330, 2559, 1, 0, 0, 0, 332, 2606, 1, 0, 0, 0, 334, 2615, 1, 0, 0, 0, 336, 2619, 1, 0, 0, 0, 338, 2625, 1, 0, 0, 0, 340, 2627, 1, 0, 0, 0, 342, 2632, 1, 0, 0, 0, 344, 2638, 1, 0, 0, 0, 346, 2685, 1, 0, 0, 0, 348, 2696, 1, 0, 0, 0, 350, 2703, 1, 0, 0, 0, 352, 2705, 1, 0, 0, 0, 354, 2726, 1, 0, 0, 0, 356, 2728, 1, 0, 0, 0, 358, 2730, 1, 0, 0, 0, 360, 2744, 1, 0, 0, 0, 362, 2751, 1, 0, 0, 0, 364, 2765, 1, 0, 0, 0, 366, 2767, 1, 0, 0, 0, 368, 2769, 1, 0, 0, 0, 370, 372, 3, 2, 1, 0, 371, 370, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 376, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 377, 5, 0, 0, 1, 377, 1, 1, 0, 0, 0, 378, 380, 3, 4, 2, 0, 379, 381, 5, 262, 0, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 3, 1, 0, 0, 0, 382, 405, 3, 206, 103, 0, 383, 405, 3, 6, 3, 0, 384, 405, 3, 8, 4, 0, 385, 405, 3, 26, 13, 0, 386, 405, 3, 64, 32, 0, 387, 405, 3, 66, 33, 0, 388, 405, 3, 68, 34, 0, 389, 405, 3, 74, 37, 0, 390, 405, 3, 88, 44, 0, 391, 405, 3, 94, 47, 0, 392, 405, 3, 100, 50, 0, 393, 405, 3, 102, 51, 0, 394, 405, 3, 108, 54, 0, 395, 405, 3, 110, 55, 0, 396, 405, 3, 112, 56, 0, 397, 405, 3, 144, 72, 0, 398, 405, 3, 152, 76, 0, 399, 405, 3, 154, 77, 0, 400, 405, 3, 156, 78, 0, 401, 405, 3, 158, 79, 0, 402, 405, 3, 160, 80, 0, 403, 405, 3, 162, 81, 0, 404, 382, 1, 0, 0, 0, 404, 383, 1, 0, 0, 0, 404, 384, 1, 0, 0, 0, 404, 385, 1, 0, 0, 0, 404, 386, 1, 0, 0, 0, 404, 387, 1, 0, 0, 0, 404, 388, 1, 0, 0, 0, 404, 389, 1, 0, 0, 0, 404, 390, 1, 0, 0, 0, 404, 391, 1, 0, 0, 0, 404, 392, 1, 0, 0, 0, 404, 393, 1, 0, 0, 0, 404, 394, 1, 0, 0, 0, 404, 395, 1, 0, 0, 0, 404, 396, 1, 0, 0, 0, 404, 397, 1, 0, 0, 0, 404, 398, 1, 0, 0, 0, 404, 399, 1, 0, 0, 0, 404, 400, 1, 0, 0, 0, 404, 401, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 404, 403, 1, 0, 0, 0, 405, 5, 1, 0, 0, 0, 406, 407, 5, 203, 0, 0, 407, 408, 3, 184, 92, 0, 408, 7, 1, 0, 0, 0, 409, 418, 3, 18, 9, 0, 410, 418, 3, 20, 10, 0, 411, 418, 3, 22, 11, 0, 412, 418, 3, 24, 12, 0, 413, 418, 3, 16, 8, 0, 414, 418, 3, 14, 7, 0, 415, 418, 3, 12, 6, 0, 416, 418, 3, 10, 5, 0, 417, 409, 1, 0, 0, 0, 417, 410, 1, 0, 0, 0, 417, 411, 1, 0, 0, 0, 417, 412, 1, 0, 0, 0, 417, 413, 1, 0, 0, 0, 417, 414, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 417, 416, 1, 0, 0, 0, 418, 9, 1, 0, 0, 0, 419, 421, 5, 37, 0, 0, 420, 422, 5, 19, 0, 0, 421, 420, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 425, 5, 188, 0, 0, 424, 426, 3, 172, 86, 0, 425, 424, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 443, 3, 174, 87, 0, 428, 429, 5, 265, 0, 0, 429, 434, 3, 216, 108, 0, 430, 431, 5, 263, 0, 0, 431, 433, 3, 216, 108, 0, 432, 430, 1, 0, 0, 0, 433, 436, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 437, 438, 5, 263, 0, 0, 438, 440, 3, 210, 105, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 5, 266, 0, 0, 442, 444, 1, 0, 0, 0, 443, 428, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 451, 1, 0, 0, 0, 445, 446, 5, 17, 0, 0, 446, 449, 5, 26, 0, 0, 447, 450, 3, 296, 148, 0, 448, 450, 3, 254, 127, 0, 449, 447, 1, 0, 0, 0, 449, 448, 1, 0, 0, 0, 450, 452, 1, 0, 0, 0, 451, 445, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 456, 3, 196, 98, 0, 454, 455, 5, 9, 0, 0, 455, 457, 3, 206, 103, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 11, 1, 0, 0, 0, 458, 460, 5, 37, 0, 0, 459, 461, 5, 19, 0, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 5, 188, 0, 0, 463, 465, 3, 172, 86, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 3, 174, 87, 0, 467, 471, 5, 115, 0, 0, 468, 472, 3, 186, 93, 0, 469, 470, 5, 147, 0, 0, 470, 472, 3, 318, 159, 0, 471, 468, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 476, 1, 0, 0, 0, 473, 474, 5, 17, 0, 0, 474, 475, 5, 26, 0, 0, 475, 477, 3, 254, 127, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 3, 196, 98, 0, 479, 13, 1, 0, 0, 0, 480, 482, 5, 37, 0, 0, 481, 483, 5, 19, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 5, 188, 0, 0, 485, 487, 3, 172, 86, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 506, 3, 174, 87, 0, 489, 490, 5, 265, 0, 0, 490, 495, 3, 218, 109, 0, 491, 492, 5, 263, 0, 0, 492, 494, 3, 218, 109, 0, 493, 491, 1, 0, 0, 0, 494, 497, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 502, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 499, 5, 263, 0, 0, 499, 500, 5, 150, 0, 0, 500, 501, 5, 110, 0, 0, 501, 503, 3, 296, 148, 0, 502, 498, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 5, 266, 0, 0, 505, 507, 1, 0, 0, 0, 506, 489, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 513, 1, 0, 0, 0, 508, 509, 5, 150, 0, 0, 509, 511, 5, 110, 0, 0, 510, 512, 3, 296, 148, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 508, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 518, 1, 0, 0, 0, 515, 516, 5, 145, 0, 0, 516, 517, 5, 26, 0, 0, 517, 519, 3, 236, 118, 0, 518, 515, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 222, 111, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 23, 0, 0, 524, 525, 5, 9, 0, 0, 525, 528, 5, 111, 0, 0, 526, 527, 5, 25, 0, 0, 527, 529, 3, 252, 126, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 531, 5, 9, 0, 0, 531, 533, 3, 206, 103, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 15, 1, 0, 0, 0, 534, 535, 5, 37, 0, 0, 535, 537, 5, 212, 0, 0, 536, 538, 3, 172, 86, 0, 537, 536, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 541, 3, 178, 89, 0, 540, 542, 3, 202, 101, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 545, 3, 222, 111, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 548, 1, 0, 0, 0, 546, 547, 5, 25, 0, 0, 547, 549, 3, 252, 126, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 9, 0, 0, 551, 552, 3, 206, 103, 0, 552, 17, 1, 0, 0, 0, 553, 554, 5, 37, 0, 0, 554, 556, 7, 0, 0, 0, 555, 557, 3, 172, 86, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 3, 176, 88, 0, 559, 561, 3, 222, 111, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 564, 1, 0, 0, 0, 562, 563, 5, 24, 0, 0, 563, 565, 3, 318, 159, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 19, 1, 0, 0, 0, 566, 567, 5, 37, 0, 0, 567, 568, 5, 166, 0, 0, 568, 569, 3, 362, 181, 0, 569, 21, 1, 0, 0, 0, 570, 572, 5, 37, 0, 0, 571, 573, 5, 12, 0, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 576, 5, 84, 0, 0, 575, 577, 3, 172, 86, 0, 576, 575, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 591, 3, 180, 90, 0, 579, 588, 5, 265, 0, 0, 580, 585, 3, 332, 166, 0, 581, 582, 5, 263, 0, 0, 582, 584, 3, 332, 166, 0, 583, 581, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 589, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 588, 580, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 592, 5, 266, 0, 0, 591, 579, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 160, 0, 0, 594, 597, 3, 332, 166, 0, 595, 596, 5, 102, 0, 0, 596, 598, 3, 332, 166, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 5, 24, 0, 0, 600, 604, 5, 274, 0, 0, 601, 602, 5, 104, 0, 0, 602, 603, 5, 249, 0, 0, 603, 605, 5, 274, 0, 0, 604, 601, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 5, 206, 0, 0, 607, 608, 5, 249, 0, 0, 608, 609, 5, 274, 0, 0, 609, 610, 5, 126, 0, 0, 610, 611, 5, 249, 0, 0, 611, 615, 5, 274, 0, 0, 612, 613, 5, 18, 0, 0, 613, 614, 5, 249, 0, 0, 614, 616, 5, 274, 0, 0, 615, 612, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 618, 5, 20, 0, 0, 618, 619, 5, 249, 0, 0, 619, 621, 5, 274, 0, 0, 620, 617, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 625, 1, 0, 0, 0, 622, 623, 5, 187, 0, 0, 623, 624, 5, 249, 0, 0, 624, 626, 5, 274, 0, 0, 625, 622, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 628, 5, 76, 0, 0, 628, 629, 5, 249, 0, 0, 629, 631, 5, 274, 0, 0, 630, 627, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 23, 1, 0, 0, 0, 632, 633, 5, 37, 0, 0, 633, 635, 5, 84, 0, 0, 634, 636, 3, 172, 86, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 650, 3, 180, 90, 0, 638, 647, 5, 265, 0, 0, 639, 644, 3, 332, 166, 0, 640, 641, 5, 263, 0, 0, 641, 643, 3, 332, 166, 0, 642, 640, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 639, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 651, 5, 266, 0, 0, 650, 638, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 653, 5, 160, 0, 0, 653, 655, 3, 332, 166, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 24, 0, 0, 657, 658, 5, 274, 0, 0, 658, 659, 5, 186, 0, 0, 659, 660, 5, 249, 0, 0, 660, 661, 3, 318, 159, 0, 661, 25, 1, 0, 0, 0, 662, 681, 3, 28, 14, 0, 663, 681, 3, 62, 31, 0, 664, 681, 3, 60, 30, 0, 665, 681, 3, 58, 29, 0, 666, 681, 3, 54, 27, 0, 667, 681, 3, 56, 28, 0, 668, 681, 3, 52, 26, 0, 669, 681, 3, 48, 24, 0, 670, 681, 3, 50, 25, 0, 671, 681, 3, 46, 23, 0, 672, 681, 3, 44, 22, 0, 673, 681, 3, 42, 21, 0, 674, 681, 3, 40, 20, 0, 675, 681, 3, 34, 17, 0, 676, 681, 3, 30, 15, 0, 677, 681, 3, 32, 16, 0, 678, 681, 3, 36, 18, 0, 679, 681, 3, 38, 19, 0, 680, 662, 1, 0, 0, 0, 680, 663, 1, 0, 0, 0, 680, 664, 1, 0, 0, 0, 680, 665, 1, 0, 0, 0, 680, 666, 1, 0, 0, 0, 680, 667, 1, 0, 0, 0, 680, 668, 1, 0, 0, 0, 680, 669, 1, 0, 0, 0, 680, 670, 1, 0, 0, 0, 680, 671, 1, 0, 0, 0, 680, 672, 1, 0, 0, 0, 680, 673, 1, 0, 0, 0, 680, 674, 1, 0, 0, 0, 680, 675, 1, 0, 0, 0, 680, 676, 1, 0, 0, 0, 680, 677, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 680, 679, 1, 0, 0, 0, 681, 27, 1, 0, 0, 0, 682, 683, 5, 4, 0, 0, 683, 684, 5, 46, 0, 0, 684, 685, 3, 184, 92, 0, 685, 686, 5, 176, 0, 0, 686, 687, 5, 142, 0, 0, 687, 688, 7, 1, 0, 0, 688, 689, 3, 362, 181, 0, 689, 29, 1, 0, 0, 0, 690, 691, 5, 4, 0, 0, 691, 692, 5, 188, 0, 0, 692, 693, 3, 186, 93, 0, 693, 694, 5, 176, 0, 0, 694, 695, 5, 32, 0, 0, 695, 696, 5, 182, 0, 0, 696, 697, 3, 192, 96, 0, 697, 698, 5, 265, 0, 0, 698, 699, 3, 232, 116, 0, 699, 700, 5, 249, 0, 0, 700, 706, 3, 318, 159, 0, 701, 702, 5, 263, 0, 0, 702, 703, 3, 232, 116, 0, 703, 704, 5, 249, 0, 0, 704, 705, 3, 318, 159, 0, 705, 707, 1, 0, 0, 0, 706, 701, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 5, 266, 0, 0, 709, 31, 1, 0, 0, 0, 710, 711, 5, 4, 0, 0, 711, 712, 5, 188, 0, 0, 712, 715, 3, 186, 93, 0, 713, 714, 5, 145, 0, 0, 714, 716, 3, 308, 154, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 728, 5, 176, 0, 0, 718, 719, 5, 30, 0, 0, 719, 720, 5, 94, 0, 0, 720, 725, 3, 318, 159, 0, 721, 722, 5, 216, 0, 0, 722, 723, 5, 151, 0, 0, 723, 724, 5, 249, 0, 0, 724, 726, 3, 364, 182, 0, 725, 721, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 729, 5, 197, 0, 0, 728, 718, 1, 0, 0, 0, 728, 727, 1, 0, 0, 0, 729, 33, 1, 0, 0, 0, 730, 731, 5, 4, 0, 0, 731, 732, 5, 188, 0, 0, 732, 733, 3, 186, 93, 0, 733, 734, 5, 31, 0, 0, 734, 735, 3, 192, 96, 0, 735, 736, 3, 224, 112, 0, 736, 35, 1, 0, 0, 0, 737, 738, 5, 4, 0, 0, 738, 739, 5, 188, 0, 0, 739, 740, 3, 186, 93, 0, 740, 742, 5, 58, 0, 0, 741, 743, 5, 32, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 3, 192, 96, 0, 745, 37, 1, 0, 0, 0, 746, 747, 5, 4, 0, 0, 747, 748, 5, 188, 0, 0, 748, 749, 3, 186, 93, 0, 749, 750, 5, 176, 0, 0, 750, 751, 5, 142, 0, 0, 751, 752, 7, 1, 0, 0, 752, 753, 3, 362, 181, 0, 753, 39, 1, 0, 0, 0, 754, 755, 5, 4, 0, 0, 755, 756, 5, 188, 0, 0, 756, 762, 3, 186, 93, 0, 757, 763, 5, 158, 0, 0, 758, 760, 5, 1, 0, 0, 759, 761, 3, 172, 86, 0, 760, 759, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 763, 1, 0, 0, 0, 762, 757, 1, 0, 0, 0, 762, 758, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 5, 33, 0, 0, 765, 766, 5, 265, 0, 0, 766, 771, 3, 224, 112, 0, 767, 768, 5, 263, 0, 0, 768, 770, 3, 224, 112, 0, 769, 767, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 774, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 774, 775, 5, 266, 0, 0, 775, 41, 1, 0, 0, 0, 776, 777, 5, 4, 0, 0, 777, 778, 5, 188, 0, 0, 778, 779, 3, 186, 93, 0, 779, 780, 5, 1, 0, 0, 780, 782, 5, 32, 0, 0, 781, 783, 3, 172, 86, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 3, 226, 113, 0, 785, 43, 1, 0, 0, 0, 786, 787, 5, 4, 0, 0, 787, 788, 5, 188, 0, 0, 788, 789, 3, 186, 93, 0, 789, 791, 5, 4, 0, 0, 790, 792, 5, 32, 0, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 802, 3, 192, 96, 0, 794, 798, 5, 176, 0, 0, 795, 799, 3, 230, 115, 0, 796, 797, 5, 34, 0, 0, 797, 799, 3, 318, 159, 0, 798, 795, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 799, 803, 1, 0, 0, 0, 800, 801, 5, 58, 0, 0, 801, 803, 5, 51, 0, 0, 802, 794, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 803, 45, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 806, 5, 188, 0, 0, 806, 807, 3, 186, 93, 0, 807, 809, 5, 1, 0, 0, 808, 810, 3, 172, 86, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 823, 1, 0, 0, 0, 811, 812, 5, 145, 0, 0, 812, 815, 3, 308, 154, 0, 813, 814, 5, 24, 0, 0, 814, 816, 3, 318, 159, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 1, 0, 0, 0, 817, 819, 3, 244, 122, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 821, 5, 154, 0, 0, 821, 822, 5, 145, 0, 0, 822, 824, 3, 242, 121, 0, 823, 811, 1, 0, 0, 0, 823, 820, 1, 0, 0, 0, 824, 47, 1, 0, 0, 0, 825, 826, 5, 4, 0, 0, 826, 827, 5, 188, 0, 0, 827, 830, 3, 186, 93, 0, 828, 829, 5, 145, 0, 0, 829, 831, 3, 308, 154, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 844, 5, 176, 0, 0, 833, 834, 5, 72, 0, 0, 834, 845, 3, 234, 117, 0, 835, 836, 5, 168, 0, 0, 836, 837, 5, 79, 0, 0, 837, 845, 3, 258, 129, 0, 838, 839, 5, 24, 0, 0, 839, 845, 3, 318, 159, 0, 840, 841, 5, 25, 0, 0, 841, 845, 3, 252, 126, 0, 842, 843, 5, 175, 0, 0, 843, 845, 3, 252, 126, 0, 844, 833, 1, 0, 0, 0, 844, 835, 1, 0, 0, 0, 844, 838, 1, 0, 0, 0, 844, 840, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 49, 1, 0, 0, 0, 846, 847, 5, 4, 0, 0, 847, 848, 5, 188, 0, 0, 848, 849, 3, 186, 93, 0, 849, 850, 5, 155, 0, 0, 850, 851, 5, 146, 0, 0, 851, 51, 1, 0, 0, 0, 852, 853, 5, 4, 0, 0, 853, 854, 5, 188, 0, 0, 854, 855, 3, 186, 93, 0, 855, 857, 5, 58, 0, 0, 856, 858, 3, 170, 85, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 867, 1, 0, 0, 0, 859, 860, 5, 145, 0, 0, 860, 862, 3, 308, 154, 0, 861, 863, 5, 22, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 868, 1, 0, 0, 0, 864, 865, 5, 154, 0, 0, 865, 866, 5, 145, 0, 0, 866, 868, 3, 242, 121, 0, 867, 859, 1, 0, 0, 0, 867, 864, 1, 0, 0, 0, 868, 53, 1, 0, 0, 0, 869, 870, 5, 4, 0, 0, 870, 871, 5, 212, 0, 0, 871, 873, 3, 188, 94, 0, 872, 874, 3, 202, 101, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 9, 0, 0, 876, 877, 3, 206, 103, 0, 877, 55, 1, 0, 0, 0, 878, 879, 5, 4, 0, 0, 879, 880, 5, 212, 0, 0, 880, 881, 3, 188, 94, 0, 881, 882, 5, 156, 0, 0, 882, 883, 5, 193, 0, 0, 883, 884, 3, 188, 94, 0, 884, 57, 1, 0, 0, 0, 885, 886, 5, 4, 0, 0, 886, 887, 5, 212, 0, 0, 887, 888, 3, 188, 94, 0, 888, 889, 5, 176, 0, 0, 889, 890, 5, 142, 0, 0, 890, 891, 7, 1, 0, 0, 891, 892, 3, 358, 179, 0, 892, 59, 1, 0, 0, 0, 893, 894, 5, 4, 0, 0, 894, 895, 5, 188, 0, 0, 895, 896, 3, 186, 93, 0, 896, 897, 5, 156, 0, 0, 897, 898, 5, 193, 0, 0, 898, 899, 3, 186, 93, 0, 899, 61, 1, 0, 0, 0, 900, 901, 5, 4, 0, 0, 901, 902, 5, 212, 0, 0, 902, 903, 3, 188, 94, 0, 903, 904, 7, 2, 0, 0, 904, 905, 5, 25, 0, 0, 905, 906, 3, 252, 126, 0, 906, 63, 1, 0, 0, 0, 907, 909, 5, 196, 0, 0, 908, 910, 5, 188, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 1, 0, 0, 0, 911, 913, 3, 170, 85, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 3, 186, 93, 0, 915, 65, 1, 0, 0, 0, 916, 918, 5, 56, 0, 0, 917, 919, 5, 46, 0, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 1, 0, 0, 0, 920, 922, 7, 3, 0, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 358, 179, 0, 924, 67, 1, 0, 0, 0, 925, 928, 3, 70, 35, 0, 926, 928, 3, 72, 36, 0, 927, 925, 1, 0, 0, 0, 927, 926, 1, 0, 0, 0, 928, 69, 1, 0, 0, 0, 929, 930, 5, 36, 0, 0, 930, 931, 5, 182, 0, 0, 931, 933, 3, 186, 93, 0, 932, 934, 3, 296, 148, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 947, 1, 0, 0, 0, 935, 936, 5, 190, 0, 0, 936, 937, 5, 185, 0, 0, 937, 938, 5, 265, 0, 0, 938, 939, 3, 364, 182, 0, 939, 945, 5, 266, 0, 0, 940, 941, 5, 157, 0, 0, 941, 942, 5, 265, 0, 0, 942, 943, 3, 364, 182, 0, 943, 944, 5, 266, 0, 0, 944, 946, 1, 0, 0, 0, 945, 940, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 935, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 71, 1, 0, 0, 0, 949, 950, 5, 36, 0, 0, 950, 951, 5, 96, 0, 0, 951, 952, 5, 182, 0, 0, 952, 958, 3, 186, 93, 0, 953, 954, 5, 145, 0, 0, 954, 955, 5, 265, 0, 0, 955, 956, 3, 308, 154, 0, 956, 957, 5, 266, 0, 0, 957, 959, 1, 0, 0, 0, 958, 953, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 73, 1, 0, 0, 0, 960, 967, 3, 86, 43, 0, 961, 967, 3, 84, 42, 0, 962, 967, 3, 82, 41, 0, 963, 967, 3, 78, 39, 0, 964, 967, 3, 80, 40, 0, 965, 967, 3, 76, 38, 0, 966, 960, 1, 0, 0, 0, 966, 961, 1, 0, 0, 0, 966, 962, 1, 0, 0, 0, 966, 963, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 965, 1, 0, 0, 0, 967, 75, 1, 0, 0, 0, 968, 969, 5, 58, 0, 0, 969, 971, 7, 0, 0, 0, 970, 972, 3, 170, 85, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 975, 3, 184, 92, 0, 974, 976, 7, 4, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 77, 1, 0, 0, 0, 977, 978, 5, 58, 0, 0, 978, 980, 5, 212, 0, 0, 979, 981, 3, 170, 85, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 3, 188, 94, 0, 983, 79, 1, 0, 0, 0, 984, 985, 5, 58, 0, 0, 985, 987, 5, 188, 0, 0, 986, 988, 3, 170, 85, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 991, 3, 186, 93, 0, 990, 992, 5, 22, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 81, 1, 0, 0, 0, 993, 995, 5, 58, 0, 0, 994, 996, 5, 96, 0, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 5, 182, 0, 0, 998, 1001, 3, 186, 93, 0, 999, 1000, 5, 145, 0, 0, 1000, 1002, 3, 308, 154, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 83, 1, 0, 0, 0, 1003, 1005, 5, 58, 0, 0, 1004, 1006, 5, 12, 0, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1009, 5, 84, 0, 0, 1008, 1010, 3, 170, 85, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1024, 3, 190, 95, 0, 1012, 1021, 5, 265, 0, 0, 1013, 1018, 3, 332, 166, 0, 1014, 1015, 5, 263, 0, 0, 1015, 1017, 3, 332, 166, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1013, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 5, 266, 0, 0, 1024, 1012, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 85, 1, 0, 0, 0, 1026, 1027, 5, 58, 0, 0, 1027, 1028, 5, 166, 0, 0, 1028, 1029, 3, 362, 181, 0, 1029, 87, 1, 0, 0, 0, 1030, 1033, 3, 90, 45, 0, 1031, 1033, 3, 92, 46, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1031, 1, 0, 0, 0, 1033, 89, 1, 0, 0, 0, 1034, 1035, 5, 86, 0, 0, 1035, 1036, 5, 166, 0, 0, 1036, 1037, 3, 362, 181, 0, 1037, 1038, 5, 193, 0, 0, 1038, 1039, 5, 87, 0, 0, 1039, 1040, 3, 362, 181, 0, 1040, 91, 1, 0, 0, 0, 1041, 1042, 5, 86, 0, 0, 1042, 1043, 3, 354, 177, 0, 1043, 1044, 5, 136, 0, 0, 1044, 1046, 3, 356, 178, 0, 1045, 1047, 3, 358, 179, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 5, 193, 0, 0, 1049, 1050, 3, 360, 180, 0, 1050, 93, 1, 0, 0, 0, 1051, 1054, 3, 96, 48, 0, 1052, 1054, 3, 98, 49, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1052, 1, 0, 0, 0, 1054, 95, 1, 0, 0, 0, 1055, 1056, 5, 161, 0, 0, 1056, 1057, 5, 166, 0, 0, 1057, 1058, 3, 362, 181, 0, 1058, 1059, 5, 82, 0, 0, 1059, 1060, 5, 87, 0, 0, 1060, 1061, 3, 362, 181, 0, 1061, 97, 1, 0, 0, 0, 1062, 1066, 5, 161, 0, 0, 1063, 1064, 5, 86, 0, 0, 1064, 1065, 5, 137, 0, 0, 1065, 1067, 5, 78, 0, 0, 1066, 1063, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 3, 354, 177, 0, 1069, 1070, 5, 136, 0, 0, 1070, 1072, 3, 356, 178, 0, 1071, 1073, 3, 358, 179, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1080, 5, 82, 0, 0, 1075, 1081, 3, 360, 180, 0, 1076, 1078, 5, 166, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 3, 362, 181, 0, 1080, 1075, 1, 0, 0, 0, 1080, 1077, 1, 0, 0, 0, 1081, 99, 1, 0, 0, 0, 1082, 1084, 3, 208, 104, 0, 1083, 1082, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 5, 99, 0, 0, 1086, 1088, 7, 5, 0, 0, 1087, 1089, 5, 188, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 3, 186, 93, 0, 1091, 1093, 3, 296, 148, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1106, 1, 0, 0, 0, 1094, 1095, 5, 145, 0, 0, 1095, 1096, 5, 265, 0, 0, 1096, 1101, 3, 308, 154, 0, 1097, 1098, 5, 263, 0, 0, 1098, 1100, 3, 308, 154, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1103, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1104, 1105, 5, 266, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1094, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 206, 103, 0, 1109, 101, 1, 0, 0, 0, 1110, 1113, 3, 104, 52, 0, 1111, 1113, 3, 106, 53, 0, 1112, 1110, 1, 0, 0, 0, 1112, 1111, 1, 0, 0, 0, 1113, 103, 1, 0, 0, 0, 1114, 1116, 5, 50, 0, 0, 1115, 1117, 5, 82, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1121, 3, 186, 93, 0, 1119, 1120, 5, 215, 0, 0, 1120, 1122, 3, 310, 155, 0, 1121, 1119, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 105, 1, 0, 0, 0, 1123, 1124, 5, 50, 0, 0, 1124, 1129, 3, 186, 93, 0, 1125, 1127, 5, 9, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 3, 362, 181, 0, 1129, 1126, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1140, 5, 82, 0, 0, 1132, 1137, 3, 284, 142, 0, 1133, 1134, 5, 263, 0, 0, 1134, 1136, 3, 284, 142, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1132, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1144, 1, 0, 0, 0, 1142, 1143, 5, 215, 0, 0, 1143, 1145, 3, 310, 155, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 107, 1, 0, 0, 0, 1146, 1147, 5, 54, 0, 0, 1147, 1148, 3, 186, 93, 0, 1148, 1149, 5, 176, 0, 0, 1149, 1159, 3, 198, 99, 0, 1150, 1151, 5, 82, 0, 0, 1151, 1156, 3, 284, 142, 0, 1152, 1153, 5, 263, 0, 0, 1153, 1155, 3, 284, 142, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1150, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1162, 5, 215, 0, 0, 1162, 1164, 3, 310, 155, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 109, 1, 0, 0, 0, 1165, 1166, 5, 207, 0, 0, 1166, 1168, 5, 103, 0, 0, 1167, 1169, 5, 188, 0, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1172, 3, 186, 93, 0, 1171, 1173, 3, 296, 148, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 3, 206, 103, 0, 1175, 111, 1, 0, 0, 0, 1176, 1189, 3, 132, 66, 0, 1177, 1189, 3, 134, 67, 0, 1178, 1189, 3, 136, 68, 0, 1179, 1189, 3, 130, 65, 0, 1180, 1189, 3, 128, 64, 0, 1181, 1189, 3, 126, 63, 0, 1182, 1189, 3, 124, 62, 0, 1183, 1189, 3, 122, 61, 0, 1184, 1189, 3, 120, 60, 0, 1185, 1189, 3, 118, 59, 0, 1186, 1189, 3, 116, 58, 0, 1187, 1189, 3, 114, 57, 0, 1188, 1176, 1, 0, 0, 0, 1188, 1177, 1, 0, 0, 0, 1188, 1178, 1, 0, 0, 0, 1188, 1179, 1, 0, 0, 0, 1188, 1180, 1, 0, 0, 0, 1188, 1181, 1, 0, 0, 0, 1188, 1182, 1, 0, 0, 0, 1188, 1183, 1, 0, 0, 0, 1188, 1184, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 113, 1, 0, 0, 0, 1190, 1191, 5, 179, 0, 0, 1191, 1203, 7, 6, 0, 0, 1192, 1194, 5, 115, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1200, 3, 318, 159, 0, 1196, 1197, 5, 271, 0, 0, 1197, 1199, 3, 318, 159, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1193, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 115, 1, 0, 0, 0, 1205, 1206, 5, 179, 0, 0, 1206, 1209, 5, 189, 0, 0, 1207, 1208, 5, 94, 0, 0, 1208, 1210, 3, 186, 93, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1222, 1, 0, 0, 0, 1211, 1213, 5, 115, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1219, 3, 318, 159, 0, 1215, 1216, 5, 271, 0, 0, 1216, 1218, 3, 318, 159, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1212, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 117, 1, 0, 0, 0, 1224, 1226, 5, 179, 0, 0, 1225, 1227, 7, 7, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1231, 5, 85, 0, 0, 1229, 1230, 5, 94, 0, 0, 1230, 1232, 3, 184, 92, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1244, 1, 0, 0, 0, 1233, 1235, 5, 115, 0, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1241, 3, 318, 159, 0, 1237, 1238, 5, 271, 0, 0, 1238, 1240, 3, 318, 159, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1234, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 119, 1, 0, 0, 0, 1246, 1247, 5, 179, 0, 0, 1247, 1248, 5, 37, 0, 0, 1248, 1249, 5, 188, 0, 0, 1249, 1250, 3, 186, 93, 0, 1250, 121, 1, 0, 0, 0, 1251, 1252, 5, 179, 0, 0, 1252, 1253, 5, 37, 0, 0, 1253, 1254, 5, 212, 0, 0, 1254, 1255, 3, 188, 94, 0, 1255, 123, 1, 0, 0, 0, 1256, 1257, 5, 179, 0, 0, 1257, 1258, 5, 188, 0, 0, 1258, 1259, 5, 182, 0, 0, 1259, 1260, 3, 186, 93, 0, 1260, 125, 1, 0, 0, 0, 1261, 1262, 5, 179, 0, 0, 1262, 1263, 5, 32, 0, 0, 1263, 1264, 5, 182, 0, 0, 1264, 1265, 3, 186, 93, 0, 1265, 127, 1, 0, 0, 0, 1266, 1268, 5, 179, 0, 0, 1267, 1269, 5, 154, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 5, 146, 0, 0, 1271, 1272, 3, 186, 93, 0, 1272, 129, 1, 0, 0, 0, 1273, 1274, 5, 179, 0, 0, 1274, 1275, 5, 73, 0, 0, 1275, 1276, 5, 94, 0, 0, 1276, 1286, 3, 186, 93, 0, 1277, 1278, 5, 145, 0, 0, 1278, 1279, 5, 265, 0, 0, 1279, 1282, 3, 308, 154, 0, 1280, 1281, 5, 263, 0, 0, 1281, 1283, 3, 308, 154, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 5, 266, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1277, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 131, 1, 0, 0, 0, 1288, 1290, 5, 179, 0, 0, 1289, 1291, 5, 39, 0, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 5, 167, 0, 0, 1293, 133, 1, 0, 0, 0, 1294, 1295, 5, 179, 0, 0, 1295, 1296, 5, 166, 0, 0, 1296, 1297, 5, 86, 0, 0, 1297, 1298, 5, 87, 0, 0, 1298, 1299, 3, 362, 181, 0, 1299, 135, 1, 0, 0, 0, 1300, 1315, 3, 138, 69, 0, 1301, 1315, 3, 140, 70, 0, 1302, 1315, 3, 142, 71, 0, 1303, 1304, 5, 179, 0, 0, 1304, 1305, 5, 86, 0, 0, 1305, 1306, 7, 8, 0, 0, 1306, 1312, 3, 362, 181, 0, 1307, 1308, 5, 136, 0, 0, 1308, 1310, 7, 9, 0, 0, 1309, 1311, 3, 358, 179, 0, 1310, 1309, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1307, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1300, 1, 0, 0, 0, 1314, 1301, 1, 0, 0, 0, 1314, 1302, 1, 0, 0, 0, 1314, 1303, 1, 0, 0, 0, 1315, 137, 1, 0, 0, 0, 1316, 1317, 5, 179, 0, 0, 1317, 1318, 5, 86, 0, 0, 1318, 1319, 7, 8, 0, 0, 1319, 1325, 3, 362, 181, 0, 1320, 1321, 5, 136, 0, 0, 1321, 1323, 5, 46, 0, 0, 1322, 1324, 3, 184, 92, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1320, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 139, 1, 0, 0, 0, 1327, 1328, 5, 179, 0, 0, 1328, 1329, 5, 86, 0, 0, 1329, 1330, 7, 8, 0, 0, 1330, 1336, 3, 362, 181, 0, 1331, 1332, 5, 136, 0, 0, 1332, 1334, 5, 188, 0, 0, 1333, 1335, 3, 186, 93, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 1, 0, 0, 0, 1336, 1331, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 141, 1, 0, 0, 0, 1338, 1339, 5, 179, 0, 0, 1339, 1340, 5, 86, 0, 0, 1340, 1341, 7, 8, 0, 0, 1341, 1347, 3, 362, 181, 0, 1342, 1343, 5, 136, 0, 0, 1343, 1345, 5, 32, 0, 0, 1344, 1346, 3, 192, 96, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 143, 1, 0, 0, 0, 1349, 1353, 3, 146, 73, 0, 1350, 1353, 3, 148, 74, 0, 1351, 1353, 3, 150, 75, 0, 1352, 1349, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1351, 1, 0, 0, 0, 1353, 145, 1, 0, 0, 0, 1354, 1355, 5, 34, 0, 0, 1355, 1356, 5, 136, 0, 0, 1356, 1357, 5, 46, 0, 0, 1357, 1358, 3, 184, 92, 0, 1358, 1361, 5, 108, 0, 0, 1359, 1362, 3, 318, 159, 0, 1360, 1362, 5, 133, 0, 0, 1361, 1359, 1, 0, 0, 0, 1361, 1360, 1, 0, 0, 0, 1362, 147, 1, 0, 0, 0, 1363, 1364, 5, 34, 0, 0, 1364, 1365, 5, 136, 0, 0, 1365, 1366, 5, 188, 0, 0, 1366, 1367, 3, 186, 93, 0, 1367, 1370, 5, 108, 0, 0, 1368, 1371, 3, 318, 159, 0, 1369, 1371, 5, 133, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1369, 1, 0, 0, 0, 1371, 149, 1, 0, 0, 0, 1372, 1373, 5, 34, 0, 0, 1373, 1374, 5, 136, 0, 0, 1374, 1375, 5, 32, 0, 0, 1375, 1376, 3, 192, 96, 0, 1376, 1379, 5, 108, 0, 0, 1377, 1380, 3, 318, 159, 0, 1378, 1380, 5, 133, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1378, 1, 0, 0, 0, 1380, 151, 1, 0, 0, 0, 1381, 1382, 5, 67, 0, 0, 1382, 1383, 3, 4, 2, 0, 1383, 153, 1, 0, 0, 0, 1384, 1390, 5, 176, 0, 0, 1385, 1391, 5, 2, 0, 0, 1386, 1387, 3, 362, 181, 0, 1387, 1388, 5, 249, 0, 0, 1388, 1389, 3, 308, 154, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 155, 1, 0, 0, 0, 1392, 1393, 5, 264, 0, 0, 1393, 1394, 5, 180, 0, 0, 1394, 1404, 5, 265, 0, 0, 1395, 1397, 3, 318, 159, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1401, 3, 318, 159, 0, 1399, 1400, 5, 263, 0, 0, 1400, 1402, 3, 308, 154, 0, 1401, 1399, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1405, 3, 308, 154, 0, 1404, 1396, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 5, 266, 0, 0, 1407, 157, 1, 0, 0, 0, 1408, 1409, 5, 107, 0, 0, 1409, 1410, 5, 121, 0, 0, 1410, 1411, 3, 186, 93, 0, 1411, 159, 1, 0, 0, 0, 1412, 1413, 5, 118, 0, 0, 1413, 1414, 5, 45, 0, 0, 1414, 1415, 5, 98, 0, 0, 1415, 1417, 5, 274, 0, 0, 1416, 1418, 5, 144, 0, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 5, 103, 0, 0, 1420, 1421, 5, 188, 0, 0, 1421, 1431, 3, 186, 93, 0, 1422, 1423, 5, 145, 0, 0, 1423, 1424, 5, 265, 0, 0, 1424, 1427, 3, 308, 154, 0, 1425, 1426, 5, 263, 0, 0, 1426, 1428, 3, 308, 154, 0, 1427, 1425, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 5, 266, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1422, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 161, 1, 0, 0, 0, 1433, 1437, 3, 164, 82, 0, 1434, 1437, 3, 166, 83, 0, 1435, 1437, 3, 168, 84, 0, 1436, 1433, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 163, 1, 0, 0, 0, 1438, 1439, 5, 162, 0, 0, 1439, 1452, 3, 186, 93, 0, 1440, 1441, 5, 145, 0, 0, 1441, 1442, 5, 265, 0, 0, 1442, 1447, 3, 308, 154, 0, 1443, 1444, 5, 263, 0, 0, 1444, 1446, 3, 308, 154, 0, 1445, 1443, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1450, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1450, 1451, 5, 266, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1440, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 165, 1, 0, 0, 0, 1454, 1455, 5, 162, 0, 0, 1455, 1456, 5, 13, 0, 0, 1456, 167, 1, 0, 0, 0, 1457, 1458, 5, 162, 0, 0, 1458, 1459, 5, 85, 0, 0, 1459, 1460, 3, 190, 95, 0, 1460, 169, 1, 0, 0, 0, 1461, 1462, 5, 93, 0, 0, 1462, 1463, 5, 66, 0, 0, 1463, 171, 1, 0, 0, 0, 1464, 1465, 5, 93, 0, 0, 1465, 1466, 5, 132, 0, 0, 1466, 1467, 5, 66, 0, 0, 1467, 173, 1, 0, 0, 0, 1468, 1469, 3, 358, 179, 0, 1469, 175, 1, 0, 0, 0, 1470, 1471, 3, 358, 179, 0, 1471, 177, 1, 0, 0, 0, 1472, 1473, 3, 358, 179, 0, 1473, 179, 1, 0, 0, 0, 1474, 1475, 3, 358, 179, 0, 1475, 181, 1, 0, 0, 0, 1476, 1477, 3, 358, 179, 0, 1477, 183, 1, 0, 0, 0, 1478, 1479, 3, 358, 179, 0, 1479, 185, 1, 0, 0, 0, 1480, 1485, 3, 362, 181, 0, 1481, 1482, 5, 261, 0, 0, 1482, 1484, 3, 362, 181, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 187, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1493, 3, 362, 181, 0, 1489, 1490, 5, 261, 0, 0, 1490, 1492, 3, 362, 181, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 189, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 3, 366, 183, 0, 1497, 1499, 3, 358, 179, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 191, 1, 0, 0, 0, 1500, 1503, 3, 358, 179, 0, 1501, 1503, 4, 96, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1501, 1, 0, 0, 0, 1503, 193, 1, 0, 0, 0, 1504, 1507, 3, 186, 93, 0, 1505, 1507, 3, 188, 94, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1505, 1, 0, 0, 0, 1507, 195, 1, 0, 0, 0, 1508, 1509, 5, 21, 0, 0, 1509, 1510, 5, 26, 0, 0, 1510, 1512, 3, 296, 148, 0, 1511, 1508, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1515, 3, 222, 111, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 168, 0, 0, 1517, 1518, 5, 79, 0, 0, 1518, 1520, 3, 258, 129, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 216, 0, 0, 1522, 1523, 5, 175, 0, 0, 1523, 1525, 3, 252, 126, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 23, 0, 0, 1527, 1528, 5, 9, 0, 0, 1528, 1530, 3, 234, 117, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1532, 5, 24, 0, 0, 1532, 1534, 3, 318, 159, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1545, 1, 0, 0, 0, 1535, 1536, 5, 30, 0, 0, 1536, 1537, 5, 94, 0, 0, 1537, 1542, 3, 358, 179, 0, 1538, 1539, 5, 216, 0, 0, 1539, 1540, 5, 151, 0, 0, 1540, 1541, 5, 249, 0, 0, 1541, 1543, 5, 277, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1546, 5, 197, 0, 0, 1545, 1535, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1548, 5, 25, 0, 0, 1548, 1550, 3, 252, 126, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 197, 1, 0, 0, 0, 1551, 1556, 3, 200, 100, 0, 1552, 1553, 5, 263, 0, 0, 1553, 1555, 3, 200, 100, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 3, 358, 179, 0, 1560, 1561, 5, 249, 0, 0, 1561, 1562, 3, 308, 154, 0, 1562, 201, 1, 0, 0, 0, 1563, 1565, 5, 265, 0, 0, 1564, 1566, 3, 204, 102, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1573, 1, 0, 0, 0, 1567, 1569, 5, 263, 0, 0, 1568, 1570, 3, 204, 102, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1567, 1, 0, 0, 0, 1572, 1575, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1576, 1577, 5, 266, 0, 0, 1577, 203, 1, 0, 0, 0, 1578, 1580, 3, 182, 91, 0, 1579, 1581, 3, 222, 111, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 205, 1, 0, 0, 0, 1582, 1584, 3, 208, 104, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 3, 262, 131, 0, 1586, 207, 1, 0, 0, 0, 1587, 1588, 5, 216, 0, 0, 1588, 1593, 3, 278, 139, 0, 1589, 1590, 5, 263, 0, 0, 1590, 1592, 3, 278, 139, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 209, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 150, 0, 0, 1597, 1598, 5, 110, 0, 0, 1598, 1600, 3, 296, 148, 0, 1599, 1601, 5, 53, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 225, 0, 0, 1603, 1604, 5, 263, 0, 0, 1604, 1606, 5, 225, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1610, 1, 0, 0, 0, 1607, 1611, 5, 226, 0, 0, 1608, 1609, 5, 263, 0, 0, 1609, 1611, 5, 226, 0, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1624, 1, 0, 0, 0, 1612, 1613, 5, 263, 0, 0, 1613, 1616, 3, 212, 106, 0, 1614, 1616, 3, 212, 106, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1621, 1, 0, 0, 0, 1617, 1618, 5, 263, 0, 0, 1618, 1620, 3, 212, 106, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1622, 1625, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1615, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 211, 1, 0, 0, 0, 1626, 1627, 5, 81, 0, 0, 1627, 1628, 5, 110, 0, 0, 1628, 1629, 3, 296, 148, 0, 1629, 1630, 5, 224, 0, 0, 1630, 1631, 3, 186, 93, 0, 1631, 1633, 3, 296, 148, 0, 1632, 1634, 5, 53, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1637, 5, 225, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1640, 5, 226, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 213, 1, 0, 0, 0, 1641, 1642, 3, 192, 96, 0, 1642, 1645, 3, 332, 166, 0, 1643, 1644, 5, 34, 0, 0, 1644, 1646, 3, 318, 159, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 215, 1, 0, 0, 0, 1647, 1648, 3, 182, 91, 0, 1648, 1650, 3, 332, 166, 0, 1649, 1651, 3, 222, 111, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 217, 1, 0, 0, 0, 1652, 1653, 3, 220, 110, 0, 1653, 219, 1, 0, 0, 0, 1654, 1655, 3, 182, 91, 0, 1655, 1663, 3, 332, 166, 0, 1656, 1660, 3, 228, 114, 0, 1657, 1659, 3, 228, 114, 0, 1658, 1657, 1, 0, 0, 0, 1659, 1662, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1656, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 222, 111, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1670, 1, 0, 0, 0, 1668, 1669, 5, 150, 0, 0, 1669, 1671, 5, 110, 0, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 221, 1, 0, 0, 0, 1672, 1673, 5, 34, 0, 0, 1673, 1674, 3, 318, 159, 0, 1674, 223, 1, 0, 0, 0, 1675, 1683, 3, 214, 107, 0, 1676, 1680, 3, 228, 114, 0, 1677, 1679, 3, 228, 114, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1676, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 225, 1, 0, 0, 0, 1685, 1686, 3, 182, 91, 0, 1686, 1689, 3, 332, 166, 0, 1687, 1688, 5, 34, 0, 0, 1688, 1690, 3, 318, 159, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1698, 1, 0, 0, 0, 1691, 1695, 3, 228, 114, 0, 1692, 1694, 3, 228, 114, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1691, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 227, 1, 0, 0, 0, 1700, 1702, 5, 132, 0, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1706, 5, 133, 0, 0, 1704, 1706, 3, 230, 115, 0, 1705, 1701, 1, 0, 0, 0, 1705, 1704, 1, 0, 0, 0, 1706, 229, 1, 0, 0, 0, 1707, 1708, 5, 60, 0, 0, 1708, 1716, 3, 308, 154, 0, 1709, 1710, 5, 35, 0, 0, 1710, 1716, 3, 308, 154, 0, 1711, 1712, 5, 51, 0, 0, 1712, 1716, 3, 308, 154, 0, 1713, 1714, 5, 16, 0, 0, 1714, 1716, 3, 364, 182, 0, 1715, 1707, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 231, 1, 0, 0, 0, 1717, 1718, 7, 10, 0, 0, 1718, 233, 1, 0, 0, 0, 1719, 1720, 7, 11, 0, 0, 1720, 235, 1, 0, 0, 0, 1721, 1726, 3, 238, 119, 0, 1722, 1723, 5, 263, 0, 0, 1723, 1725, 3, 238, 119, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1731, 1, 0, 0, 0, 1728, 1726, 1, 0, 0, 0, 1729, 1730, 5, 263, 0, 0, 1730, 1732, 3, 240, 120, 0, 1731, 1729, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1735, 3, 240, 120, 0, 1734, 1721, 1, 0, 0, 0, 1734, 1733, 1, 0, 0, 0, 1735, 237, 1, 0, 0, 0, 1736, 1738, 5, 89, 0, 0, 1737, 1739, 3, 296, 148, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 5, 146, 0, 0, 1741, 1742, 3, 364, 182, 0, 1742, 239, 1, 0, 0, 0, 1743, 1745, 5, 154, 0, 0, 1744, 1746, 3, 296, 148, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 5, 265, 0, 0, 1748, 1749, 5, 145, 0, 0, 1749, 1755, 3, 242, 121, 0, 1750, 1751, 5, 263, 0, 0, 1751, 1752, 5, 145, 0, 0, 1752, 1754, 3, 242, 121, 0, 1753, 1750, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1758, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1759, 5, 266, 0, 0, 1759, 241, 1, 0, 0, 0, 1760, 1761, 5, 210, 0, 0, 1761, 1762, 3, 248, 124, 0, 1762, 1763, 3, 308, 154, 0, 1763, 1776, 1, 0, 0, 0, 1764, 1765, 3, 308, 154, 0, 1765, 1766, 3, 246, 123, 0, 1766, 1768, 1, 0, 0, 0, 1767, 1764, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1773, 5, 211, 0, 0, 1770, 1771, 3, 246, 123, 0, 1771, 1772, 3, 308, 154, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1770, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1760, 1, 0, 0, 0, 1775, 1767, 1, 0, 0, 0, 1776, 243, 1, 0, 0, 0, 1777, 1778, 5, 30, 0, 0, 1778, 1779, 5, 94, 0, 0, 1779, 1784, 3, 362, 181, 0, 1780, 1781, 5, 216, 0, 0, 1781, 1782, 5, 151, 0, 0, 1782, 1783, 5, 249, 0, 0, 1783, 1785, 3, 364, 182, 0, 1784, 1780, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1788, 1, 0, 0, 0, 1786, 1788, 5, 197, 0, 0, 1787, 1777, 1, 0, 0, 0, 1787, 1786, 1, 0, 0, 0, 1788, 245, 1, 0, 0, 0, 1789, 1795, 1, 0, 0, 0, 1790, 1795, 5, 251, 0, 0, 1791, 1795, 5, 252, 0, 0, 1792, 1795, 5, 253, 0, 0, 1793, 1795, 5, 254, 0, 0, 1794, 1789, 1, 0, 0, 0, 1794, 1790, 1, 0, 0, 0, 1794, 1791, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 247, 1, 0, 0, 0, 1796, 1805, 5, 249, 0, 0, 1797, 1805, 5, 250, 0, 0, 1798, 1805, 5, 115, 0, 0, 1799, 1805, 5, 164, 0, 0, 1800, 1805, 5, 163, 0, 0, 1801, 1805, 5, 15, 0, 0, 1802, 1805, 5, 94, 0, 0, 1803, 1805, 3, 246, 123, 0, 1804, 1796, 1, 0, 0, 0, 1804, 1797, 1, 0, 0, 0, 1804, 1798, 1, 0, 0, 0, 1804, 1799, 1, 0, 0, 0, 1804, 1800, 1, 0, 0, 0, 1804, 1801, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1804, 1803, 1, 0, 0, 0, 1805, 249, 1, 0, 0, 0, 1806, 1807, 5, 115, 0, 0, 1807, 1810, 3, 358, 179, 0, 1808, 1809, 7, 12, 0, 0, 1809, 1811, 5, 153, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 251, 1, 0, 0, 0, 1812, 1813, 5, 265, 0, 0, 1813, 1818, 3, 260, 130, 0, 1814, 1815, 5, 263, 0, 0, 1815, 1817, 3, 260, 130, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1820, 1, 0, 0, 0, 1818, 1816, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1821, 1, 0, 0, 0, 1820, 1818, 1, 0, 0, 0, 1821, 1822, 5, 266, 0, 0, 1822, 253, 1, 0, 0, 0, 1823, 1824, 5, 265, 0, 0, 1824, 1829, 3, 214, 107, 0, 1825, 1826, 5, 263, 0, 0, 1826, 1828, 3, 214, 107, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1832, 1, 0, 0, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1833, 5, 266, 0, 0, 1833, 255, 1, 0, 0, 0, 1834, 1839, 3, 308, 154, 0, 1835, 1836, 5, 263, 0, 0, 1836, 1838, 3, 308, 154, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 257, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1852, 5, 52, 0, 0, 1843, 1844, 5, 71, 0, 0, 1844, 1845, 5, 191, 0, 0, 1845, 1846, 5, 26, 0, 0, 1846, 1850, 3, 318, 159, 0, 1847, 1848, 5, 63, 0, 0, 1848, 1849, 5, 26, 0, 0, 1849, 1851, 3, 318, 159, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1843, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1858, 1, 0, 0, 0, 1854, 1855, 5, 117, 0, 0, 1855, 1856, 5, 191, 0, 0, 1856, 1857, 5, 26, 0, 0, 1857, 1859, 3, 318, 159, 0, 1858, 1854, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 259, 1, 0, 0, 0, 1860, 1863, 3, 362, 181, 0, 1861, 1862, 5, 249, 0, 0, 1862, 1864, 3, 308, 154, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 261, 1, 0, 0, 0, 1865, 1876, 3, 264, 132, 0, 1866, 1867, 5, 139, 0, 0, 1867, 1868, 5, 26, 0, 0, 1868, 1873, 3, 268, 134, 0, 1869, 1870, 5, 263, 0, 0, 1870, 1872, 3, 268, 134, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1866, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1884, 1, 0, 0, 0, 1878, 1879, 5, 116, 0, 0, 1879, 1882, 3, 308, 154, 0, 1880, 1881, 5, 135, 0, 0, 1881, 1883, 5, 277, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1878, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 263, 1, 0, 0, 0, 1886, 1887, 6, 132, -1, 0, 1887, 1888, 3, 266, 133, 0, 1888, 1903, 1, 0, 0, 0, 1889, 1890, 10, 2, 0, 0, 1890, 1892, 5, 100, 0, 0, 1891, 1893, 3, 280, 140, 0, 1892, 1891, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1902, 3, 264, 132, 3, 1895, 1896, 10, 1, 0, 0, 1896, 1898, 7, 13, 0, 0, 1897, 1899, 3, 280, 140, 0, 1898, 1897, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1902, 3, 264, 132, 2, 1901, 1889, 1, 0, 0, 0, 1901, 1895, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 265, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1923, 3, 270, 135, 0, 1907, 1908, 5, 188, 0, 0, 1908, 1923, 3, 186, 93, 0, 1909, 1910, 5, 211, 0, 0, 1910, 1915, 3, 308, 154, 0, 1911, 1912, 5, 263, 0, 0, 1912, 1914, 3, 308, 154, 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, 1923, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 5, 265, 0, 0, 1919, 1920, 3, 262, 131, 0, 1920, 1921, 5, 266, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1906, 1, 0, 0, 0, 1922, 1907, 1, 0, 0, 0, 1922, 1909, 1, 0, 0, 0, 1922, 1918, 1, 0, 0, 0, 1923, 267, 1, 0, 0, 0, 1924, 1926, 3, 306, 153, 0, 1925, 1927, 7, 14, 0, 0, 1926, 1925, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1930, 1, 0, 0, 0, 1928, 1929, 5, 134, 0, 0, 1929, 1931, 7, 15, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 269, 1, 0, 0, 0, 1932, 1934, 5, 174, 0, 0, 1933, 1935, 3, 280, 140, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 1, 0, 0, 0, 1936, 1938, 5, 183, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1944, 3, 282, 141, 0, 1940, 1941, 5, 263, 0, 0, 1941, 1943, 3, 282, 141, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1946, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1956, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1948, 5, 82, 0, 0, 1948, 1953, 3, 284, 142, 0, 1949, 1950, 5, 263, 0, 0, 1950, 1952, 3, 284, 142, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1956, 1947, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1959, 5, 215, 0, 0, 1959, 1961, 3, 310, 155, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1965, 1, 0, 0, 0, 1962, 1963, 5, 87, 0, 0, 1963, 1964, 5, 26, 0, 0, 1964, 1966, 3, 272, 136, 0, 1965, 1962, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1968, 5, 90, 0, 0, 1968, 1970, 3, 310, 155, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 271, 1, 0, 0, 0, 1971, 1973, 3, 280, 140, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1979, 3, 274, 137, 0, 1975, 1976, 5, 263, 0, 0, 1976, 1978, 3, 274, 137, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 273, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1983, 3, 276, 138, 0, 1983, 275, 1, 0, 0, 0, 1984, 1993, 5, 265, 0, 0, 1985, 1990, 3, 306, 153, 0, 1986, 1987, 5, 263, 0, 0, 1987, 1989, 3, 306, 153, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1994, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1985, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1998, 5, 266, 0, 0, 1996, 1998, 3, 306, 153, 0, 1997, 1984, 1, 0, 0, 0, 1997, 1996, 1, 0, 0, 0, 1998, 277, 1, 0, 0, 0, 1999, 2001, 3, 362, 181, 0, 2000, 2002, 3, 296, 148, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 5, 9, 0, 0, 2004, 2005, 3, 300, 150, 0, 2005, 279, 1, 0, 0, 0, 2006, 2007, 7, 16, 0, 0, 2007, 281, 1, 0, 0, 0, 2008, 2013, 3, 306, 153, 0, 2009, 2011, 5, 9, 0, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2014, 3, 362, 181, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2021, 1, 0, 0, 0, 2015, 2016, 3, 358, 179, 0, 2016, 2017, 5, 261, 0, 0, 2017, 2018, 5, 257, 0, 0, 2018, 2021, 1, 0, 0, 0, 2019, 2021, 5, 257, 0, 0, 2020, 2008, 1, 0, 0, 0, 2020, 2015, 1, 0, 0, 0, 2020, 2019, 1, 0, 0, 0, 2021, 283, 1, 0, 0, 0, 2022, 2023, 6, 142, -1, 0, 2023, 2024, 3, 290, 145, 0, 2024, 2038, 1, 0, 0, 0, 2025, 2034, 10, 2, 0, 0, 2026, 2027, 5, 38, 0, 0, 2027, 2028, 5, 109, 0, 0, 2028, 2035, 3, 290, 145, 0, 2029, 2030, 3, 286, 143, 0, 2030, 2031, 5, 109, 0, 0, 2031, 2032, 3, 284, 142, 0, 2032, 2033, 3, 288, 144, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2026, 1, 0, 0, 0, 2034, 2029, 1, 0, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2025, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 285, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2043, 5, 97, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2073, 1, 0, 0, 0, 2044, 2046, 5, 114, 0, 0, 2045, 2047, 5, 97, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2073, 1, 0, 0, 0, 2048, 2050, 5, 165, 0, 0, 2049, 2051, 5, 97, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2073, 1, 0, 0, 0, 2052, 2054, 5, 114, 0, 0, 2053, 2055, 5, 141, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2073, 1, 0, 0, 0, 2056, 2058, 5, 165, 0, 0, 2057, 2059, 5, 141, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2073, 1, 0, 0, 0, 2060, 2062, 5, 83, 0, 0, 2061, 2063, 5, 141, 0, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2073, 1, 0, 0, 0, 2064, 2065, 5, 114, 0, 0, 2065, 2073, 5, 177, 0, 0, 2066, 2067, 5, 165, 0, 0, 2067, 2073, 5, 177, 0, 0, 2068, 2069, 5, 114, 0, 0, 2069, 2073, 5, 7, 0, 0, 2070, 2071, 5, 165, 0, 0, 2071, 2073, 5, 7, 0, 0, 2072, 2042, 1, 0, 0, 0, 2072, 2044, 1, 0, 0, 0, 2072, 2048, 1, 0, 0, 0, 2072, 2052, 1, 0, 0, 0, 2072, 2056, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2064, 1, 0, 0, 0, 2072, 2066, 1, 0, 0, 0, 2072, 2068, 1, 0, 0, 0, 2072, 2070, 1, 0, 0, 0, 2073, 287, 1, 0, 0, 0, 2074, 2075, 5, 136, 0, 0, 2075, 2089, 3, 310, 155, 0, 2076, 2077, 5, 205, 0, 0, 2077, 2078, 5, 265, 0, 0, 2078, 2083, 3, 362, 181, 0, 2079, 2080, 5, 263, 0, 0, 2080, 2082, 3, 362, 181, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2085, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2087, 5, 266, 0, 0, 2087, 2089, 1, 0, 0, 0, 2088, 2074, 1, 0, 0, 0, 2088, 2076, 1, 0, 0, 0, 2089, 289, 1, 0, 0, 0, 2090, 2103, 3, 294, 147, 0, 2091, 2092, 5, 190, 0, 0, 2092, 2093, 3, 292, 146, 0, 2093, 2094, 5, 265, 0, 0, 2094, 2095, 3, 308, 154, 0, 2095, 2101, 5, 266, 0, 0, 2096, 2097, 5, 157, 0, 0, 2097, 2098, 5, 265, 0, 0, 2098, 2099, 3, 308, 154, 0, 2099, 2100, 5, 266, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2096, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2091, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 291, 1, 0, 0, 0, 2105, 2106, 7, 17, 0, 0, 2106, 293, 1, 0, 0, 0, 2107, 2115, 3, 298, 149, 0, 2108, 2110, 5, 9, 0, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 3, 362, 181, 0, 2112, 2114, 3, 296, 148, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2109, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 295, 1, 0, 0, 0, 2117, 2118, 5, 265, 0, 0, 2118, 2123, 3, 192, 96, 0, 2119, 2120, 5, 263, 0, 0, 2120, 2122, 3, 192, 96, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2125, 1, 0, 0, 0, 2123, 2121, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2126, 2127, 5, 266, 0, 0, 2127, 297, 1, 0, 0, 0, 2128, 2136, 3, 194, 97, 0, 2129, 2131, 5, 113, 0, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2136, 3, 300, 150, 0, 2133, 2136, 3, 302, 151, 0, 2134, 2136, 3, 304, 152, 0, 2135, 2128, 1, 0, 0, 0, 2135, 2130, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 299, 1, 0, 0, 0, 2137, 2138, 5, 265, 0, 0, 2138, 2139, 3, 206, 103, 0, 2139, 2140, 5, 266, 0, 0, 2140, 301, 1, 0, 0, 0, 2141, 2142, 5, 201, 0, 0, 2142, 2143, 5, 265, 0, 0, 2143, 2148, 3, 308, 154, 0, 2144, 2145, 5, 263, 0, 0, 2145, 2147, 3, 308, 154, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2154, 5, 266, 0, 0, 2152, 2153, 5, 216, 0, 0, 2153, 2155, 5, 140, 0, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 303, 1, 0, 0, 0, 2156, 2157, 5, 265, 0, 0, 2157, 2158, 3, 284, 142, 0, 2158, 2159, 5, 266, 0, 0, 2159, 305, 1, 0, 0, 0, 2160, 2163, 3, 192, 96, 0, 2161, 2163, 3, 308, 154, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2161, 1, 0, 0, 0, 2163, 307, 1, 0, 0, 0, 2164, 2165, 3, 310, 155, 0, 2165, 309, 1, 0, 0, 0, 2166, 2167, 6, 155, -1, 0, 2167, 2169, 3, 314, 157, 0, 2168, 2170, 3, 312, 156, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2174, 1, 0, 0, 0, 2171, 2172, 5, 132, 0, 0, 2172, 2174, 3, 310, 155, 3, 2173, 2166, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2183, 1, 0, 0, 0, 2175, 2176, 10, 2, 0, 0, 2176, 2177, 5, 5, 0, 0, 2177, 2182, 3, 310, 155, 3, 2178, 2179, 10, 1, 0, 0, 2179, 2180, 5, 138, 0, 0, 2180, 2182, 3, 310, 155, 2, 2181, 2175, 1, 0, 0, 0, 2181, 2178, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 311, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 3, 320, 160, 0, 2187, 2188, 3, 314, 157, 0, 2188, 2245, 1, 0, 0, 0, 2189, 2190, 3, 320, 160, 0, 2190, 2191, 3, 322, 161, 0, 2191, 2192, 3, 300, 150, 0, 2192, 2245, 1, 0, 0, 0, 2193, 2195, 5, 132, 0, 0, 2194, 2193, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 5, 15, 0, 0, 2197, 2198, 3, 314, 157, 0, 2198, 2199, 5, 5, 0, 0, 2199, 2200, 3, 314, 157, 0, 2200, 2245, 1, 0, 0, 0, 2201, 2203, 5, 132, 0, 0, 2202, 2201, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2205, 5, 94, 0, 0, 2205, 2206, 5, 265, 0, 0, 2206, 2211, 3, 308, 154, 0, 2207, 2208, 5, 263, 0, 0, 2208, 2210, 3, 308, 154, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 266, 0, 0, 2215, 2245, 1, 0, 0, 0, 2216, 2218, 5, 132, 0, 0, 2217, 2216, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 5, 94, 0, 0, 2220, 2245, 3, 300, 150, 0, 2221, 2223, 5, 132, 0, 0, 2222, 2221, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 7, 18, 0, 0, 2225, 2228, 3, 314, 157, 0, 2226, 2227, 5, 62, 0, 0, 2227, 2229, 3, 314, 157, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2245, 1, 0, 0, 0, 2230, 2231, 7, 19, 0, 0, 2231, 2245, 3, 314, 157, 0, 2232, 2234, 5, 108, 0, 0, 2233, 2235, 5, 132, 0, 0, 2234, 2233, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2245, 7, 20, 0, 0, 2237, 2239, 5, 108, 0, 0, 2238, 2240, 5, 132, 0, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2242, 5, 57, 0, 0, 2242, 2243, 5, 82, 0, 0, 2243, 2245, 3, 314, 157, 0, 2244, 2186, 1, 0, 0, 0, 2244, 2189, 1, 0, 0, 0, 2244, 2194, 1, 0, 0, 0, 2244, 2202, 1, 0, 0, 0, 2244, 2217, 1, 0, 0, 0, 2244, 2222, 1, 0, 0, 0, 2244, 2230, 1, 0, 0, 0, 2244, 2232, 1, 0, 0, 0, 2244, 2237, 1, 0, 0, 0, 2245, 313, 1, 0, 0, 0, 2246, 2247, 6, 157, -1, 0, 2247, 2251, 3, 316, 158, 0, 2248, 2249, 7, 21, 0, 0, 2249, 2251, 3, 314, 157, 4, 2250, 2246, 1, 0, 0, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2263, 1, 0, 0, 0, 2252, 2253, 10, 3, 0, 0, 2253, 2254, 7, 22, 0, 0, 2254, 2262, 3, 314, 157, 4, 2255, 2256, 10, 2, 0, 0, 2256, 2257, 7, 21, 0, 0, 2257, 2262, 3, 314, 157, 3, 2258, 2259, 10, 1, 0, 0, 2259, 2260, 5, 260, 0, 0, 2260, 2262, 3, 314, 157, 2, 2261, 2252, 1, 0, 0, 0, 2261, 2255, 1, 0, 0, 0, 2261, 2258, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 315, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 6, 158, -1, 0, 2267, 2513, 5, 133, 0, 0, 2268, 2513, 3, 326, 163, 0, 2269, 2270, 3, 362, 181, 0, 2270, 2271, 3, 318, 159, 0, 2271, 2513, 1, 0, 0, 0, 2272, 2273, 5, 286, 0, 0, 2273, 2513, 3, 318, 159, 0, 2274, 2513, 3, 364, 182, 0, 2275, 2513, 3, 324, 162, 0, 2276, 2513, 3, 318, 159, 0, 2277, 2513, 5, 276, 0, 0, 2278, 2513, 5, 272, 0, 0, 2279, 2280, 5, 148, 0, 0, 2280, 2281, 5, 265, 0, 0, 2281, 2282, 3, 314, 157, 0, 2282, 2283, 5, 94, 0, 0, 2283, 2284, 3, 314, 157, 0, 2284, 2285, 5, 266, 0, 0, 2285, 2513, 1, 0, 0, 0, 2286, 2287, 5, 265, 0, 0, 2287, 2290, 3, 308, 154, 0, 2288, 2289, 5, 9, 0, 0, 2289, 2291, 3, 332, 166, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2300, 1, 0, 0, 0, 2292, 2293, 5, 263, 0, 0, 2293, 2296, 3, 308, 154, 0, 2294, 2295, 5, 9, 0, 0, 2295, 2297, 3, 332, 166, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2292, 1, 0, 0, 0, 2299, 2302, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2304, 5, 266, 0, 0, 2304, 2513, 1, 0, 0, 0, 2305, 2306, 5, 168, 0, 0, 2306, 2307, 5, 265, 0, 0, 2307, 2312, 3, 308, 154, 0, 2308, 2309, 5, 263, 0, 0, 2309, 2311, 3, 308, 154, 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, 266, 0, 0, 2316, 2513, 1, 0, 0, 0, 2317, 2318, 3, 190, 95, 0, 2318, 2319, 5, 265, 0, 0, 2319, 2320, 5, 257, 0, 0, 2320, 2322, 5, 266, 0, 0, 2321, 2323, 3, 342, 171, 0, 2322, 2321, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2326, 3, 344, 172, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2513, 1, 0, 0, 0, 2327, 2328, 3, 190, 95, 0, 2328, 2340, 5, 265, 0, 0, 2329, 2331, 3, 280, 140, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2337, 3, 308, 154, 0, 2333, 2334, 5, 263, 0, 0, 2334, 2336, 3, 308, 154, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2339, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2330, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2352, 1, 0, 0, 0, 2342, 2343, 5, 139, 0, 0, 2343, 2344, 5, 26, 0, 0, 2344, 2349, 3, 268, 134, 0, 2345, 2346, 5, 263, 0, 0, 2346, 2348, 3, 268, 134, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2351, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2342, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 5, 266, 0, 0, 2355, 2357, 3, 342, 171, 0, 2356, 2355, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2360, 3, 344, 172, 0, 2359, 2358, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2513, 1, 0, 0, 0, 2361, 2362, 3, 362, 181, 0, 2362, 2363, 5, 273, 0, 0, 2363, 2364, 3, 308, 154, 0, 2364, 2513, 1, 0, 0, 0, 2365, 2374, 5, 265, 0, 0, 2366, 2371, 3, 362, 181, 0, 2367, 2368, 5, 263, 0, 0, 2368, 2370, 3, 362, 181, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2373, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2375, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2366, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 5, 266, 0, 0, 2377, 2378, 5, 273, 0, 0, 2378, 2513, 3, 308, 154, 0, 2379, 2380, 5, 265, 0, 0, 2380, 2381, 3, 206, 103, 0, 2381, 2382, 5, 266, 0, 0, 2382, 2513, 1, 0, 0, 0, 2383, 2384, 5, 66, 0, 0, 2384, 2385, 5, 265, 0, 0, 2385, 2386, 3, 206, 103, 0, 2386, 2387, 5, 266, 0, 0, 2387, 2513, 1, 0, 0, 0, 2388, 2389, 5, 28, 0, 0, 2389, 2391, 3, 314, 157, 0, 2390, 2392, 3, 340, 170, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2396, 5, 59, 0, 0, 2396, 2398, 3, 308, 154, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 5, 61, 0, 0, 2400, 2513, 1, 0, 0, 0, 2401, 2403, 5, 28, 0, 0, 2402, 2404, 3, 340, 170, 0, 2403, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2409, 1, 0, 0, 0, 2407, 2408, 5, 59, 0, 0, 2408, 2410, 3, 308, 154, 0, 2409, 2407, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 5, 61, 0, 0, 2412, 2513, 1, 0, 0, 0, 2413, 2414, 5, 29, 0, 0, 2414, 2415, 5, 265, 0, 0, 2415, 2416, 3, 308, 154, 0, 2416, 2417, 5, 9, 0, 0, 2417, 2418, 3, 332, 166, 0, 2418, 2419, 5, 266, 0, 0, 2419, 2513, 1, 0, 0, 0, 2420, 2421, 5, 195, 0, 0, 2421, 2422, 5, 265, 0, 0, 2422, 2423, 3, 308, 154, 0, 2423, 2424, 5, 9, 0, 0, 2424, 2425, 3, 332, 166, 0, 2425, 2426, 5, 266, 0, 0, 2426, 2513, 1, 0, 0, 0, 2427, 2428, 5, 8, 0, 0, 2428, 2437, 5, 267, 0, 0, 2429, 2434, 3, 308, 154, 0, 2430, 2431, 5, 263, 0, 0, 2431, 2433, 3, 308, 154, 0, 2432, 2430, 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, 2429, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2513, 5, 268, 0, 0, 2440, 2513, 3, 362, 181, 0, 2441, 2513, 5, 40, 0, 0, 2442, 2446, 5, 42, 0, 0, 2443, 2444, 5, 265, 0, 0, 2444, 2445, 5, 277, 0, 0, 2445, 2447, 5, 266, 0, 0, 2446, 2443, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2513, 1, 0, 0, 0, 2448, 2452, 5, 43, 0, 0, 2449, 2450, 5, 265, 0, 0, 2450, 2451, 5, 277, 0, 0, 2451, 2453, 5, 266, 0, 0, 2452, 2449, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2513, 1, 0, 0, 0, 2454, 2458, 5, 119, 0, 0, 2455, 2456, 5, 265, 0, 0, 2456, 2457, 5, 277, 0, 0, 2457, 2459, 5, 266, 0, 0, 2458, 2455, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2513, 1, 0, 0, 0, 2460, 2464, 5, 120, 0, 0, 2461, 2462, 5, 265, 0, 0, 2462, 2463, 5, 277, 0, 0, 2463, 2465, 5, 266, 0, 0, 2464, 2461, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2513, 1, 0, 0, 0, 2466, 2513, 5, 44, 0, 0, 2467, 2513, 5, 41, 0, 0, 2468, 2469, 5, 184, 0, 0, 2469, 2470, 5, 265, 0, 0, 2470, 2471, 3, 314, 157, 0, 2471, 2472, 5, 82, 0, 0, 2472, 2475, 3, 314, 157, 0, 2473, 2474, 5, 78, 0, 0, 2474, 2476, 3, 314, 157, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 5, 266, 0, 0, 2478, 2513, 1, 0, 0, 0, 2479, 2480, 5, 131, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2484, 3, 314, 157, 0, 2482, 2483, 5, 263, 0, 0, 2483, 2485, 3, 330, 165, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 5, 266, 0, 0, 2487, 2513, 1, 0, 0, 0, 2488, 2489, 5, 68, 0, 0, 2489, 2490, 5, 265, 0, 0, 2490, 2491, 3, 362, 181, 0, 2491, 2492, 5, 82, 0, 0, 2492, 2493, 3, 314, 157, 0, 2493, 2494, 5, 266, 0, 0, 2494, 2513, 1, 0, 0, 0, 2495, 2496, 5, 265, 0, 0, 2496, 2497, 3, 308, 154, 0, 2497, 2498, 5, 266, 0, 0, 2498, 2513, 1, 0, 0, 0, 2499, 2500, 5, 88, 0, 0, 2500, 2509, 5, 265, 0, 0, 2501, 2506, 3, 358, 179, 0, 2502, 2503, 5, 263, 0, 0, 2503, 2505, 3, 358, 179, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2508, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2509, 2501, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 5, 266, 0, 0, 2512, 2266, 1, 0, 0, 0, 2512, 2268, 1, 0, 0, 0, 2512, 2269, 1, 0, 0, 0, 2512, 2272, 1, 0, 0, 0, 2512, 2274, 1, 0, 0, 0, 2512, 2275, 1, 0, 0, 0, 2512, 2276, 1, 0, 0, 0, 2512, 2277, 1, 0, 0, 0, 2512, 2278, 1, 0, 0, 0, 2512, 2279, 1, 0, 0, 0, 2512, 2286, 1, 0, 0, 0, 2512, 2305, 1, 0, 0, 0, 2512, 2317, 1, 0, 0, 0, 2512, 2327, 1, 0, 0, 0, 2512, 2361, 1, 0, 0, 0, 2512, 2365, 1, 0, 0, 0, 2512, 2379, 1, 0, 0, 0, 2512, 2383, 1, 0, 0, 0, 2512, 2388, 1, 0, 0, 0, 2512, 2401, 1, 0, 0, 0, 2512, 2413, 1, 0, 0, 0, 2512, 2420, 1, 0, 0, 0, 2512, 2427, 1, 0, 0, 0, 2512, 2440, 1, 0, 0, 0, 2512, 2441, 1, 0, 0, 0, 2512, 2442, 1, 0, 0, 0, 2512, 2448, 1, 0, 0, 0, 2512, 2454, 1, 0, 0, 0, 2512, 2460, 1, 0, 0, 0, 2512, 2466, 1, 0, 0, 0, 2512, 2467, 1, 0, 0, 0, 2512, 2468, 1, 0, 0, 0, 2512, 2479, 1, 0, 0, 0, 2512, 2488, 1, 0, 0, 0, 2512, 2495, 1, 0, 0, 0, 2512, 2499, 1, 0, 0, 0, 2513, 2524, 1, 0, 0, 0, 2514, 2515, 10, 15, 0, 0, 2515, 2516, 5, 267, 0, 0, 2516, 2517, 3, 314, 157, 0, 2517, 2518, 5, 268, 0, 0, 2518, 2523, 1, 0, 0, 0, 2519, 2520, 10, 13, 0, 0, 2520, 2521, 5, 261, 0, 0, 2521, 2523, 3, 362, 181, 0, 2522, 2514, 1, 0, 0, 0, 2522, 2519, 1, 0, 0, 0, 2523, 2526, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 317, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2534, 5, 274, 0, 0, 2528, 2531, 5, 275, 0, 0, 2529, 2530, 5, 198, 0, 0, 2530, 2532, 5, 274, 0, 0, 2531, 2529, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2527, 1, 0, 0, 0, 2533, 2528, 1, 0, 0, 0, 2534, 319, 1, 0, 0, 0, 2535, 2536, 7, 23, 0, 0, 2536, 321, 1, 0, 0, 0, 2537, 2538, 7, 24, 0, 0, 2538, 323, 1, 0, 0, 0, 2539, 2540, 7, 25, 0, 0, 2540, 325, 1, 0, 0, 0, 2541, 2542, 5, 277, 0, 0, 2542, 2556, 3, 328, 164, 0, 2543, 2544, 5, 265, 0, 0, 2544, 2545, 5, 277, 0, 0, 2545, 2546, 5, 266, 0, 0, 2546, 2556, 3, 328, 164, 0, 2547, 2548, 5, 101, 0, 0, 2548, 2549, 5, 277, 0, 0, 2549, 2556, 3, 328, 164, 0, 2550, 2551, 5, 101, 0, 0, 2551, 2552, 5, 265, 0, 0, 2552, 2553, 5, 277, 0, 0, 2553, 2554, 5, 266, 0, 0, 2554, 2556, 3, 328, 164, 0, 2555, 2541, 1, 0, 0, 0, 2555, 2543, 1, 0, 0, 0, 2555, 2547, 1, 0, 0, 0, 2555, 2550, 1, 0, 0, 0, 2556, 327, 1, 0, 0, 0, 2557, 2558, 7, 26, 0, 0, 2558, 329, 1, 0, 0, 0, 2559, 2560, 7, 27, 0, 0, 2560, 331, 1, 0, 0, 0, 2561, 2562, 6, 166, -1, 0, 2562, 2563, 5, 8, 0, 0, 2563, 2564, 5, 251, 0, 0, 2564, 2565, 3, 332, 166, 0, 2565, 2566, 5, 253, 0, 0, 2566, 2607, 1, 0, 0, 0, 2567, 2568, 5, 235, 0, 0, 2568, 2569, 5, 251, 0, 0, 2569, 2570, 3, 332, 166, 0, 2570, 2571, 5, 263, 0, 0, 2571, 2572, 3, 332, 166, 0, 2572, 2573, 5, 253, 0, 0, 2573, 2607, 1, 0, 0, 0, 2574, 2575, 5, 240, 0, 0, 2575, 2576, 5, 251, 0, 0, 2576, 2577, 3, 362, 181, 0, 2577, 2584, 3, 332, 166, 0, 2578, 2579, 5, 263, 0, 0, 2579, 2580, 3, 362, 181, 0, 2580, 2581, 3, 332, 166, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2578, 1, 0, 0, 0, 2583, 2586, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2584, 2585, 1, 0, 0, 0, 2585, 2587, 1, 0, 0, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2588, 5, 253, 0, 0, 2588, 2607, 1, 0, 0, 0, 2589, 2592, 3, 338, 169, 0, 2590, 2592, 3, 334, 167, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2590, 1, 0, 0, 0, 2592, 2604, 1, 0, 0, 0, 2593, 2594, 5, 265, 0, 0, 2594, 2599, 3, 336, 168, 0, 2595, 2596, 5, 263, 0, 0, 2596, 2598, 3, 336, 168, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2601, 1, 0, 0, 0, 2599, 2597, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2602, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2603, 5, 266, 0, 0, 2603, 2605, 1, 0, 0, 0, 2604, 2593, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2607, 1, 0, 0, 0, 2606, 2561, 1, 0, 0, 0, 2606, 2567, 1, 0, 0, 0, 2606, 2574, 1, 0, 0, 0, 2606, 2591, 1, 0, 0, 0, 2607, 2612, 1, 0, 0, 0, 2608, 2609, 10, 5, 0, 0, 2609, 2611, 5, 8, 0, 0, 2610, 2608, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 333, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2615, 2616, 7, 28, 0, 0, 2616, 335, 1, 0, 0, 0, 2617, 2620, 5, 277, 0, 0, 2618, 2620, 3, 332, 166, 0, 2619, 2617, 1, 0, 0, 0, 2619, 2618, 1, 0, 0, 0, 2620, 337, 1, 0, 0, 0, 2621, 2626, 5, 284, 0, 0, 2622, 2626, 5, 285, 0, 0, 2623, 2626, 5, 286, 0, 0, 2624, 2626, 3, 362, 181, 0, 2625, 2621, 1, 0, 0, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 339, 1, 0, 0, 0, 2627, 2628, 5, 214, 0, 0, 2628, 2629, 3, 308, 154, 0, 2629, 2630, 5, 192, 0, 0, 2630, 2631, 3, 308, 154, 0, 2631, 341, 1, 0, 0, 0, 2632, 2633, 5, 74, 0, 0, 2633, 2634, 5, 265, 0, 0, 2634, 2635, 5, 215, 0, 0, 2635, 2636, 3, 310, 155, 0, 2636, 2637, 5, 266, 0, 0, 2637, 343, 1, 0, 0, 0, 2638, 2639, 5, 143, 0, 0, 2639, 2650, 5, 265, 0, 0, 2640, 2641, 5, 145, 0, 0, 2641, 2642, 5, 26, 0, 0, 2642, 2647, 3, 308, 154, 0, 2643, 2644, 5, 263, 0, 0, 2644, 2646, 3, 308, 154, 0, 2645, 2643, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2640, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2662, 1, 0, 0, 0, 2652, 2653, 5, 139, 0, 0, 2653, 2654, 5, 26, 0, 0, 2654, 2659, 3, 268, 134, 0, 2655, 2656, 5, 263, 0, 0, 2656, 2658, 3, 268, 134, 0, 2657, 2655, 1, 0, 0, 0, 2658, 2661, 1, 0, 0, 0, 2659, 2657, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2663, 1, 0, 0, 0, 2661, 2659, 1, 0, 0, 0, 2662, 2652, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 346, 173, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2668, 5, 266, 0, 0, 2668, 345, 1, 0, 0, 0, 2669, 2670, 5, 154, 0, 0, 2670, 2686, 3, 348, 174, 0, 2671, 2672, 5, 169, 0, 0, 2672, 2686, 3, 348, 174, 0, 2673, 2674, 5, 154, 0, 0, 2674, 2675, 5, 15, 0, 0, 2675, 2676, 3, 348, 174, 0, 2676, 2677, 5, 5, 0, 0, 2677, 2678, 3, 348, 174, 0, 2678, 2686, 1, 0, 0, 0, 2679, 2680, 5, 169, 0, 0, 2680, 2681, 5, 15, 0, 0, 2681, 2682, 3, 348, 174, 0, 2682, 2683, 5, 5, 0, 0, 2683, 2684, 3, 348, 174, 0, 2684, 2686, 1, 0, 0, 0, 2685, 2669, 1, 0, 0, 0, 2685, 2671, 1, 0, 0, 0, 2685, 2673, 1, 0, 0, 0, 2685, 2679, 1, 0, 0, 0, 2686, 347, 1, 0, 0, 0, 2687, 2688, 5, 199, 0, 0, 2688, 2697, 5, 149, 0, 0, 2689, 2690, 5, 199, 0, 0, 2690, 2697, 5, 77, 0, 0, 2691, 2692, 5, 39, 0, 0, 2692, 2697, 5, 168, 0, 0, 2693, 2694, 3, 308, 154, 0, 2694, 2695, 7, 29, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2687, 1, 0, 0, 0, 2696, 2689, 1, 0, 0, 0, 2696, 2691, 1, 0, 0, 0, 2696, 2693, 1, 0, 0, 0, 2697, 349, 1, 0, 0, 0, 2698, 2699, 3, 362, 181, 0, 2699, 2700, 5, 261, 0, 0, 2700, 2701, 3, 362, 181, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2704, 3, 362, 181, 0, 2703, 2698, 1, 0, 0, 0, 2703, 2702, 1, 0, 0, 0, 2704, 351, 1, 0, 0, 0, 2705, 2710, 3, 350, 175, 0, 2706, 2707, 5, 263, 0, 0, 2707, 2709, 3, 350, 175, 0, 2708, 2706, 1, 0, 0, 0, 2709, 2712, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 353, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2713, 2727, 5, 2, 0, 0, 2714, 2727, 5, 4, 0, 0, 2715, 2727, 5, 58, 0, 0, 2716, 2727, 5, 37, 0, 0, 2717, 2727, 5, 99, 0, 0, 2718, 2727, 5, 162, 0, 0, 2719, 2724, 5, 174, 0, 0, 2720, 2721, 5, 265, 0, 0, 2721, 2722, 3, 362, 181, 0, 2722, 2723, 5, 266, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2720, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2727, 1, 0, 0, 0, 2726, 2713, 1, 0, 0, 0, 2726, 2714, 1, 0, 0, 0, 2726, 2715, 1, 0, 0, 0, 2726, 2716, 1, 0, 0, 0, 2726, 2717, 1, 0, 0, 0, 2726, 2718, 1, 0, 0, 0, 2726, 2719, 1, 0, 0, 0, 2727, 355, 1, 0, 0, 0, 2728, 2729, 7, 30, 0, 0, 2729, 357, 1, 0, 0, 0, 2730, 2735, 3, 362, 181, 0, 2731, 2732, 5, 261, 0, 0, 2732, 2734, 3, 362, 181, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 359, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 166, 0, 0, 2739, 2745, 3, 362, 181, 0, 2740, 2741, 5, 204, 0, 0, 2741, 2745, 3, 362, 181, 0, 2742, 2743, 5, 87, 0, 0, 2743, 2745, 3, 362, 181, 0, 2744, 2738, 1, 0, 0, 0, 2744, 2740, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 361, 1, 0, 0, 0, 2746, 2752, 5, 280, 0, 0, 2747, 2752, 5, 274, 0, 0, 2748, 2752, 3, 368, 184, 0, 2749, 2752, 5, 283, 0, 0, 2750, 2752, 5, 281, 0, 0, 2751, 2746, 1, 0, 0, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2748, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 363, 1, 0, 0, 0, 2753, 2755, 5, 256, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2766, 5, 278, 0, 0, 2757, 2759, 5, 256, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2766, 5, 279, 0, 0, 2761, 2763, 5, 256, 0, 0, 2762, 2761, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 5, 277, 0, 0, 2765, 2754, 1, 0, 0, 0, 2765, 2758, 1, 0, 0, 0, 2765, 2762, 1, 0, 0, 0, 2766, 365, 1, 0, 0, 0, 2767, 2768, 7, 31, 0, 0, 2768, 367, 1, 0, 0, 0, 2769, 2770, 7, 32, 0, 0, 2770, 369, 1, 0, 0, 0, 353, 373, 380, 404, 417, 421, 425, 434, 439, 443, 449, 451, 456, 460, 464, 471, 476, 482, 486, 495, 502, 506, 511, 513, 518, 521, 528, 532, 537, 541, 544, 548, 556, 560, 564, 572, 576, 585, 588, 591, 597, 604, 615, 620, 625, 630, 635, 644, 647, 650, 654, 680, 706, 715, 725, 728, 742, 760, 762, 771, 782, 791, 798, 802, 809, 815, 818, 823, 830, 844, 857, 862, 867, 873, 909, 912, 918, 921, 927, 933, 945, 947, 958, 966, 971, 975, 980, 987, 991, 995, 1001, 1005, 1009, 1018, 1021, 1024, 1032, 1046, 1053, 1066, 1072, 1077, 1080, 1083, 1088, 1092, 1101, 1106, 1112, 1116, 1121, 1126, 1129, 1137, 1140, 1144, 1156, 1159, 1163, 1168, 1172, 1188, 1193, 1200, 1203, 1209, 1212, 1219, 1222, 1226, 1231, 1234, 1241, 1244, 1268, 1282, 1286, 1290, 1310, 1312, 1314, 1323, 1325, 1334, 1336, 1345, 1347, 1352, 1361, 1370, 1379, 1390, 1396, 1401, 1404, 1417, 1427, 1431, 1436, 1447, 1452, 1485, 1493, 1498, 1502, 1506, 1511, 1514, 1519, 1524, 1529, 1533, 1542, 1545, 1549, 1556, 1565, 1569, 1573, 1580, 1583, 1593, 1600, 1605, 1610, 1615, 1621, 1624, 1633, 1636, 1639, 1645, 1650, 1660, 1663, 1666, 1670, 1680, 1683, 1689, 1695, 1698, 1701, 1705, 1715, 1726, 1731, 1734, 1738, 1745, 1755, 1767, 1773, 1775, 1784, 1787, 1794, 1804, 1810, 1818, 1829, 1839, 1850, 1852, 1858, 1863, 1873, 1876, 1882, 1884, 1892, 1898, 1901, 1903, 1915, 1922, 1926, 1930, 1934, 1937, 1944, 1953, 1956, 1960, 1965, 1969, 1972, 1979, 1990, 1993, 1997, 2001, 2010, 2013, 2020, 2034, 2038, 2042, 2046, 2050, 2054, 2058, 2062, 2072, 2083, 2088, 2101, 2103, 2109, 2113, 2115, 2123, 2130, 2135, 2148, 2154, 2162, 2169, 2173, 2181, 2183, 2194, 2202, 2211, 2217, 2222, 2228, 2234, 2239, 2244, 2250, 2261, 2263, 2290, 2296, 2300, 2312, 2322, 2325, 2330, 2337, 2340, 2349, 2352, 2356, 2359, 2371, 2374, 2393, 2397, 2405, 2409, 2434, 2437, 2446, 2452, 2458, 2464, 2475, 2484, 2506, 2509, 2512, 2522, 2524, 2531, 2533, 2555, 2584, 2591, 2599, 2604, 2606, 2612, 2619, 2625, 2647, 2650, 2659, 2662, 2665, 2685, 2696, 2703, 2710, 2724, 2726, 2735, 2744, 2751, 2754, 2758, 2762, 2765] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index b9a88388..06c61db8 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -408,87 +408,89 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly RULE_assignmentList = 99; public static readonly RULE_assignmentItem = 100; public static readonly RULE_viewColumns = 101; - public static readonly RULE_queryStatement = 102; - public static readonly RULE_with = 103; - public static readonly RULE_constraintSpecification = 104; - public static readonly RULE_foreignKeySpecification = 105; - public static readonly RULE_columnSpec = 106; - public static readonly RULE_columnDefinition = 107; - public static readonly RULE_kuduTableElement = 108; - public static readonly RULE_kuduColumnDefinition = 109; - public static readonly RULE_columnSpecWithKudu = 110; - public static readonly RULE_createColumnSpecWithKudu = 111; - public static readonly RULE_kuduAttributes = 112; - public static readonly RULE_kuduStorageAttr = 113; - public static readonly RULE_statsKey = 114; - public static readonly RULE_fileFormat = 115; - public static readonly RULE_kuduPartitionClause = 116; - public static readonly RULE_hashClause = 117; - public static readonly RULE_rangeClause = 118; - public static readonly RULE_kuduPartitionSpec = 119; - public static readonly RULE_cacheSpec = 120; - public static readonly RULE_rangeOperator = 121; - public static readonly RULE_partitionCol = 122; - public static readonly RULE_likeClause = 123; - public static readonly RULE_properties = 124; - public static readonly RULE_partitionedBy = 125; - public static readonly RULE_sortedBy = 126; - public static readonly RULE_rowFormat = 127; - public static readonly RULE_property = 128; - public static readonly RULE_queryNoWith = 129; - public static readonly RULE_queryTerm = 130; - public static readonly RULE_queryPrimary = 131; - public static readonly RULE_sortItem = 132; - public static readonly RULE_querySpecification = 133; - public static readonly RULE_groupBy = 134; - public static readonly RULE_groupingElement = 135; - public static readonly RULE_groupingSet = 136; - public static readonly RULE_namedQuery = 137; - public static readonly RULE_setQuantifier = 138; - public static readonly RULE_selectItem = 139; - public static readonly RULE_relation = 140; - public static readonly RULE_joinType = 141; - public static readonly RULE_joinCriteria = 142; - public static readonly RULE_sampledRelation = 143; - public static readonly RULE_sampleType = 144; - public static readonly RULE_aliasedRelation = 145; - public static readonly RULE_columnAliases = 146; - public static readonly RULE_relationPrimary = 147; - public static readonly RULE_subQueryRelation = 148; - public static readonly RULE_unnest = 149; - public static readonly RULE_parenthesizedRelation = 150; - public static readonly RULE_columnItem = 151; - public static readonly RULE_expression = 152; - public static readonly RULE_booleanExpression = 153; - public static readonly RULE_predicate = 154; - public static readonly RULE_valueExpression = 155; - public static readonly RULE_primaryExpression = 156; - public static readonly RULE_stringLiteral = 157; - public static readonly RULE_comparisonOperator = 158; - public static readonly RULE_comparisonQuantifier = 159; - public static readonly RULE_booleanValue = 160; - public static readonly RULE_interval = 161; - public static readonly RULE_intervalField = 162; - public static readonly RULE_normalForm = 163; - public static readonly RULE_type = 164; - public static readonly RULE_dataType = 165; - public static readonly RULE_typeParameter = 166; - public static readonly RULE_baseType = 167; - public static readonly RULE_whenClause = 168; - public static readonly RULE_filter = 169; - public static readonly RULE_over = 170; - public static readonly RULE_windowFrame = 171; - public static readonly RULE_frameBound = 172; - public static readonly RULE_pathElement = 173; - public static readonly RULE_pathSpecification = 174; - public static readonly RULE_privilege = 175; - public static readonly RULE_objectType = 176; - public static readonly RULE_qualifiedName = 177; - public static readonly RULE_principal = 178; - public static readonly RULE_identifier = 179; - public static readonly RULE_number = 180; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 181; - public static readonly RULE_nonReserved = 182; + public static readonly RULE_viewColumnItem = 102; + public static readonly RULE_queryStatement = 103; + public static readonly RULE_with = 104; + public static readonly RULE_constraintSpecification = 105; + public static readonly RULE_foreignKeySpecification = 106; + public static readonly RULE_columnSpec = 107; + public static readonly RULE_columnDefinition = 108; + public static readonly RULE_kuduTableElement = 109; + public static readonly RULE_kuduColumnDefinition = 110; + public static readonly RULE_commentClause = 111; + public static readonly RULE_columnSpecWithKudu = 112; + public static readonly RULE_createColumnSpecWithKudu = 113; + public static readonly RULE_kuduAttributes = 114; + public static readonly RULE_kuduStorageAttr = 115; + public static readonly RULE_statsKey = 116; + public static readonly RULE_fileFormat = 117; + public static readonly RULE_kuduPartitionClause = 118; + public static readonly RULE_hashClause = 119; + public static readonly RULE_rangeClause = 120; + public static readonly RULE_kuduPartitionSpec = 121; + public static readonly RULE_cacheSpec = 122; + public static readonly RULE_rangeOperator = 123; + public static readonly RULE_partitionCol = 124; + public static readonly RULE_likeClause = 125; + public static readonly RULE_properties = 126; + public static readonly RULE_partitionedBy = 127; + public static readonly RULE_sortedBy = 128; + public static readonly RULE_rowFormat = 129; + public static readonly RULE_property = 130; + public static readonly RULE_queryNoWith = 131; + public static readonly RULE_queryTerm = 132; + public static readonly RULE_queryPrimary = 133; + public static readonly RULE_sortItem = 134; + public static readonly RULE_querySpecification = 135; + public static readonly RULE_groupBy = 136; + public static readonly RULE_groupingElement = 137; + public static readonly RULE_groupingSet = 138; + public static readonly RULE_namedQuery = 139; + public static readonly RULE_setQuantifier = 140; + public static readonly RULE_selectItem = 141; + public static readonly RULE_relation = 142; + public static readonly RULE_joinType = 143; + public static readonly RULE_joinCriteria = 144; + public static readonly RULE_sampledRelation = 145; + public static readonly RULE_sampleType = 146; + public static readonly RULE_aliasedRelation = 147; + public static readonly RULE_columnAliases = 148; + public static readonly RULE_relationPrimary = 149; + public static readonly RULE_subQueryRelation = 150; + public static readonly RULE_unnest = 151; + public static readonly RULE_parenthesizedRelation = 152; + public static readonly RULE_columnItem = 153; + public static readonly RULE_expression = 154; + public static readonly RULE_booleanExpression = 155; + public static readonly RULE_predicate = 156; + public static readonly RULE_valueExpression = 157; + public static readonly RULE_primaryExpression = 158; + public static readonly RULE_stringLiteral = 159; + public static readonly RULE_comparisonOperator = 160; + public static readonly RULE_comparisonQuantifier = 161; + public static readonly RULE_booleanValue = 162; + public static readonly RULE_interval = 163; + public static readonly RULE_intervalField = 164; + public static readonly RULE_normalForm = 165; + public static readonly RULE_type = 166; + public static readonly RULE_dataType = 167; + public static readonly RULE_typeParameter = 168; + public static readonly RULE_baseType = 169; + public static readonly RULE_whenClause = 170; + public static readonly RULE_filter = 171; + public static readonly RULE_over = 172; + public static readonly RULE_windowFrame = 173; + public static readonly RULE_frameBound = 174; + public static readonly RULE_pathElement = 175; + public static readonly RULE_pathSpecification = 176; + public static readonly RULE_privilege = 177; + public static readonly RULE_objectType = 178; + public static readonly RULE_qualifiedName = 179; + public static readonly RULE_principal = 180; + public static readonly RULE_identifier = 181; + public static readonly RULE_number = 182; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 183; + public static readonly RULE_nonReserved = 184; public static readonly literalNames = [ null, "'ADD'", "'ALL'", "'ANALYTIC'", "'ALTER'", "'AND'", "'ANY'", @@ -625,9 +627,10 @@ export class ImpalaSqlParser extends SQLParserBase { "viewNameCreate", "functionNameCreate", "columnNamePathCreate", "databaseNamePath", "tableNamePath", "viewNamePath", "functionNamePath", "columnNamePath", "tableOrViewPath", "createCommonItem", "assignmentList", - "assignmentItem", "viewColumns", "queryStatement", "with", "constraintSpecification", - "foreignKeySpecification", "columnSpec", "columnDefinition", "kuduTableElement", - "kuduColumnDefinition", "columnSpecWithKudu", "createColumnSpecWithKudu", + "assignmentItem", "viewColumns", "viewColumnItem", "queryStatement", + "with", "constraintSpecification", "foreignKeySpecification", "columnSpec", + "columnDefinition", "kuduTableElement", "kuduColumnDefinition", + "commentClause", "columnSpecWithKudu", "createColumnSpecWithKudu", "kuduAttributes", "kuduStorageAttr", "statsKey", "fileFormat", "kuduPartitionClause", "hashClause", "rangeClause", "kuduPartitionSpec", "cacheSpec", "rangeOperator", "partitionCol", "likeClause", "properties", "partitionedBy", "sortedBy", @@ -667,21 +670,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 369; + this.state = 373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 134520835) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 1083521) !== 0) || _la === 264 || _la === 265) { { { - this.state = 366; + this.state = 370; this.singleStatement(); } } - this.state = 371; + this.state = 375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 372; + this.state = 376; this.match(ImpalaSqlParser.EOF); } } @@ -706,14 +709,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 374; + this.state = 378; this.sqlStatement(); - this.state = 376; + this.state = 380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 375; + this.state = 379; this.match(ImpalaSqlParser.SEMICOLON); } } @@ -738,160 +741,160 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, ImpalaSqlParser.RULE_sqlStatement); try { - this.state = 400; + this.state = 404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 378; + this.state = 382; this.queryStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 379; + this.state = 383; this.useStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 380; + this.state = 384; this.createStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 381; + this.state = 385; this.alterStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 382; + this.state = 386; this.truncateTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 383; + this.state = 387; this.describeStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 384; + this.state = 388; this.computeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 385; + this.state = 389; this.dropStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 386; + this.state = 390; this.grantStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 387; + this.state = 391; this.revokeStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 388; + this.state = 392; this.insertStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 389; + this.state = 393; this.deleteStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 390; + this.state = 394; this.updateStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 391; + this.state = 395; this.upsertStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 392; + this.state = 396; this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 393; + this.state = 397; this.addCommentStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 394; + this.state = 398; this.explainStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 395; + this.state = 399; this.setStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 396; + this.state = 400; this.shutdownStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 397; + this.state = 401; this.invalidateMetaStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 398; + this.state = 402; this.loadDataStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 399; + this.state = 403; this.refreshStatement(); } break; @@ -917,9 +920,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 402; + this.state = 406; this.match(ImpalaSqlParser.KW_USE); - this.state = 403; + this.state = 407; this.databaseNamePath(); } } @@ -941,62 +944,62 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CreateStatementContext(this.context, this.state); this.enterRule(localContext, 8, ImpalaSqlParser.RULE_createStatement); try { - this.state = 413; + this.state = 417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 405; + this.state = 409; this.createSchema(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 406; + this.state = 410; this.createRole(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 407; + this.state = 411; this.createAggregateFunction(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 408; + this.state = 412; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 409; + this.state = 413; this.createView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 410; + this.state = 414; this.createKuduTableAsSelect(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 411; + this.state = 415; this.createTableLike(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 412; + this.state = 416; this.createTableSelect(); } break; @@ -1024,97 +1027,97 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 415; + this.state = 419; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 417; + this.state = 421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 416; + this.state = 420; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 419; + this.state = 423; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 421; + this.state = 425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 420; + this.state = 424; this.ifNotExists(); } } - this.state = 423; + this.state = 427; this.tableNameCreate(); - this.state = 439; + this.state = 443; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 424; + this.state = 428; this.match(ImpalaSqlParser.LPAREN); - this.state = 425; + this.state = 429; this.columnDefinition(); - this.state = 430; + this.state = 434; 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 = 426; + this.state = 430; this.match(ImpalaSqlParser.COMMA); - this.state = 427; + this.state = 431; this.columnDefinition(); } } } - this.state = 432; + this.state = 436; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } - this.state = 435; + this.state = 439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 433; + this.state = 437; this.match(ImpalaSqlParser.COMMA); - this.state = 434; + this.state = 438; this.constraintSpecification(); } } - this.state = 437; + this.state = 441; this.match(ImpalaSqlParser.RPAREN); } break; } - this.state = 447; + this.state = 451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 441; + this.state = 445; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 442; + this.state = 446; this.match(ImpalaSqlParser.KW_BY); - this.state = 445; + this.state = 449; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 443; + this.state = 447; this.columnAliases(); } break; case 2: { - this.state = 444; + this.state = 448; this.partitionedBy(); } break; @@ -1122,16 +1125,16 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 449; + this.state = 453; this.createCommonItem(); - this.state = 452; + this.state = 456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 450; + this.state = 454; this.match(ImpalaSqlParser.KW_AS); - this.state = 451; + this.state = 455; this.queryStatement(); } } @@ -1159,35 +1162,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 454; + this.state = 458; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 456; + this.state = 460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 455; + this.state = 459; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 458; + this.state = 462; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 460; + this.state = 464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 459; + this.state = 463; this.ifNotExists(); } } - this.state = 462; + this.state = 466; this.tableNameCreate(); - this.state = 463; - this.match(ImpalaSqlParser.KW_LIKE); this.state = 467; + this.match(ImpalaSqlParser.KW_LIKE); + this.state = 471; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BERNOULLI: @@ -1229,36 +1232,36 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 464; + this.state = 468; this.tableNamePath(); } break; case ImpalaSqlParser.KW_PARQUET: { - this.state = 465; + this.state = 469; this.match(ImpalaSqlParser.KW_PARQUET); - this.state = 466; + this.state = 470; localContext._parquet = this.stringLiteral(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 472; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 469; + this.state = 473; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 470; + this.state = 474; this.match(ImpalaSqlParser.KW_BY); - this.state = 471; + this.state = 475; this.partitionedBy(); } } - this.state = 474; + this.state = 478; this.createCommonItem(); } } @@ -1284,95 +1287,95 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 476; + this.state = 480; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 478; + this.state = 482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 477; + this.state = 481; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 480; + this.state = 484; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 482; + this.state = 486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 481; + this.state = 485; this.ifNotExists(); } } - this.state = 484; + this.state = 488; this.tableNameCreate(); - this.state = 502; + this.state = 506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 485; + this.state = 489; this.match(ImpalaSqlParser.LPAREN); - this.state = 486; + this.state = 490; this.kuduTableElement(); - this.state = 491; + this.state = 495; 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 = 487; + this.state = 491; this.match(ImpalaSqlParser.COMMA); - this.state = 488; + this.state = 492; this.kuduTableElement(); } } } - this.state = 493; + this.state = 497; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } - this.state = 498; + this.state = 502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 494; + this.state = 498; this.match(ImpalaSqlParser.COMMA); - this.state = 495; + this.state = 499; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 496; + this.state = 500; this.match(ImpalaSqlParser.KW_KEY); - this.state = 497; + this.state = 501; this.columnAliases(); } } - this.state = 500; + this.state = 504; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 509; + this.state = 513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 504; + this.state = 508; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 505; + this.state = 509; this.match(ImpalaSqlParser.KW_KEY); - this.state = 507; + this.state = 511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 506; + this.state = 510; this.columnAliases(); } } @@ -1380,58 +1383,56 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 514; + this.state = 518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 511; + this.state = 515; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 512; + this.state = 516; this.match(ImpalaSqlParser.KW_BY); - this.state = 513; + this.state = 517; this.kuduPartitionClause(); } } - this.state = 518; + this.state = 521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 516; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 517; - this.stringLiteral(); + this.state = 520; + this.commentClause(); } } - this.state = 520; + this.state = 523; this.match(ImpalaSqlParser.KW_STORED); - this.state = 521; + this.state = 524; this.match(ImpalaSqlParser.KW_AS); - this.state = 522; - this.match(ImpalaSqlParser.KW_KUDU); this.state = 525; + this.match(ImpalaSqlParser.KW_KUDU); + this.state = 528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 523; + this.state = 526; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 524; + this.state = 527; localContext._tblProp = this.properties(); } } - this.state = 529; + this.state = 532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 527; + this.state = 530; this.match(ImpalaSqlParser.KW_AS); - this.state = 528; + this.state = 531; this.queryStatement(); } } @@ -1459,59 +1460,57 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 531; + this.state = 534; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 532; + this.state = 535; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 534; + this.state = 537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 533; + this.state = 536; this.ifNotExists(); } } - this.state = 536; + this.state = 539; this.viewNameCreate(); - this.state = 538; + this.state = 541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 537; + this.state = 540; this.viewColumns(); } } - this.state = 542; + this.state = 544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 540; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 541; - this.stringLiteral(); + this.state = 543; + this.commentClause(); } } - this.state = 546; + this.state = 548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 544; + this.state = 546; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 545; + this.state = 547; localContext._tblProp = this.properties(); } } - this.state = 548; + this.state = 550; this.match(ImpalaSqlParser.KW_AS); - this.state = 549; + this.state = 551; this.queryStatement(); } } @@ -1536,9 +1535,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 551; + this.state = 553; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 552; + this.state = 554; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1547,38 +1546,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 554; + this.state = 556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 553; + this.state = 555; this.ifNotExists(); } } - this.state = 556; + this.state = 558; this.databaseNameCreate(); - this.state = 559; + this.state = 560; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 557; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 558; - localContext._comment = this.stringLiteral(); + this.state = 559; + this.commentClause(); } break; } - this.state = 563; + this.state = 564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 561; - this.match(ImpalaSqlParser.KW_LOCATION); this.state = 562; + this.match(ImpalaSqlParser.KW_LOCATION); + this.state = 563; localContext._location = this.stringLiteral(); } } @@ -1605,11 +1602,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 565; - this.match(ImpalaSqlParser.KW_CREATE); this.state = 566; - this.match(ImpalaSqlParser.KW_ROLE); + this.match(ImpalaSqlParser.KW_CREATE); this.state = 567; + this.match(ImpalaSqlParser.KW_ROLE); + this.state = 568; localContext._name = this.identifier(); } } @@ -1634,168 +1631,168 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 569; + this.state = 570; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 571; + this.state = 572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 570; + this.state = 571; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 573; + this.state = 574; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 575; + this.state = 576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 574; + this.state = 575; this.ifNotExists(); } } - this.state = 577; + this.state = 578; this.functionNameCreate(); - this.state = 590; + this.state = 591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 578; + this.state = 579; this.match(ImpalaSqlParser.LPAREN); - this.state = 587; + this.state = 588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 579; + this.state = 580; this.type_(0); - this.state = 584; + this.state = 585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 580; - this.match(ImpalaSqlParser.COMMA); this.state = 581; + this.match(ImpalaSqlParser.COMMA); + this.state = 582; this.type_(0); } } - this.state = 586; + this.state = 587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 589; + this.state = 590; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 592; - this.match(ImpalaSqlParser.KW_RETURNS); this.state = 593; - this.type_(0); - this.state = 596; + this.match(ImpalaSqlParser.KW_RETURNS); + this.state = 594; + localContext._returnType = this.type_(0); + this.state = 597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 594; - this.match(ImpalaSqlParser.KW_INTERMEDIATE); this.state = 595; + this.match(ImpalaSqlParser.KW_INTERMEDIATE); + this.state = 596; this.type_(0); } } - this.state = 598; - this.match(ImpalaSqlParser.KW_LOCATION); this.state = 599; + this.match(ImpalaSqlParser.KW_LOCATION); + this.state = 600; this.match(ImpalaSqlParser.STRING); - this.state = 603; + this.state = 604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 600; - this.match(ImpalaSqlParser.KW_INIT_FN); this.state = 601; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_INIT_FN); this.state = 602; + this.match(ImpalaSqlParser.EQ); + this.state = 603; this.match(ImpalaSqlParser.STRING); } } - this.state = 605; - this.match(ImpalaSqlParser.KW_UPDATE_FN); this.state = 606; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_UPDATE_FN); this.state = 607; - this.match(ImpalaSqlParser.STRING); + this.match(ImpalaSqlParser.EQ); this.state = 608; - this.match(ImpalaSqlParser.KW_MERGE_FN); + this.match(ImpalaSqlParser.STRING); this.state = 609; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_MERGE_FN); this.state = 610; + this.match(ImpalaSqlParser.EQ); + this.state = 611; this.match(ImpalaSqlParser.STRING); - this.state = 614; + this.state = 615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 611; - this.match(ImpalaSqlParser.KW_PREPARE_FN); this.state = 612; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_PREPARE_FN); this.state = 613; + this.match(ImpalaSqlParser.EQ); + this.state = 614; this.match(ImpalaSqlParser.STRING); } } - this.state = 619; + this.state = 620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 616; - this.match(ImpalaSqlParser.KW_CLOSEFN); this.state = 617; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_CLOSEFN); this.state = 618; + this.match(ImpalaSqlParser.EQ); + this.state = 619; this.match(ImpalaSqlParser.STRING); } } - this.state = 624; + this.state = 625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 621; - this.match(ImpalaSqlParser.KW_SERIALIZE_FN); this.state = 622; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_SERIALIZE_FN); this.state = 623; + this.match(ImpalaSqlParser.EQ); + this.state = 624; this.match(ImpalaSqlParser.STRING); } } - this.state = 629; + this.state = 630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 76) { { - this.state = 626; - this.match(ImpalaSqlParser.KW_FINALIZE_FN); this.state = 627; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_FINALIZE_FN); this.state = 628; + this.match(ImpalaSqlParser.EQ); + this.state = 629; this.match(ImpalaSqlParser.STRING); } } @@ -1823,81 +1820,81 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 631; - this.match(ImpalaSqlParser.KW_CREATE); this.state = 632; + this.match(ImpalaSqlParser.KW_CREATE); + this.state = 633; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 634; + this.state = 635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 633; + this.state = 634; this.ifNotExists(); } } - this.state = 636; + this.state = 637; this.functionNameCreate(); - this.state = 649; + this.state = 650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 637; + this.state = 638; this.match(ImpalaSqlParser.LPAREN); - this.state = 646; + this.state = 647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 638; + this.state = 639; this.type_(0); - this.state = 643; + this.state = 644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 639; - this.match(ImpalaSqlParser.COMMA); this.state = 640; + this.match(ImpalaSqlParser.COMMA); + this.state = 641; this.type_(0); } } - this.state = 645; + this.state = 646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 648; + this.state = 649; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 653; + this.state = 654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 651; - this.match(ImpalaSqlParser.KW_RETURNS); this.state = 652; - this.type_(0); + this.match(ImpalaSqlParser.KW_RETURNS); + this.state = 653; + localContext._returnType = this.type_(0); } } - this.state = 655; - this.match(ImpalaSqlParser.KW_LOCATION); this.state = 656; - this.match(ImpalaSqlParser.STRING); + this.match(ImpalaSqlParser.KW_LOCATION); this.state = 657; - this.match(ImpalaSqlParser.KW_SYMBOL); + this.match(ImpalaSqlParser.STRING); this.state = 658; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_SYMBOL); this.state = 659; + this.match(ImpalaSqlParser.EQ); + this.state = 660; localContext._symbol_ = this.stringLiteral(); } } @@ -1919,132 +1916,132 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AlterStatementContext(this.context, this.state); this.enterRule(localContext, 26, ImpalaSqlParser.RULE_alterStatement); try { - this.state = 679; + this.state = 680; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 661; + this.state = 662; this.alterDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 662; + this.state = 663; this.alterUnSetOrSetViewTblproperties(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 663; + this.state = 664; this.renameTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 664; + this.state = 665; this.alterViewOwner(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 665; + this.state = 666; this.alterView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 666; + this.state = 667; this.renameView(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 667; + this.state = 668; this.dropPartitionByRangeOrValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 668; + this.state = 669; this.alterFormat(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 669; + this.state = 670; this.recoverPartitions(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 670; + this.state = 671; this.addPartitionByRangeOrValue(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 671; + this.state = 672; this.alterTableNonKuduOrKuduOnly(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 672; + this.state = 673; this.addSingleColumn(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 673; + this.state = 674; this.replaceOrAddColumns(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 674; + this.state = 675; this.changeColumnDefine(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 675; + this.state = 676; this.alterStatsKey(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 676; + this.state = 677; this.alterPartitionCache(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 677; + this.state = 678; this.alterDropSingleColumn(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 678; + this.state = 679; this.alterTableOwner(); } break; @@ -2071,17 +2068,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 681; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 682; - this.match(ImpalaSqlParser.KW_DATABASE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 683; - this.databaseNamePath(); + this.match(ImpalaSqlParser.KW_DATABASE); this.state = 684; - this.match(ImpalaSqlParser.KW_SET); + this.databaseNamePath(); this.state = 685; - this.match(ImpalaSqlParser.KW_OWNER); + this.match(ImpalaSqlParser.KW_SET); this.state = 686; + this.match(ImpalaSqlParser.KW_OWNER); + this.state = 687; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2090,7 +2087,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 687; + this.state = 688; this.identifier(); } } @@ -2115,45 +2112,45 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 689; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 690; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 691; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 692; - this.match(ImpalaSqlParser.KW_SET); + this.tableNamePath(); this.state = 693; - this.match(ImpalaSqlParser.KW_COLUMN); + this.match(ImpalaSqlParser.KW_SET); this.state = 694; - this.match(ImpalaSqlParser.KW_STATS); + this.match(ImpalaSqlParser.KW_COLUMN); this.state = 695; - this.columnNamePath(); + this.match(ImpalaSqlParser.KW_STATS); this.state = 696; - this.match(ImpalaSqlParser.LPAREN); + this.columnNamePath(); this.state = 697; - this.statsKey(); + this.match(ImpalaSqlParser.LPAREN); this.state = 698; - this.match(ImpalaSqlParser.EQ); + this.statsKey(); this.state = 699; + this.match(ImpalaSqlParser.EQ); + this.state = 700; this.stringLiteral(); - this.state = 705; + this.state = 706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 700; - this.match(ImpalaSqlParser.COMMA); this.state = 701; - this.statsKey(); + this.match(ImpalaSqlParser.COMMA); this.state = 702; - this.match(ImpalaSqlParser.EQ); + this.statsKey(); this.state = 703; + this.match(ImpalaSqlParser.EQ); + this.state = 704; this.stringLiteral(); } } - this.state = 707; + this.state = 708; this.match(ImpalaSqlParser.RPAREN); } } @@ -2178,50 +2175,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 709; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 710; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 711; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 712; this.tableNamePath(); - this.state = 714; + this.state = 715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 712; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 713; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 714; this.expression(); } } - this.state = 716; + this.state = 717; this.match(ImpalaSqlParser.KW_SET); - this.state = 727; + this.state = 728; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { { - this.state = 717; - this.match(ImpalaSqlParser.KW_CACHED); this.state = 718; - this.match(ImpalaSqlParser.KW_IN); + this.match(ImpalaSqlParser.KW_CACHED); this.state = 719; + this.match(ImpalaSqlParser.KW_IN); + this.state = 720; this.stringLiteral(); - this.state = 724; + this.state = 725; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 720; - this.match(ImpalaSqlParser.KW_WITH); this.state = 721; - this.match(ImpalaSqlParser.KW_REPLICATION); + this.match(ImpalaSqlParser.KW_WITH); this.state = 722; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_REPLICATION); this.state = 723; + this.match(ImpalaSqlParser.EQ); + this.state = 724; this.number_(); } break; @@ -2231,7 +2228,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 726; + this.state = 727; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -2260,17 +2257,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 729; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 730; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 731; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 732; - this.match(ImpalaSqlParser.KW_CHANGE); + this.tableNamePath(); this.state = 733; - this.columnNamePath(); + this.match(ImpalaSqlParser.KW_CHANGE); this.state = 734; + this.columnNamePath(); + this.state = 735; this.columnSpecWithKudu(); } } @@ -2294,25 +2291,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 736; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 737; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 738; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 739; + this.tableNamePath(); + this.state = 740; this.match(ImpalaSqlParser.KW_DROP); - this.state = 741; + this.state = 742; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 740; + this.state = 741; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 743; + this.state = 744; this.columnNamePath(); } } @@ -2337,17 +2334,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 745; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 746; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 747; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 748; - this.match(ImpalaSqlParser.KW_SET); + this.tableNamePath(); this.state = 749; - this.match(ImpalaSqlParser.KW_OWNER); + this.match(ImpalaSqlParser.KW_SET); this.state = 750; + this.match(ImpalaSqlParser.KW_OWNER); + this.state = 751; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2356,7 +2353,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 751; + this.state = 752; this.identifier(); } } @@ -2382,31 +2379,31 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 753; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 754; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 755; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 756; this.tableNamePath(); - this.state = 761; + this.state = 762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_REPLACE: { - this.state = 756; + this.state = 757; this.match(ImpalaSqlParser.KW_REPLACE); } break; case ImpalaSqlParser.KW_ADD: { - this.state = 757; + this.state = 758; this.match(ImpalaSqlParser.KW_ADD); - this.state = 759; + this.state = 760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 758; + this.state = 759; this.ifNotExists(); } } @@ -2416,31 +2413,31 @@ export class ImpalaSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 763; - this.match(ImpalaSqlParser.KW_COLUMNS); this.state = 764; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_COLUMNS); this.state = 765; + this.match(ImpalaSqlParser.LPAREN); + this.state = 766; this.columnSpecWithKudu(); - this.state = 770; + this.state = 771; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 766; - this.match(ImpalaSqlParser.COMMA); this.state = 767; + this.match(ImpalaSqlParser.COMMA); + this.state = 768; this.columnSpecWithKudu(); } } } - this.state = 772; + this.state = 773; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); } - this.state = 773; + this.state = 774; this.match(ImpalaSqlParser.RPAREN); } } @@ -2465,27 +2462,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 775; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 776; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 777; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 778; - this.match(ImpalaSqlParser.KW_ADD); + this.tableNamePath(); this.state = 779; + this.match(ImpalaSqlParser.KW_ADD); + this.state = 780; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 781; + this.state = 782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 780; + this.state = 781; this.ifNotExists(); } } - this.state = 783; + this.state = 784; this.createColumnSpecWithKudu(); } } @@ -2509,34 +2506,34 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 785; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 786; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 787; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 788; + this.tableNamePath(); + this.state = 789; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 790; + this.state = 791; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 789; + this.state = 790; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 792; + this.state = 793; this.columnNamePath(); - this.state = 801; + this.state = 802; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SET: { - this.state = 793; + this.state = 794; this.match(ImpalaSqlParser.KW_SET); - this.state = 797; + this.state = 798; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BLOCK_SIZE: @@ -2544,15 +2541,15 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 794; + this.state = 795; this.kuduStorageAttr(); } break; case ImpalaSqlParser.KW_COMMENT: { - this.state = 795; - this.match(ImpalaSqlParser.KW_COMMENT); this.state = 796; + this.match(ImpalaSqlParser.KW_COMMENT); + this.state = 797; this.stringLiteral(); } break; @@ -2563,9 +2560,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_DROP: { - this.state = 799; - this.match(ImpalaSqlParser.KW_DROP); this.state = 800; + this.match(ImpalaSqlParser.KW_DROP); + this.state = 801; this.match(ImpalaSqlParser.KW_DEFAULT); } break; @@ -2595,51 +2592,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 803; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 804; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 805; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 806; + this.tableNamePath(); + this.state = 807; this.match(ImpalaSqlParser.KW_ADD); - this.state = 808; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 807; + this.state = 808; this.ifNotExists(); } } - this.state = 822; + this.state = 823; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 810; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 811; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 812; this.expression(); - this.state = 814; + this.state = 815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 812; - this.match(ImpalaSqlParser.KW_LOCATION); this.state = 813; + this.match(ImpalaSqlParser.KW_LOCATION); + this.state = 814; this.stringLiteral(); } } - this.state = 817; + this.state = 818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 197) { { - this.state = 816; + this.state = 817; this.cacheSpec(); } } @@ -2648,11 +2645,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 819; - this.match(ImpalaSqlParser.KW_RANGE); this.state = 820; - this.match(ImpalaSqlParser.KW_PARTITION); + this.match(ImpalaSqlParser.KW_RANGE); this.state = 821; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 822; this.kuduPartitionSpec(); } break; @@ -2682,35 +2679,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 824; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 825; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 826; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 827; this.tableNamePath(); - this.state = 829; + this.state = 830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 827; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 828; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 829; this.expression(); } } - this.state = 831; + this.state = 832; this.match(ImpalaSqlParser.KW_SET); - this.state = 843; + this.state = 844; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_FILEFORMAT: { { - this.state = 832; - this.match(ImpalaSqlParser.KW_FILEFORMAT); this.state = 833; + this.match(ImpalaSqlParser.KW_FILEFORMAT); + this.state = 834; this.fileFormat(); } } @@ -2718,11 +2715,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_ROW: { { - this.state = 834; - this.match(ImpalaSqlParser.KW_ROW); this.state = 835; - this.match(ImpalaSqlParser.KW_FORMAT); + this.match(ImpalaSqlParser.KW_ROW); this.state = 836; + this.match(ImpalaSqlParser.KW_FORMAT); + this.state = 837; this.rowFormat(); } } @@ -2730,9 +2727,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LOCATION: { { - this.state = 837; - this.match(ImpalaSqlParser.KW_LOCATION); this.state = 838; + this.match(ImpalaSqlParser.KW_LOCATION); + this.state = 839; this.stringLiteral(); } } @@ -2740,9 +2737,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_TBLPROPERTIES: { { - this.state = 839; - this.match(ImpalaSqlParser.KW_TBLPROPERTIES); this.state = 840; + this.match(ImpalaSqlParser.KW_TBLPROPERTIES); + this.state = 841; localContext._tblProp = this.properties(); } } @@ -2750,9 +2747,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SERDEPROPERTIES: { { - this.state = 841; - this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); this.state = 842; + this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); + this.state = 843; localContext._tblProp = this.properties(); } } @@ -2782,15 +2779,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 845; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 846; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 847; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 848; - this.match(ImpalaSqlParser.KW_RECOVER); + this.tableNamePath(); this.state = 849; + this.match(ImpalaSqlParser.KW_RECOVER); + this.state = 850; this.match(ImpalaSqlParser.KW_PARTITIONS); } } @@ -2815,39 +2812,39 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 851; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 852; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 853; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 854; + this.tableNamePath(); + this.state = 855; this.match(ImpalaSqlParser.KW_DROP); - this.state = 856; + this.state = 857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 855; + this.state = 856; this.ifExists(); } } - this.state = 866; + this.state = 867; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 858; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 859; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 860; this.expression(); - this.state = 861; + this.state = 862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 860; + this.state = 861; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -2856,11 +2853,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 863; - this.match(ImpalaSqlParser.KW_RANGE); this.state = 864; - this.match(ImpalaSqlParser.KW_PARTITION); + this.match(ImpalaSqlParser.KW_RANGE); this.state = 865; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 866; this.kuduPartitionSpec(); } break; @@ -2890,25 +2887,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 868; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 869; - this.match(ImpalaSqlParser.KW_VIEW); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 870; + this.match(ImpalaSqlParser.KW_VIEW); + this.state = 871; this.viewNamePath(); - this.state = 872; + this.state = 873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 871; + this.state = 872; this.viewColumns(); } } - this.state = 874; - this.match(ImpalaSqlParser.KW_AS); this.state = 875; + this.match(ImpalaSqlParser.KW_AS); + this.state = 876; this.queryStatement(); } } @@ -2932,17 +2929,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 877; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 878; - this.match(ImpalaSqlParser.KW_VIEW); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 879; - this.viewNamePath(); + this.match(ImpalaSqlParser.KW_VIEW); this.state = 880; - this.match(ImpalaSqlParser.KW_RENAME); + this.viewNamePath(); this.state = 881; - this.match(ImpalaSqlParser.KW_TO); + this.match(ImpalaSqlParser.KW_RENAME); this.state = 882; + this.match(ImpalaSqlParser.KW_TO); + this.state = 883; this.viewNamePath(); } } @@ -2967,17 +2964,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 884; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 885; - this.match(ImpalaSqlParser.KW_VIEW); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 886; - this.viewNamePath(); + this.match(ImpalaSqlParser.KW_VIEW); this.state = 887; - this.match(ImpalaSqlParser.KW_SET); + this.viewNamePath(); this.state = 888; - this.match(ImpalaSqlParser.KW_OWNER); + this.match(ImpalaSqlParser.KW_SET); this.state = 889; + this.match(ImpalaSqlParser.KW_OWNER); + this.state = 890; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2986,7 +2983,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 890; + this.state = 891; this.qualifiedName(); } } @@ -3010,17 +3007,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 892; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 893; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 894; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 895; - this.match(ImpalaSqlParser.KW_RENAME); + this.tableNamePath(); this.state = 896; - this.match(ImpalaSqlParser.KW_TO); + this.match(ImpalaSqlParser.KW_RENAME); this.state = 897; + this.match(ImpalaSqlParser.KW_TO); + this.state = 898; this.tableNamePath(); } } @@ -3045,13 +3042,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 899; - this.match(ImpalaSqlParser.KW_ALTER); this.state = 900; - this.match(ImpalaSqlParser.KW_VIEW); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 901; - this.viewNamePath(); + this.match(ImpalaSqlParser.KW_VIEW); this.state = 902; + this.viewNamePath(); + this.state = 903; _la = this.tokenStream.LA(1); if(!(_la === 176 || _la === 202)) { this.errorHandler.recoverInline(this); @@ -3060,9 +3057,9 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 903; - this.match(ImpalaSqlParser.KW_TBLPROPERTIES); this.state = 904; + this.match(ImpalaSqlParser.KW_TBLPROPERTIES); + this.state = 905; localContext._tblProp = this.properties(); } } @@ -3087,29 +3084,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 906; + this.state = 907; this.match(ImpalaSqlParser.KW_TRUNCATE); - this.state = 908; + this.state = 909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 907; + this.state = 908; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 911; + this.state = 912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 910; + this.state = 911; this.ifExists(); } } - this.state = 913; + this.state = 914; this.tableNamePath(); } } @@ -3134,24 +3131,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 915; + this.state = 916; this.match(ImpalaSqlParser.KW_DESCRIBE); - this.state = 917; + this.state = 918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 916; + this.state = 917; this.match(ImpalaSqlParser.KW_DATABASE); } } - this.state = 920; + this.state = 921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 80) { { - this.state = 919; + this.state = 920; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -3163,7 +3160,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 922; + this.state = 923; this.qualifiedName(); } } @@ -3185,20 +3182,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ComputeStatementContext(this.context, this.state); this.enterRule(localContext, 68, ImpalaSqlParser.RULE_computeStatement); try { - this.state = 926; + this.state = 927; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 924; + this.state = 925; this.computeStats(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 925; + this.state = 926; this.computeIncrementalStats(); } break; @@ -3225,49 +3222,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 928; - this.match(ImpalaSqlParser.KW_COMPUTE); this.state = 929; - this.match(ImpalaSqlParser.KW_STATS); + this.match(ImpalaSqlParser.KW_COMPUTE); this.state = 930; + this.match(ImpalaSqlParser.KW_STATS); + this.state = 931; this.tableNamePath(); - this.state = 932; + this.state = 933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 931; + this.state = 932; this.columnAliases(); } break; } - this.state = 946; + this.state = 947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 934; - this.match(ImpalaSqlParser.KW_TABLESAMPLE); this.state = 935; - this.match(ImpalaSqlParser.KW_SYSTEM); + this.match(ImpalaSqlParser.KW_TABLESAMPLE); this.state = 936; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_SYSTEM); this.state = 937; - this.number_(); + this.match(ImpalaSqlParser.LPAREN); this.state = 938; + this.number_(); + this.state = 939; this.match(ImpalaSqlParser.RPAREN); - this.state = 944; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 157) { { - this.state = 939; - this.match(ImpalaSqlParser.KW_REPEATABLE); this.state = 940; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_REPEATABLE); this.state = 941; - this.number_(); + this.match(ImpalaSqlParser.LPAREN); this.state = 942; + this.number_(); + this.state = 943; this.match(ImpalaSqlParser.RPAREN); } } @@ -3298,26 +3295,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 948; - this.match(ImpalaSqlParser.KW_COMPUTE); this.state = 949; - this.match(ImpalaSqlParser.KW_INCREMENTAL); + this.match(ImpalaSqlParser.KW_COMPUTE); this.state = 950; - this.match(ImpalaSqlParser.KW_STATS); + this.match(ImpalaSqlParser.KW_INCREMENTAL); this.state = 951; + this.match(ImpalaSqlParser.KW_STATS); + this.state = 952; this.tableNamePath(); - this.state = 957; + this.state = 958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 952; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 953; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_PARTITION); this.state = 954; - this.expression(); + this.match(ImpalaSqlParser.LPAREN); this.state = 955; + this.expression(); + this.state = 956; this.match(ImpalaSqlParser.RPAREN); } } @@ -3342,48 +3339,48 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DropStatementContext(this.context, this.state); this.enterRule(localContext, 74, ImpalaSqlParser.RULE_dropStatement); try { - this.state = 965; + this.state = 966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 959; + this.state = 960; this.dropRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 960; + this.state = 961; this.dropFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 961; + this.state = 962; this.dropIncrementalStats(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 962; + this.state = 963; this.dropView(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 963; + this.state = 964; this.dropTable(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 964; + this.state = 965; this.dropSchema(); } break; @@ -3410,9 +3407,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 967; - this.match(ImpalaSqlParser.KW_DROP); this.state = 968; + this.match(ImpalaSqlParser.KW_DROP); + this.state = 969; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -3421,24 +3418,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 970; + this.state = 971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 969; + this.state = 970; this.ifExists(); } } - this.state = 972; + this.state = 973; this.databaseNamePath(); - this.state = 974; + this.state = 975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27 || _la === 159) { { - this.state = 973; + this.state = 974; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 159)) { this.errorHandler.recoverInline(this); @@ -3473,21 +3470,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; - this.match(ImpalaSqlParser.KW_DROP); this.state = 977; + this.match(ImpalaSqlParser.KW_DROP); + this.state = 978; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 979; + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 978; + this.state = 979; this.ifExists(); } } - this.state = 981; + this.state = 982; this.viewNamePath(); } } @@ -3512,28 +3509,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 983; - this.match(ImpalaSqlParser.KW_DROP); this.state = 984; + this.match(ImpalaSqlParser.KW_DROP); + this.state = 985; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 986; + this.state = 987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 985; + this.state = 986; this.ifExists(); } } - this.state = 988; + this.state = 989; this.tableNamePath(); - this.state = 990; + this.state = 991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 989; + this.state = 990; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -3561,30 +3558,30 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 992; + this.state = 993; this.match(ImpalaSqlParser.KW_DROP); - this.state = 994; + this.state = 995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 96) { { - this.state = 993; + this.state = 994; this.match(ImpalaSqlParser.KW_INCREMENTAL); } } - this.state = 996; - this.match(ImpalaSqlParser.KW_STATS); this.state = 997; + this.match(ImpalaSqlParser.KW_STATS); + this.state = 998; this.tableNamePath(); - this.state = 1000; + this.state = 1001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 998; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 999; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 1000; this.expression(); } } @@ -3612,66 +3609,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1002; + this.state = 1003; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1004; + this.state = 1005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 1003; + this.state = 1004; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 1006; + this.state = 1007; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 1008; + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1007; + this.state = 1008; this.ifExists(); } } - this.state = 1010; + this.state = 1011; this.functionNamePath(); - this.state = 1023; + this.state = 1024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1011; + this.state = 1012; this.match(ImpalaSqlParser.LPAREN); - this.state = 1020; + this.state = 1021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 1012; + this.state = 1013; this.type_(0); - this.state = 1017; + this.state = 1018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1013; - this.match(ImpalaSqlParser.COMMA); this.state = 1014; + this.match(ImpalaSqlParser.COMMA); + this.state = 1015; this.type_(0); } } - this.state = 1019; + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1022; + this.state = 1023; this.match(ImpalaSqlParser.RPAREN); } break; @@ -3698,11 +3695,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1025; - this.match(ImpalaSqlParser.KW_DROP); this.state = 1026; - this.match(ImpalaSqlParser.KW_ROLE); + this.match(ImpalaSqlParser.KW_DROP); this.state = 1027; + this.match(ImpalaSqlParser.KW_ROLE); + this.state = 1028; localContext._name = this.identifier(); } } @@ -3724,20 +3721,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new GrantStatementContext(this.context, this.state); this.enterRule(localContext, 88, ImpalaSqlParser.RULE_grantStatement); try { - this.state = 1031; + this.state = 1032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1029; + this.state = 1030; this.grantRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1030; + this.state = 1031; this.grant(); } break; @@ -3763,17 +3760,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1033; - this.match(ImpalaSqlParser.KW_GRANT); this.state = 1034; - this.match(ImpalaSqlParser.KW_ROLE); + this.match(ImpalaSqlParser.KW_GRANT); this.state = 1035; - this.identifier(); + this.match(ImpalaSqlParser.KW_ROLE); this.state = 1036; - this.match(ImpalaSqlParser.KW_TO); + this.identifier(); this.state = 1037; - this.match(ImpalaSqlParser.KW_GROUP); + this.match(ImpalaSqlParser.KW_TO); this.state = 1038; + this.match(ImpalaSqlParser.KW_GROUP); + this.state = 1039; this.identifier(); } } @@ -3798,27 +3795,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1040; - this.match(ImpalaSqlParser.KW_GRANT); this.state = 1041; - this.privilege(); + this.match(ImpalaSqlParser.KW_GRANT); this.state = 1042; - this.match(ImpalaSqlParser.KW_ON); + this.privilege(); this.state = 1043; + this.match(ImpalaSqlParser.KW_ON); + this.state = 1044; this.objectType(); - this.state = 1045; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1044; + this.state = 1045; this.qualifiedName(); } } - this.state = 1047; - this.match(ImpalaSqlParser.KW_TO); this.state = 1048; + this.match(ImpalaSqlParser.KW_TO); + this.state = 1049; localContext._grantee = this.principal(); } } @@ -3840,20 +3837,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RevokeStatementContext(this.context, this.state); this.enterRule(localContext, 94, ImpalaSqlParser.RULE_revokeStatement); try { - this.state = 1052; + this.state = 1053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1050; + this.state = 1051; this.revokeRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1051; + this.state = 1052; this.revoke(); } break; @@ -3879,17 +3876,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1054; - this.match(ImpalaSqlParser.KW_REVOKE); this.state = 1055; - this.match(ImpalaSqlParser.KW_ROLE); + this.match(ImpalaSqlParser.KW_REVOKE); this.state = 1056; - this.identifier(); + this.match(ImpalaSqlParser.KW_ROLE); this.state = 1057; - this.match(ImpalaSqlParser.KW_FROM); + this.identifier(); this.state = 1058; - this.match(ImpalaSqlParser.KW_GROUP); + this.match(ImpalaSqlParser.KW_FROM); this.state = 1059; + this.match(ImpalaSqlParser.KW_GROUP); + this.state = 1060; this.identifier(); } } @@ -3914,62 +3911,62 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1061; + this.state = 1062; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1065; + this.state = 1066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86) { { - this.state = 1062; - this.match(ImpalaSqlParser.KW_GRANT); this.state = 1063; - this.match(ImpalaSqlParser.KW_OPTION); + this.match(ImpalaSqlParser.KW_GRANT); this.state = 1064; + this.match(ImpalaSqlParser.KW_OPTION); + this.state = 1065; this.match(ImpalaSqlParser.KW_FOR); } } - this.state = 1067; - this.privilege(); this.state = 1068; - this.match(ImpalaSqlParser.KW_ON); + this.privilege(); this.state = 1069; + this.match(ImpalaSqlParser.KW_ON); + this.state = 1070; this.objectType(); - this.state = 1071; + this.state = 1072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1070; + this.state = 1071; this.qualifiedName(); } } - this.state = 1073; + this.state = 1074; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1079; + this.state = 1080; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1074; + this.state = 1075; localContext._grantee = this.principal(); } break; case 2: { - this.state = 1076; + this.state = 1077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1075; + this.state = 1076; this.match(ImpalaSqlParser.KW_ROLE); } } - this.state = 1078; + this.state = 1079; this.identifier(); } break; @@ -3997,19 +3994,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1082; + this.state = 1083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1081; + this.state = 1082; this.with_(); } } - this.state = 1084; - this.match(ImpalaSqlParser.KW_INSERT); this.state = 1085; + this.match(ImpalaSqlParser.KW_INSERT); + this.state = 1086; _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 144)) { this.errorHandler.recoverInline(this); @@ -4018,61 +4015,61 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1087; + this.state = 1088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1086; + this.state = 1087; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1089; + this.state = 1090; this.tableNamePath(); - this.state = 1091; + this.state = 1092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1090; + this.state = 1091; this.columnAliases(); } break; } - this.state = 1105; + this.state = 1106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1093; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1094; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1095; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1096; this.expression(); - this.state = 1100; + this.state = 1101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1096; - this.match(ImpalaSqlParser.COMMA); this.state = 1097; + this.match(ImpalaSqlParser.COMMA); + this.state = 1098; this.expression(); } } - this.state = 1102; + this.state = 1103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1103; + this.state = 1104; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 1107; + this.state = 1108; this.queryStatement(); } } @@ -4094,20 +4091,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 102, ImpalaSqlParser.RULE_deleteStatement); try { - this.state = 1111; + this.state = 1112; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1109; + this.state = 1110; this.delete_(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1110; + this.state = 1111; this.deleteTableRef(); } break; @@ -4134,28 +4131,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1113; + this.state = 1114; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1115; + this.state = 1116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1114; + this.state = 1115; this.match(ImpalaSqlParser.KW_FROM); } } - this.state = 1117; + this.state = 1118; this.tableNamePath(); - this.state = 1120; + this.state = 1121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1118; - this.match(ImpalaSqlParser.KW_WHERE); this.state = 1119; + this.match(ImpalaSqlParser.KW_WHERE); + this.state = 1120; this.booleanExpression(0); } } @@ -4183,66 +4180,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1122; - this.match(ImpalaSqlParser.KW_DELETE); this.state = 1123; + this.match(ImpalaSqlParser.KW_DELETE); + this.state = 1124; this.tableNamePath(); - this.state = 1128; + this.state = 1129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1125; + this.state = 1126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 1124; + this.state = 1125; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 1127; + this.state = 1128; this.identifier(); } } - this.state = 1130; + this.state = 1131; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1139; + this.state = 1140; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1131; + this.state = 1132; this.relation(0); - this.state = 1136; + this.state = 1137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1132; - this.match(ImpalaSqlParser.COMMA); this.state = 1133; + this.match(ImpalaSqlParser.COMMA); + this.state = 1134; this.relation(0); } } - this.state = 1138; + this.state = 1139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1143; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1141; - this.match(ImpalaSqlParser.KW_WHERE); this.state = 1142; + this.match(ImpalaSqlParser.KW_WHERE); + this.state = 1143; this.booleanExpression(0); } } @@ -4270,50 +4267,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1145; - this.match(ImpalaSqlParser.KW_UPDATE); this.state = 1146; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_UPDATE); this.state = 1147; - this.match(ImpalaSqlParser.KW_SET); + this.tableNamePath(); this.state = 1148; + this.match(ImpalaSqlParser.KW_SET); + this.state = 1149; this.assignmentList(); - this.state = 1158; + this.state = 1159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1149; - this.match(ImpalaSqlParser.KW_FROM); this.state = 1150; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 1151; this.relation(0); - this.state = 1155; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1151; - this.match(ImpalaSqlParser.COMMA); this.state = 1152; + this.match(ImpalaSqlParser.COMMA); + this.state = 1153; this.relation(0); } } - this.state = 1157; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1162; + this.state = 1163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1160; - this.match(ImpalaSqlParser.KW_WHERE); this.state = 1161; + this.match(ImpalaSqlParser.KW_WHERE); + this.state = 1162; this.booleanExpression(0); } } @@ -4341,33 +4338,33 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1164; - this.match(ImpalaSqlParser.KW_UPSERT); this.state = 1165; + this.match(ImpalaSqlParser.KW_UPSERT); + this.state = 1166; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1167; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1166; + this.state = 1167; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1169; + this.state = 1170; this.tableNamePath(); - this.state = 1171; + this.state = 1172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1170; + this.state = 1171; this.columnAliases(); } break; } - this.state = 1173; + this.state = 1174; this.queryStatement(); } } @@ -4389,90 +4386,90 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ShowStatementContext(this.context, this.state); this.enterRule(localContext, 112, ImpalaSqlParser.RULE_showStatement); try { - this.state = 1187; + this.state = 1188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1175; + this.state = 1176; this.showRoles(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1176; + this.state = 1177; this.showRoleGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1177; + this.state = 1178; this.showGrants(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1178; + this.state = 1179; this.showFiles(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1179; + this.state = 1180; this.showPartitions(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1180; + this.state = 1181; this.showColumnStats(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1181; + this.state = 1182; this.showTableStats(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1182; + this.state = 1183; this.showCreateView(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1183; + this.state = 1184; this.showCreateTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1184; + this.state = 1185; this.showFunctions(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1185; + this.state = 1186; this.showTables(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1186; + this.state = 1187; this.showSchemas(); } break; @@ -4499,9 +4496,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1189; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1190; + this.match(ImpalaSqlParser.KW_SHOW); + this.state = 1191; _la = this.tokenStream.LA(1); if(!(_la === 47 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -4510,36 +4507,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1202; + this.state = 1203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1192; + this.state = 1193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1191; + this.state = 1192; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1194; + this.state = 1195; localContext._pattern = this.stringLiteral(); - this.state = 1199; + this.state = 1200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1195; - this.match(ImpalaSqlParser.BITWISEOR); this.state = 1196; + this.match(ImpalaSqlParser.BITWISEOR); + this.state = 1197; this.stringLiteral(); } } - this.state = 1201; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4569,52 +4566,52 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1204; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1205; + this.match(ImpalaSqlParser.KW_SHOW); + this.state = 1206; this.match(ImpalaSqlParser.KW_TABLES); - this.state = 1208; + this.state = 1209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1206; - this.match(ImpalaSqlParser.KW_IN); this.state = 1207; + this.match(ImpalaSqlParser.KW_IN); + this.state = 1208; this.tableNamePath(); } } - this.state = 1221; + this.state = 1222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1211; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1210; + this.state = 1211; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1213; + this.state = 1214; localContext._pattern = this.stringLiteral(); - this.state = 1218; + this.state = 1219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1214; - this.match(ImpalaSqlParser.BITWISEOR); this.state = 1215; + this.match(ImpalaSqlParser.BITWISEOR); + this.state = 1216; this.stringLiteral(); } } - this.state = 1220; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4644,14 +4641,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1223; + this.state = 1224; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1225; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 12) { { - this.state = 1224; + this.state = 1225; _la = this.tokenStream.LA(1); if(!(_la === 3 || _la === 12)) { this.errorHandler.recoverInline(this); @@ -4663,50 +4660,50 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1227; + this.state = 1228; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1230; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1228; - this.match(ImpalaSqlParser.KW_IN); this.state = 1229; + this.match(ImpalaSqlParser.KW_IN); + this.state = 1230; this.databaseNamePath(); } } - this.state = 1243; + this.state = 1244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1233; + this.state = 1234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1232; + this.state = 1233; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1235; + this.state = 1236; localContext._pattern = this.stringLiteral(); - this.state = 1240; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1236; - this.match(ImpalaSqlParser.BITWISEOR); this.state = 1237; + this.match(ImpalaSqlParser.BITWISEOR); + this.state = 1238; this.stringLiteral(); } } - this.state = 1242; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4735,13 +4732,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1245; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1246; - this.match(ImpalaSqlParser.KW_CREATE); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1247; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_CREATE); this.state = 1248; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 1249; this.tableNamePath(); } } @@ -4765,13 +4762,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1250; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1251; - this.match(ImpalaSqlParser.KW_CREATE); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1252; - this.match(ImpalaSqlParser.KW_VIEW); + this.match(ImpalaSqlParser.KW_CREATE); this.state = 1253; + this.match(ImpalaSqlParser.KW_VIEW); + this.state = 1254; this.viewNamePath(); } } @@ -4795,13 +4792,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1255; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1256; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1257; - this.match(ImpalaSqlParser.KW_STATS); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 1258; + this.match(ImpalaSqlParser.KW_STATS); + this.state = 1259; this.tableNamePath(); } } @@ -4825,13 +4822,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1260; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1261; - this.match(ImpalaSqlParser.KW_COLUMN); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1262; - this.match(ImpalaSqlParser.KW_STATS); + this.match(ImpalaSqlParser.KW_COLUMN); this.state = 1263; + this.match(ImpalaSqlParser.KW_STATS); + this.state = 1264; this.tableNamePath(); } } @@ -4856,21 +4853,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1265; + this.state = 1266; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1267; + this.state = 1268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1266; + this.state = 1267; this.match(ImpalaSqlParser.KW_RANGE); } } - this.state = 1269; - this.match(ImpalaSqlParser.KW_PARTITIONS); this.state = 1270; + this.match(ImpalaSqlParser.KW_PARTITIONS); + this.state = 1271; this.tableNamePath(); } } @@ -4895,38 +4892,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1272; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1273; - this.match(ImpalaSqlParser.KW_FILES); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1274; - this.match(ImpalaSqlParser.KW_IN); + this.match(ImpalaSqlParser.KW_FILES); this.state = 1275; + this.match(ImpalaSqlParser.KW_IN); + this.state = 1276; this.tableNamePath(); - this.state = 1285; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1276; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1277; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1278; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1279; this.expression(); - this.state = 1281; + this.state = 1282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1279; - this.match(ImpalaSqlParser.COMMA); this.state = 1280; + this.match(ImpalaSqlParser.COMMA); + this.state = 1281; this.expression(); } } - this.state = 1283; + this.state = 1284; this.match(ImpalaSqlParser.RPAREN); } } @@ -4954,19 +4951,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1287; + this.state = 1288; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1289; + this.state = 1290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 1288; + this.state = 1289; this.match(ImpalaSqlParser.KW_CURRENT); } } - this.state = 1291; + this.state = 1292; this.match(ImpalaSqlParser.KW_ROLES); } } @@ -4990,15 +4987,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1293; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1294; - this.match(ImpalaSqlParser.KW_ROLE); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1295; - this.match(ImpalaSqlParser.KW_GRANT); + this.match(ImpalaSqlParser.KW_ROLE); this.state = 1296; - this.match(ImpalaSqlParser.KW_GROUP); + this.match(ImpalaSqlParser.KW_GRANT); this.state = 1297; + this.match(ImpalaSqlParser.KW_GROUP); + this.state = 1298; this.identifier(); } } @@ -5021,38 +5018,38 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 136, ImpalaSqlParser.RULE_showGrants); let _la: number; try { - this.state = 1313; + this.state = 1314; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1299; + this.state = 1300; this.showDatabaseGrant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1300; + this.state = 1301; this.showTableGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1301; + this.state = 1302; this.showColumnGrant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1302; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1303; - this.match(ImpalaSqlParser.KW_GRANT); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1304; + this.match(ImpalaSqlParser.KW_GRANT); + this.state = 1305; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5061,16 +5058,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1305; + this.state = 1306; this.identifier(); - this.state = 1311; + this.state = 1312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1306; - this.match(ImpalaSqlParser.KW_ON); this.state = 1307; + this.match(ImpalaSqlParser.KW_ON); + this.state = 1308; _la = this.tokenStream.LA(1); if(!(_la === 178 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -5079,12 +5076,12 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1309; + this.state = 1310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1308; + this.state = 1309; this.qualifiedName(); } } @@ -5117,11 +5114,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1315; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1316; - this.match(ImpalaSqlParser.KW_GRANT); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1317; + this.match(ImpalaSqlParser.KW_GRANT); + this.state = 1318; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5130,23 +5127,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1318; + this.state = 1319; this.identifier(); - this.state = 1324; + this.state = 1325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1319; - this.match(ImpalaSqlParser.KW_ON); this.state = 1320; + this.match(ImpalaSqlParser.KW_ON); + this.state = 1321; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1322; + this.state = 1323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1321; + this.state = 1322; this.databaseNamePath(); } } @@ -5177,11 +5174,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1326; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1327; - this.match(ImpalaSqlParser.KW_GRANT); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1328; + this.match(ImpalaSqlParser.KW_GRANT); + this.state = 1329; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5190,23 +5187,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1329; + this.state = 1330; this.identifier(); - this.state = 1335; + this.state = 1336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1330; - this.match(ImpalaSqlParser.KW_ON); this.state = 1331; + this.match(ImpalaSqlParser.KW_ON); + this.state = 1332; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1333; + this.state = 1334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1332; + this.state = 1333; this.tableNamePath(); } } @@ -5237,11 +5234,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1337; - this.match(ImpalaSqlParser.KW_SHOW); this.state = 1338; - this.match(ImpalaSqlParser.KW_GRANT); + this.match(ImpalaSqlParser.KW_SHOW); this.state = 1339; + this.match(ImpalaSqlParser.KW_GRANT); + this.state = 1340; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5250,23 +5247,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1340; + this.state = 1341; this.identifier(); - this.state = 1346; + this.state = 1347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1341; - this.match(ImpalaSqlParser.KW_ON); this.state = 1342; + this.match(ImpalaSqlParser.KW_ON); + this.state = 1343; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1344; + this.state = 1345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1343; + this.state = 1344; this.columnNamePath(); } break; @@ -5294,27 +5291,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AddCommentStatementContext(this.context, this.state); this.enterRule(localContext, 144, ImpalaSqlParser.RULE_addCommentStatement); try { - this.state = 1351; + this.state = 1352; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1348; + this.state = 1349; this.addDatabaseComments(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1349; + this.state = 1350; this.addTableComments(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1350; + this.state = 1351; this.addColumnComments(); } break; @@ -5340,29 +5337,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1353; - this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1354; - this.match(ImpalaSqlParser.KW_ON); + this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1355; - this.match(ImpalaSqlParser.KW_DATABASE); + this.match(ImpalaSqlParser.KW_ON); this.state = 1356; - this.databaseNamePath(); + this.match(ImpalaSqlParser.KW_DATABASE); this.state = 1357; + this.databaseNamePath(); + this.state = 1358; this.match(ImpalaSqlParser.KW_IS); - this.state = 1360; + this.state = 1361; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1358; + this.state = 1359; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1359; + this.state = 1360; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5391,29 +5388,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1362; - this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1363; - this.match(ImpalaSqlParser.KW_ON); + this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1364; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_ON); this.state = 1365; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 1366; + this.tableNamePath(); + this.state = 1367; this.match(ImpalaSqlParser.KW_IS); - this.state = 1369; + this.state = 1370; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1367; + this.state = 1368; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1368; + this.state = 1369; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5442,29 +5439,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1371; - this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1372; - this.match(ImpalaSqlParser.KW_ON); + this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1373; - this.match(ImpalaSqlParser.KW_COLUMN); + this.match(ImpalaSqlParser.KW_ON); this.state = 1374; - this.columnNamePath(); + this.match(ImpalaSqlParser.KW_COLUMN); this.state = 1375; + this.columnNamePath(); + this.state = 1376; this.match(ImpalaSqlParser.KW_IS); - this.state = 1378; + this.state = 1379; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1376; + this.state = 1377; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1377; + this.state = 1378; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5493,9 +5490,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1380; - this.match(ImpalaSqlParser.KW_EXPLAIN); this.state = 1381; + this.match(ImpalaSqlParser.KW_EXPLAIN); + this.state = 1382; this.sqlStatement(); } } @@ -5519,14 +5516,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1383; + this.state = 1384; this.match(ImpalaSqlParser.KW_SET); - this.state = 1389; + this.state = 1390; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: { - this.state = 1384; + this.state = 1385; this.match(ImpalaSqlParser.KW_ALL); } break; @@ -5569,11 +5566,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1385; - this.identifier(); this.state = 1386; - this.match(ImpalaSqlParser.EQ); + this.identifier(); this.state = 1387; + this.match(ImpalaSqlParser.EQ); + this.state = 1388; this.expression(); } break; @@ -5632,23 +5629,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1391; - this.match(ImpalaSqlParser.COLON); this.state = 1392; - this.match(ImpalaSqlParser.KW_SHUTDOWN); + this.match(ImpalaSqlParser.COLON); this.state = 1393; + this.match(ImpalaSqlParser.KW_SHUTDOWN); + this.state = 1394; this.match(ImpalaSqlParser.LPAREN); - this.state = 1403; + this.state = 1404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1395; + this.state = 1396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274 || _la === 275) { { - this.state = 1394; + this.state = 1395; this.stringLiteral(); } } @@ -5657,16 +5654,16 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 2: { - this.state = 1397; + this.state = 1398; this.stringLiteral(); - this.state = 1400; + this.state = 1401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1398; - this.match(ImpalaSqlParser.COMMA); this.state = 1399; + this.match(ImpalaSqlParser.COMMA); + this.state = 1400; this.expression(); } } @@ -5675,12 +5672,12 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 3: { - this.state = 1402; + this.state = 1403; this.expression(); } break; } - this.state = 1405; + this.state = 1406; this.match(ImpalaSqlParser.RPAREN); } } @@ -5704,11 +5701,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1407; - this.match(ImpalaSqlParser.KW_INVALIDATE); this.state = 1408; - this.match(ImpalaSqlParser.KW_METADATA); + this.match(ImpalaSqlParser.KW_INVALIDATE); this.state = 1409; + this.match(ImpalaSqlParser.KW_METADATA); + this.state = 1410; this.tableNamePath(); } } @@ -5733,54 +5730,54 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1411; - this.match(ImpalaSqlParser.KW_LOAD); this.state = 1412; - this.match(ImpalaSqlParser.KW_DATA); + this.match(ImpalaSqlParser.KW_LOAD); this.state = 1413; - this.match(ImpalaSqlParser.KW_INPATH); + this.match(ImpalaSqlParser.KW_DATA); this.state = 1414; + this.match(ImpalaSqlParser.KW_INPATH); + this.state = 1415; this.match(ImpalaSqlParser.STRING); - this.state = 1416; + this.state = 1417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 1415; + this.state = 1416; this.match(ImpalaSqlParser.KW_OVERWRITE); } } - this.state = 1418; - this.match(ImpalaSqlParser.KW_INTO); this.state = 1419; - this.match(ImpalaSqlParser.KW_TABLE); + this.match(ImpalaSqlParser.KW_INTO); this.state = 1420; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 1421; this.tableNamePath(); - this.state = 1430; + this.state = 1431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1421; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1422; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1423; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1424; this.expression(); - this.state = 1426; + this.state = 1427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1424; - this.match(ImpalaSqlParser.COMMA); this.state = 1425; + this.match(ImpalaSqlParser.COMMA); + this.state = 1426; this.expression(); } } - this.state = 1428; + this.state = 1429; this.match(ImpalaSqlParser.RPAREN); } } @@ -5805,27 +5802,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RefreshStatementContext(this.context, this.state); this.enterRule(localContext, 162, ImpalaSqlParser.RULE_refreshStatement); try { - this.state = 1435; + this.state = 1436; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1432; + this.state = 1433; this.refreshMeta(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1433; + this.state = 1434; this.refreshAuth(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1434; + this.state = 1435; this.refreshFunction(); } break; @@ -5853,40 +5850,40 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1437; - this.match(ImpalaSqlParser.KW_REFRESH); this.state = 1438; + this.match(ImpalaSqlParser.KW_REFRESH); + this.state = 1439; this.tableNamePath(); - this.state = 1451; + this.state = 1452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1439; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1440; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1441; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1442; this.expression(); - this.state = 1446; + this.state = 1447; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1442; - this.match(ImpalaSqlParser.COMMA); this.state = 1443; + this.match(ImpalaSqlParser.COMMA); + this.state = 1444; this.expression(); } } } - this.state = 1448; + this.state = 1449; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } - this.state = 1449; + this.state = 1450; this.match(ImpalaSqlParser.RPAREN); } } @@ -5913,9 +5910,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1453; - this.match(ImpalaSqlParser.KW_REFRESH); this.state = 1454; + this.match(ImpalaSqlParser.KW_REFRESH); + this.state = 1455; this.match(ImpalaSqlParser.KW_AUTHORIZATION); } } @@ -5939,11 +5936,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1456; - this.match(ImpalaSqlParser.KW_REFRESH); this.state = 1457; - this.match(ImpalaSqlParser.KW_FUNCTIONS); + this.match(ImpalaSqlParser.KW_REFRESH); this.state = 1458; + this.match(ImpalaSqlParser.KW_FUNCTIONS); + this.state = 1459; this.functionNamePath(); } } @@ -5967,9 +5964,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1460; - this.match(ImpalaSqlParser.KW_IF); this.state = 1461; + this.match(ImpalaSqlParser.KW_IF); + this.state = 1462; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5993,11 +5990,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1463; - this.match(ImpalaSqlParser.KW_IF); this.state = 1464; - this.match(ImpalaSqlParser.KW_NOT); + this.match(ImpalaSqlParser.KW_IF); this.state = 1465; + this.match(ImpalaSqlParser.KW_NOT); + this.state = 1466; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -6021,7 +6018,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1467; + this.state = 1468; this.qualifiedName(); } } @@ -6045,7 +6042,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1469; + this.state = 1470; this.qualifiedName(); } } @@ -6069,7 +6066,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1471; + this.state = 1472; this.qualifiedName(); } } @@ -6093,7 +6090,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1474; this.qualifiedName(); } } @@ -6117,7 +6114,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1476; this.qualifiedName(); } } @@ -6141,7 +6138,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1477; + this.state = 1478; this.qualifiedName(); } } @@ -6166,23 +6163,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1479; + this.state = 1480; this.identifier(); - this.state = 1484; + this.state = 1485; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1480; - this.match(ImpalaSqlParser.DOT); this.state = 1481; + this.match(ImpalaSqlParser.DOT); + this.state = 1482; this.identifier(); } } } - this.state = 1486; + this.state = 1487; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } @@ -6209,23 +6206,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1487; + this.state = 1488; this.identifier(); - this.state = 1492; + this.state = 1493; 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 = 1488; - this.match(ImpalaSqlParser.DOT); this.state = 1489; + this.match(ImpalaSqlParser.DOT); + this.state = 1490; this.identifier(); } } } - this.state = 1494; + this.state = 1495; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6249,20 +6246,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new FunctionNamePathContext(this.context, this.state); this.enterRule(localContext, 190, ImpalaSqlParser.RULE_functionNamePath); try { - this.state = 1497; + this.state = 1498; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1495; + this.state = 1496; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1496; + this.state = 1497; this.qualifiedName(); } break; @@ -6286,20 +6283,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); try { - this.state = 1501; + this.state = 1502; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1499; + this.state = 1500; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1500; + this.state = 1501; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -6325,20 +6322,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new TableOrViewPathContext(this.context, this.state); this.enterRule(localContext, 194, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1505; + this.state = 1506; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1503; + this.state = 1504; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1504; + this.state = 1505; this.viewNamePath(); } break; @@ -6365,16 +6362,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1510; + this.state = 1511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1507; - this.match(ImpalaSqlParser.KW_SORT); this.state = 1508; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_SORT); this.state = 1509; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1510; this.columnAliases(); } } @@ -6384,10 +6381,8 @@ export class ImpalaSqlParser extends SQLParserBase { switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 1512; - this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1513; - localContext._comment = this.stringLiteral(); + this.commentClause(); } break; } @@ -6620,49 +6615,41 @@ export class ImpalaSqlParser extends SQLParserBase { { this.state = 1563; this.match(ImpalaSqlParser.LPAREN); - this.state = 1564; - this.columnNamePathCreate(); - this.state = 1567; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 34) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1565; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1566; - this.stringLiteral(); + this.state = 1564; + this.viewColumnItem(); } } - this.state = 1577; + this.state = 1573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1569; + this.state = 1567; this.match(ImpalaSqlParser.COMMA); - this.state = 1570; - this.columnNamePathCreate(); - this.state = 1573; + this.state = 1569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 34) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1571; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1572; - this.stringLiteral(); + this.state = 1568; + this.viewColumnItem(); } } } } - this.state = 1579; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1580; + this.state = 1576; this.match(ImpalaSqlParser.RPAREN); } } @@ -6680,9 +6667,44 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public viewColumnItem(): ViewColumnItemContext { + let localContext = new ViewColumnItemContext(this.context, this.state); + this.enterRule(localContext, 204, ImpalaSqlParser.RULE_viewColumnItem); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1578; + this.columnNamePathCreate(); + this.state = 1580; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 34) { + { + this.state = 1579; + this.commentClause(); + } + } + + } + } + 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 queryStatement(): QueryStatementContext { let localContext = new QueryStatementContext(this.context, this.state); - this.enterRule(localContext, 204, ImpalaSqlParser.RULE_queryStatement); + this.enterRule(localContext, 206, ImpalaSqlParser.RULE_queryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6717,7 +6739,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public with_(): WithContext { let localContext = new WithContext(this.context, this.state); - this.enterRule(localContext, 206, ImpalaSqlParser.RULE_with); + this.enterRule(localContext, 208, ImpalaSqlParser.RULE_with); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6760,7 +6782,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public constraintSpecification(): ConstraintSpecificationContext { let localContext = new ConstraintSpecificationContext(this.context, this.state); - this.enterRule(localContext, 208, ImpalaSqlParser.RULE_constraintSpecification); + this.enterRule(localContext, 210, ImpalaSqlParser.RULE_constraintSpecification); let _la: number; try { let alternative: number; @@ -6784,7 +6806,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.state = 1605; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { this.state = 1602; @@ -6802,7 +6824,7 @@ export class ImpalaSqlParser extends SQLParserBase { } this.state = 1610; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { this.state = 1607; @@ -6845,7 +6867,7 @@ export class ImpalaSqlParser extends SQLParserBase { } this.state = 1621; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 184, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { @@ -6859,7 +6881,7 @@ export class ImpalaSqlParser extends SQLParserBase { } this.state = 1623; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 184, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); } } } @@ -6882,7 +6904,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public foreignKeySpecification(): ForeignKeySpecificationContext { let localContext = new ForeignKeySpecificationContext(this.context, this.state); - this.enterRule(localContext, 210, ImpalaSqlParser.RULE_foreignKeySpecification); + this.enterRule(localContext, 212, ImpalaSqlParser.RULE_foreignKeySpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6947,7 +6969,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnSpec(): ColumnSpecContext { let localContext = new ColumnSpecContext(this.context, this.state); - this.enterRule(localContext, 212, ImpalaSqlParser.RULE_columnSpec); + this.enterRule(localContext, 214, ImpalaSqlParser.RULE_columnSpec); try { this.enterOuterAlt(localContext, 1); { @@ -6957,7 +6979,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.type_(0); this.state = 1645; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { this.state = 1643; @@ -6985,7 +7007,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnDefinition(): ColumnDefinitionContext { let localContext = new ColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 214, ImpalaSqlParser.RULE_columnDefinition); + this.enterRule(localContext, 216, ImpalaSqlParser.RULE_columnDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); @@ -6993,16 +7015,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.state = 1647; this.columnNamePathCreate(); this.state = 1648; - this.type_(0); - this.state = 1651; + localContext._colType = this.type_(0); + this.state = 1650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { this.state = 1649; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1650; - this.stringLiteral(); + this.commentClause(); } } @@ -7024,11 +7044,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduTableElement(): KuduTableElementContext { let localContext = new KuduTableElementContext(this.context, this.state); - this.enterRule(localContext, 216, ImpalaSqlParser.RULE_kuduTableElement); + this.enterRule(localContext, 218, ImpalaSqlParser.RULE_kuduTableElement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1653; + this.state = 1652; this.kuduColumnDefinition(); } } @@ -7048,62 +7068,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduColumnDefinition(): KuduColumnDefinitionContext { let localContext = new KuduColumnDefinitionContext(this.context, this.state); - this.enterRule(localContext, 218, ImpalaSqlParser.RULE_kuduColumnDefinition); + this.enterRule(localContext, 220, ImpalaSqlParser.RULE_kuduColumnDefinition); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1655; + this.state = 1654; this.columnNamePathCreate(); - this.state = 1656; - this.type_(0); - this.state = 1664; + this.state = 1655; + localContext._colType = this.type_(0); + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1657; + this.state = 1656; this.kuduAttributes(); - this.state = 1661; + this.state = 1660; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1658; + this.state = 1657; this.kuduAttributes(); } } } - this.state = 1663; + this.state = 1662; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } } } - this.state = 1668; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1666; - this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1667; - this.stringLiteral(); + this.state = 1665; + this.commentClause(); } } - this.state = 1672; + this.state = 1670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1670; + this.state = 1668; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1671; + this.state = 1669; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7124,38 +7142,64 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public commentClause(): CommentClauseContext { + let localContext = new CommentClauseContext(this.context, this.state); + this.enterRule(localContext, 222, ImpalaSqlParser.RULE_commentClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1672; + this.match(ImpalaSqlParser.KW_COMMENT); + this.state = 1673; + localContext._comment = this.stringLiteral(); + } + } + 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 columnSpecWithKudu(): ColumnSpecWithKuduContext { let localContext = new ColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 220, ImpalaSqlParser.RULE_columnSpecWithKudu); + this.enterRule(localContext, 224, ImpalaSqlParser.RULE_columnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1674; + this.state = 1675; this.columnSpec(); - this.state = 1682; + this.state = 1683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1675; + this.state = 1676; this.kuduAttributes(); - this.state = 1679; + this.state = 1680; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 195, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1676; + this.state = 1677; this.kuduAttributes(); } } } - this.state = 1681; + this.state = 1682; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 195, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } } } @@ -7178,50 +7222,50 @@ export class ImpalaSqlParser extends SQLParserBase { } public createColumnSpecWithKudu(): CreateColumnSpecWithKuduContext { let localContext = new CreateColumnSpecWithKuduContext(this.context, this.state); - this.enterRule(localContext, 222, ImpalaSqlParser.RULE_createColumnSpecWithKudu); + this.enterRule(localContext, 226, ImpalaSqlParser.RULE_createColumnSpecWithKudu); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1684; - this.columnNamePathCreate(); this.state = 1685; + this.columnNamePathCreate(); + this.state = 1686; this.type_(0); - this.state = 1688; + this.state = 1689; 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 = 1686; - this.match(ImpalaSqlParser.KW_COMMENT); this.state = 1687; + this.match(ImpalaSqlParser.KW_COMMENT); + this.state = 1688; this.stringLiteral(); } break; } - this.state = 1697; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1690; + this.state = 1691; this.kuduAttributes(); - this.state = 1694; + this.state = 1695; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 198, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1691; + this.state = 1692; this.kuduAttributes(); } } } - this.state = 1696; + this.state = 1697; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 198, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); } } } @@ -7244,28 +7288,28 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduAttributes(): KuduAttributesContext { let localContext = new KuduAttributesContext(this.context, this.state); - this.enterRule(localContext, 224, ImpalaSqlParser.RULE_kuduAttributes); + this.enterRule(localContext, 228, ImpalaSqlParser.RULE_kuduAttributes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1704; + this.state = 1705; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1700; + this.state = 1701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1699; + this.state = 1700; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1702; + this.state = 1703; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7274,7 +7318,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1703; + this.state = 1704; this.kuduStorageAttr(); } break; @@ -7299,44 +7343,44 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduStorageAttr(): KuduStorageAttrContext { let localContext = new KuduStorageAttrContext(this.context, this.state); - this.enterRule(localContext, 226, ImpalaSqlParser.RULE_kuduStorageAttr); + this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1714; + this.state = 1715; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1706; - this.match(ImpalaSqlParser.KW_ENCODING); this.state = 1707; + this.match(ImpalaSqlParser.KW_ENCODING); + this.state = 1708; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1708; - this.match(ImpalaSqlParser.KW_COMPRESSION); this.state = 1709; + this.match(ImpalaSqlParser.KW_COMPRESSION); + this.state = 1710; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1710; - this.match(ImpalaSqlParser.KW_DEFAULT); this.state = 1711; + this.match(ImpalaSqlParser.KW_DEFAULT); + this.state = 1712; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1712; - this.match(ImpalaSqlParser.KW_BLOCK_SIZE); this.state = 1713; + this.match(ImpalaSqlParser.KW_BLOCK_SIZE); + this.state = 1714; this.number_(); } break; @@ -7360,12 +7404,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public statsKey(): StatsKeyContext { let localContext = new StatsKeyContext(this.context, this.state); - this.enterRule(localContext, 228, ImpalaSqlParser.RULE_statsKey); + this.enterRule(localContext, 232, ImpalaSqlParser.RULE_statsKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1716; + this.state = 1717; _la = this.tokenStream.LA(1); if(!(((((_la - 245)) & ~0x1F) === 0 && ((1 << (_la - 245)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -7392,12 +7436,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 230, ImpalaSqlParser.RULE_fileFormat); + this.enterRule(localContext, 234, ImpalaSqlParser.RULE_fileFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1718; + this.state = 1719; _la = this.tokenStream.LA(1); if(!(_la === 147 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 31) !== 0))) { this.errorHandler.recoverInline(this); @@ -7424,45 +7468,45 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionClause(): KuduPartitionClauseContext { let localContext = new KuduPartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 232, ImpalaSqlParser.RULE_kuduPartitionClause); + this.enterRule(localContext, 236, ImpalaSqlParser.RULE_kuduPartitionClause); let _la: number; try { let alternative: number; - this.state = 1733; + this.state = 1734; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1720; + this.state = 1721; this.hashClause(); - this.state = 1725; + this.state = 1726; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1721; - this.match(ImpalaSqlParser.COMMA); this.state = 1722; + this.match(ImpalaSqlParser.COMMA); + this.state = 1723; this.hashClause(); } } } - this.state = 1727; + this.state = 1728; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); } - this.state = 1730; + this.state = 1731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1728; - this.match(ImpalaSqlParser.COMMA); this.state = 1729; + this.match(ImpalaSqlParser.COMMA); + this.state = 1730; this.rangeClause(); } } @@ -7473,7 +7517,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1732; + this.state = 1733; this.rangeClause(); } break; @@ -7497,26 +7541,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public hashClause(): HashClauseContext { let localContext = new HashClauseContext(this.context, this.state); - this.enterRule(localContext, 234, ImpalaSqlParser.RULE_hashClause); + this.enterRule(localContext, 238, ImpalaSqlParser.RULE_hashClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1735; + this.state = 1736; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1737; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 1736; + this.state = 1737; this.columnAliases(); } } - this.state = 1739; - this.match(ImpalaSqlParser.KW_PARTITIONS); this.state = 1740; + this.match(ImpalaSqlParser.KW_PARTITIONS); + this.state = 1741; this.number_(); } } @@ -7536,52 +7580,52 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeClause(): RangeClauseContext { let localContext = new RangeClauseContext(this.context, this.state); - this.enterRule(localContext, 236, ImpalaSqlParser.RULE_rangeClause); + this.enterRule(localContext, 240, ImpalaSqlParser.RULE_rangeClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1742; + this.state = 1743; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1744; + this.state = 1745; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1743; + this.state = 1744; this.columnAliases(); } break; } - this.state = 1746; + this.state = 1747; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1747; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 1748; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 1749; this.kuduPartitionSpec(); - this.state = 1754; + this.state = 1755; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1749; - this.match(ImpalaSqlParser.COMMA); this.state = 1750; - this.match(ImpalaSqlParser.KW_PARTITION); + this.match(ImpalaSqlParser.COMMA); this.state = 1751; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 1752; this.kuduPartitionSpec(); } } } - this.state = 1756; + this.state = 1757; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } } - this.state = 1757; + this.state = 1758; this.match(ImpalaSqlParser.RPAREN); } } @@ -7601,20 +7645,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public kuduPartitionSpec(): KuduPartitionSpecContext { let localContext = new KuduPartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 238, ImpalaSqlParser.RULE_kuduPartitionSpec); + this.enterRule(localContext, 242, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1774; + this.state = 1775; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1759; - this.match(ImpalaSqlParser.KW_VALUE); this.state = 1760; - this.partitionCol(); + this.match(ImpalaSqlParser.KW_VALUE); this.state = 1761; + this.partitionCol(); + this.state = 1762; this.expression(); } break; @@ -7690,28 +7734,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1766; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 1763; - this.expression(); this.state = 1764; + this.expression(); + this.state = 1765; this.rangeOperator(); } } - this.state = 1768; + this.state = 1769; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1772; + this.state = 1773; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1769; - this.rangeOperator(); this.state = 1770; + this.rangeOperator(); + this.state = 1771; this.expression(); } break; @@ -7738,32 +7782,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public cacheSpec(): CacheSpecContext { let localContext = new CacheSpecContext(this.context, this.state); - this.enterRule(localContext, 240, ImpalaSqlParser.RULE_cacheSpec); + this.enterRule(localContext, 244, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1786; + this.state = 1787; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1776; - this.match(ImpalaSqlParser.KW_CACHED); this.state = 1777; - this.match(ImpalaSqlParser.KW_IN); + this.match(ImpalaSqlParser.KW_CACHED); this.state = 1778; + this.match(ImpalaSqlParser.KW_IN); + this.state = 1779; this.identifier(); - this.state = 1783; + this.state = 1784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1779; - this.match(ImpalaSqlParser.KW_WITH); this.state = 1780; - this.match(ImpalaSqlParser.KW_REPLICATION); + this.match(ImpalaSqlParser.KW_WITH); this.state = 1781; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_REPLICATION); this.state = 1782; + this.match(ImpalaSqlParser.EQ); + this.state = 1783; this.number_(); } break; @@ -7773,7 +7817,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1785; + this.state = 1786; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7797,9 +7841,9 @@ export class ImpalaSqlParser extends SQLParserBase { } public rangeOperator(): RangeOperatorContext { let localContext = new RangeOperatorContext(this.context, this.state); - this.enterRule(localContext, 242, ImpalaSqlParser.RULE_rangeOperator); + this.enterRule(localContext, 246, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1793; + this.state = 1794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7880,28 +7924,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1789; + this.state = 1790; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1790; + this.state = 1791; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1791; + this.state = 1792; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1792; + this.state = 1793; this.match(ImpalaSqlParser.GTE); } break; @@ -7925,57 +7969,57 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionCol(): PartitionColContext { let localContext = new PartitionColContext(this.context, this.state); - this.enterRule(localContext, 244, ImpalaSqlParser.RULE_partitionCol); + this.enterRule(localContext, 248, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1803; + this.state = 1804; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1795; + this.state = 1796; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1796; + this.state = 1797; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1797; + this.state = 1798; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1798; + this.state = 1799; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1799; + this.state = 1800; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1800; + this.state = 1801; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1801; + this.state = 1802; this.match(ImpalaSqlParser.KW_IN); } break; @@ -8054,7 +8098,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1802; + this.state = 1803; this.rangeOperator(); } break; @@ -8078,21 +8122,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public likeClause(): LikeClauseContext { let localContext = new LikeClauseContext(this.context, this.state); - this.enterRule(localContext, 246, ImpalaSqlParser.RULE_likeClause); + this.enterRule(localContext, 250, ImpalaSqlParser.RULE_likeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1805; - this.match(ImpalaSqlParser.KW_LIKE); this.state = 1806; + this.match(ImpalaSqlParser.KW_LIKE); + this.state = 1807; this.qualifiedName(); - this.state = 1809; + this.state = 1810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1807; + this.state = 1808; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8102,7 +8146,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1808; + this.state = 1809; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8125,32 +8169,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public properties(): PropertiesContext { let localContext = new PropertiesContext(this.context, this.state); - this.enterRule(localContext, 248, ImpalaSqlParser.RULE_properties); + this.enterRule(localContext, 252, ImpalaSqlParser.RULE_properties); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1811; - this.match(ImpalaSqlParser.LPAREN); this.state = 1812; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1813; this.property(); - this.state = 1817; + this.state = 1818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1813; - this.match(ImpalaSqlParser.COMMA); this.state = 1814; + this.match(ImpalaSqlParser.COMMA); + this.state = 1815; this.property(); } } - this.state = 1819; + this.state = 1820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1820; + this.state = 1821; this.match(ImpalaSqlParser.RPAREN); } } @@ -8170,34 +8214,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public partitionedBy(): PartitionedByContext { let localContext = new PartitionedByContext(this.context, this.state); - this.enterRule(localContext, 250, ImpalaSqlParser.RULE_partitionedBy); + this.enterRule(localContext, 254, ImpalaSqlParser.RULE_partitionedBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1822; - this.match(ImpalaSqlParser.LPAREN); this.state = 1823; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1824; this.columnSpec(); - this.state = 1828; + this.state = 1829; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1824; - this.match(ImpalaSqlParser.COMMA); this.state = 1825; + this.match(ImpalaSqlParser.COMMA); + this.state = 1826; this.columnSpec(); } } } - this.state = 1830; + this.state = 1831; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } - this.state = 1831; + this.state = 1832; this.match(ImpalaSqlParser.RPAREN); } } @@ -8217,26 +8261,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortedBy(): SortedByContext { let localContext = new SortedByContext(this.context, this.state); - this.enterRule(localContext, 252, ImpalaSqlParser.RULE_sortedBy); + this.enterRule(localContext, 256, ImpalaSqlParser.RULE_sortedBy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1833; + this.state = 1834; this.expression(); - this.state = 1838; + this.state = 1839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1834; - this.match(ImpalaSqlParser.COMMA); this.state = 1835; + this.match(ImpalaSqlParser.COMMA); + this.state = 1836; this.expression(); } } - this.state = 1840; + this.state = 1841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8258,36 +8302,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 254, ImpalaSqlParser.RULE_rowFormat); + this.enterRule(localContext, 258, ImpalaSqlParser.RULE_rowFormat); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1842; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1851; + this.state = 1852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1842; - this.match(ImpalaSqlParser.KW_FIELDS); this.state = 1843; - this.match(ImpalaSqlParser.KW_TERMINATED); + this.match(ImpalaSqlParser.KW_FIELDS); this.state = 1844; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_TERMINATED); this.state = 1845; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1846; this.stringLiteral(); - this.state = 1849; + this.state = 1850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1846; - this.match(ImpalaSqlParser.KW_ESCAPED); this.state = 1847; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_ESCAPED); this.state = 1848; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1849; this.stringLiteral(); } } @@ -8295,18 +8339,18 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1857; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1853; - this.match(ImpalaSqlParser.KW_LINES); this.state = 1854; - this.match(ImpalaSqlParser.KW_TERMINATED); + this.match(ImpalaSqlParser.KW_LINES); this.state = 1855; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_TERMINATED); this.state = 1856; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1857; this.stringLiteral(); } } @@ -8329,21 +8373,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 256, ImpalaSqlParser.RULE_property); + this.enterRule(localContext, 260, ImpalaSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1859; + this.state = 1860; this.identifier(); - this.state = 1862; + this.state = 1863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1860; - this.match(ImpalaSqlParser.EQ); this.state = 1861; + this.match(ImpalaSqlParser.EQ); + this.state = 1862; this.expression(); } } @@ -8366,60 +8410,60 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryNoWith(): QueryNoWithContext { let localContext = new QueryNoWithContext(this.context, this.state); - this.enterRule(localContext, 258, ImpalaSqlParser.RULE_queryNoWith); + this.enterRule(localContext, 262, ImpalaSqlParser.RULE_queryNoWith); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1864; + this.state = 1865; this.queryTerm(0); - this.state = 1875; + this.state = 1876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 1865; - this.match(ImpalaSqlParser.KW_ORDER); this.state = 1866; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_ORDER); this.state = 1867; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1868; this.sortItem(); - this.state = 1872; + this.state = 1873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1868; - this.match(ImpalaSqlParser.COMMA); this.state = 1869; + this.match(ImpalaSqlParser.COMMA); + this.state = 1870; this.sortItem(); } } - this.state = 1874; + this.state = 1875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1883; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1877; - this.match(ImpalaSqlParser.KW_LIMIT); this.state = 1878; + this.match(ImpalaSqlParser.KW_LIMIT); + this.state = 1879; localContext._rows = this.expression(); - this.state = 1881; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1879; - this.match(ImpalaSqlParser.KW_OFFSET); this.state = 1880; + this.match(ImpalaSqlParser.KW_OFFSET); + this.state = 1881; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8455,8 +8499,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 260; - this.enterRecursionRule(localContext, 260, ImpalaSqlParser.RULE_queryTerm, _p); + let _startState = 264; + this.enterRecursionRule(localContext, 264, ImpalaSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; @@ -8467,13 +8511,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1886; + this.state = 1887; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1902; + this.state = 1903; 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) { if (this._parseListeners != null) { @@ -8481,31 +8525,31 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1900; + this.state = 1901; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1888; + this.state = 1889; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1889; + this.state = 1890; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1891; + this.state = 1892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1890; + this.state = 1891; this.setQuantifier(); } } - this.state = 1893; + this.state = 1894; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8514,11 +8558,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1894; + this.state = 1895; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1895; + this.state = 1896; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 200)) { @@ -8528,26 +8572,26 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1897; + this.state = 1898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1896; + this.state = 1897; this.setQuantifier(); } } - this.state = 1899; + this.state = 1900; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1904; + this.state = 1905; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } } } @@ -8567,17 +8611,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 262, ImpalaSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 266, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1921; + this.state = 1922; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1905; + this.state = 1906; this.querySpecification(); } break; @@ -8585,9 +8629,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1906; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 1907; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 1908; this.tableNamePath(); } break; @@ -8595,27 +8639,27 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1908; - this.match(ImpalaSqlParser.KW_VALUES); this.state = 1909; + this.match(ImpalaSqlParser.KW_VALUES); + this.state = 1910; this.expression(); - this.state = 1914; + this.state = 1915; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1910; - this.match(ImpalaSqlParser.COMMA); this.state = 1911; + this.match(ImpalaSqlParser.COMMA); + this.state = 1912; this.expression(); } } } - this.state = 1916; + this.state = 1917; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } } break; @@ -8623,11 +8667,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1917; - this.match(ImpalaSqlParser.LPAREN); this.state = 1918; - this.queryNoWith(); + this.match(ImpalaSqlParser.LPAREN); this.state = 1919; + this.queryNoWith(); + this.state = 1920; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8651,19 +8695,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 264, ImpalaSqlParser.RULE_sortItem); + this.enterRule(localContext, 268, ImpalaSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1923; + this.state = 1924; this.columnItem(); - this.state = 1925; + this.state = 1926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1924; + this.state = 1925; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8676,14 +8720,14 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1929; + this.state = 1930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1927; - this.match(ImpalaSqlParser.KW_NULLS); this.state = 1928; + this.match(ImpalaSqlParser.KW_NULLS); + this.state = 1929; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8714,117 +8758,117 @@ export class ImpalaSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 266, ImpalaSqlParser.RULE_querySpecification); + this.enterRule(localContext, 270, ImpalaSqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1931; + this.state = 1932; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1933; + this.state = 1934; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1932; + this.state = 1933; this.setQuantifier(); } break; } - this.state = 1936; + this.state = 1937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1935; + this.state = 1936; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } break; } - this.state = 1938; + this.state = 1939; this.selectItem(); - this.state = 1943; + this.state = 1944; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1939; - this.match(ImpalaSqlParser.COMMA); this.state = 1940; + this.match(ImpalaSqlParser.COMMA); + this.state = 1941; this.selectItem(); } } } - this.state = 1945; + this.state = 1946; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } - this.state = 1955; + this.state = 1956; 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 = 1946; - this.match(ImpalaSqlParser.KW_FROM); this.state = 1947; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 1948; this.relation(0); - this.state = 1952; + this.state = 1953; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1948; - this.match(ImpalaSqlParser.COMMA); this.state = 1949; + this.match(ImpalaSqlParser.COMMA); + this.state = 1950; this.relation(0); } } } - this.state = 1954; + this.state = 1955; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); } } break; } - this.state = 1959; + this.state = 1960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1957; - this.match(ImpalaSqlParser.KW_WHERE); this.state = 1958; + this.match(ImpalaSqlParser.KW_WHERE); + this.state = 1959; localContext._where = this.booleanExpression(0); } break; } - this.state = 1964; + this.state = 1965; 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 = 1961; - this.match(ImpalaSqlParser.KW_GROUP); this.state = 1962; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_GROUP); this.state = 1963; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1964; this.groupBy(); } break; } - this.state = 1968; + this.state = 1969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 1966; - this.match(ImpalaSqlParser.KW_HAVING); this.state = 1967; + this.match(ImpalaSqlParser.KW_HAVING); + this.state = 1968; localContext._having = this.booleanExpression(0); } break; @@ -8847,40 +8891,40 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 268, ImpalaSqlParser.RULE_groupBy); + this.enterRule(localContext, 272, ImpalaSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1971; + this.state = 1972; 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.state = 1970; + this.state = 1971; this.setQuantifier(); } break; } - this.state = 1973; + this.state = 1974; this.groupingElement(); - this.state = 1978; + this.state = 1979; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1974; - this.match(ImpalaSqlParser.COMMA); this.state = 1975; + this.match(ImpalaSqlParser.COMMA); + this.state = 1976; this.groupingElement(); } } } - this.state = 1980; + this.state = 1981; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); } } } @@ -8900,12 +8944,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 270, ImpalaSqlParser.RULE_groupingElement); + this.enterRule(localContext, 274, ImpalaSqlParser.RULE_groupingElement); try { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1981; + this.state = 1982; this.groupingSet(); } } @@ -8925,51 +8969,51 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 272, ImpalaSqlParser.RULE_groupingSet); + this.enterRule(localContext, 276, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1996; + this.state = 1997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1983; + this.state = 1984; this.match(ImpalaSqlParser.LPAREN); - this.state = 1992; + this.state = 1993; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1984; + this.state = 1985; this.columnItem(); - this.state = 1989; + this.state = 1990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1985; - this.match(ImpalaSqlParser.COMMA); this.state = 1986; + this.match(ImpalaSqlParser.COMMA); + this.state = 1987; this.columnItem(); } } - this.state = 1991; + this.state = 1992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1994; + this.state = 1995; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1995; + this.state = 1996; this.columnItem(); } break; @@ -8991,26 +9035,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 274, ImpalaSqlParser.RULE_namedQuery); + this.enterRule(localContext, 278, ImpalaSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 1999; localContext._name = this.identifier(); - this.state = 2000; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 1999; + this.state = 2000; this.columnAliases(); } } - this.state = 2002; - this.match(ImpalaSqlParser.KW_AS); this.state = 2003; + this.match(ImpalaSqlParser.KW_AS); + this.state = 2004; this.subQueryRelation(); } } @@ -9030,12 +9074,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 276, ImpalaSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 280, ImpalaSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2005; + this.state = 2006; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -9062,34 +9106,34 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 278, ImpalaSqlParser.RULE_selectItem); + this.enterRule(localContext, 282, ImpalaSqlParser.RULE_selectItem); let _la: number; try { - this.state = 2019; + this.state = 2020; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2007; + this.state = 2008; this.columnItem(); - this.state = 2012; + this.state = 2013; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2009; + this.state = 2010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2008; + this.state = 2009; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2011; + this.state = 2012; this.identifier(); } break; @@ -9100,11 +9144,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2014; - this.qualifiedName(); this.state = 2015; - this.match(ImpalaSqlParser.DOT); + this.qualifiedName(); this.state = 2016; + this.match(ImpalaSqlParser.DOT); + this.state = 2017; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9112,7 +9156,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2018; + this.state = 2019; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9144,8 +9188,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 280; - this.enterRecursionRule(localContext, 280, ImpalaSqlParser.RULE_relation, _p); + let _startState = 284; + this.enterRecursionRule(localContext, 284, ImpalaSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9155,13 +9199,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2022; + this.state = 2023; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2037; + this.state = 2038; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9173,20 +9217,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2024; + this.state = 2025; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2033; + this.state = 2034; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2025; - this.match(ImpalaSqlParser.KW_CROSS); this.state = 2026; - this.match(ImpalaSqlParser.KW_JOIN); + this.match(ImpalaSqlParser.KW_CROSS); this.state = 2027; + this.match(ImpalaSqlParser.KW_JOIN); + this.state = 2028; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9196,13 +9240,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2028; - this.joinType(); this.state = 2029; - this.match(ImpalaSqlParser.KW_JOIN); + this.joinType(); this.state = 2030; - (localContext as JoinRelationContext)._rightRelation = this.relation(0); + this.match(ImpalaSqlParser.KW_JOIN); this.state = 2031; + (localContext as JoinRelationContext)._rightRelation = this.relation(0); + this.state = 2032; this.joinCriteria(); } break; @@ -9212,9 +9256,9 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2039; + this.state = 2040; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); } } } @@ -9234,21 +9278,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 282, ImpalaSqlParser.RULE_joinType); + this.enterRule(localContext, 286, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2071; + this.state = 2072; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2041; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2040; + this.state = 2041; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9258,14 +9302,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2043; + this.state = 2044; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2045; + this.state = 2046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2044; + this.state = 2045; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9275,14 +9319,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2047; + this.state = 2048; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2049; + this.state = 2050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2048; + this.state = 2049; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9292,14 +9336,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2051; + this.state = 2052; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2053; + this.state = 2054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2052; + this.state = 2053; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9309,14 +9353,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2055; + this.state = 2056; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2057; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2056; + this.state = 2057; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9326,14 +9370,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2059; + this.state = 2060; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2061; + this.state = 2062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2060; + this.state = 2061; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9343,36 +9387,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2063; - this.match(ImpalaSqlParser.KW_LEFT); this.state = 2064; + this.match(ImpalaSqlParser.KW_LEFT); + this.state = 2065; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2065; - this.match(ImpalaSqlParser.KW_RIGHT); this.state = 2066; + this.match(ImpalaSqlParser.KW_RIGHT); + this.state = 2067; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2067; - this.match(ImpalaSqlParser.KW_LEFT); this.state = 2068; + this.match(ImpalaSqlParser.KW_LEFT); + this.state = 2069; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2069; - this.match(ImpalaSqlParser.KW_RIGHT); this.state = 2070; + this.match(ImpalaSqlParser.KW_RIGHT); + this.state = 2071; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9394,47 +9438,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 284, ImpalaSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 288, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2087; + this.state = 2088; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2073; - this.match(ImpalaSqlParser.KW_ON); this.state = 2074; + this.match(ImpalaSqlParser.KW_ON); + this.state = 2075; this.booleanExpression(0); } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2075; - this.match(ImpalaSqlParser.KW_USING); this.state = 2076; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_USING); this.state = 2077; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2078; this.identifier(); - this.state = 2082; + this.state = 2083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2078; - this.match(ImpalaSqlParser.COMMA); this.state = 2079; + this.match(ImpalaSqlParser.COMMA); + this.state = 2080; this.identifier(); } } - this.state = 2084; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2085; + this.state = 2086; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9458,39 +9502,39 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 286, ImpalaSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 290, ImpalaSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2089; + this.state = 2090; this.aliasedRelation(); - this.state = 2102; + this.state = 2103; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2090; - this.match(ImpalaSqlParser.KW_TABLESAMPLE); this.state = 2091; - this.sampleType(); + this.match(ImpalaSqlParser.KW_TABLESAMPLE); this.state = 2092; - this.match(ImpalaSqlParser.LPAREN); + this.sampleType(); this.state = 2093; - localContext._percentage = this.expression(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2094; + localContext._percentage = this.expression(); + this.state = 2095; this.match(ImpalaSqlParser.RPAREN); - this.state = 2100; + this.state = 2101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2095; - this.match(ImpalaSqlParser.KW_REPEATABLE); this.state = 2096; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_REPEATABLE); this.state = 2097; - localContext._seed = this.expression(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2098; + localContext._seed = this.expression(); + this.state = 2099; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9516,12 +9560,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 288, ImpalaSqlParser.RULE_sampleType); + this.enterRule(localContext, 292, ImpalaSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2104; + this.state = 2105; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -9548,36 +9592,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 290, ImpalaSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 294, ImpalaSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2106; + this.state = 2107; this.relationPrimary(); - this.state = 2114; + this.state = 2115; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2108; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2107; + this.state = 2108; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2110; - this.identifier(); - this.state = 2112; + this.state = 2111; + localContext._alias = this.identifier(); + this.state = 2113; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2111; + this.state = 2112; this.columnAliases(); } break; @@ -9603,32 +9647,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 292, ImpalaSqlParser.RULE_columnAliases); + this.enterRule(localContext, 296, ImpalaSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2116; - this.match(ImpalaSqlParser.LPAREN); this.state = 2117; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2118; this.columnNamePath(); - this.state = 2122; + this.state = 2123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2118; - this.match(ImpalaSqlParser.COMMA); this.state = 2119; + this.match(ImpalaSqlParser.COMMA); + this.state = 2120; this.columnNamePath(); } } - this.state = 2124; + this.state = 2125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2125; + this.state = 2126; this.match(ImpalaSqlParser.RPAREN); } } @@ -9648,47 +9692,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 294, ImpalaSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 298, ImpalaSqlParser.RULE_relationPrimary); let _la: number; try { - this.state = 2134; + this.state = 2135; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2127; + this.state = 2128; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2129; + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 2128; + this.state = 2129; this.match(ImpalaSqlParser.KW_LATERAL); } } - this.state = 2131; + this.state = 2132; this.subQueryRelation(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2132; + this.state = 2133; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2133; + this.state = 2134; this.parenthesizedRelation(); } break; @@ -9710,15 +9754,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public subQueryRelation(): SubQueryRelationContext { let localContext = new SubQueryRelationContext(this.context, this.state); - this.enterRule(localContext, 296, ImpalaSqlParser.RULE_subQueryRelation); + this.enterRule(localContext, 300, ImpalaSqlParser.RULE_subQueryRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2136; - this.match(ImpalaSqlParser.LPAREN); this.state = 2137; - this.queryStatement(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2138; + this.queryStatement(); + this.state = 2139; this.match(ImpalaSqlParser.RPAREN); } } @@ -9738,43 +9782,43 @@ export class ImpalaSqlParser extends SQLParserBase { } public unnest(): UnnestContext { let localContext = new UnnestContext(this.context, this.state); - this.enterRule(localContext, 298, ImpalaSqlParser.RULE_unnest); + this.enterRule(localContext, 302, ImpalaSqlParser.RULE_unnest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2140; - this.match(ImpalaSqlParser.KW_UNNEST); this.state = 2141; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_UNNEST); this.state = 2142; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2143; this.expression(); - this.state = 2147; + this.state = 2148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2143; - this.match(ImpalaSqlParser.COMMA); this.state = 2144; + this.match(ImpalaSqlParser.COMMA); + this.state = 2145; this.expression(); } } - this.state = 2149; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2150; + this.state = 2151; this.match(ImpalaSqlParser.RPAREN); - this.state = 2153; + this.state = 2154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2151; - this.match(ImpalaSqlParser.KW_WITH); this.state = 2152; + this.match(ImpalaSqlParser.KW_WITH); + this.state = 2153; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -9797,15 +9841,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public parenthesizedRelation(): ParenthesizedRelationContext { let localContext = new ParenthesizedRelationContext(this.context, this.state); - this.enterRule(localContext, 300, ImpalaSqlParser.RULE_parenthesizedRelation); + this.enterRule(localContext, 304, ImpalaSqlParser.RULE_parenthesizedRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2155; - this.match(ImpalaSqlParser.LPAREN); this.state = 2156; - this.relation(0); + this.match(ImpalaSqlParser.LPAREN); this.state = 2157; + this.relation(0); + this.state = 2158; this.match(ImpalaSqlParser.RPAREN); } } @@ -9825,22 +9869,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnItem(): ColumnItemContext { let localContext = new ColumnItemContext(this.context, this.state); - this.enterRule(localContext, 302, ImpalaSqlParser.RULE_columnItem); + this.enterRule(localContext, 306, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2161; + this.state = 2162; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2159; + this.state = 2160; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2160; + this.state = 2161; this.expression(); } break; @@ -9862,11 +9906,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 304, ImpalaSqlParser.RULE_expression); + this.enterRule(localContext, 308, ImpalaSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2163; + this.state = 2164; this.booleanExpression(0); } } @@ -9896,13 +9940,13 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 306; - this.enterRecursionRule(localContext, 306, ImpalaSqlParser.RULE_booleanExpression, _p); + let _startState = 310; + this.enterRecursionRule(localContext, 310, ImpalaSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2172; + this.state = 2173; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -9978,14 +10022,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2166; + this.state = 2167; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2168; + this.state = 2169; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2167; + this.state = 2168; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -9997,9 +10041,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2170; - this.match(ImpalaSqlParser.KW_NOT); this.state = 2171; + this.match(ImpalaSqlParser.KW_NOT); + this.state = 2172; this.booleanExpression(3); } break; @@ -10007,9 +10051,9 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2182; + this.state = 2183; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 278, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10017,21 +10061,21 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2180; + this.state = 2181; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2174; + this.state = 2175; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2175; - (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); this.state = 2176; + (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); + this.state = 2177; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10040,22 +10084,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2177; + this.state = 2178; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2178; - (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); this.state = 2179; + (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); + this.state = 2180; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2184; + this.state = 2185; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 278, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } } } @@ -10075,19 +10119,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 308, ImpalaSqlParser.RULE_predicate); + this.enterRule(localContext, 312, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2243; + this.state = 2244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2185; - this.comparisonOperator(); this.state = 2186; + this.comparisonOperator(); + this.state = 2187; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10095,11 +10139,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2188; - this.comparisonOperator(); this.state = 2189; - this.comparisonQuantifier(); + this.comparisonOperator(); this.state = 2190; + this.comparisonQuantifier(); + this.state = 2191; this.subQueryRelation(); } break; @@ -10107,23 +10151,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2193; + this.state = 2194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2192; + this.state = 2193; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2195; - this.match(ImpalaSqlParser.KW_BETWEEN); this.state = 2196; - (localContext as BetweenContext)._lower = this.valueExpression(0); + this.match(ImpalaSqlParser.KW_BETWEEN); this.state = 2197; - this.match(ImpalaSqlParser.KW_AND); + (localContext as BetweenContext)._lower = this.valueExpression(0); this.state = 2198; + this.match(ImpalaSqlParser.KW_AND); + this.state = 2199; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10131,39 +10175,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2201; + this.state = 2202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2200; + this.state = 2201; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2203; - this.match(ImpalaSqlParser.KW_IN); this.state = 2204; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_IN); this.state = 2205; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2206; this.expression(); - this.state = 2210; + this.state = 2211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2206; - this.match(ImpalaSqlParser.COMMA); this.state = 2207; + this.match(ImpalaSqlParser.COMMA); + this.state = 2208; this.expression(); } } - this.state = 2212; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2213; + this.state = 2214; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10171,19 +10215,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2216; + this.state = 2217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2215; + this.state = 2216; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2218; - this.match(ImpalaSqlParser.KW_IN); this.state = 2219; + this.match(ImpalaSqlParser.KW_IN); + this.state = 2220; this.subQueryRelation(); } break; @@ -10191,17 +10235,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2221; + this.state = 2222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2220; + this.state = 2221; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2223; + this.state = 2224; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10210,16 +10254,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2224; + this.state = 2225; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2227; + this.state = 2228; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2225; - this.match(ImpalaSqlParser.KW_ESCAPE); this.state = 2226; + this.match(ImpalaSqlParser.KW_ESCAPE); + this.state = 2227; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10230,7 +10274,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2229; + this.state = 2230; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); @@ -10239,7 +10283,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2230; + this.state = 2231; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10247,19 +10291,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2231; + this.state = 2232; this.match(ImpalaSqlParser.KW_IS); - this.state = 2233; + this.state = 2234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2232; + this.state = 2233; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2235; + this.state = 2236; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -10274,23 +10318,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2236; + this.state = 2237; this.match(ImpalaSqlParser.KW_IS); - this.state = 2238; + this.state = 2239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2237; + this.state = 2238; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2240; - this.match(ImpalaSqlParser.KW_DISTINCT); this.state = 2241; - this.match(ImpalaSqlParser.KW_FROM); + this.match(ImpalaSqlParser.KW_DISTINCT); this.state = 2242; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 2243; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10322,23 +10366,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 310; - this.enterRecursionRule(localContext, 310, ImpalaSqlParser.RULE_valueExpression, _p); + let _startState = 314; + this.enterRecursionRule(localContext, 314, ImpalaSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2249; + this.state = 2250; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2246; + this.state = 2247; this.primaryExpression(0); } break; @@ -10347,7 +10391,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2247; + this.state = 2248; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10357,15 +10401,15 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2248; + this.state = 2249; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2262; + this.state = 2263; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10373,19 +10417,19 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2260; + this.state = 2261; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2251; + this.state = 2252; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2252; + this.state = 2253; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { @@ -10395,7 +10439,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2253; + this.state = 2254; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10404,11 +10448,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2254; + this.state = 2255; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2255; + this.state = 2256; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10418,7 +10462,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2256; + this.state = 2257; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10427,22 +10471,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2257; + this.state = 2258; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2258; - this.match(ImpalaSqlParser.CONCAT); this.state = 2259; + this.match(ImpalaSqlParser.CONCAT); + this.state = 2260; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2264; + this.state = 2265; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } } } @@ -10472,23 +10516,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 312; - this.enterRecursionRule(localContext, 312, ImpalaSqlParser.RULE_primaryExpression, _p); + let _startState = 316; + this.enterRecursionRule(localContext, 316, ImpalaSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2511; + this.state = 2512; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2266; + this.state = 2267; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10497,7 +10541,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2267; + this.state = 2268; this.interval(); } break; @@ -10506,9 +10550,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2268; - this.identifier(); this.state = 2269; + this.identifier(); + this.state = 2270; this.stringLiteral(); } break; @@ -10517,9 +10561,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2271; - this.match(ImpalaSqlParser.DOUBLE_PRECISION); this.state = 2272; + this.match(ImpalaSqlParser.DOUBLE_PRECISION); + this.state = 2273; this.stringLiteral(); } break; @@ -10528,7 +10572,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2273; + this.state = 2274; this.number_(); } break; @@ -10537,7 +10581,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2274; + this.state = 2275; this.booleanValue(); } break; @@ -10546,7 +10590,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2275; + this.state = 2276; this.stringLiteral(); } break; @@ -10555,7 +10599,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2276; + this.state = 2277; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10564,7 +10608,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2277; + this.state = 2278; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10573,17 +10617,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2278; - this.match(ImpalaSqlParser.KW_POSITION); this.state = 2279; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_POSITION); this.state = 2280; - this.valueExpression(0); + this.match(ImpalaSqlParser.LPAREN); this.state = 2281; - this.match(ImpalaSqlParser.KW_IN); - this.state = 2282; this.valueExpression(0); + this.state = 2282; + this.match(ImpalaSqlParser.KW_IN); this.state = 2283; + this.valueExpression(0); + this.state = 2284; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10592,41 +10636,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2285; - this.match(ImpalaSqlParser.LPAREN); this.state = 2286; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2287; this.expression(); - this.state = 2289; + this.state = 2290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2287; - this.match(ImpalaSqlParser.KW_AS); this.state = 2288; + this.match(ImpalaSqlParser.KW_AS); + this.state = 2289; this.type_(0); } } - this.state = 2299; + this.state = 2300; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2291; - this.match(ImpalaSqlParser.COMMA); this.state = 2292; + this.match(ImpalaSqlParser.COMMA); + this.state = 2293; this.expression(); - this.state = 2295; + this.state = 2296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2293; - this.match(ImpalaSqlParser.KW_AS); this.state = 2294; + this.match(ImpalaSqlParser.KW_AS); + this.state = 2295; this.type_(0); } } @@ -10634,11 +10678,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2301; + this.state = 2302; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } - this.state = 2302; + this.state = 2303; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10647,29 +10691,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2304; - this.match(ImpalaSqlParser.KW_ROW); this.state = 2305; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_ROW); this.state = 2306; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2307; this.expression(); - this.state = 2311; + this.state = 2312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2307; - this.match(ImpalaSqlParser.COMMA); this.state = 2308; + this.match(ImpalaSqlParser.COMMA); + this.state = 2309; this.expression(); } } - this.state = 2313; + this.state = 2314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2314; + this.state = 2315; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10678,30 +10722,30 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2316; - this.functionNamePath(); this.state = 2317; - this.match(ImpalaSqlParser.LPAREN); + this.functionNamePath(); this.state = 2318; - this.match(ImpalaSqlParser.ASTERISK); + this.match(ImpalaSqlParser.LPAREN); this.state = 2319; + this.match(ImpalaSqlParser.ASTERISK); + this.state = 2320; this.match(ImpalaSqlParser.RPAREN); - this.state = 2321; + this.state = 2322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2320; + this.state = 2321; this.filter(); } break; } - this.state = 2324; + this.state = 2325; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2323; + this.state = 2324; this.over(); } break; @@ -10713,94 +10757,94 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2326; - this.functionNamePath(); this.state = 2327; + this.functionNamePath(); + this.state = 2328; this.match(ImpalaSqlParser.LPAREN); - this.state = 2339; + this.state = 2340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2329; + this.state = 2330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2328; + this.state = 2329; this.setQuantifier(); } } - this.state = 2331; + this.state = 2332; this.expression(); - this.state = 2336; + this.state = 2337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2332; - this.match(ImpalaSqlParser.COMMA); this.state = 2333; + this.match(ImpalaSqlParser.COMMA); + this.state = 2334; this.expression(); } } - this.state = 2338; + this.state = 2339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2351; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2341; - this.match(ImpalaSqlParser.KW_ORDER); this.state = 2342; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_ORDER); this.state = 2343; + this.match(ImpalaSqlParser.KW_BY); + this.state = 2344; this.sortItem(); - this.state = 2348; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2344; - this.match(ImpalaSqlParser.COMMA); this.state = 2345; + this.match(ImpalaSqlParser.COMMA); + this.state = 2346; this.sortItem(); } } - this.state = 2350; + this.state = 2351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2353; + this.state = 2354; this.match(ImpalaSqlParser.RPAREN); - this.state = 2355; + this.state = 2356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2354; + this.state = 2355; this.filter(); } break; } - this.state = 2358; + this.state = 2359; 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.state = 2357; + this.state = 2358; this.over(); } break; @@ -10812,11 +10856,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2360; - this.identifier(); this.state = 2361; - this.match(ImpalaSqlParser.RIGHT_ARROW); + this.identifier(); this.state = 2362; + this.match(ImpalaSqlParser.RIGHT_ARROW); + this.state = 2363; this.expression(); } break; @@ -10825,39 +10869,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2364; + this.state = 2365; this.match(ImpalaSqlParser.LPAREN); - this.state = 2373; + this.state = 2374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2365; + this.state = 2366; this.identifier(); - this.state = 2370; + this.state = 2371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2366; - this.match(ImpalaSqlParser.COMMA); this.state = 2367; + this.match(ImpalaSqlParser.COMMA); + this.state = 2368; this.identifier(); } } - this.state = 2372; + this.state = 2373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2375; - this.match(ImpalaSqlParser.RPAREN); this.state = 2376; - this.match(ImpalaSqlParser.RIGHT_ARROW); + this.match(ImpalaSqlParser.RPAREN); this.state = 2377; + this.match(ImpalaSqlParser.RIGHT_ARROW); + this.state = 2378; this.expression(); } break; @@ -10866,11 +10910,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2378; - this.match(ImpalaSqlParser.LPAREN); this.state = 2379; - this.queryStatement(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2380; + this.queryStatement(); + this.state = 2381; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10879,13 +10923,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2382; - this.match(ImpalaSqlParser.KW_EXISTS); this.state = 2383; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_EXISTS); this.state = 2384; - this.queryStatement(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2385; + this.queryStatement(); + this.state = 2386; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10894,37 +10938,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2387; - this.match(ImpalaSqlParser.KW_CASE); this.state = 2388; + this.match(ImpalaSqlParser.KW_CASE); + this.state = 2389; this.valueExpression(0); - this.state = 2390; + this.state = 2391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2389; + this.state = 2390; this.whenClause(); } } - this.state = 2392; + this.state = 2393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2396; + this.state = 2397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2394; - this.match(ImpalaSqlParser.KW_ELSE); this.state = 2395; + this.match(ImpalaSqlParser.KW_ELSE); + this.state = 2396; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2398; + this.state = 2399; this.match(ImpalaSqlParser.KW_END); } break; @@ -10933,35 +10977,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2400; + this.state = 2401; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2402; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2401; + this.state = 2402; this.whenClause(); } } - this.state = 2404; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2408; + this.state = 2409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2406; - this.match(ImpalaSqlParser.KW_ELSE); this.state = 2407; + this.match(ImpalaSqlParser.KW_ELSE); + this.state = 2408; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2410; + this.state = 2411; this.match(ImpalaSqlParser.KW_END); } break; @@ -10970,17 +11014,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2412; - this.match(ImpalaSqlParser.KW_CAST); this.state = 2413; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_CAST); this.state = 2414; - this.expression(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2415; - this.match(ImpalaSqlParser.KW_AS); + this.expression(); this.state = 2416; - this.type_(0); + this.match(ImpalaSqlParser.KW_AS); this.state = 2417; + this.type_(0); + this.state = 2418; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10989,17 +11033,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2419; - this.match(ImpalaSqlParser.KW_TRY_CAST); this.state = 2420; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_TRY_CAST); this.state = 2421; - this.expression(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2422; - this.match(ImpalaSqlParser.KW_AS); + this.expression(); this.state = 2423; - this.type_(0); + this.match(ImpalaSqlParser.KW_AS); this.state = 2424; + this.type_(0); + this.state = 2425; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11008,37 +11052,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2426; - this.match(ImpalaSqlParser.KW_ARRAY); this.state = 2427; + this.match(ImpalaSqlParser.KW_ARRAY); + this.state = 2428; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2436; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2428; + this.state = 2429; this.expression(); - this.state = 2433; + this.state = 2434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2429; - this.match(ImpalaSqlParser.COMMA); this.state = 2430; + this.match(ImpalaSqlParser.COMMA); + this.state = 2431; this.expression(); } } - this.state = 2435; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2438; + this.state = 2439; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11047,7 +11091,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2439; + this.state = 2440; this.identifier(); } break; @@ -11056,7 +11100,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2440; + this.state = 2441; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11065,18 +11109,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2441; + this.state = 2442; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2445; + this.state = 2446; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2442; - this.match(ImpalaSqlParser.LPAREN); this.state = 2443; - (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.match(ImpalaSqlParser.LPAREN); this.state = 2444; + (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.state = 2445; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11088,18 +11132,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2447; + this.state = 2448; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2451; + this.state = 2452; 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 = 2448; - this.match(ImpalaSqlParser.LPAREN); this.state = 2449; - (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.match(ImpalaSqlParser.LPAREN); this.state = 2450; + (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.state = 2451; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11111,18 +11155,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2453; + this.state = 2454; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2457; + this.state = 2458; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2454; - this.match(ImpalaSqlParser.LPAREN); this.state = 2455; - (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.match(ImpalaSqlParser.LPAREN); this.state = 2456; + (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.state = 2457; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11134,18 +11178,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2459; + this.state = 2460; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2463; + this.state = 2464; 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 = 2460; - this.match(ImpalaSqlParser.LPAREN); this.state = 2461; - (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.match(ImpalaSqlParser.LPAREN); this.state = 2462; + (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); + this.state = 2463; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11157,7 +11201,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2465; + this.state = 2466; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11166,7 +11210,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2466; + this.state = 2467; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11175,29 +11219,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2467; - this.match(ImpalaSqlParser.KW_SUBSTRING); this.state = 2468; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_SUBSTRING); this.state = 2469; - this.valueExpression(0); + this.match(ImpalaSqlParser.LPAREN); this.state = 2470; - this.match(ImpalaSqlParser.KW_FROM); + this.valueExpression(0); this.state = 2471; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 2472; this.valueExpression(0); - this.state = 2474; + this.state = 2475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2472; - this.match(ImpalaSqlParser.KW_FOR); this.state = 2473; + this.match(ImpalaSqlParser.KW_FOR); + this.state = 2474; this.valueExpression(0); } } - this.state = 2476; + this.state = 2477; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11206,25 +11250,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2478; - this.match(ImpalaSqlParser.KW_NORMALIZE); this.state = 2479; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_NORMALIZE); this.state = 2480; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2481; this.valueExpression(0); - this.state = 2483; + this.state = 2484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 2481; - this.match(ImpalaSqlParser.COMMA); this.state = 2482; + this.match(ImpalaSqlParser.COMMA); + this.state = 2483; this.normalForm(); } } - this.state = 2485; + this.state = 2486; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11233,17 +11277,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2487; - this.match(ImpalaSqlParser.KW_EXTRACT); this.state = 2488; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_EXTRACT); this.state = 2489; - this.identifier(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2490; - this.match(ImpalaSqlParser.KW_FROM); + this.identifier(); this.state = 2491; - this.valueExpression(0); + this.match(ImpalaSqlParser.KW_FROM); this.state = 2492; + this.valueExpression(0); + this.state = 2493; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11252,11 +11296,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2494; - this.match(ImpalaSqlParser.LPAREN); this.state = 2495; - this.expression(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2496; + this.expression(); + this.state = 2497; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11265,45 +11309,45 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2498; - this.match(ImpalaSqlParser.KW_GROUPING); this.state = 2499; + this.match(ImpalaSqlParser.KW_GROUPING); + this.state = 2500; this.match(ImpalaSqlParser.LPAREN); - this.state = 2508; + this.state = 2509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2500; + this.state = 2501; this.qualifiedName(); - this.state = 2505; + this.state = 2506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2501; - this.match(ImpalaSqlParser.COMMA); this.state = 2502; + this.match(ImpalaSqlParser.COMMA); + this.state = 2503; this.qualifiedName(); } } - this.state = 2507; + this.state = 2508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2510; + this.state = 2511; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2523; + this.state = 2524; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11311,23 +11355,23 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2521; + this.state = 2522; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2513; + this.state = 2514; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2514; - this.match(ImpalaSqlParser.LSQUARE); this.state = 2515; - (localContext as SubscriptContext)._index = this.valueExpression(0); + this.match(ImpalaSqlParser.LSQUARE); this.state = 2516; + (localContext as SubscriptContext)._index = this.valueExpression(0); + this.state = 2517; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11336,22 +11380,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2518; + this.state = 2519; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2519; - this.match(ImpalaSqlParser.DOT); this.state = 2520; + this.match(ImpalaSqlParser.DOT); + this.state = 2521; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2525; + this.state = 2526; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } } } @@ -11371,16 +11415,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 314, ImpalaSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 318, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2532; + this.state = 2533; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2526; + this.state = 2527; this.match(ImpalaSqlParser.STRING); } break; @@ -11388,16 +11432,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2527; + this.state = 2528; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2530; + this.state = 2531; 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 = 2528; - this.match(ImpalaSqlParser.KW_UESCAPE); this.state = 2529; + this.match(ImpalaSqlParser.KW_UESCAPE); + this.state = 2530; this.match(ImpalaSqlParser.STRING); } break; @@ -11424,12 +11468,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 316, ImpalaSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 320, ImpalaSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2534; + this.state = 2535; _la = this.tokenStream.LA(1); if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11456,12 +11500,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 318, ImpalaSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 322, ImpalaSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2536; + this.state = 2537; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); @@ -11488,12 +11532,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 320, ImpalaSqlParser.RULE_booleanValue); + this.enterRule(localContext, 324, ImpalaSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2538; + this.state = 2539; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); @@ -11520,56 +11564,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 322, ImpalaSqlParser.RULE_interval); + this.enterRule(localContext, 326, ImpalaSqlParser.RULE_interval); try { - this.state = 2554; + this.state = 2555; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2540; - this.match(ImpalaSqlParser.INTEGER_VALUE); this.state = 2541; + this.match(ImpalaSqlParser.INTEGER_VALUE); + this.state = 2542; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2542; - this.match(ImpalaSqlParser.LPAREN); this.state = 2543; - this.match(ImpalaSqlParser.INTEGER_VALUE); + this.match(ImpalaSqlParser.LPAREN); this.state = 2544; - this.match(ImpalaSqlParser.RPAREN); + this.match(ImpalaSqlParser.INTEGER_VALUE); this.state = 2545; + this.match(ImpalaSqlParser.RPAREN); + this.state = 2546; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2546; - this.match(ImpalaSqlParser.KW_INTERVAL); this.state = 2547; - this.match(ImpalaSqlParser.INTEGER_VALUE); + this.match(ImpalaSqlParser.KW_INTERVAL); this.state = 2548; + this.match(ImpalaSqlParser.INTEGER_VALUE); + this.state = 2549; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2549; - this.match(ImpalaSqlParser.KW_INTERVAL); this.state = 2550; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_INTERVAL); this.state = 2551; - this.match(ImpalaSqlParser.INTEGER_VALUE); + this.match(ImpalaSqlParser.LPAREN); this.state = 2552; - this.match(ImpalaSqlParser.RPAREN); + this.match(ImpalaSqlParser.INTEGER_VALUE); this.state = 2553; + this.match(ImpalaSqlParser.RPAREN); + this.state = 2554; this.intervalField(); } break; @@ -11591,12 +11635,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 324, ImpalaSqlParser.RULE_intervalField); + this.enterRule(localContext, 328, ImpalaSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2556; + this.state = 2557; _la = this.tokenStream.LA(1); if(!(_la === 48 || _la === 49 || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2147483651) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 7) !== 0) || _la === 172 || _la === 173 || _la === 217 || _la === 218)) { this.errorHandler.recoverInline(this); @@ -11623,12 +11667,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 326, ImpalaSqlParser.RULE_normalForm); + this.enterRule(localContext, 330, ImpalaSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2558; + this.state = 2559; _la = this.tokenStream.LA(1); if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11665,120 +11709,120 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 328; - this.enterRecursionRule(localContext, 328, ImpalaSqlParser.RULE_type, _p); + let _startState = 332; + this.enterRecursionRule(localContext, 332, ImpalaSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2605; + this.state = 2606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2561; - this.match(ImpalaSqlParser.KW_ARRAY); this.state = 2562; - this.match(ImpalaSqlParser.LT); + this.match(ImpalaSqlParser.KW_ARRAY); this.state = 2563; - this.type_(0); + this.match(ImpalaSqlParser.LT); this.state = 2564; + this.type_(0); + this.state = 2565; this.match(ImpalaSqlParser.GT); } break; case 2: { - this.state = 2566; - this.match(ImpalaSqlParser.KW_MAP); this.state = 2567; - this.match(ImpalaSqlParser.LT); + this.match(ImpalaSqlParser.KW_MAP); this.state = 2568; - this.type_(0); + this.match(ImpalaSqlParser.LT); this.state = 2569; - this.match(ImpalaSqlParser.COMMA); - this.state = 2570; this.type_(0); + this.state = 2570; + this.match(ImpalaSqlParser.COMMA); this.state = 2571; + this.type_(0); + this.state = 2572; this.match(ImpalaSqlParser.GT); } break; case 3: { - this.state = 2573; - this.match(ImpalaSqlParser.KW_STRUCT); this.state = 2574; - this.match(ImpalaSqlParser.LT); + this.match(ImpalaSqlParser.KW_STRUCT); this.state = 2575; - this.identifier(); + this.match(ImpalaSqlParser.LT); this.state = 2576; + this.identifier(); + this.state = 2577; this.type_(0); - this.state = 2583; + this.state = 2584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2577; - this.match(ImpalaSqlParser.COMMA); this.state = 2578; - this.identifier(); + this.match(ImpalaSqlParser.COMMA); this.state = 2579; + this.identifier(); + this.state = 2580; this.type_(0); } } - this.state = 2585; + this.state = 2586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2586; + this.state = 2587; this.match(ImpalaSqlParser.GT); } break; case 4: { - this.state = 2590; + this.state = 2591; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2588; + this.state = 2589; this.baseType(); } break; case 2: { - this.state = 2589; + this.state = 2590; this.dataType(); } break; } - this.state = 2603; + this.state = 2604; 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 = 2592; - this.match(ImpalaSqlParser.LPAREN); this.state = 2593; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2594; this.typeParameter(); - this.state = 2598; + this.state = 2599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2594; - this.match(ImpalaSqlParser.COMMA); this.state = 2595; + this.match(ImpalaSqlParser.COMMA); + this.state = 2596; this.typeParameter(); } } - this.state = 2600; + this.state = 2601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2601; + this.state = 2602; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11787,9 +11831,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2611; + this.state = 2612; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11800,18 +11844,18 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2607; + this.state = 2608; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2608; + this.state = 2609; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2613; + this.state = 2614; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); } } } @@ -11831,12 +11875,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 330, ImpalaSqlParser.RULE_dataType); + this.enterRule(localContext, 334, ImpalaSqlParser.RULE_dataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2614; + this.state = 2615; _la = this.tokenStream.LA(1); if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { this.errorHandler.recoverInline(this); @@ -11863,15 +11907,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 332, ImpalaSqlParser.RULE_typeParameter); + this.enterRule(localContext, 336, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2618; + this.state = 2619; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2616; + this.state = 2617; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -11936,7 +11980,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2617; + this.state = 2618; this.type_(0); } break; @@ -11960,29 +12004,29 @@ export class ImpalaSqlParser extends SQLParserBase { } public baseType(): BaseTypeContext { let localContext = new BaseTypeContext(this.context, this.state); - this.enterRule(localContext, 334, ImpalaSqlParser.RULE_baseType); + this.enterRule(localContext, 338, ImpalaSqlParser.RULE_baseType); try { - this.state = 2624; + this.state = 2625; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2620; + this.state = 2621; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2621; + this.state = 2622; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2622; + this.state = 2623; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -12026,7 +12070,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2623; + this.state = 2624; this.identifier(); } break; @@ -12050,17 +12094,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 336, ImpalaSqlParser.RULE_whenClause); + this.enterRule(localContext, 340, ImpalaSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2626; - this.match(ImpalaSqlParser.KW_WHEN); this.state = 2627; - localContext._condition = this.expression(); + this.match(ImpalaSqlParser.KW_WHEN); this.state = 2628; - this.match(ImpalaSqlParser.KW_THEN); + localContext._condition = this.expression(); this.state = 2629; + this.match(ImpalaSqlParser.KW_THEN); + this.state = 2630; localContext._result = this.expression(); } } @@ -12080,19 +12124,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 338, ImpalaSqlParser.RULE_filter); + this.enterRule(localContext, 342, ImpalaSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 2631; - this.match(ImpalaSqlParser.KW_FILTER); this.state = 2632; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_FILTER); this.state = 2633; - this.match(ImpalaSqlParser.KW_WHERE); + this.match(ImpalaSqlParser.LPAREN); this.state = 2634; - this.booleanExpression(0); + this.match(ImpalaSqlParser.KW_WHERE); this.state = 2635; + this.booleanExpression(0); + this.state = 2636; this.match(ImpalaSqlParser.RPAREN); } } @@ -12112,88 +12156,88 @@ export class ImpalaSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 340, ImpalaSqlParser.RULE_over); + this.enterRule(localContext, 344, ImpalaSqlParser.RULE_over); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2637; - this.match(ImpalaSqlParser.KW_OVER); this.state = 2638; + this.match(ImpalaSqlParser.KW_OVER); + this.state = 2639; this.match(ImpalaSqlParser.LPAREN); - this.state = 2649; + this.state = 2650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 2639; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 2640; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_PARTITION); this.state = 2641; + this.match(ImpalaSqlParser.KW_BY); + this.state = 2642; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2646; + this.state = 2647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2642; - this.match(ImpalaSqlParser.COMMA); this.state = 2643; + this.match(ImpalaSqlParser.COMMA); + this.state = 2644; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2648; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2661; + this.state = 2662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2651; - this.match(ImpalaSqlParser.KW_ORDER); this.state = 2652; - this.match(ImpalaSqlParser.KW_BY); + this.match(ImpalaSqlParser.KW_ORDER); this.state = 2653; + this.match(ImpalaSqlParser.KW_BY); + this.state = 2654; this.sortItem(); - this.state = 2658; + this.state = 2659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2654; - this.match(ImpalaSqlParser.COMMA); this.state = 2655; + this.match(ImpalaSqlParser.COMMA); + this.state = 2656; this.sortItem(); } } - this.state = 2660; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2664; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154 || _la === 169) { { - this.state = 2663; + this.state = 2664; this.windowFrame(); } } - this.state = 2666; + this.state = 2667; this.match(ImpalaSqlParser.RPAREN); } } @@ -12213,56 +12257,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 342, ImpalaSqlParser.RULE_windowFrame); + this.enterRule(localContext, 346, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2684; + this.state = 2685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2668; - localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); this.state = 2669; + localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); + this.state = 2670; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2670; - localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); this.state = 2671; + localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); + this.state = 2672; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2672; - localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); this.state = 2673; - this.match(ImpalaSqlParser.KW_BETWEEN); + localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); this.state = 2674; - localContext._start_ = this.frameBound(); + this.match(ImpalaSqlParser.KW_BETWEEN); this.state = 2675; - this.match(ImpalaSqlParser.KW_AND); + localContext._start_ = this.frameBound(); this.state = 2676; + this.match(ImpalaSqlParser.KW_AND); + this.state = 2677; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2678; - localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); this.state = 2679; - this.match(ImpalaSqlParser.KW_BETWEEN); + localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); this.state = 2680; - localContext._start_ = this.frameBound(); + this.match(ImpalaSqlParser.KW_BETWEEN); this.state = 2681; - this.match(ImpalaSqlParser.KW_AND); + localContext._start_ = this.frameBound(); this.state = 2682; + this.match(ImpalaSqlParser.KW_AND); + this.state = 2683; localContext._end = this.frameBound(); } break; @@ -12284,19 +12328,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 344, ImpalaSqlParser.RULE_frameBound); + this.enterRule(localContext, 348, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2695; + this.state = 2696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2686; - this.match(ImpalaSqlParser.KW_UNBOUNDED); this.state = 2687; + this.match(ImpalaSqlParser.KW_UNBOUNDED); + this.state = 2688; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12304,9 +12348,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2688; - this.match(ImpalaSqlParser.KW_UNBOUNDED); this.state = 2689; + this.match(ImpalaSqlParser.KW_UNBOUNDED); + this.state = 2690; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12314,9 +12358,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2690; - this.match(ImpalaSqlParser.KW_CURRENT); this.state = 2691; + this.match(ImpalaSqlParser.KW_CURRENT); + this.state = 2692; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12324,9 +12368,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2692; - this.expression(); this.state = 2693; + this.expression(); + this.state = 2694; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 149)) { @@ -12356,20 +12400,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 346, ImpalaSqlParser.RULE_pathElement); + this.enterRule(localContext, 350, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2702; + this.state = 2703; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2697; - this.identifier(); this.state = 2698; - this.match(ImpalaSqlParser.DOT); + this.identifier(); this.state = 2699; + this.match(ImpalaSqlParser.DOT); + this.state = 2700; this.identifier(); } break; @@ -12377,7 +12421,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2701; + this.state = 2702; this.identifier(); } break; @@ -12399,26 +12443,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 348, ImpalaSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 352, ImpalaSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2704; + this.state = 2705; this.pathElement(); - this.state = 2709; + this.state = 2710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2705; - this.match(ImpalaSqlParser.COMMA); this.state = 2706; + this.match(ImpalaSqlParser.COMMA); + this.state = 2707; this.pathElement(); } } - this.state = 2711; + this.state = 2712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12440,69 +12484,69 @@ export class ImpalaSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 350, ImpalaSqlParser.RULE_privilege); + this.enterRule(localContext, 354, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2725; + this.state = 2726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2712; + this.state = 2713; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2713; + this.state = 2714; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2714; + this.state = 2715; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2715; + this.state = 2716; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2716; + this.state = 2717; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2717; + this.state = 2718; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2718; + this.state = 2719; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2723; + this.state = 2724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2719; - this.match(ImpalaSqlParser.LPAREN); this.state = 2720; - localContext._columnName = this.identifier(); + this.match(ImpalaSqlParser.LPAREN); this.state = 2721; + localContext._columnName = this.identifier(); + this.state = 2722; this.match(ImpalaSqlParser.RPAREN); } } @@ -12529,12 +12573,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public objectType(): ObjectTypeContext { let localContext = new ObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 352, ImpalaSqlParser.RULE_objectType); + this.enterRule(localContext, 356, ImpalaSqlParser.RULE_objectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2727; + this.state = 2728; _la = this.tokenStream.LA(1); if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); @@ -12561,30 +12605,30 @@ export class ImpalaSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 354, ImpalaSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 358, ImpalaSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2729; + this.state = 2730; this.identifier(); - this.state = 2734; + this.state = 2735; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2730; - this.match(ImpalaSqlParser.DOT); this.state = 2731; + this.match(ImpalaSqlParser.DOT); + this.state = 2732; this.identifier(); } } } - this.state = 2736; + this.state = 2737; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); } } } @@ -12604,18 +12648,18 @@ export class ImpalaSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 356, ImpalaSqlParser.RULE_principal); + this.enterRule(localContext, 360, ImpalaSqlParser.RULE_principal); try { - this.state = 2743; + this.state = 2744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2737; - this.match(ImpalaSqlParser.KW_ROLE); this.state = 2738; + this.match(ImpalaSqlParser.KW_ROLE); + this.state = 2739; this.identifier(); } break; @@ -12623,9 +12667,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2739; - this.match(ImpalaSqlParser.KW_USER); this.state = 2740; + this.match(ImpalaSqlParser.KW_USER); + this.state = 2741; this.identifier(); } break; @@ -12633,9 +12677,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2741; - this.match(ImpalaSqlParser.KW_GROUP); this.state = 2742; + this.match(ImpalaSqlParser.KW_GROUP); + this.state = 2743; this.identifier(); } break; @@ -12659,16 +12703,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 358, ImpalaSqlParser.RULE_identifier); + this.enterRule(localContext, 362, ImpalaSqlParser.RULE_identifier); try { - this.state = 2750; + this.state = 2751; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2745; + this.state = 2746; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -12676,7 +12720,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2746; + this.state = 2747; this.match(ImpalaSqlParser.STRING); } break; @@ -12717,7 +12761,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2747; + this.state = 2748; this.nonReserved(); } break; @@ -12725,7 +12769,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2748; + this.state = 2749; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -12733,7 +12777,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2749; + this.state = 2750; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -12757,27 +12801,27 @@ export class ImpalaSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 360, ImpalaSqlParser.RULE_number); + this.enterRule(localContext, 364, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2764; + this.state = 2765; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2753; + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2752; + this.state = 2753; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2755; + this.state = 2756; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -12785,17 +12829,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2757; + this.state = 2758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2756; + this.state = 2757; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2759; + this.state = 2760; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -12803,17 +12847,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2761; + this.state = 2762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2760; + this.state = 2761; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2763; + this.state = 2764; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12835,12 +12879,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 362, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 366, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2766; + this.state = 2767; _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 1281) !== 0) || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 67125377) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); @@ -12867,12 +12911,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 364, ImpalaSqlParser.RULE_nonReserved); + this.enterRule(localContext, 368, ImpalaSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2768; + this.state = 2769; _la = this.tokenStream.LA(1); if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0))) { this.errorHandler.recoverInline(this); @@ -12902,17 +12946,17 @@ export class ImpalaSqlParser extends SQLParserBase { switch (ruleIndex) { case 96: return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); - case 130: + case 132: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 140: + case 142: return this.relation_sempred(localContext as RelationContext, predIndex); - case 153: - return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); case 155: + return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); + case 157: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 156: + case 158: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 164: + case 166: return this.type_sempred(localContext as TypeContext, predIndex); } return true; @@ -12978,7 +13022,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,289,2771,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,289,2772,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, @@ -13008,1162 +13052,1163 @@ export class ImpalaSqlParser extends SQLParserBase { 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,1,0,5,0,368,8,0,10,0,12,0,371,9,0,1,0,1, - 0,1,1,1,1,3,1,377,8,1,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,401,8,2,1,3,1, - 3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,414,8,4,1,5,1,5,3,5,418, - 8,5,1,5,1,5,3,5,422,8,5,1,5,1,5,1,5,1,5,1,5,5,5,429,8,5,10,5,12, - 5,432,9,5,1,5,1,5,3,5,436,8,5,1,5,1,5,3,5,440,8,5,1,5,1,5,1,5,1, - 5,3,5,446,8,5,3,5,448,8,5,1,5,1,5,1,5,3,5,453,8,5,1,6,1,6,3,6,457, - 8,6,1,6,1,6,3,6,461,8,6,1,6,1,6,1,6,1,6,1,6,3,6,468,8,6,1,6,1,6, - 1,6,3,6,473,8,6,1,6,1,6,1,7,1,7,3,7,479,8,7,1,7,1,7,3,7,483,8,7, - 1,7,1,7,1,7,1,7,1,7,5,7,490,8,7,10,7,12,7,493,9,7,1,7,1,7,1,7,1, - 7,3,7,499,8,7,1,7,1,7,3,7,503,8,7,1,7,1,7,1,7,3,7,508,8,7,3,7,510, - 8,7,1,7,1,7,1,7,3,7,515,8,7,1,7,1,7,3,7,519,8,7,1,7,1,7,1,7,1,7, - 1,7,3,7,526,8,7,1,7,1,7,3,7,530,8,7,1,8,1,8,1,8,3,8,535,8,8,1,8, - 1,8,3,8,539,8,8,1,8,1,8,3,8,543,8,8,1,8,1,8,3,8,547,8,8,1,8,1,8, - 1,8,1,9,1,9,1,9,3,9,555,8,9,1,9,1,9,1,9,3,9,560,8,9,1,9,1,9,3,9, - 564,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,572,8,11,1,11,1,11,3, - 11,576,8,11,1,11,1,11,1,11,1,11,1,11,5,11,583,8,11,10,11,12,11,586, - 9,11,3,11,588,8,11,1,11,3,11,591,8,11,1,11,1,11,1,11,1,11,3,11,597, - 8,11,1,11,1,11,1,11,1,11,1,11,3,11,604,8,11,1,11,1,11,1,11,1,11, - 1,11,1,11,1,11,1,11,1,11,3,11,615,8,11,1,11,1,11,1,11,3,11,620,8, - 11,1,11,1,11,1,11,3,11,625,8,11,1,11,1,11,1,11,3,11,630,8,11,1,12, - 1,12,1,12,3,12,635,8,12,1,12,1,12,1,12,1,12,1,12,5,12,642,8,12,10, - 12,12,12,645,9,12,3,12,647,8,12,1,12,3,12,650,8,12,1,12,1,12,3,12, - 654,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13, + 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,1,0,5,0,372,8,0, + 10,0,12,0,375,9,0,1,0,1,0,1,1,1,1,3,1,381,8,1,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,405,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3, + 4,418,8,4,1,5,1,5,3,5,422,8,5,1,5,1,5,3,5,426,8,5,1,5,1,5,1,5,1, + 5,1,5,5,5,433,8,5,10,5,12,5,436,9,5,1,5,1,5,3,5,440,8,5,1,5,1,5, + 3,5,444,8,5,1,5,1,5,1,5,1,5,3,5,450,8,5,3,5,452,8,5,1,5,1,5,1,5, + 3,5,457,8,5,1,6,1,6,3,6,461,8,6,1,6,1,6,3,6,465,8,6,1,6,1,6,1,6, + 1,6,1,6,3,6,472,8,6,1,6,1,6,1,6,3,6,477,8,6,1,6,1,6,1,7,1,7,3,7, + 483,8,7,1,7,1,7,3,7,487,8,7,1,7,1,7,1,7,1,7,1,7,5,7,494,8,7,10,7, + 12,7,497,9,7,1,7,1,7,1,7,1,7,3,7,503,8,7,1,7,1,7,3,7,507,8,7,1,7, + 1,7,1,7,3,7,512,8,7,3,7,514,8,7,1,7,1,7,1,7,3,7,519,8,7,1,7,3,7, + 522,8,7,1,7,1,7,1,7,1,7,1,7,3,7,529,8,7,1,7,1,7,3,7,533,8,7,1,8, + 1,8,1,8,3,8,538,8,8,1,8,1,8,3,8,542,8,8,1,8,3,8,545,8,8,1,8,1,8, + 3,8,549,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,557,8,9,1,9,1,9,3,9,561, + 8,9,1,9,1,9,3,9,565,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,573,8, + 11,1,11,1,11,3,11,577,8,11,1,11,1,11,1,11,1,11,1,11,5,11,584,8,11, + 10,11,12,11,587,9,11,3,11,589,8,11,1,11,3,11,592,8,11,1,11,1,11, + 1,11,1,11,3,11,598,8,11,1,11,1,11,1,11,1,11,1,11,3,11,605,8,11,1, + 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,616,8,11,1,11,1, + 11,1,11,3,11,621,8,11,1,11,1,11,1,11,3,11,626,8,11,1,11,1,11,1,11, + 3,11,631,8,11,1,12,1,12,1,12,3,12,636,8,12,1,12,1,12,1,12,1,12,1, + 12,5,12,643,8,12,10,12,12,12,646,9,12,3,12,648,8,12,1,12,3,12,651, + 8,12,1,12,1,12,3,12,655,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13, 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 3,13,680,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15, - 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,3,15,706,8,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,3,16,715,8, - 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,3,16,725,8,16,1,16,3, - 16,728,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1, - 18,1,18,3,18,742,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1, - 19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,760,8,20,3,20,762,8,20, - 1,20,1,20,1,20,1,20,1,20,5,20,769,8,20,10,20,12,20,772,9,20,1,20, - 1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,782,8,21,1,21,1,21,1,22, - 1,22,1,22,1,22,1,22,3,22,791,8,22,1,22,1,22,1,22,1,22,1,22,3,22, - 798,8,22,1,22,1,22,3,22,802,8,22,1,23,1,23,1,23,1,23,1,23,3,23,809, - 8,23,1,23,1,23,1,23,1,23,3,23,815,8,23,1,23,3,23,818,8,23,1,23,1, - 23,1,23,3,23,823,8,23,1,24,1,24,1,24,1,24,1,24,3,24,830,8,24,1,24, - 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,844, - 8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,3,26, - 857,8,26,1,26,1,26,1,26,3,26,862,8,26,1,26,1,26,1,26,3,26,867,8, - 26,1,27,1,27,1,27,1,27,3,27,873,8,27,1,27,1,27,1,27,1,28,1,28,1, - 28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1, - 30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1, - 31,1,32,1,32,3,32,909,8,32,1,32,3,32,912,8,32,1,32,1,32,1,33,1,33, - 3,33,918,8,33,1,33,3,33,921,8,33,1,33,1,33,1,34,1,34,3,34,927,8, - 34,1,35,1,35,1,35,1,35,3,35,933,8,35,1,35,1,35,1,35,1,35,1,35,1, - 35,1,35,1,35,1,35,1,35,3,35,945,8,35,3,35,947,8,35,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,1,36,3,36,958,8,36,1,37,1,37,1,37,1,37, - 1,37,1,37,3,37,966,8,37,1,38,1,38,1,38,3,38,971,8,38,1,38,1,38,3, - 38,975,8,38,1,39,1,39,1,39,3,39,980,8,39,1,39,1,39,1,40,1,40,1,40, - 3,40,987,8,40,1,40,1,40,3,40,991,8,40,1,41,1,41,3,41,995,8,41,1, - 41,1,41,1,41,1,41,3,41,1001,8,41,1,42,1,42,3,42,1005,8,42,1,42,1, - 42,3,42,1009,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1016,8,42,10,42, - 12,42,1019,9,42,3,42,1021,8,42,1,42,3,42,1024,8,42,1,43,1,43,1,43, - 1,43,1,44,1,44,3,44,1032,8,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45, - 1,46,1,46,1,46,1,46,1,46,3,46,1046,8,46,1,46,1,46,1,46,1,47,1,47, - 3,47,1053,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49, - 1,49,3,49,1066,8,49,1,49,1,49,1,49,1,49,3,49,1072,8,49,1,49,1,49, - 1,49,3,49,1077,8,49,1,49,3,49,1080,8,49,1,50,3,50,1083,8,50,1,50, - 1,50,1,50,3,50,1088,8,50,1,50,1,50,3,50,1092,8,50,1,50,1,50,1,50, - 1,50,1,50,5,50,1099,8,50,10,50,12,50,1102,9,50,1,50,1,50,3,50,1106, - 8,50,1,50,1,50,1,51,1,51,3,51,1112,8,51,1,52,1,52,3,52,1116,8,52, - 1,52,1,52,1,52,3,52,1121,8,52,1,53,1,53,1,53,3,53,1126,8,53,1,53, - 3,53,1129,8,53,1,53,1,53,1,53,1,53,5,53,1135,8,53,10,53,12,53,1138, - 9,53,3,53,1140,8,53,1,53,1,53,3,53,1144,8,53,1,54,1,54,1,54,1,54, - 1,54,1,54,1,54,1,54,5,54,1154,8,54,10,54,12,54,1157,9,54,3,54,1159, - 8,54,1,54,1,54,3,54,1163,8,54,1,55,1,55,1,55,3,55,1168,8,55,1,55, - 1,55,3,55,1172,8,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,1,56,1,56,1,56,3,56,1188,8,56,1,57,1,57,1,57,3,57,1193, - 8,57,1,57,1,57,1,57,5,57,1198,8,57,10,57,12,57,1201,9,57,3,57,1203, - 8,57,1,58,1,58,1,58,1,58,3,58,1209,8,58,1,58,3,58,1212,8,58,1,58, - 1,58,1,58,5,58,1217,8,58,10,58,12,58,1220,9,58,3,58,1222,8,58,1, - 59,1,59,3,59,1226,8,59,1,59,1,59,1,59,3,59,1231,8,59,1,59,3,59,1234, - 8,59,1,59,1,59,1,59,5,59,1239,8,59,10,59,12,59,1242,9,59,3,59,1244, - 8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62, - 1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,3,64,1268,8,64, - 1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65, - 1282,8,65,1,65,1,65,3,65,1286,8,65,1,66,1,66,3,66,1290,8,66,1,66, - 1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68, - 1,68,1,68,1,68,1,68,3,68,1310,8,68,3,68,1312,8,68,3,68,1314,8,68, - 1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69,1323,8,69,3,69,1325,8,69, - 1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,1334,8,70,3,70,1336,8,70, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1345,8,71,3,71,1347,8,71, - 1,72,1,72,1,72,3,72,1352,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 3,73,1361,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1370,8,74, - 1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,1379,8,75,1,76,1,76,1,76, - 1,77,1,77,1,77,1,77,1,77,1,77,3,77,1390,8,77,1,78,1,78,1,78,1,78, - 3,78,1396,8,78,1,78,1,78,1,78,3,78,1401,8,78,1,78,3,78,1404,8,78, - 1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,3,80,1417, - 8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1427,8,80,1,80, - 1,80,3,80,1431,8,80,1,81,1,81,1,81,3,81,1436,8,81,1,82,1,82,1,82, - 1,82,1,82,1,82,1,82,5,82,1445,8,82,10,82,12,82,1448,9,82,1,82,1, - 82,3,82,1452,8,82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,85,1,85,1, - 85,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1, - 91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1483,8,93,10,93,12,93,1486, - 9,93,1,94,1,94,1,94,5,94,1491,8,94,10,94,12,94,1494,9,94,1,95,1, - 95,3,95,1498,8,95,1,96,1,96,3,96,1502,8,96,1,97,1,97,3,97,1506,8, - 97,1,98,1,98,1,98,3,98,1511,8,98,1,98,1,98,3,98,1515,8,98,1,98,1, - 98,1,98,3,98,1520,8,98,1,98,1,98,1,98,3,98,1525,8,98,1,98,1,98,1, - 98,3,98,1530,8,98,1,98,1,98,3,98,1534,8,98,1,98,1,98,1,98,1,98,1, - 98,1,98,1,98,3,98,1543,8,98,1,98,3,98,1546,8,98,1,98,1,98,3,98,1550, - 8,98,1,99,1,99,1,99,5,99,1555,8,99,10,99,12,99,1558,9,99,1,100,1, - 100,1,100,1,100,1,101,1,101,1,101,1,101,3,101,1568,8,101,1,101,1, - 101,1,101,1,101,3,101,1574,8,101,5,101,1576,8,101,10,101,12,101, - 1579,9,101,1,101,1,101,1,102,3,102,1584,8,102,1,102,1,102,1,103, - 1,103,1,103,1,103,5,103,1592,8,103,10,103,12,103,1595,9,103,1,104, - 1,104,1,104,1,104,3,104,1601,8,104,1,104,1,104,1,104,3,104,1606, - 8,104,1,104,1,104,1,104,3,104,1611,8,104,1,104,1,104,1,104,3,104, - 1616,8,104,1,104,1,104,5,104,1620,8,104,10,104,12,104,1623,9,104, - 3,104,1625,8,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,3,105, - 1634,8,105,1,105,3,105,1637,8,105,1,105,3,105,1640,8,105,1,106,1, - 106,1,106,1,106,3,106,1646,8,106,1,107,1,107,1,107,1,107,3,107,1652, - 8,107,1,108,1,108,1,109,1,109,1,109,1,109,5,109,1660,8,109,10,109, - 12,109,1663,9,109,3,109,1665,8,109,1,109,1,109,3,109,1669,8,109, - 1,109,1,109,3,109,1673,8,109,1,110,1,110,1,110,5,110,1678,8,110, - 10,110,12,110,1681,9,110,3,110,1683,8,110,1,111,1,111,1,111,1,111, - 3,111,1689,8,111,1,111,1,111,5,111,1693,8,111,10,111,12,111,1696, - 9,111,3,111,1698,8,111,1,112,3,112,1701,8,112,1,112,1,112,3,112, - 1705,8,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,3,113, - 1715,8,113,1,114,1,114,1,115,1,115,1,116,1,116,1,116,5,116,1724, - 8,116,10,116,12,116,1727,9,116,1,116,1,116,3,116,1731,8,116,1,116, - 3,116,1734,8,116,1,117,1,117,3,117,1738,8,117,1,117,1,117,1,117, - 1,118,1,118,3,118,1745,8,118,1,118,1,118,1,118,1,118,1,118,1,118, - 5,118,1753,8,118,10,118,12,118,1756,9,118,1,118,1,118,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,3,119,1767,8,119,1,119,1,119,1,119, - 1,119,3,119,1773,8,119,3,119,1775,8,119,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,3,120,1784,8,120,1,120,3,120,1787,8,120,1,121, - 1,121,1,121,1,121,1,121,3,121,1794,8,121,1,122,1,122,1,122,1,122, - 1,122,1,122,1,122,1,122,3,122,1804,8,122,1,123,1,123,1,123,1,123, - 3,123,1810,8,123,1,124,1,124,1,124,1,124,5,124,1816,8,124,10,124, - 12,124,1819,9,124,1,124,1,124,1,125,1,125,1,125,1,125,5,125,1827, - 8,125,10,125,12,125,1830,9,125,1,125,1,125,1,126,1,126,1,126,5,126, - 1837,8,126,10,126,12,126,1840,9,126,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,3,127,1850,8,127,3,127,1852,8,127,1,127,1,127, - 1,127,1,127,3,127,1858,8,127,1,128,1,128,1,128,3,128,1863,8,128, - 1,129,1,129,1,129,1,129,1,129,1,129,5,129,1871,8,129,10,129,12,129, - 1874,9,129,3,129,1876,8,129,1,129,1,129,1,129,1,129,3,129,1882,8, - 129,3,129,1884,8,129,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1892, - 8,130,1,130,1,130,1,130,1,130,3,130,1898,8,130,1,130,5,130,1901, - 8,130,10,130,12,130,1904,9,130,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,5,131,1913,8,131,10,131,12,131,1916,9,131,1,131,1,131,1,131, - 1,131,3,131,1922,8,131,1,132,1,132,3,132,1926,8,132,1,132,1,132, - 3,132,1930,8,132,1,133,1,133,3,133,1934,8,133,1,133,3,133,1937,8, - 133,1,133,1,133,1,133,5,133,1942,8,133,10,133,12,133,1945,9,133, - 1,133,1,133,1,133,1,133,5,133,1951,8,133,10,133,12,133,1954,9,133, - 3,133,1956,8,133,1,133,1,133,3,133,1960,8,133,1,133,1,133,1,133, - 3,133,1965,8,133,1,133,1,133,3,133,1969,8,133,1,134,3,134,1972,8, - 134,1,134,1,134,1,134,5,134,1977,8,134,10,134,12,134,1980,9,134, - 1,135,1,135,1,136,1,136,1,136,1,136,5,136,1988,8,136,10,136,12,136, - 1991,9,136,3,136,1993,8,136,1,136,1,136,3,136,1997,8,136,1,137,1, - 137,3,137,2001,8,137,1,137,1,137,1,137,1,138,1,138,1,139,1,139,3, - 139,2010,8,139,1,139,3,139,2013,8,139,1,139,1,139,1,139,1,139,1, - 139,3,139,2020,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1, - 140,1,140,1,140,1,140,1,140,3,140,2034,8,140,5,140,2036,8,140,10, - 140,12,140,2039,9,140,1,141,3,141,2042,8,141,1,141,1,141,3,141,2046, - 8,141,1,141,1,141,3,141,2050,8,141,1,141,1,141,3,141,2054,8,141, - 1,141,1,141,3,141,2058,8,141,1,141,1,141,3,141,2062,8,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,2072,8,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,5,142,2081,8,142,10,142,12,142, - 2084,9,142,1,142,1,142,3,142,2088,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,2101,8,143,3,143, - 2103,8,143,1,144,1,144,1,145,1,145,3,145,2109,8,145,1,145,1,145, - 3,145,2113,8,145,3,145,2115,8,145,1,146,1,146,1,146,1,146,5,146, - 2121,8,146,10,146,12,146,2124,9,146,1,146,1,146,1,147,1,147,3,147, - 2130,8,147,1,147,1,147,1,147,3,147,2135,8,147,1,148,1,148,1,148, - 1,148,1,149,1,149,1,149,1,149,1,149,5,149,2146,8,149,10,149,12,149, - 2149,9,149,1,149,1,149,1,149,3,149,2154,8,149,1,150,1,150,1,150, - 1,150,1,151,1,151,3,151,2162,8,151,1,152,1,152,1,153,1,153,1,153, - 3,153,2169,8,153,1,153,1,153,3,153,2173,8,153,1,153,1,153,1,153, - 1,153,1,153,1,153,5,153,2181,8,153,10,153,12,153,2184,9,153,1,154, - 1,154,1,154,1,154,1,154,1,154,1,154,1,154,3,154,2194,8,154,1,154, - 1,154,1,154,1,154,1,154,1,154,3,154,2202,8,154,1,154,1,154,1,154, - 1,154,1,154,5,154,2209,8,154,10,154,12,154,2212,9,154,1,154,1,154, - 1,154,3,154,2217,8,154,1,154,1,154,1,154,3,154,2222,8,154,1,154, - 1,154,1,154,1,154,3,154,2228,8,154,1,154,1,154,1,154,1,154,3,154, - 2234,8,154,1,154,1,154,1,154,3,154,2239,8,154,1,154,1,154,1,154, - 3,154,2244,8,154,1,155,1,155,1,155,1,155,3,155,2250,8,155,1,155, - 1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155,2261,8,155, - 10,155,12,155,2264,9,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,3,156,2290,8,156,1,156,1,156, - 1,156,1,156,3,156,2296,8,156,5,156,2298,8,156,10,156,12,156,2301, - 9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2310,8,156, - 10,156,12,156,2313,9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 3,156,2322,8,156,1,156,3,156,2325,8,156,1,156,1,156,1,156,3,156, - 2330,8,156,1,156,1,156,1,156,5,156,2335,8,156,10,156,12,156,2338, - 9,156,3,156,2340,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2347, - 8,156,10,156,12,156,2350,9,156,3,156,2352,8,156,1,156,1,156,3,156, - 2356,8,156,1,156,3,156,2359,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,5,156,2369,8,156,10,156,12,156,2372,9,156,3,156, - 2374,8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,4,156,2391,8,156,11,156,12,156, - 2392,1,156,1,156,3,156,2397,8,156,1,156,1,156,1,156,1,156,4,156, - 2403,8,156,11,156,12,156,2404,1,156,1,156,3,156,2409,8,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2432, - 8,156,10,156,12,156,2435,9,156,3,156,2437,8,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,3,156,2446,8,156,1,156,1,156,1,156,1,156, - 3,156,2452,8,156,1,156,1,156,1,156,1,156,3,156,2458,8,156,1,156, - 1,156,1,156,1,156,3,156,2464,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,3,156,2475,8,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,3,156,2484,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,5,156,2504,8,156,10,156,12,156,2507,9,156,3,156,2509, - 8,156,1,156,3,156,2512,8,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,5,156,2522,8,156,10,156,12,156,2525,9,156,1,157,1,157, - 1,157,1,157,3,157,2531,8,157,3,157,2533,8,157,1,158,1,158,1,159, - 1,159,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,3,161,2555,8,161,1,162,1,162, - 1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, - 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, - 1,164,5,164,2582,8,164,10,164,12,164,2585,9,164,1,164,1,164,1,164, - 1,164,3,164,2591,8,164,1,164,1,164,1,164,1,164,5,164,2597,8,164, - 10,164,12,164,2600,9,164,1,164,1,164,3,164,2604,8,164,3,164,2606, - 8,164,1,164,1,164,5,164,2610,8,164,10,164,12,164,2613,9,164,1,165, - 1,165,1,166,1,166,3,166,2619,8,166,1,167,1,167,1,167,1,167,3,167, - 2625,8,167,1,168,1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,169, - 1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,5,170,2645, - 8,170,10,170,12,170,2648,9,170,3,170,2650,8,170,1,170,1,170,1,170, - 1,170,1,170,5,170,2657,8,170,10,170,12,170,2660,9,170,3,170,2662, - 8,170,1,170,3,170,2665,8,170,1,170,1,170,1,171,1,171,1,171,1,171, - 1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171, - 1,171,3,171,2685,8,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172, - 1,172,1,172,3,172,2696,8,172,1,173,1,173,1,173,1,173,1,173,3,173, - 2703,8,173,1,174,1,174,1,174,5,174,2708,8,174,10,174,12,174,2711, - 9,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,175,3,175,2724,8,175,3,175,2726,8,175,1,176,1,176,1,177,1,177, - 1,177,5,177,2733,8,177,10,177,12,177,2736,9,177,1,178,1,178,1,178, - 1,178,1,178,1,178,3,178,2744,8,178,1,179,1,179,1,179,1,179,1,179, - 3,179,2751,8,179,1,180,3,180,2754,8,180,1,180,1,180,3,180,2758,8, - 180,1,180,1,180,3,180,2762,8,180,1,180,3,180,2765,8,180,1,181,1, - 181,1,182,1,182,1,182,10,770,1446,1621,1661,1679,1694,1725,1754, - 1828,2299,6,260,280,306,310,312,328,183,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,0,33,2,0,46,46,170,170,2,0,166,166,204,204,2,0,176,176,202, - 202,2,0,69,69,80,80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47, - 47,171,171,2,0,3,3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209, - 209,1,0,245,248,2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200, - 200,2,0,10,10,55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185, - 185,3,0,106,106,115,115,164,164,2,0,105,105,163,163,4,0,70,70,133, - 133,194,194,208,208,1,0,255,256,1,0,257,259,1,0,249,254,3,0,2,2, - 6,6,181,181,2,0,70,70,194,194,5,0,48,49,91,92,122,125,172,173,217, - 218,1,0,127,130,2,0,8,8,227,244,2,0,77,77,149,149,4,0,46,46,178, - 178,188,188,209,209,16,0,28,29,40,40,43,43,48,48,68,68,91,91,114, - 114,122,122,124,124,158,158,165,165,172,172,184,184,196,196,204, - 204,217,217,23,0,14,14,43,44,48,49,65,65,68,68,91,91,95,95,110,110, - 119,119,122,125,127,130,137,137,140,140,152,153,172,173,180,180, - 184,185,195,195,204,204,213,213,217,217,220,220,231,231,3093,0,369, - 1,0,0,0,2,374,1,0,0,0,4,400,1,0,0,0,6,402,1,0,0,0,8,413,1,0,0,0, - 10,415,1,0,0,0,12,454,1,0,0,0,14,476,1,0,0,0,16,531,1,0,0,0,18,551, - 1,0,0,0,20,565,1,0,0,0,22,569,1,0,0,0,24,631,1,0,0,0,26,679,1,0, - 0,0,28,681,1,0,0,0,30,689,1,0,0,0,32,709,1,0,0,0,34,729,1,0,0,0, - 36,736,1,0,0,0,38,745,1,0,0,0,40,753,1,0,0,0,42,775,1,0,0,0,44,785, - 1,0,0,0,46,803,1,0,0,0,48,824,1,0,0,0,50,845,1,0,0,0,52,851,1,0, - 0,0,54,868,1,0,0,0,56,877,1,0,0,0,58,884,1,0,0,0,60,892,1,0,0,0, - 62,899,1,0,0,0,64,906,1,0,0,0,66,915,1,0,0,0,68,926,1,0,0,0,70,928, - 1,0,0,0,72,948,1,0,0,0,74,965,1,0,0,0,76,967,1,0,0,0,78,976,1,0, - 0,0,80,983,1,0,0,0,82,992,1,0,0,0,84,1002,1,0,0,0,86,1025,1,0,0, - 0,88,1031,1,0,0,0,90,1033,1,0,0,0,92,1040,1,0,0,0,94,1052,1,0,0, - 0,96,1054,1,0,0,0,98,1061,1,0,0,0,100,1082,1,0,0,0,102,1111,1,0, - 0,0,104,1113,1,0,0,0,106,1122,1,0,0,0,108,1145,1,0,0,0,110,1164, - 1,0,0,0,112,1187,1,0,0,0,114,1189,1,0,0,0,116,1204,1,0,0,0,118,1223, - 1,0,0,0,120,1245,1,0,0,0,122,1250,1,0,0,0,124,1255,1,0,0,0,126,1260, - 1,0,0,0,128,1265,1,0,0,0,130,1272,1,0,0,0,132,1287,1,0,0,0,134,1293, - 1,0,0,0,136,1313,1,0,0,0,138,1315,1,0,0,0,140,1326,1,0,0,0,142,1337, - 1,0,0,0,144,1351,1,0,0,0,146,1353,1,0,0,0,148,1362,1,0,0,0,150,1371, - 1,0,0,0,152,1380,1,0,0,0,154,1383,1,0,0,0,156,1391,1,0,0,0,158,1407, - 1,0,0,0,160,1411,1,0,0,0,162,1435,1,0,0,0,164,1437,1,0,0,0,166,1453, - 1,0,0,0,168,1456,1,0,0,0,170,1460,1,0,0,0,172,1463,1,0,0,0,174,1467, - 1,0,0,0,176,1469,1,0,0,0,178,1471,1,0,0,0,180,1473,1,0,0,0,182,1475, - 1,0,0,0,184,1477,1,0,0,0,186,1479,1,0,0,0,188,1487,1,0,0,0,190,1497, - 1,0,0,0,192,1501,1,0,0,0,194,1505,1,0,0,0,196,1510,1,0,0,0,198,1551, - 1,0,0,0,200,1559,1,0,0,0,202,1563,1,0,0,0,204,1583,1,0,0,0,206,1587, - 1,0,0,0,208,1596,1,0,0,0,210,1626,1,0,0,0,212,1641,1,0,0,0,214,1647, - 1,0,0,0,216,1653,1,0,0,0,218,1655,1,0,0,0,220,1674,1,0,0,0,222,1684, - 1,0,0,0,224,1704,1,0,0,0,226,1714,1,0,0,0,228,1716,1,0,0,0,230,1718, - 1,0,0,0,232,1733,1,0,0,0,234,1735,1,0,0,0,236,1742,1,0,0,0,238,1774, - 1,0,0,0,240,1786,1,0,0,0,242,1793,1,0,0,0,244,1803,1,0,0,0,246,1805, - 1,0,0,0,248,1811,1,0,0,0,250,1822,1,0,0,0,252,1833,1,0,0,0,254,1841, - 1,0,0,0,256,1859,1,0,0,0,258,1864,1,0,0,0,260,1885,1,0,0,0,262,1921, - 1,0,0,0,264,1923,1,0,0,0,266,1931,1,0,0,0,268,1971,1,0,0,0,270,1981, - 1,0,0,0,272,1996,1,0,0,0,274,1998,1,0,0,0,276,2005,1,0,0,0,278,2019, - 1,0,0,0,280,2021,1,0,0,0,282,2071,1,0,0,0,284,2087,1,0,0,0,286,2089, - 1,0,0,0,288,2104,1,0,0,0,290,2106,1,0,0,0,292,2116,1,0,0,0,294,2134, - 1,0,0,0,296,2136,1,0,0,0,298,2140,1,0,0,0,300,2155,1,0,0,0,302,2161, - 1,0,0,0,304,2163,1,0,0,0,306,2172,1,0,0,0,308,2243,1,0,0,0,310,2249, - 1,0,0,0,312,2511,1,0,0,0,314,2532,1,0,0,0,316,2534,1,0,0,0,318,2536, - 1,0,0,0,320,2538,1,0,0,0,322,2554,1,0,0,0,324,2556,1,0,0,0,326,2558, - 1,0,0,0,328,2605,1,0,0,0,330,2614,1,0,0,0,332,2618,1,0,0,0,334,2624, - 1,0,0,0,336,2626,1,0,0,0,338,2631,1,0,0,0,340,2637,1,0,0,0,342,2684, - 1,0,0,0,344,2695,1,0,0,0,346,2702,1,0,0,0,348,2704,1,0,0,0,350,2725, - 1,0,0,0,352,2727,1,0,0,0,354,2729,1,0,0,0,356,2743,1,0,0,0,358,2750, - 1,0,0,0,360,2764,1,0,0,0,362,2766,1,0,0,0,364,2768,1,0,0,0,366,368, - 3,2,1,0,367,366,1,0,0,0,368,371,1,0,0,0,369,367,1,0,0,0,369,370, - 1,0,0,0,370,372,1,0,0,0,371,369,1,0,0,0,372,373,5,0,0,1,373,1,1, - 0,0,0,374,376,3,4,2,0,375,377,5,262,0,0,376,375,1,0,0,0,376,377, - 1,0,0,0,377,3,1,0,0,0,378,401,3,204,102,0,379,401,3,6,3,0,380,401, - 3,8,4,0,381,401,3,26,13,0,382,401,3,64,32,0,383,401,3,66,33,0,384, - 401,3,68,34,0,385,401,3,74,37,0,386,401,3,88,44,0,387,401,3,94,47, - 0,388,401,3,100,50,0,389,401,3,102,51,0,390,401,3,108,54,0,391,401, - 3,110,55,0,392,401,3,112,56,0,393,401,3,144,72,0,394,401,3,152,76, - 0,395,401,3,154,77,0,396,401,3,156,78,0,397,401,3,158,79,0,398,401, - 3,160,80,0,399,401,3,162,81,0,400,378,1,0,0,0,400,379,1,0,0,0,400, - 380,1,0,0,0,400,381,1,0,0,0,400,382,1,0,0,0,400,383,1,0,0,0,400, - 384,1,0,0,0,400,385,1,0,0,0,400,386,1,0,0,0,400,387,1,0,0,0,400, - 388,1,0,0,0,400,389,1,0,0,0,400,390,1,0,0,0,400,391,1,0,0,0,400, - 392,1,0,0,0,400,393,1,0,0,0,400,394,1,0,0,0,400,395,1,0,0,0,400, - 396,1,0,0,0,400,397,1,0,0,0,400,398,1,0,0,0,400,399,1,0,0,0,401, - 5,1,0,0,0,402,403,5,203,0,0,403,404,3,184,92,0,404,7,1,0,0,0,405, - 414,3,18,9,0,406,414,3,20,10,0,407,414,3,22,11,0,408,414,3,24,12, - 0,409,414,3,16,8,0,410,414,3,14,7,0,411,414,3,12,6,0,412,414,3,10, - 5,0,413,405,1,0,0,0,413,406,1,0,0,0,413,407,1,0,0,0,413,408,1,0, - 0,0,413,409,1,0,0,0,413,410,1,0,0,0,413,411,1,0,0,0,413,412,1,0, - 0,0,414,9,1,0,0,0,415,417,5,37,0,0,416,418,5,19,0,0,417,416,1,0, - 0,0,417,418,1,0,0,0,418,419,1,0,0,0,419,421,5,188,0,0,420,422,3, - 172,86,0,421,420,1,0,0,0,421,422,1,0,0,0,422,423,1,0,0,0,423,439, - 3,174,87,0,424,425,5,265,0,0,425,430,3,214,107,0,426,427,5,263,0, - 0,427,429,3,214,107,0,428,426,1,0,0,0,429,432,1,0,0,0,430,428,1, - 0,0,0,430,431,1,0,0,0,431,435,1,0,0,0,432,430,1,0,0,0,433,434,5, - 263,0,0,434,436,3,208,104,0,435,433,1,0,0,0,435,436,1,0,0,0,436, - 437,1,0,0,0,437,438,5,266,0,0,438,440,1,0,0,0,439,424,1,0,0,0,439, - 440,1,0,0,0,440,447,1,0,0,0,441,442,5,17,0,0,442,445,5,26,0,0,443, - 446,3,292,146,0,444,446,3,250,125,0,445,443,1,0,0,0,445,444,1,0, - 0,0,446,448,1,0,0,0,447,441,1,0,0,0,447,448,1,0,0,0,448,449,1,0, - 0,0,449,452,3,196,98,0,450,451,5,9,0,0,451,453,3,204,102,0,452,450, - 1,0,0,0,452,453,1,0,0,0,453,11,1,0,0,0,454,456,5,37,0,0,455,457, - 5,19,0,0,456,455,1,0,0,0,456,457,1,0,0,0,457,458,1,0,0,0,458,460, - 5,188,0,0,459,461,3,172,86,0,460,459,1,0,0,0,460,461,1,0,0,0,461, - 462,1,0,0,0,462,463,3,174,87,0,463,467,5,115,0,0,464,468,3,186,93, - 0,465,466,5,147,0,0,466,468,3,314,157,0,467,464,1,0,0,0,467,465, - 1,0,0,0,468,472,1,0,0,0,469,470,5,17,0,0,470,471,5,26,0,0,471,473, - 3,250,125,0,472,469,1,0,0,0,472,473,1,0,0,0,473,474,1,0,0,0,474, - 475,3,196,98,0,475,13,1,0,0,0,476,478,5,37,0,0,477,479,5,19,0,0, - 478,477,1,0,0,0,478,479,1,0,0,0,479,480,1,0,0,0,480,482,5,188,0, - 0,481,483,3,172,86,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0, - 0,0,484,502,3,174,87,0,485,486,5,265,0,0,486,491,3,216,108,0,487, - 488,5,263,0,0,488,490,3,216,108,0,489,487,1,0,0,0,490,493,1,0,0, - 0,491,489,1,0,0,0,491,492,1,0,0,0,492,498,1,0,0,0,493,491,1,0,0, - 0,494,495,5,263,0,0,495,496,5,150,0,0,496,497,5,110,0,0,497,499, - 3,292,146,0,498,494,1,0,0,0,498,499,1,0,0,0,499,500,1,0,0,0,500, - 501,5,266,0,0,501,503,1,0,0,0,502,485,1,0,0,0,502,503,1,0,0,0,503, - 509,1,0,0,0,504,505,5,150,0,0,505,507,5,110,0,0,506,508,3,292,146, - 0,507,506,1,0,0,0,507,508,1,0,0,0,508,510,1,0,0,0,509,504,1,0,0, - 0,509,510,1,0,0,0,510,514,1,0,0,0,511,512,5,145,0,0,512,513,5,26, - 0,0,513,515,3,232,116,0,514,511,1,0,0,0,514,515,1,0,0,0,515,518, - 1,0,0,0,516,517,5,34,0,0,517,519,3,314,157,0,518,516,1,0,0,0,518, - 519,1,0,0,0,519,520,1,0,0,0,520,521,5,23,0,0,521,522,5,9,0,0,522, - 525,5,111,0,0,523,524,5,25,0,0,524,526,3,248,124,0,525,523,1,0,0, - 0,525,526,1,0,0,0,526,529,1,0,0,0,527,528,5,9,0,0,528,530,3,204, - 102,0,529,527,1,0,0,0,529,530,1,0,0,0,530,15,1,0,0,0,531,532,5,37, - 0,0,532,534,5,212,0,0,533,535,3,172,86,0,534,533,1,0,0,0,534,535, - 1,0,0,0,535,536,1,0,0,0,536,538,3,178,89,0,537,539,3,202,101,0,538, - 537,1,0,0,0,538,539,1,0,0,0,539,542,1,0,0,0,540,541,5,34,0,0,541, - 543,3,314,157,0,542,540,1,0,0,0,542,543,1,0,0,0,543,546,1,0,0,0, - 544,545,5,25,0,0,545,547,3,248,124,0,546,544,1,0,0,0,546,547,1,0, - 0,0,547,548,1,0,0,0,548,549,5,9,0,0,549,550,3,204,102,0,550,17,1, - 0,0,0,551,552,5,37,0,0,552,554,7,0,0,0,553,555,3,172,86,0,554,553, - 1,0,0,0,554,555,1,0,0,0,555,556,1,0,0,0,556,559,3,176,88,0,557,558, - 5,34,0,0,558,560,3,314,157,0,559,557,1,0,0,0,559,560,1,0,0,0,560, - 563,1,0,0,0,561,562,5,24,0,0,562,564,3,314,157,0,563,561,1,0,0,0, - 563,564,1,0,0,0,564,19,1,0,0,0,565,566,5,37,0,0,566,567,5,166,0, - 0,567,568,3,358,179,0,568,21,1,0,0,0,569,571,5,37,0,0,570,572,5, - 12,0,0,571,570,1,0,0,0,571,572,1,0,0,0,572,573,1,0,0,0,573,575,5, - 84,0,0,574,576,3,172,86,0,575,574,1,0,0,0,575,576,1,0,0,0,576,577, - 1,0,0,0,577,590,3,180,90,0,578,587,5,265,0,0,579,584,3,328,164,0, - 580,581,5,263,0,0,581,583,3,328,164,0,582,580,1,0,0,0,583,586,1, - 0,0,0,584,582,1,0,0,0,584,585,1,0,0,0,585,588,1,0,0,0,586,584,1, - 0,0,0,587,579,1,0,0,0,587,588,1,0,0,0,588,589,1,0,0,0,589,591,5, - 266,0,0,590,578,1,0,0,0,590,591,1,0,0,0,591,592,1,0,0,0,592,593, - 5,160,0,0,593,596,3,328,164,0,594,595,5,102,0,0,595,597,3,328,164, - 0,596,594,1,0,0,0,596,597,1,0,0,0,597,598,1,0,0,0,598,599,5,24,0, - 0,599,603,5,274,0,0,600,601,5,104,0,0,601,602,5,249,0,0,602,604, - 5,274,0,0,603,600,1,0,0,0,603,604,1,0,0,0,604,605,1,0,0,0,605,606, - 5,206,0,0,606,607,5,249,0,0,607,608,5,274,0,0,608,609,5,126,0,0, - 609,610,5,249,0,0,610,614,5,274,0,0,611,612,5,18,0,0,612,613,5,249, - 0,0,613,615,5,274,0,0,614,611,1,0,0,0,614,615,1,0,0,0,615,619,1, - 0,0,0,616,617,5,20,0,0,617,618,5,249,0,0,618,620,5,274,0,0,619,616, - 1,0,0,0,619,620,1,0,0,0,620,624,1,0,0,0,621,622,5,187,0,0,622,623, - 5,249,0,0,623,625,5,274,0,0,624,621,1,0,0,0,624,625,1,0,0,0,625, - 629,1,0,0,0,626,627,5,76,0,0,627,628,5,249,0,0,628,630,5,274,0,0, - 629,626,1,0,0,0,629,630,1,0,0,0,630,23,1,0,0,0,631,632,5,37,0,0, - 632,634,5,84,0,0,633,635,3,172,86,0,634,633,1,0,0,0,634,635,1,0, - 0,0,635,636,1,0,0,0,636,649,3,180,90,0,637,646,5,265,0,0,638,643, - 3,328,164,0,639,640,5,263,0,0,640,642,3,328,164,0,641,639,1,0,0, - 0,642,645,1,0,0,0,643,641,1,0,0,0,643,644,1,0,0,0,644,647,1,0,0, - 0,645,643,1,0,0,0,646,638,1,0,0,0,646,647,1,0,0,0,647,648,1,0,0, - 0,648,650,5,266,0,0,649,637,1,0,0,0,649,650,1,0,0,0,650,653,1,0, - 0,0,651,652,5,160,0,0,652,654,3,328,164,0,653,651,1,0,0,0,653,654, - 1,0,0,0,654,655,1,0,0,0,655,656,5,24,0,0,656,657,5,274,0,0,657,658, - 5,186,0,0,658,659,5,249,0,0,659,660,3,314,157,0,660,25,1,0,0,0,661, - 680,3,28,14,0,662,680,3,62,31,0,663,680,3,60,30,0,664,680,3,58,29, - 0,665,680,3,54,27,0,666,680,3,56,28,0,667,680,3,52,26,0,668,680, - 3,48,24,0,669,680,3,50,25,0,670,680,3,46,23,0,671,680,3,44,22,0, - 672,680,3,42,21,0,673,680,3,40,20,0,674,680,3,34,17,0,675,680,3, - 30,15,0,676,680,3,32,16,0,677,680,3,36,18,0,678,680,3,38,19,0,679, - 661,1,0,0,0,679,662,1,0,0,0,679,663,1,0,0,0,679,664,1,0,0,0,679, - 665,1,0,0,0,679,666,1,0,0,0,679,667,1,0,0,0,679,668,1,0,0,0,679, - 669,1,0,0,0,679,670,1,0,0,0,679,671,1,0,0,0,679,672,1,0,0,0,679, - 673,1,0,0,0,679,674,1,0,0,0,679,675,1,0,0,0,679,676,1,0,0,0,679, - 677,1,0,0,0,679,678,1,0,0,0,680,27,1,0,0,0,681,682,5,4,0,0,682,683, - 5,46,0,0,683,684,3,184,92,0,684,685,5,176,0,0,685,686,5,142,0,0, - 686,687,7,1,0,0,687,688,3,358,179,0,688,29,1,0,0,0,689,690,5,4,0, - 0,690,691,5,188,0,0,691,692,3,186,93,0,692,693,5,176,0,0,693,694, - 5,32,0,0,694,695,5,182,0,0,695,696,3,192,96,0,696,697,5,265,0,0, - 697,698,3,228,114,0,698,699,5,249,0,0,699,705,3,314,157,0,700,701, - 5,263,0,0,701,702,3,228,114,0,702,703,5,249,0,0,703,704,3,314,157, - 0,704,706,1,0,0,0,705,700,1,0,0,0,705,706,1,0,0,0,706,707,1,0,0, - 0,707,708,5,266,0,0,708,31,1,0,0,0,709,710,5,4,0,0,710,711,5,188, - 0,0,711,714,3,186,93,0,712,713,5,145,0,0,713,715,3,304,152,0,714, - 712,1,0,0,0,714,715,1,0,0,0,715,716,1,0,0,0,716,727,5,176,0,0,717, - 718,5,30,0,0,718,719,5,94,0,0,719,724,3,314,157,0,720,721,5,216, - 0,0,721,722,5,151,0,0,722,723,5,249,0,0,723,725,3,360,180,0,724, - 720,1,0,0,0,724,725,1,0,0,0,725,728,1,0,0,0,726,728,5,197,0,0,727, - 717,1,0,0,0,727,726,1,0,0,0,728,33,1,0,0,0,729,730,5,4,0,0,730,731, - 5,188,0,0,731,732,3,186,93,0,732,733,5,31,0,0,733,734,3,192,96,0, - 734,735,3,220,110,0,735,35,1,0,0,0,736,737,5,4,0,0,737,738,5,188, - 0,0,738,739,3,186,93,0,739,741,5,58,0,0,740,742,5,32,0,0,741,740, - 1,0,0,0,741,742,1,0,0,0,742,743,1,0,0,0,743,744,3,192,96,0,744,37, - 1,0,0,0,745,746,5,4,0,0,746,747,5,188,0,0,747,748,3,186,93,0,748, - 749,5,176,0,0,749,750,5,142,0,0,750,751,7,1,0,0,751,752,3,358,179, - 0,752,39,1,0,0,0,753,754,5,4,0,0,754,755,5,188,0,0,755,761,3,186, - 93,0,756,762,5,158,0,0,757,759,5,1,0,0,758,760,3,172,86,0,759,758, - 1,0,0,0,759,760,1,0,0,0,760,762,1,0,0,0,761,756,1,0,0,0,761,757, - 1,0,0,0,762,763,1,0,0,0,763,764,5,33,0,0,764,765,5,265,0,0,765,770, - 3,220,110,0,766,767,5,263,0,0,767,769,3,220,110,0,768,766,1,0,0, - 0,769,772,1,0,0,0,770,771,1,0,0,0,770,768,1,0,0,0,771,773,1,0,0, - 0,772,770,1,0,0,0,773,774,5,266,0,0,774,41,1,0,0,0,775,776,5,4,0, - 0,776,777,5,188,0,0,777,778,3,186,93,0,778,779,5,1,0,0,779,781,5, - 32,0,0,780,782,3,172,86,0,781,780,1,0,0,0,781,782,1,0,0,0,782,783, - 1,0,0,0,783,784,3,222,111,0,784,43,1,0,0,0,785,786,5,4,0,0,786,787, - 5,188,0,0,787,788,3,186,93,0,788,790,5,4,0,0,789,791,5,32,0,0,790, - 789,1,0,0,0,790,791,1,0,0,0,791,792,1,0,0,0,792,801,3,192,96,0,793, - 797,5,176,0,0,794,798,3,226,113,0,795,796,5,34,0,0,796,798,3,314, - 157,0,797,794,1,0,0,0,797,795,1,0,0,0,798,802,1,0,0,0,799,800,5, - 58,0,0,800,802,5,51,0,0,801,793,1,0,0,0,801,799,1,0,0,0,802,45,1, - 0,0,0,803,804,5,4,0,0,804,805,5,188,0,0,805,806,3,186,93,0,806,808, - 5,1,0,0,807,809,3,172,86,0,808,807,1,0,0,0,808,809,1,0,0,0,809,822, - 1,0,0,0,810,811,5,145,0,0,811,814,3,304,152,0,812,813,5,24,0,0,813, - 815,3,314,157,0,814,812,1,0,0,0,814,815,1,0,0,0,815,817,1,0,0,0, - 816,818,3,240,120,0,817,816,1,0,0,0,817,818,1,0,0,0,818,823,1,0, - 0,0,819,820,5,154,0,0,820,821,5,145,0,0,821,823,3,238,119,0,822, - 810,1,0,0,0,822,819,1,0,0,0,823,47,1,0,0,0,824,825,5,4,0,0,825,826, - 5,188,0,0,826,829,3,186,93,0,827,828,5,145,0,0,828,830,3,304,152, - 0,829,827,1,0,0,0,829,830,1,0,0,0,830,831,1,0,0,0,831,843,5,176, - 0,0,832,833,5,72,0,0,833,844,3,230,115,0,834,835,5,168,0,0,835,836, - 5,79,0,0,836,844,3,254,127,0,837,838,5,24,0,0,838,844,3,314,157, - 0,839,840,5,25,0,0,840,844,3,248,124,0,841,842,5,175,0,0,842,844, - 3,248,124,0,843,832,1,0,0,0,843,834,1,0,0,0,843,837,1,0,0,0,843, - 839,1,0,0,0,843,841,1,0,0,0,844,49,1,0,0,0,845,846,5,4,0,0,846,847, - 5,188,0,0,847,848,3,186,93,0,848,849,5,155,0,0,849,850,5,146,0,0, - 850,51,1,0,0,0,851,852,5,4,0,0,852,853,5,188,0,0,853,854,3,186,93, - 0,854,856,5,58,0,0,855,857,3,170,85,0,856,855,1,0,0,0,856,857,1, - 0,0,0,857,866,1,0,0,0,858,859,5,145,0,0,859,861,3,304,152,0,860, - 862,5,22,0,0,861,860,1,0,0,0,861,862,1,0,0,0,862,867,1,0,0,0,863, - 864,5,154,0,0,864,865,5,145,0,0,865,867,3,238,119,0,866,858,1,0, - 0,0,866,863,1,0,0,0,867,53,1,0,0,0,868,869,5,4,0,0,869,870,5,212, - 0,0,870,872,3,188,94,0,871,873,3,202,101,0,872,871,1,0,0,0,872,873, - 1,0,0,0,873,874,1,0,0,0,874,875,5,9,0,0,875,876,3,204,102,0,876, - 55,1,0,0,0,877,878,5,4,0,0,878,879,5,212,0,0,879,880,3,188,94,0, - 880,881,5,156,0,0,881,882,5,193,0,0,882,883,3,188,94,0,883,57,1, - 0,0,0,884,885,5,4,0,0,885,886,5,212,0,0,886,887,3,188,94,0,887,888, - 5,176,0,0,888,889,5,142,0,0,889,890,7,1,0,0,890,891,3,354,177,0, - 891,59,1,0,0,0,892,893,5,4,0,0,893,894,5,188,0,0,894,895,3,186,93, - 0,895,896,5,156,0,0,896,897,5,193,0,0,897,898,3,186,93,0,898,61, - 1,0,0,0,899,900,5,4,0,0,900,901,5,212,0,0,901,902,3,188,94,0,902, - 903,7,2,0,0,903,904,5,25,0,0,904,905,3,248,124,0,905,63,1,0,0,0, - 906,908,5,196,0,0,907,909,5,188,0,0,908,907,1,0,0,0,908,909,1,0, - 0,0,909,911,1,0,0,0,910,912,3,170,85,0,911,910,1,0,0,0,911,912,1, - 0,0,0,912,913,1,0,0,0,913,914,3,186,93,0,914,65,1,0,0,0,915,917, - 5,56,0,0,916,918,5,46,0,0,917,916,1,0,0,0,917,918,1,0,0,0,918,920, - 1,0,0,0,919,921,7,3,0,0,920,919,1,0,0,0,920,921,1,0,0,0,921,922, - 1,0,0,0,922,923,3,354,177,0,923,67,1,0,0,0,924,927,3,70,35,0,925, - 927,3,72,36,0,926,924,1,0,0,0,926,925,1,0,0,0,927,69,1,0,0,0,928, - 929,5,36,0,0,929,930,5,182,0,0,930,932,3,186,93,0,931,933,3,292, - 146,0,932,931,1,0,0,0,932,933,1,0,0,0,933,946,1,0,0,0,934,935,5, - 190,0,0,935,936,5,185,0,0,936,937,5,265,0,0,937,938,3,360,180,0, - 938,944,5,266,0,0,939,940,5,157,0,0,940,941,5,265,0,0,941,942,3, - 360,180,0,942,943,5,266,0,0,943,945,1,0,0,0,944,939,1,0,0,0,944, - 945,1,0,0,0,945,947,1,0,0,0,946,934,1,0,0,0,946,947,1,0,0,0,947, - 71,1,0,0,0,948,949,5,36,0,0,949,950,5,96,0,0,950,951,5,182,0,0,951, - 957,3,186,93,0,952,953,5,145,0,0,953,954,5,265,0,0,954,955,3,304, - 152,0,955,956,5,266,0,0,956,958,1,0,0,0,957,952,1,0,0,0,957,958, - 1,0,0,0,958,73,1,0,0,0,959,966,3,86,43,0,960,966,3,84,42,0,961,966, - 3,82,41,0,962,966,3,78,39,0,963,966,3,80,40,0,964,966,3,76,38,0, - 965,959,1,0,0,0,965,960,1,0,0,0,965,961,1,0,0,0,965,962,1,0,0,0, - 965,963,1,0,0,0,965,964,1,0,0,0,966,75,1,0,0,0,967,968,5,58,0,0, - 968,970,7,0,0,0,969,971,3,170,85,0,970,969,1,0,0,0,970,971,1,0,0, - 0,971,972,1,0,0,0,972,974,3,184,92,0,973,975,7,4,0,0,974,973,1,0, - 0,0,974,975,1,0,0,0,975,77,1,0,0,0,976,977,5,58,0,0,977,979,5,212, - 0,0,978,980,3,170,85,0,979,978,1,0,0,0,979,980,1,0,0,0,980,981,1, - 0,0,0,981,982,3,188,94,0,982,79,1,0,0,0,983,984,5,58,0,0,984,986, - 5,188,0,0,985,987,3,170,85,0,986,985,1,0,0,0,986,987,1,0,0,0,987, - 988,1,0,0,0,988,990,3,186,93,0,989,991,5,22,0,0,990,989,1,0,0,0, - 990,991,1,0,0,0,991,81,1,0,0,0,992,994,5,58,0,0,993,995,5,96,0,0, - 994,993,1,0,0,0,994,995,1,0,0,0,995,996,1,0,0,0,996,997,5,182,0, - 0,997,1000,3,186,93,0,998,999,5,145,0,0,999,1001,3,304,152,0,1000, - 998,1,0,0,0,1000,1001,1,0,0,0,1001,83,1,0,0,0,1002,1004,5,58,0,0, - 1003,1005,5,12,0,0,1004,1003,1,0,0,0,1004,1005,1,0,0,0,1005,1006, - 1,0,0,0,1006,1008,5,84,0,0,1007,1009,3,170,85,0,1008,1007,1,0,0, - 0,1008,1009,1,0,0,0,1009,1010,1,0,0,0,1010,1023,3,190,95,0,1011, - 1020,5,265,0,0,1012,1017,3,328,164,0,1013,1014,5,263,0,0,1014,1016, - 3,328,164,0,1015,1013,1,0,0,0,1016,1019,1,0,0,0,1017,1015,1,0,0, - 0,1017,1018,1,0,0,0,1018,1021,1,0,0,0,1019,1017,1,0,0,0,1020,1012, - 1,0,0,0,1020,1021,1,0,0,0,1021,1022,1,0,0,0,1022,1024,5,266,0,0, - 1023,1011,1,0,0,0,1023,1024,1,0,0,0,1024,85,1,0,0,0,1025,1026,5, - 58,0,0,1026,1027,5,166,0,0,1027,1028,3,358,179,0,1028,87,1,0,0,0, - 1029,1032,3,90,45,0,1030,1032,3,92,46,0,1031,1029,1,0,0,0,1031,1030, - 1,0,0,0,1032,89,1,0,0,0,1033,1034,5,86,0,0,1034,1035,5,166,0,0,1035, - 1036,3,358,179,0,1036,1037,5,193,0,0,1037,1038,5,87,0,0,1038,1039, - 3,358,179,0,1039,91,1,0,0,0,1040,1041,5,86,0,0,1041,1042,3,350,175, - 0,1042,1043,5,136,0,0,1043,1045,3,352,176,0,1044,1046,3,354,177, - 0,1045,1044,1,0,0,0,1045,1046,1,0,0,0,1046,1047,1,0,0,0,1047,1048, - 5,193,0,0,1048,1049,3,356,178,0,1049,93,1,0,0,0,1050,1053,3,96,48, - 0,1051,1053,3,98,49,0,1052,1050,1,0,0,0,1052,1051,1,0,0,0,1053,95, - 1,0,0,0,1054,1055,5,161,0,0,1055,1056,5,166,0,0,1056,1057,3,358, - 179,0,1057,1058,5,82,0,0,1058,1059,5,87,0,0,1059,1060,3,358,179, - 0,1060,97,1,0,0,0,1061,1065,5,161,0,0,1062,1063,5,86,0,0,1063,1064, - 5,137,0,0,1064,1066,5,78,0,0,1065,1062,1,0,0,0,1065,1066,1,0,0,0, - 1066,1067,1,0,0,0,1067,1068,3,350,175,0,1068,1069,5,136,0,0,1069, - 1071,3,352,176,0,1070,1072,3,354,177,0,1071,1070,1,0,0,0,1071,1072, - 1,0,0,0,1072,1073,1,0,0,0,1073,1079,5,82,0,0,1074,1080,3,356,178, - 0,1075,1077,5,166,0,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,1078, - 1,0,0,0,1078,1080,3,358,179,0,1079,1074,1,0,0,0,1079,1076,1,0,0, - 0,1080,99,1,0,0,0,1081,1083,3,206,103,0,1082,1081,1,0,0,0,1082,1083, - 1,0,0,0,1083,1084,1,0,0,0,1084,1085,5,99,0,0,1085,1087,7,5,0,0,1086, - 1088,5,188,0,0,1087,1086,1,0,0,0,1087,1088,1,0,0,0,1088,1089,1,0, - 0,0,1089,1091,3,186,93,0,1090,1092,3,292,146,0,1091,1090,1,0,0,0, - 1091,1092,1,0,0,0,1092,1105,1,0,0,0,1093,1094,5,145,0,0,1094,1095, - 5,265,0,0,1095,1100,3,304,152,0,1096,1097,5,263,0,0,1097,1099,3, - 304,152,0,1098,1096,1,0,0,0,1099,1102,1,0,0,0,1100,1098,1,0,0,0, - 1100,1101,1,0,0,0,1101,1103,1,0,0,0,1102,1100,1,0,0,0,1103,1104, - 5,266,0,0,1104,1106,1,0,0,0,1105,1093,1,0,0,0,1105,1106,1,0,0,0, - 1106,1107,1,0,0,0,1107,1108,3,204,102,0,1108,101,1,0,0,0,1109,1112, - 3,104,52,0,1110,1112,3,106,53,0,1111,1109,1,0,0,0,1111,1110,1,0, - 0,0,1112,103,1,0,0,0,1113,1115,5,50,0,0,1114,1116,5,82,0,0,1115, - 1114,1,0,0,0,1115,1116,1,0,0,0,1116,1117,1,0,0,0,1117,1120,3,186, - 93,0,1118,1119,5,215,0,0,1119,1121,3,306,153,0,1120,1118,1,0,0,0, - 1120,1121,1,0,0,0,1121,105,1,0,0,0,1122,1123,5,50,0,0,1123,1128, - 3,186,93,0,1124,1126,5,9,0,0,1125,1124,1,0,0,0,1125,1126,1,0,0,0, - 1126,1127,1,0,0,0,1127,1129,3,358,179,0,1128,1125,1,0,0,0,1128,1129, - 1,0,0,0,1129,1130,1,0,0,0,1130,1139,5,82,0,0,1131,1136,3,280,140, - 0,1132,1133,5,263,0,0,1133,1135,3,280,140,0,1134,1132,1,0,0,0,1135, - 1138,1,0,0,0,1136,1134,1,0,0,0,1136,1137,1,0,0,0,1137,1140,1,0,0, - 0,1138,1136,1,0,0,0,1139,1131,1,0,0,0,1139,1140,1,0,0,0,1140,1143, - 1,0,0,0,1141,1142,5,215,0,0,1142,1144,3,306,153,0,1143,1141,1,0, - 0,0,1143,1144,1,0,0,0,1144,107,1,0,0,0,1145,1146,5,54,0,0,1146,1147, - 3,186,93,0,1147,1148,5,176,0,0,1148,1158,3,198,99,0,1149,1150,5, - 82,0,0,1150,1155,3,280,140,0,1151,1152,5,263,0,0,1152,1154,3,280, - 140,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,1159,1,0,0,0,1157,1155,1,0,0,0,1158,1149,1,0,0, - 0,1158,1159,1,0,0,0,1159,1162,1,0,0,0,1160,1161,5,215,0,0,1161,1163, - 3,306,153,0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163,109,1,0,0,0, - 1164,1165,5,207,0,0,1165,1167,5,103,0,0,1166,1168,5,188,0,0,1167, - 1166,1,0,0,0,1167,1168,1,0,0,0,1168,1169,1,0,0,0,1169,1171,3,186, - 93,0,1170,1172,3,292,146,0,1171,1170,1,0,0,0,1171,1172,1,0,0,0,1172, - 1173,1,0,0,0,1173,1174,3,204,102,0,1174,111,1,0,0,0,1175,1188,3, - 132,66,0,1176,1188,3,134,67,0,1177,1188,3,136,68,0,1178,1188,3,130, - 65,0,1179,1188,3,128,64,0,1180,1188,3,126,63,0,1181,1188,3,124,62, - 0,1182,1188,3,122,61,0,1183,1188,3,120,60,0,1184,1188,3,118,59,0, - 1185,1188,3,116,58,0,1186,1188,3,114,57,0,1187,1175,1,0,0,0,1187, - 1176,1,0,0,0,1187,1177,1,0,0,0,1187,1178,1,0,0,0,1187,1179,1,0,0, - 0,1187,1180,1,0,0,0,1187,1181,1,0,0,0,1187,1182,1,0,0,0,1187,1183, - 1,0,0,0,1187,1184,1,0,0,0,1187,1185,1,0,0,0,1187,1186,1,0,0,0,1188, - 113,1,0,0,0,1189,1190,5,179,0,0,1190,1202,7,6,0,0,1191,1193,5,115, - 0,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193,1194,1,0,0,0,1194,1199, - 3,314,157,0,1195,1196,5,271,0,0,1196,1198,3,314,157,0,1197,1195, - 1,0,0,0,1198,1201,1,0,0,0,1199,1197,1,0,0,0,1199,1200,1,0,0,0,1200, - 1203,1,0,0,0,1201,1199,1,0,0,0,1202,1192,1,0,0,0,1202,1203,1,0,0, - 0,1203,115,1,0,0,0,1204,1205,5,179,0,0,1205,1208,5,189,0,0,1206, - 1207,5,94,0,0,1207,1209,3,186,93,0,1208,1206,1,0,0,0,1208,1209,1, - 0,0,0,1209,1221,1,0,0,0,1210,1212,5,115,0,0,1211,1210,1,0,0,0,1211, - 1212,1,0,0,0,1212,1213,1,0,0,0,1213,1218,3,314,157,0,1214,1215,5, - 271,0,0,1215,1217,3,314,157,0,1216,1214,1,0,0,0,1217,1220,1,0,0, - 0,1218,1216,1,0,0,0,1218,1219,1,0,0,0,1219,1222,1,0,0,0,1220,1218, - 1,0,0,0,1221,1211,1,0,0,0,1221,1222,1,0,0,0,1222,117,1,0,0,0,1223, - 1225,5,179,0,0,1224,1226,7,7,0,0,1225,1224,1,0,0,0,1225,1226,1,0, - 0,0,1226,1227,1,0,0,0,1227,1230,5,85,0,0,1228,1229,5,94,0,0,1229, - 1231,3,184,92,0,1230,1228,1,0,0,0,1230,1231,1,0,0,0,1231,1243,1, - 0,0,0,1232,1234,5,115,0,0,1233,1232,1,0,0,0,1233,1234,1,0,0,0,1234, - 1235,1,0,0,0,1235,1240,3,314,157,0,1236,1237,5,271,0,0,1237,1239, - 3,314,157,0,1238,1236,1,0,0,0,1239,1242,1,0,0,0,1240,1238,1,0,0, - 0,1240,1241,1,0,0,0,1241,1244,1,0,0,0,1242,1240,1,0,0,0,1243,1233, - 1,0,0,0,1243,1244,1,0,0,0,1244,119,1,0,0,0,1245,1246,5,179,0,0,1246, - 1247,5,37,0,0,1247,1248,5,188,0,0,1248,1249,3,186,93,0,1249,121, - 1,0,0,0,1250,1251,5,179,0,0,1251,1252,5,37,0,0,1252,1253,5,212,0, - 0,1253,1254,3,188,94,0,1254,123,1,0,0,0,1255,1256,5,179,0,0,1256, - 1257,5,188,0,0,1257,1258,5,182,0,0,1258,1259,3,186,93,0,1259,125, - 1,0,0,0,1260,1261,5,179,0,0,1261,1262,5,32,0,0,1262,1263,5,182,0, - 0,1263,1264,3,186,93,0,1264,127,1,0,0,0,1265,1267,5,179,0,0,1266, - 1268,5,154,0,0,1267,1266,1,0,0,0,1267,1268,1,0,0,0,1268,1269,1,0, - 0,0,1269,1270,5,146,0,0,1270,1271,3,186,93,0,1271,129,1,0,0,0,1272, - 1273,5,179,0,0,1273,1274,5,73,0,0,1274,1275,5,94,0,0,1275,1285,3, - 186,93,0,1276,1277,5,145,0,0,1277,1278,5,265,0,0,1278,1281,3,304, - 152,0,1279,1280,5,263,0,0,1280,1282,3,304,152,0,1281,1279,1,0,0, - 0,1281,1282,1,0,0,0,1282,1283,1,0,0,0,1283,1284,5,266,0,0,1284,1286, - 1,0,0,0,1285,1276,1,0,0,0,1285,1286,1,0,0,0,1286,131,1,0,0,0,1287, - 1289,5,179,0,0,1288,1290,5,39,0,0,1289,1288,1,0,0,0,1289,1290,1, - 0,0,0,1290,1291,1,0,0,0,1291,1292,5,167,0,0,1292,133,1,0,0,0,1293, - 1294,5,179,0,0,1294,1295,5,166,0,0,1295,1296,5,86,0,0,1296,1297, - 5,87,0,0,1297,1298,3,358,179,0,1298,135,1,0,0,0,1299,1314,3,138, - 69,0,1300,1314,3,140,70,0,1301,1314,3,142,71,0,1302,1303,5,179,0, - 0,1303,1304,5,86,0,0,1304,1305,7,8,0,0,1305,1311,3,358,179,0,1306, - 1307,5,136,0,0,1307,1309,7,9,0,0,1308,1310,3,354,177,0,1309,1308, - 1,0,0,0,1309,1310,1,0,0,0,1310,1312,1,0,0,0,1311,1306,1,0,0,0,1311, - 1312,1,0,0,0,1312,1314,1,0,0,0,1313,1299,1,0,0,0,1313,1300,1,0,0, - 0,1313,1301,1,0,0,0,1313,1302,1,0,0,0,1314,137,1,0,0,0,1315,1316, - 5,179,0,0,1316,1317,5,86,0,0,1317,1318,7,8,0,0,1318,1324,3,358,179, - 0,1319,1320,5,136,0,0,1320,1322,5,46,0,0,1321,1323,3,184,92,0,1322, - 1321,1,0,0,0,1322,1323,1,0,0,0,1323,1325,1,0,0,0,1324,1319,1,0,0, - 0,1324,1325,1,0,0,0,1325,139,1,0,0,0,1326,1327,5,179,0,0,1327,1328, - 5,86,0,0,1328,1329,7,8,0,0,1329,1335,3,358,179,0,1330,1331,5,136, - 0,0,1331,1333,5,188,0,0,1332,1334,3,186,93,0,1333,1332,1,0,0,0,1333, - 1334,1,0,0,0,1334,1336,1,0,0,0,1335,1330,1,0,0,0,1335,1336,1,0,0, - 0,1336,141,1,0,0,0,1337,1338,5,179,0,0,1338,1339,5,86,0,0,1339,1340, - 7,8,0,0,1340,1346,3,358,179,0,1341,1342,5,136,0,0,1342,1344,5,32, - 0,0,1343,1345,3,192,96,0,1344,1343,1,0,0,0,1344,1345,1,0,0,0,1345, - 1347,1,0,0,0,1346,1341,1,0,0,0,1346,1347,1,0,0,0,1347,143,1,0,0, - 0,1348,1352,3,146,73,0,1349,1352,3,148,74,0,1350,1352,3,150,75,0, - 1351,1348,1,0,0,0,1351,1349,1,0,0,0,1351,1350,1,0,0,0,1352,145,1, - 0,0,0,1353,1354,5,34,0,0,1354,1355,5,136,0,0,1355,1356,5,46,0,0, - 1356,1357,3,184,92,0,1357,1360,5,108,0,0,1358,1361,3,314,157,0,1359, - 1361,5,133,0,0,1360,1358,1,0,0,0,1360,1359,1,0,0,0,1361,147,1,0, - 0,0,1362,1363,5,34,0,0,1363,1364,5,136,0,0,1364,1365,5,188,0,0,1365, - 1366,3,186,93,0,1366,1369,5,108,0,0,1367,1370,3,314,157,0,1368,1370, - 5,133,0,0,1369,1367,1,0,0,0,1369,1368,1,0,0,0,1370,149,1,0,0,0,1371, - 1372,5,34,0,0,1372,1373,5,136,0,0,1373,1374,5,32,0,0,1374,1375,3, - 192,96,0,1375,1378,5,108,0,0,1376,1379,3,314,157,0,1377,1379,5,133, - 0,0,1378,1376,1,0,0,0,1378,1377,1,0,0,0,1379,151,1,0,0,0,1380,1381, - 5,67,0,0,1381,1382,3,4,2,0,1382,153,1,0,0,0,1383,1389,5,176,0,0, - 1384,1390,5,2,0,0,1385,1386,3,358,179,0,1386,1387,5,249,0,0,1387, - 1388,3,304,152,0,1388,1390,1,0,0,0,1389,1384,1,0,0,0,1389,1385,1, - 0,0,0,1389,1390,1,0,0,0,1390,155,1,0,0,0,1391,1392,5,264,0,0,1392, - 1393,5,180,0,0,1393,1403,5,265,0,0,1394,1396,3,314,157,0,1395,1394, - 1,0,0,0,1395,1396,1,0,0,0,1396,1404,1,0,0,0,1397,1400,3,314,157, - 0,1398,1399,5,263,0,0,1399,1401,3,304,152,0,1400,1398,1,0,0,0,1400, - 1401,1,0,0,0,1401,1404,1,0,0,0,1402,1404,3,304,152,0,1403,1395,1, - 0,0,0,1403,1397,1,0,0,0,1403,1402,1,0,0,0,1404,1405,1,0,0,0,1405, - 1406,5,266,0,0,1406,157,1,0,0,0,1407,1408,5,107,0,0,1408,1409,5, - 121,0,0,1409,1410,3,186,93,0,1410,159,1,0,0,0,1411,1412,5,118,0, - 0,1412,1413,5,45,0,0,1413,1414,5,98,0,0,1414,1416,5,274,0,0,1415, - 1417,5,144,0,0,1416,1415,1,0,0,0,1416,1417,1,0,0,0,1417,1418,1,0, - 0,0,1418,1419,5,103,0,0,1419,1420,5,188,0,0,1420,1430,3,186,93,0, - 1421,1422,5,145,0,0,1422,1423,5,265,0,0,1423,1426,3,304,152,0,1424, - 1425,5,263,0,0,1425,1427,3,304,152,0,1426,1424,1,0,0,0,1426,1427, - 1,0,0,0,1427,1428,1,0,0,0,1428,1429,5,266,0,0,1429,1431,1,0,0,0, - 1430,1421,1,0,0,0,1430,1431,1,0,0,0,1431,161,1,0,0,0,1432,1436,3, - 164,82,0,1433,1436,3,166,83,0,1434,1436,3,168,84,0,1435,1432,1,0, - 0,0,1435,1433,1,0,0,0,1435,1434,1,0,0,0,1436,163,1,0,0,0,1437,1438, - 5,162,0,0,1438,1451,3,186,93,0,1439,1440,5,145,0,0,1440,1441,5,265, - 0,0,1441,1446,3,304,152,0,1442,1443,5,263,0,0,1443,1445,3,304,152, - 0,1444,1442,1,0,0,0,1445,1448,1,0,0,0,1446,1447,1,0,0,0,1446,1444, - 1,0,0,0,1447,1449,1,0,0,0,1448,1446,1,0,0,0,1449,1450,5,266,0,0, - 1450,1452,1,0,0,0,1451,1439,1,0,0,0,1451,1452,1,0,0,0,1452,165,1, - 0,0,0,1453,1454,5,162,0,0,1454,1455,5,13,0,0,1455,167,1,0,0,0,1456, - 1457,5,162,0,0,1457,1458,5,85,0,0,1458,1459,3,190,95,0,1459,169, - 1,0,0,0,1460,1461,5,93,0,0,1461,1462,5,66,0,0,1462,171,1,0,0,0,1463, - 1464,5,93,0,0,1464,1465,5,132,0,0,1465,1466,5,66,0,0,1466,173,1, - 0,0,0,1467,1468,3,354,177,0,1468,175,1,0,0,0,1469,1470,3,354,177, - 0,1470,177,1,0,0,0,1471,1472,3,354,177,0,1472,179,1,0,0,0,1473,1474, - 3,354,177,0,1474,181,1,0,0,0,1475,1476,3,354,177,0,1476,183,1,0, - 0,0,1477,1478,3,354,177,0,1478,185,1,0,0,0,1479,1484,3,358,179,0, - 1480,1481,5,261,0,0,1481,1483,3,358,179,0,1482,1480,1,0,0,0,1483, - 1486,1,0,0,0,1484,1482,1,0,0,0,1484,1485,1,0,0,0,1485,187,1,0,0, - 0,1486,1484,1,0,0,0,1487,1492,3,358,179,0,1488,1489,5,261,0,0,1489, - 1491,3,358,179,0,1490,1488,1,0,0,0,1491,1494,1,0,0,0,1492,1490,1, - 0,0,0,1492,1493,1,0,0,0,1493,189,1,0,0,0,1494,1492,1,0,0,0,1495, - 1498,3,362,181,0,1496,1498,3,354,177,0,1497,1495,1,0,0,0,1497,1496, - 1,0,0,0,1498,191,1,0,0,0,1499,1502,3,354,177,0,1500,1502,4,96,0, - 0,1501,1499,1,0,0,0,1501,1500,1,0,0,0,1502,193,1,0,0,0,1503,1506, - 3,186,93,0,1504,1506,3,188,94,0,1505,1503,1,0,0,0,1505,1504,1,0, - 0,0,1506,195,1,0,0,0,1507,1508,5,21,0,0,1508,1509,5,26,0,0,1509, - 1511,3,292,146,0,1510,1507,1,0,0,0,1510,1511,1,0,0,0,1511,1514,1, - 0,0,0,1512,1513,5,34,0,0,1513,1515,3,314,157,0,1514,1512,1,0,0,0, - 1514,1515,1,0,0,0,1515,1519,1,0,0,0,1516,1517,5,168,0,0,1517,1518, - 5,79,0,0,1518,1520,3,254,127,0,1519,1516,1,0,0,0,1519,1520,1,0,0, - 0,1520,1524,1,0,0,0,1521,1522,5,216,0,0,1522,1523,5,175,0,0,1523, - 1525,3,248,124,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525,1529,1, - 0,0,0,1526,1527,5,23,0,0,1527,1528,5,9,0,0,1528,1530,3,230,115,0, - 1529,1526,1,0,0,0,1529,1530,1,0,0,0,1530,1533,1,0,0,0,1531,1532, - 5,24,0,0,1532,1534,3,314,157,0,1533,1531,1,0,0,0,1533,1534,1,0,0, - 0,1534,1545,1,0,0,0,1535,1536,5,30,0,0,1536,1537,5,94,0,0,1537,1542, - 3,354,177,0,1538,1539,5,216,0,0,1539,1540,5,151,0,0,1540,1541,5, - 249,0,0,1541,1543,5,277,0,0,1542,1538,1,0,0,0,1542,1543,1,0,0,0, - 1543,1546,1,0,0,0,1544,1546,5,197,0,0,1545,1535,1,0,0,0,1545,1544, - 1,0,0,0,1545,1546,1,0,0,0,1546,1549,1,0,0,0,1547,1548,5,25,0,0,1548, - 1550,3,248,124,0,1549,1547,1,0,0,0,1549,1550,1,0,0,0,1550,197,1, - 0,0,0,1551,1556,3,200,100,0,1552,1553,5,263,0,0,1553,1555,3,200, - 100,0,1554,1552,1,0,0,0,1555,1558,1,0,0,0,1556,1554,1,0,0,0,1556, - 1557,1,0,0,0,1557,199,1,0,0,0,1558,1556,1,0,0,0,1559,1560,3,354, - 177,0,1560,1561,5,249,0,0,1561,1562,3,304,152,0,1562,201,1,0,0,0, - 1563,1564,5,265,0,0,1564,1567,3,182,91,0,1565,1566,5,34,0,0,1566, - 1568,3,314,157,0,1567,1565,1,0,0,0,1567,1568,1,0,0,0,1568,1577,1, - 0,0,0,1569,1570,5,263,0,0,1570,1573,3,182,91,0,1571,1572,5,34,0, - 0,1572,1574,3,314,157,0,1573,1571,1,0,0,0,1573,1574,1,0,0,0,1574, - 1576,1,0,0,0,1575,1569,1,0,0,0,1576,1579,1,0,0,0,1577,1575,1,0,0, - 0,1577,1578,1,0,0,0,1578,1580,1,0,0,0,1579,1577,1,0,0,0,1580,1581, - 5,266,0,0,1581,203,1,0,0,0,1582,1584,3,206,103,0,1583,1582,1,0,0, - 0,1583,1584,1,0,0,0,1584,1585,1,0,0,0,1585,1586,3,258,129,0,1586, - 205,1,0,0,0,1587,1588,5,216,0,0,1588,1593,3,274,137,0,1589,1590, - 5,263,0,0,1590,1592,3,274,137,0,1591,1589,1,0,0,0,1592,1595,1,0, - 0,0,1593,1591,1,0,0,0,1593,1594,1,0,0,0,1594,207,1,0,0,0,1595,1593, - 1,0,0,0,1596,1597,5,150,0,0,1597,1598,5,110,0,0,1598,1600,3,292, - 146,0,1599,1601,5,53,0,0,1600,1599,1,0,0,0,1600,1601,1,0,0,0,1601, - 1605,1,0,0,0,1602,1606,5,225,0,0,1603,1604,5,263,0,0,1604,1606,5, - 225,0,0,1605,1602,1,0,0,0,1605,1603,1,0,0,0,1605,1606,1,0,0,0,1606, - 1610,1,0,0,0,1607,1611,5,226,0,0,1608,1609,5,263,0,0,1609,1611,5, - 226,0,0,1610,1607,1,0,0,0,1610,1608,1,0,0,0,1610,1611,1,0,0,0,1611, - 1624,1,0,0,0,1612,1613,5,263,0,0,1613,1616,3,210,105,0,1614,1616, - 3,210,105,0,1615,1612,1,0,0,0,1615,1614,1,0,0,0,1616,1621,1,0,0, - 0,1617,1618,5,263,0,0,1618,1620,3,210,105,0,1619,1617,1,0,0,0,1620, - 1623,1,0,0,0,1621,1622,1,0,0,0,1621,1619,1,0,0,0,1622,1625,1,0,0, - 0,1623,1621,1,0,0,0,1624,1615,1,0,0,0,1624,1625,1,0,0,0,1625,209, - 1,0,0,0,1626,1627,5,81,0,0,1627,1628,5,110,0,0,1628,1629,3,292,146, - 0,1629,1630,5,224,0,0,1630,1631,3,186,93,0,1631,1633,3,292,146,0, - 1632,1634,5,53,0,0,1633,1632,1,0,0,0,1633,1634,1,0,0,0,1634,1636, - 1,0,0,0,1635,1637,5,225,0,0,1636,1635,1,0,0,0,1636,1637,1,0,0,0, - 1637,1639,1,0,0,0,1638,1640,5,226,0,0,1639,1638,1,0,0,0,1639,1640, - 1,0,0,0,1640,211,1,0,0,0,1641,1642,3,192,96,0,1642,1645,3,328,164, - 0,1643,1644,5,34,0,0,1644,1646,3,314,157,0,1645,1643,1,0,0,0,1645, - 1646,1,0,0,0,1646,213,1,0,0,0,1647,1648,3,182,91,0,1648,1651,3,328, - 164,0,1649,1650,5,34,0,0,1650,1652,3,314,157,0,1651,1649,1,0,0,0, - 1651,1652,1,0,0,0,1652,215,1,0,0,0,1653,1654,3,218,109,0,1654,217, - 1,0,0,0,1655,1656,3,182,91,0,1656,1664,3,328,164,0,1657,1661,3,224, - 112,0,1658,1660,3,224,112,0,1659,1658,1,0,0,0,1660,1663,1,0,0,0, - 1661,1662,1,0,0,0,1661,1659,1,0,0,0,1662,1665,1,0,0,0,1663,1661, - 1,0,0,0,1664,1657,1,0,0,0,1664,1665,1,0,0,0,1665,1668,1,0,0,0,1666, - 1667,5,34,0,0,1667,1669,3,314,157,0,1668,1666,1,0,0,0,1668,1669, - 1,0,0,0,1669,1672,1,0,0,0,1670,1671,5,150,0,0,1671,1673,5,110,0, - 0,1672,1670,1,0,0,0,1672,1673,1,0,0,0,1673,219,1,0,0,0,1674,1682, - 3,212,106,0,1675,1679,3,224,112,0,1676,1678,3,224,112,0,1677,1676, - 1,0,0,0,1678,1681,1,0,0,0,1679,1680,1,0,0,0,1679,1677,1,0,0,0,1680, - 1683,1,0,0,0,1681,1679,1,0,0,0,1682,1675,1,0,0,0,1682,1683,1,0,0, - 0,1683,221,1,0,0,0,1684,1685,3,182,91,0,1685,1688,3,328,164,0,1686, - 1687,5,34,0,0,1687,1689,3,314,157,0,1688,1686,1,0,0,0,1688,1689, - 1,0,0,0,1689,1697,1,0,0,0,1690,1694,3,224,112,0,1691,1693,3,224, - 112,0,1692,1691,1,0,0,0,1693,1696,1,0,0,0,1694,1695,1,0,0,0,1694, - 1692,1,0,0,0,1695,1698,1,0,0,0,1696,1694,1,0,0,0,1697,1690,1,0,0, - 0,1697,1698,1,0,0,0,1698,223,1,0,0,0,1699,1701,5,132,0,0,1700,1699, - 1,0,0,0,1700,1701,1,0,0,0,1701,1702,1,0,0,0,1702,1705,5,133,0,0, - 1703,1705,3,226,113,0,1704,1700,1,0,0,0,1704,1703,1,0,0,0,1705,225, - 1,0,0,0,1706,1707,5,60,0,0,1707,1715,3,304,152,0,1708,1709,5,35, - 0,0,1709,1715,3,304,152,0,1710,1711,5,51,0,0,1711,1715,3,304,152, - 0,1712,1713,5,16,0,0,1713,1715,3,360,180,0,1714,1706,1,0,0,0,1714, - 1708,1,0,0,0,1714,1710,1,0,0,0,1714,1712,1,0,0,0,1715,227,1,0,0, - 0,1716,1717,7,10,0,0,1717,229,1,0,0,0,1718,1719,7,11,0,0,1719,231, - 1,0,0,0,1720,1725,3,234,117,0,1721,1722,5,263,0,0,1722,1724,3,234, - 117,0,1723,1721,1,0,0,0,1724,1727,1,0,0,0,1725,1726,1,0,0,0,1725, - 1723,1,0,0,0,1726,1730,1,0,0,0,1727,1725,1,0,0,0,1728,1729,5,263, - 0,0,1729,1731,3,236,118,0,1730,1728,1,0,0,0,1730,1731,1,0,0,0,1731, - 1734,1,0,0,0,1732,1734,3,236,118,0,1733,1720,1,0,0,0,1733,1732,1, - 0,0,0,1734,233,1,0,0,0,1735,1737,5,89,0,0,1736,1738,3,292,146,0, - 1737,1736,1,0,0,0,1737,1738,1,0,0,0,1738,1739,1,0,0,0,1739,1740, - 5,146,0,0,1740,1741,3,360,180,0,1741,235,1,0,0,0,1742,1744,5,154, - 0,0,1743,1745,3,292,146,0,1744,1743,1,0,0,0,1744,1745,1,0,0,0,1745, - 1746,1,0,0,0,1746,1747,5,265,0,0,1747,1748,5,145,0,0,1748,1754,3, - 238,119,0,1749,1750,5,263,0,0,1750,1751,5,145,0,0,1751,1753,3,238, - 119,0,1752,1749,1,0,0,0,1753,1756,1,0,0,0,1754,1755,1,0,0,0,1754, - 1752,1,0,0,0,1755,1757,1,0,0,0,1756,1754,1,0,0,0,1757,1758,5,266, - 0,0,1758,237,1,0,0,0,1759,1760,5,210,0,0,1760,1761,3,244,122,0,1761, - 1762,3,304,152,0,1762,1775,1,0,0,0,1763,1764,3,304,152,0,1764,1765, - 3,242,121,0,1765,1767,1,0,0,0,1766,1763,1,0,0,0,1766,1767,1,0,0, - 0,1767,1768,1,0,0,0,1768,1772,5,211,0,0,1769,1770,3,242,121,0,1770, - 1771,3,304,152,0,1771,1773,1,0,0,0,1772,1769,1,0,0,0,1772,1773,1, - 0,0,0,1773,1775,1,0,0,0,1774,1759,1,0,0,0,1774,1766,1,0,0,0,1775, - 239,1,0,0,0,1776,1777,5,30,0,0,1777,1778,5,94,0,0,1778,1783,3,358, - 179,0,1779,1780,5,216,0,0,1780,1781,5,151,0,0,1781,1782,5,249,0, - 0,1782,1784,3,360,180,0,1783,1779,1,0,0,0,1783,1784,1,0,0,0,1784, - 1787,1,0,0,0,1785,1787,5,197,0,0,1786,1776,1,0,0,0,1786,1785,1,0, - 0,0,1787,241,1,0,0,0,1788,1794,1,0,0,0,1789,1794,5,251,0,0,1790, - 1794,5,252,0,0,1791,1794,5,253,0,0,1792,1794,5,254,0,0,1793,1788, - 1,0,0,0,1793,1789,1,0,0,0,1793,1790,1,0,0,0,1793,1791,1,0,0,0,1793, - 1792,1,0,0,0,1794,243,1,0,0,0,1795,1804,5,249,0,0,1796,1804,5,250, - 0,0,1797,1804,5,115,0,0,1798,1804,5,164,0,0,1799,1804,5,163,0,0, - 1800,1804,5,15,0,0,1801,1804,5,94,0,0,1802,1804,3,242,121,0,1803, - 1795,1,0,0,0,1803,1796,1,0,0,0,1803,1797,1,0,0,0,1803,1798,1,0,0, - 0,1803,1799,1,0,0,0,1803,1800,1,0,0,0,1803,1801,1,0,0,0,1803,1802, - 1,0,0,0,1804,245,1,0,0,0,1805,1806,5,115,0,0,1806,1809,3,354,177, - 0,1807,1808,7,12,0,0,1808,1810,5,153,0,0,1809,1807,1,0,0,0,1809, - 1810,1,0,0,0,1810,247,1,0,0,0,1811,1812,5,265,0,0,1812,1817,3,256, - 128,0,1813,1814,5,263,0,0,1814,1816,3,256,128,0,1815,1813,1,0,0, - 0,1816,1819,1,0,0,0,1817,1815,1,0,0,0,1817,1818,1,0,0,0,1818,1820, - 1,0,0,0,1819,1817,1,0,0,0,1820,1821,5,266,0,0,1821,249,1,0,0,0,1822, - 1823,5,265,0,0,1823,1828,3,212,106,0,1824,1825,5,263,0,0,1825,1827, - 3,212,106,0,1826,1824,1,0,0,0,1827,1830,1,0,0,0,1828,1829,1,0,0, - 0,1828,1826,1,0,0,0,1829,1831,1,0,0,0,1830,1828,1,0,0,0,1831,1832, - 5,266,0,0,1832,251,1,0,0,0,1833,1838,3,304,152,0,1834,1835,5,263, - 0,0,1835,1837,3,304,152,0,1836,1834,1,0,0,0,1837,1840,1,0,0,0,1838, - 1836,1,0,0,0,1838,1839,1,0,0,0,1839,253,1,0,0,0,1840,1838,1,0,0, - 0,1841,1851,5,52,0,0,1842,1843,5,71,0,0,1843,1844,5,191,0,0,1844, - 1845,5,26,0,0,1845,1849,3,314,157,0,1846,1847,5,63,0,0,1847,1848, - 5,26,0,0,1848,1850,3,314,157,0,1849,1846,1,0,0,0,1849,1850,1,0,0, - 0,1850,1852,1,0,0,0,1851,1842,1,0,0,0,1851,1852,1,0,0,0,1852,1857, - 1,0,0,0,1853,1854,5,117,0,0,1854,1855,5,191,0,0,1855,1856,5,26,0, - 0,1856,1858,3,314,157,0,1857,1853,1,0,0,0,1857,1858,1,0,0,0,1858, - 255,1,0,0,0,1859,1862,3,358,179,0,1860,1861,5,249,0,0,1861,1863, - 3,304,152,0,1862,1860,1,0,0,0,1862,1863,1,0,0,0,1863,257,1,0,0,0, - 1864,1875,3,260,130,0,1865,1866,5,139,0,0,1866,1867,5,26,0,0,1867, - 1872,3,264,132,0,1868,1869,5,263,0,0,1869,1871,3,264,132,0,1870, - 1868,1,0,0,0,1871,1874,1,0,0,0,1872,1870,1,0,0,0,1872,1873,1,0,0, - 0,1873,1876,1,0,0,0,1874,1872,1,0,0,0,1875,1865,1,0,0,0,1875,1876, - 1,0,0,0,1876,1883,1,0,0,0,1877,1878,5,116,0,0,1878,1881,3,304,152, - 0,1879,1880,5,135,0,0,1880,1882,5,277,0,0,1881,1879,1,0,0,0,1881, - 1882,1,0,0,0,1882,1884,1,0,0,0,1883,1877,1,0,0,0,1883,1884,1,0,0, - 0,1884,259,1,0,0,0,1885,1886,6,130,-1,0,1886,1887,3,262,131,0,1887, - 1902,1,0,0,0,1888,1889,10,2,0,0,1889,1891,5,100,0,0,1890,1892,3, - 276,138,0,1891,1890,1,0,0,0,1891,1892,1,0,0,0,1892,1893,1,0,0,0, - 1893,1901,3,260,130,3,1894,1895,10,1,0,0,1895,1897,7,13,0,0,1896, - 1898,3,276,138,0,1897,1896,1,0,0,0,1897,1898,1,0,0,0,1898,1899,1, - 0,0,0,1899,1901,3,260,130,2,1900,1888,1,0,0,0,1900,1894,1,0,0,0, - 1901,1904,1,0,0,0,1902,1900,1,0,0,0,1902,1903,1,0,0,0,1903,261,1, - 0,0,0,1904,1902,1,0,0,0,1905,1922,3,266,133,0,1906,1907,5,188,0, - 0,1907,1922,3,186,93,0,1908,1909,5,211,0,0,1909,1914,3,304,152,0, - 1910,1911,5,263,0,0,1911,1913,3,304,152,0,1912,1910,1,0,0,0,1913, - 1916,1,0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915,1922,1,0,0, - 0,1916,1914,1,0,0,0,1917,1918,5,265,0,0,1918,1919,3,258,129,0,1919, - 1920,5,266,0,0,1920,1922,1,0,0,0,1921,1905,1,0,0,0,1921,1906,1,0, - 0,0,1921,1908,1,0,0,0,1921,1917,1,0,0,0,1922,263,1,0,0,0,1923,1925, - 3,302,151,0,1924,1926,7,14,0,0,1925,1924,1,0,0,0,1925,1926,1,0,0, - 0,1926,1929,1,0,0,0,1927,1928,5,134,0,0,1928,1930,7,15,0,0,1929, - 1927,1,0,0,0,1929,1930,1,0,0,0,1930,265,1,0,0,0,1931,1933,5,174, - 0,0,1932,1934,3,276,138,0,1933,1932,1,0,0,0,1933,1934,1,0,0,0,1934, - 1936,1,0,0,0,1935,1937,5,183,0,0,1936,1935,1,0,0,0,1936,1937,1,0, - 0,0,1937,1938,1,0,0,0,1938,1943,3,278,139,0,1939,1940,5,263,0,0, - 1940,1942,3,278,139,0,1941,1939,1,0,0,0,1942,1945,1,0,0,0,1943,1941, - 1,0,0,0,1943,1944,1,0,0,0,1944,1955,1,0,0,0,1945,1943,1,0,0,0,1946, - 1947,5,82,0,0,1947,1952,3,280,140,0,1948,1949,5,263,0,0,1949,1951, - 3,280,140,0,1950,1948,1,0,0,0,1951,1954,1,0,0,0,1952,1950,1,0,0, - 0,1952,1953,1,0,0,0,1953,1956,1,0,0,0,1954,1952,1,0,0,0,1955,1946, - 1,0,0,0,1955,1956,1,0,0,0,1956,1959,1,0,0,0,1957,1958,5,215,0,0, - 1958,1960,3,306,153,0,1959,1957,1,0,0,0,1959,1960,1,0,0,0,1960,1964, - 1,0,0,0,1961,1962,5,87,0,0,1962,1963,5,26,0,0,1963,1965,3,268,134, - 0,1964,1961,1,0,0,0,1964,1965,1,0,0,0,1965,1968,1,0,0,0,1966,1967, - 5,90,0,0,1967,1969,3,306,153,0,1968,1966,1,0,0,0,1968,1969,1,0,0, - 0,1969,267,1,0,0,0,1970,1972,3,276,138,0,1971,1970,1,0,0,0,1971, - 1972,1,0,0,0,1972,1973,1,0,0,0,1973,1978,3,270,135,0,1974,1975,5, - 263,0,0,1975,1977,3,270,135,0,1976,1974,1,0,0,0,1977,1980,1,0,0, - 0,1978,1976,1,0,0,0,1978,1979,1,0,0,0,1979,269,1,0,0,0,1980,1978, - 1,0,0,0,1981,1982,3,272,136,0,1982,271,1,0,0,0,1983,1992,5,265,0, - 0,1984,1989,3,302,151,0,1985,1986,5,263,0,0,1986,1988,3,302,151, - 0,1987,1985,1,0,0,0,1988,1991,1,0,0,0,1989,1987,1,0,0,0,1989,1990, - 1,0,0,0,1990,1993,1,0,0,0,1991,1989,1,0,0,0,1992,1984,1,0,0,0,1992, - 1993,1,0,0,0,1993,1994,1,0,0,0,1994,1997,5,266,0,0,1995,1997,3,302, - 151,0,1996,1983,1,0,0,0,1996,1995,1,0,0,0,1997,273,1,0,0,0,1998, - 2000,3,358,179,0,1999,2001,3,292,146,0,2000,1999,1,0,0,0,2000,2001, - 1,0,0,0,2001,2002,1,0,0,0,2002,2003,5,9,0,0,2003,2004,3,296,148, - 0,2004,275,1,0,0,0,2005,2006,7,16,0,0,2006,277,1,0,0,0,2007,2012, - 3,302,151,0,2008,2010,5,9,0,0,2009,2008,1,0,0,0,2009,2010,1,0,0, - 0,2010,2011,1,0,0,0,2011,2013,3,358,179,0,2012,2009,1,0,0,0,2012, - 2013,1,0,0,0,2013,2020,1,0,0,0,2014,2015,3,354,177,0,2015,2016,5, - 261,0,0,2016,2017,5,257,0,0,2017,2020,1,0,0,0,2018,2020,5,257,0, - 0,2019,2007,1,0,0,0,2019,2014,1,0,0,0,2019,2018,1,0,0,0,2020,279, - 1,0,0,0,2021,2022,6,140,-1,0,2022,2023,3,286,143,0,2023,2037,1,0, - 0,0,2024,2033,10,2,0,0,2025,2026,5,38,0,0,2026,2027,5,109,0,0,2027, - 2034,3,286,143,0,2028,2029,3,282,141,0,2029,2030,5,109,0,0,2030, - 2031,3,280,140,0,2031,2032,3,284,142,0,2032,2034,1,0,0,0,2033,2025, - 1,0,0,0,2033,2028,1,0,0,0,2034,2036,1,0,0,0,2035,2024,1,0,0,0,2036, - 2039,1,0,0,0,2037,2035,1,0,0,0,2037,2038,1,0,0,0,2038,281,1,0,0, - 0,2039,2037,1,0,0,0,2040,2042,5,97,0,0,2041,2040,1,0,0,0,2041,2042, - 1,0,0,0,2042,2072,1,0,0,0,2043,2045,5,114,0,0,2044,2046,5,97,0,0, - 2045,2044,1,0,0,0,2045,2046,1,0,0,0,2046,2072,1,0,0,0,2047,2049, - 5,165,0,0,2048,2050,5,97,0,0,2049,2048,1,0,0,0,2049,2050,1,0,0,0, - 2050,2072,1,0,0,0,2051,2053,5,114,0,0,2052,2054,5,141,0,0,2053,2052, - 1,0,0,0,2053,2054,1,0,0,0,2054,2072,1,0,0,0,2055,2057,5,165,0,0, - 2056,2058,5,141,0,0,2057,2056,1,0,0,0,2057,2058,1,0,0,0,2058,2072, - 1,0,0,0,2059,2061,5,83,0,0,2060,2062,5,141,0,0,2061,2060,1,0,0,0, - 2061,2062,1,0,0,0,2062,2072,1,0,0,0,2063,2064,5,114,0,0,2064,2072, - 5,177,0,0,2065,2066,5,165,0,0,2066,2072,5,177,0,0,2067,2068,5,114, - 0,0,2068,2072,5,7,0,0,2069,2070,5,165,0,0,2070,2072,5,7,0,0,2071, - 2041,1,0,0,0,2071,2043,1,0,0,0,2071,2047,1,0,0,0,2071,2051,1,0,0, - 0,2071,2055,1,0,0,0,2071,2059,1,0,0,0,2071,2063,1,0,0,0,2071,2065, - 1,0,0,0,2071,2067,1,0,0,0,2071,2069,1,0,0,0,2072,283,1,0,0,0,2073, - 2074,5,136,0,0,2074,2088,3,306,153,0,2075,2076,5,205,0,0,2076,2077, - 5,265,0,0,2077,2082,3,358,179,0,2078,2079,5,263,0,0,2079,2081,3, - 358,179,0,2080,2078,1,0,0,0,2081,2084,1,0,0,0,2082,2080,1,0,0,0, - 2082,2083,1,0,0,0,2083,2085,1,0,0,0,2084,2082,1,0,0,0,2085,2086, - 5,266,0,0,2086,2088,1,0,0,0,2087,2073,1,0,0,0,2087,2075,1,0,0,0, - 2088,285,1,0,0,0,2089,2102,3,290,145,0,2090,2091,5,190,0,0,2091, - 2092,3,288,144,0,2092,2093,5,265,0,0,2093,2094,3,304,152,0,2094, - 2100,5,266,0,0,2095,2096,5,157,0,0,2096,2097,5,265,0,0,2097,2098, - 3,304,152,0,2098,2099,5,266,0,0,2099,2101,1,0,0,0,2100,2095,1,0, - 0,0,2100,2101,1,0,0,0,2101,2103,1,0,0,0,2102,2090,1,0,0,0,2102,2103, - 1,0,0,0,2103,287,1,0,0,0,2104,2105,7,17,0,0,2105,289,1,0,0,0,2106, - 2114,3,294,147,0,2107,2109,5,9,0,0,2108,2107,1,0,0,0,2108,2109,1, - 0,0,0,2109,2110,1,0,0,0,2110,2112,3,358,179,0,2111,2113,3,292,146, - 0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113,2115,1,0,0,0,2114,2108, - 1,0,0,0,2114,2115,1,0,0,0,2115,291,1,0,0,0,2116,2117,5,265,0,0,2117, - 2122,3,192,96,0,2118,2119,5,263,0,0,2119,2121,3,192,96,0,2120,2118, - 1,0,0,0,2121,2124,1,0,0,0,2122,2120,1,0,0,0,2122,2123,1,0,0,0,2123, - 2125,1,0,0,0,2124,2122,1,0,0,0,2125,2126,5,266,0,0,2126,293,1,0, - 0,0,2127,2135,3,194,97,0,2128,2130,5,113,0,0,2129,2128,1,0,0,0,2129, - 2130,1,0,0,0,2130,2131,1,0,0,0,2131,2135,3,296,148,0,2132,2135,3, - 298,149,0,2133,2135,3,300,150,0,2134,2127,1,0,0,0,2134,2129,1,0, - 0,0,2134,2132,1,0,0,0,2134,2133,1,0,0,0,2135,295,1,0,0,0,2136,2137, - 5,265,0,0,2137,2138,3,204,102,0,2138,2139,5,266,0,0,2139,297,1,0, - 0,0,2140,2141,5,201,0,0,2141,2142,5,265,0,0,2142,2147,3,304,152, - 0,2143,2144,5,263,0,0,2144,2146,3,304,152,0,2145,2143,1,0,0,0,2146, - 2149,1,0,0,0,2147,2145,1,0,0,0,2147,2148,1,0,0,0,2148,2150,1,0,0, - 0,2149,2147,1,0,0,0,2150,2153,5,266,0,0,2151,2152,5,216,0,0,2152, - 2154,5,140,0,0,2153,2151,1,0,0,0,2153,2154,1,0,0,0,2154,299,1,0, - 0,0,2155,2156,5,265,0,0,2156,2157,3,280,140,0,2157,2158,5,266,0, - 0,2158,301,1,0,0,0,2159,2162,3,192,96,0,2160,2162,3,304,152,0,2161, - 2159,1,0,0,0,2161,2160,1,0,0,0,2162,303,1,0,0,0,2163,2164,3,306, - 153,0,2164,305,1,0,0,0,2165,2166,6,153,-1,0,2166,2168,3,310,155, - 0,2167,2169,3,308,154,0,2168,2167,1,0,0,0,2168,2169,1,0,0,0,2169, - 2173,1,0,0,0,2170,2171,5,132,0,0,2171,2173,3,306,153,3,2172,2165, - 1,0,0,0,2172,2170,1,0,0,0,2173,2182,1,0,0,0,2174,2175,10,2,0,0,2175, - 2176,5,5,0,0,2176,2181,3,306,153,3,2177,2178,10,1,0,0,2178,2179, - 5,138,0,0,2179,2181,3,306,153,2,2180,2174,1,0,0,0,2180,2177,1,0, - 0,0,2181,2184,1,0,0,0,2182,2180,1,0,0,0,2182,2183,1,0,0,0,2183,307, - 1,0,0,0,2184,2182,1,0,0,0,2185,2186,3,316,158,0,2186,2187,3,310, - 155,0,2187,2244,1,0,0,0,2188,2189,3,316,158,0,2189,2190,3,318,159, - 0,2190,2191,3,296,148,0,2191,2244,1,0,0,0,2192,2194,5,132,0,0,2193, - 2192,1,0,0,0,2193,2194,1,0,0,0,2194,2195,1,0,0,0,2195,2196,5,15, - 0,0,2196,2197,3,310,155,0,2197,2198,5,5,0,0,2198,2199,3,310,155, - 0,2199,2244,1,0,0,0,2200,2202,5,132,0,0,2201,2200,1,0,0,0,2201,2202, - 1,0,0,0,2202,2203,1,0,0,0,2203,2204,5,94,0,0,2204,2205,5,265,0,0, - 2205,2210,3,304,152,0,2206,2207,5,263,0,0,2207,2209,3,304,152,0, - 2208,2206,1,0,0,0,2209,2212,1,0,0,0,2210,2208,1,0,0,0,2210,2211, - 1,0,0,0,2211,2213,1,0,0,0,2212,2210,1,0,0,0,2213,2214,5,266,0,0, - 2214,2244,1,0,0,0,2215,2217,5,132,0,0,2216,2215,1,0,0,0,2216,2217, - 1,0,0,0,2217,2218,1,0,0,0,2218,2219,5,94,0,0,2219,2244,3,296,148, - 0,2220,2222,5,132,0,0,2221,2220,1,0,0,0,2221,2222,1,0,0,0,2222,2223, - 1,0,0,0,2223,2224,7,18,0,0,2224,2227,3,310,155,0,2225,2226,5,62, - 0,0,2226,2228,3,310,155,0,2227,2225,1,0,0,0,2227,2228,1,0,0,0,2228, - 2244,1,0,0,0,2229,2230,7,19,0,0,2230,2244,3,310,155,0,2231,2233, - 5,108,0,0,2232,2234,5,132,0,0,2233,2232,1,0,0,0,2233,2234,1,0,0, - 0,2234,2235,1,0,0,0,2235,2244,7,20,0,0,2236,2238,5,108,0,0,2237, - 2239,5,132,0,0,2238,2237,1,0,0,0,2238,2239,1,0,0,0,2239,2240,1,0, - 0,0,2240,2241,5,57,0,0,2241,2242,5,82,0,0,2242,2244,3,310,155,0, - 2243,2185,1,0,0,0,2243,2188,1,0,0,0,2243,2193,1,0,0,0,2243,2201, - 1,0,0,0,2243,2216,1,0,0,0,2243,2221,1,0,0,0,2243,2229,1,0,0,0,2243, - 2231,1,0,0,0,2243,2236,1,0,0,0,2244,309,1,0,0,0,2245,2246,6,155, - -1,0,2246,2250,3,312,156,0,2247,2248,7,21,0,0,2248,2250,3,310,155, - 4,2249,2245,1,0,0,0,2249,2247,1,0,0,0,2250,2262,1,0,0,0,2251,2252, - 10,3,0,0,2252,2253,7,22,0,0,2253,2261,3,310,155,4,2254,2255,10,2, - 0,0,2255,2256,7,21,0,0,2256,2261,3,310,155,3,2257,2258,10,1,0,0, - 2258,2259,5,260,0,0,2259,2261,3,310,155,2,2260,2251,1,0,0,0,2260, - 2254,1,0,0,0,2260,2257,1,0,0,0,2261,2264,1,0,0,0,2262,2260,1,0,0, - 0,2262,2263,1,0,0,0,2263,311,1,0,0,0,2264,2262,1,0,0,0,2265,2266, - 6,156,-1,0,2266,2512,5,133,0,0,2267,2512,3,322,161,0,2268,2269,3, - 358,179,0,2269,2270,3,314,157,0,2270,2512,1,0,0,0,2271,2272,5,286, - 0,0,2272,2512,3,314,157,0,2273,2512,3,360,180,0,2274,2512,3,320, - 160,0,2275,2512,3,314,157,0,2276,2512,5,276,0,0,2277,2512,5,272, - 0,0,2278,2279,5,148,0,0,2279,2280,5,265,0,0,2280,2281,3,310,155, - 0,2281,2282,5,94,0,0,2282,2283,3,310,155,0,2283,2284,5,266,0,0,2284, - 2512,1,0,0,0,2285,2286,5,265,0,0,2286,2289,3,304,152,0,2287,2288, - 5,9,0,0,2288,2290,3,328,164,0,2289,2287,1,0,0,0,2289,2290,1,0,0, - 0,2290,2299,1,0,0,0,2291,2292,5,263,0,0,2292,2295,3,304,152,0,2293, - 2294,5,9,0,0,2294,2296,3,328,164,0,2295,2293,1,0,0,0,2295,2296,1, - 0,0,0,2296,2298,1,0,0,0,2297,2291,1,0,0,0,2298,2301,1,0,0,0,2299, - 2300,1,0,0,0,2299,2297,1,0,0,0,2300,2302,1,0,0,0,2301,2299,1,0,0, - 0,2302,2303,5,266,0,0,2303,2512,1,0,0,0,2304,2305,5,168,0,0,2305, - 2306,5,265,0,0,2306,2311,3,304,152,0,2307,2308,5,263,0,0,2308,2310, - 3,304,152,0,2309,2307,1,0,0,0,2310,2313,1,0,0,0,2311,2309,1,0,0, - 0,2311,2312,1,0,0,0,2312,2314,1,0,0,0,2313,2311,1,0,0,0,2314,2315, - 5,266,0,0,2315,2512,1,0,0,0,2316,2317,3,190,95,0,2317,2318,5,265, - 0,0,2318,2319,5,257,0,0,2319,2321,5,266,0,0,2320,2322,3,338,169, - 0,2321,2320,1,0,0,0,2321,2322,1,0,0,0,2322,2324,1,0,0,0,2323,2325, - 3,340,170,0,2324,2323,1,0,0,0,2324,2325,1,0,0,0,2325,2512,1,0,0, - 0,2326,2327,3,190,95,0,2327,2339,5,265,0,0,2328,2330,3,276,138,0, - 2329,2328,1,0,0,0,2329,2330,1,0,0,0,2330,2331,1,0,0,0,2331,2336, - 3,304,152,0,2332,2333,5,263,0,0,2333,2335,3,304,152,0,2334,2332, - 1,0,0,0,2335,2338,1,0,0,0,2336,2334,1,0,0,0,2336,2337,1,0,0,0,2337, - 2340,1,0,0,0,2338,2336,1,0,0,0,2339,2329,1,0,0,0,2339,2340,1,0,0, - 0,2340,2351,1,0,0,0,2341,2342,5,139,0,0,2342,2343,5,26,0,0,2343, - 2348,3,264,132,0,2344,2345,5,263,0,0,2345,2347,3,264,132,0,2346, - 2344,1,0,0,0,2347,2350,1,0,0,0,2348,2346,1,0,0,0,2348,2349,1,0,0, - 0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2351,2341,1,0,0,0,2351,2352, - 1,0,0,0,2352,2353,1,0,0,0,2353,2355,5,266,0,0,2354,2356,3,338,169, - 0,2355,2354,1,0,0,0,2355,2356,1,0,0,0,2356,2358,1,0,0,0,2357,2359, - 3,340,170,0,2358,2357,1,0,0,0,2358,2359,1,0,0,0,2359,2512,1,0,0, - 0,2360,2361,3,358,179,0,2361,2362,5,273,0,0,2362,2363,3,304,152, - 0,2363,2512,1,0,0,0,2364,2373,5,265,0,0,2365,2370,3,358,179,0,2366, - 2367,5,263,0,0,2367,2369,3,358,179,0,2368,2366,1,0,0,0,2369,2372, - 1,0,0,0,2370,2368,1,0,0,0,2370,2371,1,0,0,0,2371,2374,1,0,0,0,2372, - 2370,1,0,0,0,2373,2365,1,0,0,0,2373,2374,1,0,0,0,2374,2375,1,0,0, - 0,2375,2376,5,266,0,0,2376,2377,5,273,0,0,2377,2512,3,304,152,0, - 2378,2379,5,265,0,0,2379,2380,3,204,102,0,2380,2381,5,266,0,0,2381, - 2512,1,0,0,0,2382,2383,5,66,0,0,2383,2384,5,265,0,0,2384,2385,3, - 204,102,0,2385,2386,5,266,0,0,2386,2512,1,0,0,0,2387,2388,5,28,0, - 0,2388,2390,3,310,155,0,2389,2391,3,336,168,0,2390,2389,1,0,0,0, - 2391,2392,1,0,0,0,2392,2390,1,0,0,0,2392,2393,1,0,0,0,2393,2396, - 1,0,0,0,2394,2395,5,59,0,0,2395,2397,3,304,152,0,2396,2394,1,0,0, - 0,2396,2397,1,0,0,0,2397,2398,1,0,0,0,2398,2399,5,61,0,0,2399,2512, - 1,0,0,0,2400,2402,5,28,0,0,2401,2403,3,336,168,0,2402,2401,1,0,0, - 0,2403,2404,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405,2408, - 1,0,0,0,2406,2407,5,59,0,0,2407,2409,3,304,152,0,2408,2406,1,0,0, - 0,2408,2409,1,0,0,0,2409,2410,1,0,0,0,2410,2411,5,61,0,0,2411,2512, - 1,0,0,0,2412,2413,5,29,0,0,2413,2414,5,265,0,0,2414,2415,3,304,152, - 0,2415,2416,5,9,0,0,2416,2417,3,328,164,0,2417,2418,5,266,0,0,2418, - 2512,1,0,0,0,2419,2420,5,195,0,0,2420,2421,5,265,0,0,2421,2422,3, - 304,152,0,2422,2423,5,9,0,0,2423,2424,3,328,164,0,2424,2425,5,266, - 0,0,2425,2512,1,0,0,0,2426,2427,5,8,0,0,2427,2436,5,267,0,0,2428, - 2433,3,304,152,0,2429,2430,5,263,0,0,2430,2432,3,304,152,0,2431, - 2429,1,0,0,0,2432,2435,1,0,0,0,2433,2431,1,0,0,0,2433,2434,1,0,0, - 0,2434,2437,1,0,0,0,2435,2433,1,0,0,0,2436,2428,1,0,0,0,2436,2437, - 1,0,0,0,2437,2438,1,0,0,0,2438,2512,5,268,0,0,2439,2512,3,358,179, - 0,2440,2512,5,40,0,0,2441,2445,5,42,0,0,2442,2443,5,265,0,0,2443, - 2444,5,277,0,0,2444,2446,5,266,0,0,2445,2442,1,0,0,0,2445,2446,1, - 0,0,0,2446,2512,1,0,0,0,2447,2451,5,43,0,0,2448,2449,5,265,0,0,2449, - 2450,5,277,0,0,2450,2452,5,266,0,0,2451,2448,1,0,0,0,2451,2452,1, - 0,0,0,2452,2512,1,0,0,0,2453,2457,5,119,0,0,2454,2455,5,265,0,0, - 2455,2456,5,277,0,0,2456,2458,5,266,0,0,2457,2454,1,0,0,0,2457,2458, - 1,0,0,0,2458,2512,1,0,0,0,2459,2463,5,120,0,0,2460,2461,5,265,0, - 0,2461,2462,5,277,0,0,2462,2464,5,266,0,0,2463,2460,1,0,0,0,2463, - 2464,1,0,0,0,2464,2512,1,0,0,0,2465,2512,5,44,0,0,2466,2512,5,41, - 0,0,2467,2468,5,184,0,0,2468,2469,5,265,0,0,2469,2470,3,310,155, - 0,2470,2471,5,82,0,0,2471,2474,3,310,155,0,2472,2473,5,78,0,0,2473, - 2475,3,310,155,0,2474,2472,1,0,0,0,2474,2475,1,0,0,0,2475,2476,1, - 0,0,0,2476,2477,5,266,0,0,2477,2512,1,0,0,0,2478,2479,5,131,0,0, - 2479,2480,5,265,0,0,2480,2483,3,310,155,0,2481,2482,5,263,0,0,2482, - 2484,3,326,163,0,2483,2481,1,0,0,0,2483,2484,1,0,0,0,2484,2485,1, - 0,0,0,2485,2486,5,266,0,0,2486,2512,1,0,0,0,2487,2488,5,68,0,0,2488, - 2489,5,265,0,0,2489,2490,3,358,179,0,2490,2491,5,82,0,0,2491,2492, - 3,310,155,0,2492,2493,5,266,0,0,2493,2512,1,0,0,0,2494,2495,5,265, - 0,0,2495,2496,3,304,152,0,2496,2497,5,266,0,0,2497,2512,1,0,0,0, - 2498,2499,5,88,0,0,2499,2508,5,265,0,0,2500,2505,3,354,177,0,2501, - 2502,5,263,0,0,2502,2504,3,354,177,0,2503,2501,1,0,0,0,2504,2507, - 1,0,0,0,2505,2503,1,0,0,0,2505,2506,1,0,0,0,2506,2509,1,0,0,0,2507, - 2505,1,0,0,0,2508,2500,1,0,0,0,2508,2509,1,0,0,0,2509,2510,1,0,0, - 0,2510,2512,5,266,0,0,2511,2265,1,0,0,0,2511,2267,1,0,0,0,2511,2268, - 1,0,0,0,2511,2271,1,0,0,0,2511,2273,1,0,0,0,2511,2274,1,0,0,0,2511, - 2275,1,0,0,0,2511,2276,1,0,0,0,2511,2277,1,0,0,0,2511,2278,1,0,0, - 0,2511,2285,1,0,0,0,2511,2304,1,0,0,0,2511,2316,1,0,0,0,2511,2326, - 1,0,0,0,2511,2360,1,0,0,0,2511,2364,1,0,0,0,2511,2378,1,0,0,0,2511, - 2382,1,0,0,0,2511,2387,1,0,0,0,2511,2400,1,0,0,0,2511,2412,1,0,0, - 0,2511,2419,1,0,0,0,2511,2426,1,0,0,0,2511,2439,1,0,0,0,2511,2440, - 1,0,0,0,2511,2441,1,0,0,0,2511,2447,1,0,0,0,2511,2453,1,0,0,0,2511, - 2459,1,0,0,0,2511,2465,1,0,0,0,2511,2466,1,0,0,0,2511,2467,1,0,0, - 0,2511,2478,1,0,0,0,2511,2487,1,0,0,0,2511,2494,1,0,0,0,2511,2498, - 1,0,0,0,2512,2523,1,0,0,0,2513,2514,10,15,0,0,2514,2515,5,267,0, - 0,2515,2516,3,310,155,0,2516,2517,5,268,0,0,2517,2522,1,0,0,0,2518, - 2519,10,13,0,0,2519,2520,5,261,0,0,2520,2522,3,358,179,0,2521,2513, - 1,0,0,0,2521,2518,1,0,0,0,2522,2525,1,0,0,0,2523,2521,1,0,0,0,2523, - 2524,1,0,0,0,2524,313,1,0,0,0,2525,2523,1,0,0,0,2526,2533,5,274, - 0,0,2527,2530,5,275,0,0,2528,2529,5,198,0,0,2529,2531,5,274,0,0, - 2530,2528,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0,0,2532,2526, - 1,0,0,0,2532,2527,1,0,0,0,2533,315,1,0,0,0,2534,2535,7,23,0,0,2535, - 317,1,0,0,0,2536,2537,7,24,0,0,2537,319,1,0,0,0,2538,2539,7,25,0, - 0,2539,321,1,0,0,0,2540,2541,5,277,0,0,2541,2555,3,324,162,0,2542, - 2543,5,265,0,0,2543,2544,5,277,0,0,2544,2545,5,266,0,0,2545,2555, - 3,324,162,0,2546,2547,5,101,0,0,2547,2548,5,277,0,0,2548,2555,3, - 324,162,0,2549,2550,5,101,0,0,2550,2551,5,265,0,0,2551,2552,5,277, - 0,0,2552,2553,5,266,0,0,2553,2555,3,324,162,0,2554,2540,1,0,0,0, - 2554,2542,1,0,0,0,2554,2546,1,0,0,0,2554,2549,1,0,0,0,2555,323,1, - 0,0,0,2556,2557,7,26,0,0,2557,325,1,0,0,0,2558,2559,7,27,0,0,2559, - 327,1,0,0,0,2560,2561,6,164,-1,0,2561,2562,5,8,0,0,2562,2563,5,251, - 0,0,2563,2564,3,328,164,0,2564,2565,5,253,0,0,2565,2606,1,0,0,0, - 2566,2567,5,235,0,0,2567,2568,5,251,0,0,2568,2569,3,328,164,0,2569, - 2570,5,263,0,0,2570,2571,3,328,164,0,2571,2572,5,253,0,0,2572,2606, - 1,0,0,0,2573,2574,5,240,0,0,2574,2575,5,251,0,0,2575,2576,3,358, - 179,0,2576,2583,3,328,164,0,2577,2578,5,263,0,0,2578,2579,3,358, - 179,0,2579,2580,3,328,164,0,2580,2582,1,0,0,0,2581,2577,1,0,0,0, - 2582,2585,1,0,0,0,2583,2581,1,0,0,0,2583,2584,1,0,0,0,2584,2586, - 1,0,0,0,2585,2583,1,0,0,0,2586,2587,5,253,0,0,2587,2606,1,0,0,0, - 2588,2591,3,334,167,0,2589,2591,3,330,165,0,2590,2588,1,0,0,0,2590, - 2589,1,0,0,0,2591,2603,1,0,0,0,2592,2593,5,265,0,0,2593,2598,3,332, - 166,0,2594,2595,5,263,0,0,2595,2597,3,332,166,0,2596,2594,1,0,0, - 0,2597,2600,1,0,0,0,2598,2596,1,0,0,0,2598,2599,1,0,0,0,2599,2601, - 1,0,0,0,2600,2598,1,0,0,0,2601,2602,5,266,0,0,2602,2604,1,0,0,0, - 2603,2592,1,0,0,0,2603,2604,1,0,0,0,2604,2606,1,0,0,0,2605,2560, - 1,0,0,0,2605,2566,1,0,0,0,2605,2573,1,0,0,0,2605,2590,1,0,0,0,2606, - 2611,1,0,0,0,2607,2608,10,5,0,0,2608,2610,5,8,0,0,2609,2607,1,0, - 0,0,2610,2613,1,0,0,0,2611,2609,1,0,0,0,2611,2612,1,0,0,0,2612,329, - 1,0,0,0,2613,2611,1,0,0,0,2614,2615,7,28,0,0,2615,331,1,0,0,0,2616, - 2619,5,277,0,0,2617,2619,3,328,164,0,2618,2616,1,0,0,0,2618,2617, - 1,0,0,0,2619,333,1,0,0,0,2620,2625,5,284,0,0,2621,2625,5,285,0,0, - 2622,2625,5,286,0,0,2623,2625,3,358,179,0,2624,2620,1,0,0,0,2624, - 2621,1,0,0,0,2624,2622,1,0,0,0,2624,2623,1,0,0,0,2625,335,1,0,0, - 0,2626,2627,5,214,0,0,2627,2628,3,304,152,0,2628,2629,5,192,0,0, - 2629,2630,3,304,152,0,2630,337,1,0,0,0,2631,2632,5,74,0,0,2632,2633, - 5,265,0,0,2633,2634,5,215,0,0,2634,2635,3,306,153,0,2635,2636,5, - 266,0,0,2636,339,1,0,0,0,2637,2638,5,143,0,0,2638,2649,5,265,0,0, - 2639,2640,5,145,0,0,2640,2641,5,26,0,0,2641,2646,3,304,152,0,2642, - 2643,5,263,0,0,2643,2645,3,304,152,0,2644,2642,1,0,0,0,2645,2648, - 1,0,0,0,2646,2644,1,0,0,0,2646,2647,1,0,0,0,2647,2650,1,0,0,0,2648, - 2646,1,0,0,0,2649,2639,1,0,0,0,2649,2650,1,0,0,0,2650,2661,1,0,0, - 0,2651,2652,5,139,0,0,2652,2653,5,26,0,0,2653,2658,3,264,132,0,2654, - 2655,5,263,0,0,2655,2657,3,264,132,0,2656,2654,1,0,0,0,2657,2660, - 1,0,0,0,2658,2656,1,0,0,0,2658,2659,1,0,0,0,2659,2662,1,0,0,0,2660, - 2658,1,0,0,0,2661,2651,1,0,0,0,2661,2662,1,0,0,0,2662,2664,1,0,0, - 0,2663,2665,3,342,171,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665, - 2666,1,0,0,0,2666,2667,5,266,0,0,2667,341,1,0,0,0,2668,2669,5,154, - 0,0,2669,2685,3,344,172,0,2670,2671,5,169,0,0,2671,2685,3,344,172, - 0,2672,2673,5,154,0,0,2673,2674,5,15,0,0,2674,2675,3,344,172,0,2675, - 2676,5,5,0,0,2676,2677,3,344,172,0,2677,2685,1,0,0,0,2678,2679,5, - 169,0,0,2679,2680,5,15,0,0,2680,2681,3,344,172,0,2681,2682,5,5,0, - 0,2682,2683,3,344,172,0,2683,2685,1,0,0,0,2684,2668,1,0,0,0,2684, - 2670,1,0,0,0,2684,2672,1,0,0,0,2684,2678,1,0,0,0,2685,343,1,0,0, - 0,2686,2687,5,199,0,0,2687,2696,5,149,0,0,2688,2689,5,199,0,0,2689, - 2696,5,77,0,0,2690,2691,5,39,0,0,2691,2696,5,168,0,0,2692,2693,3, - 304,152,0,2693,2694,7,29,0,0,2694,2696,1,0,0,0,2695,2686,1,0,0,0, - 2695,2688,1,0,0,0,2695,2690,1,0,0,0,2695,2692,1,0,0,0,2696,345,1, - 0,0,0,2697,2698,3,358,179,0,2698,2699,5,261,0,0,2699,2700,3,358, - 179,0,2700,2703,1,0,0,0,2701,2703,3,358,179,0,2702,2697,1,0,0,0, - 2702,2701,1,0,0,0,2703,347,1,0,0,0,2704,2709,3,346,173,0,2705,2706, - 5,263,0,0,2706,2708,3,346,173,0,2707,2705,1,0,0,0,2708,2711,1,0, - 0,0,2709,2707,1,0,0,0,2709,2710,1,0,0,0,2710,349,1,0,0,0,2711,2709, - 1,0,0,0,2712,2726,5,2,0,0,2713,2726,5,4,0,0,2714,2726,5,58,0,0,2715, - 2726,5,37,0,0,2716,2726,5,99,0,0,2717,2726,5,162,0,0,2718,2723,5, - 174,0,0,2719,2720,5,265,0,0,2720,2721,3,358,179,0,2721,2722,5,266, - 0,0,2722,2724,1,0,0,0,2723,2719,1,0,0,0,2723,2724,1,0,0,0,2724,2726, - 1,0,0,0,2725,2712,1,0,0,0,2725,2713,1,0,0,0,2725,2714,1,0,0,0,2725, - 2715,1,0,0,0,2725,2716,1,0,0,0,2725,2717,1,0,0,0,2725,2718,1,0,0, - 0,2726,351,1,0,0,0,2727,2728,7,30,0,0,2728,353,1,0,0,0,2729,2734, - 3,358,179,0,2730,2731,5,261,0,0,2731,2733,3,358,179,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, - 355,1,0,0,0,2736,2734,1,0,0,0,2737,2738,5,166,0,0,2738,2744,3,358, - 179,0,2739,2740,5,204,0,0,2740,2744,3,358,179,0,2741,2742,5,87,0, - 0,2742,2744,3,358,179,0,2743,2737,1,0,0,0,2743,2739,1,0,0,0,2743, - 2741,1,0,0,0,2744,357,1,0,0,0,2745,2751,5,280,0,0,2746,2751,5,274, - 0,0,2747,2751,3,364,182,0,2748,2751,5,283,0,0,2749,2751,5,281,0, - 0,2750,2745,1,0,0,0,2750,2746,1,0,0,0,2750,2747,1,0,0,0,2750,2748, - 1,0,0,0,2750,2749,1,0,0,0,2751,359,1,0,0,0,2752,2754,5,256,0,0,2753, - 2752,1,0,0,0,2753,2754,1,0,0,0,2754,2755,1,0,0,0,2755,2765,5,278, - 0,0,2756,2758,5,256,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758, - 2759,1,0,0,0,2759,2765,5,279,0,0,2760,2762,5,256,0,0,2761,2760,1, - 0,0,0,2761,2762,1,0,0,0,2762,2763,1,0,0,0,2763,2765,5,277,0,0,2764, - 2753,1,0,0,0,2764,2757,1,0,0,0,2764,2761,1,0,0,0,2765,361,1,0,0, - 0,2766,2767,7,31,0,0,2767,363,1,0,0,0,2768,2769,7,32,0,0,2769,365, - 1,0,0,0,352,369,376,400,413,417,421,430,435,439,445,447,452,456, - 460,467,472,478,482,491,498,502,507,509,514,518,525,529,534,538, - 542,546,554,559,563,571,575,584,587,590,596,603,614,619,624,629, - 634,643,646,649,653,679,705,714,724,727,741,759,761,770,781,790, - 797,801,808,814,817,822,829,843,856,861,866,872,908,911,917,920, - 926,932,944,946,957,965,970,974,979,986,990,994,1000,1004,1008,1017, - 1020,1023,1031,1045,1052,1065,1071,1076,1079,1082,1087,1091,1100, - 1105,1111,1115,1120,1125,1128,1136,1139,1143,1155,1158,1162,1167, - 1171,1187,1192,1199,1202,1208,1211,1218,1221,1225,1230,1233,1240, - 1243,1267,1281,1285,1289,1309,1311,1313,1322,1324,1333,1335,1344, - 1346,1351,1360,1369,1378,1389,1395,1400,1403,1416,1426,1430,1435, - 1446,1451,1484,1492,1497,1501,1505,1510,1514,1519,1524,1529,1533, - 1542,1545,1549,1556,1567,1573,1577,1583,1593,1600,1605,1610,1615, - 1621,1624,1633,1636,1639,1645,1651,1661,1664,1668,1672,1679,1682, - 1688,1694,1697,1700,1704,1714,1725,1730,1733,1737,1744,1754,1766, - 1772,1774,1783,1786,1793,1803,1809,1817,1828,1838,1849,1851,1857, - 1862,1872,1875,1881,1883,1891,1897,1900,1902,1914,1921,1925,1929, - 1933,1936,1943,1952,1955,1959,1964,1968,1971,1978,1989,1992,1996, - 2000,2009,2012,2019,2033,2037,2041,2045,2049,2053,2057,2061,2071, - 2082,2087,2100,2102,2108,2112,2114,2122,2129,2134,2147,2153,2161, - 2168,2172,2180,2182,2193,2201,2210,2216,2221,2227,2233,2238,2243, - 2249,2260,2262,2289,2295,2299,2311,2321,2324,2329,2336,2339,2348, - 2351,2355,2358,2370,2373,2392,2396,2404,2408,2433,2436,2445,2451, - 2457,2463,2474,2483,2505,2508,2511,2521,2523,2530,2532,2554,2583, - 2590,2598,2603,2605,2611,2618,2624,2646,2649,2658,2661,2664,2684, - 2695,2702,2709,2723,2725,2734,2743,2750,2753,2757,2761,2764 + 1,13,1,13,1,13,1,13,3,13,681,8,13,1,14,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,3,15,707,8,15,1,15,1,15,1,16,1,16,1,16, + 1,16,1,16,3,16,716,8,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16, + 3,16,726,8,16,1,16,3,16,729,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1, + 17,1,18,1,18,1,18,1,18,1,18,3,18,743,8,18,1,18,1,18,1,19,1,19,1, + 19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,761, + 8,20,3,20,763,8,20,1,20,1,20,1,20,1,20,1,20,5,20,770,8,20,10,20, + 12,20,773,9,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,783, + 8,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,3,22,792,8,22,1,22,1,22, + 1,22,1,22,1,22,3,22,799,8,22,1,22,1,22,3,22,803,8,22,1,23,1,23,1, + 23,1,23,1,23,3,23,810,8,23,1,23,1,23,1,23,1,23,3,23,816,8,23,1,23, + 3,23,819,8,23,1,23,1,23,1,23,3,23,824,8,23,1,24,1,24,1,24,1,24,1, + 24,3,24,831,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1, + 24,1,24,1,24,3,24,845,8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1, + 26,1,26,1,26,1,26,3,26,858,8,26,1,26,1,26,1,26,3,26,863,8,26,1,26, + 1,26,1,26,3,26,868,8,26,1,27,1,27,1,27,1,27,3,27,874,8,27,1,27,1, + 27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1, + 29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1, + 31,1,31,1,31,1,31,1,31,1,32,1,32,3,32,910,8,32,1,32,3,32,913,8,32, + 1,32,1,32,1,33,1,33,3,33,919,8,33,1,33,3,33,922,8,33,1,33,1,33,1, + 34,1,34,3,34,928,8,34,1,35,1,35,1,35,1,35,3,35,934,8,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,946,8,35,3,35,948,8, + 35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,959,8,36,1, + 37,1,37,1,37,1,37,1,37,1,37,3,37,967,8,37,1,38,1,38,1,38,3,38,972, + 8,38,1,38,1,38,3,38,976,8,38,1,39,1,39,1,39,3,39,981,8,39,1,39,1, + 39,1,40,1,40,1,40,3,40,988,8,40,1,40,1,40,3,40,992,8,40,1,41,1,41, + 3,41,996,8,41,1,41,1,41,1,41,1,41,3,41,1002,8,41,1,42,1,42,3,42, + 1006,8,42,1,42,1,42,3,42,1010,8,42,1,42,1,42,1,42,1,42,1,42,5,42, + 1017,8,42,10,42,12,42,1020,9,42,3,42,1022,8,42,1,42,3,42,1025,8, + 42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1033,8,44,1,45,1,45,1,45,1, + 45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,3,46,1047,8,46,1,46,1, + 46,1,46,1,47,1,47,3,47,1054,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1, + 48,1,49,1,49,1,49,1,49,3,49,1067,8,49,1,49,1,49,1,49,1,49,3,49,1073, + 8,49,1,49,1,49,1,49,3,49,1078,8,49,1,49,3,49,1081,8,49,1,50,3,50, + 1084,8,50,1,50,1,50,1,50,3,50,1089,8,50,1,50,1,50,3,50,1093,8,50, + 1,50,1,50,1,50,1,50,1,50,5,50,1100,8,50,10,50,12,50,1103,9,50,1, + 50,1,50,3,50,1107,8,50,1,50,1,50,1,51,1,51,3,51,1113,8,51,1,52,1, + 52,3,52,1117,8,52,1,52,1,52,1,52,3,52,1122,8,52,1,53,1,53,1,53,3, + 53,1127,8,53,1,53,3,53,1130,8,53,1,53,1,53,1,53,1,53,5,53,1136,8, + 53,10,53,12,53,1139,9,53,3,53,1141,8,53,1,53,1,53,3,53,1145,8,53, + 1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1155,8,54,10,54,12, + 54,1158,9,54,3,54,1160,8,54,1,54,1,54,3,54,1164,8,54,1,55,1,55,1, + 55,3,55,1169,8,55,1,55,1,55,3,55,1173,8,55,1,55,1,55,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1189,8,56,1, + 57,1,57,1,57,3,57,1194,8,57,1,57,1,57,1,57,5,57,1199,8,57,10,57, + 12,57,1202,9,57,3,57,1204,8,57,1,58,1,58,1,58,1,58,3,58,1210,8,58, + 1,58,3,58,1213,8,58,1,58,1,58,1,58,5,58,1218,8,58,10,58,12,58,1221, + 9,58,3,58,1223,8,58,1,59,1,59,3,59,1227,8,59,1,59,1,59,1,59,3,59, + 1232,8,59,1,59,3,59,1235,8,59,1,59,1,59,1,59,5,59,1240,8,59,10,59, + 12,59,1243,9,59,3,59,1245,8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61, + 1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63, + 1,64,1,64,3,64,1269,8,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65, + 1,65,1,65,1,65,1,65,3,65,1283,8,65,1,65,1,65,3,65,1287,8,65,1,66, + 1,66,3,66,1291,8,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68, + 1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,1311,8,68,3,68, + 1313,8,68,3,68,1315,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69, + 1324,8,69,3,69,1326,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70, + 1335,8,70,3,70,1337,8,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71, + 1346,8,71,3,71,1348,8,71,1,72,1,72,1,72,3,72,1353,8,72,1,73,1,73, + 1,73,1,73,1,73,1,73,1,73,3,73,1362,8,73,1,74,1,74,1,74,1,74,1,74, + 1,74,1,74,3,74,1371,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75, + 1380,8,75,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,3,77,1391, + 8,77,1,78,1,78,1,78,1,78,3,78,1397,8,78,1,78,1,78,1,78,3,78,1402, + 8,78,1,78,3,78,1405,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80, + 1,80,1,80,1,80,3,80,1418,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, + 1,80,3,80,1428,8,80,1,80,1,80,3,80,1432,8,80,1,81,1,81,1,81,3,81, + 1437,8,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,5,82,1446,8,82,10,82, + 12,82,1449,9,82,1,82,1,82,3,82,1453,8,82,1,83,1,83,1,83,1,84,1,84, + 1,84,1,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88, + 1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1484, + 8,93,10,93,12,93,1487,9,93,1,94,1,94,1,94,5,94,1492,8,94,10,94,12, + 94,1495,9,94,1,95,1,95,3,95,1499,8,95,1,96,1,96,3,96,1503,8,96,1, + 97,1,97,3,97,1507,8,97,1,98,1,98,1,98,3,98,1512,8,98,1,98,3,98,1515, + 8,98,1,98,1,98,1,98,3,98,1520,8,98,1,98,1,98,1,98,3,98,1525,8,98, + 1,98,1,98,1,98,3,98,1530,8,98,1,98,1,98,3,98,1534,8,98,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,3,98,1543,8,98,1,98,3,98,1546,8,98,1,98, + 1,98,3,98,1550,8,98,1,99,1,99,1,99,5,99,1555,8,99,10,99,12,99,1558, + 9,99,1,100,1,100,1,100,1,100,1,101,1,101,3,101,1566,8,101,1,101, + 1,101,3,101,1570,8,101,5,101,1572,8,101,10,101,12,101,1575,9,101, + 1,101,1,101,1,102,1,102,3,102,1581,8,102,1,103,3,103,1584,8,103, + 1,103,1,103,1,104,1,104,1,104,1,104,5,104,1592,8,104,10,104,12,104, + 1595,9,104,1,105,1,105,1,105,1,105,3,105,1601,8,105,1,105,1,105, + 1,105,3,105,1606,8,105,1,105,1,105,1,105,3,105,1611,8,105,1,105, + 1,105,1,105,3,105,1616,8,105,1,105,1,105,5,105,1620,8,105,10,105, + 12,105,1623,9,105,3,105,1625,8,105,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,3,106,1634,8,106,1,106,3,106,1637,8,106,1,106,3,106, + 1640,8,106,1,107,1,107,1,107,1,107,3,107,1646,8,107,1,108,1,108, + 1,108,3,108,1651,8,108,1,109,1,109,1,110,1,110,1,110,1,110,5,110, + 1659,8,110,10,110,12,110,1662,9,110,3,110,1664,8,110,1,110,3,110, + 1667,8,110,1,110,1,110,3,110,1671,8,110,1,111,1,111,1,111,1,112, + 1,112,1,112,5,112,1679,8,112,10,112,12,112,1682,9,112,3,112,1684, + 8,112,1,113,1,113,1,113,1,113,3,113,1690,8,113,1,113,1,113,5,113, + 1694,8,113,10,113,12,113,1697,9,113,3,113,1699,8,113,1,114,3,114, + 1702,8,114,1,114,1,114,3,114,1706,8,114,1,115,1,115,1,115,1,115, + 1,115,1,115,1,115,1,115,3,115,1716,8,115,1,116,1,116,1,117,1,117, + 1,118,1,118,1,118,5,118,1725,8,118,10,118,12,118,1728,9,118,1,118, + 1,118,3,118,1732,8,118,1,118,3,118,1735,8,118,1,119,1,119,3,119, + 1739,8,119,1,119,1,119,1,119,1,120,1,120,3,120,1746,8,120,1,120, + 1,120,1,120,1,120,1,120,1,120,5,120,1754,8,120,10,120,12,120,1757, + 9,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, + 1768,8,121,1,121,1,121,1,121,1,121,3,121,1774,8,121,3,121,1776,8, + 121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1785,8,122,1, + 122,3,122,1788,8,122,1,123,1,123,1,123,1,123,1,123,3,123,1795,8, + 123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,1805,8, + 124,1,125,1,125,1,125,1,125,3,125,1811,8,125,1,126,1,126,1,126,1, + 126,5,126,1817,8,126,10,126,12,126,1820,9,126,1,126,1,126,1,127, + 1,127,1,127,1,127,5,127,1828,8,127,10,127,12,127,1831,9,127,1,127, + 1,127,1,128,1,128,1,128,5,128,1838,8,128,10,128,12,128,1841,9,128, + 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,1851,8,129, + 3,129,1853,8,129,1,129,1,129,1,129,1,129,3,129,1859,8,129,1,130, + 1,130,1,130,3,130,1864,8,130,1,131,1,131,1,131,1,131,1,131,1,131, + 5,131,1872,8,131,10,131,12,131,1875,9,131,3,131,1877,8,131,1,131, + 1,131,1,131,1,131,3,131,1883,8,131,3,131,1885,8,131,1,132,1,132, + 1,132,1,132,1,132,1,132,3,132,1893,8,132,1,132,1,132,1,132,1,132, + 3,132,1899,8,132,1,132,5,132,1902,8,132,10,132,12,132,1905,9,132, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1914,8,133,10,133, + 12,133,1917,9,133,1,133,1,133,1,133,1,133,3,133,1923,8,133,1,134, + 1,134,3,134,1927,8,134,1,134,1,134,3,134,1931,8,134,1,135,1,135, + 3,135,1935,8,135,1,135,3,135,1938,8,135,1,135,1,135,1,135,5,135, + 1943,8,135,10,135,12,135,1946,9,135,1,135,1,135,1,135,1,135,5,135, + 1952,8,135,10,135,12,135,1955,9,135,3,135,1957,8,135,1,135,1,135, + 3,135,1961,8,135,1,135,1,135,1,135,3,135,1966,8,135,1,135,1,135, + 3,135,1970,8,135,1,136,3,136,1973,8,136,1,136,1,136,1,136,5,136, + 1978,8,136,10,136,12,136,1981,9,136,1,137,1,137,1,138,1,138,1,138, + 1,138,5,138,1989,8,138,10,138,12,138,1992,9,138,3,138,1994,8,138, + 1,138,1,138,3,138,1998,8,138,1,139,1,139,3,139,2002,8,139,1,139, + 1,139,1,139,1,140,1,140,1,141,1,141,3,141,2011,8,141,1,141,3,141, + 2014,8,141,1,141,1,141,1,141,1,141,1,141,3,141,2021,8,141,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 3,142,2035,8,142,5,142,2037,8,142,10,142,12,142,2040,9,142,1,143, + 3,143,2043,8,143,1,143,1,143,3,143,2047,8,143,1,143,1,143,3,143, + 2051,8,143,1,143,1,143,3,143,2055,8,143,1,143,1,143,3,143,2059,8, + 143,1,143,1,143,3,143,2063,8,143,1,143,1,143,1,143,1,143,1,143,1, + 143,1,143,1,143,3,143,2073,8,143,1,144,1,144,1,144,1,144,1,144,1, + 144,1,144,5,144,2082,8,144,10,144,12,144,2085,9,144,1,144,1,144, + 3,144,2089,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,145,1,145,1,145,3,145,2102,8,145,3,145,2104,8,145,1,146,1,146, + 1,147,1,147,3,147,2110,8,147,1,147,1,147,3,147,2114,8,147,3,147, + 2116,8,147,1,148,1,148,1,148,1,148,5,148,2122,8,148,10,148,12,148, + 2125,9,148,1,148,1,148,1,149,1,149,3,149,2131,8,149,1,149,1,149, + 1,149,3,149,2136,8,149,1,150,1,150,1,150,1,150,1,151,1,151,1,151, + 1,151,1,151,5,151,2147,8,151,10,151,12,151,2150,9,151,1,151,1,151, + 1,151,3,151,2155,8,151,1,152,1,152,1,152,1,152,1,153,1,153,3,153, + 2163,8,153,1,154,1,154,1,155,1,155,1,155,3,155,2170,8,155,1,155, + 1,155,3,155,2174,8,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155, + 2182,8,155,10,155,12,155,2185,9,155,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,3,156,2195,8,156,1,156,1,156,1,156,1,156,1,156, + 1,156,3,156,2203,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2210, + 8,156,10,156,12,156,2213,9,156,1,156,1,156,1,156,3,156,2218,8,156, + 1,156,1,156,1,156,3,156,2223,8,156,1,156,1,156,1,156,1,156,3,156, + 2229,8,156,1,156,1,156,1,156,1,156,3,156,2235,8,156,1,156,1,156, + 1,156,3,156,2240,8,156,1,156,1,156,1,156,3,156,2245,8,156,1,157, + 1,157,1,157,1,157,3,157,2251,8,157,1,157,1,157,1,157,1,157,1,157, + 1,157,1,157,1,157,1,157,5,157,2262,8,157,10,157,12,157,2265,9,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,1,158,1,158,1,158,1,158,1,158,1,158,1,158, + 1,158,1,158,3,158,2291,8,158,1,158,1,158,1,158,1,158,3,158,2297, + 8,158,5,158,2299,8,158,10,158,12,158,2302,9,158,1,158,1,158,1,158, + 1,158,1,158,1,158,1,158,5,158,2311,8,158,10,158,12,158,2314,9,158, + 1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158,2323,8,158,1,158, + 3,158,2326,8,158,1,158,1,158,1,158,3,158,2331,8,158,1,158,1,158, + 1,158,5,158,2336,8,158,10,158,12,158,2339,9,158,3,158,2341,8,158, + 1,158,1,158,1,158,1,158,1,158,5,158,2348,8,158,10,158,12,158,2351, + 9,158,3,158,2353,8,158,1,158,1,158,3,158,2357,8,158,1,158,3,158, + 2360,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158, + 2370,8,158,10,158,12,158,2373,9,158,3,158,2375,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,4,158,2392,8,158,11,158,12,158,2393,1,158,1,158,3,158, + 2398,8,158,1,158,1,158,1,158,1,158,4,158,2404,8,158,11,158,12,158, + 2405,1,158,1,158,3,158,2410,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,1,158, + 1,158,1,158,1,158,1,158,1,158,5,158,2433,8,158,10,158,12,158,2436, + 9,158,3,158,2438,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, + 3,158,2447,8,158,1,158,1,158,1,158,1,158,3,158,2453,8,158,1,158, + 1,158,1,158,1,158,3,158,2459,8,158,1,158,1,158,1,158,1,158,3,158, + 2465,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, + 3,158,2476,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158, + 2485,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,1,158,1,158,1,158,5,158,2505, + 8,158,10,158,12,158,2508,9,158,3,158,2510,8,158,1,158,3,158,2513, + 8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158,2523, + 8,158,10,158,12,158,2526,9,158,1,159,1,159,1,159,1,159,3,159,2532, + 8,159,3,159,2534,8,159,1,160,1,160,1,161,1,161,1,162,1,162,1,163, + 1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163, + 1,163,1,163,3,163,2556,8,163,1,164,1,164,1,165,1,165,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,1,166,5,166,2583,8,166, + 10,166,12,166,2586,9,166,1,166,1,166,1,166,1,166,3,166,2592,8,166, + 1,166,1,166,1,166,1,166,5,166,2598,8,166,10,166,12,166,2601,9,166, + 1,166,1,166,3,166,2605,8,166,3,166,2607,8,166,1,166,1,166,5,166, + 2611,8,166,10,166,12,166,2614,9,166,1,167,1,167,1,168,1,168,3,168, + 2620,8,168,1,169,1,169,1,169,1,169,3,169,2626,8,169,1,170,1,170, + 1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172, + 1,172,1,172,1,172,1,172,1,172,5,172,2646,8,172,10,172,12,172,2649, + 9,172,3,172,2651,8,172,1,172,1,172,1,172,1,172,1,172,5,172,2658, + 8,172,10,172,12,172,2661,9,172,3,172,2663,8,172,1,172,3,172,2666, + 8,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,3,173,2686,8,173, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2697, + 8,174,1,175,1,175,1,175,1,175,1,175,3,175,2704,8,175,1,176,1,176, + 1,176,5,176,2709,8,176,10,176,12,176,2712,9,176,1,177,1,177,1,177, + 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2725,8,177, + 3,177,2727,8,177,1,178,1,178,1,179,1,179,1,179,5,179,2734,8,179, + 10,179,12,179,2737,9,179,1,180,1,180,1,180,1,180,1,180,1,180,3,180, + 2745,8,180,1,181,1,181,1,181,1,181,1,181,3,181,2752,8,181,1,182, + 3,182,2755,8,182,1,182,1,182,3,182,2759,8,182,1,182,1,182,3,182, + 2763,8,182,1,182,3,182,2766,8,182,1,183,1,183,1,184,1,184,1,184, + 10,771,1447,1621,1660,1680,1695,1726,1755,1829,2300,6,264,284,310, + 314,316,332,185,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,0,33,2,0, + 46,46,170,170,2,0,166,166,204,204,2,0,176,176,202,202,2,0,69,69, + 80,80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47,47,171,171,2, + 0,3,3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209,209,1,0,245, + 248,2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200,200,2,0,10, + 10,55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106, + 106,115,115,164,164,2,0,105,105,163,163,4,0,70,70,133,133,194,194, + 208,208,1,0,255,256,1,0,257,259,1,0,249,254,3,0,2,2,6,6,181,181, + 2,0,70,70,194,194,5,0,48,49,91,92,122,125,172,173,217,218,1,0,127, + 130,2,0,8,8,227,244,2,0,77,77,149,149,4,0,46,46,178,178,188,188, + 209,209,16,0,28,29,40,40,43,43,48,48,68,68,91,91,114,114,122,122, + 124,124,158,158,165,165,172,172,184,184,196,196,204,204,217,217, + 23,0,14,14,43,44,48,49,65,65,68,68,91,91,95,95,110,110,119,119,122, + 125,127,130,137,137,140,140,152,153,172,173,180,180,184,185,195, + 195,204,204,213,213,217,217,220,220,231,231,3093,0,373,1,0,0,0,2, + 378,1,0,0,0,4,404,1,0,0,0,6,406,1,0,0,0,8,417,1,0,0,0,10,419,1,0, + 0,0,12,458,1,0,0,0,14,480,1,0,0,0,16,534,1,0,0,0,18,553,1,0,0,0, + 20,566,1,0,0,0,22,570,1,0,0,0,24,632,1,0,0,0,26,680,1,0,0,0,28,682, + 1,0,0,0,30,690,1,0,0,0,32,710,1,0,0,0,34,730,1,0,0,0,36,737,1,0, + 0,0,38,746,1,0,0,0,40,754,1,0,0,0,42,776,1,0,0,0,44,786,1,0,0,0, + 46,804,1,0,0,0,48,825,1,0,0,0,50,846,1,0,0,0,52,852,1,0,0,0,54,869, + 1,0,0,0,56,878,1,0,0,0,58,885,1,0,0,0,60,893,1,0,0,0,62,900,1,0, + 0,0,64,907,1,0,0,0,66,916,1,0,0,0,68,927,1,0,0,0,70,929,1,0,0,0, + 72,949,1,0,0,0,74,966,1,0,0,0,76,968,1,0,0,0,78,977,1,0,0,0,80,984, + 1,0,0,0,82,993,1,0,0,0,84,1003,1,0,0,0,86,1026,1,0,0,0,88,1032,1, + 0,0,0,90,1034,1,0,0,0,92,1041,1,0,0,0,94,1053,1,0,0,0,96,1055,1, + 0,0,0,98,1062,1,0,0,0,100,1083,1,0,0,0,102,1112,1,0,0,0,104,1114, + 1,0,0,0,106,1123,1,0,0,0,108,1146,1,0,0,0,110,1165,1,0,0,0,112,1188, + 1,0,0,0,114,1190,1,0,0,0,116,1205,1,0,0,0,118,1224,1,0,0,0,120,1246, + 1,0,0,0,122,1251,1,0,0,0,124,1256,1,0,0,0,126,1261,1,0,0,0,128,1266, + 1,0,0,0,130,1273,1,0,0,0,132,1288,1,0,0,0,134,1294,1,0,0,0,136,1314, + 1,0,0,0,138,1316,1,0,0,0,140,1327,1,0,0,0,142,1338,1,0,0,0,144,1352, + 1,0,0,0,146,1354,1,0,0,0,148,1363,1,0,0,0,150,1372,1,0,0,0,152,1381, + 1,0,0,0,154,1384,1,0,0,0,156,1392,1,0,0,0,158,1408,1,0,0,0,160,1412, + 1,0,0,0,162,1436,1,0,0,0,164,1438,1,0,0,0,166,1454,1,0,0,0,168,1457, + 1,0,0,0,170,1461,1,0,0,0,172,1464,1,0,0,0,174,1468,1,0,0,0,176,1470, + 1,0,0,0,178,1472,1,0,0,0,180,1474,1,0,0,0,182,1476,1,0,0,0,184,1478, + 1,0,0,0,186,1480,1,0,0,0,188,1488,1,0,0,0,190,1498,1,0,0,0,192,1502, + 1,0,0,0,194,1506,1,0,0,0,196,1511,1,0,0,0,198,1551,1,0,0,0,200,1559, + 1,0,0,0,202,1563,1,0,0,0,204,1578,1,0,0,0,206,1583,1,0,0,0,208,1587, + 1,0,0,0,210,1596,1,0,0,0,212,1626,1,0,0,0,214,1641,1,0,0,0,216,1647, + 1,0,0,0,218,1652,1,0,0,0,220,1654,1,0,0,0,222,1672,1,0,0,0,224,1675, + 1,0,0,0,226,1685,1,0,0,0,228,1705,1,0,0,0,230,1715,1,0,0,0,232,1717, + 1,0,0,0,234,1719,1,0,0,0,236,1734,1,0,0,0,238,1736,1,0,0,0,240,1743, + 1,0,0,0,242,1775,1,0,0,0,244,1787,1,0,0,0,246,1794,1,0,0,0,248,1804, + 1,0,0,0,250,1806,1,0,0,0,252,1812,1,0,0,0,254,1823,1,0,0,0,256,1834, + 1,0,0,0,258,1842,1,0,0,0,260,1860,1,0,0,0,262,1865,1,0,0,0,264,1886, + 1,0,0,0,266,1922,1,0,0,0,268,1924,1,0,0,0,270,1932,1,0,0,0,272,1972, + 1,0,0,0,274,1982,1,0,0,0,276,1997,1,0,0,0,278,1999,1,0,0,0,280,2006, + 1,0,0,0,282,2020,1,0,0,0,284,2022,1,0,0,0,286,2072,1,0,0,0,288,2088, + 1,0,0,0,290,2090,1,0,0,0,292,2105,1,0,0,0,294,2107,1,0,0,0,296,2117, + 1,0,0,0,298,2135,1,0,0,0,300,2137,1,0,0,0,302,2141,1,0,0,0,304,2156, + 1,0,0,0,306,2162,1,0,0,0,308,2164,1,0,0,0,310,2173,1,0,0,0,312,2244, + 1,0,0,0,314,2250,1,0,0,0,316,2512,1,0,0,0,318,2533,1,0,0,0,320,2535, + 1,0,0,0,322,2537,1,0,0,0,324,2539,1,0,0,0,326,2555,1,0,0,0,328,2557, + 1,0,0,0,330,2559,1,0,0,0,332,2606,1,0,0,0,334,2615,1,0,0,0,336,2619, + 1,0,0,0,338,2625,1,0,0,0,340,2627,1,0,0,0,342,2632,1,0,0,0,344,2638, + 1,0,0,0,346,2685,1,0,0,0,348,2696,1,0,0,0,350,2703,1,0,0,0,352,2705, + 1,0,0,0,354,2726,1,0,0,0,356,2728,1,0,0,0,358,2730,1,0,0,0,360,2744, + 1,0,0,0,362,2751,1,0,0,0,364,2765,1,0,0,0,366,2767,1,0,0,0,368,2769, + 1,0,0,0,370,372,3,2,1,0,371,370,1,0,0,0,372,375,1,0,0,0,373,371, + 1,0,0,0,373,374,1,0,0,0,374,376,1,0,0,0,375,373,1,0,0,0,376,377, + 5,0,0,1,377,1,1,0,0,0,378,380,3,4,2,0,379,381,5,262,0,0,380,379, + 1,0,0,0,380,381,1,0,0,0,381,3,1,0,0,0,382,405,3,206,103,0,383,405, + 3,6,3,0,384,405,3,8,4,0,385,405,3,26,13,0,386,405,3,64,32,0,387, + 405,3,66,33,0,388,405,3,68,34,0,389,405,3,74,37,0,390,405,3,88,44, + 0,391,405,3,94,47,0,392,405,3,100,50,0,393,405,3,102,51,0,394,405, + 3,108,54,0,395,405,3,110,55,0,396,405,3,112,56,0,397,405,3,144,72, + 0,398,405,3,152,76,0,399,405,3,154,77,0,400,405,3,156,78,0,401,405, + 3,158,79,0,402,405,3,160,80,0,403,405,3,162,81,0,404,382,1,0,0,0, + 404,383,1,0,0,0,404,384,1,0,0,0,404,385,1,0,0,0,404,386,1,0,0,0, + 404,387,1,0,0,0,404,388,1,0,0,0,404,389,1,0,0,0,404,390,1,0,0,0, + 404,391,1,0,0,0,404,392,1,0,0,0,404,393,1,0,0,0,404,394,1,0,0,0, + 404,395,1,0,0,0,404,396,1,0,0,0,404,397,1,0,0,0,404,398,1,0,0,0, + 404,399,1,0,0,0,404,400,1,0,0,0,404,401,1,0,0,0,404,402,1,0,0,0, + 404,403,1,0,0,0,405,5,1,0,0,0,406,407,5,203,0,0,407,408,3,184,92, + 0,408,7,1,0,0,0,409,418,3,18,9,0,410,418,3,20,10,0,411,418,3,22, + 11,0,412,418,3,24,12,0,413,418,3,16,8,0,414,418,3,14,7,0,415,418, + 3,12,6,0,416,418,3,10,5,0,417,409,1,0,0,0,417,410,1,0,0,0,417,411, + 1,0,0,0,417,412,1,0,0,0,417,413,1,0,0,0,417,414,1,0,0,0,417,415, + 1,0,0,0,417,416,1,0,0,0,418,9,1,0,0,0,419,421,5,37,0,0,420,422,5, + 19,0,0,421,420,1,0,0,0,421,422,1,0,0,0,422,423,1,0,0,0,423,425,5, + 188,0,0,424,426,3,172,86,0,425,424,1,0,0,0,425,426,1,0,0,0,426,427, + 1,0,0,0,427,443,3,174,87,0,428,429,5,265,0,0,429,434,3,216,108,0, + 430,431,5,263,0,0,431,433,3,216,108,0,432,430,1,0,0,0,433,436,1, + 0,0,0,434,432,1,0,0,0,434,435,1,0,0,0,435,439,1,0,0,0,436,434,1, + 0,0,0,437,438,5,263,0,0,438,440,3,210,105,0,439,437,1,0,0,0,439, + 440,1,0,0,0,440,441,1,0,0,0,441,442,5,266,0,0,442,444,1,0,0,0,443, + 428,1,0,0,0,443,444,1,0,0,0,444,451,1,0,0,0,445,446,5,17,0,0,446, + 449,5,26,0,0,447,450,3,296,148,0,448,450,3,254,127,0,449,447,1,0, + 0,0,449,448,1,0,0,0,450,452,1,0,0,0,451,445,1,0,0,0,451,452,1,0, + 0,0,452,453,1,0,0,0,453,456,3,196,98,0,454,455,5,9,0,0,455,457,3, + 206,103,0,456,454,1,0,0,0,456,457,1,0,0,0,457,11,1,0,0,0,458,460, + 5,37,0,0,459,461,5,19,0,0,460,459,1,0,0,0,460,461,1,0,0,0,461,462, + 1,0,0,0,462,464,5,188,0,0,463,465,3,172,86,0,464,463,1,0,0,0,464, + 465,1,0,0,0,465,466,1,0,0,0,466,467,3,174,87,0,467,471,5,115,0,0, + 468,472,3,186,93,0,469,470,5,147,0,0,470,472,3,318,159,0,471,468, + 1,0,0,0,471,469,1,0,0,0,472,476,1,0,0,0,473,474,5,17,0,0,474,475, + 5,26,0,0,475,477,3,254,127,0,476,473,1,0,0,0,476,477,1,0,0,0,477, + 478,1,0,0,0,478,479,3,196,98,0,479,13,1,0,0,0,480,482,5,37,0,0,481, + 483,5,19,0,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484, + 486,5,188,0,0,485,487,3,172,86,0,486,485,1,0,0,0,486,487,1,0,0,0, + 487,488,1,0,0,0,488,506,3,174,87,0,489,490,5,265,0,0,490,495,3,218, + 109,0,491,492,5,263,0,0,492,494,3,218,109,0,493,491,1,0,0,0,494, + 497,1,0,0,0,495,493,1,0,0,0,495,496,1,0,0,0,496,502,1,0,0,0,497, + 495,1,0,0,0,498,499,5,263,0,0,499,500,5,150,0,0,500,501,5,110,0, + 0,501,503,3,296,148,0,502,498,1,0,0,0,502,503,1,0,0,0,503,504,1, + 0,0,0,504,505,5,266,0,0,505,507,1,0,0,0,506,489,1,0,0,0,506,507, + 1,0,0,0,507,513,1,0,0,0,508,509,5,150,0,0,509,511,5,110,0,0,510, + 512,3,296,148,0,511,510,1,0,0,0,511,512,1,0,0,0,512,514,1,0,0,0, + 513,508,1,0,0,0,513,514,1,0,0,0,514,518,1,0,0,0,515,516,5,145,0, + 0,516,517,5,26,0,0,517,519,3,236,118,0,518,515,1,0,0,0,518,519,1, + 0,0,0,519,521,1,0,0,0,520,522,3,222,111,0,521,520,1,0,0,0,521,522, + 1,0,0,0,522,523,1,0,0,0,523,524,5,23,0,0,524,525,5,9,0,0,525,528, + 5,111,0,0,526,527,5,25,0,0,527,529,3,252,126,0,528,526,1,0,0,0,528, + 529,1,0,0,0,529,532,1,0,0,0,530,531,5,9,0,0,531,533,3,206,103,0, + 532,530,1,0,0,0,532,533,1,0,0,0,533,15,1,0,0,0,534,535,5,37,0,0, + 535,537,5,212,0,0,536,538,3,172,86,0,537,536,1,0,0,0,537,538,1,0, + 0,0,538,539,1,0,0,0,539,541,3,178,89,0,540,542,3,202,101,0,541,540, + 1,0,0,0,541,542,1,0,0,0,542,544,1,0,0,0,543,545,3,222,111,0,544, + 543,1,0,0,0,544,545,1,0,0,0,545,548,1,0,0,0,546,547,5,25,0,0,547, + 549,3,252,126,0,548,546,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0,0, + 550,551,5,9,0,0,551,552,3,206,103,0,552,17,1,0,0,0,553,554,5,37, + 0,0,554,556,7,0,0,0,555,557,3,172,86,0,556,555,1,0,0,0,556,557,1, + 0,0,0,557,558,1,0,0,0,558,560,3,176,88,0,559,561,3,222,111,0,560, + 559,1,0,0,0,560,561,1,0,0,0,561,564,1,0,0,0,562,563,5,24,0,0,563, + 565,3,318,159,0,564,562,1,0,0,0,564,565,1,0,0,0,565,19,1,0,0,0,566, + 567,5,37,0,0,567,568,5,166,0,0,568,569,3,362,181,0,569,21,1,0,0, + 0,570,572,5,37,0,0,571,573,5,12,0,0,572,571,1,0,0,0,572,573,1,0, + 0,0,573,574,1,0,0,0,574,576,5,84,0,0,575,577,3,172,86,0,576,575, + 1,0,0,0,576,577,1,0,0,0,577,578,1,0,0,0,578,591,3,180,90,0,579,588, + 5,265,0,0,580,585,3,332,166,0,581,582,5,263,0,0,582,584,3,332,166, + 0,583,581,1,0,0,0,584,587,1,0,0,0,585,583,1,0,0,0,585,586,1,0,0, + 0,586,589,1,0,0,0,587,585,1,0,0,0,588,580,1,0,0,0,588,589,1,0,0, + 0,589,590,1,0,0,0,590,592,5,266,0,0,591,579,1,0,0,0,591,592,1,0, + 0,0,592,593,1,0,0,0,593,594,5,160,0,0,594,597,3,332,166,0,595,596, + 5,102,0,0,596,598,3,332,166,0,597,595,1,0,0,0,597,598,1,0,0,0,598, + 599,1,0,0,0,599,600,5,24,0,0,600,604,5,274,0,0,601,602,5,104,0,0, + 602,603,5,249,0,0,603,605,5,274,0,0,604,601,1,0,0,0,604,605,1,0, + 0,0,605,606,1,0,0,0,606,607,5,206,0,0,607,608,5,249,0,0,608,609, + 5,274,0,0,609,610,5,126,0,0,610,611,5,249,0,0,611,615,5,274,0,0, + 612,613,5,18,0,0,613,614,5,249,0,0,614,616,5,274,0,0,615,612,1,0, + 0,0,615,616,1,0,0,0,616,620,1,0,0,0,617,618,5,20,0,0,618,619,5,249, + 0,0,619,621,5,274,0,0,620,617,1,0,0,0,620,621,1,0,0,0,621,625,1, + 0,0,0,622,623,5,187,0,0,623,624,5,249,0,0,624,626,5,274,0,0,625, + 622,1,0,0,0,625,626,1,0,0,0,626,630,1,0,0,0,627,628,5,76,0,0,628, + 629,5,249,0,0,629,631,5,274,0,0,630,627,1,0,0,0,630,631,1,0,0,0, + 631,23,1,0,0,0,632,633,5,37,0,0,633,635,5,84,0,0,634,636,3,172,86, + 0,635,634,1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,650,3,180, + 90,0,638,647,5,265,0,0,639,644,3,332,166,0,640,641,5,263,0,0,641, + 643,3,332,166,0,642,640,1,0,0,0,643,646,1,0,0,0,644,642,1,0,0,0, + 644,645,1,0,0,0,645,648,1,0,0,0,646,644,1,0,0,0,647,639,1,0,0,0, + 647,648,1,0,0,0,648,649,1,0,0,0,649,651,5,266,0,0,650,638,1,0,0, + 0,650,651,1,0,0,0,651,654,1,0,0,0,652,653,5,160,0,0,653,655,3,332, + 166,0,654,652,1,0,0,0,654,655,1,0,0,0,655,656,1,0,0,0,656,657,5, + 24,0,0,657,658,5,274,0,0,658,659,5,186,0,0,659,660,5,249,0,0,660, + 661,3,318,159,0,661,25,1,0,0,0,662,681,3,28,14,0,663,681,3,62,31, + 0,664,681,3,60,30,0,665,681,3,58,29,0,666,681,3,54,27,0,667,681, + 3,56,28,0,668,681,3,52,26,0,669,681,3,48,24,0,670,681,3,50,25,0, + 671,681,3,46,23,0,672,681,3,44,22,0,673,681,3,42,21,0,674,681,3, + 40,20,0,675,681,3,34,17,0,676,681,3,30,15,0,677,681,3,32,16,0,678, + 681,3,36,18,0,679,681,3,38,19,0,680,662,1,0,0,0,680,663,1,0,0,0, + 680,664,1,0,0,0,680,665,1,0,0,0,680,666,1,0,0,0,680,667,1,0,0,0, + 680,668,1,0,0,0,680,669,1,0,0,0,680,670,1,0,0,0,680,671,1,0,0,0, + 680,672,1,0,0,0,680,673,1,0,0,0,680,674,1,0,0,0,680,675,1,0,0,0, + 680,676,1,0,0,0,680,677,1,0,0,0,680,678,1,0,0,0,680,679,1,0,0,0, + 681,27,1,0,0,0,682,683,5,4,0,0,683,684,5,46,0,0,684,685,3,184,92, + 0,685,686,5,176,0,0,686,687,5,142,0,0,687,688,7,1,0,0,688,689,3, + 362,181,0,689,29,1,0,0,0,690,691,5,4,0,0,691,692,5,188,0,0,692,693, + 3,186,93,0,693,694,5,176,0,0,694,695,5,32,0,0,695,696,5,182,0,0, + 696,697,3,192,96,0,697,698,5,265,0,0,698,699,3,232,116,0,699,700, + 5,249,0,0,700,706,3,318,159,0,701,702,5,263,0,0,702,703,3,232,116, + 0,703,704,5,249,0,0,704,705,3,318,159,0,705,707,1,0,0,0,706,701, + 1,0,0,0,706,707,1,0,0,0,707,708,1,0,0,0,708,709,5,266,0,0,709,31, + 1,0,0,0,710,711,5,4,0,0,711,712,5,188,0,0,712,715,3,186,93,0,713, + 714,5,145,0,0,714,716,3,308,154,0,715,713,1,0,0,0,715,716,1,0,0, + 0,716,717,1,0,0,0,717,728,5,176,0,0,718,719,5,30,0,0,719,720,5,94, + 0,0,720,725,3,318,159,0,721,722,5,216,0,0,722,723,5,151,0,0,723, + 724,5,249,0,0,724,726,3,364,182,0,725,721,1,0,0,0,725,726,1,0,0, + 0,726,729,1,0,0,0,727,729,5,197,0,0,728,718,1,0,0,0,728,727,1,0, + 0,0,729,33,1,0,0,0,730,731,5,4,0,0,731,732,5,188,0,0,732,733,3,186, + 93,0,733,734,5,31,0,0,734,735,3,192,96,0,735,736,3,224,112,0,736, + 35,1,0,0,0,737,738,5,4,0,0,738,739,5,188,0,0,739,740,3,186,93,0, + 740,742,5,58,0,0,741,743,5,32,0,0,742,741,1,0,0,0,742,743,1,0,0, + 0,743,744,1,0,0,0,744,745,3,192,96,0,745,37,1,0,0,0,746,747,5,4, + 0,0,747,748,5,188,0,0,748,749,3,186,93,0,749,750,5,176,0,0,750,751, + 5,142,0,0,751,752,7,1,0,0,752,753,3,362,181,0,753,39,1,0,0,0,754, + 755,5,4,0,0,755,756,5,188,0,0,756,762,3,186,93,0,757,763,5,158,0, + 0,758,760,5,1,0,0,759,761,3,172,86,0,760,759,1,0,0,0,760,761,1,0, + 0,0,761,763,1,0,0,0,762,757,1,0,0,0,762,758,1,0,0,0,763,764,1,0, + 0,0,764,765,5,33,0,0,765,766,5,265,0,0,766,771,3,224,112,0,767,768, + 5,263,0,0,768,770,3,224,112,0,769,767,1,0,0,0,770,773,1,0,0,0,771, + 772,1,0,0,0,771,769,1,0,0,0,772,774,1,0,0,0,773,771,1,0,0,0,774, + 775,5,266,0,0,775,41,1,0,0,0,776,777,5,4,0,0,777,778,5,188,0,0,778, + 779,3,186,93,0,779,780,5,1,0,0,780,782,5,32,0,0,781,783,3,172,86, + 0,782,781,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784,785,3,226, + 113,0,785,43,1,0,0,0,786,787,5,4,0,0,787,788,5,188,0,0,788,789,3, + 186,93,0,789,791,5,4,0,0,790,792,5,32,0,0,791,790,1,0,0,0,791,792, + 1,0,0,0,792,793,1,0,0,0,793,802,3,192,96,0,794,798,5,176,0,0,795, + 799,3,230,115,0,796,797,5,34,0,0,797,799,3,318,159,0,798,795,1,0, + 0,0,798,796,1,0,0,0,799,803,1,0,0,0,800,801,5,58,0,0,801,803,5,51, + 0,0,802,794,1,0,0,0,802,800,1,0,0,0,803,45,1,0,0,0,804,805,5,4,0, + 0,805,806,5,188,0,0,806,807,3,186,93,0,807,809,5,1,0,0,808,810,3, + 172,86,0,809,808,1,0,0,0,809,810,1,0,0,0,810,823,1,0,0,0,811,812, + 5,145,0,0,812,815,3,308,154,0,813,814,5,24,0,0,814,816,3,318,159, + 0,815,813,1,0,0,0,815,816,1,0,0,0,816,818,1,0,0,0,817,819,3,244, + 122,0,818,817,1,0,0,0,818,819,1,0,0,0,819,824,1,0,0,0,820,821,5, + 154,0,0,821,822,5,145,0,0,822,824,3,242,121,0,823,811,1,0,0,0,823, + 820,1,0,0,0,824,47,1,0,0,0,825,826,5,4,0,0,826,827,5,188,0,0,827, + 830,3,186,93,0,828,829,5,145,0,0,829,831,3,308,154,0,830,828,1,0, + 0,0,830,831,1,0,0,0,831,832,1,0,0,0,832,844,5,176,0,0,833,834,5, + 72,0,0,834,845,3,234,117,0,835,836,5,168,0,0,836,837,5,79,0,0,837, + 845,3,258,129,0,838,839,5,24,0,0,839,845,3,318,159,0,840,841,5,25, + 0,0,841,845,3,252,126,0,842,843,5,175,0,0,843,845,3,252,126,0,844, + 833,1,0,0,0,844,835,1,0,0,0,844,838,1,0,0,0,844,840,1,0,0,0,844, + 842,1,0,0,0,845,49,1,0,0,0,846,847,5,4,0,0,847,848,5,188,0,0,848, + 849,3,186,93,0,849,850,5,155,0,0,850,851,5,146,0,0,851,51,1,0,0, + 0,852,853,5,4,0,0,853,854,5,188,0,0,854,855,3,186,93,0,855,857,5, + 58,0,0,856,858,3,170,85,0,857,856,1,0,0,0,857,858,1,0,0,0,858,867, + 1,0,0,0,859,860,5,145,0,0,860,862,3,308,154,0,861,863,5,22,0,0,862, + 861,1,0,0,0,862,863,1,0,0,0,863,868,1,0,0,0,864,865,5,154,0,0,865, + 866,5,145,0,0,866,868,3,242,121,0,867,859,1,0,0,0,867,864,1,0,0, + 0,868,53,1,0,0,0,869,870,5,4,0,0,870,871,5,212,0,0,871,873,3,188, + 94,0,872,874,3,202,101,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875, + 1,0,0,0,875,876,5,9,0,0,876,877,3,206,103,0,877,55,1,0,0,0,878,879, + 5,4,0,0,879,880,5,212,0,0,880,881,3,188,94,0,881,882,5,156,0,0,882, + 883,5,193,0,0,883,884,3,188,94,0,884,57,1,0,0,0,885,886,5,4,0,0, + 886,887,5,212,0,0,887,888,3,188,94,0,888,889,5,176,0,0,889,890,5, + 142,0,0,890,891,7,1,0,0,891,892,3,358,179,0,892,59,1,0,0,0,893,894, + 5,4,0,0,894,895,5,188,0,0,895,896,3,186,93,0,896,897,5,156,0,0,897, + 898,5,193,0,0,898,899,3,186,93,0,899,61,1,0,0,0,900,901,5,4,0,0, + 901,902,5,212,0,0,902,903,3,188,94,0,903,904,7,2,0,0,904,905,5,25, + 0,0,905,906,3,252,126,0,906,63,1,0,0,0,907,909,5,196,0,0,908,910, + 5,188,0,0,909,908,1,0,0,0,909,910,1,0,0,0,910,912,1,0,0,0,911,913, + 3,170,85,0,912,911,1,0,0,0,912,913,1,0,0,0,913,914,1,0,0,0,914,915, + 3,186,93,0,915,65,1,0,0,0,916,918,5,56,0,0,917,919,5,46,0,0,918, + 917,1,0,0,0,918,919,1,0,0,0,919,921,1,0,0,0,920,922,7,3,0,0,921, + 920,1,0,0,0,921,922,1,0,0,0,922,923,1,0,0,0,923,924,3,358,179,0, + 924,67,1,0,0,0,925,928,3,70,35,0,926,928,3,72,36,0,927,925,1,0,0, + 0,927,926,1,0,0,0,928,69,1,0,0,0,929,930,5,36,0,0,930,931,5,182, + 0,0,931,933,3,186,93,0,932,934,3,296,148,0,933,932,1,0,0,0,933,934, + 1,0,0,0,934,947,1,0,0,0,935,936,5,190,0,0,936,937,5,185,0,0,937, + 938,5,265,0,0,938,939,3,364,182,0,939,945,5,266,0,0,940,941,5,157, + 0,0,941,942,5,265,0,0,942,943,3,364,182,0,943,944,5,266,0,0,944, + 946,1,0,0,0,945,940,1,0,0,0,945,946,1,0,0,0,946,948,1,0,0,0,947, + 935,1,0,0,0,947,948,1,0,0,0,948,71,1,0,0,0,949,950,5,36,0,0,950, + 951,5,96,0,0,951,952,5,182,0,0,952,958,3,186,93,0,953,954,5,145, + 0,0,954,955,5,265,0,0,955,956,3,308,154,0,956,957,5,266,0,0,957, + 959,1,0,0,0,958,953,1,0,0,0,958,959,1,0,0,0,959,73,1,0,0,0,960,967, + 3,86,43,0,961,967,3,84,42,0,962,967,3,82,41,0,963,967,3,78,39,0, + 964,967,3,80,40,0,965,967,3,76,38,0,966,960,1,0,0,0,966,961,1,0, + 0,0,966,962,1,0,0,0,966,963,1,0,0,0,966,964,1,0,0,0,966,965,1,0, + 0,0,967,75,1,0,0,0,968,969,5,58,0,0,969,971,7,0,0,0,970,972,3,170, + 85,0,971,970,1,0,0,0,971,972,1,0,0,0,972,973,1,0,0,0,973,975,3,184, + 92,0,974,976,7,4,0,0,975,974,1,0,0,0,975,976,1,0,0,0,976,77,1,0, + 0,0,977,978,5,58,0,0,978,980,5,212,0,0,979,981,3,170,85,0,980,979, + 1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983,3,188,94,0,983,79, + 1,0,0,0,984,985,5,58,0,0,985,987,5,188,0,0,986,988,3,170,85,0,987, + 986,1,0,0,0,987,988,1,0,0,0,988,989,1,0,0,0,989,991,3,186,93,0,990, + 992,5,22,0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,81,1,0,0,0,993, + 995,5,58,0,0,994,996,5,96,0,0,995,994,1,0,0,0,995,996,1,0,0,0,996, + 997,1,0,0,0,997,998,5,182,0,0,998,1001,3,186,93,0,999,1000,5,145, + 0,0,1000,1002,3,308,154,0,1001,999,1,0,0,0,1001,1002,1,0,0,0,1002, + 83,1,0,0,0,1003,1005,5,58,0,0,1004,1006,5,12,0,0,1005,1004,1,0,0, + 0,1005,1006,1,0,0,0,1006,1007,1,0,0,0,1007,1009,5,84,0,0,1008,1010, + 3,170,85,0,1009,1008,1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0, + 1011,1024,3,190,95,0,1012,1021,5,265,0,0,1013,1018,3,332,166,0,1014, + 1015,5,263,0,0,1015,1017,3,332,166,0,1016,1014,1,0,0,0,1017,1020, + 1,0,0,0,1018,1016,1,0,0,0,1018,1019,1,0,0,0,1019,1022,1,0,0,0,1020, + 1018,1,0,0,0,1021,1013,1,0,0,0,1021,1022,1,0,0,0,1022,1023,1,0,0, + 0,1023,1025,5,266,0,0,1024,1012,1,0,0,0,1024,1025,1,0,0,0,1025,85, + 1,0,0,0,1026,1027,5,58,0,0,1027,1028,5,166,0,0,1028,1029,3,362,181, + 0,1029,87,1,0,0,0,1030,1033,3,90,45,0,1031,1033,3,92,46,0,1032,1030, + 1,0,0,0,1032,1031,1,0,0,0,1033,89,1,0,0,0,1034,1035,5,86,0,0,1035, + 1036,5,166,0,0,1036,1037,3,362,181,0,1037,1038,5,193,0,0,1038,1039, + 5,87,0,0,1039,1040,3,362,181,0,1040,91,1,0,0,0,1041,1042,5,86,0, + 0,1042,1043,3,354,177,0,1043,1044,5,136,0,0,1044,1046,3,356,178, + 0,1045,1047,3,358,179,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047, + 1048,1,0,0,0,1048,1049,5,193,0,0,1049,1050,3,360,180,0,1050,93,1, + 0,0,0,1051,1054,3,96,48,0,1052,1054,3,98,49,0,1053,1051,1,0,0,0, + 1053,1052,1,0,0,0,1054,95,1,0,0,0,1055,1056,5,161,0,0,1056,1057, + 5,166,0,0,1057,1058,3,362,181,0,1058,1059,5,82,0,0,1059,1060,5,87, + 0,0,1060,1061,3,362,181,0,1061,97,1,0,0,0,1062,1066,5,161,0,0,1063, + 1064,5,86,0,0,1064,1065,5,137,0,0,1065,1067,5,78,0,0,1066,1063,1, + 0,0,0,1066,1067,1,0,0,0,1067,1068,1,0,0,0,1068,1069,3,354,177,0, + 1069,1070,5,136,0,0,1070,1072,3,356,178,0,1071,1073,3,358,179,0, + 1072,1071,1,0,0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1080, + 5,82,0,0,1075,1081,3,360,180,0,1076,1078,5,166,0,0,1077,1076,1,0, + 0,0,1077,1078,1,0,0,0,1078,1079,1,0,0,0,1079,1081,3,362,181,0,1080, + 1075,1,0,0,0,1080,1077,1,0,0,0,1081,99,1,0,0,0,1082,1084,3,208,104, + 0,1083,1082,1,0,0,0,1083,1084,1,0,0,0,1084,1085,1,0,0,0,1085,1086, + 5,99,0,0,1086,1088,7,5,0,0,1087,1089,5,188,0,0,1088,1087,1,0,0,0, + 1088,1089,1,0,0,0,1089,1090,1,0,0,0,1090,1092,3,186,93,0,1091,1093, + 3,296,148,0,1092,1091,1,0,0,0,1092,1093,1,0,0,0,1093,1106,1,0,0, + 0,1094,1095,5,145,0,0,1095,1096,5,265,0,0,1096,1101,3,308,154,0, + 1097,1098,5,263,0,0,1098,1100,3,308,154,0,1099,1097,1,0,0,0,1100, + 1103,1,0,0,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102,1104,1,0,0, + 0,1103,1101,1,0,0,0,1104,1105,5,266,0,0,1105,1107,1,0,0,0,1106,1094, + 1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,3,206,103, + 0,1109,101,1,0,0,0,1110,1113,3,104,52,0,1111,1113,3,106,53,0,1112, + 1110,1,0,0,0,1112,1111,1,0,0,0,1113,103,1,0,0,0,1114,1116,5,50,0, + 0,1115,1117,5,82,0,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,1118, + 1,0,0,0,1118,1121,3,186,93,0,1119,1120,5,215,0,0,1120,1122,3,310, + 155,0,1121,1119,1,0,0,0,1121,1122,1,0,0,0,1122,105,1,0,0,0,1123, + 1124,5,50,0,0,1124,1129,3,186,93,0,1125,1127,5,9,0,0,1126,1125,1, + 0,0,0,1126,1127,1,0,0,0,1127,1128,1,0,0,0,1128,1130,3,362,181,0, + 1129,1126,1,0,0,0,1129,1130,1,0,0,0,1130,1131,1,0,0,0,1131,1140, + 5,82,0,0,1132,1137,3,284,142,0,1133,1134,5,263,0,0,1134,1136,3,284, + 142,0,1135,1133,1,0,0,0,1136,1139,1,0,0,0,1137,1135,1,0,0,0,1137, + 1138,1,0,0,0,1138,1141,1,0,0,0,1139,1137,1,0,0,0,1140,1132,1,0,0, + 0,1140,1141,1,0,0,0,1141,1144,1,0,0,0,1142,1143,5,215,0,0,1143,1145, + 3,310,155,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,107,1,0,0,0, + 1146,1147,5,54,0,0,1147,1148,3,186,93,0,1148,1149,5,176,0,0,1149, + 1159,3,198,99,0,1150,1151,5,82,0,0,1151,1156,3,284,142,0,1152,1153, + 5,263,0,0,1153,1155,3,284,142,0,1154,1152,1,0,0,0,1155,1158,1,0, + 0,0,1156,1154,1,0,0,0,1156,1157,1,0,0,0,1157,1160,1,0,0,0,1158,1156, + 1,0,0,0,1159,1150,1,0,0,0,1159,1160,1,0,0,0,1160,1163,1,0,0,0,1161, + 1162,5,215,0,0,1162,1164,3,310,155,0,1163,1161,1,0,0,0,1163,1164, + 1,0,0,0,1164,109,1,0,0,0,1165,1166,5,207,0,0,1166,1168,5,103,0,0, + 1167,1169,5,188,0,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1170, + 1,0,0,0,1170,1172,3,186,93,0,1171,1173,3,296,148,0,1172,1171,1,0, + 0,0,1172,1173,1,0,0,0,1173,1174,1,0,0,0,1174,1175,3,206,103,0,1175, + 111,1,0,0,0,1176,1189,3,132,66,0,1177,1189,3,134,67,0,1178,1189, + 3,136,68,0,1179,1189,3,130,65,0,1180,1189,3,128,64,0,1181,1189,3, + 126,63,0,1182,1189,3,124,62,0,1183,1189,3,122,61,0,1184,1189,3,120, + 60,0,1185,1189,3,118,59,0,1186,1189,3,116,58,0,1187,1189,3,114,57, + 0,1188,1176,1,0,0,0,1188,1177,1,0,0,0,1188,1178,1,0,0,0,1188,1179, + 1,0,0,0,1188,1180,1,0,0,0,1188,1181,1,0,0,0,1188,1182,1,0,0,0,1188, + 1183,1,0,0,0,1188,1184,1,0,0,0,1188,1185,1,0,0,0,1188,1186,1,0,0, + 0,1188,1187,1,0,0,0,1189,113,1,0,0,0,1190,1191,5,179,0,0,1191,1203, + 7,6,0,0,1192,1194,5,115,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, + 1194,1195,1,0,0,0,1195,1200,3,318,159,0,1196,1197,5,271,0,0,1197, + 1199,3,318,159,0,1198,1196,1,0,0,0,1199,1202,1,0,0,0,1200,1198,1, + 0,0,0,1200,1201,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1203, + 1193,1,0,0,0,1203,1204,1,0,0,0,1204,115,1,0,0,0,1205,1206,5,179, + 0,0,1206,1209,5,189,0,0,1207,1208,5,94,0,0,1208,1210,3,186,93,0, + 1209,1207,1,0,0,0,1209,1210,1,0,0,0,1210,1222,1,0,0,0,1211,1213, + 5,115,0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0, + 1214,1219,3,318,159,0,1215,1216,5,271,0,0,1216,1218,3,318,159,0, + 1217,1215,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219,1220, + 1,0,0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1222,1212,1,0,0,0,1222, + 1223,1,0,0,0,1223,117,1,0,0,0,1224,1226,5,179,0,0,1225,1227,7,7, + 0,0,1226,1225,1,0,0,0,1226,1227,1,0,0,0,1227,1228,1,0,0,0,1228,1231, + 5,85,0,0,1229,1230,5,94,0,0,1230,1232,3,184,92,0,1231,1229,1,0,0, + 0,1231,1232,1,0,0,0,1232,1244,1,0,0,0,1233,1235,5,115,0,0,1234,1233, + 1,0,0,0,1234,1235,1,0,0,0,1235,1236,1,0,0,0,1236,1241,3,318,159, + 0,1237,1238,5,271,0,0,1238,1240,3,318,159,0,1239,1237,1,0,0,0,1240, + 1243,1,0,0,0,1241,1239,1,0,0,0,1241,1242,1,0,0,0,1242,1245,1,0,0, + 0,1243,1241,1,0,0,0,1244,1234,1,0,0,0,1244,1245,1,0,0,0,1245,119, + 1,0,0,0,1246,1247,5,179,0,0,1247,1248,5,37,0,0,1248,1249,5,188,0, + 0,1249,1250,3,186,93,0,1250,121,1,0,0,0,1251,1252,5,179,0,0,1252, + 1253,5,37,0,0,1253,1254,5,212,0,0,1254,1255,3,188,94,0,1255,123, + 1,0,0,0,1256,1257,5,179,0,0,1257,1258,5,188,0,0,1258,1259,5,182, + 0,0,1259,1260,3,186,93,0,1260,125,1,0,0,0,1261,1262,5,179,0,0,1262, + 1263,5,32,0,0,1263,1264,5,182,0,0,1264,1265,3,186,93,0,1265,127, + 1,0,0,0,1266,1268,5,179,0,0,1267,1269,5,154,0,0,1268,1267,1,0,0, + 0,1268,1269,1,0,0,0,1269,1270,1,0,0,0,1270,1271,5,146,0,0,1271,1272, + 3,186,93,0,1272,129,1,0,0,0,1273,1274,5,179,0,0,1274,1275,5,73,0, + 0,1275,1276,5,94,0,0,1276,1286,3,186,93,0,1277,1278,5,145,0,0,1278, + 1279,5,265,0,0,1279,1282,3,308,154,0,1280,1281,5,263,0,0,1281,1283, + 3,308,154,0,1282,1280,1,0,0,0,1282,1283,1,0,0,0,1283,1284,1,0,0, + 0,1284,1285,5,266,0,0,1285,1287,1,0,0,0,1286,1277,1,0,0,0,1286,1287, + 1,0,0,0,1287,131,1,0,0,0,1288,1290,5,179,0,0,1289,1291,5,39,0,0, + 1290,1289,1,0,0,0,1290,1291,1,0,0,0,1291,1292,1,0,0,0,1292,1293, + 5,167,0,0,1293,133,1,0,0,0,1294,1295,5,179,0,0,1295,1296,5,166,0, + 0,1296,1297,5,86,0,0,1297,1298,5,87,0,0,1298,1299,3,362,181,0,1299, + 135,1,0,0,0,1300,1315,3,138,69,0,1301,1315,3,140,70,0,1302,1315, + 3,142,71,0,1303,1304,5,179,0,0,1304,1305,5,86,0,0,1305,1306,7,8, + 0,0,1306,1312,3,362,181,0,1307,1308,5,136,0,0,1308,1310,7,9,0,0, + 1309,1311,3,358,179,0,1310,1309,1,0,0,0,1310,1311,1,0,0,0,1311,1313, + 1,0,0,0,1312,1307,1,0,0,0,1312,1313,1,0,0,0,1313,1315,1,0,0,0,1314, + 1300,1,0,0,0,1314,1301,1,0,0,0,1314,1302,1,0,0,0,1314,1303,1,0,0, + 0,1315,137,1,0,0,0,1316,1317,5,179,0,0,1317,1318,5,86,0,0,1318,1319, + 7,8,0,0,1319,1325,3,362,181,0,1320,1321,5,136,0,0,1321,1323,5,46, + 0,0,1322,1324,3,184,92,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324, + 1326,1,0,0,0,1325,1320,1,0,0,0,1325,1326,1,0,0,0,1326,139,1,0,0, + 0,1327,1328,5,179,0,0,1328,1329,5,86,0,0,1329,1330,7,8,0,0,1330, + 1336,3,362,181,0,1331,1332,5,136,0,0,1332,1334,5,188,0,0,1333,1335, + 3,186,93,0,1334,1333,1,0,0,0,1334,1335,1,0,0,0,1335,1337,1,0,0,0, + 1336,1331,1,0,0,0,1336,1337,1,0,0,0,1337,141,1,0,0,0,1338,1339,5, + 179,0,0,1339,1340,5,86,0,0,1340,1341,7,8,0,0,1341,1347,3,362,181, + 0,1342,1343,5,136,0,0,1343,1345,5,32,0,0,1344,1346,3,192,96,0,1345, + 1344,1,0,0,0,1345,1346,1,0,0,0,1346,1348,1,0,0,0,1347,1342,1,0,0, + 0,1347,1348,1,0,0,0,1348,143,1,0,0,0,1349,1353,3,146,73,0,1350,1353, + 3,148,74,0,1351,1353,3,150,75,0,1352,1349,1,0,0,0,1352,1350,1,0, + 0,0,1352,1351,1,0,0,0,1353,145,1,0,0,0,1354,1355,5,34,0,0,1355,1356, + 5,136,0,0,1356,1357,5,46,0,0,1357,1358,3,184,92,0,1358,1361,5,108, + 0,0,1359,1362,3,318,159,0,1360,1362,5,133,0,0,1361,1359,1,0,0,0, + 1361,1360,1,0,0,0,1362,147,1,0,0,0,1363,1364,5,34,0,0,1364,1365, + 5,136,0,0,1365,1366,5,188,0,0,1366,1367,3,186,93,0,1367,1370,5,108, + 0,0,1368,1371,3,318,159,0,1369,1371,5,133,0,0,1370,1368,1,0,0,0, + 1370,1369,1,0,0,0,1371,149,1,0,0,0,1372,1373,5,34,0,0,1373,1374, + 5,136,0,0,1374,1375,5,32,0,0,1375,1376,3,192,96,0,1376,1379,5,108, + 0,0,1377,1380,3,318,159,0,1378,1380,5,133,0,0,1379,1377,1,0,0,0, + 1379,1378,1,0,0,0,1380,151,1,0,0,0,1381,1382,5,67,0,0,1382,1383, + 3,4,2,0,1383,153,1,0,0,0,1384,1390,5,176,0,0,1385,1391,5,2,0,0,1386, + 1387,3,362,181,0,1387,1388,5,249,0,0,1388,1389,3,308,154,0,1389, + 1391,1,0,0,0,1390,1385,1,0,0,0,1390,1386,1,0,0,0,1390,1391,1,0,0, + 0,1391,155,1,0,0,0,1392,1393,5,264,0,0,1393,1394,5,180,0,0,1394, + 1404,5,265,0,0,1395,1397,3,318,159,0,1396,1395,1,0,0,0,1396,1397, + 1,0,0,0,1397,1405,1,0,0,0,1398,1401,3,318,159,0,1399,1400,5,263, + 0,0,1400,1402,3,308,154,0,1401,1399,1,0,0,0,1401,1402,1,0,0,0,1402, + 1405,1,0,0,0,1403,1405,3,308,154,0,1404,1396,1,0,0,0,1404,1398,1, + 0,0,0,1404,1403,1,0,0,0,1405,1406,1,0,0,0,1406,1407,5,266,0,0,1407, + 157,1,0,0,0,1408,1409,5,107,0,0,1409,1410,5,121,0,0,1410,1411,3, + 186,93,0,1411,159,1,0,0,0,1412,1413,5,118,0,0,1413,1414,5,45,0,0, + 1414,1415,5,98,0,0,1415,1417,5,274,0,0,1416,1418,5,144,0,0,1417, + 1416,1,0,0,0,1417,1418,1,0,0,0,1418,1419,1,0,0,0,1419,1420,5,103, + 0,0,1420,1421,5,188,0,0,1421,1431,3,186,93,0,1422,1423,5,145,0,0, + 1423,1424,5,265,0,0,1424,1427,3,308,154,0,1425,1426,5,263,0,0,1426, + 1428,3,308,154,0,1427,1425,1,0,0,0,1427,1428,1,0,0,0,1428,1429,1, + 0,0,0,1429,1430,5,266,0,0,1430,1432,1,0,0,0,1431,1422,1,0,0,0,1431, + 1432,1,0,0,0,1432,161,1,0,0,0,1433,1437,3,164,82,0,1434,1437,3,166, + 83,0,1435,1437,3,168,84,0,1436,1433,1,0,0,0,1436,1434,1,0,0,0,1436, + 1435,1,0,0,0,1437,163,1,0,0,0,1438,1439,5,162,0,0,1439,1452,3,186, + 93,0,1440,1441,5,145,0,0,1441,1442,5,265,0,0,1442,1447,3,308,154, + 0,1443,1444,5,263,0,0,1444,1446,3,308,154,0,1445,1443,1,0,0,0,1446, + 1449,1,0,0,0,1447,1448,1,0,0,0,1447,1445,1,0,0,0,1448,1450,1,0,0, + 0,1449,1447,1,0,0,0,1450,1451,5,266,0,0,1451,1453,1,0,0,0,1452,1440, + 1,0,0,0,1452,1453,1,0,0,0,1453,165,1,0,0,0,1454,1455,5,162,0,0,1455, + 1456,5,13,0,0,1456,167,1,0,0,0,1457,1458,5,162,0,0,1458,1459,5,85, + 0,0,1459,1460,3,190,95,0,1460,169,1,0,0,0,1461,1462,5,93,0,0,1462, + 1463,5,66,0,0,1463,171,1,0,0,0,1464,1465,5,93,0,0,1465,1466,5,132, + 0,0,1466,1467,5,66,0,0,1467,173,1,0,0,0,1468,1469,3,358,179,0,1469, + 175,1,0,0,0,1470,1471,3,358,179,0,1471,177,1,0,0,0,1472,1473,3,358, + 179,0,1473,179,1,0,0,0,1474,1475,3,358,179,0,1475,181,1,0,0,0,1476, + 1477,3,358,179,0,1477,183,1,0,0,0,1478,1479,3,358,179,0,1479,185, + 1,0,0,0,1480,1485,3,362,181,0,1481,1482,5,261,0,0,1482,1484,3,362, + 181,0,1483,1481,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1485, + 1486,1,0,0,0,1486,187,1,0,0,0,1487,1485,1,0,0,0,1488,1493,3,362, + 181,0,1489,1490,5,261,0,0,1490,1492,3,362,181,0,1491,1489,1,0,0, + 0,1492,1495,1,0,0,0,1493,1491,1,0,0,0,1493,1494,1,0,0,0,1494,189, + 1,0,0,0,1495,1493,1,0,0,0,1496,1499,3,366,183,0,1497,1499,3,358, + 179,0,1498,1496,1,0,0,0,1498,1497,1,0,0,0,1499,191,1,0,0,0,1500, + 1503,3,358,179,0,1501,1503,4,96,0,0,1502,1500,1,0,0,0,1502,1501, + 1,0,0,0,1503,193,1,0,0,0,1504,1507,3,186,93,0,1505,1507,3,188,94, + 0,1506,1504,1,0,0,0,1506,1505,1,0,0,0,1507,195,1,0,0,0,1508,1509, + 5,21,0,0,1509,1510,5,26,0,0,1510,1512,3,296,148,0,1511,1508,1,0, + 0,0,1511,1512,1,0,0,0,1512,1514,1,0,0,0,1513,1515,3,222,111,0,1514, + 1513,1,0,0,0,1514,1515,1,0,0,0,1515,1519,1,0,0,0,1516,1517,5,168, + 0,0,1517,1518,5,79,0,0,1518,1520,3,258,129,0,1519,1516,1,0,0,0,1519, + 1520,1,0,0,0,1520,1524,1,0,0,0,1521,1522,5,216,0,0,1522,1523,5,175, + 0,0,1523,1525,3,252,126,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525, + 1529,1,0,0,0,1526,1527,5,23,0,0,1527,1528,5,9,0,0,1528,1530,3,234, + 117,0,1529,1526,1,0,0,0,1529,1530,1,0,0,0,1530,1533,1,0,0,0,1531, + 1532,5,24,0,0,1532,1534,3,318,159,0,1533,1531,1,0,0,0,1533,1534, + 1,0,0,0,1534,1545,1,0,0,0,1535,1536,5,30,0,0,1536,1537,5,94,0,0, + 1537,1542,3,358,179,0,1538,1539,5,216,0,0,1539,1540,5,151,0,0,1540, + 1541,5,249,0,0,1541,1543,5,277,0,0,1542,1538,1,0,0,0,1542,1543,1, + 0,0,0,1543,1546,1,0,0,0,1544,1546,5,197,0,0,1545,1535,1,0,0,0,1545, + 1544,1,0,0,0,1545,1546,1,0,0,0,1546,1549,1,0,0,0,1547,1548,5,25, + 0,0,1548,1550,3,252,126,0,1549,1547,1,0,0,0,1549,1550,1,0,0,0,1550, + 197,1,0,0,0,1551,1556,3,200,100,0,1552,1553,5,263,0,0,1553,1555, + 3,200,100,0,1554,1552,1,0,0,0,1555,1558,1,0,0,0,1556,1554,1,0,0, + 0,1556,1557,1,0,0,0,1557,199,1,0,0,0,1558,1556,1,0,0,0,1559,1560, + 3,358,179,0,1560,1561,5,249,0,0,1561,1562,3,308,154,0,1562,201,1, + 0,0,0,1563,1565,5,265,0,0,1564,1566,3,204,102,0,1565,1564,1,0,0, + 0,1565,1566,1,0,0,0,1566,1573,1,0,0,0,1567,1569,5,263,0,0,1568,1570, + 3,204,102,0,1569,1568,1,0,0,0,1569,1570,1,0,0,0,1570,1572,1,0,0, + 0,1571,1567,1,0,0,0,1572,1575,1,0,0,0,1573,1571,1,0,0,0,1573,1574, + 1,0,0,0,1574,1576,1,0,0,0,1575,1573,1,0,0,0,1576,1577,5,266,0,0, + 1577,203,1,0,0,0,1578,1580,3,182,91,0,1579,1581,3,222,111,0,1580, + 1579,1,0,0,0,1580,1581,1,0,0,0,1581,205,1,0,0,0,1582,1584,3,208, + 104,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584,1585,1,0,0,0,1585, + 1586,3,262,131,0,1586,207,1,0,0,0,1587,1588,5,216,0,0,1588,1593, + 3,278,139,0,1589,1590,5,263,0,0,1590,1592,3,278,139,0,1591,1589, + 1,0,0,0,1592,1595,1,0,0,0,1593,1591,1,0,0,0,1593,1594,1,0,0,0,1594, + 209,1,0,0,0,1595,1593,1,0,0,0,1596,1597,5,150,0,0,1597,1598,5,110, + 0,0,1598,1600,3,296,148,0,1599,1601,5,53,0,0,1600,1599,1,0,0,0,1600, + 1601,1,0,0,0,1601,1605,1,0,0,0,1602,1606,5,225,0,0,1603,1604,5,263, + 0,0,1604,1606,5,225,0,0,1605,1602,1,0,0,0,1605,1603,1,0,0,0,1605, + 1606,1,0,0,0,1606,1610,1,0,0,0,1607,1611,5,226,0,0,1608,1609,5,263, + 0,0,1609,1611,5,226,0,0,1610,1607,1,0,0,0,1610,1608,1,0,0,0,1610, + 1611,1,0,0,0,1611,1624,1,0,0,0,1612,1613,5,263,0,0,1613,1616,3,212, + 106,0,1614,1616,3,212,106,0,1615,1612,1,0,0,0,1615,1614,1,0,0,0, + 1616,1621,1,0,0,0,1617,1618,5,263,0,0,1618,1620,3,212,106,0,1619, + 1617,1,0,0,0,1620,1623,1,0,0,0,1621,1622,1,0,0,0,1621,1619,1,0,0, + 0,1622,1625,1,0,0,0,1623,1621,1,0,0,0,1624,1615,1,0,0,0,1624,1625, + 1,0,0,0,1625,211,1,0,0,0,1626,1627,5,81,0,0,1627,1628,5,110,0,0, + 1628,1629,3,296,148,0,1629,1630,5,224,0,0,1630,1631,3,186,93,0,1631, + 1633,3,296,148,0,1632,1634,5,53,0,0,1633,1632,1,0,0,0,1633,1634, + 1,0,0,0,1634,1636,1,0,0,0,1635,1637,5,225,0,0,1636,1635,1,0,0,0, + 1636,1637,1,0,0,0,1637,1639,1,0,0,0,1638,1640,5,226,0,0,1639,1638, + 1,0,0,0,1639,1640,1,0,0,0,1640,213,1,0,0,0,1641,1642,3,192,96,0, + 1642,1645,3,332,166,0,1643,1644,5,34,0,0,1644,1646,3,318,159,0,1645, + 1643,1,0,0,0,1645,1646,1,0,0,0,1646,215,1,0,0,0,1647,1648,3,182, + 91,0,1648,1650,3,332,166,0,1649,1651,3,222,111,0,1650,1649,1,0,0, + 0,1650,1651,1,0,0,0,1651,217,1,0,0,0,1652,1653,3,220,110,0,1653, + 219,1,0,0,0,1654,1655,3,182,91,0,1655,1663,3,332,166,0,1656,1660, + 3,228,114,0,1657,1659,3,228,114,0,1658,1657,1,0,0,0,1659,1662,1, + 0,0,0,1660,1661,1,0,0,0,1660,1658,1,0,0,0,1661,1664,1,0,0,0,1662, + 1660,1,0,0,0,1663,1656,1,0,0,0,1663,1664,1,0,0,0,1664,1666,1,0,0, + 0,1665,1667,3,222,111,0,1666,1665,1,0,0,0,1666,1667,1,0,0,0,1667, + 1670,1,0,0,0,1668,1669,5,150,0,0,1669,1671,5,110,0,0,1670,1668,1, + 0,0,0,1670,1671,1,0,0,0,1671,221,1,0,0,0,1672,1673,5,34,0,0,1673, + 1674,3,318,159,0,1674,223,1,0,0,0,1675,1683,3,214,107,0,1676,1680, + 3,228,114,0,1677,1679,3,228,114,0,1678,1677,1,0,0,0,1679,1682,1, + 0,0,0,1680,1681,1,0,0,0,1680,1678,1,0,0,0,1681,1684,1,0,0,0,1682, + 1680,1,0,0,0,1683,1676,1,0,0,0,1683,1684,1,0,0,0,1684,225,1,0,0, + 0,1685,1686,3,182,91,0,1686,1689,3,332,166,0,1687,1688,5,34,0,0, + 1688,1690,3,318,159,0,1689,1687,1,0,0,0,1689,1690,1,0,0,0,1690,1698, + 1,0,0,0,1691,1695,3,228,114,0,1692,1694,3,228,114,0,1693,1692,1, + 0,0,0,1694,1697,1,0,0,0,1695,1696,1,0,0,0,1695,1693,1,0,0,0,1696, + 1699,1,0,0,0,1697,1695,1,0,0,0,1698,1691,1,0,0,0,1698,1699,1,0,0, + 0,1699,227,1,0,0,0,1700,1702,5,132,0,0,1701,1700,1,0,0,0,1701,1702, + 1,0,0,0,1702,1703,1,0,0,0,1703,1706,5,133,0,0,1704,1706,3,230,115, + 0,1705,1701,1,0,0,0,1705,1704,1,0,0,0,1706,229,1,0,0,0,1707,1708, + 5,60,0,0,1708,1716,3,308,154,0,1709,1710,5,35,0,0,1710,1716,3,308, + 154,0,1711,1712,5,51,0,0,1712,1716,3,308,154,0,1713,1714,5,16,0, + 0,1714,1716,3,364,182,0,1715,1707,1,0,0,0,1715,1709,1,0,0,0,1715, + 1711,1,0,0,0,1715,1713,1,0,0,0,1716,231,1,0,0,0,1717,1718,7,10,0, + 0,1718,233,1,0,0,0,1719,1720,7,11,0,0,1720,235,1,0,0,0,1721,1726, + 3,238,119,0,1722,1723,5,263,0,0,1723,1725,3,238,119,0,1724,1722, + 1,0,0,0,1725,1728,1,0,0,0,1726,1727,1,0,0,0,1726,1724,1,0,0,0,1727, + 1731,1,0,0,0,1728,1726,1,0,0,0,1729,1730,5,263,0,0,1730,1732,3,240, + 120,0,1731,1729,1,0,0,0,1731,1732,1,0,0,0,1732,1735,1,0,0,0,1733, + 1735,3,240,120,0,1734,1721,1,0,0,0,1734,1733,1,0,0,0,1735,237,1, + 0,0,0,1736,1738,5,89,0,0,1737,1739,3,296,148,0,1738,1737,1,0,0,0, + 1738,1739,1,0,0,0,1739,1740,1,0,0,0,1740,1741,5,146,0,0,1741,1742, + 3,364,182,0,1742,239,1,0,0,0,1743,1745,5,154,0,0,1744,1746,3,296, + 148,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747, + 1748,5,265,0,0,1748,1749,5,145,0,0,1749,1755,3,242,121,0,1750,1751, + 5,263,0,0,1751,1752,5,145,0,0,1752,1754,3,242,121,0,1753,1750,1, + 0,0,0,1754,1757,1,0,0,0,1755,1756,1,0,0,0,1755,1753,1,0,0,0,1756, + 1758,1,0,0,0,1757,1755,1,0,0,0,1758,1759,5,266,0,0,1759,241,1,0, + 0,0,1760,1761,5,210,0,0,1761,1762,3,248,124,0,1762,1763,3,308,154, + 0,1763,1776,1,0,0,0,1764,1765,3,308,154,0,1765,1766,3,246,123,0, + 1766,1768,1,0,0,0,1767,1764,1,0,0,0,1767,1768,1,0,0,0,1768,1769, + 1,0,0,0,1769,1773,5,211,0,0,1770,1771,3,246,123,0,1771,1772,3,308, + 154,0,1772,1774,1,0,0,0,1773,1770,1,0,0,0,1773,1774,1,0,0,0,1774, + 1776,1,0,0,0,1775,1760,1,0,0,0,1775,1767,1,0,0,0,1776,243,1,0,0, + 0,1777,1778,5,30,0,0,1778,1779,5,94,0,0,1779,1784,3,362,181,0,1780, + 1781,5,216,0,0,1781,1782,5,151,0,0,1782,1783,5,249,0,0,1783,1785, + 3,364,182,0,1784,1780,1,0,0,0,1784,1785,1,0,0,0,1785,1788,1,0,0, + 0,1786,1788,5,197,0,0,1787,1777,1,0,0,0,1787,1786,1,0,0,0,1788,245, + 1,0,0,0,1789,1795,1,0,0,0,1790,1795,5,251,0,0,1791,1795,5,252,0, + 0,1792,1795,5,253,0,0,1793,1795,5,254,0,0,1794,1789,1,0,0,0,1794, + 1790,1,0,0,0,1794,1791,1,0,0,0,1794,1792,1,0,0,0,1794,1793,1,0,0, + 0,1795,247,1,0,0,0,1796,1805,5,249,0,0,1797,1805,5,250,0,0,1798, + 1805,5,115,0,0,1799,1805,5,164,0,0,1800,1805,5,163,0,0,1801,1805, + 5,15,0,0,1802,1805,5,94,0,0,1803,1805,3,246,123,0,1804,1796,1,0, + 0,0,1804,1797,1,0,0,0,1804,1798,1,0,0,0,1804,1799,1,0,0,0,1804,1800, + 1,0,0,0,1804,1801,1,0,0,0,1804,1802,1,0,0,0,1804,1803,1,0,0,0,1805, + 249,1,0,0,0,1806,1807,5,115,0,0,1807,1810,3,358,179,0,1808,1809, + 7,12,0,0,1809,1811,5,153,0,0,1810,1808,1,0,0,0,1810,1811,1,0,0,0, + 1811,251,1,0,0,0,1812,1813,5,265,0,0,1813,1818,3,260,130,0,1814, + 1815,5,263,0,0,1815,1817,3,260,130,0,1816,1814,1,0,0,0,1817,1820, + 1,0,0,0,1818,1816,1,0,0,0,1818,1819,1,0,0,0,1819,1821,1,0,0,0,1820, + 1818,1,0,0,0,1821,1822,5,266,0,0,1822,253,1,0,0,0,1823,1824,5,265, + 0,0,1824,1829,3,214,107,0,1825,1826,5,263,0,0,1826,1828,3,214,107, + 0,1827,1825,1,0,0,0,1828,1831,1,0,0,0,1829,1830,1,0,0,0,1829,1827, + 1,0,0,0,1830,1832,1,0,0,0,1831,1829,1,0,0,0,1832,1833,5,266,0,0, + 1833,255,1,0,0,0,1834,1839,3,308,154,0,1835,1836,5,263,0,0,1836, + 1838,3,308,154,0,1837,1835,1,0,0,0,1838,1841,1,0,0,0,1839,1837,1, + 0,0,0,1839,1840,1,0,0,0,1840,257,1,0,0,0,1841,1839,1,0,0,0,1842, + 1852,5,52,0,0,1843,1844,5,71,0,0,1844,1845,5,191,0,0,1845,1846,5, + 26,0,0,1846,1850,3,318,159,0,1847,1848,5,63,0,0,1848,1849,5,26,0, + 0,1849,1851,3,318,159,0,1850,1847,1,0,0,0,1850,1851,1,0,0,0,1851, + 1853,1,0,0,0,1852,1843,1,0,0,0,1852,1853,1,0,0,0,1853,1858,1,0,0, + 0,1854,1855,5,117,0,0,1855,1856,5,191,0,0,1856,1857,5,26,0,0,1857, + 1859,3,318,159,0,1858,1854,1,0,0,0,1858,1859,1,0,0,0,1859,259,1, + 0,0,0,1860,1863,3,362,181,0,1861,1862,5,249,0,0,1862,1864,3,308, + 154,0,1863,1861,1,0,0,0,1863,1864,1,0,0,0,1864,261,1,0,0,0,1865, + 1876,3,264,132,0,1866,1867,5,139,0,0,1867,1868,5,26,0,0,1868,1873, + 3,268,134,0,1869,1870,5,263,0,0,1870,1872,3,268,134,0,1871,1869, + 1,0,0,0,1872,1875,1,0,0,0,1873,1871,1,0,0,0,1873,1874,1,0,0,0,1874, + 1877,1,0,0,0,1875,1873,1,0,0,0,1876,1866,1,0,0,0,1876,1877,1,0,0, + 0,1877,1884,1,0,0,0,1878,1879,5,116,0,0,1879,1882,3,308,154,0,1880, + 1881,5,135,0,0,1881,1883,5,277,0,0,1882,1880,1,0,0,0,1882,1883,1, + 0,0,0,1883,1885,1,0,0,0,1884,1878,1,0,0,0,1884,1885,1,0,0,0,1885, + 263,1,0,0,0,1886,1887,6,132,-1,0,1887,1888,3,266,133,0,1888,1903, + 1,0,0,0,1889,1890,10,2,0,0,1890,1892,5,100,0,0,1891,1893,3,280,140, + 0,1892,1891,1,0,0,0,1892,1893,1,0,0,0,1893,1894,1,0,0,0,1894,1902, + 3,264,132,3,1895,1896,10,1,0,0,1896,1898,7,13,0,0,1897,1899,3,280, + 140,0,1898,1897,1,0,0,0,1898,1899,1,0,0,0,1899,1900,1,0,0,0,1900, + 1902,3,264,132,2,1901,1889,1,0,0,0,1901,1895,1,0,0,0,1902,1905,1, + 0,0,0,1903,1901,1,0,0,0,1903,1904,1,0,0,0,1904,265,1,0,0,0,1905, + 1903,1,0,0,0,1906,1923,3,270,135,0,1907,1908,5,188,0,0,1908,1923, + 3,186,93,0,1909,1910,5,211,0,0,1910,1915,3,308,154,0,1911,1912,5, + 263,0,0,1912,1914,3,308,154,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,1923,1,0,0,0,1917,1915, + 1,0,0,0,1918,1919,5,265,0,0,1919,1920,3,262,131,0,1920,1921,5,266, + 0,0,1921,1923,1,0,0,0,1922,1906,1,0,0,0,1922,1907,1,0,0,0,1922,1909, + 1,0,0,0,1922,1918,1,0,0,0,1923,267,1,0,0,0,1924,1926,3,306,153,0, + 1925,1927,7,14,0,0,1926,1925,1,0,0,0,1926,1927,1,0,0,0,1927,1930, + 1,0,0,0,1928,1929,5,134,0,0,1929,1931,7,15,0,0,1930,1928,1,0,0,0, + 1930,1931,1,0,0,0,1931,269,1,0,0,0,1932,1934,5,174,0,0,1933,1935, + 3,280,140,0,1934,1933,1,0,0,0,1934,1935,1,0,0,0,1935,1937,1,0,0, + 0,1936,1938,5,183,0,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939, + 1,0,0,0,1939,1944,3,282,141,0,1940,1941,5,263,0,0,1941,1943,3,282, + 141,0,1942,1940,1,0,0,0,1943,1946,1,0,0,0,1944,1942,1,0,0,0,1944, + 1945,1,0,0,0,1945,1956,1,0,0,0,1946,1944,1,0,0,0,1947,1948,5,82, + 0,0,1948,1953,3,284,142,0,1949,1950,5,263,0,0,1950,1952,3,284,142, + 0,1951,1949,1,0,0,0,1952,1955,1,0,0,0,1953,1951,1,0,0,0,1953,1954, + 1,0,0,0,1954,1957,1,0,0,0,1955,1953,1,0,0,0,1956,1947,1,0,0,0,1956, + 1957,1,0,0,0,1957,1960,1,0,0,0,1958,1959,5,215,0,0,1959,1961,3,310, + 155,0,1960,1958,1,0,0,0,1960,1961,1,0,0,0,1961,1965,1,0,0,0,1962, + 1963,5,87,0,0,1963,1964,5,26,0,0,1964,1966,3,272,136,0,1965,1962, + 1,0,0,0,1965,1966,1,0,0,0,1966,1969,1,0,0,0,1967,1968,5,90,0,0,1968, + 1970,3,310,155,0,1969,1967,1,0,0,0,1969,1970,1,0,0,0,1970,271,1, + 0,0,0,1971,1973,3,280,140,0,1972,1971,1,0,0,0,1972,1973,1,0,0,0, + 1973,1974,1,0,0,0,1974,1979,3,274,137,0,1975,1976,5,263,0,0,1976, + 1978,3,274,137,0,1977,1975,1,0,0,0,1978,1981,1,0,0,0,1979,1977,1, + 0,0,0,1979,1980,1,0,0,0,1980,273,1,0,0,0,1981,1979,1,0,0,0,1982, + 1983,3,276,138,0,1983,275,1,0,0,0,1984,1993,5,265,0,0,1985,1990, + 3,306,153,0,1986,1987,5,263,0,0,1987,1989,3,306,153,0,1988,1986, + 1,0,0,0,1989,1992,1,0,0,0,1990,1988,1,0,0,0,1990,1991,1,0,0,0,1991, + 1994,1,0,0,0,1992,1990,1,0,0,0,1993,1985,1,0,0,0,1993,1994,1,0,0, + 0,1994,1995,1,0,0,0,1995,1998,5,266,0,0,1996,1998,3,306,153,0,1997, + 1984,1,0,0,0,1997,1996,1,0,0,0,1998,277,1,0,0,0,1999,2001,3,362, + 181,0,2000,2002,3,296,148,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0, + 2002,2003,1,0,0,0,2003,2004,5,9,0,0,2004,2005,3,300,150,0,2005,279, + 1,0,0,0,2006,2007,7,16,0,0,2007,281,1,0,0,0,2008,2013,3,306,153, + 0,2009,2011,5,9,0,0,2010,2009,1,0,0,0,2010,2011,1,0,0,0,2011,2012, + 1,0,0,0,2012,2014,3,362,181,0,2013,2010,1,0,0,0,2013,2014,1,0,0, + 0,2014,2021,1,0,0,0,2015,2016,3,358,179,0,2016,2017,5,261,0,0,2017, + 2018,5,257,0,0,2018,2021,1,0,0,0,2019,2021,5,257,0,0,2020,2008,1, + 0,0,0,2020,2015,1,0,0,0,2020,2019,1,0,0,0,2021,283,1,0,0,0,2022, + 2023,6,142,-1,0,2023,2024,3,290,145,0,2024,2038,1,0,0,0,2025,2034, + 10,2,0,0,2026,2027,5,38,0,0,2027,2028,5,109,0,0,2028,2035,3,290, + 145,0,2029,2030,3,286,143,0,2030,2031,5,109,0,0,2031,2032,3,284, + 142,0,2032,2033,3,288,144,0,2033,2035,1,0,0,0,2034,2026,1,0,0,0, + 2034,2029,1,0,0,0,2035,2037,1,0,0,0,2036,2025,1,0,0,0,2037,2040, + 1,0,0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039,285,1,0,0,0,2040, + 2038,1,0,0,0,2041,2043,5,97,0,0,2042,2041,1,0,0,0,2042,2043,1,0, + 0,0,2043,2073,1,0,0,0,2044,2046,5,114,0,0,2045,2047,5,97,0,0,2046, + 2045,1,0,0,0,2046,2047,1,0,0,0,2047,2073,1,0,0,0,2048,2050,5,165, + 0,0,2049,2051,5,97,0,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051, + 2073,1,0,0,0,2052,2054,5,114,0,0,2053,2055,5,141,0,0,2054,2053,1, + 0,0,0,2054,2055,1,0,0,0,2055,2073,1,0,0,0,2056,2058,5,165,0,0,2057, + 2059,5,141,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2073,1,0, + 0,0,2060,2062,5,83,0,0,2061,2063,5,141,0,0,2062,2061,1,0,0,0,2062, + 2063,1,0,0,0,2063,2073,1,0,0,0,2064,2065,5,114,0,0,2065,2073,5,177, + 0,0,2066,2067,5,165,0,0,2067,2073,5,177,0,0,2068,2069,5,114,0,0, + 2069,2073,5,7,0,0,2070,2071,5,165,0,0,2071,2073,5,7,0,0,2072,2042, + 1,0,0,0,2072,2044,1,0,0,0,2072,2048,1,0,0,0,2072,2052,1,0,0,0,2072, + 2056,1,0,0,0,2072,2060,1,0,0,0,2072,2064,1,0,0,0,2072,2066,1,0,0, + 0,2072,2068,1,0,0,0,2072,2070,1,0,0,0,2073,287,1,0,0,0,2074,2075, + 5,136,0,0,2075,2089,3,310,155,0,2076,2077,5,205,0,0,2077,2078,5, + 265,0,0,2078,2083,3,362,181,0,2079,2080,5,263,0,0,2080,2082,3,362, + 181,0,2081,2079,1,0,0,0,2082,2085,1,0,0,0,2083,2081,1,0,0,0,2083, + 2084,1,0,0,0,2084,2086,1,0,0,0,2085,2083,1,0,0,0,2086,2087,5,266, + 0,0,2087,2089,1,0,0,0,2088,2074,1,0,0,0,2088,2076,1,0,0,0,2089,289, + 1,0,0,0,2090,2103,3,294,147,0,2091,2092,5,190,0,0,2092,2093,3,292, + 146,0,2093,2094,5,265,0,0,2094,2095,3,308,154,0,2095,2101,5,266, + 0,0,2096,2097,5,157,0,0,2097,2098,5,265,0,0,2098,2099,3,308,154, + 0,2099,2100,5,266,0,0,2100,2102,1,0,0,0,2101,2096,1,0,0,0,2101,2102, + 1,0,0,0,2102,2104,1,0,0,0,2103,2091,1,0,0,0,2103,2104,1,0,0,0,2104, + 291,1,0,0,0,2105,2106,7,17,0,0,2106,293,1,0,0,0,2107,2115,3,298, + 149,0,2108,2110,5,9,0,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110, + 2111,1,0,0,0,2111,2113,3,362,181,0,2112,2114,3,296,148,0,2113,2112, + 1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115,2109,1,0,0,0,2115, + 2116,1,0,0,0,2116,295,1,0,0,0,2117,2118,5,265,0,0,2118,2123,3,192, + 96,0,2119,2120,5,263,0,0,2120,2122,3,192,96,0,2121,2119,1,0,0,0, + 2122,2125,1,0,0,0,2123,2121,1,0,0,0,2123,2124,1,0,0,0,2124,2126, + 1,0,0,0,2125,2123,1,0,0,0,2126,2127,5,266,0,0,2127,297,1,0,0,0,2128, + 2136,3,194,97,0,2129,2131,5,113,0,0,2130,2129,1,0,0,0,2130,2131, + 1,0,0,0,2131,2132,1,0,0,0,2132,2136,3,300,150,0,2133,2136,3,302, + 151,0,2134,2136,3,304,152,0,2135,2128,1,0,0,0,2135,2130,1,0,0,0, + 2135,2133,1,0,0,0,2135,2134,1,0,0,0,2136,299,1,0,0,0,2137,2138,5, + 265,0,0,2138,2139,3,206,103,0,2139,2140,5,266,0,0,2140,301,1,0,0, + 0,2141,2142,5,201,0,0,2142,2143,5,265,0,0,2143,2148,3,308,154,0, + 2144,2145,5,263,0,0,2145,2147,3,308,154,0,2146,2144,1,0,0,0,2147, + 2150,1,0,0,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2151,1,0,0, + 0,2150,2148,1,0,0,0,2151,2154,5,266,0,0,2152,2153,5,216,0,0,2153, + 2155,5,140,0,0,2154,2152,1,0,0,0,2154,2155,1,0,0,0,2155,303,1,0, + 0,0,2156,2157,5,265,0,0,2157,2158,3,284,142,0,2158,2159,5,266,0, + 0,2159,305,1,0,0,0,2160,2163,3,192,96,0,2161,2163,3,308,154,0,2162, + 2160,1,0,0,0,2162,2161,1,0,0,0,2163,307,1,0,0,0,2164,2165,3,310, + 155,0,2165,309,1,0,0,0,2166,2167,6,155,-1,0,2167,2169,3,314,157, + 0,2168,2170,3,312,156,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170, + 2174,1,0,0,0,2171,2172,5,132,0,0,2172,2174,3,310,155,3,2173,2166, + 1,0,0,0,2173,2171,1,0,0,0,2174,2183,1,0,0,0,2175,2176,10,2,0,0,2176, + 2177,5,5,0,0,2177,2182,3,310,155,3,2178,2179,10,1,0,0,2179,2180, + 5,138,0,0,2180,2182,3,310,155,2,2181,2175,1,0,0,0,2181,2178,1,0, + 0,0,2182,2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184,1,0,0,0,2184,311, + 1,0,0,0,2185,2183,1,0,0,0,2186,2187,3,320,160,0,2187,2188,3,314, + 157,0,2188,2245,1,0,0,0,2189,2190,3,320,160,0,2190,2191,3,322,161, + 0,2191,2192,3,300,150,0,2192,2245,1,0,0,0,2193,2195,5,132,0,0,2194, + 2193,1,0,0,0,2194,2195,1,0,0,0,2195,2196,1,0,0,0,2196,2197,5,15, + 0,0,2197,2198,3,314,157,0,2198,2199,5,5,0,0,2199,2200,3,314,157, + 0,2200,2245,1,0,0,0,2201,2203,5,132,0,0,2202,2201,1,0,0,0,2202,2203, + 1,0,0,0,2203,2204,1,0,0,0,2204,2205,5,94,0,0,2205,2206,5,265,0,0, + 2206,2211,3,308,154,0,2207,2208,5,263,0,0,2208,2210,3,308,154,0, + 2209,2207,1,0,0,0,2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212, + 1,0,0,0,2212,2214,1,0,0,0,2213,2211,1,0,0,0,2214,2215,5,266,0,0, + 2215,2245,1,0,0,0,2216,2218,5,132,0,0,2217,2216,1,0,0,0,2217,2218, + 1,0,0,0,2218,2219,1,0,0,0,2219,2220,5,94,0,0,2220,2245,3,300,150, + 0,2221,2223,5,132,0,0,2222,2221,1,0,0,0,2222,2223,1,0,0,0,2223,2224, + 1,0,0,0,2224,2225,7,18,0,0,2225,2228,3,314,157,0,2226,2227,5,62, + 0,0,2227,2229,3,314,157,0,2228,2226,1,0,0,0,2228,2229,1,0,0,0,2229, + 2245,1,0,0,0,2230,2231,7,19,0,0,2231,2245,3,314,157,0,2232,2234, + 5,108,0,0,2233,2235,5,132,0,0,2234,2233,1,0,0,0,2234,2235,1,0,0, + 0,2235,2236,1,0,0,0,2236,2245,7,20,0,0,2237,2239,5,108,0,0,2238, + 2240,5,132,0,0,2239,2238,1,0,0,0,2239,2240,1,0,0,0,2240,2241,1,0, + 0,0,2241,2242,5,57,0,0,2242,2243,5,82,0,0,2243,2245,3,314,157,0, + 2244,2186,1,0,0,0,2244,2189,1,0,0,0,2244,2194,1,0,0,0,2244,2202, + 1,0,0,0,2244,2217,1,0,0,0,2244,2222,1,0,0,0,2244,2230,1,0,0,0,2244, + 2232,1,0,0,0,2244,2237,1,0,0,0,2245,313,1,0,0,0,2246,2247,6,157, + -1,0,2247,2251,3,316,158,0,2248,2249,7,21,0,0,2249,2251,3,314,157, + 4,2250,2246,1,0,0,0,2250,2248,1,0,0,0,2251,2263,1,0,0,0,2252,2253, + 10,3,0,0,2253,2254,7,22,0,0,2254,2262,3,314,157,4,2255,2256,10,2, + 0,0,2256,2257,7,21,0,0,2257,2262,3,314,157,3,2258,2259,10,1,0,0, + 2259,2260,5,260,0,0,2260,2262,3,314,157,2,2261,2252,1,0,0,0,2261, + 2255,1,0,0,0,2261,2258,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0, + 0,2263,2264,1,0,0,0,2264,315,1,0,0,0,2265,2263,1,0,0,0,2266,2267, + 6,158,-1,0,2267,2513,5,133,0,0,2268,2513,3,326,163,0,2269,2270,3, + 362,181,0,2270,2271,3,318,159,0,2271,2513,1,0,0,0,2272,2273,5,286, + 0,0,2273,2513,3,318,159,0,2274,2513,3,364,182,0,2275,2513,3,324, + 162,0,2276,2513,3,318,159,0,2277,2513,5,276,0,0,2278,2513,5,272, + 0,0,2279,2280,5,148,0,0,2280,2281,5,265,0,0,2281,2282,3,314,157, + 0,2282,2283,5,94,0,0,2283,2284,3,314,157,0,2284,2285,5,266,0,0,2285, + 2513,1,0,0,0,2286,2287,5,265,0,0,2287,2290,3,308,154,0,2288,2289, + 5,9,0,0,2289,2291,3,332,166,0,2290,2288,1,0,0,0,2290,2291,1,0,0, + 0,2291,2300,1,0,0,0,2292,2293,5,263,0,0,2293,2296,3,308,154,0,2294, + 2295,5,9,0,0,2295,2297,3,332,166,0,2296,2294,1,0,0,0,2296,2297,1, + 0,0,0,2297,2299,1,0,0,0,2298,2292,1,0,0,0,2299,2302,1,0,0,0,2300, + 2301,1,0,0,0,2300,2298,1,0,0,0,2301,2303,1,0,0,0,2302,2300,1,0,0, + 0,2303,2304,5,266,0,0,2304,2513,1,0,0,0,2305,2306,5,168,0,0,2306, + 2307,5,265,0,0,2307,2312,3,308,154,0,2308,2309,5,263,0,0,2309,2311, + 3,308,154,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,266,0,0,2316,2513,1,0,0,0,2317,2318,3,190,95,0,2318,2319,5,265, + 0,0,2319,2320,5,257,0,0,2320,2322,5,266,0,0,2321,2323,3,342,171, + 0,2322,2321,1,0,0,0,2322,2323,1,0,0,0,2323,2325,1,0,0,0,2324,2326, + 3,344,172,0,2325,2324,1,0,0,0,2325,2326,1,0,0,0,2326,2513,1,0,0, + 0,2327,2328,3,190,95,0,2328,2340,5,265,0,0,2329,2331,3,280,140,0, + 2330,2329,1,0,0,0,2330,2331,1,0,0,0,2331,2332,1,0,0,0,2332,2337, + 3,308,154,0,2333,2334,5,263,0,0,2334,2336,3,308,154,0,2335,2333, + 1,0,0,0,2336,2339,1,0,0,0,2337,2335,1,0,0,0,2337,2338,1,0,0,0,2338, + 2341,1,0,0,0,2339,2337,1,0,0,0,2340,2330,1,0,0,0,2340,2341,1,0,0, + 0,2341,2352,1,0,0,0,2342,2343,5,139,0,0,2343,2344,5,26,0,0,2344, + 2349,3,268,134,0,2345,2346,5,263,0,0,2346,2348,3,268,134,0,2347, + 2345,1,0,0,0,2348,2351,1,0,0,0,2349,2347,1,0,0,0,2349,2350,1,0,0, + 0,2350,2353,1,0,0,0,2351,2349,1,0,0,0,2352,2342,1,0,0,0,2352,2353, + 1,0,0,0,2353,2354,1,0,0,0,2354,2356,5,266,0,0,2355,2357,3,342,171, + 0,2356,2355,1,0,0,0,2356,2357,1,0,0,0,2357,2359,1,0,0,0,2358,2360, + 3,344,172,0,2359,2358,1,0,0,0,2359,2360,1,0,0,0,2360,2513,1,0,0, + 0,2361,2362,3,362,181,0,2362,2363,5,273,0,0,2363,2364,3,308,154, + 0,2364,2513,1,0,0,0,2365,2374,5,265,0,0,2366,2371,3,362,181,0,2367, + 2368,5,263,0,0,2368,2370,3,362,181,0,2369,2367,1,0,0,0,2370,2373, + 1,0,0,0,2371,2369,1,0,0,0,2371,2372,1,0,0,0,2372,2375,1,0,0,0,2373, + 2371,1,0,0,0,2374,2366,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0,0, + 0,2376,2377,5,266,0,0,2377,2378,5,273,0,0,2378,2513,3,308,154,0, + 2379,2380,5,265,0,0,2380,2381,3,206,103,0,2381,2382,5,266,0,0,2382, + 2513,1,0,0,0,2383,2384,5,66,0,0,2384,2385,5,265,0,0,2385,2386,3, + 206,103,0,2386,2387,5,266,0,0,2387,2513,1,0,0,0,2388,2389,5,28,0, + 0,2389,2391,3,314,157,0,2390,2392,3,340,170,0,2391,2390,1,0,0,0, + 2392,2393,1,0,0,0,2393,2391,1,0,0,0,2393,2394,1,0,0,0,2394,2397, + 1,0,0,0,2395,2396,5,59,0,0,2396,2398,3,308,154,0,2397,2395,1,0,0, + 0,2397,2398,1,0,0,0,2398,2399,1,0,0,0,2399,2400,5,61,0,0,2400,2513, + 1,0,0,0,2401,2403,5,28,0,0,2402,2404,3,340,170,0,2403,2402,1,0,0, + 0,2404,2405,1,0,0,0,2405,2403,1,0,0,0,2405,2406,1,0,0,0,2406,2409, + 1,0,0,0,2407,2408,5,59,0,0,2408,2410,3,308,154,0,2409,2407,1,0,0, + 0,2409,2410,1,0,0,0,2410,2411,1,0,0,0,2411,2412,5,61,0,0,2412,2513, + 1,0,0,0,2413,2414,5,29,0,0,2414,2415,5,265,0,0,2415,2416,3,308,154, + 0,2416,2417,5,9,0,0,2417,2418,3,332,166,0,2418,2419,5,266,0,0,2419, + 2513,1,0,0,0,2420,2421,5,195,0,0,2421,2422,5,265,0,0,2422,2423,3, + 308,154,0,2423,2424,5,9,0,0,2424,2425,3,332,166,0,2425,2426,5,266, + 0,0,2426,2513,1,0,0,0,2427,2428,5,8,0,0,2428,2437,5,267,0,0,2429, + 2434,3,308,154,0,2430,2431,5,263,0,0,2431,2433,3,308,154,0,2432, + 2430,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,2429,1,0,0,0,2437,2438, + 1,0,0,0,2438,2439,1,0,0,0,2439,2513,5,268,0,0,2440,2513,3,362,181, + 0,2441,2513,5,40,0,0,2442,2446,5,42,0,0,2443,2444,5,265,0,0,2444, + 2445,5,277,0,0,2445,2447,5,266,0,0,2446,2443,1,0,0,0,2446,2447,1, + 0,0,0,2447,2513,1,0,0,0,2448,2452,5,43,0,0,2449,2450,5,265,0,0,2450, + 2451,5,277,0,0,2451,2453,5,266,0,0,2452,2449,1,0,0,0,2452,2453,1, + 0,0,0,2453,2513,1,0,0,0,2454,2458,5,119,0,0,2455,2456,5,265,0,0, + 2456,2457,5,277,0,0,2457,2459,5,266,0,0,2458,2455,1,0,0,0,2458,2459, + 1,0,0,0,2459,2513,1,0,0,0,2460,2464,5,120,0,0,2461,2462,5,265,0, + 0,2462,2463,5,277,0,0,2463,2465,5,266,0,0,2464,2461,1,0,0,0,2464, + 2465,1,0,0,0,2465,2513,1,0,0,0,2466,2513,5,44,0,0,2467,2513,5,41, + 0,0,2468,2469,5,184,0,0,2469,2470,5,265,0,0,2470,2471,3,314,157, + 0,2471,2472,5,82,0,0,2472,2475,3,314,157,0,2473,2474,5,78,0,0,2474, + 2476,3,314,157,0,2475,2473,1,0,0,0,2475,2476,1,0,0,0,2476,2477,1, + 0,0,0,2477,2478,5,266,0,0,2478,2513,1,0,0,0,2479,2480,5,131,0,0, + 2480,2481,5,265,0,0,2481,2484,3,314,157,0,2482,2483,5,263,0,0,2483, + 2485,3,330,165,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1, + 0,0,0,2486,2487,5,266,0,0,2487,2513,1,0,0,0,2488,2489,5,68,0,0,2489, + 2490,5,265,0,0,2490,2491,3,362,181,0,2491,2492,5,82,0,0,2492,2493, + 3,314,157,0,2493,2494,5,266,0,0,2494,2513,1,0,0,0,2495,2496,5,265, + 0,0,2496,2497,3,308,154,0,2497,2498,5,266,0,0,2498,2513,1,0,0,0, + 2499,2500,5,88,0,0,2500,2509,5,265,0,0,2501,2506,3,358,179,0,2502, + 2503,5,263,0,0,2503,2505,3,358,179,0,2504,2502,1,0,0,0,2505,2508, + 1,0,0,0,2506,2504,1,0,0,0,2506,2507,1,0,0,0,2507,2510,1,0,0,0,2508, + 2506,1,0,0,0,2509,2501,1,0,0,0,2509,2510,1,0,0,0,2510,2511,1,0,0, + 0,2511,2513,5,266,0,0,2512,2266,1,0,0,0,2512,2268,1,0,0,0,2512,2269, + 1,0,0,0,2512,2272,1,0,0,0,2512,2274,1,0,0,0,2512,2275,1,0,0,0,2512, + 2276,1,0,0,0,2512,2277,1,0,0,0,2512,2278,1,0,0,0,2512,2279,1,0,0, + 0,2512,2286,1,0,0,0,2512,2305,1,0,0,0,2512,2317,1,0,0,0,2512,2327, + 1,0,0,0,2512,2361,1,0,0,0,2512,2365,1,0,0,0,2512,2379,1,0,0,0,2512, + 2383,1,0,0,0,2512,2388,1,0,0,0,2512,2401,1,0,0,0,2512,2413,1,0,0, + 0,2512,2420,1,0,0,0,2512,2427,1,0,0,0,2512,2440,1,0,0,0,2512,2441, + 1,0,0,0,2512,2442,1,0,0,0,2512,2448,1,0,0,0,2512,2454,1,0,0,0,2512, + 2460,1,0,0,0,2512,2466,1,0,0,0,2512,2467,1,0,0,0,2512,2468,1,0,0, + 0,2512,2479,1,0,0,0,2512,2488,1,0,0,0,2512,2495,1,0,0,0,2512,2499, + 1,0,0,0,2513,2524,1,0,0,0,2514,2515,10,15,0,0,2515,2516,5,267,0, + 0,2516,2517,3,314,157,0,2517,2518,5,268,0,0,2518,2523,1,0,0,0,2519, + 2520,10,13,0,0,2520,2521,5,261,0,0,2521,2523,3,362,181,0,2522,2514, + 1,0,0,0,2522,2519,1,0,0,0,2523,2526,1,0,0,0,2524,2522,1,0,0,0,2524, + 2525,1,0,0,0,2525,317,1,0,0,0,2526,2524,1,0,0,0,2527,2534,5,274, + 0,0,2528,2531,5,275,0,0,2529,2530,5,198,0,0,2530,2532,5,274,0,0, + 2531,2529,1,0,0,0,2531,2532,1,0,0,0,2532,2534,1,0,0,0,2533,2527, + 1,0,0,0,2533,2528,1,0,0,0,2534,319,1,0,0,0,2535,2536,7,23,0,0,2536, + 321,1,0,0,0,2537,2538,7,24,0,0,2538,323,1,0,0,0,2539,2540,7,25,0, + 0,2540,325,1,0,0,0,2541,2542,5,277,0,0,2542,2556,3,328,164,0,2543, + 2544,5,265,0,0,2544,2545,5,277,0,0,2545,2546,5,266,0,0,2546,2556, + 3,328,164,0,2547,2548,5,101,0,0,2548,2549,5,277,0,0,2549,2556,3, + 328,164,0,2550,2551,5,101,0,0,2551,2552,5,265,0,0,2552,2553,5,277, + 0,0,2553,2554,5,266,0,0,2554,2556,3,328,164,0,2555,2541,1,0,0,0, + 2555,2543,1,0,0,0,2555,2547,1,0,0,0,2555,2550,1,0,0,0,2556,327,1, + 0,0,0,2557,2558,7,26,0,0,2558,329,1,0,0,0,2559,2560,7,27,0,0,2560, + 331,1,0,0,0,2561,2562,6,166,-1,0,2562,2563,5,8,0,0,2563,2564,5,251, + 0,0,2564,2565,3,332,166,0,2565,2566,5,253,0,0,2566,2607,1,0,0,0, + 2567,2568,5,235,0,0,2568,2569,5,251,0,0,2569,2570,3,332,166,0,2570, + 2571,5,263,0,0,2571,2572,3,332,166,0,2572,2573,5,253,0,0,2573,2607, + 1,0,0,0,2574,2575,5,240,0,0,2575,2576,5,251,0,0,2576,2577,3,362, + 181,0,2577,2584,3,332,166,0,2578,2579,5,263,0,0,2579,2580,3,362, + 181,0,2580,2581,3,332,166,0,2581,2583,1,0,0,0,2582,2578,1,0,0,0, + 2583,2586,1,0,0,0,2584,2582,1,0,0,0,2584,2585,1,0,0,0,2585,2587, + 1,0,0,0,2586,2584,1,0,0,0,2587,2588,5,253,0,0,2588,2607,1,0,0,0, + 2589,2592,3,338,169,0,2590,2592,3,334,167,0,2591,2589,1,0,0,0,2591, + 2590,1,0,0,0,2592,2604,1,0,0,0,2593,2594,5,265,0,0,2594,2599,3,336, + 168,0,2595,2596,5,263,0,0,2596,2598,3,336,168,0,2597,2595,1,0,0, + 0,2598,2601,1,0,0,0,2599,2597,1,0,0,0,2599,2600,1,0,0,0,2600,2602, + 1,0,0,0,2601,2599,1,0,0,0,2602,2603,5,266,0,0,2603,2605,1,0,0,0, + 2604,2593,1,0,0,0,2604,2605,1,0,0,0,2605,2607,1,0,0,0,2606,2561, + 1,0,0,0,2606,2567,1,0,0,0,2606,2574,1,0,0,0,2606,2591,1,0,0,0,2607, + 2612,1,0,0,0,2608,2609,10,5,0,0,2609,2611,5,8,0,0,2610,2608,1,0, + 0,0,2611,2614,1,0,0,0,2612,2610,1,0,0,0,2612,2613,1,0,0,0,2613,333, + 1,0,0,0,2614,2612,1,0,0,0,2615,2616,7,28,0,0,2616,335,1,0,0,0,2617, + 2620,5,277,0,0,2618,2620,3,332,166,0,2619,2617,1,0,0,0,2619,2618, + 1,0,0,0,2620,337,1,0,0,0,2621,2626,5,284,0,0,2622,2626,5,285,0,0, + 2623,2626,5,286,0,0,2624,2626,3,362,181,0,2625,2621,1,0,0,0,2625, + 2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624,1,0,0,0,2626,339,1,0,0, + 0,2627,2628,5,214,0,0,2628,2629,3,308,154,0,2629,2630,5,192,0,0, + 2630,2631,3,308,154,0,2631,341,1,0,0,0,2632,2633,5,74,0,0,2633,2634, + 5,265,0,0,2634,2635,5,215,0,0,2635,2636,3,310,155,0,2636,2637,5, + 266,0,0,2637,343,1,0,0,0,2638,2639,5,143,0,0,2639,2650,5,265,0,0, + 2640,2641,5,145,0,0,2641,2642,5,26,0,0,2642,2647,3,308,154,0,2643, + 2644,5,263,0,0,2644,2646,3,308,154,0,2645,2643,1,0,0,0,2646,2649, + 1,0,0,0,2647,2645,1,0,0,0,2647,2648,1,0,0,0,2648,2651,1,0,0,0,2649, + 2647,1,0,0,0,2650,2640,1,0,0,0,2650,2651,1,0,0,0,2651,2662,1,0,0, + 0,2652,2653,5,139,0,0,2653,2654,5,26,0,0,2654,2659,3,268,134,0,2655, + 2656,5,263,0,0,2656,2658,3,268,134,0,2657,2655,1,0,0,0,2658,2661, + 1,0,0,0,2659,2657,1,0,0,0,2659,2660,1,0,0,0,2660,2663,1,0,0,0,2661, + 2659,1,0,0,0,2662,2652,1,0,0,0,2662,2663,1,0,0,0,2663,2665,1,0,0, + 0,2664,2666,3,346,173,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666, + 2667,1,0,0,0,2667,2668,5,266,0,0,2668,345,1,0,0,0,2669,2670,5,154, + 0,0,2670,2686,3,348,174,0,2671,2672,5,169,0,0,2672,2686,3,348,174, + 0,2673,2674,5,154,0,0,2674,2675,5,15,0,0,2675,2676,3,348,174,0,2676, + 2677,5,5,0,0,2677,2678,3,348,174,0,2678,2686,1,0,0,0,2679,2680,5, + 169,0,0,2680,2681,5,15,0,0,2681,2682,3,348,174,0,2682,2683,5,5,0, + 0,2683,2684,3,348,174,0,2684,2686,1,0,0,0,2685,2669,1,0,0,0,2685, + 2671,1,0,0,0,2685,2673,1,0,0,0,2685,2679,1,0,0,0,2686,347,1,0,0, + 0,2687,2688,5,199,0,0,2688,2697,5,149,0,0,2689,2690,5,199,0,0,2690, + 2697,5,77,0,0,2691,2692,5,39,0,0,2692,2697,5,168,0,0,2693,2694,3, + 308,154,0,2694,2695,7,29,0,0,2695,2697,1,0,0,0,2696,2687,1,0,0,0, + 2696,2689,1,0,0,0,2696,2691,1,0,0,0,2696,2693,1,0,0,0,2697,349,1, + 0,0,0,2698,2699,3,362,181,0,2699,2700,5,261,0,0,2700,2701,3,362, + 181,0,2701,2704,1,0,0,0,2702,2704,3,362,181,0,2703,2698,1,0,0,0, + 2703,2702,1,0,0,0,2704,351,1,0,0,0,2705,2710,3,350,175,0,2706,2707, + 5,263,0,0,2707,2709,3,350,175,0,2708,2706,1,0,0,0,2709,2712,1,0, + 0,0,2710,2708,1,0,0,0,2710,2711,1,0,0,0,2711,353,1,0,0,0,2712,2710, + 1,0,0,0,2713,2727,5,2,0,0,2714,2727,5,4,0,0,2715,2727,5,58,0,0,2716, + 2727,5,37,0,0,2717,2727,5,99,0,0,2718,2727,5,162,0,0,2719,2724,5, + 174,0,0,2720,2721,5,265,0,0,2721,2722,3,362,181,0,2722,2723,5,266, + 0,0,2723,2725,1,0,0,0,2724,2720,1,0,0,0,2724,2725,1,0,0,0,2725,2727, + 1,0,0,0,2726,2713,1,0,0,0,2726,2714,1,0,0,0,2726,2715,1,0,0,0,2726, + 2716,1,0,0,0,2726,2717,1,0,0,0,2726,2718,1,0,0,0,2726,2719,1,0,0, + 0,2727,355,1,0,0,0,2728,2729,7,30,0,0,2729,357,1,0,0,0,2730,2735, + 3,362,181,0,2731,2732,5,261,0,0,2732,2734,3,362,181,0,2733,2731, + 1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0,2735,2736,1,0,0,0,2736, + 359,1,0,0,0,2737,2735,1,0,0,0,2738,2739,5,166,0,0,2739,2745,3,362, + 181,0,2740,2741,5,204,0,0,2741,2745,3,362,181,0,2742,2743,5,87,0, + 0,2743,2745,3,362,181,0,2744,2738,1,0,0,0,2744,2740,1,0,0,0,2744, + 2742,1,0,0,0,2745,361,1,0,0,0,2746,2752,5,280,0,0,2747,2752,5,274, + 0,0,2748,2752,3,368,184,0,2749,2752,5,283,0,0,2750,2752,5,281,0, + 0,2751,2746,1,0,0,0,2751,2747,1,0,0,0,2751,2748,1,0,0,0,2751,2749, + 1,0,0,0,2751,2750,1,0,0,0,2752,363,1,0,0,0,2753,2755,5,256,0,0,2754, + 2753,1,0,0,0,2754,2755,1,0,0,0,2755,2756,1,0,0,0,2756,2766,5,278, + 0,0,2757,2759,5,256,0,0,2758,2757,1,0,0,0,2758,2759,1,0,0,0,2759, + 2760,1,0,0,0,2760,2766,5,279,0,0,2761,2763,5,256,0,0,2762,2761,1, + 0,0,0,2762,2763,1,0,0,0,2763,2764,1,0,0,0,2764,2766,5,277,0,0,2765, + 2754,1,0,0,0,2765,2758,1,0,0,0,2765,2762,1,0,0,0,2766,365,1,0,0, + 0,2767,2768,7,31,0,0,2768,367,1,0,0,0,2769,2770,7,32,0,0,2770,369, + 1,0,0,0,353,373,380,404,417,421,425,434,439,443,449,451,456,460, + 464,471,476,482,486,495,502,506,511,513,518,521,528,532,537,541, + 544,548,556,560,564,572,576,585,588,591,597,604,615,620,625,630, + 635,644,647,650,654,680,706,715,725,728,742,760,762,771,782,791, + 798,802,809,815,818,823,830,844,857,862,867,873,909,912,918,921, + 927,933,945,947,958,966,971,975,980,987,991,995,1001,1005,1009,1018, + 1021,1024,1032,1046,1053,1066,1072,1077,1080,1083,1088,1092,1101, + 1106,1112,1116,1121,1126,1129,1137,1140,1144,1156,1159,1163,1168, + 1172,1188,1193,1200,1203,1209,1212,1219,1222,1226,1231,1234,1241, + 1244,1268,1282,1286,1290,1310,1312,1314,1323,1325,1334,1336,1345, + 1347,1352,1361,1370,1379,1390,1396,1401,1404,1417,1427,1431,1436, + 1447,1452,1485,1493,1498,1502,1506,1511,1514,1519,1524,1529,1533, + 1542,1545,1549,1556,1565,1569,1573,1580,1583,1593,1600,1605,1610, + 1615,1621,1624,1633,1636,1639,1645,1650,1660,1663,1666,1670,1680, + 1683,1689,1695,1698,1701,1705,1715,1726,1731,1734,1738,1745,1755, + 1767,1773,1775,1784,1787,1794,1804,1810,1818,1829,1839,1850,1852, + 1858,1863,1873,1876,1882,1884,1892,1898,1901,1903,1915,1922,1926, + 1930,1934,1937,1944,1953,1956,1960,1965,1969,1972,1979,1990,1993, + 1997,2001,2010,2013,2020,2034,2038,2042,2046,2050,2054,2058,2062, + 2072,2083,2088,2101,2103,2109,2113,2115,2123,2130,2135,2148,2154, + 2162,2169,2173,2181,2183,2194,2202,2211,2217,2222,2228,2234,2239, + 2244,2250,2261,2263,2290,2296,2300,2312,2322,2325,2330,2337,2340, + 2349,2352,2356,2359,2371,2374,2393,2397,2405,2409,2434,2437,2446, + 2452,2458,2464,2475,2484,2506,2509,2512,2522,2524,2531,2533,2555, + 2584,2591,2599,2604,2606,2612,2619,2625,2647,2650,2659,2662,2665, + 2685,2696,2703,2710,2724,2726,2735,2744,2751,2754,2758,2762,2765 ]; private static __ATN: antlr.ATN; @@ -14668,11 +14713,8 @@ export class CreateKuduTableAsSelectContext extends antlr.ParserRuleContext { public kuduPartitionClause(): KuduPartitionClauseContext | null { return this.getRuleContext(0, KuduPartitionClauseContext); } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); - } - public stringLiteral(): StringLiteralContext | null { - return this.getRuleContext(0, StringLiteralContext); + public commentClause(): CommentClauseContext | null { + return this.getRuleContext(0, CommentClauseContext); } public KW_TBLPROPERTIES(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_TBLPROPERTIES, 0); @@ -14750,11 +14792,8 @@ export class CreateViewContext extends antlr.ParserRuleContext { public viewColumns(): ViewColumnsContext | null { return this.getRuleContext(0, ViewColumnsContext); } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); - } - public stringLiteral(): StringLiteralContext | null { - return this.getRuleContext(0, StringLiteralContext); + public commentClause(): CommentClauseContext | null { + return this.getRuleContext(0, CommentClauseContext); } public KW_TBLPROPERTIES(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_TBLPROPERTIES, 0); @@ -14786,7 +14825,6 @@ export class CreateViewContext extends antlr.ParserRuleContext { export class CreateSchemaContext extends antlr.ParserRuleContext { - public _comment?: StringLiteralContext; public _location?: StringLiteralContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -14806,20 +14844,14 @@ export class CreateSchemaContext extends antlr.ParserRuleContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); + public commentClause(): CommentClauseContext | null { + return this.getRuleContext(0, CommentClauseContext); } public KW_LOCATION(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_LOCATION, 0); } - public stringLiteral(): StringLiteralContext[]; - public stringLiteral(i: number): StringLiteralContext | null; - public stringLiteral(i?: number): StringLiteralContext[] | StringLiteralContext | null { - if (i === undefined) { - return this.getRuleContexts(StringLiteralContext); - } - - return this.getRuleContext(i, StringLiteralContext); + public stringLiteral(): StringLiteralContext | null { + return this.getRuleContext(0, StringLiteralContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_createSchema; @@ -14882,6 +14914,7 @@ export class CreateRoleContext extends antlr.ParserRuleContext { export class CreateAggregateFunctionContext extends antlr.ParserRuleContext { + public _returnType?: TypeContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -14897,15 +14930,6 @@ export class CreateAggregateFunctionContext extends antlr.ParserRuleContext { public KW_RETURNS(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.KW_RETURNS, 0)!; } - public type_(): TypeContext[]; - public type_(i: number): TypeContext | null; - public type_(i?: number): TypeContext[] | TypeContext | null { - if (i === undefined) { - return this.getRuleContexts(TypeContext); - } - - return this.getRuleContext(i, TypeContext); - } public KW_LOCATION(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.KW_LOCATION, 0)!; } @@ -14933,6 +14957,15 @@ export class CreateAggregateFunctionContext extends antlr.ParserRuleContext { public KW_MERGE_FN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.KW_MERGE_FN, 0)!; } + public type_(): TypeContext[]; + public type_(i: number): TypeContext | null; + public type_(i?: number): TypeContext[] | TypeContext | null { + if (i === undefined) { + return this.getRuleContexts(TypeContext); + } + + return this.getRuleContext(i, TypeContext); + } public KW_AGGREGATE(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_AGGREGATE, 0); } @@ -14996,6 +15029,7 @@ export class CreateAggregateFunctionContext extends antlr.ParserRuleContext { export class CreateFunctionContext extends antlr.ParserRuleContext { + public _returnType?: TypeContext; public _symbol_?: StringLiteralContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19157,7 +19191,6 @@ export class TableOrViewPathContext extends antlr.ParserRuleContext { export class CreateCommonItemContext extends antlr.ParserRuleContext { - public _comment?: StringLiteralContext; public _serdProp?: PropertiesContext; public _location?: StringLiteralContext; public _cacheName?: QualifiedNameContext; @@ -19174,8 +19207,8 @@ export class CreateCommonItemContext extends antlr.ParserRuleContext { public columnAliases(): ColumnAliasesContext | null { return this.getRuleContext(0, ColumnAliasesContext); } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); + public commentClause(): CommentClauseContext | null { + return this.getRuleContext(0, CommentClauseContext); } public KW_ROW(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_ROW, 0); @@ -19222,15 +19255,6 @@ export class CreateCommonItemContext extends antlr.ParserRuleContext { public KW_TBLPROPERTIES(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_TBLPROPERTIES, 0); } - public stringLiteral(): StringLiteralContext[]; - public stringLiteral(i: number): StringLiteralContext | null; - public stringLiteral(i?: number): StringLiteralContext[] | StringLiteralContext | null { - if (i === undefined) { - return this.getRuleContexts(StringLiteralContext); - } - - return this.getRuleContext(i, StringLiteralContext); - } public properties(): PropertiesContext[]; public properties(i: number): PropertiesContext | null; public properties(i?: number): PropertiesContext[] | PropertiesContext | null { @@ -19240,6 +19264,9 @@ export class CreateCommonItemContext extends antlr.ParserRuleContext { return this.getRuleContext(i, PropertiesContext); } + public stringLiteral(): StringLiteralContext | null { + return this.getRuleContext(0, StringLiteralContext); + } public qualifiedName(): QualifiedNameContext | null { return this.getRuleContext(0, QualifiedNameContext); } @@ -19363,35 +19390,17 @@ export class ViewColumnsContext extends antlr.ParserRuleContext { public LPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.LPAREN, 0)!; } - public columnNamePathCreate(): ColumnNamePathCreateContext[]; - public columnNamePathCreate(i: number): ColumnNamePathCreateContext | null; - public columnNamePathCreate(i?: number): ColumnNamePathCreateContext[] | ColumnNamePathCreateContext | null { - if (i === undefined) { - return this.getRuleContexts(ColumnNamePathCreateContext); - } - - return this.getRuleContext(i, ColumnNamePathCreateContext); - } public RPAREN(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.RPAREN, 0)!; } - public KW_COMMENT(): antlr.TerminalNode[]; - public KW_COMMENT(i: number): antlr.TerminalNode | null; - public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ImpalaSqlParser.KW_COMMENT); - } else { - return this.getToken(ImpalaSqlParser.KW_COMMENT, i); - } - } - public stringLiteral(): StringLiteralContext[]; - public stringLiteral(i: number): StringLiteralContext | null; - public stringLiteral(i?: number): StringLiteralContext[] | StringLiteralContext | null { + public viewColumnItem(): ViewColumnItemContext[]; + public viewColumnItem(i: number): ViewColumnItemContext | null; + public viewColumnItem(i?: number): ViewColumnItemContext[] | ViewColumnItemContext | null { if (i === undefined) { - return this.getRuleContexts(StringLiteralContext); + return this.getRuleContexts(ViewColumnItemContext); } - return this.getRuleContext(i, StringLiteralContext); + return this.getRuleContext(i, ViewColumnItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -19425,6 +19434,39 @@ export class ViewColumnsContext extends antlr.ParserRuleContext { } +export class ViewColumnItemContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnNamePathCreate(): ColumnNamePathCreateContext { + return this.getRuleContext(0, ColumnNamePathCreateContext)!; + } + public commentClause(): CommentClauseContext | null { + return this.getRuleContext(0, CommentClauseContext); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_viewColumnItem; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterViewColumnItem) { + listener.enterViewColumnItem(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitViewColumnItem) { + listener.exitViewColumnItem(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitViewColumnItem) { + return visitor.visitViewColumnItem(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class QueryStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19666,6 +19708,7 @@ export class ColumnSpecContext extends antlr.ParserRuleContext { export class ColumnDefinitionContext extends antlr.ParserRuleContext { + public _colType?: TypeContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -19675,11 +19718,8 @@ export class ColumnDefinitionContext extends antlr.ParserRuleContext { public type(): TypeContext { return this.getRuleContext(0, TypeContext)!; } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); - } - public stringLiteral(): StringLiteralContext | null { - return this.getRuleContext(0, StringLiteralContext); + public commentClause(): CommentClauseContext | null { + return this.getRuleContext(0, CommentClauseContext); } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_columnDefinition; @@ -19735,6 +19775,7 @@ export class KuduTableElementContext extends antlr.ParserRuleContext { export class KuduColumnDefinitionContext extends antlr.ParserRuleContext { + public _colType?: TypeContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -19753,11 +19794,8 @@ export class KuduColumnDefinitionContext extends antlr.ParserRuleContext { return this.getRuleContext(i, KuduAttributesContext); } - public KW_COMMENT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_COMMENT, 0); - } - public stringLiteral(): StringLiteralContext | null { - return this.getRuleContext(0, StringLiteralContext); + public commentClause(): CommentClauseContext | null { + return this.getRuleContext(0, CommentClauseContext); } public KW_PRIMARY(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_PRIMARY, 0); @@ -19788,6 +19826,40 @@ export class KuduColumnDefinitionContext extends antlr.ParserRuleContext { } +export class CommentClauseContext extends antlr.ParserRuleContext { + public _comment?: StringLiteralContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_COMMENT(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.KW_COMMENT, 0)!; + } + public stringLiteral(): StringLiteralContext { + return this.getRuleContext(0, StringLiteralContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_commentClause; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterCommentClause) { + listener.enterCommentClause(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitCommentClause) { + listener.exitCommentClause(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitCommentClause) { + return visitor.visitCommentClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnSpecWithKuduContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21704,6 +21776,7 @@ export class SampleTypeContext extends antlr.ParserRuleContext { export class AliasedRelationContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } diff --git a/src/lib/impala/ImpalaSqlParserListener.ts b/src/lib/impala/ImpalaSqlParserListener.ts index 1856fd2c..bb825fcf 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -110,6 +110,7 @@ import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; import { AssignmentItemContext } from "./ImpalaSqlParser.js"; import { ViewColumnsContext } from "./ImpalaSqlParser.js"; +import { ViewColumnItemContext } from "./ImpalaSqlParser.js"; import { QueryStatementContext } from "./ImpalaSqlParser.js"; import { WithContext } from "./ImpalaSqlParser.js"; import { ConstraintSpecificationContext } from "./ImpalaSqlParser.js"; @@ -118,6 +119,7 @@ import { ColumnSpecContext } from "./ImpalaSqlParser.js"; import { ColumnDefinitionContext } from "./ImpalaSqlParser.js"; import { KuduTableElementContext } from "./ImpalaSqlParser.js"; import { KuduColumnDefinitionContext } from "./ImpalaSqlParser.js"; +import { CommentClauseContext } from "./ImpalaSqlParser.js"; import { ColumnSpecWithKuduContext } from "./ImpalaSqlParser.js"; import { CreateColumnSpecWithKuduContext } from "./ImpalaSqlParser.js"; import { KuduAttributesContext } from "./ImpalaSqlParser.js"; @@ -1276,6 +1278,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitViewColumns?: (ctx: ViewColumnsContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.viewColumnItem`. + * @param ctx the parse tree + */ + enterViewColumnItem?: (ctx: ViewColumnItemContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.viewColumnItem`. + * @param ctx the parse tree + */ + exitViewColumnItem?: (ctx: ViewColumnItemContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.queryStatement`. * @param ctx the parse tree @@ -1356,6 +1368,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitKuduColumnDefinition?: (ctx: KuduColumnDefinitionContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.commentClause`. + * @param ctx the parse tree + */ + enterCommentClause?: (ctx: CommentClauseContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.commentClause`. + * @param ctx the parse tree + */ + exitCommentClause?: (ctx: CommentClauseContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.columnSpecWithKudu`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index bf441a95..b97a3764 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -110,6 +110,7 @@ import { CreateCommonItemContext } from "./ImpalaSqlParser.js"; import { AssignmentListContext } from "./ImpalaSqlParser.js"; import { AssignmentItemContext } from "./ImpalaSqlParser.js"; import { ViewColumnsContext } from "./ImpalaSqlParser.js"; +import { ViewColumnItemContext } from "./ImpalaSqlParser.js"; import { QueryStatementContext } from "./ImpalaSqlParser.js"; import { WithContext } from "./ImpalaSqlParser.js"; import { ConstraintSpecificationContext } from "./ImpalaSqlParser.js"; @@ -118,6 +119,7 @@ import { ColumnSpecContext } from "./ImpalaSqlParser.js"; import { ColumnDefinitionContext } from "./ImpalaSqlParser.js"; import { KuduTableElementContext } from "./ImpalaSqlParser.js"; import { KuduColumnDefinitionContext } from "./ImpalaSqlParser.js"; +import { CommentClauseContext } from "./ImpalaSqlParser.js"; import { ColumnSpecWithKuduContext } from "./ImpalaSqlParser.js"; import { CreateColumnSpecWithKuduContext } from "./ImpalaSqlParser.js"; import { KuduAttributesContext } from "./ImpalaSqlParser.js"; @@ -871,6 +873,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.viewColumnItem`. + * @param ctx the parse tree + * @return the visitor result + */ + visitViewColumnItem?: (ctx: ViewColumnItemContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.queryStatement`. * @param ctx the parse tree @@ -919,6 +927,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.commentClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCommentClause?: (ctx: CommentClauseContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.columnSpecWithKudu`. * @param ctx the parse tree diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index 91a3913e..e298265c 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -6703,7 +6703,7 @@ export class MySqlParser extends SQLParserBase { this.state = 1697; this.match(MySqlParser.KW_COMMENT); this.state = 1698; - this.match(MySqlParser.STRING_LITERAL); + (localContext as RoutineCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_LANGUAGE: @@ -7368,7 +7368,7 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { this.state = 1851; - this.dataType(); + localContext._colType = this.dataType(); this.state = 1855; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); @@ -7518,7 +7518,7 @@ export class MySqlParser extends SQLParserBase { this.state = 1877; this.match(MySqlParser.KW_COMMENT); this.state = 1878; - this.match(MySqlParser.STRING_LITERAL); + (localContext as CommentColumnConstraintContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_COLUMN_FORMAT: @@ -8149,7 +8149,7 @@ export class MySqlParser extends SQLParserBase { } this.state = 1998; - this.match(MySqlParser.STRING_LITERAL); + (localContext as TableOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; case 10: @@ -55075,6 +55075,7 @@ export class RoutineLanguageContext extends RoutineOptionContext { } } export class RoutineCommentContext extends RoutineOptionContext { + public _comment?: Token | null; public constructor(ctx: RoutineOptionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -55463,6 +55464,7 @@ export class ConstraintSymbolContext extends antlr.ParserRuleContext { export class ColumnDefinitionContext extends antlr.ParserRuleContext { + public _colType?: DataTypeContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -55610,6 +55612,7 @@ export class AutoIncrementColumnConstraintContext extends ColumnConstraintContex } } export class CommentColumnConstraintContext extends ColumnConstraintContext { + public _comment?: Token | null; public constructor(ctx: ColumnConstraintContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -57075,6 +57078,7 @@ export class TableOptionSecondaryEngineAttributeContext extends TableOptionConte } } export class TableOptionCommentContext extends TableOptionContext { + public _comment?: Token | null; public constructor(ctx: TableOptionContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index dfd40ac5..ea55c637 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -1654,4 +1654,4 @@ sql_expression atn: -[4, 1, 590, 8496, 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, 1, 0, 5, 0, 934, 8, 0, 10, 0, 12, 0, 937, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 943, 8, 1, 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, 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, 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, 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, 1063, 8, 2, 3, 2, 1065, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1074, 8, 4, 1, 4, 5, 4, 1077, 8, 4, 10, 4, 12, 4, 1080, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1085, 8, 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, 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, 1120, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1130, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1136, 8, 7, 1, 7, 5, 7, 1139, 8, 7, 10, 7, 12, 7, 1142, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1148, 8, 8, 1, 8, 5, 8, 1151, 8, 8, 10, 8, 12, 8, 1154, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1160, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1171, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1177, 8, 11, 10, 11, 12, 11, 1180, 9, 11, 1, 11, 3, 11, 1183, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1195, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1201, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1207, 8, 12, 1, 12, 1, 12, 3, 12, 1211, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1216, 8, 12, 1, 12, 1, 12, 3, 12, 1220, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1233, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1243, 8, 12, 3, 12, 1245, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1251, 8, 13, 1, 13, 5, 13, 1254, 8, 13, 10, 13, 12, 13, 1257, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1269, 8, 15, 1, 15, 3, 15, 1272, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1277, 8, 15, 1, 15, 5, 15, 1280, 8, 15, 10, 15, 12, 15, 1283, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1293, 8, 17, 1, 18, 1, 18, 3, 18, 1297, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1309, 8, 19, 1, 20, 1, 20, 3, 20, 1313, 8, 20, 1, 20, 3, 20, 1316, 8, 20, 1, 20, 1, 20, 3, 20, 1320, 8, 20, 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, 1, 21, 1, 21, 1, 21, 1, 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, 1350, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1355, 8, 22, 10, 22, 12, 22, 1358, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1363, 8, 23, 10, 23, 12, 23, 1366, 9, 23, 1, 24, 1, 24, 3, 24, 1370, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1377, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1385, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1391, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1399, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1407, 8, 28, 1, 29, 1, 29, 3, 29, 1411, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1425, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1430, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1435, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1447, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1453, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1465, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1470, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1480, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1486, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1491, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1499, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1504, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1511, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1516, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1521, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1531, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1536, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1541, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1548, 8, 38, 1, 38, 1, 38, 3, 38, 1552, 8, 38, 1, 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, 1566, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1578, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1583, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1588, 8, 39, 10, 39, 12, 39, 1591, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1602, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1608, 8, 41, 10, 41, 12, 41, 1611, 9, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1618, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1634, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1643, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1650, 8, 46, 10, 46, 12, 46, 1653, 9, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1661, 8, 46, 1, 46, 1, 46, 3, 46, 1665, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1677, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1685, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1695, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1715, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1720, 8, 46, 1, 46, 3, 46, 1723, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1730, 8, 46, 1, 46, 3, 46, 1733, 8, 46, 1, 46, 1, 46, 3, 46, 1737, 8, 46, 1, 46, 1, 46, 3, 46, 1741, 8, 46, 1, 46, 3, 46, 1744, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1749, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1754, 8, 46, 1, 46, 1, 46, 3, 46, 1758, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1767, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1773, 8, 46, 1, 46, 1, 46, 3, 46, 1777, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1786, 8, 46, 1, 46, 3, 46, 1789, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1795, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1804, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 4, 46, 1814, 8, 46, 11, 46, 12, 46, 1815, 1, 46, 1, 46, 3, 46, 1820, 8, 46, 1, 46, 1, 46, 3, 46, 1824, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1829, 8, 46, 1, 46, 3, 46, 1832, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1838, 8, 46, 4, 46, 1840, 8, 46, 11, 46, 12, 46, 1841, 1, 46, 1, 46, 3, 46, 1846, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1852, 8, 46, 1, 46, 1, 46, 3, 46, 1856, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1861, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1866, 8, 46, 1, 46, 1, 46, 3, 46, 1870, 8, 46, 1, 46, 3, 46, 1873, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1880, 8, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1891, 8, 50, 10, 50, 12, 50, 1894, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1906, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1918, 8, 53, 10, 53, 12, 53, 1921, 9, 53, 1, 53, 1, 53, 1, 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, 1937, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1945, 8, 54, 10, 54, 12, 54, 1948, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1954, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1959, 8, 55, 1, 55, 1, 55, 3, 55, 1963, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1970, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1975, 8, 55, 1, 55, 3, 55, 1978, 8, 55, 3, 55, 1980, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1985, 8, 56, 1, 57, 1, 57, 3, 57, 1989, 8, 57, 1, 57, 1, 57, 3, 57, 1993, 8, 57, 1, 57, 1, 57, 3, 57, 1997, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2002, 8, 57, 1, 57, 3, 57, 2005, 8, 57, 1, 57, 1, 57, 3, 57, 2009, 8, 57, 1, 57, 3, 57, 2012, 8, 57, 1, 57, 1, 57, 3, 57, 2016, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2024, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2029, 8, 57, 1, 57, 3, 57, 2032, 8, 57, 1, 57, 1, 57, 3, 57, 2036, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2042, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2051, 8, 58, 1, 58, 1, 58, 3, 58, 2055, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2061, 8, 58, 10, 58, 12, 58, 2064, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2070, 8, 58, 10, 58, 12, 58, 2073, 9, 58, 1, 58, 1, 58, 3, 58, 2077, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2087, 8, 59, 10, 59, 12, 59, 2090, 9, 59, 1, 59, 1, 59, 3, 59, 2094, 8, 59, 1, 60, 1, 60, 3, 60, 2098, 8, 60, 1, 60, 1, 60, 3, 60, 2102, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2107, 8, 60, 1, 60, 1, 60, 3, 60, 2111, 8, 60, 1, 60, 3, 60, 2114, 8, 60, 1, 60, 3, 60, 2117, 8, 60, 1, 60, 3, 60, 2120, 8, 60, 1, 60, 3, 60, 2123, 8, 60, 1, 60, 3, 60, 2126, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2131, 8, 60, 1, 60, 3, 60, 2134, 8, 60, 1, 60, 3, 60, 2137, 8, 60, 1, 60, 3, 60, 2140, 8, 60, 1, 60, 3, 60, 2143, 8, 60, 1, 60, 3, 60, 2146, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2152, 8, 60, 1, 60, 1, 60, 3, 60, 2156, 8, 60, 1, 60, 3, 60, 2159, 8, 60, 1, 60, 3, 60, 2162, 8, 60, 1, 60, 3, 60, 2165, 8, 60, 1, 60, 3, 60, 2168, 8, 60, 3, 60, 2170, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2177, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2183, 8, 62, 10, 62, 12, 62, 2186, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 5, 63, 2193, 8, 63, 10, 63, 12, 63, 2196, 9, 63, 1, 64, 1, 64, 3, 64, 2200, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2208, 8, 64, 10, 64, 12, 64, 2211, 9, 64, 3, 64, 2213, 8, 64, 1, 65, 1, 65, 1, 65, 3, 65, 2218, 8, 65, 1, 65, 5, 65, 2221, 8, 65, 10, 65, 12, 65, 2224, 9, 65, 1, 65, 1, 65, 3, 65, 2228, 8, 65, 1, 65, 3, 65, 2231, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2236, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2245, 8, 66, 3, 66, 2247, 8, 66, 1, 66, 1, 66, 3, 66, 2251, 8, 66, 1, 66, 3, 66, 2254, 8, 66, 1, 66, 1, 66, 3, 66, 2258, 8, 66, 1, 66, 5, 66, 2261, 8, 66, 10, 66, 12, 66, 2264, 9, 66, 1, 67, 1, 67, 3, 67, 2268, 8, 67, 1, 67, 1, 67, 3, 67, 2272, 8, 67, 1, 67, 3, 67, 2275, 8, 67, 1, 67, 1, 67, 3, 67, 2279, 8, 67, 1, 68, 3, 68, 2282, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2287, 8, 68, 1, 68, 3, 68, 2290, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2295, 8, 68, 1, 68, 3, 68, 2298, 8, 68, 1, 68, 1, 68, 3, 68, 2302, 8, 68, 1, 68, 3, 68, 2305, 8, 68, 1, 68, 3, 68, 2308, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2313, 8, 68, 1, 68, 3, 68, 2316, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2324, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 2334, 8, 68, 11, 68, 12, 68, 2335, 1, 68, 1, 68, 3, 68, 2340, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2347, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2352, 8, 68, 1, 68, 3, 68, 2355, 8, 68, 1, 68, 3, 68, 2358, 8, 68, 1, 68, 3, 68, 2361, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2366, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2375, 8, 71, 10, 71, 12, 71, 2378, 9, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2383, 8, 71, 1, 71, 1, 71, 3, 71, 2387, 8, 71, 1, 71, 3, 71, 2390, 8, 71, 1, 71, 3, 71, 2393, 8, 71, 1, 71, 5, 71, 2396, 8, 71, 10, 71, 12, 71, 2399, 9, 71, 1, 71, 1, 71, 5, 71, 2403, 8, 71, 10, 71, 12, 71, 2406, 9, 71, 3, 71, 2408, 8, 71, 1, 71, 1, 71, 3, 71, 2412, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2418, 8, 71, 10, 71, 12, 71, 2421, 9, 71, 1, 71, 1, 71, 3, 71, 2425, 8, 71, 1, 71, 3, 71, 2428, 8, 71, 1, 71, 3, 71, 2431, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2438, 8, 71, 1, 71, 5, 71, 2441, 8, 71, 10, 71, 12, 71, 2444, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2452, 8, 71, 1, 71, 3, 71, 2455, 8, 71, 1, 71, 3, 71, 2458, 8, 71, 1, 71, 5, 71, 2461, 8, 71, 10, 71, 12, 71, 2464, 9, 71, 3, 71, 2466, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2476, 8, 73, 10, 73, 12, 73, 2479, 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2486, 8, 74, 10, 74, 12, 74, 2489, 9, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2505, 8, 77, 1, 78, 1, 78, 3, 78, 2509, 8, 78, 1, 78, 1, 78, 3, 78, 2513, 8, 78, 3, 78, 2515, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2532, 8, 81, 3, 81, 2534, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2548, 8, 83, 10, 83, 12, 83, 2551, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2561, 8, 84, 1, 84, 3, 84, 2564, 8, 84, 1, 84, 3, 84, 2567, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2576, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2585, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 2601, 8, 91, 1, 91, 3, 91, 2604, 8, 91, 1, 91, 3, 91, 2607, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 2613, 8, 91, 10, 91, 12, 91, 2616, 9, 91, 1, 91, 3, 91, 2619, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 2626, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2635, 8, 93, 1, 93, 1, 93, 3, 93, 2639, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2645, 8, 93, 1, 94, 1, 94, 3, 94, 2649, 8, 94, 1, 94, 3, 94, 2652, 8, 94, 1, 94, 3, 94, 2655, 8, 94, 1, 94, 3, 94, 2658, 8, 94, 1, 94, 3, 94, 2661, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2667, 8, 95, 1, 96, 1, 96, 3, 96, 2671, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2676, 8, 96, 1, 96, 1, 96, 3, 96, 2680, 8, 96, 1, 96, 3, 96, 2683, 8, 96, 1, 96, 3, 96, 2686, 8, 96, 1, 96, 3, 96, 2689, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2694, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2700, 8, 97, 1, 97, 1, 97, 3, 97, 2704, 8, 97, 1, 98, 1, 98, 3, 98, 2708, 8, 98, 1, 98, 1, 98, 3, 98, 2712, 8, 98, 1, 98, 1, 98, 4, 98, 2716, 8, 98, 11, 98, 12, 98, 2717, 3, 98, 2720, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2725, 8, 99, 1, 99, 1, 99, 4, 99, 2729, 8, 99, 11, 99, 12, 99, 2730, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2737, 8, 100, 1, 100, 1, 100, 3, 100, 2741, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2756, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2761, 8, 100, 1, 100, 3, 100, 2764, 8, 100, 3, 100, 2766, 8, 100, 1, 101, 3, 101, 2769, 8, 101, 1, 101, 1, 101, 3, 101, 2773, 8, 101, 1, 102, 1, 102, 3, 102, 2777, 8, 102, 1, 102, 3, 102, 2780, 8, 102, 1, 102, 3, 102, 2783, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2791, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2797, 8, 102, 3, 102, 2799, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2805, 8, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2810, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2815, 8, 104, 1, 104, 1, 104, 3, 104, 2819, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 2826, 8, 104, 10, 104, 12, 104, 2829, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 2837, 8, 105, 10, 105, 12, 105, 2840, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2878, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 4, 107, 2886, 8, 107, 11, 107, 12, 107, 2887, 3, 107, 2890, 8, 107, 1, 107, 3, 107, 2893, 8, 107, 1, 108, 1, 108, 3, 108, 2897, 8, 108, 1, 108, 1, 108, 3, 108, 2901, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 4, 109, 2909, 8, 109, 11, 109, 12, 109, 2910, 3, 109, 2913, 8, 109, 1, 109, 1, 109, 4, 109, 2917, 8, 109, 11, 109, 12, 109, 2918, 3, 109, 2921, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2928, 8, 110, 10, 110, 12, 110, 2931, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 2940, 8, 111, 10, 111, 12, 111, 2943, 9, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2956, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2961, 8, 114, 1, 114, 3, 114, 2964, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2971, 8, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2976, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2984, 8, 116, 3, 116, 2986, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2992, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2997, 8, 117, 1, 117, 1, 117, 3, 117, 3001, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3006, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3012, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3019, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3025, 8, 117, 3, 117, 3027, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3036, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3042, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3050, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3056, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3061, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3066, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3074, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3089, 8, 121, 3, 121, 3091, 8, 121, 1, 121, 1, 121, 3, 121, 3095, 8, 121, 1, 121, 1, 121, 3, 121, 3099, 8, 121, 1, 121, 3, 121, 3102, 8, 121, 1, 121, 3, 121, 3105, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3114, 8, 122, 1, 122, 3, 122, 3117, 8, 122, 1, 122, 3, 122, 3120, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3126, 8, 123, 1, 123, 1, 123, 5, 123, 3130, 8, 123, 10, 123, 12, 123, 3133, 9, 123, 1, 123, 3, 123, 3136, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3148, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3154, 8, 123, 1, 124, 3, 124, 3157, 8, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3162, 8, 124, 1, 124, 1, 124, 3, 124, 3166, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3173, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3183, 8, 124, 3, 124, 3185, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3209, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3221, 8, 128, 1, 128, 4, 128, 3224, 8, 128, 11, 128, 12, 128, 3225, 3, 128, 3228, 8, 128, 1, 128, 1, 128, 3, 128, 3232, 8, 128, 1, 128, 3, 128, 3235, 8, 128, 1, 128, 3, 128, 3238, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3248, 8, 128, 1, 128, 3, 128, 3251, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3261, 8, 128, 1, 128, 5, 128, 3264, 8, 128, 10, 128, 12, 128, 3267, 9, 128, 1, 128, 1, 128, 3, 128, 3271, 8, 128, 1, 128, 3, 128, 3274, 8, 128, 1, 128, 3, 128, 3277, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3285, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3291, 8, 129, 1, 130, 1, 130, 1, 130, 5, 130, 3296, 8, 130, 10, 130, 12, 130, 3299, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3306, 8, 131, 1, 131, 3, 131, 3309, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3320, 8, 133, 1, 134, 1, 134, 3, 134, 3324, 8, 134, 1, 134, 1, 134, 5, 134, 3328, 8, 134, 10, 134, 12, 134, 3331, 9, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3337, 8, 135, 1, 136, 3, 136, 3340, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3349, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3361, 8, 137, 10, 137, 12, 137, 3364, 9, 137, 3, 137, 3366, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3378, 8, 138, 10, 138, 12, 138, 3381, 9, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3391, 8, 139, 1, 139, 3, 139, 3394, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3404, 8, 140, 10, 140, 12, 140, 3407, 9, 140, 1, 141, 1, 141, 3, 141, 3411, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3422, 8, 141, 10, 141, 12, 141, 3425, 9, 141, 1, 141, 1, 141, 3, 141, 3429, 8, 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, 3442, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3449, 8, 141, 10, 141, 12, 141, 3452, 9, 141, 3, 141, 3454, 8, 141, 1, 141, 3, 141, 3457, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3464, 8, 141, 1, 141, 3, 141, 3467, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3479, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3485, 8, 141, 3, 141, 3487, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3493, 8, 142, 10, 142, 12, 142, 3496, 9, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3503, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3511, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3523, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3528, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3539, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3550, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3558, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3564, 8, 148, 10, 148, 12, 148, 3567, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3573, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3580, 8, 149, 3, 149, 3582, 8, 149, 1, 149, 3, 149, 3585, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3590, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3595, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3612, 8, 151, 10, 151, 12, 151, 3615, 9, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3621, 8, 151, 10, 151, 12, 151, 3624, 9, 151, 3, 151, 3626, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 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, 1, 154, 3, 154, 3653, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3662, 8, 154, 1, 154, 3, 154, 3665, 8, 154, 1, 154, 1, 154, 3, 154, 3669, 8, 154, 1, 154, 1, 154, 3, 154, 3673, 8, 154, 1, 154, 1, 154, 3, 154, 3677, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3682, 8, 154, 10, 154, 12, 154, 3685, 9, 154, 1, 154, 3, 154, 3688, 8, 154, 1, 154, 1, 154, 3, 154, 3692, 8, 154, 1, 154, 1, 154, 3, 154, 3696, 8, 154, 1, 154, 1, 154, 3, 154, 3700, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3705, 8, 154, 1, 154, 1, 154, 3, 154, 3709, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3714, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3720, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3725, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3730, 8, 154, 10, 154, 12, 154, 3733, 9, 154, 1, 154, 3, 154, 3736, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3742, 8, 154, 1, 154, 1, 154, 3, 154, 3746, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3751, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3759, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3765, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3770, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3777, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3782, 8, 154, 1, 154, 1, 154, 3, 154, 3786, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3791, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3797, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3804, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3809, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3816, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3821, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3828, 8, 154, 1, 154, 1, 154, 3, 154, 3832, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3838, 8, 154, 10, 154, 12, 154, 3841, 9, 154, 1, 154, 3, 154, 3844, 8, 154, 3, 154, 3846, 8, 154, 1, 155, 3, 155, 3849, 8, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3854, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3864, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3879, 8, 156, 1, 156, 3, 156, 3882, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3890, 8, 156, 1, 157, 1, 157, 1, 157, 5, 157, 3895, 8, 157, 10, 157, 12, 157, 3898, 9, 157, 1, 158, 1, 158, 3, 158, 3902, 8, 158, 1, 159, 1, 159, 4, 159, 3906, 8, 159, 11, 159, 12, 159, 3907, 1, 160, 1, 160, 3, 160, 3912, 8, 160, 1, 160, 1, 160, 1, 160, 5, 160, 3917, 8, 160, 10, 160, 12, 160, 3920, 9, 160, 1, 160, 1, 160, 3, 160, 3924, 8, 160, 1, 160, 3, 160, 3927, 8, 160, 1, 161, 3, 161, 3930, 8, 161, 1, 161, 1, 161, 3, 161, 3934, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3943, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3961, 8, 162, 1, 162, 3, 162, 3964, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3996, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4001, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4007, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4027, 8, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4032, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 3, 165, 4038, 8, 165, 1, 165, 3, 165, 4041, 8, 165, 1, 165, 1, 165, 3, 165, 4045, 8, 165, 1, 165, 1, 165, 3, 165, 4049, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4055, 8, 165, 1, 165, 3, 165, 4058, 8, 165, 1, 165, 1, 165, 3, 165, 4062, 8, 165, 1, 165, 1, 165, 3, 165, 4066, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4071, 8, 165, 1, 165, 3, 165, 4074, 8, 165, 1, 165, 3, 165, 4077, 8, 165, 1, 165, 3, 165, 4080, 8, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 4093, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4099, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4107, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 4112, 8, 169, 10, 169, 12, 169, 4115, 9, 169, 1, 169, 1, 169, 3, 169, 4119, 8, 169, 1, 169, 3, 169, 4122, 8, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4127, 8, 169, 10, 169, 12, 169, 4130, 9, 169, 3, 169, 4132, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4140, 8, 171, 1, 171, 3, 171, 4143, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 4148, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4155, 8, 172, 1, 172, 3, 172, 4158, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4176, 8, 172, 10, 172, 12, 172, 4179, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4190, 8, 172, 1, 173, 3, 173, 4193, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 4199, 8, 173, 1, 173, 5, 173, 4202, 8, 173, 10, 173, 12, 173, 4205, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 4211, 8, 174, 10, 174, 12, 174, 4214, 9, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4221, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4226, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4232, 8, 175, 1, 175, 1, 175, 1, 175, 5, 175, 4237, 8, 175, 10, 175, 12, 175, 4240, 9, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4247, 8, 175, 1, 175, 3, 175, 4250, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4261, 8, 176, 10, 176, 12, 176, 4264, 9, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4277, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4283, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4291, 8, 177, 3, 177, 4293, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4299, 8, 179, 1, 179, 1, 179, 3, 179, 4303, 8, 179, 1, 179, 3, 179, 4306, 8, 179, 1, 179, 3, 179, 4309, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4314, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4319, 8, 179, 1, 179, 1, 179, 3, 179, 4323, 8, 179, 1, 179, 3, 179, 4326, 8, 179, 1, 179, 3, 179, 4329, 8, 179, 1, 179, 3, 179, 4332, 8, 179, 1, 179, 3, 179, 4335, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 5, 180, 4341, 8, 180, 10, 180, 12, 180, 4344, 9, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4354, 8, 181, 1, 181, 3, 181, 4357, 8, 181, 1, 181, 3, 181, 4360, 8, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4365, 8, 181, 1, 181, 3, 181, 4368, 8, 181, 1, 181, 1, 181, 3, 181, 4372, 8, 181, 1, 182, 1, 182, 3, 182, 4376, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4382, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4388, 8, 182, 10, 182, 12, 182, 4391, 9, 182, 3, 182, 4393, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4404, 8, 182, 10, 182, 12, 182, 4407, 9, 182, 1, 182, 1, 182, 3, 182, 4411, 8, 182, 3, 182, 4413, 8, 182, 1, 182, 4, 182, 4416, 8, 182, 11, 182, 12, 182, 4417, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4425, 8, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 3, 184, 4432, 8, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4439, 8, 185, 10, 185, 12, 185, 4442, 9, 185, 1, 186, 1, 186, 1, 186, 5, 186, 4447, 8, 186, 10, 186, 12, 186, 4450, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4457, 8, 187, 1, 188, 1, 188, 1, 188, 5, 188, 4462, 8, 188, 10, 188, 12, 188, 4465, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4472, 8, 189, 1, 190, 1, 190, 1, 190, 5, 190, 4477, 8, 190, 10, 190, 12, 190, 4480, 9, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4487, 8, 191, 1, 192, 1, 192, 3, 192, 4491, 8, 192, 1, 192, 1, 192, 3, 192, 4495, 8, 192, 3, 192, 4497, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 3, 193, 4503, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4508, 8, 193, 1, 194, 1, 194, 3, 194, 4512, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4519, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4524, 8, 195, 1, 196, 1, 196, 1, 196, 3, 196, 4529, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4534, 8, 196, 3, 196, 4536, 8, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 3, 198, 4546, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4556, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4572, 8, 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, 5, 199, 4588, 8, 199, 10, 199, 12, 199, 4591, 9, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4602, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4609, 8, 199, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4624, 8, 202, 1, 202, 4, 202, 4627, 8, 202, 11, 202, 12, 202, 4628, 1, 202, 3, 202, 4632, 8, 202, 1, 203, 1, 203, 1, 203, 3, 203, 4637, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4642, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4647, 8, 203, 1, 203, 3, 203, 4650, 8, 203, 1, 203, 3, 203, 4653, 8, 203, 1, 204, 1, 204, 1, 204, 3, 204, 4658, 8, 204, 1, 204, 1, 204, 1, 204, 5, 204, 4663, 8, 204, 10, 204, 12, 204, 4666, 9, 204, 1, 204, 3, 204, 4669, 8, 204, 1, 205, 1, 205, 1, 205, 3, 205, 4674, 8, 205, 1, 205, 1, 205, 1, 205, 5, 205, 4679, 8, 205, 10, 205, 12, 205, 4682, 9, 205, 1, 205, 3, 205, 4685, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4691, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4700, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 5, 207, 4707, 8, 207, 10, 207, 12, 207, 4710, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 4, 209, 4721, 8, 209, 11, 209, 12, 209, 4722, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4736, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4742, 8, 210, 1, 210, 1, 210, 3, 210, 4746, 8, 210, 3, 210, 4748, 8, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 4755, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4768, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4775, 8, 212, 3, 212, 4777, 8, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 4791, 8, 214, 10, 214, 12, 214, 4794, 9, 214, 1, 214, 3, 214, 4797, 8, 214, 1, 214, 1, 214, 3, 214, 4801, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4806, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4811, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4816, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4821, 8, 214, 1, 214, 3, 214, 4824, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4836, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4889, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4898, 8, 216, 1, 216, 1, 216, 3, 216, 4902, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4911, 8, 216, 1, 216, 1, 216, 3, 216, 4915, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4924, 8, 216, 1, 216, 1, 216, 3, 216, 4928, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4933, 8, 216, 1, 216, 3, 216, 4936, 8, 216, 1, 216, 1, 216, 3, 216, 4940, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4945, 8, 216, 3, 216, 4947, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4956, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4961, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4972, 8, 216, 1, 216, 1, 216, 3, 216, 4976, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4990, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4998, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 5036, 8, 216, 3, 216, 5038, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 5057, 8, 217, 1, 217, 3, 217, 5060, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5087, 8, 218, 1, 218, 1, 218, 3, 218, 5091, 8, 218, 1, 218, 1, 218, 3, 218, 5095, 8, 218, 1, 218, 1, 218, 3, 218, 5099, 8, 218, 1, 218, 1, 218, 3, 218, 5103, 8, 218, 1, 218, 3, 218, 5106, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5121, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5128, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 5, 220, 5140, 8, 220, 10, 220, 12, 220, 5143, 9, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5155, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5180, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5199, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5214, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5230, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5237, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5248, 8, 224, 1, 224, 3, 224, 5251, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 5268, 8, 225, 10, 225, 12, 225, 5271, 9, 225, 3, 225, 5273, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 5, 226, 5284, 8, 226, 10, 226, 12, 226, 5287, 9, 226, 1, 226, 3, 226, 5290, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5310, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5320, 8, 227, 10, 227, 12, 227, 5323, 9, 227, 1, 227, 3, 227, 5326, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5348, 8, 227, 1, 228, 1, 228, 3, 228, 5352, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5362, 8, 228, 1, 228, 1, 228, 3, 228, 5366, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5372, 8, 228, 1, 228, 1, 228, 3, 228, 5376, 8, 228, 5, 228, 5378, 8, 228, 10, 228, 12, 228, 5381, 9, 228, 1, 228, 3, 228, 5384, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 5391, 8, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5396, 8, 230, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5407, 8, 233, 1, 234, 1, 234, 3, 234, 5411, 8, 234, 1, 234, 3, 234, 5414, 8, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5419, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5425, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5436, 8, 234, 1, 234, 1, 234, 3, 234, 5440, 8, 234, 1, 234, 3, 234, 5443, 8, 234, 1, 234, 1, 234, 3, 234, 5447, 8, 234, 1, 234, 1, 234, 3, 234, 5451, 8, 234, 1, 234, 3, 234, 5454, 8, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5464, 8, 236, 1, 236, 3, 236, 5467, 8, 236, 1, 237, 1, 237, 3, 237, 5471, 8, 237, 1, 237, 5, 237, 5474, 8, 237, 10, 237, 12, 237, 5477, 9, 237, 1, 238, 1, 238, 1, 238, 3, 238, 5482, 8, 238, 1, 238, 3, 238, 5485, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5490, 8, 238, 1, 238, 3, 238, 5493, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5500, 8, 238, 3, 238, 5502, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5508, 8, 238, 1, 238, 1, 238, 3, 238, 5512, 8, 238, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5521, 8, 240, 1, 240, 4, 240, 5524, 8, 240, 11, 240, 12, 240, 5525, 3, 240, 5528, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5538, 8, 241, 1, 241, 3, 241, 5541, 8, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5546, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5554, 8, 242, 1, 242, 3, 242, 5557, 8, 242, 1, 242, 4, 242, 5560, 8, 242, 11, 242, 12, 242, 5561, 3, 242, 5564, 8, 242, 3, 242, 5566, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5572, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5589, 8, 246, 1, 246, 1, 246, 5, 246, 5593, 8, 246, 10, 246, 12, 246, 5596, 9, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5608, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5614, 8, 247, 1, 247, 1, 247, 3, 247, 5618, 8, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5623, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5653, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5668, 8, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5673, 8, 249, 1, 250, 1, 250, 3, 250, 5677, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 5690, 8, 251, 1, 251, 1, 251, 3, 251, 5694, 8, 251, 3, 251, 5696, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 5703, 8, 251, 10, 251, 12, 251, 5706, 9, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5711, 8, 251, 3, 251, 5713, 8, 251, 1, 252, 1, 252, 3, 252, 5717, 8, 252, 1, 252, 3, 252, 5720, 8, 252, 1, 252, 3, 252, 5723, 8, 252, 1, 252, 3, 252, 5726, 8, 252, 1, 252, 3, 252, 5729, 8, 252, 3, 252, 5731, 8, 252, 1, 252, 3, 252, 5734, 8, 252, 1, 253, 1, 253, 3, 253, 5738, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 5744, 8, 253, 10, 253, 12, 253, 5747, 9, 253, 1, 253, 1, 253, 3, 253, 5751, 8, 253, 1, 253, 3, 253, 5754, 8, 253, 1, 254, 1, 254, 1, 255, 1, 255, 3, 255, 5760, 8, 255, 1, 255, 1, 255, 3, 255, 5764, 8, 255, 1, 256, 1, 256, 3, 256, 5768, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5773, 8, 256, 3, 256, 5775, 8, 256, 1, 257, 1, 257, 3, 257, 5779, 8, 257, 1, 258, 1, 258, 3, 258, 5783, 8, 258, 1, 259, 1, 259, 1, 259, 5, 259, 5788, 8, 259, 10, 259, 12, 259, 5791, 9, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5796, 8, 260, 1, 260, 1, 260, 3, 260, 5800, 8, 260, 3, 260, 5802, 8, 260, 3, 260, 5804, 8, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5817, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 5823, 8, 262, 10, 262, 12, 262, 5826, 9, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5833, 8, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 5, 264, 5842, 8, 264, 10, 264, 12, 264, 5845, 9, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5853, 8, 265, 1, 266, 1, 266, 1, 266, 3, 266, 5858, 8, 266, 1, 266, 1, 266, 3, 266, 5862, 8, 266, 1, 266, 1, 266, 3, 266, 5866, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5873, 8, 266, 1, 266, 3, 266, 5876, 8, 266, 3, 266, 5878, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 5886, 8, 268, 1, 268, 1, 268, 3, 268, 5890, 8, 268, 1, 269, 3, 269, 5893, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5900, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5907, 8, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5912, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5919, 8, 269, 1, 269, 3, 269, 5922, 8, 269, 3, 269, 5924, 8, 269, 1, 269, 3, 269, 5927, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5933, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5938, 8, 270, 1, 270, 1, 270, 3, 270, 5942, 8, 270, 1, 271, 1, 271, 1, 271, 5, 271, 5947, 8, 271, 10, 271, 12, 271, 5950, 9, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 274, 3, 274, 5959, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5966, 8, 274, 1, 274, 3, 274, 5969, 8, 274, 1, 274, 3, 274, 5972, 8, 274, 1, 275, 1, 275, 3, 275, 5976, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 5987, 8, 275, 1, 275, 3, 275, 5990, 8, 275, 1, 275, 3, 275, 5993, 8, 275, 1, 275, 3, 275, 5996, 8, 275, 1, 276, 3, 276, 5999, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6006, 8, 276, 1, 276, 3, 276, 6009, 8, 276, 1, 276, 3, 276, 6012, 8, 276, 1, 277, 1, 277, 1, 277, 5, 277, 6017, 8, 277, 10, 277, 12, 277, 6020, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6031, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6038, 8, 278, 3, 278, 6040, 8, 278, 1, 279, 1, 279, 1, 279, 3, 279, 6045, 8, 279, 1, 279, 1, 279, 1, 279, 5, 279, 6050, 8, 279, 10, 279, 12, 279, 6053, 9, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6058, 8, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 3, 280, 6065, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 6070, 8, 281, 1, 281, 1, 281, 1, 282, 3, 282, 6075, 8, 282, 1, 282, 1, 282, 3, 282, 6079, 8, 282, 1, 282, 1, 282, 3, 282, 6083, 8, 282, 1, 282, 1, 282, 3, 282, 6087, 8, 282, 3, 282, 6089, 8, 282, 1, 283, 1, 283, 3, 283, 6093, 8, 283, 1, 284, 1, 284, 3, 284, 6097, 8, 284, 1, 284, 3, 284, 6100, 8, 284, 1, 284, 3, 284, 6103, 8, 284, 3, 284, 6105, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6115, 8, 284, 3, 284, 6117, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6122, 8, 284, 5, 284, 6124, 8, 284, 10, 284, 12, 284, 6127, 9, 284, 1, 285, 1, 285, 3, 285, 6131, 8, 285, 1, 286, 1, 286, 3, 286, 6135, 8, 286, 1, 286, 1, 286, 1, 286, 5, 286, 6140, 8, 286, 10, 286, 12, 286, 6143, 9, 286, 1, 287, 1, 287, 3, 287, 6147, 8, 287, 1, 287, 1, 287, 3, 287, 6151, 8, 287, 1, 287, 3, 287, 6154, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6160, 8, 287, 1, 287, 3, 287, 6163, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6182, 8, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 3, 290, 6189, 8, 290, 1, 290, 1, 290, 3, 290, 6193, 8, 290, 1, 291, 3, 291, 6196, 8, 291, 1, 291, 1, 291, 3, 291, 6200, 8, 291, 1, 291, 1, 291, 3, 291, 6204, 8, 291, 1, 291, 3, 291, 6207, 8, 291, 1, 291, 3, 291, 6210, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6215, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 5, 293, 6222, 8, 293, 10, 293, 12, 293, 6225, 9, 293, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6231, 8, 294, 1, 294, 1, 294, 3, 294, 6235, 8, 294, 1, 295, 1, 295, 3, 295, 6239, 8, 295, 1, 295, 1, 295, 3, 295, 6243, 8, 295, 1, 295, 3, 295, 6246, 8, 295, 3, 295, 6248, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6253, 8, 296, 1, 296, 1, 296, 3, 296, 6257, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6262, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6268, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6275, 8, 298, 1, 299, 1, 299, 1, 299, 3, 299, 6280, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6285, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 5, 301, 6292, 8, 301, 10, 301, 12, 301, 6295, 9, 301, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6301, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 5, 302, 6307, 8, 302, 10, 302, 12, 302, 6310, 9, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6320, 8, 302, 1, 303, 1, 303, 1, 303, 3, 303, 6325, 8, 303, 1, 303, 1, 303, 3, 303, 6329, 8, 303, 1, 303, 3, 303, 6332, 8, 303, 1, 303, 1, 303, 3, 303, 6336, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6341, 8, 303, 4, 303, 6343, 8, 303, 11, 303, 12, 303, 6344, 1, 303, 1, 303, 1, 303, 3, 303, 6350, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6356, 8, 304, 10, 304, 12, 304, 6359, 9, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 5, 306, 6367, 8, 306, 10, 306, 12, 306, 6370, 9, 306, 1, 307, 1, 307, 3, 307, 6374, 8, 307, 1, 307, 1, 307, 3, 307, 6378, 8, 307, 1, 307, 3, 307, 6381, 8, 307, 1, 307, 3, 307, 6384, 8, 307, 3, 307, 6386, 8, 307, 1, 307, 3, 307, 6389, 8, 307, 1, 307, 3, 307, 6392, 8, 307, 1, 307, 3, 307, 6395, 8, 307, 1, 307, 1, 307, 3, 307, 6399, 8, 307, 1, 307, 1, 307, 3, 307, 6403, 8, 307, 1, 307, 1, 307, 3, 307, 6407, 8, 307, 3, 307, 6409, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6418, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6423, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6429, 8, 307, 1, 307, 1, 307, 3, 307, 6433, 8, 307, 3, 307, 6435, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6442, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6447, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 5, 307, 6453, 8, 307, 10, 307, 12, 307, 6456, 9, 307, 1, 308, 3, 308, 6459, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6466, 8, 308, 1, 309, 1, 309, 1, 309, 3, 309, 6471, 8, 309, 1, 309, 3, 309, 6474, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6480, 8, 309, 1, 310, 1, 310, 3, 310, 6484, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6490, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6499, 8, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6505, 8, 312, 3, 312, 6507, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 6512, 8, 313, 1, 313, 3, 313, 6515, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6524, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6531, 8, 313, 3, 313, 6533, 8, 313, 1, 314, 1, 314, 1, 314, 5, 314, 6538, 8, 314, 10, 314, 12, 314, 6541, 9, 314, 1, 315, 1, 315, 3, 315, 6545, 8, 315, 1, 315, 3, 315, 6548, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6558, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 5, 317, 6567, 8, 317, 10, 317, 12, 317, 6570, 9, 317, 1, 317, 1, 317, 3, 317, 6574, 8, 317, 1, 317, 1, 317, 3, 317, 6578, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6586, 8, 318, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6596, 8, 320, 1, 321, 1, 321, 1, 321, 5, 321, 6601, 8, 321, 10, 321, 12, 321, 6604, 9, 321, 1, 322, 1, 322, 1, 322, 3, 322, 6609, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 6618, 8, 323, 10, 323, 12, 323, 6621, 9, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6626, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 6634, 8, 323, 10, 323, 12, 323, 6637, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6645, 8, 324, 1, 324, 1, 324, 3, 324, 6649, 8, 324, 1, 324, 4, 324, 6652, 8, 324, 11, 324, 12, 324, 6653, 3, 324, 6656, 8, 324, 1, 324, 1, 324, 3, 324, 6660, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6668, 8, 325, 1, 326, 3, 326, 6671, 8, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6676, 8, 326, 1, 326, 5, 326, 6679, 8, 326, 10, 326, 12, 326, 6682, 9, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6688, 8, 326, 3, 326, 6690, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6696, 8, 326, 1, 327, 1, 327, 3, 327, 6700, 8, 327, 1, 327, 3, 327, 6703, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6708, 8, 327, 1, 327, 3, 327, 6711, 8, 327, 3, 327, 6713, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 3, 328, 6719, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6728, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6734, 8, 329, 1, 329, 3, 329, 6737, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 3, 331, 6745, 8, 331, 1, 331, 3, 331, 6748, 8, 331, 1, 332, 1, 332, 3, 332, 6752, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6758, 8, 332, 3, 332, 6760, 8, 332, 1, 332, 3, 332, 6763, 8, 332, 1, 333, 1, 333, 3, 333, 6767, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 6772, 8, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6779, 8, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6786, 8, 334, 3, 334, 6788, 8, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6794, 8, 334, 3, 334, 6796, 8, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6801, 8, 334, 3, 334, 6803, 8, 334, 1, 335, 1, 335, 3, 335, 6807, 8, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 3, 338, 6816, 8, 338, 1, 338, 1, 338, 3, 338, 6820, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6828, 8, 338, 10, 338, 12, 338, 6831, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6844, 8, 339, 1, 339, 3, 339, 6847, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6855, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 5, 339, 6862, 8, 339, 10, 339, 12, 339, 6865, 9, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6870, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6875, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6883, 8, 339, 3, 339, 6885, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6890, 8, 339, 1, 339, 1, 339, 3, 339, 6894, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6899, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6904, 8, 339, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6910, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 5, 340, 6926, 8, 340, 10, 340, 12, 340, 6929, 9, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6937, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6952, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6957, 8, 341, 1, 341, 3, 341, 6960, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6966, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6971, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6984, 8, 341, 1, 341, 4, 341, 6987, 8, 341, 11, 341, 12, 341, 6988, 1, 341, 1, 341, 3, 341, 6993, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7000, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7019, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7031, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7036, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7044, 8, 341, 5, 341, 7046, 8, 341, 10, 341, 12, 341, 7049, 9, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7057, 8, 342, 1, 342, 3, 342, 7060, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7065, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7070, 8, 342, 1, 342, 1, 342, 3, 342, 7074, 8, 342, 1, 342, 3, 342, 7077, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7086, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7094, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7099, 8, 343, 3, 343, 7101, 8, 343, 1, 343, 3, 343, 7104, 8, 343, 1, 344, 1, 344, 3, 344, 7108, 8, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7119, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7140, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7148, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7161, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7171, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7177, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7183, 8, 345, 1, 345, 3, 345, 7186, 8, 345, 1, 345, 3, 345, 7189, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7215, 8, 345, 3, 345, 7217, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7238, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7248, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7261, 8, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7266, 8, 345, 1, 345, 1, 345, 3, 345, 7270, 8, 345, 3, 345, 7272, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7284, 8, 345, 1, 346, 1, 346, 1, 346, 5, 346, 7289, 8, 346, 10, 346, 12, 346, 7292, 9, 346, 1, 347, 1, 347, 1, 347, 3, 347, 7297, 8, 347, 1, 348, 1, 348, 1, 349, 1, 349, 3, 349, 7303, 8, 349, 1, 349, 1, 349, 3, 349, 7307, 8, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 7316, 8, 351, 10, 351, 12, 351, 7319, 9, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 3, 353, 7328, 8, 353, 1, 354, 1, 354, 3, 354, 7332, 8, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7337, 8, 354, 1, 354, 3, 354, 7340, 8, 354, 1, 354, 3, 354, 7343, 8, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7352, 8, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7363, 8, 355, 3, 355, 7365, 8, 355, 1, 356, 1, 356, 3, 356, 7369, 8, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7374, 8, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7383, 8, 357, 1, 358, 1, 358, 1, 358, 3, 358, 7388, 8, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 360, 1, 360, 3, 360, 7396, 8, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7406, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7414, 8, 363, 1, 364, 1, 364, 3, 364, 7418, 8, 364, 1, 364, 3, 364, 7421, 8, 364, 1, 365, 1, 365, 1, 365, 5, 365, 7426, 8, 365, 10, 365, 12, 365, 7429, 9, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7436, 8, 366, 1, 367, 1, 367, 3, 367, 7440, 8, 367, 1, 368, 1, 368, 1, 368, 5, 368, 7445, 8, 368, 10, 368, 12, 368, 7448, 9, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7455, 8, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 5, 370, 7462, 8, 370, 10, 370, 12, 370, 7465, 9, 370, 3, 370, 7467, 8, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7479, 8, 371, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7488, 8, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7495, 8, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7504, 8, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 3, 375, 7514, 8, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7519, 8, 375, 1, 375, 1, 375, 3, 375, 7523, 8, 375, 3, 375, 7525, 8, 375, 1, 375, 3, 375, 7528, 8, 375, 1, 376, 4, 376, 7531, 8, 376, 11, 376, 12, 376, 7532, 1, 377, 5, 377, 7536, 8, 377, 10, 377, 12, 377, 7539, 9, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7544, 8, 378, 10, 378, 12, 378, 7547, 9, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 3, 379, 7554, 8, 379, 1, 379, 3, 379, 7557, 8, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7562, 8, 380, 10, 380, 12, 380, 7565, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7570, 8, 381, 10, 381, 12, 381, 7573, 9, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7578, 8, 382, 10, 382, 12, 382, 7581, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7586, 8, 383, 10, 383, 12, 383, 7589, 9, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 3, 390, 7605, 8, 390, 1, 391, 1, 391, 1, 391, 5, 391, 7610, 8, 391, 10, 391, 12, 391, 7613, 9, 391, 1, 392, 1, 392, 1, 392, 5, 392, 7618, 8, 392, 10, 392, 12, 392, 7621, 9, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7637, 8, 398, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7643, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7649, 8, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7657, 8, 402, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7663, 8, 403, 1, 404, 1, 404, 1, 404, 3, 404, 7668, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 5, 405, 7674, 8, 405, 10, 405, 12, 405, 7677, 9, 405, 1, 405, 1, 405, 3, 405, 7681, 8, 405, 1, 406, 3, 406, 7684, 8, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7693, 8, 407, 1, 408, 1, 408, 1, 408, 5, 408, 7698, 8, 408, 10, 408, 12, 408, 7701, 9, 408, 1, 409, 1, 409, 3, 409, 7705, 8, 409, 1, 410, 1, 410, 3, 410, 7709, 8, 410, 1, 411, 1, 411, 1, 411, 3, 411, 7714, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7720, 8, 412, 1, 413, 1, 413, 1, 413, 3, 413, 7725, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7733, 8, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7788, 8, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 3, 418, 7795, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 4, 418, 7801, 8, 418, 11, 418, 12, 418, 7802, 3, 418, 7805, 8, 418, 3, 418, 7807, 8, 418, 1, 418, 1, 418, 5, 418, 7811, 8, 418, 10, 418, 12, 418, 7814, 9, 418, 1, 418, 3, 418, 7817, 8, 418, 1, 418, 1, 418, 3, 418, 7821, 8, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7832, 8, 420, 1, 420, 3, 420, 7835, 8, 420, 1, 420, 1, 420, 3, 420, 7839, 8, 420, 1, 420, 1, 420, 3, 420, 7843, 8, 420, 1, 420, 1, 420, 3, 420, 7847, 8, 420, 1, 420, 3, 420, 7850, 8, 420, 1, 420, 3, 420, 7853, 8, 420, 1, 420, 3, 420, 7856, 8, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 5, 420, 7863, 8, 420, 10, 420, 12, 420, 7866, 9, 420, 1, 420, 1, 420, 3, 420, 7870, 8, 420, 1, 420, 1, 420, 3, 420, 7874, 8, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 7907, 8, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7917, 8, 425, 1, 425, 1, 425, 3, 425, 7921, 8, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7927, 8, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7932, 8, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 3, 427, 7941, 8, 427, 1, 427, 1, 427, 1, 427, 1, 427, 5, 427, 7947, 8, 427, 10, 427, 12, 427, 7950, 9, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 3, 429, 7960, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7966, 8, 429, 10, 429, 12, 429, 7969, 9, 429, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7975, 8, 430, 10, 430, 12, 430, 7978, 9, 430, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7984, 8, 430, 10, 430, 12, 430, 7987, 9, 430, 5, 430, 7989, 8, 430, 10, 430, 12, 430, 7992, 9, 430, 1, 430, 3, 430, 7995, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 5, 431, 8003, 8, 431, 10, 431, 12, 431, 8006, 9, 431, 1, 432, 1, 432, 3, 432, 8010, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 8016, 8, 432, 10, 432, 12, 432, 8019, 9, 432, 4, 432, 8021, 8, 432, 11, 432, 12, 432, 8022, 1, 432, 3, 432, 8026, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 3, 433, 8033, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8039, 8, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8047, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8055, 8, 434, 1, 434, 3, 434, 8058, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8065, 8, 434, 3, 434, 8067, 8, 434, 1, 435, 3, 435, 8070, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 8076, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 3, 436, 8085, 8, 436, 1, 436, 1, 436, 3, 436, 8089, 8, 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, 3, 437, 8103, 8, 437, 1, 437, 3, 437, 8106, 8, 437, 3, 437, 8108, 8, 437, 1, 437, 1, 437, 1, 438, 1, 438, 3, 438, 8114, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 4, 438, 8122, 8, 438, 11, 438, 12, 438, 8123, 3, 438, 8126, 8, 438, 3, 438, 8128, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 5, 438, 8134, 8, 438, 10, 438, 12, 438, 8137, 9, 438, 3, 438, 8139, 8, 438, 1, 438, 3, 438, 8142, 8, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8152, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 5, 441, 8158, 8, 441, 10, 441, 12, 441, 8161, 9, 441, 1, 441, 1, 441, 1, 441, 3, 441, 8166, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 3, 442, 8172, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 3, 443, 8179, 8, 443, 1, 443, 1, 443, 3, 443, 8183, 8, 443, 1, 443, 1, 443, 3, 443, 8187, 8, 443, 1, 443, 3, 443, 8190, 8, 443, 1, 443, 3, 443, 8193, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 3, 444, 8199, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8206, 8, 445, 1, 445, 3, 445, 8209, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8217, 8, 445, 3, 445, 8219, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 5, 445, 8226, 8, 445, 10, 445, 12, 445, 8229, 9, 445, 1, 445, 1, 445, 3, 445, 8233, 8, 445, 3, 445, 8235, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 3, 446, 8242, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8248, 8, 447, 1, 447, 3, 447, 8251, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8263, 8, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8270, 8, 448, 3, 448, 8272, 8, 448, 1, 449, 1, 449, 3, 449, 8276, 8, 449, 1, 449, 1, 449, 1, 449, 1, 450, 3, 450, 8282, 8, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8287, 8, 450, 1, 450, 1, 450, 3, 450, 8291, 8, 450, 1, 450, 3, 450, 8294, 8, 450, 1, 450, 3, 450, 8297, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 4, 450, 8304, 8, 450, 11, 450, 12, 450, 8305, 1, 451, 3, 451, 8309, 8, 451, 1, 451, 1, 451, 3, 451, 8313, 8, 451, 1, 451, 1, 451, 3, 451, 8317, 8, 451, 3, 451, 8319, 8, 451, 1, 451, 3, 451, 8322, 8, 451, 1, 451, 3, 451, 8325, 8, 451, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8331, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8338, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8345, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8351, 8, 452, 3, 452, 8353, 8, 452, 1, 453, 1, 453, 3, 453, 8357, 8, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8362, 8, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 5, 454, 8378, 8, 454, 10, 454, 12, 454, 8381, 9, 454, 1, 454, 1, 454, 4, 454, 8385, 8, 454, 11, 454, 12, 454, 8386, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 5, 455, 8394, 8, 455, 10, 455, 12, 455, 8397, 9, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8403, 8, 455, 1, 456, 1, 456, 3, 456, 8407, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 3, 459, 8419, 8, 459, 1, 459, 3, 459, 8422, 8, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 8435, 8, 460, 1, 460, 3, 460, 8438, 8, 460, 1, 461, 1, 461, 3, 461, 8442, 8, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 5, 462, 8449, 8, 462, 10, 462, 12, 462, 8452, 9, 462, 1, 462, 1, 462, 5, 462, 8456, 8, 462, 10, 462, 12, 462, 8459, 9, 462, 4, 462, 8461, 8, 462, 11, 462, 12, 462, 8462, 1, 463, 1, 463, 1, 463, 3, 463, 8468, 8, 463, 1, 464, 1, 464, 3, 464, 8472, 8, 464, 1, 465, 3, 465, 8475, 8, 465, 1, 465, 3, 465, 8478, 8, 465, 1, 465, 3, 465, 8481, 8, 465, 1, 465, 3, 465, 8484, 8, 465, 1, 465, 3, 465, 8487, 8, 465, 1, 465, 1, 465, 3, 465, 8491, 8, 465, 1, 465, 3, 465, 8494, 8, 465, 1, 465, 0, 3, 676, 680, 682, 466, 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, 0, 118, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 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, 158, 158, 277, 277, 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, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 2, 0, 213, 213, 254, 254, 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, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 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, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 571, 571, 573, 573, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 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, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 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, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9930, 0, 935, 1, 0, 0, 0, 2, 940, 1, 0, 0, 0, 4, 1064, 1, 0, 0, 0, 6, 1066, 1, 0, 0, 0, 8, 1069, 1, 0, 0, 0, 10, 1119, 1, 0, 0, 0, 12, 1129, 1, 0, 0, 0, 14, 1131, 1, 0, 0, 0, 16, 1143, 1, 0, 0, 0, 18, 1155, 1, 0, 0, 0, 20, 1166, 1, 0, 0, 0, 22, 1200, 1, 0, 0, 0, 24, 1244, 1, 0, 0, 0, 26, 1246, 1, 0, 0, 0, 28, 1258, 1, 0, 0, 0, 30, 1265, 1, 0, 0, 0, 32, 1284, 1, 0, 0, 0, 34, 1292, 1, 0, 0, 0, 36, 1294, 1, 0, 0, 0, 38, 1308, 1, 0, 0, 0, 40, 1312, 1, 0, 0, 0, 42, 1349, 1, 0, 0, 0, 44, 1351, 1, 0, 0, 0, 46, 1359, 1, 0, 0, 0, 48, 1369, 1, 0, 0, 0, 50, 1376, 1, 0, 0, 0, 52, 1384, 1, 0, 0, 0, 54, 1390, 1, 0, 0, 0, 56, 1406, 1, 0, 0, 0, 58, 1410, 1, 0, 0, 0, 60, 1412, 1, 0, 0, 0, 62, 1424, 1, 0, 0, 0, 64, 1429, 1, 0, 0, 0, 66, 1434, 1, 0, 0, 0, 68, 1436, 1, 0, 0, 0, 70, 1448, 1, 0, 0, 0, 72, 1456, 1, 0, 0, 0, 74, 1458, 1, 0, 0, 0, 76, 1582, 1, 0, 0, 0, 78, 1584, 1, 0, 0, 0, 80, 1601, 1, 0, 0, 0, 82, 1603, 1, 0, 0, 0, 84, 1617, 1, 0, 0, 0, 86, 1619, 1, 0, 0, 0, 88, 1633, 1, 0, 0, 0, 90, 1635, 1, 0, 0, 0, 92, 1872, 1, 0, 0, 0, 94, 1879, 1, 0, 0, 0, 96, 1881, 1, 0, 0, 0, 98, 1883, 1, 0, 0, 0, 100, 1886, 1, 0, 0, 0, 102, 1897, 1, 0, 0, 0, 104, 1900, 1, 0, 0, 0, 106, 1936, 1, 0, 0, 0, 108, 1938, 1, 0, 0, 0, 110, 1979, 1, 0, 0, 0, 112, 1981, 1, 0, 0, 0, 114, 2035, 1, 0, 0, 0, 116, 2076, 1, 0, 0, 0, 118, 2078, 1, 0, 0, 0, 120, 2095, 1, 0, 0, 0, 122, 2176, 1, 0, 0, 0, 124, 2178, 1, 0, 0, 0, 126, 2189, 1, 0, 0, 0, 128, 2212, 1, 0, 0, 0, 130, 2230, 1, 0, 0, 0, 132, 2232, 1, 0, 0, 0, 134, 2267, 1, 0, 0, 0, 136, 2360, 1, 0, 0, 0, 138, 2365, 1, 0, 0, 0, 140, 2367, 1, 0, 0, 0, 142, 2465, 1, 0, 0, 0, 144, 2467, 1, 0, 0, 0, 146, 2471, 1, 0, 0, 0, 148, 2482, 1, 0, 0, 0, 150, 2490, 1, 0, 0, 0, 152, 2493, 1, 0, 0, 0, 154, 2496, 1, 0, 0, 0, 156, 2514, 1, 0, 0, 0, 158, 2516, 1, 0, 0, 0, 160, 2520, 1, 0, 0, 0, 162, 2533, 1, 0, 0, 0, 164, 2535, 1, 0, 0, 0, 166, 2540, 1, 0, 0, 0, 168, 2560, 1, 0, 0, 0, 170, 2568, 1, 0, 0, 0, 172, 2575, 1, 0, 0, 0, 174, 2577, 1, 0, 0, 0, 176, 2586, 1, 0, 0, 0, 178, 2589, 1, 0, 0, 0, 180, 2593, 1, 0, 0, 0, 182, 2597, 1, 0, 0, 0, 184, 2622, 1, 0, 0, 0, 186, 2632, 1, 0, 0, 0, 188, 2646, 1, 0, 0, 0, 190, 2662, 1, 0, 0, 0, 192, 2668, 1, 0, 0, 0, 194, 2695, 1, 0, 0, 0, 196, 2705, 1, 0, 0, 0, 198, 2721, 1, 0, 0, 0, 200, 2765, 1, 0, 0, 0, 202, 2772, 1, 0, 0, 0, 204, 2774, 1, 0, 0, 0, 206, 2800, 1, 0, 0, 0, 208, 2811, 1, 0, 0, 0, 210, 2830, 1, 0, 0, 0, 212, 2841, 1, 0, 0, 0, 214, 2879, 1, 0, 0, 0, 216, 2900, 1, 0, 0, 0, 218, 2902, 1, 0, 0, 0, 220, 2922, 1, 0, 0, 0, 222, 2934, 1, 0, 0, 0, 224, 2946, 1, 0, 0, 0, 226, 2949, 1, 0, 0, 0, 228, 2952, 1, 0, 0, 0, 230, 2972, 1, 0, 0, 0, 232, 2977, 1, 0, 0, 0, 234, 3026, 1, 0, 0, 0, 236, 3028, 1, 0, 0, 0, 238, 3051, 1, 0, 0, 0, 240, 3067, 1, 0, 0, 0, 242, 3079, 1, 0, 0, 0, 244, 3106, 1, 0, 0, 0, 246, 3121, 1, 0, 0, 0, 248, 3184, 1, 0, 0, 0, 250, 3186, 1, 0, 0, 0, 252, 3191, 1, 0, 0, 0, 254, 3197, 1, 0, 0, 0, 256, 3284, 1, 0, 0, 0, 258, 3290, 1, 0, 0, 0, 260, 3292, 1, 0, 0, 0, 262, 3308, 1, 0, 0, 0, 264, 3310, 1, 0, 0, 0, 266, 3319, 1, 0, 0, 0, 268, 3323, 1, 0, 0, 0, 270, 3336, 1, 0, 0, 0, 272, 3348, 1, 0, 0, 0, 274, 3350, 1, 0, 0, 0, 276, 3372, 1, 0, 0, 0, 278, 3384, 1, 0, 0, 0, 280, 3395, 1, 0, 0, 0, 282, 3486, 1, 0, 0, 0, 284, 3488, 1, 0, 0, 0, 286, 3499, 1, 0, 0, 0, 288, 3510, 1, 0, 0, 0, 290, 3512, 1, 0, 0, 0, 292, 3538, 1, 0, 0, 0, 294, 3540, 1, 0, 0, 0, 296, 3544, 1, 0, 0, 0, 298, 3594, 1, 0, 0, 0, 300, 3596, 1, 0, 0, 0, 302, 3602, 1, 0, 0, 0, 304, 3627, 1, 0, 0, 0, 306, 3631, 1, 0, 0, 0, 308, 3845, 1, 0, 0, 0, 310, 3863, 1, 0, 0, 0, 312, 3889, 1, 0, 0, 0, 314, 3891, 1, 0, 0, 0, 316, 3899, 1, 0, 0, 0, 318, 3905, 1, 0, 0, 0, 320, 3909, 1, 0, 0, 0, 322, 3929, 1, 0, 0, 0, 324, 3935, 1, 0, 0, 0, 326, 4002, 1, 0, 0, 0, 328, 4033, 1, 0, 0, 0, 330, 4079, 1, 0, 0, 0, 332, 4081, 1, 0, 0, 0, 334, 4083, 1, 0, 0, 0, 336, 4094, 1, 0, 0, 0, 338, 4131, 1, 0, 0, 0, 340, 4133, 1, 0, 0, 0, 342, 4139, 1, 0, 0, 0, 344, 4189, 1, 0, 0, 0, 346, 4192, 1, 0, 0, 0, 348, 4206, 1, 0, 0, 0, 350, 4227, 1, 0, 0, 0, 352, 4251, 1, 0, 0, 0, 354, 4292, 1, 0, 0, 0, 356, 4294, 1, 0, 0, 0, 358, 4296, 1, 0, 0, 0, 360, 4336, 1, 0, 0, 0, 362, 4353, 1, 0, 0, 0, 364, 4373, 1, 0, 0, 0, 366, 4426, 1, 0, 0, 0, 368, 4429, 1, 0, 0, 0, 370, 4435, 1, 0, 0, 0, 372, 4443, 1, 0, 0, 0, 374, 4456, 1, 0, 0, 0, 376, 4458, 1, 0, 0, 0, 378, 4471, 1, 0, 0, 0, 380, 4473, 1, 0, 0, 0, 382, 4486, 1, 0, 0, 0, 384, 4496, 1, 0, 0, 0, 386, 4507, 1, 0, 0, 0, 388, 4518, 1, 0, 0, 0, 390, 4520, 1, 0, 0, 0, 392, 4525, 1, 0, 0, 0, 394, 4539, 1, 0, 0, 0, 396, 4571, 1, 0, 0, 0, 398, 4608, 1, 0, 0, 0, 400, 4610, 1, 0, 0, 0, 402, 4613, 1, 0, 0, 0, 404, 4616, 1, 0, 0, 0, 406, 4633, 1, 0, 0, 0, 408, 4654, 1, 0, 0, 0, 410, 4670, 1, 0, 0, 0, 412, 4686, 1, 0, 0, 0, 414, 4708, 1, 0, 0, 0, 416, 4713, 1, 0, 0, 0, 418, 4716, 1, 0, 0, 0, 420, 4724, 1, 0, 0, 0, 422, 4749, 1, 0, 0, 0, 424, 4752, 1, 0, 0, 0, 426, 4780, 1, 0, 0, 0, 428, 4785, 1, 0, 0, 0, 430, 4825, 1, 0, 0, 0, 432, 5037, 1, 0, 0, 0, 434, 5039, 1, 0, 0, 0, 436, 5127, 1, 0, 0, 0, 438, 5129, 1, 0, 0, 0, 440, 5135, 1, 0, 0, 0, 442, 5146, 1, 0, 0, 0, 444, 5156, 1, 0, 0, 0, 446, 5236, 1, 0, 0, 0, 448, 5238, 1, 0, 0, 0, 450, 5252, 1, 0, 0, 0, 452, 5274, 1, 0, 0, 0, 454, 5347, 1, 0, 0, 0, 456, 5349, 1, 0, 0, 0, 458, 5390, 1, 0, 0, 0, 460, 5392, 1, 0, 0, 0, 462, 5397, 1, 0, 0, 0, 464, 5400, 1, 0, 0, 0, 466, 5403, 1, 0, 0, 0, 468, 5453, 1, 0, 0, 0, 470, 5455, 1, 0, 0, 0, 472, 5466, 1, 0, 0, 0, 474, 5468, 1, 0, 0, 0, 476, 5478, 1, 0, 0, 0, 478, 5513, 1, 0, 0, 0, 480, 5516, 1, 0, 0, 0, 482, 5537, 1, 0, 0, 0, 484, 5547, 1, 0, 0, 0, 486, 5567, 1, 0, 0, 0, 488, 5573, 1, 0, 0, 0, 490, 5579, 1, 0, 0, 0, 492, 5584, 1, 0, 0, 0, 494, 5597, 1, 0, 0, 0, 496, 5624, 1, 0, 0, 0, 498, 5672, 1, 0, 0, 0, 500, 5674, 1, 0, 0, 0, 502, 5712, 1, 0, 0, 0, 504, 5714, 1, 0, 0, 0, 506, 5735, 1, 0, 0, 0, 508, 5755, 1, 0, 0, 0, 510, 5759, 1, 0, 0, 0, 512, 5774, 1, 0, 0, 0, 514, 5776, 1, 0, 0, 0, 516, 5780, 1, 0, 0, 0, 518, 5784, 1, 0, 0, 0, 520, 5792, 1, 0, 0, 0, 522, 5816, 1, 0, 0, 0, 524, 5818, 1, 0, 0, 0, 526, 5829, 1, 0, 0, 0, 528, 5837, 1, 0, 0, 0, 530, 5852, 1, 0, 0, 0, 532, 5877, 1, 0, 0, 0, 534, 5879, 1, 0, 0, 0, 536, 5883, 1, 0, 0, 0, 538, 5892, 1, 0, 0, 0, 540, 5932, 1, 0, 0, 0, 542, 5943, 1, 0, 0, 0, 544, 5951, 1, 0, 0, 0, 546, 5954, 1, 0, 0, 0, 548, 5958, 1, 0, 0, 0, 550, 5973, 1, 0, 0, 0, 552, 5998, 1, 0, 0, 0, 554, 6013, 1, 0, 0, 0, 556, 6039, 1, 0, 0, 0, 558, 6041, 1, 0, 0, 0, 560, 6064, 1, 0, 0, 0, 562, 6066, 1, 0, 0, 0, 564, 6074, 1, 0, 0, 0, 566, 6092, 1, 0, 0, 0, 568, 6116, 1, 0, 0, 0, 570, 6128, 1, 0, 0, 0, 572, 6132, 1, 0, 0, 0, 574, 6144, 1, 0, 0, 0, 576, 6164, 1, 0, 0, 0, 578, 6172, 1, 0, 0, 0, 580, 6186, 1, 0, 0, 0, 582, 6209, 1, 0, 0, 0, 584, 6211, 1, 0, 0, 0, 586, 6216, 1, 0, 0, 0, 588, 6226, 1, 0, 0, 0, 590, 6247, 1, 0, 0, 0, 592, 6249, 1, 0, 0, 0, 594, 6258, 1, 0, 0, 0, 596, 6269, 1, 0, 0, 0, 598, 6279, 1, 0, 0, 0, 600, 6281, 1, 0, 0, 0, 602, 6288, 1, 0, 0, 0, 604, 6319, 1, 0, 0, 0, 606, 6349, 1, 0, 0, 0, 608, 6351, 1, 0, 0, 0, 610, 6360, 1, 0, 0, 0, 612, 6363, 1, 0, 0, 0, 614, 6434, 1, 0, 0, 0, 616, 6458, 1, 0, 0, 0, 618, 6479, 1, 0, 0, 0, 620, 6481, 1, 0, 0, 0, 622, 6489, 1, 0, 0, 0, 624, 6506, 1, 0, 0, 0, 626, 6532, 1, 0, 0, 0, 628, 6534, 1, 0, 0, 0, 630, 6542, 1, 0, 0, 0, 632, 6549, 1, 0, 0, 0, 634, 6573, 1, 0, 0, 0, 636, 6579, 1, 0, 0, 0, 638, 6587, 1, 0, 0, 0, 640, 6590, 1, 0, 0, 0, 642, 6597, 1, 0, 0, 0, 644, 6605, 1, 0, 0, 0, 646, 6610, 1, 0, 0, 0, 648, 6640, 1, 0, 0, 0, 650, 6667, 1, 0, 0, 0, 652, 6695, 1, 0, 0, 0, 654, 6712, 1, 0, 0, 0, 656, 6718, 1, 0, 0, 0, 658, 6736, 1, 0, 0, 0, 660, 6738, 1, 0, 0, 0, 662, 6742, 1, 0, 0, 0, 664, 6759, 1, 0, 0, 0, 666, 6764, 1, 0, 0, 0, 668, 6802, 1, 0, 0, 0, 670, 6804, 1, 0, 0, 0, 672, 6808, 1, 0, 0, 0, 674, 6810, 1, 0, 0, 0, 676, 6819, 1, 0, 0, 0, 678, 6903, 1, 0, 0, 0, 680, 6909, 1, 0, 0, 0, 682, 7018, 1, 0, 0, 0, 684, 7050, 1, 0, 0, 0, 686, 7103, 1, 0, 0, 0, 688, 7107, 1, 0, 0, 0, 690, 7283, 1, 0, 0, 0, 692, 7285, 1, 0, 0, 0, 694, 7293, 1, 0, 0, 0, 696, 7298, 1, 0, 0, 0, 698, 7300, 1, 0, 0, 0, 700, 7308, 1, 0, 0, 0, 702, 7311, 1, 0, 0, 0, 704, 7320, 1, 0, 0, 0, 706, 7324, 1, 0, 0, 0, 708, 7329, 1, 0, 0, 0, 710, 7346, 1, 0, 0, 0, 712, 7373, 1, 0, 0, 0, 714, 7382, 1, 0, 0, 0, 716, 7384, 1, 0, 0, 0, 718, 7391, 1, 0, 0, 0, 720, 7395, 1, 0, 0, 0, 722, 7397, 1, 0, 0, 0, 724, 7405, 1, 0, 0, 0, 726, 7413, 1, 0, 0, 0, 728, 7420, 1, 0, 0, 0, 730, 7422, 1, 0, 0, 0, 732, 7435, 1, 0, 0, 0, 734, 7439, 1, 0, 0, 0, 736, 7441, 1, 0, 0, 0, 738, 7454, 1, 0, 0, 0, 740, 7456, 1, 0, 0, 0, 742, 7478, 1, 0, 0, 0, 744, 7480, 1, 0, 0, 0, 746, 7503, 1, 0, 0, 0, 748, 7505, 1, 0, 0, 0, 750, 7527, 1, 0, 0, 0, 752, 7530, 1, 0, 0, 0, 754, 7537, 1, 0, 0, 0, 756, 7540, 1, 0, 0, 0, 758, 7556, 1, 0, 0, 0, 760, 7558, 1, 0, 0, 0, 762, 7566, 1, 0, 0, 0, 764, 7574, 1, 0, 0, 0, 766, 7582, 1, 0, 0, 0, 768, 7590, 1, 0, 0, 0, 770, 7592, 1, 0, 0, 0, 772, 7594, 1, 0, 0, 0, 774, 7596, 1, 0, 0, 0, 776, 7598, 1, 0, 0, 0, 778, 7600, 1, 0, 0, 0, 780, 7602, 1, 0, 0, 0, 782, 7606, 1, 0, 0, 0, 784, 7614, 1, 0, 0, 0, 786, 7622, 1, 0, 0, 0, 788, 7624, 1, 0, 0, 0, 790, 7626, 1, 0, 0, 0, 792, 7628, 1, 0, 0, 0, 794, 7630, 1, 0, 0, 0, 796, 7636, 1, 0, 0, 0, 798, 7642, 1, 0, 0, 0, 800, 7648, 1, 0, 0, 0, 802, 7650, 1, 0, 0, 0, 804, 7656, 1, 0, 0, 0, 806, 7662, 1, 0, 0, 0, 808, 7664, 1, 0, 0, 0, 810, 7680, 1, 0, 0, 0, 812, 7683, 1, 0, 0, 0, 814, 7692, 1, 0, 0, 0, 816, 7694, 1, 0, 0, 0, 818, 7704, 1, 0, 0, 0, 820, 7708, 1, 0, 0, 0, 822, 7713, 1, 0, 0, 0, 824, 7719, 1, 0, 0, 0, 826, 7732, 1, 0, 0, 0, 828, 7734, 1, 0, 0, 0, 830, 7787, 1, 0, 0, 0, 832, 7789, 1, 0, 0, 0, 834, 7791, 1, 0, 0, 0, 836, 7794, 1, 0, 0, 0, 838, 7822, 1, 0, 0, 0, 840, 7826, 1, 0, 0, 0, 842, 7877, 1, 0, 0, 0, 844, 7880, 1, 0, 0, 0, 846, 7906, 1, 0, 0, 0, 848, 7908, 1, 0, 0, 0, 850, 7931, 1, 0, 0, 0, 852, 7933, 1, 0, 0, 0, 854, 7938, 1, 0, 0, 0, 856, 7953, 1, 0, 0, 0, 858, 7959, 1, 0, 0, 0, 860, 7970, 1, 0, 0, 0, 862, 8000, 1, 0, 0, 0, 864, 8007, 1, 0, 0, 0, 866, 8032, 1, 0, 0, 0, 868, 8042, 1, 0, 0, 0, 870, 8069, 1, 0, 0, 0, 872, 8082, 1, 0, 0, 0, 874, 8092, 1, 0, 0, 0, 876, 8111, 1, 0, 0, 0, 878, 8143, 1, 0, 0, 0, 880, 8147, 1, 0, 0, 0, 882, 8155, 1, 0, 0, 0, 884, 8169, 1, 0, 0, 0, 886, 8175, 1, 0, 0, 0, 888, 8196, 1, 0, 0, 0, 890, 8202, 1, 0, 0, 0, 892, 8241, 1, 0, 0, 0, 894, 8245, 1, 0, 0, 0, 896, 8271, 1, 0, 0, 0, 898, 8273, 1, 0, 0, 0, 900, 8281, 1, 0, 0, 0, 902, 8318, 1, 0, 0, 0, 904, 8352, 1, 0, 0, 0, 906, 8354, 1, 0, 0, 0, 908, 8365, 1, 0, 0, 0, 910, 8402, 1, 0, 0, 0, 912, 8406, 1, 0, 0, 0, 914, 8408, 1, 0, 0, 0, 916, 8412, 1, 0, 0, 0, 918, 8415, 1, 0, 0, 0, 920, 8437, 1, 0, 0, 0, 922, 8441, 1, 0, 0, 0, 924, 8443, 1, 0, 0, 0, 926, 8467, 1, 0, 0, 0, 928, 8471, 1, 0, 0, 0, 930, 8474, 1, 0, 0, 0, 932, 934, 3, 2, 1, 0, 933, 932, 1, 0, 0, 0, 934, 937, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 935, 1, 0, 0, 0, 938, 939, 5, 0, 0, 1, 939, 1, 1, 0, 0, 0, 940, 942, 3, 4, 2, 0, 941, 943, 5, 7, 0, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 3, 1, 0, 0, 0, 944, 1065, 3, 278, 139, 0, 945, 1065, 3, 488, 244, 0, 946, 1065, 3, 484, 242, 0, 947, 1065, 3, 486, 243, 0, 948, 1065, 3, 352, 176, 0, 949, 1065, 3, 494, 247, 0, 950, 1065, 3, 292, 146, 0, 951, 1065, 3, 210, 105, 0, 952, 1065, 3, 212, 106, 0, 953, 1065, 3, 218, 109, 0, 954, 1065, 3, 232, 116, 0, 955, 1065, 3, 404, 202, 0, 956, 1065, 3, 28, 14, 0, 957, 1065, 3, 434, 217, 0, 958, 1065, 3, 436, 218, 0, 959, 1065, 3, 446, 223, 0, 960, 1065, 3, 438, 219, 0, 961, 1065, 3, 444, 222, 0, 962, 1065, 3, 244, 122, 0, 963, 1065, 3, 246, 123, 0, 964, 1065, 3, 198, 99, 0, 965, 1065, 3, 490, 245, 0, 966, 1065, 3, 76, 38, 0, 967, 1065, 3, 430, 215, 0, 968, 1065, 3, 108, 54, 0, 969, 1065, 3, 450, 225, 0, 970, 1065, 3, 18, 9, 0, 971, 1065, 3, 20, 10, 0, 972, 1065, 3, 16, 8, 0, 973, 1065, 3, 454, 227, 0, 974, 1065, 3, 184, 92, 0, 975, 1065, 3, 498, 249, 0, 976, 1065, 3, 496, 248, 0, 977, 1065, 3, 240, 120, 0, 978, 1065, 3, 506, 253, 0, 979, 1065, 3, 6, 3, 0, 980, 1065, 3, 72, 36, 0, 981, 1065, 3, 112, 56, 0, 982, 1065, 3, 502, 251, 0, 983, 1065, 3, 324, 162, 0, 984, 1065, 3, 70, 35, 0, 985, 1065, 3, 114, 57, 0, 986, 1065, 3, 254, 127, 0, 987, 1065, 3, 186, 93, 0, 988, 1065, 3, 280, 140, 0, 989, 1065, 3, 420, 210, 0, 990, 1065, 3, 500, 250, 0, 991, 1065, 3, 492, 246, 0, 992, 1065, 3, 208, 104, 0, 993, 1065, 3, 214, 107, 0, 994, 1065, 3, 228, 114, 0, 995, 1065, 3, 234, 117, 0, 996, 1065, 3, 364, 182, 0, 997, 1065, 3, 26, 13, 0, 998, 1065, 3, 192, 96, 0, 999, 1065, 3, 296, 148, 0, 1000, 1065, 3, 300, 150, 0, 1001, 1065, 3, 448, 224, 0, 1002, 1065, 3, 302, 151, 0, 1003, 1065, 3, 242, 121, 0, 1004, 1065, 3, 204, 102, 0, 1005, 1065, 3, 30, 15, 0, 1006, 1065, 3, 196, 98, 0, 1007, 1065, 3, 120, 60, 0, 1008, 1065, 3, 452, 226, 0, 1009, 1065, 3, 182, 91, 0, 1010, 1065, 3, 206, 103, 0, 1011, 1065, 3, 424, 212, 0, 1012, 1065, 3, 256, 128, 0, 1013, 1065, 3, 274, 137, 0, 1014, 1065, 3, 8, 4, 0, 1015, 1065, 3, 14, 7, 0, 1016, 1065, 3, 238, 119, 0, 1017, 1065, 3, 480, 240, 0, 1018, 1065, 3, 536, 268, 0, 1019, 1065, 3, 558, 279, 0, 1020, 1065, 3, 282, 141, 0, 1021, 1065, 3, 548, 274, 0, 1022, 1065, 3, 74, 37, 0, 1023, 1065, 3, 418, 209, 0, 1024, 1065, 3, 308, 154, 0, 1025, 1065, 3, 532, 266, 0, 1026, 1065, 3, 520, 260, 0, 1027, 1065, 3, 328, 164, 0, 1028, 1065, 3, 334, 167, 0, 1029, 1065, 3, 348, 174, 0, 1030, 1065, 3, 900, 450, 0, 1031, 1065, 3, 236, 118, 0, 1032, 1065, 3, 358, 179, 0, 1033, 1065, 3, 538, 269, 0, 1034, 1065, 3, 464, 232, 0, 1035, 1065, 3, 194, 97, 0, 1036, 1065, 3, 478, 239, 0, 1037, 1065, 3, 550, 275, 0, 1038, 1065, 3, 460, 230, 0, 1039, 1065, 3, 526, 263, 0, 1040, 1065, 3, 306, 153, 0, 1041, 1065, 3, 428, 214, 0, 1042, 1065, 3, 408, 204, 0, 1043, 1065, 3, 406, 203, 0, 1044, 1065, 3, 410, 205, 0, 1045, 1065, 3, 432, 216, 0, 1046, 1065, 3, 336, 168, 0, 1047, 1065, 3, 350, 175, 0, 1048, 1065, 3, 456, 228, 0, 1049, 1065, 3, 326, 163, 0, 1050, 1065, 3, 560, 280, 0, 1051, 1065, 3, 468, 234, 0, 1052, 1065, 3, 320, 160, 0, 1053, 1065, 3, 466, 233, 0, 1054, 1065, 3, 552, 276, 0, 1055, 1065, 3, 504, 252, 0, 1056, 1065, 3, 60, 30, 0, 1057, 1065, 3, 36, 18, 0, 1058, 1065, 3, 68, 34, 0, 1059, 1065, 3, 476, 238, 0, 1060, 1062, 5, 581, 0, 0, 1061, 1063, 5, 582, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 944, 1, 0, 0, 0, 1064, 945, 1, 0, 0, 0, 1064, 946, 1, 0, 0, 0, 1064, 947, 1, 0, 0, 0, 1064, 948, 1, 0, 0, 0, 1064, 949, 1, 0, 0, 0, 1064, 950, 1, 0, 0, 0, 1064, 951, 1, 0, 0, 0, 1064, 952, 1, 0, 0, 0, 1064, 953, 1, 0, 0, 0, 1064, 954, 1, 0, 0, 0, 1064, 955, 1, 0, 0, 0, 1064, 956, 1, 0, 0, 0, 1064, 957, 1, 0, 0, 0, 1064, 958, 1, 0, 0, 0, 1064, 959, 1, 0, 0, 0, 1064, 960, 1, 0, 0, 0, 1064, 961, 1, 0, 0, 0, 1064, 962, 1, 0, 0, 0, 1064, 963, 1, 0, 0, 0, 1064, 964, 1, 0, 0, 0, 1064, 965, 1, 0, 0, 0, 1064, 966, 1, 0, 0, 0, 1064, 967, 1, 0, 0, 0, 1064, 968, 1, 0, 0, 0, 1064, 969, 1, 0, 0, 0, 1064, 970, 1, 0, 0, 0, 1064, 971, 1, 0, 0, 0, 1064, 972, 1, 0, 0, 0, 1064, 973, 1, 0, 0, 0, 1064, 974, 1, 0, 0, 0, 1064, 975, 1, 0, 0, 0, 1064, 976, 1, 0, 0, 0, 1064, 977, 1, 0, 0, 0, 1064, 978, 1, 0, 0, 0, 1064, 979, 1, 0, 0, 0, 1064, 980, 1, 0, 0, 0, 1064, 981, 1, 0, 0, 0, 1064, 982, 1, 0, 0, 0, 1064, 983, 1, 0, 0, 0, 1064, 984, 1, 0, 0, 0, 1064, 985, 1, 0, 0, 0, 1064, 986, 1, 0, 0, 0, 1064, 987, 1, 0, 0, 0, 1064, 988, 1, 0, 0, 0, 1064, 989, 1, 0, 0, 0, 1064, 990, 1, 0, 0, 0, 1064, 991, 1, 0, 0, 0, 1064, 992, 1, 0, 0, 0, 1064, 993, 1, 0, 0, 0, 1064, 994, 1, 0, 0, 0, 1064, 995, 1, 0, 0, 0, 1064, 996, 1, 0, 0, 0, 1064, 997, 1, 0, 0, 0, 1064, 998, 1, 0, 0, 0, 1064, 999, 1, 0, 0, 0, 1064, 1000, 1, 0, 0, 0, 1064, 1001, 1, 0, 0, 0, 1064, 1002, 1, 0, 0, 0, 1064, 1003, 1, 0, 0, 0, 1064, 1004, 1, 0, 0, 0, 1064, 1005, 1, 0, 0, 0, 1064, 1006, 1, 0, 0, 0, 1064, 1007, 1, 0, 0, 0, 1064, 1008, 1, 0, 0, 0, 1064, 1009, 1, 0, 0, 0, 1064, 1010, 1, 0, 0, 0, 1064, 1011, 1, 0, 0, 0, 1064, 1012, 1, 0, 0, 0, 1064, 1013, 1, 0, 0, 0, 1064, 1014, 1, 0, 0, 0, 1064, 1015, 1, 0, 0, 0, 1064, 1016, 1, 0, 0, 0, 1064, 1017, 1, 0, 0, 0, 1064, 1018, 1, 0, 0, 0, 1064, 1019, 1, 0, 0, 0, 1064, 1020, 1, 0, 0, 0, 1064, 1021, 1, 0, 0, 0, 1064, 1022, 1, 0, 0, 0, 1064, 1023, 1, 0, 0, 0, 1064, 1024, 1, 0, 0, 0, 1064, 1025, 1, 0, 0, 0, 1064, 1026, 1, 0, 0, 0, 1064, 1027, 1, 0, 0, 0, 1064, 1028, 1, 0, 0, 0, 1064, 1029, 1, 0, 0, 0, 1064, 1030, 1, 0, 0, 0, 1064, 1031, 1, 0, 0, 0, 1064, 1032, 1, 0, 0, 0, 1064, 1033, 1, 0, 0, 0, 1064, 1034, 1, 0, 0, 0, 1064, 1035, 1, 0, 0, 0, 1064, 1036, 1, 0, 0, 0, 1064, 1037, 1, 0, 0, 0, 1064, 1038, 1, 0, 0, 0, 1064, 1039, 1, 0, 0, 0, 1064, 1040, 1, 0, 0, 0, 1064, 1041, 1, 0, 0, 0, 1064, 1042, 1, 0, 0, 0, 1064, 1043, 1, 0, 0, 0, 1064, 1044, 1, 0, 0, 0, 1064, 1045, 1, 0, 0, 0, 1064, 1046, 1, 0, 0, 0, 1064, 1047, 1, 0, 0, 0, 1064, 1048, 1, 0, 0, 0, 1064, 1049, 1, 0, 0, 0, 1064, 1050, 1, 0, 0, 0, 1064, 1051, 1, 0, 0, 0, 1064, 1052, 1, 0, 0, 0, 1064, 1053, 1, 0, 0, 0, 1064, 1054, 1, 0, 0, 0, 1064, 1055, 1, 0, 0, 0, 1064, 1056, 1, 0, 0, 0, 1064, 1057, 1, 0, 0, 0, 1064, 1058, 1, 0, 0, 0, 1064, 1059, 1, 0, 0, 0, 1064, 1060, 1, 0, 0, 0, 1065, 5, 1, 0, 0, 0, 1066, 1067, 5, 433, 0, 0, 1067, 1068, 3, 684, 342, 0, 1068, 7, 1, 0, 0, 0, 1069, 1070, 5, 46, 0, 0, 1070, 1071, 5, 318, 0, 0, 1071, 1073, 3, 814, 407, 0, 1072, 1074, 5, 105, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1078, 1, 0, 0, 0, 1075, 1077, 3, 12, 6, 0, 1076, 1075, 1, 0, 0, 0, 1077, 1080, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 9, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1081, 1084, 5, 287, 0, 0, 1082, 1085, 3, 808, 404, 0, 1083, 1085, 5, 78, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1120, 1, 0, 0, 0, 1086, 1087, 7, 0, 0, 0, 1087, 1088, 5, 287, 0, 0, 1088, 1120, 3, 808, 404, 0, 1089, 1120, 5, 228, 0, 0, 1090, 1120, 5, 229, 0, 0, 1091, 1120, 5, 236, 0, 0, 1092, 1120, 5, 237, 0, 0, 1093, 1120, 5, 234, 0, 0, 1094, 1120, 5, 235, 0, 0, 1095, 1120, 5, 232, 0, 0, 1096, 1120, 5, 233, 0, 0, 1097, 1120, 5, 230, 0, 0, 1098, 1120, 5, 231, 0, 0, 1099, 1120, 5, 535, 0, 0, 1100, 1120, 5, 536, 0, 0, 1101, 1120, 5, 537, 0, 0, 1102, 1120, 5, 538, 0, 0, 1103, 1120, 5, 539, 0, 0, 1104, 1120, 5, 540, 0, 0, 1105, 1106, 5, 164, 0, 0, 1106, 1107, 5, 74, 0, 0, 1107, 1120, 3, 812, 406, 0, 1108, 1109, 5, 371, 0, 0, 1109, 1110, 5, 368, 0, 0, 1110, 1120, 3, 808, 404, 0, 1111, 1112, 5, 68, 0, 0, 1112, 1113, 7, 1, 0, 0, 1113, 1120, 3, 784, 392, 0, 1114, 1115, 7, 2, 0, 0, 1115, 1120, 3, 816, 408, 0, 1116, 1117, 5, 134, 0, 0, 1117, 1120, 3, 784, 392, 0, 1118, 1120, 3, 826, 413, 0, 1119, 1081, 1, 0, 0, 0, 1119, 1086, 1, 0, 0, 0, 1119, 1089, 1, 0, 0, 0, 1119, 1090, 1, 0, 0, 0, 1119, 1091, 1, 0, 0, 0, 1119, 1092, 1, 0, 0, 0, 1119, 1093, 1, 0, 0, 0, 1119, 1094, 1, 0, 0, 0, 1119, 1095, 1, 0, 0, 0, 1119, 1096, 1, 0, 0, 0, 1119, 1097, 1, 0, 0, 0, 1119, 1098, 1, 0, 0, 0, 1119, 1099, 1, 0, 0, 0, 1119, 1100, 1, 0, 0, 0, 1119, 1101, 1, 0, 0, 0, 1119, 1102, 1, 0, 0, 0, 1119, 1103, 1, 0, 0, 0, 1119, 1104, 1, 0, 0, 0, 1119, 1105, 1, 0, 0, 0, 1119, 1108, 1, 0, 0, 0, 1119, 1111, 1, 0, 0, 0, 1119, 1114, 1, 0, 0, 0, 1119, 1116, 1, 0, 0, 0, 1119, 1118, 1, 0, 0, 0, 1120, 11, 1, 0, 0, 0, 1121, 1130, 3, 10, 5, 0, 1122, 1123, 5, 348, 0, 0, 1123, 1130, 5, 571, 0, 0, 1124, 1125, 7, 3, 0, 0, 1125, 1130, 3, 816, 408, 0, 1126, 1127, 5, 68, 0, 0, 1127, 1128, 7, 1, 0, 0, 1128, 1130, 3, 816, 408, 0, 1129, 1121, 1, 0, 0, 0, 1129, 1122, 1, 0, 0, 0, 1129, 1124, 1, 0, 0, 0, 1129, 1126, 1, 0, 0, 0, 1130, 13, 1, 0, 0, 0, 1131, 1132, 5, 46, 0, 0, 1132, 1133, 5, 99, 0, 0, 1133, 1135, 3, 814, 407, 0, 1134, 1136, 5, 105, 0, 0, 1135, 1134, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1140, 1, 0, 0, 0, 1137, 1139, 3, 12, 6, 0, 1138, 1137, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 15, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1144, 5, 138, 0, 0, 1144, 1145, 7, 2, 0, 0, 1145, 1147, 3, 814, 407, 0, 1146, 1148, 5, 105, 0, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1152, 1, 0, 0, 0, 1149, 1151, 3, 10, 5, 0, 1150, 1149, 1, 0, 0, 0, 1151, 1154, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 17, 1, 0, 0, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1156, 5, 138, 0, 0, 1156, 1159, 7, 2, 0, 0, 1157, 1160, 5, 30, 0, 0, 1158, 1160, 3, 814, 407, 0, 1159, 1157, 1, 0, 0, 0, 1159, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 5, 68, 0, 0, 1162, 1163, 5, 175, 0, 0, 1163, 1164, 3, 788, 394, 0, 1164, 1165, 3, 64, 32, 0, 1165, 19, 1, 0, 0, 0, 1166, 1167, 5, 138, 0, 0, 1167, 1168, 5, 442, 0, 0, 1168, 1170, 3, 794, 397, 0, 1169, 1171, 3, 368, 184, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 3, 22, 11, 0, 1173, 21, 1, 0, 0, 0, 1174, 1178, 3, 24, 12, 0, 1175, 1177, 3, 24, 12, 0, 1176, 1175, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1182, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1183, 5, 315, 0, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1201, 1, 0, 0, 0, 1184, 1185, 5, 309, 0, 0, 1185, 1186, 5, 94, 0, 0, 1186, 1201, 3, 792, 396, 0, 1187, 1188, 5, 282, 0, 0, 1188, 1189, 5, 94, 0, 0, 1189, 1201, 3, 814, 407, 0, 1190, 1191, 5, 333, 0, 0, 1191, 1192, 5, 323, 0, 0, 1192, 1201, 3, 32, 16, 0, 1193, 1195, 5, 269, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 462, 0, 0, 1197, 1198, 5, 80, 0, 0, 1198, 1199, 5, 204, 0, 0, 1199, 1201, 3, 818, 409, 0, 1200, 1174, 1, 0, 0, 0, 1200, 1184, 1, 0, 0, 0, 1200, 1187, 1, 0, 0, 0, 1200, 1190, 1, 0, 0, 0, 1200, 1194, 1, 0, 0, 0, 1201, 23, 1, 0, 0, 0, 1202, 1245, 5, 222, 0, 0, 1203, 1245, 5, 338, 0, 0, 1204, 1245, 5, 377, 0, 0, 1205, 1207, 5, 77, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1245, 5, 250, 0, 0, 1209, 1211, 5, 205, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 327, 0, 0, 1213, 1220, 5, 243, 0, 0, 1214, 1216, 5, 205, 0, 0, 1215, 1214, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 5, 327, 0, 0, 1218, 1220, 5, 181, 0, 0, 1219, 1210, 1, 0, 0, 0, 1219, 1215, 1, 0, 0, 0, 1220, 1245, 1, 0, 0, 0, 1221, 1222, 5, 460, 0, 0, 1222, 1245, 7, 4, 0, 0, 1223, 1224, 5, 170, 0, 0, 1224, 1245, 3, 824, 412, 0, 1225, 1226, 5, 320, 0, 0, 1226, 1245, 3, 818, 409, 0, 1227, 1228, 5, 333, 0, 0, 1228, 1229, 3, 818, 409, 0, 1229, 1232, 7, 5, 0, 0, 1230, 1233, 3, 818, 409, 0, 1231, 1233, 5, 53, 0, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1231, 1, 0, 0, 0, 1233, 1245, 1, 0, 0, 0, 1234, 1235, 5, 333, 0, 0, 1235, 1236, 3, 818, 409, 0, 1236, 1237, 5, 64, 0, 0, 1237, 1238, 5, 434, 0, 0, 1238, 1245, 1, 0, 0, 0, 1239, 1242, 5, 313, 0, 0, 1240, 1243, 3, 818, 409, 0, 1241, 1243, 5, 30, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1202, 1, 0, 0, 0, 1244, 1203, 1, 0, 0, 0, 1244, 1204, 1, 0, 0, 0, 1244, 1206, 1, 0, 0, 0, 1244, 1219, 1, 0, 0, 0, 1244, 1221, 1, 0, 0, 0, 1244, 1223, 1, 0, 0, 0, 1244, 1225, 1, 0, 0, 0, 1244, 1227, 1, 0, 0, 0, 1244, 1234, 1, 0, 0, 0, 1244, 1239, 1, 0, 0, 0, 1245, 25, 1, 0, 0, 0, 1246, 1247, 5, 46, 0, 0, 1247, 1248, 5, 66, 0, 0, 1248, 1250, 3, 814, 407, 0, 1249, 1251, 5, 105, 0, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1255, 1, 0, 0, 0, 1252, 1254, 3, 12, 6, 0, 1253, 1252, 1, 0, 0, 0, 1254, 1257, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 27, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1259, 5, 138, 0, 0, 1259, 1260, 5, 66, 0, 0, 1260, 1261, 3, 814, 407, 0, 1261, 1262, 7, 6, 0, 0, 1262, 1263, 5, 99, 0, 0, 1263, 1264, 3, 816, 408, 0, 1264, 29, 1, 0, 0, 0, 1265, 1266, 5, 46, 0, 0, 1266, 1268, 5, 323, 0, 0, 1267, 1269, 3, 294, 147, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1276, 1, 0, 0, 0, 1270, 1272, 3, 32, 16, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 5, 106, 0, 0, 1274, 1277, 3, 814, 407, 0, 1275, 1277, 3, 32, 16, 0, 1276, 1271, 1, 0, 0, 0, 1276, 1275, 1, 0, 0, 0, 1277, 1281, 1, 0, 0, 0, 1278, 1280, 3, 34, 17, 0, 1279, 1278, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 31, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1285, 3, 316, 158, 0, 1285, 33, 1, 0, 0, 0, 1286, 1293, 3, 120, 60, 0, 1287, 1293, 3, 358, 179, 0, 1288, 1293, 3, 196, 98, 0, 1289, 1293, 3, 256, 128, 0, 1290, 1293, 3, 334, 167, 0, 1291, 1293, 3, 476, 238, 0, 1292, 1286, 1, 0, 0, 0, 1292, 1287, 1, 0, 0, 0, 1292, 1288, 1, 0, 0, 0, 1292, 1289, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1292, 1291, 1, 0, 0, 0, 1293, 35, 1, 0, 0, 0, 1294, 1296, 5, 333, 0, 0, 1295, 1297, 7, 7, 0, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 38, 19, 0, 1299, 37, 1, 0, 0, 0, 1300, 1301, 5, 356, 0, 0, 1301, 1309, 3, 474, 237, 0, 1302, 1303, 5, 332, 0, 0, 1303, 1304, 5, 154, 0, 0, 1304, 1305, 5, 36, 0, 0, 1305, 1306, 5, 356, 0, 0, 1306, 1309, 3, 474, 237, 0, 1307, 1309, 3, 42, 21, 0, 1308, 1300, 1, 0, 0, 0, 1308, 1302, 1, 0, 0, 0, 1308, 1307, 1, 0, 0, 0, 1309, 39, 1, 0, 0, 0, 1310, 1313, 5, 30, 0, 0, 1311, 1313, 3, 44, 22, 0, 1312, 1310, 1, 0, 0, 0, 1312, 1311, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1316, 7, 5, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1319, 1, 0, 0, 0, 1317, 1320, 5, 53, 0, 0, 1318, 1320, 3, 46, 23, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 41, 1, 0, 0, 0, 1321, 1322, 5, 418, 0, 0, 1322, 1323, 5, 386, 0, 0, 1323, 1350, 3, 56, 28, 0, 1324, 1325, 5, 152, 0, 0, 1325, 1350, 3, 808, 404, 0, 1326, 1327, 5, 323, 0, 0, 1327, 1350, 3, 790, 395, 0, 1328, 1331, 5, 267, 0, 0, 1329, 1332, 3, 808, 404, 0, 1330, 1332, 5, 53, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1350, 1, 0, 0, 0, 1333, 1334, 5, 318, 0, 0, 1334, 1350, 3, 58, 29, 0, 1335, 1336, 5, 332, 0, 0, 1336, 1337, 5, 106, 0, 0, 1337, 1350, 3, 58, 29, 0, 1338, 1339, 5, 383, 0, 0, 1339, 1340, 5, 279, 0, 0, 1340, 1350, 3, 696, 348, 0, 1341, 1342, 5, 356, 0, 0, 1342, 1343, 5, 337, 0, 0, 1343, 1350, 3, 808, 404, 0, 1344, 1345, 3, 44, 22, 0, 1345, 1346, 5, 64, 0, 0, 1346, 1347, 5, 434, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1350, 3, 40, 20, 0, 1349, 1321, 1, 0, 0, 0, 1349, 1324, 1, 0, 0, 0, 1349, 1326, 1, 0, 0, 0, 1349, 1328, 1, 0, 0, 0, 1349, 1333, 1, 0, 0, 0, 1349, 1335, 1, 0, 0, 0, 1349, 1338, 1, 0, 0, 0, 1349, 1341, 1, 0, 0, 0, 1349, 1344, 1, 0, 0, 0, 1349, 1348, 1, 0, 0, 0, 1350, 43, 1, 0, 0, 0, 1351, 1356, 3, 818, 409, 0, 1352, 1353, 5, 11, 0, 0, 1353, 1355, 3, 818, 409, 0, 1354, 1352, 1, 0, 0, 0, 1355, 1358, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 45, 1, 0, 0, 0, 1358, 1356, 1, 0, 0, 0, 1359, 1364, 3, 48, 24, 0, 1360, 1361, 5, 6, 0, 0, 1361, 1363, 3, 48, 24, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 47, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1370, 3, 54, 27, 0, 1368, 1370, 3, 202, 101, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1368, 1, 0, 0, 0, 1370, 49, 1, 0, 0, 0, 1371, 1372, 5, 300, 0, 0, 1372, 1377, 7, 8, 0, 0, 1373, 1374, 5, 310, 0, 0, 1374, 1377, 5, 300, 0, 0, 1375, 1377, 5, 330, 0, 0, 1376, 1371, 1, 0, 0, 0, 1376, 1373, 1, 0, 0, 0, 1376, 1375, 1, 0, 0, 0, 1377, 51, 1, 0, 0, 0, 1378, 1385, 5, 96, 0, 0, 1379, 1385, 5, 60, 0, 0, 1380, 1385, 5, 80, 0, 0, 1381, 1385, 3, 800, 400, 0, 1382, 1385, 3, 832, 416, 0, 1383, 1385, 3, 808, 404, 0, 1384, 1378, 1, 0, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1380, 1, 0, 0, 0, 1384, 1381, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 53, 1, 0, 0, 0, 1386, 1391, 5, 96, 0, 0, 1387, 1391, 5, 60, 0, 0, 1388, 1391, 5, 80, 0, 0, 1389, 1391, 3, 58, 29, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1387, 1, 0, 0, 0, 1390, 1388, 1, 0, 0, 0, 1390, 1389, 1, 0, 0, 0, 1391, 55, 1, 0, 0, 0, 1392, 1407, 3, 808, 404, 0, 1393, 1407, 5, 53, 0, 0, 1394, 1407, 3, 826, 413, 0, 1395, 1396, 5, 403, 0, 0, 1396, 1398, 3, 808, 404, 0, 1397, 1399, 3, 668, 334, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1407, 1, 0, 0, 0, 1400, 1401, 5, 403, 0, 0, 1401, 1402, 3, 660, 330, 0, 1402, 1403, 3, 808, 404, 0, 1403, 1407, 1, 0, 0, 0, 1404, 1407, 3, 202, 101, 0, 1405, 1407, 5, 254, 0, 0, 1406, 1392, 1, 0, 0, 0, 1406, 1393, 1, 0, 0, 0, 1406, 1394, 1, 0, 0, 0, 1406, 1395, 1, 0, 0, 0, 1406, 1400, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1405, 1, 0, 0, 0, 1407, 57, 1, 0, 0, 0, 1408, 1411, 3, 822, 411, 0, 1409, 1411, 3, 808, 404, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1409, 1, 0, 0, 0, 1411, 59, 1, 0, 0, 0, 1412, 1413, 5, 313, 0, 0, 1413, 1414, 3, 62, 31, 0, 1414, 61, 1, 0, 0, 0, 1415, 1416, 5, 418, 0, 0, 1416, 1425, 5, 386, 0, 0, 1417, 1418, 5, 356, 0, 0, 1418, 1419, 5, 244, 0, 0, 1419, 1425, 5, 251, 0, 0, 1420, 1421, 5, 332, 0, 0, 1421, 1425, 5, 106, 0, 0, 1422, 1425, 5, 30, 0, 0, 1423, 1425, 3, 44, 22, 0, 1424, 1415, 1, 0, 0, 0, 1424, 1417, 1, 0, 0, 0, 1424, 1420, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1424, 1423, 1, 0, 0, 0, 1425, 63, 1, 0, 0, 0, 1426, 1427, 5, 333, 0, 0, 1427, 1430, 3, 38, 19, 0, 1428, 1430, 3, 60, 30, 0, 1429, 1426, 1, 0, 0, 0, 1429, 1428, 1, 0, 0, 0, 1430, 65, 1, 0, 0, 0, 1431, 1432, 5, 333, 0, 0, 1432, 1435, 3, 42, 21, 0, 1433, 1435, 3, 60, 30, 0, 1434, 1431, 1, 0, 0, 0, 1434, 1433, 1, 0, 0, 0, 1435, 67, 1, 0, 0, 0, 1436, 1446, 5, 335, 0, 0, 1437, 1447, 3, 44, 22, 0, 1438, 1439, 5, 418, 0, 0, 1439, 1447, 5, 386, 0, 0, 1440, 1441, 5, 356, 0, 0, 1441, 1442, 5, 244, 0, 0, 1442, 1447, 5, 251, 0, 0, 1443, 1444, 5, 332, 0, 0, 1444, 1447, 5, 106, 0, 0, 1445, 1447, 5, 30, 0, 0, 1446, 1437, 1, 0, 0, 0, 1446, 1438, 1, 0, 0, 0, 1446, 1440, 1, 0, 0, 0, 1446, 1443, 1, 0, 0, 0, 1446, 1445, 1, 0, 0, 0, 1447, 69, 1, 0, 0, 0, 1448, 1449, 5, 333, 0, 0, 1449, 1452, 5, 165, 0, 0, 1450, 1453, 5, 30, 0, 0, 1451, 1453, 3, 760, 380, 0, 1452, 1450, 1, 0, 0, 0, 1452, 1451, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 7, 9, 0, 0, 1455, 71, 1, 0, 0, 0, 1456, 1457, 5, 155, 0, 0, 1457, 73, 1, 0, 0, 0, 1458, 1459, 5, 187, 0, 0, 1459, 1460, 7, 10, 0, 0, 1460, 75, 1, 0, 0, 0, 1461, 1462, 5, 138, 0, 0, 1462, 1464, 5, 92, 0, 0, 1463, 1465, 3, 422, 211, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 3, 624, 312, 0, 1467, 1470, 3, 78, 39, 0, 1468, 1470, 3, 88, 44, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1468, 1, 0, 0, 0, 1470, 1583, 1, 0, 0, 0, 1471, 1472, 5, 138, 0, 0, 1472, 1473, 5, 92, 0, 0, 1473, 1474, 5, 30, 0, 0, 1474, 1475, 5, 68, 0, 0, 1475, 1479, 3, 176, 88, 0, 1476, 1477, 5, 281, 0, 0, 1477, 1478, 5, 147, 0, 0, 1478, 1480, 3, 816, 408, 0, 1479, 1476, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 5, 333, 0, 0, 1482, 1483, 5, 351, 0, 0, 1483, 1485, 3, 768, 384, 0, 1484, 1486, 5, 272, 0, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1583, 1, 0, 0, 0, 1487, 1488, 5, 138, 0, 0, 1488, 1490, 5, 92, 0, 0, 1489, 1491, 3, 422, 211, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 3, 774, 387, 0, 1493, 1498, 3, 90, 45, 0, 1494, 1495, 5, 62, 0, 0, 1495, 1496, 5, 422, 0, 0, 1496, 1499, 3, 80, 40, 0, 1497, 1499, 5, 53, 0, 0, 1498, 1494, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 1583, 1, 0, 0, 0, 1500, 1501, 5, 138, 0, 0, 1501, 1503, 5, 92, 0, 0, 1502, 1504, 3, 422, 211, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 3, 774, 387, 0, 1506, 1507, 5, 436, 0, 0, 1507, 1508, 5, 285, 0, 0, 1508, 1510, 3, 780, 390, 0, 1509, 1511, 7, 11, 0, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1583, 1, 0, 0, 0, 1512, 1513, 5, 138, 0, 0, 1513, 1515, 5, 226, 0, 0, 1514, 1516, 3, 422, 211, 0, 1515, 1514, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1520, 3, 780, 390, 0, 1518, 1521, 3, 78, 39, 0, 1519, 1521, 3, 90, 45, 0, 1520, 1518, 1, 0, 0, 0, 1520, 1519, 1, 0, 0, 0, 1521, 1583, 1, 0, 0, 0, 1522, 1523, 5, 138, 0, 0, 1523, 1524, 5, 226, 0, 0, 1524, 1525, 5, 30, 0, 0, 1525, 1526, 5, 68, 0, 0, 1526, 1530, 3, 176, 88, 0, 1527, 1528, 5, 281, 0, 0, 1528, 1529, 5, 147, 0, 0, 1529, 1531, 3, 816, 408, 0, 1530, 1527, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 5, 333, 0, 0, 1533, 1535, 3, 176, 88, 0, 1534, 1536, 5, 272, 0, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1583, 1, 0, 0, 0, 1537, 1538, 5, 138, 0, 0, 1538, 1540, 5, 328, 0, 0, 1539, 1541, 3, 422, 211, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 3, 780, 390, 0, 1543, 1544, 3, 78, 39, 0, 1544, 1583, 1, 0, 0, 0, 1545, 1547, 5, 138, 0, 0, 1546, 1548, 5, 259, 0, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 5, 376, 0, 0, 1550, 1552, 3, 422, 211, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 3, 778, 389, 0, 1554, 1555, 3, 78, 39, 0, 1555, 1583, 1, 0, 0, 0, 1556, 1557, 5, 138, 0, 0, 1557, 1558, 5, 259, 0, 0, 1558, 1559, 5, 376, 0, 0, 1559, 1560, 5, 30, 0, 0, 1560, 1561, 5, 68, 0, 0, 1561, 1565, 3, 176, 88, 0, 1562, 1563, 5, 281, 0, 0, 1563, 1564, 5, 147, 0, 0, 1564, 1566, 3, 816, 408, 0, 1565, 1562, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 5, 333, 0, 0, 1568, 1569, 5, 351, 0, 0, 1569, 1571, 3, 768, 384, 0, 1570, 1572, 5, 272, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1583, 1, 0, 0, 0, 1573, 1574, 5, 138, 0, 0, 1574, 1575, 5, 63, 0, 0, 1575, 1577, 5, 92, 0, 0, 1576, 1578, 3, 422, 211, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 3, 624, 312, 0, 1580, 1581, 3, 78, 39, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1461, 1, 0, 0, 0, 1582, 1471, 1, 0, 0, 0, 1582, 1487, 1, 0, 0, 0, 1582, 1500, 1, 0, 0, 0, 1582, 1512, 1, 0, 0, 0, 1582, 1522, 1, 0, 0, 0, 1582, 1537, 1, 0, 0, 0, 1582, 1545, 1, 0, 0, 0, 1582, 1556, 1, 0, 0, 0, 1582, 1573, 1, 0, 0, 0, 1583, 77, 1, 0, 0, 0, 1584, 1589, 3, 92, 46, 0, 1585, 1586, 5, 6, 0, 0, 1586, 1588, 3, 92, 46, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 79, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 68, 0, 0, 1593, 1602, 3, 534, 267, 0, 1594, 1595, 5, 64, 0, 0, 1595, 1596, 3, 82, 41, 0, 1596, 1597, 5, 94, 0, 0, 1597, 1598, 3, 82, 41, 0, 1598, 1602, 1, 0, 0, 0, 1599, 1600, 5, 105, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1592, 1, 0, 0, 0, 1601, 1594, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 81, 1, 0, 0, 0, 1603, 1604, 5, 2, 0, 0, 1604, 1609, 3, 84, 42, 0, 1605, 1606, 5, 6, 0, 0, 1606, 1608, 3, 84, 42, 0, 1607, 1605, 1, 0, 0, 0, 1608, 1611, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1609, 1, 0, 0, 0, 1612, 1613, 5, 3, 0, 0, 1613, 83, 1, 0, 0, 0, 1614, 1618, 3, 534, 267, 0, 1615, 1618, 5, 262, 0, 0, 1616, 1618, 5, 260, 0, 0, 1617, 1614, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 85, 1, 0, 0, 0, 1619, 1620, 5, 2, 0, 0, 1620, 1621, 5, 533, 0, 0, 1621, 1622, 3, 202, 101, 0, 1622, 1623, 5, 6, 0, 0, 1623, 1624, 5, 534, 0, 0, 1624, 1625, 3, 202, 101, 0, 1625, 1626, 5, 3, 0, 0, 1626, 87, 1, 0, 0, 0, 1627, 1628, 3, 90, 45, 0, 1628, 1629, 3, 106, 53, 0, 1629, 1634, 1, 0, 0, 0, 1630, 1631, 5, 436, 0, 0, 1631, 1632, 5, 285, 0, 0, 1632, 1634, 3, 780, 390, 0, 1633, 1627, 1, 0, 0, 0, 1633, 1630, 1, 0, 0, 0, 1634, 89, 1, 0, 0, 0, 1635, 1636, 5, 435, 0, 0, 1636, 1637, 5, 285, 0, 0, 1637, 1638, 3, 780, 390, 0, 1638, 91, 1, 0, 0, 0, 1639, 1642, 5, 133, 0, 0, 1640, 1641, 5, 45, 0, 0, 1641, 1643, 3, 818, 409, 0, 1642, 1640, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1873, 3, 142, 71, 0, 1645, 1646, 5, 138, 0, 0, 1646, 1647, 5, 45, 0, 0, 1647, 1651, 3, 818, 409, 0, 1648, 1650, 3, 272, 136, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1873, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1654, 1655, 5, 372, 0, 0, 1655, 1656, 5, 45, 0, 0, 1656, 1873, 3, 818, 409, 0, 1657, 1658, 5, 191, 0, 0, 1658, 1660, 5, 45, 0, 0, 1659, 1661, 3, 422, 211, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 3, 818, 409, 0, 1663, 1665, 3, 96, 48, 0, 1664, 1663, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1873, 1, 0, 0, 0, 1666, 1667, 5, 333, 0, 0, 1667, 1668, 5, 379, 0, 0, 1668, 1873, 7, 12, 0, 0, 1669, 1670, 5, 158, 0, 0, 1670, 1671, 5, 80, 0, 0, 1671, 1873, 3, 818, 409, 0, 1672, 1673, 5, 333, 0, 0, 1673, 1873, 7, 13, 0, 0, 1674, 1676, 5, 193, 0, 0, 1675, 1677, 7, 14, 0, 0, 1676, 1675, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1873, 5, 357, 0, 0, 1679, 1680, 5, 186, 0, 0, 1680, 1684, 5, 357, 0, 0, 1681, 1685, 5, 30, 0, 0, 1682, 1685, 5, 99, 0, 0, 1683, 1685, 3, 818, 409, 0, 1684, 1681, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1683, 1, 0, 0, 0, 1685, 1873, 1, 0, 0, 0, 1686, 1687, 5, 193, 0, 0, 1687, 1688, 7, 14, 0, 0, 1688, 1689, 5, 321, 0, 0, 1689, 1873, 3, 818, 409, 0, 1690, 1691, 5, 186, 0, 0, 1691, 1692, 5, 321, 0, 0, 1692, 1873, 3, 818, 409, 0, 1693, 1695, 5, 269, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1873, 3, 780, 390, 0, 1698, 1699, 5, 275, 0, 0, 1699, 1873, 3, 316, 158, 0, 1700, 1701, 5, 77, 0, 0, 1701, 1873, 5, 275, 0, 0, 1702, 1703, 5, 282, 0, 0, 1703, 1704, 5, 94, 0, 0, 1704, 1873, 3, 814, 407, 0, 1705, 1706, 5, 333, 0, 0, 1706, 1707, 5, 351, 0, 0, 1707, 1873, 3, 768, 384, 0, 1708, 1709, 5, 312, 0, 0, 1709, 1714, 5, 219, 0, 0, 1710, 1715, 5, 270, 0, 0, 1711, 1715, 5, 113, 0, 0, 1712, 1715, 5, 53, 0, 0, 1713, 1715, 3, 180, 90, 0, 1714, 1710, 1, 0, 0, 0, 1714, 1711, 1, 0, 0, 0, 1714, 1712, 1, 0, 0, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1873, 1, 0, 0, 0, 1716, 1723, 5, 193, 0, 0, 1717, 1723, 5, 186, 0, 0, 1718, 1720, 5, 269, 0, 0, 1719, 1718, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1723, 5, 209, 0, 0, 1722, 1716, 1, 0, 0, 0, 1722, 1717, 1, 0, 0, 0, 1722, 1719, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 5, 414, 0, 0, 1725, 1726, 5, 251, 0, 0, 1726, 1873, 5, 327, 0, 0, 1727, 1729, 5, 191, 0, 0, 1728, 1730, 5, 44, 0, 0, 1729, 1728, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1732, 1, 0, 0, 0, 1731, 1733, 3, 422, 211, 0, 1732, 1731, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1736, 3, 800, 400, 0, 1735, 1737, 3, 96, 48, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1873, 1, 0, 0, 0, 1738, 1740, 5, 133, 0, 0, 1739, 1741, 5, 44, 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1744, 3, 294, 147, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1873, 3, 132, 66, 0, 1746, 1748, 5, 138, 0, 0, 1747, 1749, 5, 44, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1753, 3, 800, 400, 0, 1751, 1754, 3, 94, 47, 0, 1752, 1754, 3, 222, 111, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1752, 1, 0, 0, 0, 1754, 1873, 1, 0, 0, 0, 1755, 1757, 5, 138, 0, 0, 1756, 1758, 5, 44, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 3, 800, 400, 0, 1760, 1761, 7, 15, 0, 0, 1761, 1762, 5, 77, 0, 0, 1762, 1763, 5, 78, 0, 0, 1763, 1873, 1, 0, 0, 0, 1764, 1766, 5, 138, 0, 0, 1765, 1767, 5, 44, 0, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 3, 800, 400, 0, 1769, 1770, 5, 191, 0, 0, 1770, 1772, 5, 437, 0, 0, 1771, 1773, 3, 422, 211, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1873, 1, 0, 0, 0, 1774, 1776, 5, 138, 0, 0, 1775, 1777, 5, 44, 0, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 3, 800, 400, 0, 1779, 1780, 5, 333, 0, 0, 1780, 1781, 5, 342, 0, 0, 1781, 1782, 3, 812, 406, 0, 1782, 1873, 1, 0, 0, 0, 1783, 1785, 5, 138, 0, 0, 1784, 1786, 5, 44, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 3, 800, 400, 0, 1788, 1783, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 7, 16, 0, 0, 1791, 1873, 3, 100, 50, 0, 1792, 1794, 5, 138, 0, 0, 1793, 1795, 5, 44, 0, 0, 1794, 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 3, 800, 400, 0, 1797, 1798, 5, 333, 0, 0, 1798, 1799, 5, 345, 0, 0, 1799, 1800, 3, 818, 409, 0, 1800, 1873, 1, 0, 0, 0, 1801, 1803, 5, 138, 0, 0, 1802, 1804, 5, 44, 0, 0, 1803, 1802, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 3, 800, 400, 0, 1806, 1807, 5, 133, 0, 0, 1807, 1808, 5, 438, 0, 0, 1808, 1809, 3, 138, 69, 0, 1809, 1810, 5, 36, 0, 0, 1810, 1819, 5, 219, 0, 0, 1811, 1813, 5, 2, 0, 0, 1812, 1814, 3, 200, 100, 0, 1813, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 5, 3, 0, 0, 1818, 1820, 1, 0, 0, 0, 1819, 1811, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1873, 1, 0, 0, 0, 1821, 1823, 5, 138, 0, 0, 1822, 1824, 5, 44, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1839, 3, 800, 400, 0, 1826, 1831, 5, 314, 0, 0, 1827, 1829, 5, 105, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1832, 3, 202, 101, 0, 1831, 1828, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1840, 1, 0, 0, 0, 1833, 1837, 5, 333, 0, 0, 1834, 1838, 3, 200, 100, 0, 1835, 1836, 5, 438, 0, 0, 1836, 1838, 3, 138, 69, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1826, 1, 0, 0, 0, 1839, 1833, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1873, 1, 0, 0, 0, 1843, 1845, 5, 138, 0, 0, 1844, 1846, 5, 44, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 3, 800, 400, 0, 1848, 1849, 5, 191, 0, 0, 1849, 1851, 5, 219, 0, 0, 1850, 1852, 3, 422, 211, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1873, 1, 0, 0, 0, 1853, 1855, 5, 138, 0, 0, 1854, 1856, 5, 44, 0, 0, 1855, 1854, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1860, 3, 800, 400, 0, 1858, 1859, 5, 333, 0, 0, 1859, 1861, 5, 174, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 5, 360, 0, 0, 1863, 1865, 3, 652, 326, 0, 1864, 1866, 3, 98, 49, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1869, 1, 0, 0, 0, 1867, 1868, 5, 100, 0, 0, 1868, 1870, 3, 674, 337, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1873, 1, 0, 0, 0, 1871, 1873, 3, 222, 111, 0, 1872, 1639, 1, 0, 0, 0, 1872, 1645, 1, 0, 0, 0, 1872, 1654, 1, 0, 0, 0, 1872, 1657, 1, 0, 0, 0, 1872, 1666, 1, 0, 0, 0, 1872, 1669, 1, 0, 0, 0, 1872, 1672, 1, 0, 0, 0, 1872, 1674, 1, 0, 0, 0, 1872, 1679, 1, 0, 0, 0, 1872, 1686, 1, 0, 0, 0, 1872, 1690, 1, 0, 0, 0, 1872, 1694, 1, 0, 0, 0, 1872, 1698, 1, 0, 0, 0, 1872, 1700, 1, 0, 0, 0, 1872, 1702, 1, 0, 0, 0, 1872, 1705, 1, 0, 0, 0, 1872, 1708, 1, 0, 0, 0, 1872, 1722, 1, 0, 0, 0, 1872, 1727, 1, 0, 0, 0, 1872, 1738, 1, 0, 0, 0, 1872, 1746, 1, 0, 0, 0, 1872, 1755, 1, 0, 0, 0, 1872, 1764, 1, 0, 0, 0, 1872, 1774, 1, 0, 0, 0, 1872, 1788, 1, 0, 0, 0, 1872, 1792, 1, 0, 0, 0, 1872, 1801, 1, 0, 0, 0, 1872, 1821, 1, 0, 0, 0, 1872, 1843, 1, 0, 0, 0, 1872, 1853, 1, 0, 0, 0, 1872, 1871, 1, 0, 0, 0, 1873, 93, 1, 0, 0, 0, 1874, 1875, 5, 333, 0, 0, 1875, 1876, 5, 53, 0, 0, 1876, 1880, 3, 674, 337, 0, 1877, 1878, 5, 191, 0, 0, 1878, 1880, 5, 53, 0, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 95, 1, 0, 0, 0, 1881, 1882, 7, 17, 0, 0, 1882, 97, 1, 0, 0, 0, 1883, 1884, 5, 43, 0, 0, 1884, 1885, 3, 316, 158, 0, 1885, 99, 1, 0, 0, 0, 1886, 1887, 5, 2, 0, 0, 1887, 1892, 3, 104, 52, 0, 1888, 1889, 5, 6, 0, 0, 1889, 1891, 3, 104, 52, 0, 1890, 1888, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1896, 5, 3, 0, 0, 1896, 101, 1, 0, 0, 0, 1897, 1898, 5, 105, 0, 0, 1898, 1899, 3, 100, 50, 0, 1899, 103, 1, 0, 0, 0, 1900, 1905, 3, 824, 412, 0, 1901, 1902, 5, 10, 0, 0, 1902, 1906, 3, 288, 144, 0, 1903, 1904, 5, 11, 0, 0, 1904, 1906, 3, 286, 143, 0, 1905, 1901, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 105, 1, 0, 0, 0, 1907, 1908, 5, 62, 0, 0, 1908, 1909, 5, 422, 0, 0, 1909, 1910, 5, 105, 0, 0, 1910, 1911, 5, 2, 0, 0, 1911, 1912, 3, 822, 411, 0, 1912, 1919, 5, 571, 0, 0, 1913, 1914, 5, 6, 0, 0, 1914, 1915, 3, 822, 411, 0, 1915, 1916, 5, 571, 0, 0, 1916, 1918, 1, 0, 0, 0, 1917, 1913, 1, 0, 0, 0, 1918, 1921, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1919, 1, 0, 0, 0, 1922, 1923, 5, 3, 0, 0, 1923, 1937, 1, 0, 0, 0, 1924, 1925, 5, 62, 0, 0, 1925, 1926, 5, 422, 0, 0, 1926, 1927, 5, 68, 0, 0, 1927, 1937, 3, 534, 267, 0, 1928, 1929, 5, 62, 0, 0, 1929, 1930, 5, 422, 0, 0, 1930, 1931, 5, 64, 0, 0, 1931, 1932, 3, 534, 267, 0, 1932, 1933, 5, 94, 0, 0, 1933, 1934, 3, 534, 267, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1937, 5, 53, 0, 0, 1936, 1907, 1, 0, 0, 0, 1936, 1924, 1, 0, 0, 0, 1936, 1928, 1, 0, 0, 0, 1936, 1935, 1, 0, 0, 0, 1937, 107, 1, 0, 0, 0, 1938, 1939, 5, 138, 0, 0, 1939, 1940, 5, 360, 0, 0, 1940, 1941, 3, 316, 158, 0, 1941, 1946, 3, 110, 55, 0, 1942, 1943, 5, 6, 0, 0, 1943, 1945, 3, 110, 55, 0, 1944, 1942, 1, 0, 0, 0, 1945, 1948, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 109, 1, 0, 0, 0, 1948, 1946, 1, 0, 0, 0, 1949, 1950, 5, 133, 0, 0, 1950, 1951, 5, 143, 0, 0, 1951, 1953, 3, 644, 322, 0, 1952, 1954, 3, 96, 48, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1980, 1, 0, 0, 0, 1955, 1956, 5, 191, 0, 0, 1956, 1958, 5, 143, 0, 0, 1957, 1959, 3, 422, 211, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1962, 3, 818, 409, 0, 1961, 1963, 3, 96, 48, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1980, 1, 0, 0, 0, 1964, 1965, 5, 138, 0, 0, 1965, 1966, 5, 143, 0, 0, 1966, 1969, 3, 818, 409, 0, 1967, 1968, 5, 333, 0, 0, 1968, 1970, 5, 174, 0, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 5, 360, 0, 0, 1972, 1974, 3, 652, 326, 0, 1973, 1975, 3, 98, 49, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 96, 48, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1949, 1, 0, 0, 0, 1979, 1955, 1, 0, 0, 0, 1979, 1964, 1, 0, 0, 0, 1980, 111, 1, 0, 0, 0, 1981, 1984, 5, 157, 0, 0, 1982, 1985, 3, 818, 409, 0, 1983, 1985, 5, 30, 0, 0, 1984, 1982, 1, 0, 0, 0, 1984, 1983, 1, 0, 0, 0, 1985, 113, 1, 0, 0, 0, 1986, 1988, 5, 169, 0, 0, 1987, 1989, 5, 107, 0, 0, 1988, 1987, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1992, 3, 774, 387, 0, 1991, 1993, 3, 144, 72, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1996, 7, 18, 0, 0, 1995, 1997, 5, 297, 0, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2001, 1, 0, 0, 0, 1998, 2002, 3, 808, 404, 0, 1999, 2002, 5, 343, 0, 0, 2000, 2002, 5, 344, 0, 0, 2001, 1998, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2001, 2000, 1, 0, 0, 0, 2002, 2008, 1, 0, 0, 0, 2003, 2005, 5, 100, 0, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 5, 184, 0, 0, 2007, 2009, 3, 808, 404, 0, 2008, 2004, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2011, 1, 0, 0, 0, 2010, 2012, 5, 105, 0, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 3, 116, 58, 0, 2014, 2016, 3, 638, 319, 0, 2015, 2014, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2036, 1, 0, 0, 0, 2017, 2018, 5, 169, 0, 0, 2018, 2019, 5, 2, 0, 0, 2019, 2020, 3, 530, 265, 0, 2020, 2021, 5, 3, 0, 0, 2021, 2023, 5, 94, 0, 0, 2022, 2024, 5, 297, 0, 0, 2023, 2022, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2028, 1, 0, 0, 0, 2025, 2029, 3, 808, 404, 0, 2026, 2029, 5, 343, 0, 0, 2027, 2029, 5, 344, 0, 0, 2028, 2025, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2027, 1, 0, 0, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2032, 5, 105, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 3, 116, 58, 0, 2034, 2036, 1, 0, 0, 0, 2035, 1986, 1, 0, 0, 0, 2035, 2017, 1, 0, 0, 0, 2036, 115, 1, 0, 0, 0, 2037, 2061, 5, 107, 0, 0, 2038, 2061, 5, 112, 0, 0, 2039, 2041, 7, 19, 0, 0, 2040, 2042, 5, 36, 0, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2061, 3, 808, 404, 0, 2044, 2061, 5, 171, 0, 0, 2045, 2061, 5, 216, 0, 0, 2046, 2047, 5, 209, 0, 0, 2047, 2050, 5, 298, 0, 0, 2048, 2051, 3, 148, 74, 0, 2049, 2051, 5, 9, 0, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2049, 1, 0, 0, 0, 2051, 2061, 1, 0, 0, 0, 2052, 2054, 5, 209, 0, 0, 2053, 2055, 5, 77, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 78, 0, 0, 2057, 2061, 3, 148, 74, 0, 2058, 2059, 5, 194, 0, 0, 2059, 2061, 3, 808, 404, 0, 2060, 2037, 1, 0, 0, 0, 2060, 2038, 1, 0, 0, 0, 2060, 2039, 1, 0, 0, 0, 2060, 2044, 1, 0, 0, 0, 2060, 2045, 1, 0, 0, 0, 2060, 2046, 1, 0, 0, 0, 2060, 2052, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2077, 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2066, 5, 2, 0, 0, 2066, 2071, 3, 118, 59, 0, 2067, 2068, 5, 6, 0, 0, 2068, 2070, 3, 118, 59, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2073, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2074, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2075, 5, 3, 0, 0, 2075, 2077, 1, 0, 0, 0, 2076, 2062, 1, 0, 0, 0, 2076, 2065, 1, 0, 0, 0, 2077, 117, 1, 0, 0, 0, 2078, 2093, 3, 824, 412, 0, 2079, 2094, 3, 54, 27, 0, 2080, 2094, 3, 202, 101, 0, 2081, 2094, 5, 9, 0, 0, 2082, 2083, 5, 2, 0, 0, 2083, 2088, 3, 52, 26, 0, 2084, 2085, 5, 6, 0, 0, 2085, 2087, 3, 52, 26, 0, 2086, 2084, 1, 0, 0, 0, 2087, 2090, 1, 0, 0, 0, 2088, 2086, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2091, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2091, 2092, 5, 3, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2079, 1, 0, 0, 0, 2093, 2080, 1, 0, 0, 0, 2093, 2081, 1, 0, 0, 0, 2093, 2082, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 119, 1, 0, 0, 0, 2095, 2097, 5, 46, 0, 0, 2096, 2098, 3, 122, 61, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 5, 92, 0, 0, 2100, 2102, 3, 294, 147, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 2169, 3, 772, 386, 0, 2104, 2106, 5, 2, 0, 0, 2105, 2107, 3, 126, 63, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2110, 5, 3, 0, 0, 2109, 2111, 3, 164, 82, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 166, 83, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2117, 3, 170, 85, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 172, 86, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2123, 3, 174, 87, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2126, 3, 176, 88, 0, 2125, 2124, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2170, 1, 0, 0, 0, 2127, 2128, 5, 275, 0, 0, 2128, 2130, 3, 316, 158, 0, 2129, 2131, 3, 124, 62, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2134, 3, 166, 83, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2136, 1, 0, 0, 0, 2135, 2137, 3, 170, 85, 0, 2136, 2135, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2139, 1, 0, 0, 0, 2138, 2140, 3, 172, 86, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2143, 3, 174, 87, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 176, 88, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2170, 1, 0, 0, 0, 2147, 2148, 5, 285, 0, 0, 2148, 2149, 5, 275, 0, 0, 2149, 2151, 3, 780, 390, 0, 2150, 2152, 3, 124, 62, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 3, 106, 53, 0, 2154, 2156, 3, 166, 83, 0, 2155, 2154, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2159, 3, 170, 85, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2161, 1, 0, 0, 0, 2160, 2162, 3, 172, 86, 0, 2161, 2160, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2165, 3, 174, 87, 0, 2164, 2163, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 1, 0, 0, 0, 2166, 2168, 3, 176, 88, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2104, 1, 0, 0, 0, 2169, 2127, 1, 0, 0, 0, 2169, 2147, 1, 0, 0, 0, 2170, 121, 1, 0, 0, 0, 2171, 2177, 5, 354, 0, 0, 2172, 2177, 5, 352, 0, 0, 2173, 2174, 7, 20, 0, 0, 2174, 2177, 7, 21, 0, 0, 2175, 2177, 5, 367, 0, 0, 2176, 2171, 1, 0, 0, 0, 2176, 2172, 1, 0, 0, 0, 2176, 2173, 1, 0, 0, 0, 2176, 2175, 1, 0, 0, 0, 2177, 123, 1, 0, 0, 0, 2178, 2179, 5, 2, 0, 0, 2179, 2184, 3, 130, 65, 0, 2180, 2181, 5, 6, 0, 0, 2181, 2183, 3, 130, 65, 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, 2188, 5, 3, 0, 0, 2188, 125, 1, 0, 0, 0, 2189, 2194, 3, 128, 64, 0, 2190, 2191, 5, 6, 0, 0, 2191, 2193, 3, 128, 64, 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, 127, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2198, 5, 45, 0, 0, 2198, 2200, 3, 818, 409, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2213, 3, 142, 71, 0, 2202, 2213, 3, 132, 66, 0, 2203, 2204, 5, 120, 0, 0, 2204, 2209, 3, 780, 390, 0, 2205, 2206, 7, 22, 0, 0, 2206, 2208, 3, 140, 70, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2211, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2212, 2199, 1, 0, 0, 0, 2212, 2202, 1, 0, 0, 0, 2212, 2203, 1, 0, 0, 0, 2213, 129, 1, 0, 0, 0, 2214, 2217, 3, 802, 401, 0, 2215, 2216, 5, 105, 0, 0, 2216, 2218, 5, 280, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2222, 1, 0, 0, 0, 2219, 2221, 3, 134, 67, 0, 2220, 2219, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2231, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 5, 45, 0, 0, 2226, 2228, 3, 818, 409, 0, 2227, 2225, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2231, 3, 142, 71, 0, 2230, 2214, 1, 0, 0, 0, 2230, 2227, 1, 0, 0, 0, 2231, 131, 1, 0, 0, 0, 2232, 2233, 3, 802, 401, 0, 2233, 2235, 3, 652, 326, 0, 2234, 2236, 3, 220, 110, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2246, 1, 0, 0, 0, 2237, 2244, 5, 345, 0, 0, 2238, 2245, 5, 544, 0, 0, 2239, 2245, 5, 205, 0, 0, 2240, 2245, 5, 545, 0, 0, 2241, 2245, 5, 546, 0, 0, 2242, 2245, 5, 53, 0, 0, 2243, 2245, 3, 818, 409, 0, 2244, 2238, 1, 0, 0, 0, 2244, 2239, 1, 0, 0, 0, 2244, 2240, 1, 0, 0, 0, 2244, 2241, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2243, 1, 0, 0, 0, 2245, 2247, 1, 0, 0, 0, 2246, 2237, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2250, 1, 0, 0, 0, 2248, 2249, 5, 543, 0, 0, 2249, 2251, 3, 818, 409, 0, 2250, 2248, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2253, 1, 0, 0, 0, 2252, 2254, 3, 98, 49, 0, 2253, 2252, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2256, 5, 105, 0, 0, 2256, 2258, 5, 280, 0, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2262, 1, 0, 0, 0, 2259, 2261, 3, 134, 67, 0, 2260, 2259, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 133, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2266, 5, 45, 0, 0, 2266, 2268, 3, 818, 409, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2274, 3, 136, 68, 0, 2270, 2272, 5, 77, 0, 0, 2271, 2270, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2275, 5, 54, 0, 0, 2274, 2271, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2278, 1, 0, 0, 0, 2276, 2277, 5, 69, 0, 0, 2277, 2279, 7, 9, 0, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 135, 1, 0, 0, 0, 2280, 2282, 5, 77, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2361, 5, 78, 0, 0, 2284, 2286, 5, 98, 0, 0, 2285, 2287, 3, 400, 200, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2289, 1, 0, 0, 0, 2288, 2290, 3, 178, 89, 0, 2289, 2288, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2361, 1, 0, 0, 0, 2291, 2297, 5, 98, 0, 0, 2292, 2294, 5, 273, 0, 0, 2293, 2295, 5, 77, 0, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2298, 5, 56, 0, 0, 2297, 2292, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2301, 1, 0, 0, 0, 2299, 2300, 5, 441, 0, 0, 2300, 2302, 3, 360, 180, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2305, 3, 572, 286, 0, 2304, 2303, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2307, 1, 0, 0, 0, 2306, 2308, 3, 178, 89, 0, 2307, 2306, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2361, 1, 0, 0, 0, 2309, 2310, 5, 85, 0, 0, 2310, 2312, 5, 245, 0, 0, 2311, 2313, 3, 400, 200, 0, 2312, 2311, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2316, 3, 178, 89, 0, 2315, 2314, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2361, 1, 0, 0, 0, 2317, 2318, 5, 42, 0, 0, 2318, 2319, 5, 2, 0, 0, 2319, 2320, 3, 674, 337, 0, 2320, 2323, 5, 3, 0, 0, 2321, 2322, 5, 269, 0, 0, 2322, 2324, 5, 228, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2361, 1, 0, 0, 0, 2325, 2326, 5, 53, 0, 0, 2326, 2361, 3, 682, 341, 0, 2327, 2328, 5, 438, 0, 0, 2328, 2329, 3, 138, 69, 0, 2329, 2346, 5, 36, 0, 0, 2330, 2339, 5, 219, 0, 0, 2331, 2333, 5, 2, 0, 0, 2332, 2334, 3, 200, 100, 0, 2333, 2332, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 5, 3, 0, 0, 2338, 2340, 1, 0, 0, 0, 2339, 2331, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2347, 1, 0, 0, 0, 2341, 2342, 5, 2, 0, 0, 2342, 2343, 3, 674, 337, 0, 2343, 2344, 5, 3, 0, 0, 2344, 2345, 5, 440, 0, 0, 2345, 2347, 1, 0, 0, 0, 2346, 2330, 1, 0, 0, 0, 2346, 2341, 1, 0, 0, 0, 2347, 2361, 1, 0, 0, 0, 2348, 2349, 5, 86, 0, 0, 2349, 2351, 3, 780, 390, 0, 2350, 2352, 3, 144, 72, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2354, 1, 0, 0, 0, 2353, 2355, 3, 152, 76, 0, 2354, 2353, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2357, 1, 0, 0, 0, 2356, 2358, 3, 156, 78, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2361, 1, 0, 0, 0, 2359, 2361, 3, 98, 49, 0, 2360, 2281, 1, 0, 0, 0, 2360, 2284, 1, 0, 0, 0, 2360, 2291, 1, 0, 0, 0, 2360, 2309, 1, 0, 0, 0, 2360, 2317, 1, 0, 0, 0, 2360, 2325, 1, 0, 0, 0, 2360, 2327, 1, 0, 0, 0, 2360, 2348, 1, 0, 0, 0, 2360, 2359, 1, 0, 0, 0, 2361, 137, 1, 0, 0, 0, 2362, 2366, 5, 139, 0, 0, 2363, 2364, 5, 147, 0, 0, 2364, 2366, 5, 53, 0, 0, 2365, 2362, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 139, 1, 0, 0, 0, 2367, 2368, 7, 23, 0, 0, 2368, 141, 1, 0, 0, 0, 2369, 2370, 5, 42, 0, 0, 2370, 2371, 5, 2, 0, 0, 2371, 2372, 3, 674, 337, 0, 2372, 2376, 5, 3, 0, 0, 2373, 2375, 3, 272, 136, 0, 2374, 2373, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2466, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2383, 5, 98, 0, 0, 2380, 2381, 5, 85, 0, 0, 2381, 2383, 5, 245, 0, 0, 2382, 2379, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2407, 1, 0, 0, 0, 2384, 2386, 3, 144, 72, 0, 2385, 2387, 3, 150, 75, 0, 2386, 2385, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2390, 3, 400, 200, 0, 2389, 2388, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 1, 0, 0, 0, 2391, 2393, 3, 178, 89, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2397, 1, 0, 0, 0, 2394, 2396, 3, 272, 136, 0, 2395, 2394, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2408, 1, 0, 0, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2404, 3, 180, 90, 0, 2401, 2403, 3, 272, 136, 0, 2402, 2401, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2384, 1, 0, 0, 0, 2407, 2400, 1, 0, 0, 0, 2408, 2466, 1, 0, 0, 0, 2409, 2411, 5, 199, 0, 0, 2410, 2412, 3, 170, 85, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2414, 5, 2, 0, 0, 2414, 2419, 3, 154, 77, 0, 2415, 2416, 5, 6, 0, 0, 2416, 2418, 3, 154, 77, 0, 2417, 2415, 1, 0, 0, 0, 2418, 2421, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2422, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2422, 2424, 5, 3, 0, 0, 2423, 2425, 3, 150, 75, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2427, 1, 0, 0, 0, 2426, 2428, 3, 400, 200, 0, 2427, 2426, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2430, 1, 0, 0, 0, 2429, 2431, 3, 178, 89, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2437, 1, 0, 0, 0, 2432, 2433, 5, 103, 0, 0, 2433, 2434, 5, 2, 0, 0, 2434, 2435, 3, 674, 337, 0, 2435, 2436, 5, 3, 0, 0, 2436, 2438, 1, 0, 0, 0, 2437, 2432, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2442, 1, 0, 0, 0, 2439, 2441, 3, 272, 136, 0, 2440, 2439, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2466, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2446, 5, 63, 0, 0, 2446, 2447, 5, 245, 0, 0, 2447, 2448, 3, 144, 72, 0, 2448, 2449, 5, 86, 0, 0, 2449, 2451, 3, 780, 390, 0, 2450, 2452, 3, 144, 72, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2454, 1, 0, 0, 0, 2453, 2455, 3, 152, 76, 0, 2454, 2453, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 1, 0, 0, 0, 2456, 2458, 3, 156, 78, 0, 2457, 2456, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2462, 1, 0, 0, 0, 2459, 2461, 3, 272, 136, 0, 2460, 2459, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2369, 1, 0, 0, 0, 2465, 2382, 1, 0, 0, 0, 2465, 2409, 1, 0, 0, 0, 2465, 2445, 1, 0, 0, 0, 2466, 143, 1, 0, 0, 0, 2467, 2468, 5, 2, 0, 0, 2468, 2469, 3, 148, 74, 0, 2469, 2470, 5, 3, 0, 0, 2470, 145, 1, 0, 0, 0, 2471, 2472, 5, 2, 0, 0, 2472, 2477, 3, 802, 401, 0, 2473, 2474, 5, 6, 0, 0, 2474, 2476, 3, 802, 401, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2479, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2481, 5, 3, 0, 0, 2481, 147, 1, 0, 0, 0, 2482, 2487, 3, 800, 400, 0, 2483, 2484, 5, 6, 0, 0, 2484, 2486, 3, 800, 400, 0, 2485, 2483, 1, 0, 0, 0, 2486, 2489, 1, 0, 0, 0, 2487, 2485, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 149, 1, 0, 0, 0, 2489, 2487, 1, 0, 0, 0, 2490, 2491, 5, 441, 0, 0, 2491, 2492, 3, 144, 72, 0, 2492, 151, 1, 0, 0, 0, 2493, 2494, 5, 258, 0, 0, 2494, 2495, 7, 24, 0, 0, 2495, 153, 1, 0, 0, 0, 2496, 2497, 3, 362, 181, 0, 2497, 2504, 5, 105, 0, 0, 2498, 2505, 3, 414, 207, 0, 2499, 2500, 5, 278, 0, 0, 2500, 2501, 5, 2, 0, 0, 2501, 2502, 3, 414, 207, 0, 2502, 2503, 5, 3, 0, 0, 2503, 2505, 1, 0, 0, 0, 2504, 2498, 1, 0, 0, 0, 2504, 2499, 1, 0, 0, 0, 2505, 155, 1, 0, 0, 0, 2506, 2508, 3, 158, 79, 0, 2507, 2509, 3, 160, 80, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2515, 1, 0, 0, 0, 2510, 2512, 3, 160, 80, 0, 2511, 2513, 3, 158, 79, 0, 2512, 2511, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 1, 0, 0, 0, 2514, 2506, 1, 0, 0, 0, 2514, 2510, 1, 0, 0, 0, 2515, 157, 1, 0, 0, 0, 2516, 2517, 5, 80, 0, 0, 2517, 2518, 5, 369, 0, 0, 2518, 2519, 3, 162, 81, 0, 2519, 159, 1, 0, 0, 0, 2520, 2521, 5, 80, 0, 0, 2521, 2522, 5, 182, 0, 0, 2522, 2523, 3, 162, 81, 0, 2523, 161, 1, 0, 0, 0, 2524, 2525, 5, 269, 0, 0, 2525, 2534, 5, 132, 0, 0, 2526, 2534, 5, 315, 0, 0, 2527, 2534, 5, 150, 0, 0, 2528, 2529, 5, 333, 0, 0, 2529, 2531, 7, 25, 0, 0, 2530, 2532, 3, 148, 74, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2524, 1, 0, 0, 0, 2533, 2526, 1, 0, 0, 0, 2533, 2527, 1, 0, 0, 0, 2533, 2528, 1, 0, 0, 0, 2534, 163, 1, 0, 0, 0, 2535, 2536, 5, 238, 0, 0, 2536, 2537, 5, 2, 0, 0, 2537, 2538, 3, 760, 380, 0, 2538, 2539, 5, 3, 0, 0, 2539, 165, 1, 0, 0, 0, 2540, 2541, 5, 285, 0, 0, 2541, 2542, 5, 147, 0, 0, 2542, 2543, 3, 818, 409, 0, 2543, 2544, 5, 2, 0, 0, 2544, 2549, 3, 168, 84, 0, 2545, 2546, 5, 6, 0, 0, 2546, 2548, 3, 168, 84, 0, 2547, 2545, 1, 0, 0, 0, 2548, 2551, 1, 0, 0, 0, 2549, 2547, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2549, 1, 0, 0, 0, 2552, 2553, 5, 3, 0, 0, 2553, 167, 1, 0, 0, 0, 2554, 2561, 3, 800, 400, 0, 2555, 2561, 3, 688, 344, 0, 2556, 2557, 5, 2, 0, 0, 2557, 2558, 3, 674, 337, 0, 2558, 2559, 5, 3, 0, 0, 2559, 2561, 1, 0, 0, 0, 2560, 2554, 1, 0, 0, 0, 2560, 2555, 1, 0, 0, 0, 2560, 2556, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 98, 49, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2566, 1, 0, 0, 0, 2565, 2567, 3, 316, 158, 0, 2566, 2565, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 169, 1, 0, 0, 0, 2568, 2569, 5, 100, 0, 0, 2569, 2570, 3, 818, 409, 0, 2570, 171, 1, 0, 0, 0, 2571, 2572, 5, 105, 0, 0, 2572, 2576, 3, 100, 50, 0, 2573, 2574, 7, 26, 0, 0, 2574, 2576, 5, 277, 0, 0, 2575, 2571, 1, 0, 0, 0, 2575, 2573, 1, 0, 0, 0, 2576, 173, 1, 0, 0, 0, 2577, 2578, 5, 80, 0, 0, 2578, 2584, 5, 161, 0, 0, 2579, 2585, 5, 191, 0, 0, 2580, 2581, 5, 182, 0, 0, 2581, 2585, 5, 320, 0, 0, 2582, 2583, 5, 292, 0, 0, 2583, 2585, 5, 320, 0, 0, 2584, 2579, 1, 0, 0, 0, 2584, 2580, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2585, 175, 1, 0, 0, 0, 2586, 2587, 5, 351, 0, 0, 2587, 2588, 3, 770, 385, 0, 2588, 177, 1, 0, 0, 0, 2589, 2590, 5, 100, 0, 0, 2590, 2591, 5, 226, 0, 0, 2591, 2592, 3, 176, 88, 0, 2592, 179, 1, 0, 0, 0, 2593, 2594, 5, 100, 0, 0, 2594, 2595, 5, 226, 0, 0, 2595, 2596, 3, 818, 409, 0, 2596, 181, 1, 0, 0, 0, 2597, 2598, 5, 46, 0, 0, 2598, 2603, 5, 342, 0, 0, 2599, 2601, 3, 294, 147, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2604, 3, 316, 158, 0, 2603, 2600, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2606, 1, 0, 0, 0, 2605, 2607, 3, 144, 72, 0, 2606, 2605, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2618, 5, 80, 0, 0, 2609, 2614, 3, 732, 366, 0, 2610, 2611, 5, 6, 0, 0, 2611, 2613, 3, 732, 366, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2616, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2619, 1, 0, 0, 0, 2616, 2614, 1, 0, 0, 0, 2617, 2619, 3, 730, 365, 0, 2618, 2609, 1, 0, 0, 0, 2618, 2617, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 3, 610, 305, 0, 2621, 183, 1, 0, 0, 0, 2622, 2623, 5, 138, 0, 0, 2623, 2625, 5, 342, 0, 0, 2624, 2626, 3, 422, 211, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2628, 3, 316, 158, 0, 2628, 2629, 5, 333, 0, 0, 2629, 2630, 5, 342, 0, 0, 2630, 2631, 3, 812, 406, 0, 2631, 185, 1, 0, 0, 0, 2632, 2634, 5, 46, 0, 0, 2633, 2635, 3, 122, 61, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2638, 5, 92, 0, 0, 2637, 2639, 3, 294, 147, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 3, 188, 94, 0, 2641, 2642, 5, 36, 0, 0, 2642, 2644, 3, 560, 280, 0, 2643, 2645, 3, 190, 95, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 187, 1, 0, 0, 0, 2646, 2648, 3, 772, 386, 0, 2647, 2649, 3, 146, 73, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 170, 85, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 1, 0, 0, 0, 2653, 2655, 3, 172, 86, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2658, 3, 174, 87, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2660, 1, 0, 0, 0, 2659, 2661, 3, 176, 88, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 189, 1, 0, 0, 0, 2662, 2666, 5, 105, 0, 0, 2663, 2667, 5, 174, 0, 0, 2664, 2665, 5, 269, 0, 0, 2665, 2667, 5, 174, 0, 0, 2666, 2663, 1, 0, 0, 0, 2666, 2664, 1, 0, 0, 0, 2667, 191, 1, 0, 0, 0, 2668, 2670, 5, 46, 0, 0, 2669, 2671, 5, 367, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2673, 5, 259, 0, 0, 2673, 2675, 5, 376, 0, 0, 2674, 2676, 3, 294, 147, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 3, 776, 388, 0, 2678, 2680, 3, 146, 73, 0, 2679, 2678, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 1, 0, 0, 0, 2681, 2683, 3, 170, 85, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2686, 3, 102, 51, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2688, 1, 0, 0, 0, 2687, 2689, 3, 176, 88, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 5, 36, 0, 0, 2691, 2693, 3, 560, 280, 0, 2692, 2694, 3, 190, 95, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 193, 1, 0, 0, 0, 2695, 2696, 5, 305, 0, 0, 2696, 2697, 5, 259, 0, 0, 2697, 2699, 5, 376, 0, 0, 2698, 2700, 5, 109, 0, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2703, 3, 778, 389, 0, 2702, 2704, 3, 190, 95, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 195, 1, 0, 0, 0, 2705, 2707, 5, 46, 0, 0, 2706, 2708, 3, 122, 61, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2711, 5, 328, 0, 0, 2710, 2712, 3, 294, 147, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2719, 3, 780, 390, 0, 2714, 2716, 3, 200, 100, 0, 2715, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2715, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2715, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 197, 1, 0, 0, 0, 2721, 2722, 5, 138, 0, 0, 2722, 2724, 5, 328, 0, 0, 2723, 2725, 3, 422, 211, 0, 2724, 2723, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 3, 780, 390, 0, 2727, 2729, 3, 200, 100, 0, 2728, 2727, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 199, 1, 0, 0, 0, 2732, 2733, 5, 36, 0, 0, 2733, 2766, 3, 654, 327, 0, 2734, 2736, 5, 148, 0, 0, 2735, 2737, 3, 202, 101, 0, 2736, 2735, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2766, 1, 0, 0, 0, 2738, 2740, 5, 225, 0, 0, 2739, 2741, 5, 147, 0, 0, 2740, 2739, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2766, 3, 202, 101, 0, 2743, 2744, 7, 27, 0, 0, 2744, 2766, 3, 202, 101, 0, 2745, 2746, 5, 269, 0, 0, 2746, 2766, 7, 28, 0, 0, 2747, 2748, 5, 281, 0, 0, 2748, 2749, 5, 147, 0, 0, 2749, 2766, 3, 800, 400, 0, 2750, 2751, 5, 328, 0, 0, 2751, 2752, 5, 266, 0, 0, 2752, 2766, 3, 316, 158, 0, 2753, 2755, 5, 340, 0, 0, 2754, 2756, 5, 105, 0, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2766, 3, 202, 101, 0, 2758, 2760, 5, 314, 0, 0, 2759, 2761, 5, 105, 0, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 1, 0, 0, 0, 2762, 2764, 3, 202, 101, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 1, 0, 0, 0, 2765, 2732, 1, 0, 0, 0, 2765, 2734, 1, 0, 0, 0, 2765, 2738, 1, 0, 0, 0, 2765, 2743, 1, 0, 0, 0, 2765, 2745, 1, 0, 0, 0, 2765, 2747, 1, 0, 0, 0, 2765, 2750, 1, 0, 0, 0, 2765, 2753, 1, 0, 0, 0, 2765, 2758, 1, 0, 0, 0, 2766, 201, 1, 0, 0, 0, 2767, 2769, 7, 29, 0, 0, 2768, 2767, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2773, 5, 573, 0, 0, 2771, 2773, 3, 812, 406, 0, 2772, 2768, 1, 0, 0, 0, 2772, 2771, 1, 0, 0, 0, 2773, 203, 1, 0, 0, 0, 2774, 2776, 5, 46, 0, 0, 2775, 2777, 3, 366, 183, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2779, 1, 0, 0, 0, 2778, 2780, 5, 359, 0, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2782, 1, 0, 0, 0, 2781, 2783, 5, 295, 0, 0, 2782, 2781, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 5, 247, 0, 0, 2785, 2798, 3, 818, 409, 0, 2786, 2787, 5, 215, 0, 0, 2787, 2790, 3, 316, 158, 0, 2788, 2789, 5, 239, 0, 0, 2789, 2791, 3, 316, 158, 0, 2790, 2788, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2796, 1, 0, 0, 0, 2792, 2793, 5, 373, 0, 0, 2793, 2797, 3, 316, 158, 0, 2794, 2795, 5, 269, 0, 0, 2795, 2797, 5, 373, 0, 0, 2796, 2792, 1, 0, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2799, 1, 0, 0, 0, 2798, 2786, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 205, 1, 0, 0, 0, 2800, 2801, 5, 46, 0, 0, 2801, 2804, 3, 176, 88, 0, 2802, 2803, 5, 282, 0, 0, 2803, 2805, 3, 814, 407, 0, 2804, 2802, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2807, 5, 255, 0, 0, 2807, 2809, 3, 808, 404, 0, 2808, 2810, 3, 102, 51, 0, 2809, 2808, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 207, 1, 0, 0, 0, 2811, 2812, 5, 46, 0, 0, 2812, 2814, 5, 204, 0, 0, 2813, 2815, 3, 294, 147, 0, 2814, 2813, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 3, 818, 409, 0, 2817, 2819, 5, 105, 0, 0, 2818, 2817, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 2827, 1, 0, 0, 0, 2820, 2821, 5, 323, 0, 0, 2821, 2826, 3, 790, 395, 0, 2822, 2823, 7, 30, 0, 0, 2823, 2826, 3, 58, 29, 0, 2824, 2826, 5, 150, 0, 0, 2825, 2820, 1, 0, 0, 0, 2825, 2822, 1, 0, 0, 0, 2825, 2824, 1, 0, 0, 0, 2826, 2829, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 209, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2831, 5, 138, 0, 0, 2831, 2832, 5, 204, 0, 0, 2832, 2833, 3, 818, 409, 0, 2833, 2838, 5, 369, 0, 0, 2834, 2835, 5, 94, 0, 0, 2835, 2837, 3, 58, 29, 0, 2836, 2834, 1, 0, 0, 0, 2837, 2840, 1, 0, 0, 0, 2838, 2836, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 211, 1, 0, 0, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2842, 5, 138, 0, 0, 2842, 2843, 5, 204, 0, 0, 2843, 2844, 3, 818, 409, 0, 2844, 2877, 7, 6, 0, 0, 2845, 2846, 5, 443, 0, 0, 2846, 2847, 5, 62, 0, 0, 2847, 2848, 3, 652, 326, 0, 2848, 2849, 5, 247, 0, 0, 2849, 2850, 3, 818, 409, 0, 2850, 2878, 1, 0, 0, 0, 2851, 2852, 5, 442, 0, 0, 2852, 2878, 3, 374, 187, 0, 2853, 2854, 5, 296, 0, 0, 2854, 2878, 3, 378, 189, 0, 2855, 2856, 5, 278, 0, 0, 2856, 2857, 7, 31, 0, 0, 2857, 2858, 3, 316, 158, 0, 2858, 2859, 3, 170, 85, 0, 2859, 2878, 1, 0, 0, 0, 2860, 2861, 5, 278, 0, 0, 2861, 2878, 3, 416, 208, 0, 2862, 2863, 5, 211, 0, 0, 2863, 2878, 3, 382, 191, 0, 2864, 2865, 7, 32, 0, 0, 2865, 2878, 3, 652, 326, 0, 2866, 2867, 5, 41, 0, 0, 2867, 2868, 5, 2, 0, 0, 2868, 2869, 3, 652, 326, 0, 2869, 2870, 5, 36, 0, 0, 2870, 2871, 3, 652, 326, 0, 2871, 2872, 5, 3, 0, 0, 2872, 2878, 1, 0, 0, 0, 2873, 2874, 5, 136, 0, 0, 2874, 2878, 3, 394, 197, 0, 2875, 2878, 3, 312, 156, 0, 2876, 2878, 3, 310, 155, 0, 2877, 2845, 1, 0, 0, 0, 2877, 2851, 1, 0, 0, 0, 2877, 2853, 1, 0, 0, 0, 2877, 2855, 1, 0, 0, 0, 2877, 2860, 1, 0, 0, 0, 2877, 2862, 1, 0, 0, 0, 2877, 2864, 1, 0, 0, 0, 2877, 2866, 1, 0, 0, 0, 2877, 2873, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2876, 1, 0, 0, 0, 2878, 213, 1, 0, 0, 0, 2879, 2880, 5, 46, 0, 0, 2880, 2881, 5, 63, 0, 0, 2881, 2882, 5, 174, 0, 0, 2882, 2883, 5, 381, 0, 0, 2883, 2889, 3, 818, 409, 0, 2884, 2886, 3, 216, 108, 0, 2885, 2884, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2885, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2890, 1, 0, 0, 0, 2889, 2885, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2893, 3, 220, 110, 0, 2892, 2891, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 215, 1, 0, 0, 0, 2894, 2896, 7, 33, 0, 0, 2895, 2897, 3, 316, 158, 0, 2896, 2895, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2901, 1, 0, 0, 0, 2898, 2899, 5, 269, 0, 0, 2899, 2901, 7, 33, 0, 0, 2900, 2894, 1, 0, 0, 0, 2900, 2898, 1, 0, 0, 0, 2901, 217, 1, 0, 0, 0, 2902, 2903, 5, 138, 0, 0, 2903, 2904, 5, 63, 0, 0, 2904, 2905, 5, 174, 0, 0, 2905, 2906, 5, 381, 0, 0, 2906, 2920, 3, 818, 409, 0, 2907, 2909, 3, 216, 108, 0, 2908, 2907, 1, 0, 0, 0, 2909, 2910, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2913, 1, 0, 0, 0, 2912, 2908, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2921, 3, 222, 111, 0, 2915, 2917, 3, 216, 108, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2921, 1, 0, 0, 0, 2920, 2912, 1, 0, 0, 0, 2920, 2916, 1, 0, 0, 0, 2921, 219, 1, 0, 0, 0, 2922, 2923, 5, 280, 0, 0, 2923, 2924, 5, 2, 0, 0, 2924, 2929, 3, 226, 113, 0, 2925, 2926, 5, 6, 0, 0, 2926, 2928, 3, 226, 113, 0, 2927, 2925, 1, 0, 0, 0, 2928, 2931, 1, 0, 0, 0, 2929, 2927, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2932, 1, 0, 0, 0, 2931, 2929, 1, 0, 0, 0, 2932, 2933, 5, 3, 0, 0, 2933, 221, 1, 0, 0, 0, 2934, 2935, 5, 280, 0, 0, 2935, 2936, 5, 2, 0, 0, 2936, 2941, 3, 224, 112, 0, 2937, 2938, 5, 6, 0, 0, 2938, 2940, 3, 224, 112, 0, 2939, 2937, 1, 0, 0, 0, 2940, 2943, 1, 0, 0, 0, 2941, 2939, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2941, 1, 0, 0, 0, 2944, 2945, 5, 3, 0, 0, 2945, 223, 1, 0, 0, 0, 2946, 2947, 7, 34, 0, 0, 2947, 2948, 3, 226, 113, 0, 2948, 225, 1, 0, 0, 0, 2949, 2950, 3, 824, 412, 0, 2950, 2951, 3, 808, 404, 0, 2951, 227, 1, 0, 0, 0, 2952, 2953, 5, 46, 0, 0, 2953, 2955, 5, 331, 0, 0, 2954, 2956, 3, 294, 147, 0, 2955, 2954, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2960, 3, 818, 409, 0, 2958, 2959, 5, 360, 0, 0, 2959, 2961, 3, 808, 404, 0, 2960, 2958, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2963, 1, 0, 0, 0, 2962, 2964, 3, 230, 115, 0, 2963, 2962, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2966, 5, 63, 0, 0, 2966, 2967, 5, 174, 0, 0, 2967, 2968, 5, 381, 0, 0, 2968, 2970, 3, 818, 409, 0, 2969, 2971, 3, 220, 110, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 229, 1, 0, 0, 0, 2972, 2975, 5, 375, 0, 0, 2973, 2976, 3, 808, 404, 0, 2974, 2976, 5, 78, 0, 0, 2975, 2973, 1, 0, 0, 0, 2975, 2974, 1, 0, 0, 0, 2976, 231, 1, 0, 0, 0, 2977, 2978, 5, 138, 0, 0, 2978, 2979, 5, 331, 0, 0, 2979, 2985, 3, 818, 409, 0, 2980, 2986, 3, 222, 111, 0, 2981, 2983, 3, 230, 115, 0, 2982, 2984, 3, 222, 111, 0, 2983, 2982, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2986, 1, 0, 0, 0, 2985, 2980, 1, 0, 0, 0, 2985, 2981, 1, 0, 0, 0, 2986, 233, 1, 0, 0, 0, 2987, 2988, 5, 46, 0, 0, 2988, 2989, 5, 63, 0, 0, 2989, 2991, 5, 92, 0, 0, 2990, 2992, 3, 294, 147, 0, 2991, 2990, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2994, 3, 772, 386, 0, 2994, 2996, 5, 2, 0, 0, 2995, 2997, 3, 126, 63, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 3000, 5, 3, 0, 0, 2999, 3001, 3, 164, 82, 0, 3000, 2999, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 5, 331, 0, 0, 3003, 3005, 3, 818, 409, 0, 3004, 3006, 3, 220, 110, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3027, 1, 0, 0, 0, 3007, 3008, 5, 46, 0, 0, 3008, 3009, 5, 63, 0, 0, 3009, 3011, 5, 92, 0, 0, 3010, 3012, 3, 294, 147, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 3, 772, 386, 0, 3014, 3015, 5, 285, 0, 0, 3015, 3016, 5, 275, 0, 0, 3016, 3018, 3, 774, 387, 0, 3017, 3019, 3, 124, 62, 0, 3018, 3017, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3021, 3, 106, 53, 0, 3021, 3022, 5, 331, 0, 0, 3022, 3024, 3, 818, 409, 0, 3023, 3025, 3, 220, 110, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3027, 1, 0, 0, 0, 3026, 2987, 1, 0, 0, 0, 3026, 3007, 1, 0, 0, 0, 3027, 235, 1, 0, 0, 0, 3028, 3029, 5, 444, 0, 0, 3029, 3030, 5, 63, 0, 0, 3030, 3031, 5, 323, 0, 0, 3031, 3041, 3, 790, 395, 0, 3032, 3033, 5, 74, 0, 0, 3033, 3036, 5, 94, 0, 0, 3034, 3036, 5, 59, 0, 0, 3035, 3032, 1, 0, 0, 0, 3035, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3038, 5, 2, 0, 0, 3038, 3039, 3, 628, 314, 0, 3039, 3040, 5, 3, 0, 0, 3040, 3042, 1, 0, 0, 0, 3041, 3035, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 5, 64, 0, 0, 3044, 3045, 5, 331, 0, 0, 3045, 3046, 3, 818, 409, 0, 3046, 3047, 5, 71, 0, 0, 3047, 3049, 3, 818, 409, 0, 3048, 3050, 3, 220, 110, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 237, 1, 0, 0, 0, 3051, 3052, 5, 46, 0, 0, 3052, 3053, 5, 99, 0, 0, 3053, 3055, 5, 257, 0, 0, 3054, 3056, 3, 294, 147, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3060, 5, 62, 0, 0, 3058, 3061, 3, 814, 407, 0, 3059, 3061, 5, 99, 0, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3059, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 331, 0, 0, 3063, 3065, 3, 818, 409, 0, 3064, 3066, 3, 220, 110, 0, 3065, 3064, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 239, 1, 0, 0, 0, 3067, 3068, 5, 138, 0, 0, 3068, 3069, 5, 99, 0, 0, 3069, 3070, 5, 257, 0, 0, 3070, 3073, 5, 62, 0, 0, 3071, 3074, 3, 814, 407, 0, 3072, 3074, 5, 99, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3072, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 5, 331, 0, 0, 3076, 3077, 3, 818, 409, 0, 3077, 3078, 3, 222, 111, 0, 3078, 241, 1, 0, 0, 0, 3079, 3080, 5, 46, 0, 0, 3080, 3081, 5, 445, 0, 0, 3081, 3082, 3, 818, 409, 0, 3082, 3083, 5, 80, 0, 0, 3083, 3090, 3, 780, 390, 0, 3084, 3088, 5, 36, 0, 0, 3085, 3089, 5, 541, 0, 0, 3086, 3089, 5, 542, 0, 0, 3087, 3089, 3, 826, 413, 0, 3088, 3085, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3087, 1, 0, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3084, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3094, 1, 0, 0, 0, 3092, 3093, 5, 62, 0, 0, 3093, 3095, 7, 35, 0, 0, 3094, 3092, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3098, 1, 0, 0, 0, 3096, 3097, 5, 94, 0, 0, 3097, 3099, 3, 816, 408, 0, 3098, 3096, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3101, 1, 0, 0, 0, 3100, 3102, 3, 250, 125, 0, 3101, 3100, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3104, 1, 0, 0, 0, 3103, 3105, 3, 252, 126, 0, 3104, 3103, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 243, 1, 0, 0, 0, 3106, 3107, 5, 138, 0, 0, 3107, 3108, 5, 445, 0, 0, 3108, 3109, 3, 818, 409, 0, 3109, 3110, 5, 80, 0, 0, 3110, 3113, 3, 780, 390, 0, 3111, 3112, 5, 94, 0, 0, 3112, 3114, 3, 816, 408, 0, 3113, 3111, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3116, 1, 0, 0, 0, 3115, 3117, 3, 250, 125, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3119, 1, 0, 0, 0, 3118, 3120, 3, 252, 126, 0, 3119, 3118, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 245, 1, 0, 0, 0, 3121, 3122, 5, 138, 0, 0, 3122, 3123, 5, 296, 0, 0, 3123, 3125, 3, 796, 398, 0, 3124, 3126, 3, 368, 184, 0, 3125, 3124, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3153, 1, 0, 0, 0, 3127, 3131, 3, 248, 124, 0, 3128, 3130, 3, 248, 124, 0, 3129, 3128, 1, 0, 0, 0, 3130, 3133, 1, 0, 0, 0, 3131, 3129, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3135, 1, 0, 0, 0, 3133, 3131, 1, 0, 0, 0, 3134, 3136, 5, 315, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3154, 1, 0, 0, 0, 3137, 3138, 5, 309, 0, 0, 3138, 3139, 5, 94, 0, 0, 3139, 3154, 3, 798, 399, 0, 3140, 3141, 5, 282, 0, 0, 3141, 3142, 5, 94, 0, 0, 3142, 3154, 3, 814, 407, 0, 3143, 3144, 5, 333, 0, 0, 3144, 3145, 5, 323, 0, 0, 3145, 3154, 3, 32, 16, 0, 3146, 3148, 5, 269, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 462, 0, 0, 3150, 3151, 5, 80, 0, 0, 3151, 3152, 5, 204, 0, 0, 3152, 3154, 3, 818, 409, 0, 3153, 3127, 1, 0, 0, 0, 3153, 3137, 1, 0, 0, 0, 3153, 3140, 1, 0, 0, 0, 3153, 3143, 1, 0, 0, 0, 3153, 3147, 1, 0, 0, 0, 3154, 247, 1, 0, 0, 0, 3155, 3157, 5, 205, 0, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, 5, 327, 0, 0, 3159, 3166, 5, 243, 0, 0, 3160, 3162, 5, 205, 0, 0, 3161, 3160, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3164, 5, 327, 0, 0, 3164, 3166, 5, 181, 0, 0, 3165, 3156, 1, 0, 0, 0, 3165, 3161, 1, 0, 0, 0, 3166, 3185, 1, 0, 0, 0, 3167, 3168, 5, 333, 0, 0, 3168, 3169, 3, 818, 409, 0, 3169, 3172, 7, 36, 0, 0, 3170, 3173, 3, 818, 409, 0, 3171, 3173, 5, 53, 0, 0, 3172, 3170, 1, 0, 0, 0, 3172, 3171, 1, 0, 0, 0, 3173, 3185, 1, 0, 0, 0, 3174, 3175, 5, 333, 0, 0, 3175, 3176, 3, 818, 409, 0, 3176, 3177, 5, 64, 0, 0, 3177, 3178, 5, 434, 0, 0, 3178, 3185, 1, 0, 0, 0, 3179, 3182, 5, 313, 0, 0, 3180, 3183, 3, 818, 409, 0, 3181, 3183, 5, 30, 0, 0, 3182, 3180, 1, 0, 0, 0, 3182, 3181, 1, 0, 0, 0, 3183, 3185, 1, 0, 0, 0, 3184, 3165, 1, 0, 0, 0, 3184, 3167, 1, 0, 0, 0, 3184, 3174, 1, 0, 0, 0, 3184, 3179, 1, 0, 0, 0, 3185, 249, 1, 0, 0, 0, 3186, 3187, 5, 100, 0, 0, 3187, 3188, 5, 2, 0, 0, 3188, 3189, 3, 674, 337, 0, 3189, 3190, 5, 3, 0, 0, 3190, 251, 1, 0, 0, 0, 3191, 3192, 5, 105, 0, 0, 3192, 3193, 5, 42, 0, 0, 3193, 3194, 5, 2, 0, 0, 3194, 3195, 3, 674, 337, 0, 3195, 3196, 5, 3, 0, 0, 3196, 253, 1, 0, 0, 0, 3197, 3198, 5, 46, 0, 0, 3198, 3199, 5, 131, 0, 0, 3199, 3200, 5, 446, 0, 0, 3200, 3201, 3, 818, 409, 0, 3201, 3202, 5, 360, 0, 0, 3202, 3203, 7, 37, 0, 0, 3203, 3204, 5, 215, 0, 0, 3204, 3205, 3, 316, 158, 0, 3205, 255, 1, 0, 0, 0, 3206, 3208, 5, 46, 0, 0, 3207, 3209, 3, 366, 183, 0, 3208, 3207, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 5, 357, 0, 0, 3211, 3212, 3, 818, 409, 0, 3212, 3213, 3, 258, 129, 0, 3213, 3214, 3, 260, 130, 0, 3214, 3215, 5, 80, 0, 0, 3215, 3227, 3, 774, 387, 0, 3216, 3223, 5, 447, 0, 0, 3217, 3218, 7, 38, 0, 0, 3218, 3220, 7, 39, 0, 0, 3219, 3221, 5, 36, 0, 0, 3220, 3219, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 3, 818, 409, 0, 3223, 3217, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3223, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3216, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3234, 1, 0, 0, 0, 3229, 3231, 5, 62, 0, 0, 3230, 3232, 5, 192, 0, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3235, 7, 40, 0, 0, 3234, 3229, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 264, 132, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3240, 5, 202, 0, 0, 3240, 3241, 3, 266, 133, 0, 3241, 3242, 5, 2, 0, 0, 3242, 3243, 3, 268, 134, 0, 3243, 3244, 5, 3, 0, 0, 3244, 3285, 1, 0, 0, 0, 3245, 3247, 5, 46, 0, 0, 3246, 3248, 3, 366, 183, 0, 3247, 3246, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3250, 1, 0, 0, 0, 3249, 3251, 5, 45, 0, 0, 3250, 3249, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3253, 5, 357, 0, 0, 3253, 3254, 3, 818, 409, 0, 3254, 3255, 3, 258, 129, 0, 3255, 3256, 3, 260, 130, 0, 3256, 3257, 5, 80, 0, 0, 3257, 3260, 3, 774, 387, 0, 3258, 3259, 5, 64, 0, 0, 3259, 3261, 3, 780, 390, 0, 3260, 3258, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3265, 1, 0, 0, 0, 3262, 3264, 3, 272, 136, 0, 3263, 3262, 1, 0, 0, 0, 3264, 3267, 1, 0, 0, 0, 3265, 3263, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3273, 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3268, 3270, 5, 62, 0, 0, 3269, 3271, 5, 192, 0, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 7, 40, 0, 0, 3273, 3268, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3276, 1, 0, 0, 0, 3275, 3277, 3, 264, 132, 0, 3276, 3275, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3279, 5, 202, 0, 0, 3279, 3280, 3, 266, 133, 0, 3280, 3281, 5, 2, 0, 0, 3281, 3282, 3, 268, 134, 0, 3282, 3283, 5, 3, 0, 0, 3283, 3285, 1, 0, 0, 0, 3284, 3206, 1, 0, 0, 0, 3284, 3245, 1, 0, 0, 0, 3285, 257, 1, 0, 0, 0, 3286, 3291, 5, 145, 0, 0, 3287, 3291, 5, 135, 0, 0, 3288, 3289, 5, 242, 0, 0, 3289, 3291, 5, 275, 0, 0, 3290, 3286, 1, 0, 0, 0, 3290, 3287, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3291, 259, 1, 0, 0, 0, 3292, 3297, 3, 262, 131, 0, 3293, 3294, 5, 82, 0, 0, 3294, 3296, 3, 262, 131, 0, 3295, 3293, 1, 0, 0, 0, 3296, 3299, 1, 0, 0, 0, 3297, 3295, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 261, 1, 0, 0, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3309, 5, 241, 0, 0, 3301, 3309, 5, 182, 0, 0, 3302, 3305, 5, 369, 0, 0, 3303, 3304, 5, 275, 0, 0, 3304, 3306, 3, 148, 74, 0, 3305, 3303, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3309, 1, 0, 0, 0, 3307, 3309, 5, 358, 0, 0, 3308, 3300, 1, 0, 0, 0, 3308, 3301, 1, 0, 0, 0, 3308, 3302, 1, 0, 0, 0, 3308, 3307, 1, 0, 0, 0, 3309, 263, 1, 0, 0, 0, 3310, 3311, 5, 102, 0, 0, 3311, 3312, 5, 2, 0, 0, 3312, 3313, 3, 674, 337, 0, 3313, 3314, 5, 3, 0, 0, 3314, 265, 1, 0, 0, 0, 3315, 3316, 5, 211, 0, 0, 3316, 3320, 3, 806, 403, 0, 3317, 3318, 5, 296, 0, 0, 3318, 3320, 3, 796, 398, 0, 3319, 3315, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3320, 267, 1, 0, 0, 0, 3321, 3324, 3, 270, 135, 0, 3322, 3324, 1, 0, 0, 0, 3323, 3321, 1, 0, 0, 0, 3323, 3322, 1, 0, 0, 0, 3324, 3329, 1, 0, 0, 0, 3325, 3326, 5, 6, 0, 0, 3326, 3328, 3, 270, 135, 0, 3327, 3325, 1, 0, 0, 0, 3328, 3331, 1, 0, 0, 0, 3329, 3327, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 269, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3332, 3337, 5, 571, 0, 0, 3333, 3337, 5, 573, 0, 0, 3334, 3337, 3, 808, 404, 0, 3335, 3337, 3, 824, 412, 0, 3336, 3332, 1, 0, 0, 0, 3336, 3333, 1, 0, 0, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3335, 1, 0, 0, 0, 3337, 271, 1, 0, 0, 0, 3338, 3340, 5, 77, 0, 0, 3339, 3338, 1, 0, 0, 0, 3339, 3340, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3349, 5, 54, 0, 0, 3342, 3343, 5, 69, 0, 0, 3343, 3349, 7, 9, 0, 0, 3344, 3345, 5, 77, 0, 0, 3345, 3349, 5, 371, 0, 0, 3346, 3347, 5, 269, 0, 0, 3347, 3349, 5, 228, 0, 0, 3348, 3339, 1, 0, 0, 0, 3348, 3342, 1, 0, 0, 0, 3348, 3344, 1, 0, 0, 0, 3348, 3346, 1, 0, 0, 0, 3349, 273, 1, 0, 0, 0, 3350, 3351, 5, 46, 0, 0, 3351, 3352, 5, 198, 0, 0, 3352, 3353, 5, 357, 0, 0, 3353, 3354, 3, 818, 409, 0, 3354, 3355, 5, 80, 0, 0, 3355, 3365, 3, 824, 412, 0, 3356, 3357, 5, 102, 0, 0, 3357, 3362, 3, 276, 138, 0, 3358, 3359, 5, 33, 0, 0, 3359, 3361, 3, 276, 138, 0, 3360, 3358, 1, 0, 0, 0, 3361, 3364, 1, 0, 0, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3366, 1, 0, 0, 0, 3364, 3362, 1, 0, 0, 0, 3365, 3356, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 5, 202, 0, 0, 3368, 3369, 3, 266, 133, 0, 3369, 3370, 5, 2, 0, 0, 3370, 3371, 5, 3, 0, 0, 3371, 275, 1, 0, 0, 0, 3372, 3373, 3, 818, 409, 0, 3373, 3374, 5, 68, 0, 0, 3374, 3375, 5, 2, 0, 0, 3375, 3379, 3, 808, 404, 0, 3376, 3378, 3, 462, 231, 0, 3377, 3376, 1, 0, 0, 0, 3378, 3381, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3382, 1, 0, 0, 0, 3381, 3379, 1, 0, 0, 0, 3382, 3383, 5, 3, 0, 0, 3383, 277, 1, 0, 0, 0, 3384, 3385, 5, 138, 0, 0, 3385, 3386, 5, 198, 0, 0, 3386, 3387, 5, 357, 0, 0, 3387, 3393, 3, 818, 409, 0, 3388, 3390, 5, 193, 0, 0, 3389, 3391, 7, 14, 0, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3394, 5, 186, 0, 0, 3393, 3388, 1, 0, 0, 0, 3393, 3392, 1, 0, 0, 0, 3394, 279, 1, 0, 0, 0, 3395, 3396, 5, 46, 0, 0, 3396, 3397, 5, 140, 0, 0, 3397, 3398, 3, 316, 158, 0, 3398, 3399, 5, 42, 0, 0, 3399, 3400, 5, 2, 0, 0, 3400, 3401, 3, 674, 337, 0, 3401, 3405, 5, 3, 0, 0, 3402, 3404, 3, 272, 136, 0, 3403, 3402, 1, 0, 0, 0, 3404, 3407, 1, 0, 0, 0, 3405, 3403, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 281, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3408, 3410, 5, 46, 0, 0, 3409, 3411, 3, 366, 183, 0, 3410, 3409, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 5, 136, 0, 0, 3413, 3428, 3, 806, 403, 0, 3414, 3415, 3, 392, 196, 0, 3415, 3416, 3, 284, 142, 0, 3416, 3429, 1, 0, 0, 0, 3417, 3418, 5, 2, 0, 0, 3418, 3423, 3, 290, 145, 0, 3419, 3420, 5, 6, 0, 0, 3420, 3422, 3, 290, 145, 0, 3421, 3419, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3426, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3427, 5, 3, 0, 0, 3427, 3429, 1, 0, 0, 0, 3428, 3414, 1, 0, 0, 0, 3428, 3417, 1, 0, 0, 0, 3429, 3487, 1, 0, 0, 0, 3430, 3431, 5, 46, 0, 0, 3431, 3432, 5, 278, 0, 0, 3432, 3433, 3, 414, 207, 0, 3433, 3434, 3, 284, 142, 0, 3434, 3487, 1, 0, 0, 0, 3435, 3436, 5, 46, 0, 0, 3436, 3437, 5, 360, 0, 0, 3437, 3438, 3, 316, 158, 0, 3438, 3456, 5, 36, 0, 0, 3439, 3441, 5, 2, 0, 0, 3440, 3442, 3, 642, 321, 0, 3441, 3440, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3457, 5, 3, 0, 0, 3444, 3445, 5, 196, 0, 0, 3445, 3453, 5, 2, 0, 0, 3446, 3450, 3, 808, 404, 0, 3447, 3449, 3, 462, 231, 0, 3448, 3447, 1, 0, 0, 0, 3449, 3452, 1, 0, 0, 0, 3450, 3448, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3454, 1, 0, 0, 0, 3452, 3450, 1, 0, 0, 0, 3453, 3446, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 5, 3, 0, 0, 3456, 3439, 1, 0, 0, 0, 3456, 3444, 1, 0, 0, 0, 3457, 3487, 1, 0, 0, 0, 3458, 3459, 5, 46, 0, 0, 3459, 3460, 5, 360, 0, 0, 3460, 3466, 3, 316, 158, 0, 3461, 3462, 5, 36, 0, 0, 3462, 3464, 5, 299, 0, 0, 3463, 3461, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3467, 3, 284, 142, 0, 3466, 3463, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3487, 1, 0, 0, 0, 3468, 3469, 5, 46, 0, 0, 3469, 3470, 5, 355, 0, 0, 3470, 3471, 5, 325, 0, 0, 3471, 3472, 7, 41, 0, 0, 3472, 3473, 3, 316, 158, 0, 3473, 3474, 3, 284, 142, 0, 3474, 3487, 1, 0, 0, 0, 3475, 3476, 5, 46, 0, 0, 3476, 3478, 5, 108, 0, 0, 3477, 3479, 3, 294, 147, 0, 3478, 3477, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3484, 3, 316, 158, 0, 3481, 3485, 3, 284, 142, 0, 3482, 3483, 5, 64, 0, 0, 3483, 3485, 3, 316, 158, 0, 3484, 3481, 1, 0, 0, 0, 3484, 3482, 1, 0, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3408, 1, 0, 0, 0, 3486, 3430, 1, 0, 0, 0, 3486, 3435, 1, 0, 0, 0, 3486, 3458, 1, 0, 0, 0, 3486, 3468, 1, 0, 0, 0, 3486, 3475, 1, 0, 0, 0, 3487, 283, 1, 0, 0, 0, 3488, 3489, 5, 2, 0, 0, 3489, 3494, 3, 286, 143, 0, 3490, 3491, 5, 6, 0, 0, 3491, 3493, 3, 286, 143, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3497, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3497, 3498, 5, 3, 0, 0, 3498, 285, 1, 0, 0, 0, 3499, 3502, 3, 824, 412, 0, 3500, 3501, 5, 10, 0, 0, 3501, 3503, 3, 288, 144, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 287, 1, 0, 0, 0, 3504, 3511, 3, 388, 194, 0, 3505, 3511, 3, 834, 417, 0, 3506, 3511, 3, 726, 363, 0, 3507, 3511, 3, 202, 101, 0, 3508, 3511, 3, 808, 404, 0, 3509, 3511, 5, 407, 0, 0, 3510, 3504, 1, 0, 0, 0, 3510, 3505, 1, 0, 0, 0, 3510, 3506, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3510, 3509, 1, 0, 0, 0, 3511, 289, 1, 0, 0, 0, 3512, 3513, 3, 826, 413, 0, 3513, 3514, 5, 10, 0, 0, 3514, 3515, 3, 288, 144, 0, 3515, 291, 1, 0, 0, 0, 3516, 3517, 5, 138, 0, 0, 3517, 3518, 5, 360, 0, 0, 3518, 3519, 3, 316, 158, 0, 3519, 3520, 5, 133, 0, 0, 3520, 3522, 5, 450, 0, 0, 3521, 3523, 3, 294, 147, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 3, 808, 404, 0, 3525, 3526, 7, 42, 0, 0, 3526, 3528, 3, 808, 404, 0, 3527, 3525, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3539, 1, 0, 0, 0, 3529, 3530, 5, 138, 0, 0, 3530, 3531, 5, 360, 0, 0, 3531, 3532, 3, 316, 158, 0, 3532, 3533, 5, 309, 0, 0, 3533, 3534, 5, 450, 0, 0, 3534, 3535, 3, 808, 404, 0, 3535, 3536, 5, 94, 0, 0, 3536, 3537, 3, 808, 404, 0, 3537, 3539, 1, 0, 0, 0, 3538, 3516, 1, 0, 0, 0, 3538, 3529, 1, 0, 0, 0, 3539, 293, 1, 0, 0, 0, 3540, 3541, 5, 220, 0, 0, 3541, 3542, 5, 77, 0, 0, 3542, 3543, 5, 396, 0, 0, 3543, 295, 1, 0, 0, 0, 3544, 3545, 5, 46, 0, 0, 3545, 3546, 5, 278, 0, 0, 3546, 3547, 5, 156, 0, 0, 3547, 3549, 3, 316, 158, 0, 3548, 3550, 5, 53, 0, 0, 3549, 3548, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3552, 5, 62, 0, 0, 3552, 3553, 5, 360, 0, 0, 3553, 3554, 3, 652, 326, 0, 3554, 3557, 3, 170, 85, 0, 3555, 3556, 5, 206, 0, 0, 3556, 3558, 3, 316, 158, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3560, 5, 36, 0, 0, 3560, 3565, 3, 298, 149, 0, 3561, 3562, 5, 6, 0, 0, 3562, 3564, 3, 298, 149, 0, 3563, 3561, 1, 0, 0, 0, 3564, 3567, 1, 0, 0, 0, 3565, 3563, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 297, 1, 0, 0, 0, 3567, 3565, 1, 0, 0, 0, 3568, 3569, 5, 278, 0, 0, 3569, 3570, 5, 571, 0, 0, 3570, 3572, 3, 414, 207, 0, 3571, 3573, 3, 412, 206, 0, 3572, 3571, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3581, 1, 0, 0, 0, 3574, 3579, 5, 62, 0, 0, 3575, 3580, 5, 325, 0, 0, 3576, 3577, 5, 83, 0, 0, 3577, 3578, 5, 147, 0, 0, 3578, 3580, 3, 316, 158, 0, 3579, 3575, 1, 0, 0, 0, 3579, 3576, 1, 0, 0, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3574, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3584, 1, 0, 0, 0, 3583, 3585, 5, 302, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3595, 1, 0, 0, 0, 3586, 3587, 5, 211, 0, 0, 3587, 3589, 5, 571, 0, 0, 3588, 3590, 3, 528, 264, 0, 3589, 3588, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3595, 3, 382, 191, 0, 3592, 3593, 5, 345, 0, 0, 3593, 3595, 3, 652, 326, 0, 3594, 3568, 1, 0, 0, 0, 3594, 3586, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3595, 299, 1, 0, 0, 0, 3596, 3597, 5, 46, 0, 0, 3597, 3598, 5, 278, 0, 0, 3598, 3599, 5, 206, 0, 0, 3599, 3600, 3, 316, 158, 0, 3600, 3601, 3, 170, 85, 0, 3601, 301, 1, 0, 0, 0, 3602, 3603, 5, 138, 0, 0, 3603, 3604, 5, 278, 0, 0, 3604, 3605, 5, 206, 0, 0, 3605, 3606, 3, 316, 158, 0, 3606, 3625, 3, 170, 85, 0, 3607, 3608, 5, 133, 0, 0, 3608, 3613, 3, 298, 149, 0, 3609, 3610, 5, 6, 0, 0, 3610, 3612, 3, 298, 149, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3626, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3616, 3617, 5, 191, 0, 0, 3617, 3622, 3, 304, 152, 0, 3618, 3619, 5, 6, 0, 0, 3619, 3621, 3, 304, 152, 0, 3620, 3618, 1, 0, 0, 0, 3621, 3624, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3626, 1, 0, 0, 0, 3624, 3622, 1, 0, 0, 0, 3625, 3607, 1, 0, 0, 0, 3625, 3616, 1, 0, 0, 0, 3626, 303, 1, 0, 0, 0, 3627, 3628, 7, 43, 0, 0, 3628, 3629, 5, 571, 0, 0, 3629, 3630, 3, 528, 264, 0, 3630, 305, 1, 0, 0, 0, 3631, 3632, 5, 301, 0, 0, 3632, 3633, 5, 281, 0, 0, 3633, 3634, 5, 147, 0, 0, 3634, 3635, 3, 816, 408, 0, 3635, 3636, 5, 94, 0, 0, 3636, 3637, 3, 814, 407, 0, 3637, 307, 1, 0, 0, 0, 3638, 3661, 5, 191, 0, 0, 3639, 3662, 5, 328, 0, 0, 3640, 3662, 5, 226, 0, 0, 3641, 3662, 5, 108, 0, 0, 3642, 3662, 5, 168, 0, 0, 3643, 3662, 5, 342, 0, 0, 3644, 3662, 5, 452, 0, 0, 3645, 3662, 5, 331, 0, 0, 3646, 3647, 5, 131, 0, 0, 3647, 3662, 5, 446, 0, 0, 3648, 3649, 5, 198, 0, 0, 3649, 3662, 5, 357, 0, 0, 3650, 3662, 5, 204, 0, 0, 3651, 3653, 5, 295, 0, 0, 3652, 3651, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3662, 5, 247, 0, 0, 3655, 3656, 5, 63, 0, 0, 3656, 3657, 5, 174, 0, 0, 3657, 3662, 5, 381, 0, 0, 3658, 3659, 5, 355, 0, 0, 3659, 3660, 5, 325, 0, 0, 3660, 3662, 7, 41, 0, 0, 3661, 3639, 1, 0, 0, 0, 3661, 3640, 1, 0, 0, 0, 3661, 3641, 1, 0, 0, 0, 3661, 3642, 1, 0, 0, 0, 3661, 3643, 1, 0, 0, 0, 3661, 3644, 1, 0, 0, 0, 3661, 3645, 1, 0, 0, 0, 3661, 3646, 1, 0, 0, 0, 3661, 3648, 1, 0, 0, 0, 3661, 3650, 1, 0, 0, 0, 3661, 3652, 1, 0, 0, 0, 3661, 3655, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3662, 3664, 1, 0, 0, 0, 3663, 3665, 3, 422, 211, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3668, 3, 784, 392, 0, 3667, 3669, 3, 96, 48, 0, 3668, 3667, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3846, 1, 0, 0, 0, 3670, 3672, 5, 191, 0, 0, 3671, 3673, 5, 259, 0, 0, 3672, 3671, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3676, 5, 376, 0, 0, 3675, 3677, 3, 422, 211, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3683, 3, 778, 389, 0, 3679, 3680, 5, 6, 0, 0, 3680, 3682, 3, 778, 389, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3687, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3688, 3, 96, 48, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3846, 1, 0, 0, 0, 3689, 3691, 5, 191, 0, 0, 3690, 3692, 5, 63, 0, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 5, 92, 0, 0, 3694, 3696, 3, 422, 211, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 3697, 1, 0, 0, 0, 3697, 3699, 3, 762, 381, 0, 3698, 3700, 3, 96, 48, 0, 3699, 3698, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3846, 1, 0, 0, 0, 3701, 3702, 5, 191, 0, 0, 3702, 3704, 5, 323, 0, 0, 3703, 3705, 3, 422, 211, 0, 3704, 3703, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3708, 3, 764, 382, 0, 3707, 3709, 3, 96, 48, 0, 3708, 3707, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3846, 1, 0, 0, 0, 3710, 3711, 5, 191, 0, 0, 3711, 3713, 7, 44, 0, 0, 3712, 3714, 3, 422, 211, 0, 3713, 3712, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3716, 3, 818, 409, 0, 3716, 3717, 5, 80, 0, 0, 3717, 3719, 3, 316, 158, 0, 3718, 3720, 3, 96, 48, 0, 3719, 3718, 1, 0, 0, 0, 3719, 3720, 1, 0, 0, 0, 3720, 3846, 1, 0, 0, 0, 3721, 3722, 5, 191, 0, 0, 3722, 3724, 7, 32, 0, 0, 3723, 3725, 3, 422, 211, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3731, 3, 652, 326, 0, 3727, 3728, 5, 6, 0, 0, 3728, 3730, 3, 652, 326, 0, 3729, 3727, 1, 0, 0, 0, 3730, 3733, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3735, 1, 0, 0, 0, 3733, 3731, 1, 0, 0, 0, 3734, 3736, 3, 96, 48, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3846, 1, 0, 0, 0, 3737, 3738, 5, 191, 0, 0, 3738, 3739, 5, 226, 0, 0, 3739, 3741, 5, 109, 0, 0, 3740, 3742, 3, 422, 211, 0, 3741, 3740, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 3, 314, 157, 0, 3744, 3746, 3, 96, 48, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3846, 1, 0, 0, 0, 3747, 3748, 5, 191, 0, 0, 3748, 3750, 5, 41, 0, 0, 3749, 3751, 3, 422, 211, 0, 3750, 3749, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3753, 5, 2, 0, 0, 3753, 3754, 3, 652, 326, 0, 3754, 3755, 5, 36, 0, 0, 3755, 3756, 3, 652, 326, 0, 3756, 3758, 5, 3, 0, 0, 3757, 3759, 3, 96, 48, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3846, 1, 0, 0, 0, 3760, 3761, 5, 191, 0, 0, 3761, 3762, 5, 278, 0, 0, 3762, 3764, 7, 31, 0, 0, 3763, 3765, 3, 422, 211, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3767, 3, 316, 158, 0, 3767, 3769, 3, 170, 85, 0, 3768, 3770, 3, 96, 48, 0, 3769, 3768, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3846, 1, 0, 0, 0, 3771, 3772, 5, 191, 0, 0, 3772, 3773, 5, 281, 0, 0, 3773, 3774, 5, 147, 0, 0, 3774, 3776, 3, 816, 408, 0, 3775, 3777, 3, 96, 48, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3846, 1, 0, 0, 0, 3778, 3779, 5, 191, 0, 0, 3779, 3781, 5, 451, 0, 0, 3780, 3782, 3, 422, 211, 0, 3781, 3780, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3785, 3, 818, 409, 0, 3784, 3786, 3, 96, 48, 0, 3785, 3784, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3846, 1, 0, 0, 0, 3787, 3788, 5, 191, 0, 0, 3788, 3790, 5, 351, 0, 0, 3789, 3791, 3, 422, 211, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3846, 3, 770, 385, 0, 3793, 3794, 5, 191, 0, 0, 3794, 3796, 5, 443, 0, 0, 3795, 3797, 3, 422, 211, 0, 3796, 3795, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3799, 5, 62, 0, 0, 3799, 3800, 3, 652, 326, 0, 3800, 3801, 5, 247, 0, 0, 3801, 3803, 3, 818, 409, 0, 3802, 3804, 3, 96, 48, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3846, 1, 0, 0, 0, 3805, 3806, 5, 191, 0, 0, 3806, 3808, 7, 45, 0, 0, 3807, 3809, 3, 422, 211, 0, 3808, 3807, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3846, 3, 816, 408, 0, 3811, 3812, 5, 191, 0, 0, 3812, 3813, 5, 99, 0, 0, 3813, 3815, 5, 257, 0, 0, 3814, 3816, 3, 422, 211, 0, 3815, 3814, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 3820, 5, 62, 0, 0, 3818, 3821, 3, 814, 407, 0, 3819, 3821, 5, 99, 0, 0, 3820, 3818, 1, 0, 0, 0, 3820, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3823, 5, 331, 0, 0, 3823, 3846, 3, 818, 409, 0, 3824, 3825, 5, 191, 0, 0, 3825, 3827, 5, 175, 0, 0, 3826, 3828, 3, 422, 211, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3843, 3, 788, 394, 0, 3830, 3832, 5, 105, 0, 0, 3831, 3830, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 5, 2, 0, 0, 3834, 3839, 5, 209, 0, 0, 3835, 3836, 5, 6, 0, 0, 3836, 3838, 5, 209, 0, 0, 3837, 3835, 1, 0, 0, 0, 3838, 3841, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3842, 1, 0, 0, 0, 3841, 3839, 1, 0, 0, 0, 3842, 3844, 5, 3, 0, 0, 3843, 3831, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3638, 1, 0, 0, 0, 3845, 3670, 1, 0, 0, 0, 3845, 3689, 1, 0, 0, 0, 3845, 3701, 1, 0, 0, 0, 3845, 3710, 1, 0, 0, 0, 3845, 3721, 1, 0, 0, 0, 3845, 3737, 1, 0, 0, 0, 3845, 3747, 1, 0, 0, 0, 3845, 3760, 1, 0, 0, 0, 3845, 3771, 1, 0, 0, 0, 3845, 3778, 1, 0, 0, 0, 3845, 3787, 1, 0, 0, 0, 3845, 3793, 1, 0, 0, 0, 3845, 3805, 1, 0, 0, 0, 3845, 3811, 1, 0, 0, 0, 3845, 3824, 1, 0, 0, 0, 3846, 309, 1, 0, 0, 0, 3847, 3849, 5, 63, 0, 0, 3848, 3847, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 3851, 5, 92, 0, 0, 3851, 3864, 3, 774, 387, 0, 3852, 3854, 5, 259, 0, 0, 3853, 3852, 1, 0, 0, 0, 3853, 3854, 1, 0, 0, 0, 3854, 3855, 1, 0, 0, 0, 3855, 3856, 5, 376, 0, 0, 3856, 3864, 3, 778, 389, 0, 3857, 3858, 7, 46, 0, 0, 3858, 3864, 3, 316, 158, 0, 3859, 3860, 5, 355, 0, 0, 3860, 3861, 5, 325, 0, 0, 3861, 3862, 7, 41, 0, 0, 3862, 3864, 3, 316, 158, 0, 3863, 3848, 1, 0, 0, 0, 3863, 3853, 1, 0, 0, 0, 3863, 3857, 1, 0, 0, 0, 3863, 3859, 1, 0, 0, 0, 3864, 311, 1, 0, 0, 0, 3865, 3866, 5, 198, 0, 0, 3866, 3882, 5, 357, 0, 0, 3867, 3868, 5, 131, 0, 0, 3868, 3882, 5, 446, 0, 0, 3869, 3882, 5, 204, 0, 0, 3870, 3882, 5, 452, 0, 0, 3871, 3882, 5, 331, 0, 0, 3872, 3882, 5, 318, 0, 0, 3873, 3882, 5, 451, 0, 0, 3874, 3875, 5, 63, 0, 0, 3875, 3876, 5, 174, 0, 0, 3876, 3882, 5, 381, 0, 0, 3877, 3879, 5, 295, 0, 0, 3878, 3877, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3882, 5, 247, 0, 0, 3881, 3865, 1, 0, 0, 0, 3881, 3867, 1, 0, 0, 0, 3881, 3869, 1, 0, 0, 0, 3881, 3870, 1, 0, 0, 0, 3881, 3871, 1, 0, 0, 0, 3881, 3872, 1, 0, 0, 0, 3881, 3873, 1, 0, 0, 0, 3881, 3874, 1, 0, 0, 0, 3881, 3878, 1, 0, 0, 0, 3882, 3883, 1, 0, 0, 0, 3883, 3890, 3, 818, 409, 0, 3884, 3885, 5, 323, 0, 0, 3885, 3890, 3, 790, 395, 0, 3886, 3887, 5, 175, 0, 0, 3887, 3890, 3, 788, 394, 0, 3888, 3890, 3, 176, 88, 0, 3889, 3881, 1, 0, 0, 0, 3889, 3884, 1, 0, 0, 0, 3889, 3886, 1, 0, 0, 0, 3889, 3888, 1, 0, 0, 0, 3890, 313, 1, 0, 0, 0, 3891, 3896, 3, 316, 158, 0, 3892, 3893, 5, 6, 0, 0, 3893, 3895, 3, 316, 158, 0, 3894, 3892, 1, 0, 0, 0, 3895, 3898, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 315, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3899, 3901, 3, 818, 409, 0, 3900, 3902, 3, 318, 159, 0, 3901, 3900, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 317, 1, 0, 0, 0, 3903, 3904, 5, 11, 0, 0, 3904, 3906, 3, 824, 412, 0, 3905, 3903, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 319, 1, 0, 0, 0, 3909, 3911, 5, 358, 0, 0, 3910, 3912, 5, 92, 0, 0, 3911, 3910, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3918, 3, 322, 161, 0, 3914, 3915, 5, 6, 0, 0, 3915, 3917, 3, 322, 161, 0, 3916, 3914, 1, 0, 0, 0, 3917, 3920, 1, 0, 0, 0, 3918, 3916, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3923, 1, 0, 0, 0, 3920, 3918, 1, 0, 0, 0, 3921, 3922, 7, 47, 0, 0, 3922, 3924, 5, 219, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3926, 1, 0, 0, 0, 3925, 3927, 3, 96, 48, 0, 3926, 3925, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 321, 1, 0, 0, 0, 3928, 3930, 5, 81, 0, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3933, 3, 774, 387, 0, 3932, 3934, 5, 9, 0, 0, 3933, 3932, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 323, 1, 0, 0, 0, 3935, 3936, 5, 159, 0, 0, 3936, 3995, 5, 80, 0, 0, 3937, 3996, 3, 310, 155, 0, 3938, 3996, 3, 312, 156, 0, 3939, 3940, 5, 44, 0, 0, 3940, 3942, 3, 818, 409, 0, 3941, 3943, 3, 318, 159, 0, 3942, 3941, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 3944, 1, 0, 0, 0, 3944, 3945, 5, 11, 0, 0, 3945, 3946, 3, 800, 400, 0, 3946, 3996, 1, 0, 0, 0, 3947, 3948, 7, 32, 0, 0, 3948, 3996, 3, 652, 326, 0, 3949, 3950, 5, 136, 0, 0, 3950, 3996, 3, 394, 197, 0, 3951, 3952, 5, 211, 0, 0, 3952, 3996, 3, 382, 191, 0, 3953, 3954, 5, 278, 0, 0, 3954, 3996, 3, 416, 208, 0, 3955, 3956, 5, 45, 0, 0, 3956, 3957, 3, 818, 409, 0, 3957, 3963, 5, 80, 0, 0, 3958, 3964, 3, 774, 387, 0, 3959, 3961, 5, 189, 0, 0, 3960, 3959, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 3964, 3, 316, 158, 0, 3963, 3958, 1, 0, 0, 0, 3963, 3960, 1, 0, 0, 0, 3964, 3996, 1, 0, 0, 0, 3965, 3966, 7, 44, 0, 0, 3966, 3967, 3, 818, 409, 0, 3967, 3968, 5, 80, 0, 0, 3968, 3969, 3, 316, 158, 0, 3969, 3996, 1, 0, 0, 0, 3970, 3971, 5, 296, 0, 0, 3971, 3996, 3, 378, 189, 0, 3972, 3973, 5, 442, 0, 0, 3973, 3996, 3, 374, 187, 0, 3974, 3975, 5, 443, 0, 0, 3975, 3976, 5, 62, 0, 0, 3976, 3977, 3, 652, 326, 0, 3977, 3978, 5, 247, 0, 0, 3978, 3979, 3, 818, 409, 0, 3979, 3996, 1, 0, 0, 0, 3980, 3981, 5, 278, 0, 0, 3981, 3982, 7, 31, 0, 0, 3982, 3983, 3, 316, 158, 0, 3983, 3984, 3, 170, 85, 0, 3984, 3996, 1, 0, 0, 0, 3985, 3986, 5, 248, 0, 0, 3986, 3987, 5, 274, 0, 0, 3987, 3996, 3, 202, 101, 0, 3988, 3989, 5, 41, 0, 0, 3989, 3990, 5, 2, 0, 0, 3990, 3991, 3, 652, 326, 0, 3991, 3992, 5, 36, 0, 0, 3992, 3993, 3, 652, 326, 0, 3993, 3994, 5, 3, 0, 0, 3994, 3996, 1, 0, 0, 0, 3995, 3937, 1, 0, 0, 0, 3995, 3938, 1, 0, 0, 0, 3995, 3939, 1, 0, 0, 0, 3995, 3947, 1, 0, 0, 0, 3995, 3949, 1, 0, 0, 0, 3995, 3951, 1, 0, 0, 0, 3995, 3953, 1, 0, 0, 0, 3995, 3955, 1, 0, 0, 0, 3995, 3965, 1, 0, 0, 0, 3995, 3970, 1, 0, 0, 0, 3995, 3972, 1, 0, 0, 0, 3995, 3974, 1, 0, 0, 0, 3995, 3980, 1, 0, 0, 0, 3995, 3985, 1, 0, 0, 0, 3995, 3988, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 4000, 5, 116, 0, 0, 3998, 4001, 3, 808, 404, 0, 3999, 4001, 5, 78, 0, 0, 4000, 3998, 1, 0, 0, 0, 4000, 3999, 1, 0, 0, 0, 4001, 325, 1, 0, 0, 0, 4002, 4003, 5, 327, 0, 0, 4003, 4006, 5, 246, 0, 0, 4004, 4005, 5, 62, 0, 0, 4005, 4007, 3, 58, 29, 0, 4006, 4004, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4008, 1, 0, 0, 0, 4008, 4026, 5, 80, 0, 0, 4009, 4010, 7, 32, 0, 0, 4010, 4027, 3, 652, 326, 0, 4011, 4012, 5, 136, 0, 0, 4012, 4027, 3, 394, 197, 0, 4013, 4014, 5, 44, 0, 0, 4014, 4027, 3, 800, 400, 0, 4015, 4016, 5, 211, 0, 0, 4016, 4027, 3, 382, 191, 0, 4017, 4018, 5, 248, 0, 0, 4018, 4019, 5, 274, 0, 0, 4019, 4027, 3, 202, 101, 0, 4020, 4021, 5, 296, 0, 0, 4021, 4027, 3, 378, 189, 0, 4022, 4023, 5, 442, 0, 0, 4023, 4027, 3, 374, 187, 0, 4024, 4027, 3, 310, 155, 0, 4025, 4027, 3, 312, 156, 0, 4026, 4009, 1, 0, 0, 0, 4026, 4011, 1, 0, 0, 0, 4026, 4013, 1, 0, 0, 0, 4026, 4015, 1, 0, 0, 0, 4026, 4017, 1, 0, 0, 0, 4026, 4020, 1, 0, 0, 0, 4026, 4022, 1, 0, 0, 0, 4026, 4024, 1, 0, 0, 0, 4026, 4025, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4031, 5, 116, 0, 0, 4029, 4032, 3, 808, 404, 0, 4030, 4032, 5, 78, 0, 0, 4031, 4029, 1, 0, 0, 0, 4031, 4030, 1, 0, 0, 0, 4032, 327, 1, 0, 0, 0, 4033, 4034, 7, 48, 0, 0, 4034, 4035, 3, 330, 165, 0, 4035, 329, 1, 0, 0, 0, 4036, 4038, 7, 49, 0, 0, 4037, 4036, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4040, 1, 0, 0, 0, 4039, 4041, 3, 332, 166, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4080, 3, 818, 409, 0, 4043, 4045, 7, 50, 0, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4048, 3, 812, 406, 0, 4047, 4049, 3, 332, 166, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4051, 3, 818, 409, 0, 4051, 4080, 1, 0, 0, 0, 4052, 4054, 5, 210, 0, 0, 4053, 4055, 3, 812, 406, 0, 4054, 4053, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4057, 1, 0, 0, 0, 4056, 4058, 3, 332, 166, 0, 4057, 4056, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4059, 1, 0, 0, 0, 4059, 4080, 3, 818, 409, 0, 4060, 4062, 5, 210, 0, 0, 4061, 4060, 1, 0, 0, 0, 4061, 4062, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4065, 5, 30, 0, 0, 4064, 4066, 3, 332, 166, 0, 4065, 4064, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4080, 3, 818, 409, 0, 4068, 4073, 5, 144, 0, 0, 4069, 4071, 5, 30, 0, 0, 4070, 4069, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4074, 1, 0, 0, 0, 4072, 4074, 3, 812, 406, 0, 4073, 4070, 1, 0, 0, 0, 4073, 4072, 1, 0, 0, 0, 4074, 4076, 1, 0, 0, 0, 4075, 4077, 3, 332, 166, 0, 4076, 4075, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4080, 3, 818, 409, 0, 4079, 4037, 1, 0, 0, 0, 4079, 4044, 1, 0, 0, 0, 4079, 4052, 1, 0, 0, 0, 4079, 4061, 1, 0, 0, 0, 4079, 4068, 1, 0, 0, 0, 4080, 331, 1, 0, 0, 0, 4081, 4082, 7, 51, 0, 0, 4082, 333, 1, 0, 0, 0, 4083, 4084, 5, 65, 0, 0, 4084, 4085, 3, 338, 169, 0, 4085, 4086, 5, 80, 0, 0, 4086, 4087, 3, 344, 172, 0, 4087, 4088, 5, 94, 0, 0, 4088, 4092, 3, 346, 173, 0, 4089, 4090, 5, 105, 0, 0, 4090, 4091, 5, 65, 0, 0, 4091, 4093, 5, 279, 0, 0, 4092, 4089, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 335, 1, 0, 0, 0, 4094, 4098, 5, 317, 0, 0, 4095, 4096, 5, 65, 0, 0, 4096, 4097, 5, 279, 0, 0, 4097, 4099, 5, 62, 0, 0, 4098, 4095, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, 0, 4100, 4101, 3, 338, 169, 0, 4101, 4102, 5, 80, 0, 0, 4102, 4103, 3, 344, 172, 0, 4103, 4104, 5, 64, 0, 0, 4104, 4106, 3, 346, 173, 0, 4105, 4107, 3, 96, 48, 0, 4106, 4105, 1, 0, 0, 0, 4106, 4107, 1, 0, 0, 0, 4107, 337, 1, 0, 0, 0, 4108, 4113, 3, 342, 171, 0, 4109, 4110, 5, 6, 0, 0, 4110, 4112, 3, 342, 171, 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, 4132, 1, 0, 0, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4118, 5, 30, 0, 0, 4117, 4119, 5, 294, 0, 0, 4118, 4117, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 144, 72, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4132, 1, 0, 0, 0, 4123, 4128, 3, 340, 170, 0, 4124, 4125, 5, 6, 0, 0, 4125, 4127, 3, 340, 170, 0, 4126, 4124, 1, 0, 0, 0, 4127, 4130, 1, 0, 0, 0, 4128, 4126, 1, 0, 0, 0, 4128, 4129, 1, 0, 0, 0, 4129, 4132, 1, 0, 0, 0, 4130, 4128, 1, 0, 0, 0, 4131, 4108, 1, 0, 0, 0, 4131, 4116, 1, 0, 0, 0, 4131, 4123, 1, 0, 0, 0, 4132, 339, 1, 0, 0, 0, 4133, 4134, 7, 52, 0, 0, 4134, 341, 1, 0, 0, 0, 4135, 4140, 5, 88, 0, 0, 4136, 4140, 5, 86, 0, 0, 4137, 4140, 5, 46, 0, 0, 4138, 4140, 3, 818, 409, 0, 4139, 4135, 1, 0, 0, 0, 4139, 4136, 1, 0, 0, 0, 4139, 4137, 1, 0, 0, 0, 4139, 4138, 1, 0, 0, 0, 4140, 4142, 1, 0, 0, 0, 4141, 4143, 3, 144, 72, 0, 4142, 4141, 1, 0, 0, 0, 4142, 4143, 1, 0, 0, 0, 4143, 343, 1, 0, 0, 0, 4144, 4145, 5, 92, 0, 0, 4145, 4190, 3, 762, 381, 0, 4146, 4148, 5, 328, 0, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4149, 1, 0, 0, 0, 4149, 4190, 3, 760, 380, 0, 4150, 4154, 5, 63, 0, 0, 4151, 4152, 5, 174, 0, 0, 4152, 4155, 5, 381, 0, 0, 4153, 4155, 5, 331, 0, 0, 4154, 4151, 1, 0, 0, 0, 4154, 4153, 1, 0, 0, 0, 4155, 4158, 1, 0, 0, 0, 4156, 4158, 5, 247, 0, 0, 4157, 4150, 1, 0, 0, 0, 4157, 4156, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 4190, 3, 784, 392, 0, 4160, 4161, 5, 211, 0, 0, 4161, 4190, 3, 380, 190, 0, 4162, 4163, 5, 296, 0, 0, 4163, 4190, 3, 376, 188, 0, 4164, 4165, 5, 442, 0, 0, 4165, 4190, 3, 372, 186, 0, 4166, 4167, 5, 175, 0, 0, 4167, 4190, 3, 766, 383, 0, 4168, 4169, 7, 32, 0, 0, 4169, 4190, 3, 314, 157, 0, 4170, 4171, 5, 248, 0, 0, 4171, 4172, 5, 274, 0, 0, 4172, 4177, 3, 202, 101, 0, 4173, 4174, 5, 6, 0, 0, 4174, 4176, 3, 202, 101, 0, 4175, 4173, 1, 0, 0, 0, 4176, 4179, 1, 0, 0, 0, 4177, 4175, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4190, 1, 0, 0, 0, 4179, 4177, 1, 0, 0, 0, 4180, 4181, 5, 323, 0, 0, 4181, 4190, 3, 764, 382, 0, 4182, 4183, 5, 351, 0, 0, 4183, 4190, 3, 782, 391, 0, 4184, 4185, 5, 30, 0, 0, 4185, 4186, 7, 53, 0, 0, 4186, 4187, 5, 68, 0, 0, 4187, 4188, 5, 323, 0, 0, 4188, 4190, 3, 764, 382, 0, 4189, 4144, 1, 0, 0, 0, 4189, 4147, 1, 0, 0, 0, 4189, 4157, 1, 0, 0, 0, 4189, 4160, 1, 0, 0, 0, 4189, 4162, 1, 0, 0, 0, 4189, 4164, 1, 0, 0, 0, 4189, 4166, 1, 0, 0, 0, 4189, 4168, 1, 0, 0, 0, 4189, 4170, 1, 0, 0, 0, 4189, 4180, 1, 0, 0, 0, 4189, 4182, 1, 0, 0, 0, 4189, 4184, 1, 0, 0, 0, 4190, 345, 1, 0, 0, 0, 4191, 4193, 5, 66, 0, 0, 4192, 4191, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 4194, 1, 0, 0, 0, 4194, 4195, 3, 814, 407, 0, 4195, 4203, 1, 0, 0, 0, 4196, 4198, 5, 6, 0, 0, 4197, 4199, 5, 66, 0, 0, 4198, 4197, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4202, 3, 814, 407, 0, 4201, 4196, 1, 0, 0, 0, 4202, 4205, 1, 0, 0, 0, 4203, 4201, 1, 0, 0, 0, 4203, 4204, 1, 0, 0, 0, 4204, 347, 1, 0, 0, 0, 4205, 4203, 1, 0, 0, 0, 4206, 4207, 5, 65, 0, 0, 4207, 4212, 3, 342, 171, 0, 4208, 4209, 5, 6, 0, 0, 4209, 4211, 3, 342, 171, 0, 4210, 4208, 1, 0, 0, 0, 4211, 4214, 1, 0, 0, 0, 4212, 4210, 1, 0, 0, 0, 4212, 4213, 1, 0, 0, 0, 4213, 4215, 1, 0, 0, 0, 4214, 4212, 1, 0, 0, 0, 4215, 4216, 5, 94, 0, 0, 4216, 4220, 3, 816, 408, 0, 4217, 4218, 5, 105, 0, 0, 4218, 4219, 5, 134, 0, 0, 4219, 4221, 5, 279, 0, 0, 4220, 4217, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4225, 1, 0, 0, 0, 4222, 4223, 5, 214, 0, 0, 4223, 4224, 5, 147, 0, 0, 4224, 4226, 3, 814, 407, 0, 4225, 4222, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 349, 1, 0, 0, 0, 4227, 4231, 5, 317, 0, 0, 4228, 4229, 5, 134, 0, 0, 4229, 4230, 5, 279, 0, 0, 4230, 4232, 5, 62, 0, 0, 4231, 4228, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4233, 1, 0, 0, 0, 4233, 4238, 3, 342, 171, 0, 4234, 4235, 5, 6, 0, 0, 4235, 4237, 3, 342, 171, 0, 4236, 4234, 1, 0, 0, 0, 4237, 4240, 1, 0, 0, 0, 4238, 4236, 1, 0, 0, 0, 4238, 4239, 1, 0, 0, 0, 4239, 4241, 1, 0, 0, 0, 4240, 4238, 1, 0, 0, 0, 4241, 4242, 5, 64, 0, 0, 4242, 4246, 3, 816, 408, 0, 4243, 4244, 5, 214, 0, 0, 4244, 4245, 5, 147, 0, 0, 4245, 4247, 3, 814, 407, 0, 4246, 4243, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 4249, 1, 0, 0, 0, 4248, 4250, 3, 96, 48, 0, 4249, 4248, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, 0, 4250, 351, 1, 0, 0, 0, 4251, 4252, 5, 138, 0, 0, 4252, 4253, 5, 53, 0, 0, 4253, 4262, 5, 294, 0, 0, 4254, 4255, 5, 68, 0, 0, 4255, 4256, 5, 323, 0, 0, 4256, 4261, 3, 764, 382, 0, 4257, 4258, 5, 62, 0, 0, 4258, 4259, 7, 2, 0, 0, 4259, 4261, 3, 816, 408, 0, 4260, 4254, 1, 0, 0, 0, 4260, 4257, 1, 0, 0, 0, 4261, 4264, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4265, 1, 0, 0, 0, 4264, 4262, 1, 0, 0, 0, 4265, 4266, 3, 354, 177, 0, 4266, 353, 1, 0, 0, 0, 4267, 4268, 5, 65, 0, 0, 4268, 4269, 3, 338, 169, 0, 4269, 4270, 5, 80, 0, 0, 4270, 4271, 3, 356, 178, 0, 4271, 4272, 5, 94, 0, 0, 4272, 4276, 3, 346, 173, 0, 4273, 4274, 5, 105, 0, 0, 4274, 4275, 5, 65, 0, 0, 4275, 4277, 5, 279, 0, 0, 4276, 4273, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 4293, 1, 0, 0, 0, 4278, 4282, 5, 317, 0, 0, 4279, 4280, 5, 65, 0, 0, 4280, 4281, 5, 279, 0, 0, 4281, 4283, 5, 62, 0, 0, 4282, 4279, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4285, 3, 338, 169, 0, 4285, 4286, 5, 80, 0, 0, 4286, 4287, 3, 356, 178, 0, 4287, 4288, 5, 64, 0, 0, 4288, 4290, 3, 346, 173, 0, 4289, 4291, 3, 96, 48, 0, 4290, 4289, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4293, 1, 0, 0, 0, 4292, 4267, 1, 0, 0, 0, 4292, 4278, 1, 0, 0, 0, 4293, 355, 1, 0, 0, 0, 4294, 4295, 7, 54, 0, 0, 4295, 357, 1, 0, 0, 0, 4296, 4298, 5, 46, 0, 0, 4297, 4299, 5, 98, 0, 0, 4298, 4297, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 4302, 5, 226, 0, 0, 4301, 4303, 5, 109, 0, 0, 4302, 4301, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4305, 1, 0, 0, 0, 4304, 4306, 3, 294, 147, 0, 4305, 4304, 1, 0, 0, 0, 4305, 4306, 1, 0, 0, 0, 4306, 4308, 1, 0, 0, 0, 4307, 4309, 3, 818, 409, 0, 4308, 4307, 1, 0, 0, 0, 4308, 4309, 1, 0, 0, 0, 4309, 4310, 1, 0, 0, 0, 4310, 4311, 5, 80, 0, 0, 4311, 4313, 3, 624, 312, 0, 4312, 4314, 3, 170, 85, 0, 4313, 4312, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 4315, 1, 0, 0, 0, 4315, 4318, 3, 360, 180, 0, 4316, 4317, 5, 441, 0, 0, 4317, 4319, 3, 360, 180, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4325, 1, 0, 0, 0, 4320, 4322, 5, 273, 0, 0, 4321, 4323, 5, 77, 0, 0, 4322, 4321, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 4326, 5, 56, 0, 0, 4325, 4320, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4328, 1, 0, 0, 0, 4327, 4329, 3, 102, 51, 0, 4328, 4327, 1, 0, 0, 0, 4328, 4329, 1, 0, 0, 0, 4329, 4331, 1, 0, 0, 0, 4330, 4332, 3, 176, 88, 0, 4331, 4330, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4334, 1, 0, 0, 0, 4333, 4335, 3, 638, 319, 0, 4334, 4333, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 359, 1, 0, 0, 0, 4336, 4337, 5, 2, 0, 0, 4337, 4342, 3, 362, 181, 0, 4338, 4339, 5, 6, 0, 0, 4339, 4341, 3, 362, 181, 0, 4340, 4338, 1, 0, 0, 0, 4341, 4344, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4345, 4346, 5, 3, 0, 0, 4346, 361, 1, 0, 0, 0, 4347, 4354, 3, 800, 400, 0, 4348, 4354, 3, 688, 344, 0, 4349, 4350, 5, 2, 0, 0, 4350, 4351, 3, 674, 337, 0, 4351, 4352, 5, 3, 0, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4347, 1, 0, 0, 0, 4353, 4348, 1, 0, 0, 0, 4353, 4349, 1, 0, 0, 0, 4354, 4356, 1, 0, 0, 0, 4355, 4357, 3, 98, 49, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4364, 1, 0, 0, 0, 4358, 4360, 3, 316, 158, 0, 4359, 4358, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 4365, 1, 0, 0, 0, 4361, 4362, 3, 316, 158, 0, 4362, 4363, 3, 100, 50, 0, 4363, 4365, 1, 0, 0, 0, 4364, 4359, 1, 0, 0, 0, 4364, 4361, 1, 0, 0, 0, 4365, 4367, 1, 0, 0, 0, 4366, 4368, 7, 55, 0, 0, 4367, 4366, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4371, 1, 0, 0, 0, 4369, 4370, 5, 273, 0, 0, 4370, 4372, 7, 56, 0, 0, 4371, 4369, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 363, 1, 0, 0, 0, 4373, 4375, 5, 46, 0, 0, 4374, 4376, 3, 366, 183, 0, 4375, 4374, 1, 0, 0, 0, 4375, 4376, 1, 0, 0, 0, 4376, 4381, 1, 0, 0, 0, 4377, 4378, 5, 211, 0, 0, 4378, 4382, 3, 804, 402, 0, 4379, 4380, 5, 296, 0, 0, 4380, 4382, 3, 798, 399, 0, 4381, 4377, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4392, 5, 2, 0, 0, 4384, 4389, 3, 390, 195, 0, 4385, 4386, 5, 6, 0, 0, 4386, 4388, 3, 390, 195, 0, 4387, 4385, 1, 0, 0, 0, 4388, 4391, 1, 0, 0, 0, 4389, 4387, 1, 0, 0, 0, 4389, 4390, 1, 0, 0, 0, 4390, 4393, 1, 0, 0, 0, 4391, 4389, 1, 0, 0, 0, 4392, 4384, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 4394, 1, 0, 0, 0, 4394, 4395, 5, 3, 0, 0, 4395, 4412, 1, 0, 0, 0, 4396, 4410, 5, 316, 0, 0, 4397, 4411, 3, 388, 194, 0, 4398, 4399, 5, 92, 0, 0, 4399, 4400, 5, 2, 0, 0, 4400, 4405, 3, 402, 201, 0, 4401, 4402, 5, 6, 0, 0, 4402, 4404, 3, 402, 201, 0, 4403, 4401, 1, 0, 0, 0, 4404, 4407, 1, 0, 0, 0, 4405, 4403, 1, 0, 0, 0, 4405, 4406, 1, 0, 0, 0, 4406, 4408, 1, 0, 0, 0, 4407, 4405, 1, 0, 0, 0, 4408, 4409, 5, 3, 0, 0, 4409, 4411, 1, 0, 0, 0, 4410, 4397, 1, 0, 0, 0, 4410, 4398, 1, 0, 0, 0, 4411, 4413, 1, 0, 0, 0, 4412, 4396, 1, 0, 0, 0, 4412, 4413, 1, 0, 0, 0, 4413, 4415, 1, 0, 0, 0, 4414, 4416, 3, 398, 199, 0, 4415, 4414, 1, 0, 0, 0, 4416, 4417, 1, 0, 0, 0, 4417, 4415, 1, 0, 0, 0, 4417, 4418, 1, 0, 0, 0, 4418, 4424, 1, 0, 0, 0, 4419, 4420, 5, 105, 0, 0, 4420, 4421, 5, 2, 0, 0, 4421, 4422, 3, 784, 392, 0, 4422, 4423, 5, 3, 0, 0, 4423, 4425, 1, 0, 0, 0, 4424, 4419, 1, 0, 0, 0, 4424, 4425, 1, 0, 0, 0, 4425, 365, 1, 0, 0, 0, 4426, 4427, 5, 82, 0, 0, 4427, 4428, 5, 311, 0, 0, 4428, 367, 1, 0, 0, 0, 4429, 4431, 5, 2, 0, 0, 4430, 4432, 3, 370, 185, 0, 4431, 4430, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 4433, 1, 0, 0, 0, 4433, 4434, 5, 3, 0, 0, 4434, 369, 1, 0, 0, 0, 4435, 4440, 3, 384, 192, 0, 4436, 4437, 5, 6, 0, 0, 4437, 4439, 3, 384, 192, 0, 4438, 4436, 1, 0, 0, 0, 4439, 4442, 1, 0, 0, 0, 4440, 4438, 1, 0, 0, 0, 4440, 4441, 1, 0, 0, 0, 4441, 371, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4443, 4448, 3, 374, 187, 0, 4444, 4445, 5, 6, 0, 0, 4445, 4447, 3, 374, 187, 0, 4446, 4444, 1, 0, 0, 0, 4447, 4450, 1, 0, 0, 0, 4448, 4446, 1, 0, 0, 0, 4448, 4449, 1, 0, 0, 0, 4449, 373, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4451, 4452, 3, 794, 397, 0, 4452, 4453, 3, 368, 184, 0, 4453, 4457, 1, 0, 0, 0, 4454, 4457, 3, 832, 416, 0, 4455, 4457, 3, 780, 390, 0, 4456, 4451, 1, 0, 0, 0, 4456, 4454, 1, 0, 0, 0, 4456, 4455, 1, 0, 0, 0, 4457, 375, 1, 0, 0, 0, 4458, 4463, 3, 378, 189, 0, 4459, 4460, 5, 6, 0, 0, 4460, 4462, 3, 378, 189, 0, 4461, 4459, 1, 0, 0, 0, 4462, 4465, 1, 0, 0, 0, 4463, 4461, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 377, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4466, 4467, 3, 796, 398, 0, 4467, 4468, 3, 368, 184, 0, 4468, 4472, 1, 0, 0, 0, 4469, 4472, 3, 832, 416, 0, 4470, 4472, 3, 780, 390, 0, 4471, 4466, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4471, 4470, 1, 0, 0, 0, 4472, 379, 1, 0, 0, 0, 4473, 4478, 3, 382, 191, 0, 4474, 4475, 5, 6, 0, 0, 4475, 4477, 3, 382, 191, 0, 4476, 4474, 1, 0, 0, 0, 4477, 4480, 1, 0, 0, 0, 4478, 4476, 1, 0, 0, 0, 4478, 4479, 1, 0, 0, 0, 4479, 381, 1, 0, 0, 0, 4480, 4478, 1, 0, 0, 0, 4481, 4482, 3, 806, 403, 0, 4482, 4483, 3, 368, 184, 0, 4483, 4487, 1, 0, 0, 0, 4484, 4487, 3, 832, 416, 0, 4485, 4487, 3, 780, 390, 0, 4486, 4481, 1, 0, 0, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 383, 1, 0, 0, 0, 4488, 4490, 3, 386, 193, 0, 4489, 4491, 3, 820, 410, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4497, 1, 0, 0, 0, 4492, 4494, 3, 820, 410, 0, 4493, 4495, 3, 386, 193, 0, 4494, 4493, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4497, 1, 0, 0, 0, 4496, 4488, 1, 0, 0, 0, 4496, 4492, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4498, 1, 0, 0, 0, 4498, 4499, 3, 388, 194, 0, 4499, 385, 1, 0, 0, 0, 4500, 4502, 5, 68, 0, 0, 4501, 4503, 5, 453, 0, 0, 4502, 4501, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 4508, 1, 0, 0, 0, 4504, 4508, 5, 453, 0, 0, 4505, 4508, 5, 400, 0, 0, 4506, 4508, 5, 101, 0, 0, 4507, 4500, 1, 0, 0, 0, 4507, 4504, 1, 0, 0, 0, 4507, 4505, 1, 0, 0, 0, 4507, 4506, 1, 0, 0, 0, 4508, 387, 1, 0, 0, 0, 4509, 4519, 3, 652, 326, 0, 4510, 4512, 5, 415, 0, 0, 4511, 4510, 1, 0, 0, 0, 4511, 4512, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4514, 3, 820, 410, 0, 4514, 4515, 3, 318, 159, 0, 4515, 4516, 5, 27, 0, 0, 4516, 4517, 5, 360, 0, 0, 4517, 4519, 1, 0, 0, 0, 4518, 4509, 1, 0, 0, 0, 4518, 4511, 1, 0, 0, 0, 4519, 389, 1, 0, 0, 0, 4520, 4523, 3, 384, 192, 0, 4521, 4522, 7, 57, 0, 0, 4522, 4524, 3, 674, 337, 0, 4523, 4521, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 391, 1, 0, 0, 0, 4525, 4535, 5, 2, 0, 0, 4526, 4536, 5, 9, 0, 0, 4527, 4529, 3, 370, 185, 0, 4528, 4527, 1, 0, 0, 0, 4528, 4529, 1, 0, 0, 0, 4529, 4533, 1, 0, 0, 0, 4530, 4531, 5, 83, 0, 0, 4531, 4532, 5, 147, 0, 0, 4532, 4534, 3, 370, 185, 0, 4533, 4530, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 4536, 1, 0, 0, 0, 4535, 4526, 1, 0, 0, 0, 4535, 4528, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 4538, 5, 3, 0, 0, 4538, 393, 1, 0, 0, 0, 4539, 4540, 3, 806, 403, 0, 4540, 4541, 3, 392, 196, 0, 4541, 395, 1, 0, 0, 0, 4542, 4543, 5, 316, 0, 0, 4543, 4546, 5, 78, 0, 0, 4544, 4546, 5, 149, 0, 0, 4545, 4542, 1, 0, 0, 0, 4545, 4544, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 4548, 5, 80, 0, 0, 4548, 4549, 5, 78, 0, 0, 4549, 4572, 5, 458, 0, 0, 4550, 4572, 5, 346, 0, 0, 4551, 4572, 5, 222, 0, 0, 4552, 4572, 5, 338, 0, 0, 4553, 4572, 5, 377, 0, 0, 4554, 4556, 5, 205, 0, 0, 4555, 4554, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4558, 5, 327, 0, 0, 4558, 4572, 7, 58, 0, 0, 4559, 4572, 5, 250, 0, 0, 4560, 4561, 5, 77, 0, 0, 4561, 4572, 5, 250, 0, 0, 4562, 4563, 7, 59, 0, 0, 4563, 4572, 3, 202, 101, 0, 4564, 4565, 5, 459, 0, 0, 4565, 4572, 3, 316, 158, 0, 4566, 4567, 5, 333, 0, 0, 4567, 4572, 3, 42, 21, 0, 4568, 4572, 3, 60, 30, 0, 4569, 4570, 5, 460, 0, 0, 4570, 4572, 3, 818, 409, 0, 4571, 4545, 1, 0, 0, 0, 4571, 4550, 1, 0, 0, 0, 4571, 4551, 1, 0, 0, 0, 4571, 4552, 1, 0, 0, 0, 4571, 4553, 1, 0, 0, 0, 4571, 4555, 1, 0, 0, 0, 4571, 4559, 1, 0, 0, 0, 4571, 4560, 1, 0, 0, 0, 4571, 4562, 1, 0, 0, 0, 4571, 4564, 1, 0, 0, 0, 4571, 4566, 1, 0, 0, 0, 4571, 4568, 1, 0, 0, 0, 4571, 4569, 1, 0, 0, 0, 4572, 397, 1, 0, 0, 0, 4573, 4574, 5, 36, 0, 0, 4574, 4575, 3, 808, 404, 0, 4575, 4576, 3, 462, 231, 0, 4576, 4609, 1, 0, 0, 0, 4577, 4578, 5, 247, 0, 0, 4578, 4609, 3, 58, 29, 0, 4579, 4580, 5, 443, 0, 0, 4580, 4581, 5, 62, 0, 0, 4581, 4582, 5, 360, 0, 0, 4582, 4589, 3, 652, 326, 0, 4583, 4584, 5, 6, 0, 0, 4584, 4585, 5, 62, 0, 0, 4585, 4586, 5, 360, 0, 0, 4586, 4588, 3, 652, 326, 0, 4587, 4583, 1, 0, 0, 0, 4588, 4591, 1, 0, 0, 0, 4589, 4587, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4609, 1, 0, 0, 0, 4591, 4589, 1, 0, 0, 0, 4592, 4609, 5, 104, 0, 0, 4593, 4594, 5, 333, 0, 0, 4594, 4601, 3, 818, 409, 0, 4595, 4596, 5, 94, 0, 0, 4596, 4602, 3, 818, 409, 0, 4597, 4598, 5, 10, 0, 0, 4598, 4602, 3, 818, 409, 0, 4599, 4600, 5, 64, 0, 0, 4600, 4602, 5, 434, 0, 0, 4601, 4595, 1, 0, 0, 0, 4601, 4597, 1, 0, 0, 0, 4601, 4599, 1, 0, 0, 0, 4602, 4609, 1, 0, 0, 0, 4603, 4604, 5, 36, 0, 0, 4604, 4609, 3, 818, 409, 0, 4605, 4609, 3, 4, 2, 0, 4606, 4609, 3, 396, 198, 0, 4607, 4609, 3, 818, 409, 0, 4608, 4573, 1, 0, 0, 0, 4608, 4577, 1, 0, 0, 0, 4608, 4579, 1, 0, 0, 0, 4608, 4592, 1, 0, 0, 0, 4608, 4593, 1, 0, 0, 0, 4608, 4603, 1, 0, 0, 0, 4608, 4605, 1, 0, 0, 0, 4608, 4606, 1, 0, 0, 0, 4608, 4607, 1, 0, 0, 0, 4609, 399, 1, 0, 0, 0, 4610, 4611, 5, 105, 0, 0, 4611, 4612, 3, 284, 142, 0, 4612, 401, 1, 0, 0, 0, 4613, 4614, 3, 800, 400, 0, 4614, 4615, 3, 388, 194, 0, 4615, 403, 1, 0, 0, 0, 4616, 4623, 5, 138, 0, 0, 4617, 4618, 5, 211, 0, 0, 4618, 4624, 3, 382, 191, 0, 4619, 4620, 5, 296, 0, 0, 4620, 4624, 3, 378, 189, 0, 4621, 4622, 5, 442, 0, 0, 4622, 4624, 3, 374, 187, 0, 4623, 4617, 1, 0, 0, 0, 4623, 4619, 1, 0, 0, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4626, 1, 0, 0, 0, 4625, 4627, 3, 396, 198, 0, 4626, 4625, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 4626, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4631, 1, 0, 0, 0, 4630, 4632, 5, 315, 0, 0, 4631, 4630, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 405, 1, 0, 0, 0, 4633, 4649, 5, 191, 0, 0, 4634, 4636, 5, 211, 0, 0, 4635, 4637, 3, 422, 211, 0, 4636, 4635, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4650, 3, 380, 190, 0, 4639, 4641, 5, 296, 0, 0, 4640, 4642, 3, 422, 211, 0, 4641, 4640, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 4643, 1, 0, 0, 0, 4643, 4650, 3, 376, 188, 0, 4644, 4646, 5, 442, 0, 0, 4645, 4647, 3, 422, 211, 0, 4646, 4645, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 4650, 3, 372, 186, 0, 4649, 4634, 1, 0, 0, 0, 4649, 4639, 1, 0, 0, 0, 4649, 4644, 1, 0, 0, 0, 4650, 4652, 1, 0, 0, 0, 4651, 4653, 3, 96, 48, 0, 4652, 4651, 1, 0, 0, 0, 4652, 4653, 1, 0, 0, 0, 4653, 407, 1, 0, 0, 0, 4654, 4655, 5, 191, 0, 0, 4655, 4657, 5, 136, 0, 0, 4656, 4658, 3, 422, 211, 0, 4657, 4656, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4659, 1, 0, 0, 0, 4659, 4664, 3, 394, 197, 0, 4660, 4661, 5, 6, 0, 0, 4661, 4663, 3, 394, 197, 0, 4662, 4660, 1, 0, 0, 0, 4663, 4666, 1, 0, 0, 0, 4664, 4662, 1, 0, 0, 0, 4664, 4665, 1, 0, 0, 0, 4665, 4668, 1, 0, 0, 0, 4666, 4664, 1, 0, 0, 0, 4667, 4669, 3, 96, 48, 0, 4668, 4667, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 409, 1, 0, 0, 0, 4670, 4671, 5, 191, 0, 0, 4671, 4673, 5, 278, 0, 0, 4672, 4674, 3, 422, 211, 0, 4673, 4672, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 4680, 3, 416, 208, 0, 4676, 4677, 5, 6, 0, 0, 4677, 4679, 3, 416, 208, 0, 4678, 4676, 1, 0, 0, 0, 4679, 4682, 1, 0, 0, 0, 4680, 4678, 1, 0, 0, 0, 4680, 4681, 1, 0, 0, 0, 4681, 4684, 1, 0, 0, 0, 4682, 4680, 1, 0, 0, 0, 4683, 4685, 3, 96, 48, 0, 4684, 4683, 1, 0, 0, 0, 4684, 4685, 1, 0, 0, 0, 4685, 411, 1, 0, 0, 0, 4686, 4699, 5, 2, 0, 0, 4687, 4690, 3, 652, 326, 0, 4688, 4689, 5, 6, 0, 0, 4689, 4691, 3, 652, 326, 0, 4690, 4688, 1, 0, 0, 0, 4690, 4691, 1, 0, 0, 0, 4691, 4700, 1, 0, 0, 0, 4692, 4693, 5, 407, 0, 0, 4693, 4694, 5, 6, 0, 0, 4694, 4700, 3, 652, 326, 0, 4695, 4696, 3, 652, 326, 0, 4696, 4697, 5, 6, 0, 0, 4697, 4698, 5, 407, 0, 0, 4698, 4700, 1, 0, 0, 0, 4699, 4687, 1, 0, 0, 0, 4699, 4692, 1, 0, 0, 0, 4699, 4695, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4702, 5, 3, 0, 0, 4702, 413, 1, 0, 0, 0, 4703, 4704, 3, 818, 409, 0, 4704, 4705, 5, 11, 0, 0, 4705, 4707, 1, 0, 0, 0, 4706, 4703, 1, 0, 0, 0, 4707, 4710, 1, 0, 0, 0, 4708, 4706, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4711, 1, 0, 0, 0, 4710, 4708, 1, 0, 0, 0, 4711, 4712, 3, 720, 360, 0, 4712, 415, 1, 0, 0, 0, 4713, 4714, 3, 414, 207, 0, 4714, 4715, 3, 412, 206, 0, 4715, 417, 1, 0, 0, 0, 4716, 4720, 5, 57, 0, 0, 4717, 4721, 3, 808, 404, 0, 4718, 4719, 5, 247, 0, 0, 4719, 4721, 3, 58, 29, 0, 4720, 4717, 1, 0, 0, 0, 4720, 4718, 1, 0, 0, 0, 4721, 4722, 1, 0, 0, 0, 4722, 4720, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 419, 1, 0, 0, 0, 4724, 4725, 5, 46, 0, 0, 4725, 4726, 5, 41, 0, 0, 4726, 4727, 5, 2, 0, 0, 4727, 4728, 3, 652, 326, 0, 4728, 4729, 5, 36, 0, 0, 4729, 4730, 3, 652, 326, 0, 4730, 4747, 5, 3, 0, 0, 4731, 4732, 5, 379, 0, 0, 4732, 4735, 5, 211, 0, 0, 4733, 4734, 5, 36, 0, 0, 4734, 4736, 7, 60, 0, 0, 4735, 4733, 1, 0, 0, 0, 4735, 4736, 1, 0, 0, 0, 4736, 4748, 1, 0, 0, 0, 4737, 4741, 5, 105, 0, 0, 4738, 4739, 5, 211, 0, 0, 4739, 4742, 3, 382, 191, 0, 4740, 4742, 5, 400, 0, 0, 4741, 4738, 1, 0, 0, 0, 4741, 4740, 1, 0, 0, 0, 4742, 4745, 1, 0, 0, 0, 4743, 4744, 5, 36, 0, 0, 4744, 4746, 7, 60, 0, 0, 4745, 4743, 1, 0, 0, 0, 4745, 4746, 1, 0, 0, 0, 4746, 4748, 1, 0, 0, 0, 4747, 4731, 1, 0, 0, 0, 4747, 4737, 1, 0, 0, 0, 4748, 421, 1, 0, 0, 0, 4749, 4750, 5, 220, 0, 0, 4750, 4751, 5, 396, 0, 0, 4751, 423, 1, 0, 0, 0, 4752, 4754, 5, 46, 0, 0, 4753, 4755, 3, 366, 183, 0, 4754, 4753, 1, 0, 0, 0, 4754, 4755, 1, 0, 0, 0, 4755, 4756, 1, 0, 0, 0, 4756, 4757, 5, 443, 0, 0, 4757, 4758, 5, 62, 0, 0, 4758, 4759, 3, 652, 326, 0, 4759, 4760, 5, 247, 0, 0, 4760, 4761, 3, 818, 409, 0, 4761, 4776, 5, 2, 0, 0, 4762, 4763, 5, 64, 0, 0, 4763, 4767, 3, 426, 213, 0, 4764, 4765, 5, 6, 0, 0, 4765, 4766, 5, 94, 0, 0, 4766, 4768, 3, 426, 213, 0, 4767, 4764, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4777, 1, 0, 0, 0, 4769, 4770, 5, 94, 0, 0, 4770, 4774, 3, 426, 213, 0, 4771, 4772, 5, 6, 0, 0, 4772, 4773, 5, 64, 0, 0, 4773, 4775, 3, 426, 213, 0, 4774, 4771, 1, 0, 0, 0, 4774, 4775, 1, 0, 0, 0, 4775, 4777, 1, 0, 0, 0, 4776, 4762, 1, 0, 0, 0, 4776, 4769, 1, 0, 0, 0, 4777, 4778, 1, 0, 0, 0, 4778, 4779, 5, 3, 0, 0, 4779, 425, 1, 0, 0, 0, 4780, 4781, 5, 461, 0, 0, 4781, 4782, 5, 105, 0, 0, 4782, 4783, 5, 211, 0, 0, 4783, 4784, 3, 382, 191, 0, 4784, 427, 1, 0, 0, 0, 4785, 4796, 5, 306, 0, 0, 4786, 4787, 5, 2, 0, 0, 4787, 4792, 5, 128, 0, 0, 4788, 4789, 5, 6, 0, 0, 4789, 4791, 5, 128, 0, 0, 4790, 4788, 1, 0, 0, 0, 4791, 4794, 1, 0, 0, 0, 4792, 4790, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 4795, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4797, 5, 3, 0, 0, 4796, 4786, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4823, 1, 0, 0, 0, 4798, 4800, 5, 226, 0, 0, 4799, 4801, 5, 109, 0, 0, 4800, 4799, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4802, 1, 0, 0, 0, 4802, 4824, 3, 780, 390, 0, 4803, 4805, 5, 92, 0, 0, 4804, 4806, 5, 109, 0, 0, 4805, 4804, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 4807, 1, 0, 0, 0, 4807, 4824, 3, 774, 387, 0, 4808, 4810, 5, 323, 0, 0, 4809, 4811, 5, 109, 0, 0, 4810, 4809, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 4812, 1, 0, 0, 0, 4812, 4824, 3, 790, 395, 0, 4813, 4815, 5, 349, 0, 0, 4814, 4816, 5, 109, 0, 0, 4815, 4814, 1, 0, 0, 0, 4815, 4816, 1, 0, 0, 0, 4816, 4817, 1, 0, 0, 0, 4817, 4824, 3, 818, 409, 0, 4818, 4820, 5, 175, 0, 0, 4819, 4821, 5, 109, 0, 0, 4820, 4819, 1, 0, 0, 0, 4820, 4821, 1, 0, 0, 0, 4821, 4822, 1, 0, 0, 0, 4822, 4824, 3, 788, 394, 0, 4823, 4798, 1, 0, 0, 0, 4823, 4803, 1, 0, 0, 0, 4823, 4808, 1, 0, 0, 0, 4823, 4813, 1, 0, 0, 0, 4823, 4818, 1, 0, 0, 0, 4824, 429, 1, 0, 0, 0, 4825, 4826, 5, 138, 0, 0, 4826, 4827, 3, 176, 88, 0, 4827, 4828, 7, 16, 0, 0, 4828, 4829, 3, 100, 50, 0, 4829, 431, 1, 0, 0, 0, 4830, 4835, 5, 138, 0, 0, 4831, 4832, 5, 136, 0, 0, 4832, 4836, 3, 394, 197, 0, 4833, 4834, 5, 442, 0, 0, 4834, 4836, 3, 374, 187, 0, 4835, 4831, 1, 0, 0, 0, 4835, 4833, 1, 0, 0, 0, 4836, 4837, 1, 0, 0, 0, 4837, 4838, 5, 309, 0, 0, 4838, 4839, 5, 94, 0, 0, 4839, 4840, 3, 818, 409, 0, 4840, 5038, 1, 0, 0, 0, 4841, 4842, 5, 138, 0, 0, 4842, 4843, 5, 175, 0, 0, 4843, 4844, 3, 788, 394, 0, 4844, 4845, 5, 309, 0, 0, 4845, 4846, 5, 94, 0, 0, 4846, 4847, 3, 786, 393, 0, 4847, 5038, 1, 0, 0, 0, 4848, 4849, 5, 138, 0, 0, 4849, 4850, 7, 61, 0, 0, 4850, 4851, 3, 316, 158, 0, 4851, 4852, 5, 309, 0, 0, 4852, 4853, 5, 94, 0, 0, 4853, 4854, 3, 818, 409, 0, 4854, 5038, 1, 0, 0, 0, 4855, 4856, 5, 138, 0, 0, 4856, 4857, 5, 211, 0, 0, 4857, 4858, 3, 382, 191, 0, 4858, 4859, 5, 309, 0, 0, 4859, 4860, 5, 94, 0, 0, 4860, 4861, 3, 804, 402, 0, 4861, 5038, 1, 0, 0, 0, 4862, 4863, 5, 138, 0, 0, 4863, 4864, 5, 278, 0, 0, 4864, 4865, 7, 31, 0, 0, 4865, 4866, 3, 316, 158, 0, 4866, 4867, 3, 170, 85, 0, 4867, 4868, 5, 309, 0, 0, 4868, 4869, 5, 94, 0, 0, 4869, 4870, 3, 818, 409, 0, 4870, 5038, 1, 0, 0, 0, 4871, 4872, 5, 138, 0, 0, 4872, 4873, 5, 296, 0, 0, 4873, 4874, 3, 378, 189, 0, 4874, 4875, 5, 309, 0, 0, 4875, 4876, 5, 94, 0, 0, 4876, 4877, 3, 798, 399, 0, 4877, 5038, 1, 0, 0, 0, 4878, 4879, 5, 138, 0, 0, 4879, 4880, 5, 323, 0, 0, 4880, 4881, 3, 790, 395, 0, 4881, 4882, 5, 309, 0, 0, 4882, 4883, 5, 94, 0, 0, 4883, 4884, 3, 32, 16, 0, 4884, 5038, 1, 0, 0, 0, 4885, 4886, 5, 138, 0, 0, 4886, 4888, 7, 62, 0, 0, 4887, 4889, 3, 422, 211, 0, 4888, 4887, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 3, 780, 390, 0, 4891, 4892, 5, 309, 0, 0, 4892, 4893, 5, 94, 0, 0, 4893, 4894, 3, 818, 409, 0, 4894, 5038, 1, 0, 0, 0, 4895, 4897, 5, 138, 0, 0, 4896, 4898, 5, 259, 0, 0, 4897, 4896, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4901, 5, 376, 0, 0, 4900, 4902, 3, 422, 211, 0, 4901, 4900, 1, 0, 0, 0, 4901, 4902, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 3, 778, 389, 0, 4904, 4905, 5, 309, 0, 0, 4905, 4906, 5, 94, 0, 0, 4906, 4907, 3, 776, 388, 0, 4907, 5038, 1, 0, 0, 0, 4908, 4910, 5, 138, 0, 0, 4909, 4911, 5, 63, 0, 0, 4910, 4909, 1, 0, 0, 0, 4910, 4911, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4914, 5, 92, 0, 0, 4913, 4915, 3, 422, 211, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4917, 3, 624, 312, 0, 4917, 4918, 5, 309, 0, 0, 4918, 4919, 5, 94, 0, 0, 4919, 4920, 3, 772, 386, 0, 4920, 5038, 1, 0, 0, 0, 4921, 4946, 5, 138, 0, 0, 4922, 4924, 5, 63, 0, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4925, 1, 0, 0, 0, 4925, 4927, 5, 92, 0, 0, 4926, 4928, 3, 422, 211, 0, 4927, 4926, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4930, 3, 624, 312, 0, 4930, 4932, 5, 309, 0, 0, 4931, 4933, 5, 44, 0, 0, 4932, 4931, 1, 0, 0, 0, 4932, 4933, 1, 0, 0, 0, 4933, 4947, 1, 0, 0, 0, 4934, 4936, 5, 259, 0, 0, 4935, 4934, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4939, 5, 376, 0, 0, 4938, 4940, 3, 422, 211, 0, 4939, 4938, 1, 0, 0, 0, 4939, 4940, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 4942, 3, 778, 389, 0, 4942, 4944, 5, 309, 0, 0, 4943, 4945, 5, 44, 0, 0, 4944, 4943, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4947, 1, 0, 0, 0, 4946, 4923, 1, 0, 0, 0, 4946, 4935, 1, 0, 0, 0, 4947, 4948, 1, 0, 0, 0, 4948, 4949, 3, 800, 400, 0, 4949, 4950, 5, 94, 0, 0, 4950, 4951, 3, 802, 401, 0, 4951, 5038, 1, 0, 0, 0, 4952, 4960, 5, 138, 0, 0, 4953, 4955, 5, 92, 0, 0, 4954, 4956, 3, 422, 211, 0, 4955, 4954, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 1, 0, 0, 0, 4957, 4961, 3, 624, 312, 0, 4958, 4959, 5, 189, 0, 0, 4959, 4961, 3, 316, 158, 0, 4960, 4953, 1, 0, 0, 0, 4960, 4958, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 4963, 5, 309, 0, 0, 4963, 4964, 5, 45, 0, 0, 4964, 4965, 3, 818, 409, 0, 4965, 4966, 5, 94, 0, 0, 4966, 4967, 3, 818, 409, 0, 4967, 5038, 1, 0, 0, 0, 4968, 4975, 5, 138, 0, 0, 4969, 4971, 5, 445, 0, 0, 4970, 4972, 3, 422, 211, 0, 4971, 4970, 1, 0, 0, 0, 4971, 4972, 1, 0, 0, 0, 4972, 4976, 1, 0, 0, 0, 4973, 4976, 5, 321, 0, 0, 4974, 4976, 5, 357, 0, 0, 4975, 4969, 1, 0, 0, 0, 4975, 4973, 1, 0, 0, 0, 4975, 4974, 1, 0, 0, 0, 4976, 4977, 1, 0, 0, 0, 4977, 4978, 3, 818, 409, 0, 4978, 4979, 5, 80, 0, 0, 4979, 4980, 3, 780, 390, 0, 4980, 4981, 5, 309, 0, 0, 4981, 4982, 5, 94, 0, 0, 4982, 4983, 3, 818, 409, 0, 4983, 5038, 1, 0, 0, 0, 4984, 4997, 5, 138, 0, 0, 4985, 4986, 5, 63, 0, 0, 4986, 4987, 5, 174, 0, 0, 4987, 4998, 5, 381, 0, 0, 4988, 4990, 5, 295, 0, 0, 4989, 4988, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4991, 1, 0, 0, 0, 4991, 4998, 5, 247, 0, 0, 4992, 4998, 5, 452, 0, 0, 4993, 4998, 5, 331, 0, 0, 4994, 4998, 5, 451, 0, 0, 4995, 4996, 5, 198, 0, 0, 4996, 4998, 5, 357, 0, 0, 4997, 4985, 1, 0, 0, 0, 4997, 4989, 1, 0, 0, 0, 4997, 4992, 1, 0, 0, 0, 4997, 4993, 1, 0, 0, 0, 4997, 4994, 1, 0, 0, 0, 4997, 4995, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5000, 3, 818, 409, 0, 5000, 5001, 5, 309, 0, 0, 5001, 5002, 5, 94, 0, 0, 5002, 5003, 3, 818, 409, 0, 5003, 5038, 1, 0, 0, 0, 5004, 5005, 5, 138, 0, 0, 5005, 5006, 7, 45, 0, 0, 5006, 5007, 3, 814, 407, 0, 5007, 5008, 5, 309, 0, 0, 5008, 5009, 5, 94, 0, 0, 5009, 5010, 3, 814, 407, 0, 5010, 5038, 1, 0, 0, 0, 5011, 5012, 5, 138, 0, 0, 5012, 5013, 3, 176, 88, 0, 5013, 5014, 5, 309, 0, 0, 5014, 5015, 5, 94, 0, 0, 5015, 5016, 3, 768, 384, 0, 5016, 5038, 1, 0, 0, 0, 5017, 5018, 5, 138, 0, 0, 5018, 5019, 5, 355, 0, 0, 5019, 5020, 5, 325, 0, 0, 5020, 5021, 7, 41, 0, 0, 5021, 5022, 3, 316, 158, 0, 5022, 5023, 5, 309, 0, 0, 5023, 5024, 5, 94, 0, 0, 5024, 5025, 3, 818, 409, 0, 5025, 5038, 1, 0, 0, 0, 5026, 5027, 5, 138, 0, 0, 5027, 5028, 5, 360, 0, 0, 5028, 5029, 3, 316, 158, 0, 5029, 5030, 5, 309, 0, 0, 5030, 5031, 5, 143, 0, 0, 5031, 5032, 3, 818, 409, 0, 5032, 5033, 5, 94, 0, 0, 5033, 5035, 3, 818, 409, 0, 5034, 5036, 3, 96, 48, 0, 5035, 5034, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5038, 1, 0, 0, 0, 5037, 4830, 1, 0, 0, 0, 5037, 4841, 1, 0, 0, 0, 5037, 4848, 1, 0, 0, 0, 5037, 4855, 1, 0, 0, 0, 5037, 4862, 1, 0, 0, 0, 5037, 4871, 1, 0, 0, 0, 5037, 4878, 1, 0, 0, 0, 5037, 4885, 1, 0, 0, 0, 5037, 4895, 1, 0, 0, 0, 5037, 4908, 1, 0, 0, 0, 5037, 4921, 1, 0, 0, 0, 5037, 4952, 1, 0, 0, 0, 5037, 4968, 1, 0, 0, 0, 5037, 4984, 1, 0, 0, 0, 5037, 5004, 1, 0, 0, 0, 5037, 5011, 1, 0, 0, 0, 5037, 5017, 1, 0, 0, 0, 5037, 5026, 1, 0, 0, 0, 5038, 433, 1, 0, 0, 0, 5039, 5056, 5, 138, 0, 0, 5040, 5041, 5, 211, 0, 0, 5041, 5057, 3, 382, 191, 0, 5042, 5043, 5, 296, 0, 0, 5043, 5057, 3, 378, 189, 0, 5044, 5045, 5, 442, 0, 0, 5045, 5057, 3, 374, 187, 0, 5046, 5047, 5, 357, 0, 0, 5047, 5048, 3, 818, 409, 0, 5048, 5049, 5, 80, 0, 0, 5049, 5050, 3, 780, 390, 0, 5050, 5057, 1, 0, 0, 0, 5051, 5052, 5, 259, 0, 0, 5052, 5053, 5, 376, 0, 0, 5053, 5057, 3, 778, 389, 0, 5054, 5055, 5, 226, 0, 0, 5055, 5057, 3, 780, 390, 0, 5056, 5040, 1, 0, 0, 0, 5056, 5042, 1, 0, 0, 0, 5056, 5044, 1, 0, 0, 0, 5056, 5046, 1, 0, 0, 0, 5056, 5051, 1, 0, 0, 0, 5056, 5054, 1, 0, 0, 0, 5057, 5059, 1, 0, 0, 0, 5058, 5060, 5, 269, 0, 0, 5059, 5058, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5062, 5, 462, 0, 0, 5062, 5063, 5, 80, 0, 0, 5063, 5064, 5, 204, 0, 0, 5064, 5065, 3, 818, 409, 0, 5065, 435, 1, 0, 0, 0, 5066, 5105, 5, 138, 0, 0, 5067, 5068, 5, 136, 0, 0, 5068, 5106, 3, 394, 197, 0, 5069, 5070, 5, 204, 0, 0, 5070, 5106, 3, 818, 409, 0, 5071, 5072, 5, 211, 0, 0, 5072, 5106, 3, 382, 191, 0, 5073, 5074, 5, 278, 0, 0, 5074, 5106, 3, 416, 208, 0, 5075, 5076, 5, 278, 0, 0, 5076, 5077, 7, 31, 0, 0, 5077, 5078, 3, 316, 158, 0, 5078, 5079, 3, 170, 85, 0, 5079, 5106, 1, 0, 0, 0, 5080, 5081, 5, 296, 0, 0, 5081, 5106, 3, 378, 189, 0, 5082, 5083, 5, 442, 0, 0, 5083, 5106, 3, 374, 187, 0, 5084, 5086, 5, 328, 0, 0, 5085, 5087, 3, 422, 211, 0, 5086, 5085, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5106, 3, 780, 390, 0, 5089, 5091, 5, 259, 0, 0, 5090, 5089, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5094, 5, 376, 0, 0, 5093, 5095, 3, 422, 211, 0, 5094, 5093, 1, 0, 0, 0, 5094, 5095, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5106, 3, 778, 389, 0, 5097, 5099, 5, 63, 0, 0, 5098, 5097, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5102, 5, 92, 0, 0, 5101, 5103, 3, 422, 211, 0, 5102, 5101, 1, 0, 0, 0, 5102, 5103, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 5106, 3, 624, 312, 0, 5105, 5067, 1, 0, 0, 0, 5105, 5069, 1, 0, 0, 0, 5105, 5071, 1, 0, 0, 0, 5105, 5073, 1, 0, 0, 0, 5105, 5075, 1, 0, 0, 0, 5105, 5080, 1, 0, 0, 0, 5105, 5082, 1, 0, 0, 0, 5105, 5084, 1, 0, 0, 0, 5105, 5090, 1, 0, 0, 0, 5105, 5098, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5108, 5, 333, 0, 0, 5108, 5109, 5, 323, 0, 0, 5109, 5110, 3, 790, 395, 0, 5110, 5128, 1, 0, 0, 0, 5111, 5120, 5, 138, 0, 0, 5112, 5113, 5, 355, 0, 0, 5113, 5114, 5, 325, 0, 0, 5114, 5121, 7, 41, 0, 0, 5115, 5121, 5, 108, 0, 0, 5116, 5121, 5, 168, 0, 0, 5117, 5121, 5, 189, 0, 0, 5118, 5121, 5, 342, 0, 0, 5119, 5121, 5, 360, 0, 0, 5120, 5112, 1, 0, 0, 0, 5120, 5115, 1, 0, 0, 0, 5120, 5116, 1, 0, 0, 0, 5120, 5117, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5119, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5123, 3, 316, 158, 0, 5123, 5124, 5, 333, 0, 0, 5124, 5125, 5, 323, 0, 0, 5125, 5126, 3, 790, 395, 0, 5126, 5128, 1, 0, 0, 0, 5127, 5066, 1, 0, 0, 0, 5127, 5111, 1, 0, 0, 0, 5128, 437, 1, 0, 0, 0, 5129, 5130, 5, 138, 0, 0, 5130, 5131, 5, 278, 0, 0, 5131, 5132, 3, 416, 208, 0, 5132, 5133, 5, 333, 0, 0, 5133, 5134, 3, 440, 220, 0, 5134, 439, 1, 0, 0, 0, 5135, 5136, 5, 2, 0, 0, 5136, 5141, 3, 442, 221, 0, 5137, 5138, 5, 6, 0, 0, 5138, 5140, 3, 442, 221, 0, 5139, 5137, 1, 0, 0, 0, 5140, 5143, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 5144, 1, 0, 0, 0, 5143, 5141, 1, 0, 0, 0, 5144, 5145, 5, 3, 0, 0, 5145, 441, 1, 0, 0, 0, 5146, 5147, 3, 824, 412, 0, 5147, 5154, 5, 10, 0, 0, 5148, 5155, 5, 407, 0, 0, 5149, 5155, 3, 388, 194, 0, 5150, 5155, 3, 834, 417, 0, 5151, 5155, 3, 726, 363, 0, 5152, 5155, 3, 202, 101, 0, 5153, 5155, 3, 808, 404, 0, 5154, 5148, 1, 0, 0, 0, 5154, 5149, 1, 0, 0, 0, 5154, 5150, 1, 0, 0, 0, 5154, 5151, 1, 0, 0, 0, 5154, 5152, 1, 0, 0, 0, 5154, 5153, 1, 0, 0, 0, 5155, 443, 1, 0, 0, 0, 5156, 5157, 5, 138, 0, 0, 5157, 5158, 5, 360, 0, 0, 5158, 5159, 3, 316, 158, 0, 5159, 5160, 5, 333, 0, 0, 5160, 5161, 3, 440, 220, 0, 5161, 445, 1, 0, 0, 0, 5162, 5163, 5, 138, 0, 0, 5163, 5164, 5, 278, 0, 0, 5164, 5165, 7, 31, 0, 0, 5165, 5166, 3, 316, 158, 0, 5166, 5167, 3, 170, 85, 0, 5167, 5168, 5, 282, 0, 0, 5168, 5169, 5, 94, 0, 0, 5169, 5170, 3, 814, 407, 0, 5170, 5237, 1, 0, 0, 0, 5171, 5198, 5, 138, 0, 0, 5172, 5173, 5, 136, 0, 0, 5173, 5199, 3, 394, 197, 0, 5174, 5175, 5, 175, 0, 0, 5175, 5199, 3, 788, 394, 0, 5176, 5177, 5, 211, 0, 0, 5177, 5199, 3, 382, 191, 0, 5178, 5180, 5, 295, 0, 0, 5179, 5178, 1, 0, 0, 0, 5179, 5180, 1, 0, 0, 0, 5180, 5181, 1, 0, 0, 0, 5181, 5182, 5, 247, 0, 0, 5182, 5199, 3, 818, 409, 0, 5183, 5184, 5, 248, 0, 0, 5184, 5185, 5, 274, 0, 0, 5185, 5199, 3, 202, 101, 0, 5186, 5187, 5, 248, 0, 0, 5187, 5188, 5, 274, 0, 0, 5188, 5199, 3, 202, 101, 0, 5189, 5190, 5, 278, 0, 0, 5190, 5199, 3, 416, 208, 0, 5191, 5192, 5, 296, 0, 0, 5192, 5199, 3, 378, 189, 0, 5193, 5194, 5, 442, 0, 0, 5194, 5199, 3, 374, 187, 0, 5195, 5196, 5, 323, 0, 0, 5196, 5199, 3, 790, 395, 0, 5197, 5199, 3, 176, 88, 0, 5198, 5172, 1, 0, 0, 0, 5198, 5174, 1, 0, 0, 0, 5198, 5176, 1, 0, 0, 0, 5198, 5179, 1, 0, 0, 0, 5198, 5183, 1, 0, 0, 0, 5198, 5186, 1, 0, 0, 0, 5198, 5189, 1, 0, 0, 0, 5198, 5191, 1, 0, 0, 0, 5198, 5193, 1, 0, 0, 0, 5198, 5195, 1, 0, 0, 0, 5198, 5197, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 5, 282, 0, 0, 5201, 5202, 5, 94, 0, 0, 5202, 5203, 3, 814, 407, 0, 5203, 5237, 1, 0, 0, 0, 5204, 5213, 5, 138, 0, 0, 5205, 5206, 5, 355, 0, 0, 5206, 5207, 5, 325, 0, 0, 5207, 5214, 7, 63, 0, 0, 5208, 5214, 5, 108, 0, 0, 5209, 5214, 5, 168, 0, 0, 5210, 5214, 5, 189, 0, 0, 5211, 5214, 5, 360, 0, 0, 5212, 5214, 5, 342, 0, 0, 5213, 5205, 1, 0, 0, 0, 5213, 5208, 1, 0, 0, 0, 5213, 5209, 1, 0, 0, 0, 5213, 5210, 1, 0, 0, 0, 5213, 5211, 1, 0, 0, 0, 5213, 5212, 1, 0, 0, 0, 5214, 5215, 1, 0, 0, 0, 5215, 5216, 3, 316, 158, 0, 5216, 5217, 5, 282, 0, 0, 5217, 5218, 5, 94, 0, 0, 5218, 5219, 3, 814, 407, 0, 5219, 5237, 1, 0, 0, 0, 5220, 5229, 5, 138, 0, 0, 5221, 5230, 5, 331, 0, 0, 5222, 5223, 5, 63, 0, 0, 5223, 5224, 5, 174, 0, 0, 5224, 5230, 5, 381, 0, 0, 5225, 5226, 5, 198, 0, 0, 5226, 5230, 5, 357, 0, 0, 5227, 5230, 5, 452, 0, 0, 5228, 5230, 5, 451, 0, 0, 5229, 5221, 1, 0, 0, 0, 5229, 5222, 1, 0, 0, 0, 5229, 5225, 1, 0, 0, 0, 5229, 5227, 1, 0, 0, 0, 5229, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 5232, 3, 818, 409, 0, 5232, 5233, 5, 282, 0, 0, 5233, 5234, 5, 94, 0, 0, 5234, 5235, 3, 814, 407, 0, 5235, 5237, 1, 0, 0, 0, 5236, 5162, 1, 0, 0, 0, 5236, 5171, 1, 0, 0, 0, 5236, 5204, 1, 0, 0, 0, 5236, 5220, 1, 0, 0, 0, 5237, 447, 1, 0, 0, 0, 5238, 5239, 5, 46, 0, 0, 5239, 5240, 5, 452, 0, 0, 5240, 5247, 3, 818, 409, 0, 5241, 5242, 5, 62, 0, 0, 5242, 5243, 5, 92, 0, 0, 5243, 5248, 3, 628, 314, 0, 5244, 5245, 5, 62, 0, 0, 5245, 5246, 5, 30, 0, 0, 5246, 5248, 5, 350, 0, 0, 5247, 5241, 1, 0, 0, 0, 5247, 5244, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5250, 1, 0, 0, 0, 5249, 5251, 3, 400, 200, 0, 5250, 5249, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 449, 1, 0, 0, 0, 5252, 5253, 5, 138, 0, 0, 5253, 5254, 5, 452, 0, 0, 5254, 5272, 3, 818, 409, 0, 5255, 5256, 5, 282, 0, 0, 5256, 5257, 5, 94, 0, 0, 5257, 5273, 3, 814, 407, 0, 5258, 5259, 5, 333, 0, 0, 5259, 5273, 3, 284, 142, 0, 5260, 5261, 5, 309, 0, 0, 5261, 5262, 5, 94, 0, 0, 5262, 5273, 3, 818, 409, 0, 5263, 5264, 7, 34, 0, 0, 5264, 5269, 3, 626, 313, 0, 5265, 5266, 5, 6, 0, 0, 5266, 5268, 3, 626, 313, 0, 5267, 5265, 1, 0, 0, 0, 5268, 5271, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5273, 1, 0, 0, 0, 5271, 5269, 1, 0, 0, 0, 5272, 5255, 1, 0, 0, 0, 5272, 5258, 1, 0, 0, 0, 5272, 5260, 1, 0, 0, 0, 5272, 5263, 1, 0, 0, 0, 5273, 451, 1, 0, 0, 0, 5274, 5275, 5, 46, 0, 0, 5275, 5276, 5, 451, 0, 0, 5276, 5277, 3, 818, 409, 0, 5277, 5278, 5, 164, 0, 0, 5278, 5279, 3, 808, 404, 0, 5279, 5280, 5, 452, 0, 0, 5280, 5285, 3, 824, 412, 0, 5281, 5282, 5, 6, 0, 0, 5282, 5284, 3, 824, 412, 0, 5283, 5281, 1, 0, 0, 0, 5284, 5287, 1, 0, 0, 0, 5285, 5283, 1, 0, 0, 0, 5285, 5286, 1, 0, 0, 0, 5286, 5289, 1, 0, 0, 0, 5287, 5285, 1, 0, 0, 0, 5288, 5290, 3, 400, 200, 0, 5289, 5288, 1, 0, 0, 0, 5289, 5290, 1, 0, 0, 0, 5290, 453, 1, 0, 0, 0, 5291, 5292, 5, 138, 0, 0, 5292, 5293, 5, 451, 0, 0, 5293, 5294, 3, 818, 409, 0, 5294, 5295, 5, 333, 0, 0, 5295, 5296, 3, 284, 142, 0, 5296, 5348, 1, 0, 0, 0, 5297, 5298, 5, 138, 0, 0, 5298, 5299, 5, 451, 0, 0, 5299, 5300, 3, 818, 409, 0, 5300, 5301, 5, 164, 0, 0, 5301, 5302, 3, 808, 404, 0, 5302, 5348, 1, 0, 0, 0, 5303, 5304, 5, 138, 0, 0, 5304, 5305, 5, 451, 0, 0, 5305, 5306, 3, 818, 409, 0, 5306, 5307, 5, 305, 0, 0, 5307, 5309, 5, 452, 0, 0, 5308, 5310, 3, 400, 200, 0, 5309, 5308, 1, 0, 0, 0, 5309, 5310, 1, 0, 0, 0, 5310, 5348, 1, 0, 0, 0, 5311, 5312, 5, 138, 0, 0, 5312, 5313, 5, 451, 0, 0, 5313, 5314, 3, 818, 409, 0, 5314, 5315, 7, 34, 0, 0, 5315, 5316, 5, 452, 0, 0, 5316, 5321, 3, 824, 412, 0, 5317, 5318, 5, 6, 0, 0, 5318, 5320, 3, 824, 412, 0, 5319, 5317, 1, 0, 0, 0, 5320, 5323, 1, 0, 0, 0, 5321, 5319, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, 5325, 1, 0, 0, 0, 5323, 5321, 1, 0, 0, 0, 5324, 5326, 3, 400, 200, 0, 5325, 5324, 1, 0, 0, 0, 5325, 5326, 1, 0, 0, 0, 5326, 5348, 1, 0, 0, 0, 5327, 5328, 5, 138, 0, 0, 5328, 5329, 5, 451, 0, 0, 5329, 5330, 3, 818, 409, 0, 5330, 5331, 7, 64, 0, 0, 5331, 5348, 1, 0, 0, 0, 5332, 5333, 5, 138, 0, 0, 5333, 5334, 5, 451, 0, 0, 5334, 5335, 3, 818, 409, 0, 5335, 5336, 5, 465, 0, 0, 5336, 5337, 5, 2, 0, 0, 5337, 5338, 3, 290, 145, 0, 5338, 5339, 5, 3, 0, 0, 5339, 5348, 1, 0, 0, 0, 5340, 5341, 5, 138, 0, 0, 5341, 5342, 5, 451, 0, 0, 5342, 5343, 3, 818, 409, 0, 5343, 5344, 5, 282, 0, 0, 5344, 5345, 5, 94, 0, 0, 5345, 5346, 3, 814, 407, 0, 5346, 5348, 1, 0, 0, 0, 5347, 5291, 1, 0, 0, 0, 5347, 5297, 1, 0, 0, 0, 5347, 5303, 1, 0, 0, 0, 5347, 5311, 1, 0, 0, 0, 5347, 5327, 1, 0, 0, 0, 5347, 5332, 1, 0, 0, 0, 5347, 5340, 1, 0, 0, 0, 5348, 455, 1, 0, 0, 0, 5349, 5351, 5, 46, 0, 0, 5350, 5352, 3, 366, 183, 0, 5351, 5350, 1, 0, 0, 0, 5351, 5352, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5354, 5, 321, 0, 0, 5354, 5355, 3, 818, 409, 0, 5355, 5356, 5, 36, 0, 0, 5356, 5357, 5, 80, 0, 0, 5357, 5358, 7, 65, 0, 0, 5358, 5359, 5, 94, 0, 0, 5359, 5361, 3, 780, 390, 0, 5360, 5362, 3, 638, 319, 0, 5361, 5360, 1, 0, 0, 0, 5361, 5362, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5365, 5, 57, 0, 0, 5364, 5366, 7, 66, 0, 0, 5365, 5364, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 5383, 1, 0, 0, 0, 5367, 5384, 5, 270, 0, 0, 5368, 5384, 3, 458, 229, 0, 5369, 5371, 5, 2, 0, 0, 5370, 5372, 3, 458, 229, 0, 5371, 5370, 1, 0, 0, 0, 5371, 5372, 1, 0, 0, 0, 5372, 5379, 1, 0, 0, 0, 5373, 5375, 5, 7, 0, 0, 5374, 5376, 3, 458, 229, 0, 5375, 5374, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5378, 1, 0, 0, 0, 5377, 5373, 1, 0, 0, 0, 5378, 5381, 1, 0, 0, 0, 5379, 5377, 1, 0, 0, 0, 5379, 5380, 1, 0, 0, 0, 5380, 5382, 1, 0, 0, 0, 5381, 5379, 1, 0, 0, 0, 5382, 5384, 5, 3, 0, 0, 5383, 5367, 1, 0, 0, 0, 5383, 5368, 1, 0, 0, 0, 5383, 5369, 1, 0, 0, 0, 5384, 457, 1, 0, 0, 0, 5385, 5391, 3, 560, 280, 0, 5386, 5391, 3, 538, 269, 0, 5387, 5391, 3, 552, 276, 0, 5388, 5391, 3, 548, 274, 0, 5389, 5391, 3, 460, 230, 0, 5390, 5385, 1, 0, 0, 0, 5390, 5386, 1, 0, 0, 0, 5390, 5387, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5390, 5389, 1, 0, 0, 0, 5391, 459, 1, 0, 0, 0, 5392, 5393, 5, 271, 0, 0, 5393, 5395, 3, 818, 409, 0, 5394, 5396, 3, 462, 231, 0, 5395, 5394, 1, 0, 0, 0, 5395, 5396, 1, 0, 0, 0, 5396, 461, 1, 0, 0, 0, 5397, 5398, 5, 6, 0, 0, 5398, 5399, 3, 808, 404, 0, 5399, 463, 1, 0, 0, 0, 5400, 5401, 5, 252, 0, 0, 5401, 5402, 3, 818, 409, 0, 5402, 465, 1, 0, 0, 0, 5403, 5406, 5, 366, 0, 0, 5404, 5407, 3, 818, 409, 0, 5405, 5407, 5, 9, 0, 0, 5406, 5404, 1, 0, 0, 0, 5406, 5405, 1, 0, 0, 0, 5407, 467, 1, 0, 0, 0, 5408, 5410, 5, 146, 0, 0, 5409, 5411, 3, 470, 235, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5413, 1, 0, 0, 0, 5412, 5414, 3, 474, 237, 0, 5413, 5412, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5454, 1, 0, 0, 0, 5415, 5416, 5, 340, 0, 0, 5416, 5418, 5, 356, 0, 0, 5417, 5419, 3, 474, 237, 0, 5418, 5417, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5454, 1, 0, 0, 0, 5420, 5421, 5, 322, 0, 0, 5421, 5454, 3, 818, 409, 0, 5422, 5424, 5, 308, 0, 0, 5423, 5425, 5, 322, 0, 0, 5424, 5423, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5454, 3, 818, 409, 0, 5427, 5428, 5, 290, 0, 0, 5428, 5429, 5, 356, 0, 0, 5429, 5454, 3, 808, 404, 0, 5430, 5431, 7, 67, 0, 0, 5431, 5432, 5, 291, 0, 0, 5432, 5454, 3, 808, 404, 0, 5433, 5435, 7, 68, 0, 0, 5434, 5436, 3, 470, 235, 0, 5435, 5434, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5442, 1, 0, 0, 0, 5437, 5439, 5, 33, 0, 0, 5438, 5440, 5, 269, 0, 0, 5439, 5438, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5443, 5, 153, 0, 0, 5442, 5437, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5454, 1, 0, 0, 0, 5444, 5446, 5, 319, 0, 0, 5445, 5447, 3, 470, 235, 0, 5446, 5445, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5448, 5450, 5, 94, 0, 0, 5449, 5451, 5, 322, 0, 0, 5450, 5449, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5454, 3, 818, 409, 0, 5453, 5408, 1, 0, 0, 0, 5453, 5415, 1, 0, 0, 0, 5453, 5420, 1, 0, 0, 0, 5453, 5422, 1, 0, 0, 0, 5453, 5427, 1, 0, 0, 0, 5453, 5430, 1, 0, 0, 0, 5453, 5433, 1, 0, 0, 0, 5453, 5444, 1, 0, 0, 0, 5454, 469, 1, 0, 0, 0, 5455, 5456, 7, 69, 0, 0, 5456, 471, 1, 0, 0, 0, 5457, 5458, 5, 244, 0, 0, 5458, 5459, 5, 251, 0, 0, 5459, 5467, 3, 50, 25, 0, 5460, 5461, 5, 300, 0, 0, 5461, 5467, 7, 70, 0, 0, 5462, 5464, 5, 77, 0, 0, 5463, 5462, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5467, 5, 54, 0, 0, 5466, 5457, 1, 0, 0, 0, 5466, 5460, 1, 0, 0, 0, 5466, 5463, 1, 0, 0, 0, 5467, 473, 1, 0, 0, 0, 5468, 5475, 3, 472, 236, 0, 5469, 5471, 5, 6, 0, 0, 5470, 5469, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5474, 3, 472, 236, 0, 5473, 5470, 1, 0, 0, 0, 5474, 5477, 1, 0, 0, 0, 5475, 5473, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 475, 1, 0, 0, 0, 5477, 5475, 1, 0, 0, 0, 5478, 5481, 5, 46, 0, 0, 5479, 5480, 5, 82, 0, 0, 5480, 5482, 5, 311, 0, 0, 5481, 5479, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5484, 1, 0, 0, 0, 5483, 5485, 3, 122, 61, 0, 5484, 5483, 1, 0, 0, 0, 5484, 5485, 1, 0, 0, 0, 5485, 5501, 1, 0, 0, 0, 5486, 5487, 5, 376, 0, 0, 5487, 5489, 3, 776, 388, 0, 5488, 5490, 3, 146, 73, 0, 5489, 5488, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5492, 1, 0, 0, 0, 5491, 5493, 3, 102, 51, 0, 5492, 5491, 1, 0, 0, 0, 5492, 5493, 1, 0, 0, 0, 5493, 5502, 1, 0, 0, 0, 5494, 5495, 5, 303, 0, 0, 5495, 5496, 5, 376, 0, 0, 5496, 5497, 3, 776, 388, 0, 5497, 5499, 3, 144, 72, 0, 5498, 5500, 3, 102, 51, 0, 5499, 5498, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5502, 1, 0, 0, 0, 5501, 5486, 1, 0, 0, 0, 5501, 5494, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5504, 5, 36, 0, 0, 5504, 5511, 3, 560, 280, 0, 5505, 5507, 5, 105, 0, 0, 5506, 5508, 7, 71, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5510, 5, 42, 0, 0, 5510, 5512, 5, 279, 0, 0, 5511, 5505, 1, 0, 0, 0, 5511, 5512, 1, 0, 0, 0, 5512, 477, 1, 0, 0, 0, 5513, 5514, 5, 253, 0, 0, 5514, 5515, 3, 808, 404, 0, 5515, 479, 1, 0, 0, 0, 5516, 5517, 5, 46, 0, 0, 5517, 5518, 5, 175, 0, 0, 5518, 5520, 3, 786, 393, 0, 5519, 5521, 5, 105, 0, 0, 5520, 5519, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 5527, 1, 0, 0, 0, 5522, 5524, 3, 482, 241, 0, 5523, 5522, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5523, 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 5528, 1, 0, 0, 0, 5527, 5523, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 481, 1, 0, 0, 0, 5529, 5530, 5, 164, 0, 0, 5530, 5538, 5, 74, 0, 0, 5531, 5538, 5, 194, 0, 0, 5532, 5538, 5, 255, 0, 0, 5533, 5538, 5, 282, 0, 0, 5534, 5538, 5, 351, 0, 0, 5535, 5538, 5, 353, 0, 0, 5536, 5538, 3, 826, 413, 0, 5537, 5529, 1, 0, 0, 0, 5537, 5531, 1, 0, 0, 0, 5537, 5532, 1, 0, 0, 0, 5537, 5533, 1, 0, 0, 0, 5537, 5534, 1, 0, 0, 0, 5537, 5535, 1, 0, 0, 0, 5537, 5536, 1, 0, 0, 0, 5538, 5540, 1, 0, 0, 0, 5539, 5541, 5, 10, 0, 0, 5540, 5539, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5545, 1, 0, 0, 0, 5542, 5546, 3, 812, 406, 0, 5543, 5546, 3, 54, 27, 0, 5544, 5546, 5, 53, 0, 0, 5545, 5542, 1, 0, 0, 0, 5545, 5543, 1, 0, 0, 0, 5545, 5544, 1, 0, 0, 0, 5546, 483, 1, 0, 0, 0, 5547, 5548, 5, 138, 0, 0, 5548, 5549, 5, 175, 0, 0, 5549, 5565, 3, 788, 394, 0, 5550, 5551, 5, 333, 0, 0, 5551, 5552, 5, 351, 0, 0, 5552, 5554, 3, 768, 384, 0, 5553, 5550, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 5566, 1, 0, 0, 0, 5555, 5557, 5, 105, 0, 0, 5556, 5555, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 5559, 1, 0, 0, 0, 5558, 5560, 3, 482, 241, 0, 5559, 5558, 1, 0, 0, 0, 5560, 5561, 1, 0, 0, 0, 5561, 5559, 1, 0, 0, 0, 5561, 5562, 1, 0, 0, 0, 5562, 5564, 1, 0, 0, 0, 5563, 5556, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 5566, 1, 0, 0, 0, 5565, 5553, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5566, 485, 1, 0, 0, 0, 5567, 5568, 5, 138, 0, 0, 5568, 5569, 5, 175, 0, 0, 5569, 5571, 3, 788, 394, 0, 5570, 5572, 3, 64, 32, 0, 5571, 5570, 1, 0, 0, 0, 5571, 5572, 1, 0, 0, 0, 5572, 487, 1, 0, 0, 0, 5573, 5574, 5, 138, 0, 0, 5574, 5575, 5, 108, 0, 0, 5575, 5576, 3, 316, 158, 0, 5576, 5577, 5, 305, 0, 0, 5577, 5578, 5, 375, 0, 0, 5578, 489, 1, 0, 0, 0, 5579, 5580, 5, 138, 0, 0, 5580, 5581, 5, 349, 0, 0, 5581, 5582, 7, 16, 0, 0, 5582, 5583, 3, 40, 20, 0, 5583, 491, 1, 0, 0, 0, 5584, 5585, 5, 46, 0, 0, 5585, 5586, 5, 189, 0, 0, 5586, 5588, 3, 316, 158, 0, 5587, 5589, 5, 36, 0, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5594, 3, 652, 326, 0, 5591, 5593, 3, 134, 67, 0, 5592, 5591, 1, 0, 0, 0, 5593, 5596, 1, 0, 0, 0, 5594, 5592, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 493, 1, 0, 0, 0, 5596, 5594, 1, 0, 0, 0, 5597, 5598, 5, 138, 0, 0, 5598, 5599, 5, 189, 0, 0, 5599, 5622, 3, 316, 158, 0, 5600, 5623, 3, 94, 47, 0, 5601, 5602, 7, 15, 0, 0, 5602, 5603, 5, 77, 0, 0, 5603, 5623, 5, 78, 0, 0, 5604, 5607, 5, 133, 0, 0, 5605, 5606, 5, 45, 0, 0, 5606, 5608, 3, 818, 409, 0, 5607, 5605, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5623, 3, 142, 71, 0, 5610, 5611, 5, 191, 0, 0, 5611, 5613, 5, 45, 0, 0, 5612, 5614, 3, 422, 211, 0, 5613, 5612, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5615, 1, 0, 0, 0, 5615, 5617, 3, 818, 409, 0, 5616, 5618, 3, 96, 48, 0, 5617, 5616, 1, 0, 0, 0, 5617, 5618, 1, 0, 0, 0, 5618, 5623, 1, 0, 0, 0, 5619, 5620, 5, 372, 0, 0, 5620, 5621, 5, 45, 0, 0, 5621, 5623, 3, 818, 409, 0, 5622, 5600, 1, 0, 0, 0, 5622, 5601, 1, 0, 0, 0, 5622, 5604, 1, 0, 0, 0, 5622, 5610, 1, 0, 0, 0, 5622, 5619, 1, 0, 0, 0, 5623, 495, 1, 0, 0, 0, 5624, 5625, 5, 138, 0, 0, 5625, 5626, 5, 355, 0, 0, 5626, 5627, 5, 325, 0, 0, 5627, 5628, 5, 185, 0, 0, 5628, 5629, 3, 316, 158, 0, 5629, 5630, 3, 284, 142, 0, 5630, 497, 1, 0, 0, 0, 5631, 5632, 5, 138, 0, 0, 5632, 5633, 5, 355, 0, 0, 5633, 5634, 5, 325, 0, 0, 5634, 5635, 5, 163, 0, 0, 5635, 5636, 3, 316, 158, 0, 5636, 5637, 7, 72, 0, 0, 5637, 5638, 5, 257, 0, 0, 5638, 5639, 5, 62, 0, 0, 5639, 5640, 3, 784, 392, 0, 5640, 5641, 5, 105, 0, 0, 5641, 5642, 3, 314, 157, 0, 5642, 5673, 1, 0, 0, 0, 5643, 5644, 5, 138, 0, 0, 5644, 5645, 5, 355, 0, 0, 5645, 5646, 5, 325, 0, 0, 5646, 5647, 5, 163, 0, 0, 5647, 5648, 3, 316, 158, 0, 5648, 5649, 5, 138, 0, 0, 5649, 5652, 5, 257, 0, 0, 5650, 5651, 5, 62, 0, 0, 5651, 5653, 3, 784, 392, 0, 5652, 5650, 1, 0, 0, 0, 5652, 5653, 1, 0, 0, 0, 5653, 5654, 1, 0, 0, 0, 5654, 5655, 5, 311, 0, 0, 5655, 5656, 3, 316, 158, 0, 5656, 5657, 5, 105, 0, 0, 5657, 5658, 3, 316, 158, 0, 5658, 5673, 1, 0, 0, 0, 5659, 5660, 5, 138, 0, 0, 5660, 5661, 5, 355, 0, 0, 5661, 5662, 5, 325, 0, 0, 5662, 5663, 5, 163, 0, 0, 5663, 5664, 3, 316, 158, 0, 5664, 5665, 5, 191, 0, 0, 5665, 5667, 5, 257, 0, 0, 5666, 5668, 3, 422, 211, 0, 5667, 5666, 1, 0, 0, 0, 5667, 5668, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5670, 5, 62, 0, 0, 5670, 5671, 3, 784, 392, 0, 5671, 5673, 1, 0, 0, 0, 5672, 5631, 1, 0, 0, 0, 5672, 5643, 1, 0, 0, 0, 5672, 5659, 1, 0, 0, 0, 5673, 499, 1, 0, 0, 0, 5674, 5676, 5, 46, 0, 0, 5675, 5677, 5, 53, 0, 0, 5676, 5675, 1, 0, 0, 0, 5676, 5677, 1, 0, 0, 0, 5677, 5678, 1, 0, 0, 0, 5678, 5679, 5, 168, 0, 0, 5679, 5680, 3, 316, 158, 0, 5680, 5681, 5, 62, 0, 0, 5681, 5682, 3, 808, 404, 0, 5682, 5683, 5, 94, 0, 0, 5683, 5684, 3, 808, 404, 0, 5684, 5685, 5, 64, 0, 0, 5685, 5686, 3, 316, 158, 0, 5686, 501, 1, 0, 0, 0, 5687, 5689, 5, 158, 0, 0, 5688, 5690, 3, 514, 257, 0, 5689, 5688, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5695, 1, 0, 0, 0, 5691, 5693, 3, 774, 387, 0, 5692, 5694, 3, 170, 85, 0, 5693, 5692, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5696, 1, 0, 0, 0, 5695, 5691, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5713, 1, 0, 0, 0, 5697, 5698, 5, 158, 0, 0, 5698, 5699, 5, 2, 0, 0, 5699, 5704, 3, 514, 257, 0, 5700, 5701, 5, 6, 0, 0, 5701, 5703, 3, 514, 257, 0, 5702, 5700, 1, 0, 0, 0, 5703, 5706, 1, 0, 0, 0, 5704, 5702, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5707, 1, 0, 0, 0, 5706, 5704, 1, 0, 0, 0, 5707, 5708, 5, 3, 0, 0, 5708, 5710, 3, 774, 387, 0, 5709, 5711, 3, 170, 85, 0, 5710, 5709, 1, 0, 0, 0, 5710, 5711, 1, 0, 0, 0, 5711, 5713, 1, 0, 0, 0, 5712, 5687, 1, 0, 0, 0, 5712, 5697, 1, 0, 0, 0, 5713, 503, 1, 0, 0, 0, 5714, 5730, 5, 370, 0, 0, 5715, 5717, 5, 113, 0, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5719, 1, 0, 0, 0, 5718, 5720, 5, 112, 0, 0, 5719, 5718, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 5722, 1, 0, 0, 0, 5721, 5723, 3, 514, 257, 0, 5722, 5721, 1, 0, 0, 0, 5722, 5723, 1, 0, 0, 0, 5723, 5725, 1, 0, 0, 0, 5724, 5726, 3, 508, 254, 0, 5725, 5724, 1, 0, 0, 0, 5725, 5726, 1, 0, 0, 0, 5726, 5731, 1, 0, 0, 0, 5727, 5729, 3, 524, 262, 0, 5728, 5727, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5731, 1, 0, 0, 0, 5730, 5716, 1, 0, 0, 0, 5730, 5728, 1, 0, 0, 0, 5731, 5733, 1, 0, 0, 0, 5732, 5734, 3, 518, 259, 0, 5733, 5732, 1, 0, 0, 0, 5733, 5734, 1, 0, 0, 0, 5734, 505, 1, 0, 0, 0, 5735, 5750, 3, 508, 254, 0, 5736, 5738, 3, 514, 257, 0, 5737, 5736, 1, 0, 0, 0, 5737, 5738, 1, 0, 0, 0, 5738, 5751, 1, 0, 0, 0, 5739, 5740, 5, 2, 0, 0, 5740, 5745, 3, 512, 256, 0, 5741, 5742, 5, 6, 0, 0, 5742, 5744, 3, 512, 256, 0, 5743, 5741, 1, 0, 0, 0, 5744, 5747, 1, 0, 0, 0, 5745, 5743, 1, 0, 0, 0, 5745, 5746, 1, 0, 0, 0, 5746, 5748, 1, 0, 0, 0, 5747, 5745, 1, 0, 0, 0, 5748, 5749, 5, 3, 0, 0, 5749, 5751, 1, 0, 0, 0, 5750, 5737, 1, 0, 0, 0, 5750, 5739, 1, 0, 0, 0, 5751, 5753, 1, 0, 0, 0, 5752, 5754, 3, 518, 259, 0, 5753, 5752, 1, 0, 0, 0, 5753, 5754, 1, 0, 0, 0, 5754, 507, 1, 0, 0, 0, 5755, 5756, 7, 73, 0, 0, 5756, 509, 1, 0, 0, 0, 5757, 5760, 3, 822, 411, 0, 5758, 5760, 3, 508, 254, 0, 5759, 5757, 1, 0, 0, 0, 5759, 5758, 1, 0, 0, 0, 5760, 5763, 1, 0, 0, 0, 5761, 5764, 3, 54, 27, 0, 5762, 5764, 3, 202, 101, 0, 5763, 5761, 1, 0, 0, 0, 5763, 5762, 1, 0, 0, 0, 5763, 5764, 1, 0, 0, 0, 5764, 511, 1, 0, 0, 0, 5765, 5767, 7, 74, 0, 0, 5766, 5768, 7, 75, 0, 0, 5767, 5766, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 5775, 1, 0, 0, 0, 5769, 5772, 5, 548, 0, 0, 5770, 5773, 3, 202, 101, 0, 5771, 5773, 3, 808, 404, 0, 5772, 5770, 1, 0, 0, 0, 5772, 5771, 1, 0, 0, 0, 5773, 5775, 1, 0, 0, 0, 5774, 5765, 1, 0, 0, 0, 5774, 5769, 1, 0, 0, 0, 5775, 513, 1, 0, 0, 0, 5776, 5778, 5, 128, 0, 0, 5777, 5779, 7, 75, 0, 0, 5778, 5777, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 515, 1, 0, 0, 0, 5780, 5782, 3, 774, 387, 0, 5781, 5783, 3, 144, 72, 0, 5782, 5781, 1, 0, 0, 0, 5782, 5783, 1, 0, 0, 0, 5783, 517, 1, 0, 0, 0, 5784, 5789, 3, 516, 258, 0, 5785, 5786, 5, 6, 0, 0, 5786, 5788, 3, 516, 258, 0, 5787, 5785, 1, 0, 0, 0, 5788, 5791, 1, 0, 0, 0, 5789, 5787, 1, 0, 0, 0, 5789, 5790, 1, 0, 0, 0, 5790, 519, 1, 0, 0, 0, 5791, 5789, 1, 0, 0, 0, 5792, 5803, 5, 203, 0, 0, 5793, 5804, 3, 524, 262, 0, 5794, 5796, 5, 128, 0, 0, 5795, 5794, 1, 0, 0, 0, 5795, 5796, 1, 0, 0, 0, 5796, 5804, 1, 0, 0, 0, 5797, 5799, 3, 508, 254, 0, 5798, 5800, 3, 514, 257, 0, 5799, 5798, 1, 0, 0, 0, 5799, 5800, 1, 0, 0, 0, 5800, 5802, 1, 0, 0, 0, 5801, 5797, 1, 0, 0, 0, 5801, 5802, 1, 0, 0, 0, 5802, 5804, 1, 0, 0, 0, 5803, 5793, 1, 0, 0, 0, 5803, 5795, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5804, 5805, 1, 0, 0, 0, 5805, 5806, 3, 522, 261, 0, 5806, 521, 1, 0, 0, 0, 5807, 5817, 3, 560, 280, 0, 5808, 5817, 3, 538, 269, 0, 5809, 5817, 3, 552, 276, 0, 5810, 5817, 3, 548, 274, 0, 5811, 5817, 3, 558, 279, 0, 5812, 5817, 3, 186, 93, 0, 5813, 5817, 3, 192, 96, 0, 5814, 5817, 3, 194, 97, 0, 5815, 5817, 3, 532, 266, 0, 5816, 5807, 1, 0, 0, 0, 5816, 5808, 1, 0, 0, 0, 5816, 5809, 1, 0, 0, 0, 5816, 5810, 1, 0, 0, 0, 5816, 5811, 1, 0, 0, 0, 5816, 5812, 1, 0, 0, 0, 5816, 5813, 1, 0, 0, 0, 5816, 5814, 1, 0, 0, 0, 5816, 5815, 1, 0, 0, 0, 5817, 523, 1, 0, 0, 0, 5818, 5819, 5, 2, 0, 0, 5819, 5824, 3, 510, 255, 0, 5820, 5821, 5, 6, 0, 0, 5821, 5823, 3, 510, 255, 0, 5822, 5820, 1, 0, 0, 0, 5823, 5826, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5824, 5825, 1, 0, 0, 0, 5825, 5827, 1, 0, 0, 0, 5826, 5824, 1, 0, 0, 0, 5827, 5828, 5, 3, 0, 0, 5828, 525, 1, 0, 0, 0, 5829, 5830, 5, 290, 0, 0, 5830, 5832, 3, 818, 409, 0, 5831, 5833, 3, 528, 264, 0, 5832, 5831, 1, 0, 0, 0, 5832, 5833, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5835, 5, 36, 0, 0, 5835, 5836, 3, 530, 265, 0, 5836, 527, 1, 0, 0, 0, 5837, 5838, 5, 2, 0, 0, 5838, 5843, 3, 652, 326, 0, 5839, 5840, 5, 6, 0, 0, 5840, 5842, 3, 652, 326, 0, 5841, 5839, 1, 0, 0, 0, 5842, 5845, 1, 0, 0, 0, 5843, 5841, 1, 0, 0, 0, 5843, 5844, 1, 0, 0, 0, 5844, 5846, 1, 0, 0, 0, 5845, 5843, 1, 0, 0, 0, 5846, 5847, 5, 3, 0, 0, 5847, 529, 1, 0, 0, 0, 5848, 5853, 3, 560, 280, 0, 5849, 5853, 3, 538, 269, 0, 5850, 5853, 3, 552, 276, 0, 5851, 5853, 3, 548, 274, 0, 5852, 5848, 1, 0, 0, 0, 5852, 5849, 1, 0, 0, 0, 5852, 5850, 1, 0, 0, 0, 5852, 5851, 1, 0, 0, 0, 5853, 531, 1, 0, 0, 0, 5854, 5855, 5, 202, 0, 0, 5855, 5857, 3, 818, 409, 0, 5856, 5858, 3, 534, 267, 0, 5857, 5856, 1, 0, 0, 0, 5857, 5858, 1, 0, 0, 0, 5858, 5878, 1, 0, 0, 0, 5859, 5861, 5, 46, 0, 0, 5860, 5862, 3, 122, 61, 0, 5861, 5860, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5863, 1, 0, 0, 0, 5863, 5865, 5, 92, 0, 0, 5864, 5866, 3, 294, 147, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5867, 1, 0, 0, 0, 5867, 5868, 3, 188, 94, 0, 5868, 5869, 5, 36, 0, 0, 5869, 5870, 5, 202, 0, 0, 5870, 5872, 3, 818, 409, 0, 5871, 5873, 3, 534, 267, 0, 5872, 5871, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5875, 1, 0, 0, 0, 5874, 5876, 3, 190, 95, 0, 5875, 5874, 1, 0, 0, 0, 5875, 5876, 1, 0, 0, 0, 5876, 5878, 1, 0, 0, 0, 5877, 5854, 1, 0, 0, 0, 5877, 5859, 1, 0, 0, 0, 5878, 533, 1, 0, 0, 0, 5879, 5880, 5, 2, 0, 0, 5880, 5881, 3, 730, 365, 0, 5881, 5882, 5, 3, 0, 0, 5882, 535, 1, 0, 0, 0, 5883, 5885, 5, 177, 0, 0, 5884, 5886, 5, 290, 0, 0, 5885, 5884, 1, 0, 0, 0, 5885, 5886, 1, 0, 0, 0, 5886, 5889, 1, 0, 0, 0, 5887, 5890, 3, 818, 409, 0, 5888, 5890, 5, 30, 0, 0, 5889, 5887, 1, 0, 0, 0, 5889, 5888, 1, 0, 0, 0, 5890, 537, 1, 0, 0, 0, 5891, 5893, 3, 572, 286, 0, 5892, 5891, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5894, 1, 0, 0, 0, 5894, 5895, 5, 241, 0, 0, 5895, 5896, 5, 71, 0, 0, 5896, 5899, 3, 774, 387, 0, 5897, 5898, 5, 36, 0, 0, 5898, 5900, 3, 818, 409, 0, 5899, 5897, 1, 0, 0, 0, 5899, 5900, 1, 0, 0, 0, 5900, 5901, 1, 0, 0, 0, 5901, 5923, 3, 540, 270, 0, 5902, 5903, 5, 80, 0, 0, 5903, 5911, 5, 464, 0, 0, 5904, 5906, 3, 360, 180, 0, 5905, 5907, 3, 638, 319, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 5912, 1, 0, 0, 0, 5908, 5909, 5, 80, 0, 0, 5909, 5910, 5, 45, 0, 0, 5910, 5912, 3, 818, 409, 0, 5911, 5904, 1, 0, 0, 0, 5911, 5908, 1, 0, 0, 0, 5911, 5912, 1, 0, 0, 0, 5912, 5913, 1, 0, 0, 0, 5913, 5921, 5, 57, 0, 0, 5914, 5915, 5, 369, 0, 0, 5915, 5916, 5, 333, 0, 0, 5916, 5918, 3, 554, 277, 0, 5917, 5919, 3, 638, 319, 0, 5918, 5917, 1, 0, 0, 0, 5918, 5919, 1, 0, 0, 0, 5919, 5922, 1, 0, 0, 0, 5920, 5922, 5, 270, 0, 0, 5921, 5914, 1, 0, 0, 0, 5921, 5920, 1, 0, 0, 0, 5922, 5924, 1, 0, 0, 0, 5923, 5902, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 5926, 1, 0, 0, 0, 5925, 5927, 3, 546, 273, 0, 5926, 5925, 1, 0, 0, 0, 5926, 5927, 1, 0, 0, 0, 5927, 539, 1, 0, 0, 0, 5928, 5929, 5, 2, 0, 0, 5929, 5930, 3, 542, 271, 0, 5930, 5931, 5, 3, 0, 0, 5931, 5933, 1, 0, 0, 0, 5932, 5928, 1, 0, 0, 0, 5932, 5933, 1, 0, 0, 0, 5933, 5937, 1, 0, 0, 0, 5934, 5935, 5, 463, 0, 0, 5935, 5936, 7, 76, 0, 0, 5936, 5938, 5, 450, 0, 0, 5937, 5934, 1, 0, 0, 0, 5937, 5938, 1, 0, 0, 0, 5938, 5941, 1, 0, 0, 0, 5939, 5942, 3, 910, 455, 0, 5940, 5942, 3, 560, 280, 0, 5941, 5939, 1, 0, 0, 0, 5941, 5940, 1, 0, 0, 0, 5942, 541, 1, 0, 0, 0, 5943, 5948, 3, 544, 272, 0, 5944, 5945, 5, 6, 0, 0, 5945, 5947, 3, 544, 272, 0, 5946, 5944, 1, 0, 0, 0, 5947, 5950, 1, 0, 0, 0, 5948, 5946, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 543, 1, 0, 0, 0, 5950, 5948, 1, 0, 0, 0, 5951, 5952, 3, 800, 400, 0, 5952, 5953, 3, 754, 377, 0, 5953, 545, 1, 0, 0, 0, 5954, 5955, 5, 87, 0, 0, 5955, 5956, 3, 756, 378, 0, 5956, 547, 1, 0, 0, 0, 5957, 5959, 3, 572, 286, 0, 5958, 5957, 1, 0, 0, 0, 5958, 5959, 1, 0, 0, 0, 5959, 5960, 1, 0, 0, 0, 5960, 5961, 5, 182, 0, 0, 5961, 5962, 5, 64, 0, 0, 5962, 5965, 3, 630, 315, 0, 5963, 5964, 5, 100, 0, 0, 5964, 5966, 3, 612, 306, 0, 5965, 5963, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 5968, 1, 0, 0, 0, 5967, 5969, 3, 640, 320, 0, 5968, 5967, 1, 0, 0, 0, 5968, 5969, 1, 0, 0, 0, 5969, 5971, 1, 0, 0, 0, 5970, 5972, 3, 546, 273, 0, 5971, 5970, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 549, 1, 0, 0, 0, 5973, 5975, 5, 256, 0, 0, 5974, 5976, 5, 92, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 5992, 3, 628, 314, 0, 5978, 5989, 5, 68, 0, 0, 5979, 5980, 7, 77, 0, 0, 5980, 5990, 7, 78, 0, 0, 5981, 5986, 5, 334, 0, 0, 5982, 5983, 5, 369, 0, 0, 5983, 5987, 5, 201, 0, 0, 5984, 5985, 5, 414, 0, 0, 5985, 5987, 5, 201, 0, 0, 5986, 5982, 1, 0, 0, 0, 5986, 5984, 1, 0, 0, 0, 5986, 5987, 1, 0, 0, 0, 5987, 5990, 1, 0, 0, 0, 5988, 5990, 5, 201, 0, 0, 5989, 5979, 1, 0, 0, 0, 5989, 5981, 1, 0, 0, 0, 5989, 5988, 1, 0, 0, 0, 5990, 5991, 1, 0, 0, 0, 5991, 5993, 5, 263, 0, 0, 5992, 5978, 1, 0, 0, 0, 5992, 5993, 1, 0, 0, 0, 5993, 5995, 1, 0, 0, 0, 5994, 5996, 5, 272, 0, 0, 5995, 5994, 1, 0, 0, 0, 5995, 5996, 1, 0, 0, 0, 5996, 551, 1, 0, 0, 0, 5997, 5999, 3, 572, 286, 0, 5998, 5997, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 6000, 1, 0, 0, 0, 6000, 6001, 5, 369, 0, 0, 6001, 6002, 3, 630, 315, 0, 6002, 6003, 5, 333, 0, 0, 6003, 6005, 3, 554, 277, 0, 6004, 6006, 3, 610, 305, 0, 6005, 6004, 1, 0, 0, 0, 6005, 6006, 1, 0, 0, 0, 6006, 6008, 1, 0, 0, 0, 6007, 6009, 3, 640, 320, 0, 6008, 6007, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 6011, 1, 0, 0, 0, 6010, 6012, 3, 546, 273, 0, 6011, 6010, 1, 0, 0, 0, 6011, 6012, 1, 0, 0, 0, 6012, 553, 1, 0, 0, 0, 6013, 6018, 3, 556, 278, 0, 6014, 6015, 5, 6, 0, 0, 6015, 6017, 3, 556, 278, 0, 6016, 6014, 1, 0, 0, 0, 6017, 6020, 1, 0, 0, 0, 6018, 6016, 1, 0, 0, 0, 6018, 6019, 1, 0, 0, 0, 6019, 555, 1, 0, 0, 0, 6020, 6018, 1, 0, 0, 0, 6021, 6022, 3, 544, 272, 0, 6022, 6023, 5, 10, 0, 0, 6023, 6024, 3, 674, 337, 0, 6024, 6040, 1, 0, 0, 0, 6025, 6026, 5, 2, 0, 0, 6026, 6027, 3, 542, 271, 0, 6027, 6028, 5, 3, 0, 0, 6028, 6037, 5, 10, 0, 0, 6029, 6031, 5, 414, 0, 0, 6030, 6029, 1, 0, 0, 0, 6030, 6031, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6038, 3, 674, 337, 0, 6033, 6034, 5, 2, 0, 0, 6034, 6035, 3, 566, 283, 0, 6035, 6036, 5, 3, 0, 0, 6036, 6038, 1, 0, 0, 0, 6037, 6030, 1, 0, 0, 0, 6037, 6033, 1, 0, 0, 0, 6038, 6040, 1, 0, 0, 0, 6039, 6021, 1, 0, 0, 0, 6039, 6025, 1, 0, 0, 0, 6040, 557, 1, 0, 0, 0, 6041, 6042, 5, 178, 0, 0, 6042, 6051, 3, 818, 409, 0, 6043, 6045, 5, 269, 0, 0, 6044, 6043, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6046, 1, 0, 0, 0, 6046, 6050, 5, 324, 0, 0, 6047, 6050, 5, 107, 0, 0, 6048, 6050, 5, 240, 0, 0, 6049, 6044, 1, 0, 0, 0, 6049, 6047, 1, 0, 0, 0, 6049, 6048, 1, 0, 0, 0, 6050, 6053, 1, 0, 0, 0, 6051, 6049, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6054, 1, 0, 0, 0, 6053, 6051, 1, 0, 0, 0, 6054, 6057, 5, 172, 0, 0, 6055, 6056, 7, 26, 0, 0, 6056, 6058, 5, 217, 0, 0, 6057, 6055, 1, 0, 0, 0, 6057, 6058, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6060, 5, 62, 0, 0, 6060, 6061, 3, 560, 280, 0, 6061, 559, 1, 0, 0, 0, 6062, 6065, 3, 564, 282, 0, 6063, 6065, 3, 562, 281, 0, 6064, 6062, 1, 0, 0, 0, 6064, 6063, 1, 0, 0, 0, 6065, 561, 1, 0, 0, 0, 6066, 6069, 5, 2, 0, 0, 6067, 6070, 3, 564, 282, 0, 6068, 6070, 3, 562, 281, 0, 6069, 6067, 1, 0, 0, 0, 6069, 6068, 1, 0, 0, 0, 6070, 6071, 1, 0, 0, 0, 6071, 6072, 5, 3, 0, 0, 6072, 563, 1, 0, 0, 0, 6073, 6075, 3, 572, 286, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6076, 1, 0, 0, 0, 6076, 6078, 3, 566, 283, 0, 6077, 6079, 3, 586, 293, 0, 6078, 6077, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6088, 1, 0, 0, 0, 6080, 6082, 3, 606, 303, 0, 6081, 6083, 3, 590, 295, 0, 6082, 6081, 1, 0, 0, 0, 6082, 6083, 1, 0, 0, 0, 6083, 6089, 1, 0, 0, 0, 6084, 6086, 3, 590, 295, 0, 6085, 6087, 3, 606, 303, 0, 6086, 6085, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6089, 1, 0, 0, 0, 6088, 6080, 1, 0, 0, 0, 6088, 6084, 1, 0, 0, 0, 6088, 6089, 1, 0, 0, 0, 6089, 565, 1, 0, 0, 0, 6090, 6093, 3, 568, 284, 0, 6091, 6093, 3, 562, 281, 0, 6092, 6090, 1, 0, 0, 0, 6092, 6091, 1, 0, 0, 0, 6093, 567, 1, 0, 0, 0, 6094, 6104, 5, 88, 0, 0, 6095, 6097, 5, 30, 0, 0, 6096, 6095, 1, 0, 0, 0, 6096, 6097, 1, 0, 0, 0, 6097, 6099, 1, 0, 0, 0, 6098, 6100, 3, 580, 290, 0, 6099, 6098, 1, 0, 0, 0, 6099, 6100, 1, 0, 0, 0, 6100, 6105, 1, 0, 0, 0, 6101, 6103, 3, 584, 292, 0, 6102, 6101, 1, 0, 0, 0, 6102, 6103, 1, 0, 0, 0, 6103, 6105, 1, 0, 0, 0, 6104, 6096, 1, 0, 0, 0, 6104, 6102, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 6117, 3, 930, 465, 0, 6107, 6117, 3, 608, 304, 0, 6108, 6109, 5, 92, 0, 0, 6109, 6117, 3, 624, 312, 0, 6110, 6111, 3, 562, 281, 0, 6111, 6114, 3, 570, 285, 0, 6112, 6115, 3, 568, 284, 0, 6113, 6115, 3, 562, 281, 0, 6114, 6112, 1, 0, 0, 0, 6114, 6113, 1, 0, 0, 0, 6115, 6117, 1, 0, 0, 0, 6116, 6094, 1, 0, 0, 0, 6116, 6107, 1, 0, 0, 0, 6116, 6108, 1, 0, 0, 0, 6116, 6110, 1, 0, 0, 0, 6117, 6125, 1, 0, 0, 0, 6118, 6121, 3, 570, 285, 0, 6119, 6122, 3, 568, 284, 0, 6120, 6122, 3, 562, 281, 0, 6121, 6119, 1, 0, 0, 0, 6121, 6120, 1, 0, 0, 0, 6122, 6124, 1, 0, 0, 0, 6123, 6118, 1, 0, 0, 0, 6124, 6127, 1, 0, 0, 0, 6125, 6123, 1, 0, 0, 0, 6125, 6126, 1, 0, 0, 0, 6126, 569, 1, 0, 0, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6130, 7, 79, 0, 0, 6129, 6131, 7, 80, 0, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 571, 1, 0, 0, 0, 6132, 6134, 5, 105, 0, 0, 6133, 6135, 5, 303, 0, 0, 6134, 6133, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 6141, 3, 574, 287, 0, 6137, 6138, 5, 6, 0, 0, 6138, 6140, 3, 574, 287, 0, 6139, 6137, 1, 0, 0, 0, 6140, 6143, 1, 0, 0, 0, 6141, 6139, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 573, 1, 0, 0, 0, 6143, 6141, 1, 0, 0, 0, 6144, 6146, 3, 818, 409, 0, 6145, 6147, 3, 144, 72, 0, 6146, 6145, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6148, 1, 0, 0, 0, 6148, 6153, 5, 36, 0, 0, 6149, 6151, 5, 77, 0, 0, 6150, 6149, 1, 0, 0, 0, 6150, 6151, 1, 0, 0, 0, 6151, 6152, 1, 0, 0, 0, 6152, 6154, 5, 259, 0, 0, 6153, 6150, 1, 0, 0, 0, 6153, 6154, 1, 0, 0, 0, 6154, 6155, 1, 0, 0, 0, 6155, 6156, 5, 2, 0, 0, 6156, 6157, 3, 530, 265, 0, 6157, 6159, 5, 3, 0, 0, 6158, 6160, 3, 576, 288, 0, 6159, 6158, 1, 0, 0, 0, 6159, 6160, 1, 0, 0, 0, 6160, 6162, 1, 0, 0, 0, 6161, 6163, 3, 578, 289, 0, 6162, 6161, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 575, 1, 0, 0, 0, 6164, 6165, 5, 325, 0, 0, 6165, 6166, 7, 81, 0, 0, 6166, 6167, 5, 207, 0, 0, 6167, 6168, 5, 147, 0, 0, 6168, 6169, 3, 148, 74, 0, 6169, 6170, 5, 333, 0, 0, 6170, 6171, 3, 800, 400, 0, 6171, 577, 1, 0, 0, 0, 6172, 6173, 5, 173, 0, 0, 6173, 6174, 3, 148, 74, 0, 6174, 6175, 5, 333, 0, 0, 6175, 6181, 3, 800, 400, 0, 6176, 6177, 5, 94, 0, 0, 6177, 6178, 3, 818, 409, 0, 6178, 6179, 5, 53, 0, 0, 6179, 6180, 3, 818, 409, 0, 6180, 6182, 1, 0, 0, 0, 6181, 6176, 1, 0, 0, 0, 6181, 6182, 1, 0, 0, 0, 6182, 6183, 1, 0, 0, 0, 6183, 6184, 5, 100, 0, 0, 6184, 6185, 3, 800, 400, 0, 6185, 579, 1, 0, 0, 0, 6186, 6192, 5, 71, 0, 0, 6187, 6189, 5, 346, 0, 0, 6188, 6187, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6193, 3, 582, 291, 0, 6191, 6193, 3, 730, 365, 0, 6192, 6188, 1, 0, 0, 0, 6192, 6191, 1, 0, 0, 0, 6193, 581, 1, 0, 0, 0, 6194, 6196, 7, 20, 0, 0, 6195, 6194, 1, 0, 0, 0, 6195, 6196, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6199, 7, 21, 0, 0, 6198, 6200, 5, 92, 0, 0, 6199, 6198, 1, 0, 0, 0, 6199, 6200, 1, 0, 0, 0, 6200, 6201, 1, 0, 0, 0, 6201, 6210, 3, 772, 386, 0, 6202, 6204, 5, 367, 0, 0, 6203, 6202, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6206, 1, 0, 0, 0, 6205, 6207, 5, 92, 0, 0, 6206, 6205, 1, 0, 0, 0, 6206, 6207, 1, 0, 0, 0, 6207, 6208, 1, 0, 0, 0, 6208, 6210, 3, 772, 386, 0, 6209, 6195, 1, 0, 0, 0, 6209, 6203, 1, 0, 0, 0, 6210, 583, 1, 0, 0, 0, 6211, 6214, 5, 56, 0, 0, 6212, 6213, 5, 80, 0, 0, 6213, 6215, 3, 534, 267, 0, 6214, 6212, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 585, 1, 0, 0, 0, 6216, 6217, 5, 83, 0, 0, 6217, 6218, 5, 147, 0, 0, 6218, 6223, 3, 588, 294, 0, 6219, 6220, 5, 6, 0, 0, 6220, 6222, 3, 588, 294, 0, 6221, 6219, 1, 0, 0, 0, 6222, 6225, 1, 0, 0, 0, 6223, 6221, 1, 0, 0, 0, 6223, 6224, 1, 0, 0, 0, 6224, 587, 1, 0, 0, 0, 6225, 6223, 1, 0, 0, 0, 6226, 6230, 3, 734, 367, 0, 6227, 6228, 5, 100, 0, 0, 6228, 6231, 3, 726, 363, 0, 6229, 6231, 7, 55, 0, 0, 6230, 6227, 1, 0, 0, 0, 6230, 6229, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6234, 1, 0, 0, 0, 6232, 6233, 5, 273, 0, 0, 6233, 6235, 7, 56, 0, 0, 6234, 6232, 1, 0, 0, 0, 6234, 6235, 1, 0, 0, 0, 6235, 589, 1, 0, 0, 0, 6236, 6238, 3, 596, 298, 0, 6237, 6239, 3, 594, 297, 0, 6238, 6237, 1, 0, 0, 0, 6238, 6239, 1, 0, 0, 0, 6239, 6248, 1, 0, 0, 0, 6240, 6243, 3, 592, 296, 0, 6241, 6243, 3, 594, 297, 0, 6242, 6240, 1, 0, 0, 0, 6242, 6241, 1, 0, 0, 0, 6243, 6245, 1, 0, 0, 0, 6244, 6246, 3, 596, 298, 0, 6245, 6244, 1, 0, 0, 0, 6245, 6246, 1, 0, 0, 0, 6246, 6248, 1, 0, 0, 0, 6247, 6236, 1, 0, 0, 0, 6247, 6242, 1, 0, 0, 0, 6248, 591, 1, 0, 0, 0, 6249, 6252, 5, 74, 0, 0, 6250, 6253, 3, 674, 337, 0, 6251, 6253, 5, 30, 0, 0, 6252, 6250, 1, 0, 0, 0, 6252, 6251, 1, 0, 0, 0, 6253, 6256, 1, 0, 0, 0, 6254, 6255, 5, 6, 0, 0, 6255, 6257, 3, 674, 337, 0, 6256, 6254, 1, 0, 0, 0, 6256, 6257, 1, 0, 0, 0, 6257, 593, 1, 0, 0, 0, 6258, 6259, 5, 61, 0, 0, 6259, 6261, 7, 82, 0, 0, 6260, 6262, 3, 598, 299, 0, 6261, 6260, 1, 0, 0, 0, 6261, 6262, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6267, 7, 83, 0, 0, 6264, 6268, 5, 81, 0, 0, 6265, 6266, 5, 105, 0, 0, 6266, 6268, 5, 467, 0, 0, 6267, 6264, 1, 0, 0, 0, 6267, 6265, 1, 0, 0, 0, 6268, 595, 1, 0, 0, 0, 6269, 6274, 5, 79, 0, 0, 6270, 6271, 3, 598, 299, 0, 6271, 6272, 7, 83, 0, 0, 6272, 6275, 1, 0, 0, 0, 6273, 6275, 3, 674, 337, 0, 6274, 6270, 1, 0, 0, 0, 6274, 6273, 1, 0, 0, 0, 6275, 597, 1, 0, 0, 0, 6276, 6277, 7, 29, 0, 0, 6277, 6280, 7, 84, 0, 0, 6278, 6280, 3, 682, 341, 0, 6279, 6276, 1, 0, 0, 0, 6279, 6278, 1, 0, 0, 0, 6280, 599, 1, 0, 0, 0, 6281, 6282, 5, 66, 0, 0, 6282, 6284, 5, 147, 0, 0, 6283, 6285, 7, 80, 0, 0, 6284, 6283, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6286, 1, 0, 0, 0, 6286, 6287, 3, 602, 301, 0, 6287, 601, 1, 0, 0, 0, 6288, 6293, 3, 604, 302, 0, 6289, 6290, 5, 6, 0, 0, 6290, 6292, 3, 604, 302, 0, 6291, 6289, 1, 0, 0, 0, 6292, 6295, 1, 0, 0, 0, 6293, 6291, 1, 0, 0, 0, 6293, 6294, 1, 0, 0, 0, 6294, 603, 1, 0, 0, 0, 6295, 6293, 1, 0, 0, 0, 6296, 6320, 3, 734, 367, 0, 6297, 6298, 5, 2, 0, 0, 6298, 6320, 5, 3, 0, 0, 6299, 6301, 7, 85, 0, 0, 6300, 6299, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6302, 1, 0, 0, 0, 6302, 6303, 5, 2, 0, 0, 6303, 6308, 3, 734, 367, 0, 6304, 6305, 5, 6, 0, 0, 6305, 6307, 3, 734, 367, 0, 6306, 6304, 1, 0, 0, 0, 6307, 6310, 1, 0, 0, 0, 6308, 6306, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6311, 1, 0, 0, 0, 6310, 6308, 1, 0, 0, 0, 6311, 6312, 5, 3, 0, 0, 6312, 6320, 1, 0, 0, 0, 6313, 6314, 5, 470, 0, 0, 6314, 6315, 5, 471, 0, 0, 6315, 6316, 5, 2, 0, 0, 6316, 6317, 3, 602, 301, 0, 6317, 6318, 5, 3, 0, 0, 6318, 6320, 1, 0, 0, 0, 6319, 6296, 1, 0, 0, 0, 6319, 6297, 1, 0, 0, 0, 6319, 6300, 1, 0, 0, 0, 6319, 6313, 1, 0, 0, 0, 6320, 605, 1, 0, 0, 0, 6321, 6331, 5, 62, 0, 0, 6322, 6323, 5, 269, 0, 0, 6323, 6325, 5, 245, 0, 0, 6324, 6322, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6326, 1, 0, 0, 0, 6326, 6332, 5, 369, 0, 0, 6327, 6329, 5, 245, 0, 0, 6328, 6327, 1, 0, 0, 0, 6328, 6329, 1, 0, 0, 0, 6329, 6330, 1, 0, 0, 0, 6330, 6332, 5, 334, 0, 0, 6331, 6324, 1, 0, 0, 0, 6331, 6328, 1, 0, 0, 0, 6332, 6335, 1, 0, 0, 0, 6333, 6334, 5, 275, 0, 0, 6334, 6336, 3, 760, 380, 0, 6335, 6333, 1, 0, 0, 0, 6335, 6336, 1, 0, 0, 0, 6336, 6340, 1, 0, 0, 0, 6337, 6341, 5, 272, 0, 0, 6338, 6339, 5, 465, 0, 0, 6339, 6341, 5, 466, 0, 0, 6340, 6337, 1, 0, 0, 0, 6340, 6338, 1, 0, 0, 0, 6340, 6341, 1, 0, 0, 0, 6341, 6343, 1, 0, 0, 0, 6342, 6321, 1, 0, 0, 0, 6343, 6344, 1, 0, 0, 0, 6344, 6342, 1, 0, 0, 0, 6344, 6345, 1, 0, 0, 0, 6345, 6350, 1, 0, 0, 0, 6346, 6347, 5, 62, 0, 0, 6347, 6348, 5, 300, 0, 0, 6348, 6350, 5, 81, 0, 0, 6349, 6342, 1, 0, 0, 0, 6349, 6346, 1, 0, 0, 0, 6350, 607, 1, 0, 0, 0, 6351, 6352, 5, 422, 0, 0, 6352, 6357, 3, 534, 267, 0, 6353, 6354, 5, 6, 0, 0, 6354, 6356, 3, 534, 267, 0, 6355, 6353, 1, 0, 0, 0, 6356, 6359, 1, 0, 0, 0, 6357, 6355, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 609, 1, 0, 0, 0, 6359, 6357, 1, 0, 0, 0, 6360, 6361, 5, 64, 0, 0, 6361, 6362, 3, 612, 306, 0, 6362, 611, 1, 0, 0, 0, 6363, 6368, 3, 614, 307, 0, 6364, 6365, 5, 6, 0, 0, 6365, 6367, 3, 614, 307, 0, 6366, 6364, 1, 0, 0, 0, 6367, 6370, 1, 0, 0, 0, 6368, 6366, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 613, 1, 0, 0, 0, 6370, 6368, 1, 0, 0, 0, 6371, 6386, 3, 624, 312, 0, 6372, 6374, 5, 81, 0, 0, 6373, 6372, 1, 0, 0, 0, 6373, 6374, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6377, 3, 778, 389, 0, 6376, 6378, 5, 9, 0, 0, 6377, 6376, 1, 0, 0, 0, 6377, 6378, 1, 0, 0, 0, 6378, 6380, 1, 0, 0, 0, 6379, 6381, 3, 148, 74, 0, 6380, 6379, 1, 0, 0, 0, 6380, 6381, 1, 0, 0, 0, 6381, 6383, 1, 0, 0, 0, 6382, 6384, 3, 638, 319, 0, 6383, 6382, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6386, 1, 0, 0, 0, 6385, 6371, 1, 0, 0, 0, 6385, 6373, 1, 0, 0, 0, 6386, 6388, 1, 0, 0, 0, 6387, 6389, 3, 616, 308, 0, 6388, 6387, 1, 0, 0, 0, 6388, 6389, 1, 0, 0, 0, 6389, 6391, 1, 0, 0, 0, 6390, 6392, 3, 632, 316, 0, 6391, 6390, 1, 0, 0, 0, 6391, 6392, 1, 0, 0, 0, 6392, 6435, 1, 0, 0, 0, 6393, 6395, 5, 72, 0, 0, 6394, 6393, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6408, 1, 0, 0, 0, 6396, 6398, 3, 646, 323, 0, 6397, 6399, 3, 616, 308, 0, 6398, 6397, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6409, 1, 0, 0, 0, 6400, 6402, 3, 634, 317, 0, 6401, 6403, 3, 618, 309, 0, 6402, 6401, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6409, 1, 0, 0, 0, 6404, 6406, 3, 562, 281, 0, 6405, 6407, 3, 616, 308, 0, 6406, 6405, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6409, 1, 0, 0, 0, 6408, 6396, 1, 0, 0, 0, 6408, 6400, 1, 0, 0, 0, 6408, 6404, 1, 0, 0, 0, 6409, 6435, 1, 0, 0, 0, 6410, 6411, 5, 2, 0, 0, 6411, 6428, 3, 614, 307, 0, 6412, 6413, 5, 110, 0, 0, 6413, 6414, 5, 118, 0, 0, 6414, 6429, 3, 614, 307, 0, 6415, 6417, 5, 121, 0, 0, 6416, 6418, 3, 620, 310, 0, 6417, 6416, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6419, 1, 0, 0, 0, 6419, 6420, 5, 118, 0, 0, 6420, 6429, 3, 614, 307, 0, 6421, 6423, 3, 620, 310, 0, 6422, 6421, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 1, 0, 0, 0, 6424, 6425, 5, 118, 0, 0, 6425, 6426, 3, 614, 307, 0, 6426, 6427, 3, 622, 311, 0, 6427, 6429, 1, 0, 0, 0, 6428, 6412, 1, 0, 0, 0, 6428, 6415, 1, 0, 0, 0, 6428, 6422, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 6430, 1, 0, 0, 0, 6430, 6432, 5, 3, 0, 0, 6431, 6433, 3, 616, 308, 0, 6432, 6431, 1, 0, 0, 0, 6432, 6433, 1, 0, 0, 0, 6433, 6435, 1, 0, 0, 0, 6434, 6385, 1, 0, 0, 0, 6434, 6394, 1, 0, 0, 0, 6434, 6410, 1, 0, 0, 0, 6435, 6454, 1, 0, 0, 0, 6436, 6437, 5, 110, 0, 0, 6437, 6438, 5, 118, 0, 0, 6438, 6453, 3, 614, 307, 0, 6439, 6441, 5, 121, 0, 0, 6440, 6442, 3, 620, 310, 0, 6441, 6440, 1, 0, 0, 0, 6441, 6442, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 6444, 5, 118, 0, 0, 6444, 6453, 3, 614, 307, 0, 6445, 6447, 3, 620, 310, 0, 6446, 6445, 1, 0, 0, 0, 6446, 6447, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6449, 5, 118, 0, 0, 6449, 6450, 3, 614, 307, 0, 6450, 6451, 3, 622, 311, 0, 6451, 6453, 1, 0, 0, 0, 6452, 6436, 1, 0, 0, 0, 6452, 6439, 1, 0, 0, 0, 6452, 6446, 1, 0, 0, 0, 6453, 6456, 1, 0, 0, 0, 6454, 6452, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 615, 1, 0, 0, 0, 6456, 6454, 1, 0, 0, 0, 6457, 6459, 5, 36, 0, 0, 6458, 6457, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 6465, 3, 818, 409, 0, 6461, 6462, 5, 2, 0, 0, 6462, 6463, 3, 784, 392, 0, 6463, 6464, 5, 3, 0, 0, 6464, 6466, 1, 0, 0, 0, 6465, 6461, 1, 0, 0, 0, 6465, 6466, 1, 0, 0, 0, 6466, 617, 1, 0, 0, 0, 6467, 6480, 3, 616, 308, 0, 6468, 6470, 5, 36, 0, 0, 6469, 6471, 3, 818, 409, 0, 6470, 6469, 1, 0, 0, 0, 6470, 6471, 1, 0, 0, 0, 6471, 6474, 1, 0, 0, 0, 6472, 6474, 3, 818, 409, 0, 6473, 6468, 1, 0, 0, 0, 6473, 6472, 1, 0, 0, 0, 6474, 6475, 1, 0, 0, 0, 6475, 6476, 5, 2, 0, 0, 6476, 6477, 3, 642, 321, 0, 6477, 6478, 5, 3, 0, 0, 6478, 6480, 1, 0, 0, 0, 6479, 6467, 1, 0, 0, 0, 6479, 6473, 1, 0, 0, 0, 6480, 619, 1, 0, 0, 0, 6481, 6483, 7, 86, 0, 0, 6482, 6484, 5, 123, 0, 0, 6483, 6482, 1, 0, 0, 0, 6483, 6484, 1, 0, 0, 0, 6484, 621, 1, 0, 0, 0, 6485, 6486, 5, 100, 0, 0, 6486, 6490, 3, 144, 72, 0, 6487, 6488, 5, 80, 0, 0, 6488, 6490, 3, 674, 337, 0, 6489, 6485, 1, 0, 0, 0, 6489, 6487, 1, 0, 0, 0, 6490, 623, 1, 0, 0, 0, 6491, 6507, 3, 322, 161, 0, 6492, 6498, 5, 81, 0, 0, 6493, 6499, 3, 774, 387, 0, 6494, 6495, 5, 2, 0, 0, 6495, 6496, 3, 774, 387, 0, 6496, 6497, 5, 3, 0, 0, 6497, 6499, 1, 0, 0, 0, 6498, 6493, 1, 0, 0, 0, 6498, 6494, 1, 0, 0, 0, 6499, 6507, 1, 0, 0, 0, 6500, 6501, 5, 68, 0, 0, 6501, 6504, 5, 323, 0, 0, 6502, 6505, 3, 790, 395, 0, 6503, 6505, 5, 111, 0, 0, 6504, 6502, 1, 0, 0, 0, 6504, 6503, 1, 0, 0, 0, 6505, 6507, 1, 0, 0, 0, 6506, 6491, 1, 0, 0, 0, 6506, 6492, 1, 0, 0, 0, 6506, 6500, 1, 0, 0, 0, 6507, 625, 1, 0, 0, 0, 6508, 6509, 5, 92, 0, 0, 6509, 6511, 3, 322, 161, 0, 6510, 6512, 3, 144, 72, 0, 6511, 6510, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 6514, 1, 0, 0, 0, 6513, 6515, 3, 638, 319, 0, 6514, 6513, 1, 0, 0, 0, 6514, 6515, 1, 0, 0, 0, 6515, 6533, 1, 0, 0, 0, 6516, 6517, 5, 92, 0, 0, 6517, 6523, 5, 81, 0, 0, 6518, 6524, 3, 774, 387, 0, 6519, 6520, 5, 2, 0, 0, 6520, 6521, 3, 774, 387, 0, 6521, 6522, 5, 3, 0, 0, 6522, 6524, 1, 0, 0, 0, 6523, 6518, 1, 0, 0, 0, 6523, 6519, 1, 0, 0, 0, 6524, 6533, 1, 0, 0, 0, 6525, 6526, 5, 350, 0, 0, 6526, 6527, 5, 68, 0, 0, 6527, 6530, 5, 323, 0, 0, 6528, 6531, 3, 790, 395, 0, 6529, 6531, 5, 111, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6529, 1, 0, 0, 0, 6531, 6533, 1, 0, 0, 0, 6532, 6508, 1, 0, 0, 0, 6532, 6516, 1, 0, 0, 0, 6532, 6525, 1, 0, 0, 0, 6533, 627, 1, 0, 0, 0, 6534, 6539, 3, 624, 312, 0, 6535, 6536, 5, 6, 0, 0, 6536, 6538, 3, 624, 312, 0, 6537, 6535, 1, 0, 0, 0, 6538, 6541, 1, 0, 0, 0, 6539, 6537, 1, 0, 0, 0, 6539, 6540, 1, 0, 0, 0, 6540, 629, 1, 0, 0, 0, 6541, 6539, 1, 0, 0, 0, 6542, 6547, 3, 624, 312, 0, 6543, 6545, 5, 36, 0, 0, 6544, 6543, 1, 0, 0, 0, 6544, 6545, 1, 0, 0, 0, 6545, 6546, 1, 0, 0, 0, 6546, 6548, 3, 818, 409, 0, 6547, 6544, 1, 0, 0, 0, 6547, 6548, 1, 0, 0, 0, 6548, 631, 1, 0, 0, 0, 6549, 6550, 5, 472, 0, 0, 6550, 6551, 3, 806, 403, 0, 6551, 6557, 3, 534, 267, 0, 6552, 6553, 5, 310, 0, 0, 6553, 6554, 5, 2, 0, 0, 6554, 6555, 3, 674, 337, 0, 6555, 6556, 5, 3, 0, 0, 6556, 6558, 1, 0, 0, 0, 6557, 6552, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 633, 1, 0, 0, 0, 6559, 6574, 3, 688, 344, 0, 6560, 6561, 5, 320, 0, 0, 6561, 6562, 5, 64, 0, 0, 6562, 6563, 5, 2, 0, 0, 6563, 6568, 3, 636, 318, 0, 6564, 6565, 5, 6, 0, 0, 6565, 6567, 3, 636, 318, 0, 6566, 6564, 1, 0, 0, 0, 6567, 6570, 1, 0, 0, 0, 6568, 6566, 1, 0, 0, 0, 6568, 6569, 1, 0, 0, 0, 6569, 6571, 1, 0, 0, 0, 6570, 6568, 1, 0, 0, 0, 6571, 6572, 5, 3, 0, 0, 6572, 6574, 1, 0, 0, 0, 6573, 6559, 1, 0, 0, 0, 6573, 6560, 1, 0, 0, 0, 6574, 6577, 1, 0, 0, 0, 6575, 6576, 5, 105, 0, 0, 6576, 6578, 5, 473, 0, 0, 6577, 6575, 1, 0, 0, 0, 6577, 6578, 1, 0, 0, 0, 6578, 635, 1, 0, 0, 0, 6579, 6585, 3, 688, 344, 0, 6580, 6581, 5, 36, 0, 0, 6581, 6582, 5, 2, 0, 0, 6582, 6583, 3, 642, 321, 0, 6583, 6584, 5, 3, 0, 0, 6584, 6586, 1, 0, 0, 0, 6585, 6580, 1, 0, 0, 0, 6585, 6586, 1, 0, 0, 0, 6586, 637, 1, 0, 0, 0, 6587, 6588, 5, 103, 0, 0, 6588, 6589, 3, 734, 367, 0, 6589, 639, 1, 0, 0, 0, 6590, 6595, 5, 103, 0, 0, 6591, 6592, 5, 434, 0, 0, 6592, 6593, 5, 275, 0, 0, 6593, 6596, 3, 818, 409, 0, 6594, 6596, 3, 674, 337, 0, 6595, 6591, 1, 0, 0, 0, 6595, 6594, 1, 0, 0, 0, 6596, 641, 1, 0, 0, 0, 6597, 6602, 3, 644, 322, 0, 6598, 6599, 5, 6, 0, 0, 6599, 6601, 3, 644, 322, 0, 6600, 6598, 1, 0, 0, 0, 6601, 6604, 1, 0, 0, 0, 6602, 6600, 1, 0, 0, 0, 6602, 6603, 1, 0, 0, 0, 6603, 643, 1, 0, 0, 0, 6604, 6602, 1, 0, 0, 0, 6605, 6606, 3, 818, 409, 0, 6606, 6608, 3, 652, 326, 0, 6607, 6609, 3, 98, 49, 0, 6608, 6607, 1, 0, 0, 0, 6608, 6609, 1, 0, 0, 0, 6609, 645, 1, 0, 0, 0, 6610, 6611, 5, 474, 0, 0, 6611, 6625, 5, 2, 0, 0, 6612, 6613, 5, 476, 0, 0, 6613, 6614, 5, 2, 0, 0, 6614, 6619, 3, 650, 325, 0, 6615, 6616, 5, 6, 0, 0, 6616, 6618, 3, 650, 325, 0, 6617, 6615, 1, 0, 0, 0, 6618, 6621, 1, 0, 0, 0, 6619, 6617, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 6622, 1, 0, 0, 0, 6621, 6619, 1, 0, 0, 0, 6622, 6623, 5, 3, 0, 0, 6623, 6624, 5, 6, 0, 0, 6624, 6626, 1, 0, 0, 0, 6625, 6612, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6627, 1, 0, 0, 0, 6627, 6628, 3, 682, 341, 0, 6628, 6629, 3, 698, 349, 0, 6629, 6630, 5, 475, 0, 0, 6630, 6635, 3, 648, 324, 0, 6631, 6632, 5, 6, 0, 0, 6632, 6634, 3, 648, 324, 0, 6633, 6631, 1, 0, 0, 0, 6634, 6637, 1, 0, 0, 0, 6635, 6633, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6638, 1, 0, 0, 0, 6637, 6635, 1, 0, 0, 0, 6638, 6639, 5, 3, 0, 0, 6639, 647, 1, 0, 0, 0, 6640, 6659, 3, 818, 409, 0, 6641, 6655, 3, 652, 326, 0, 6642, 6645, 5, 53, 0, 0, 6643, 6645, 3, 826, 413, 0, 6644, 6642, 1, 0, 0, 0, 6644, 6643, 1, 0, 0, 0, 6645, 6646, 1, 0, 0, 0, 6646, 6652, 3, 674, 337, 0, 6647, 6649, 5, 77, 0, 0, 6648, 6647, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6650, 1, 0, 0, 0, 6650, 6652, 5, 78, 0, 0, 6651, 6644, 1, 0, 0, 0, 6651, 6648, 1, 0, 0, 0, 6652, 6653, 1, 0, 0, 0, 6653, 6651, 1, 0, 0, 0, 6653, 6654, 1, 0, 0, 0, 6654, 6656, 1, 0, 0, 0, 6655, 6651, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6660, 1, 0, 0, 0, 6657, 6658, 5, 62, 0, 0, 6658, 6660, 5, 473, 0, 0, 6659, 6641, 1, 0, 0, 0, 6659, 6657, 1, 0, 0, 0, 6660, 649, 1, 0, 0, 0, 6661, 6662, 3, 682, 341, 0, 6662, 6663, 5, 36, 0, 0, 6663, 6664, 3, 824, 412, 0, 6664, 6668, 1, 0, 0, 0, 6665, 6666, 5, 53, 0, 0, 6666, 6668, 3, 682, 341, 0, 6667, 6661, 1, 0, 0, 0, 6667, 6665, 1, 0, 0, 0, 6668, 651, 1, 0, 0, 0, 6669, 6671, 5, 415, 0, 0, 6670, 6669, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 6672, 1, 0, 0, 0, 6672, 6689, 3, 654, 327, 0, 6673, 6675, 5, 4, 0, 0, 6674, 6676, 5, 571, 0, 0, 6675, 6674, 1, 0, 0, 0, 6675, 6676, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 6679, 5, 5, 0, 0, 6678, 6673, 1, 0, 0, 0, 6679, 6682, 1, 0, 0, 0, 6680, 6678, 1, 0, 0, 0, 6680, 6681, 1, 0, 0, 0, 6681, 6690, 1, 0, 0, 0, 6682, 6680, 1, 0, 0, 0, 6683, 6687, 5, 35, 0, 0, 6684, 6685, 5, 4, 0, 0, 6685, 6686, 5, 571, 0, 0, 6686, 6688, 5, 5, 0, 0, 6687, 6684, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6690, 1, 0, 0, 0, 6689, 6680, 1, 0, 0, 0, 6689, 6683, 1, 0, 0, 0, 6690, 6696, 1, 0, 0, 0, 6691, 6692, 3, 780, 390, 0, 6692, 6693, 5, 27, 0, 0, 6693, 6694, 7, 87, 0, 0, 6694, 6696, 1, 0, 0, 0, 6695, 6670, 1, 0, 0, 0, 6695, 6691, 1, 0, 0, 0, 6696, 653, 1, 0, 0, 0, 6697, 6699, 3, 820, 410, 0, 6698, 6700, 3, 318, 159, 0, 6699, 6698, 1, 0, 0, 0, 6699, 6700, 1, 0, 0, 0, 6700, 6702, 1, 0, 0, 0, 6701, 6703, 3, 534, 267, 0, 6702, 6701, 1, 0, 0, 0, 6702, 6703, 1, 0, 0, 0, 6703, 6713, 1, 0, 0, 0, 6704, 6713, 3, 656, 328, 0, 6705, 6710, 5, 403, 0, 0, 6706, 6708, 3, 668, 334, 0, 6707, 6706, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6711, 1, 0, 0, 0, 6709, 6711, 3, 660, 330, 0, 6710, 6707, 1, 0, 0, 0, 6710, 6709, 1, 0, 0, 0, 6711, 6713, 1, 0, 0, 0, 6712, 6697, 1, 0, 0, 0, 6712, 6704, 1, 0, 0, 0, 6712, 6705, 1, 0, 0, 0, 6713, 655, 1, 0, 0, 0, 6714, 6719, 3, 658, 329, 0, 6715, 6719, 3, 662, 331, 0, 6716, 6719, 3, 664, 332, 0, 6717, 6719, 3, 666, 333, 0, 6718, 6714, 1, 0, 0, 0, 6718, 6715, 1, 0, 0, 0, 6718, 6716, 1, 0, 0, 0, 6718, 6717, 1, 0, 0, 0, 6719, 657, 1, 0, 0, 0, 6720, 6737, 5, 401, 0, 0, 6721, 6737, 5, 402, 0, 0, 6722, 6737, 5, 416, 0, 0, 6723, 6737, 5, 388, 0, 0, 6724, 6737, 5, 413, 0, 0, 6725, 6727, 5, 398, 0, 0, 6726, 6728, 3, 660, 330, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 6737, 1, 0, 0, 0, 6729, 6730, 5, 190, 0, 0, 6730, 6737, 5, 412, 0, 0, 6731, 6733, 7, 88, 0, 0, 6732, 6734, 3, 534, 267, 0, 6733, 6732, 1, 0, 0, 0, 6733, 6734, 1, 0, 0, 0, 6734, 6737, 1, 0, 0, 0, 6735, 6737, 5, 390, 0, 0, 6736, 6720, 1, 0, 0, 0, 6736, 6721, 1, 0, 0, 0, 6736, 6722, 1, 0, 0, 0, 6736, 6723, 1, 0, 0, 0, 6736, 6724, 1, 0, 0, 0, 6736, 6725, 1, 0, 0, 0, 6736, 6729, 1, 0, 0, 0, 6736, 6731, 1, 0, 0, 0, 6736, 6735, 1, 0, 0, 0, 6737, 659, 1, 0, 0, 0, 6738, 6739, 5, 2, 0, 0, 6739, 6740, 5, 571, 0, 0, 6740, 6741, 5, 3, 0, 0, 6741, 661, 1, 0, 0, 0, 6742, 6744, 5, 389, 0, 0, 6743, 6745, 5, 374, 0, 0, 6744, 6743, 1, 0, 0, 0, 6744, 6745, 1, 0, 0, 0, 6745, 6747, 1, 0, 0, 0, 6746, 6748, 3, 534, 267, 0, 6747, 6746, 1, 0, 0, 0, 6747, 6748, 1, 0, 0, 0, 6748, 663, 1, 0, 0, 0, 6749, 6751, 7, 89, 0, 0, 6750, 6752, 5, 374, 0, 0, 6751, 6750, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 6760, 1, 0, 0, 0, 6753, 6760, 5, 423, 0, 0, 6754, 6755, 5, 405, 0, 0, 6755, 6757, 7, 90, 0, 0, 6756, 6758, 5, 374, 0, 0, 6757, 6756, 1, 0, 0, 0, 6757, 6758, 1, 0, 0, 0, 6758, 6760, 1, 0, 0, 0, 6759, 6749, 1, 0, 0, 0, 6759, 6753, 1, 0, 0, 0, 6759, 6754, 1, 0, 0, 0, 6760, 6762, 1, 0, 0, 0, 6761, 6763, 3, 660, 330, 0, 6762, 6761, 1, 0, 0, 0, 6762, 6763, 1, 0, 0, 0, 6763, 665, 1, 0, 0, 0, 6764, 6766, 7, 91, 0, 0, 6765, 6767, 3, 660, 330, 0, 6766, 6765, 1, 0, 0, 0, 6766, 6767, 1, 0, 0, 0, 6767, 6771, 1, 0, 0, 0, 6768, 6769, 7, 26, 0, 0, 6769, 6770, 5, 418, 0, 0, 6770, 6772, 5, 386, 0, 0, 6771, 6768, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 667, 1, 0, 0, 0, 6773, 6803, 5, 264, 0, 0, 6774, 6803, 3, 670, 335, 0, 6775, 6778, 5, 384, 0, 0, 6776, 6777, 5, 94, 0, 0, 6777, 6779, 5, 264, 0, 0, 6778, 6776, 1, 0, 0, 0, 6778, 6779, 1, 0, 0, 0, 6779, 6803, 1, 0, 0, 0, 6780, 6787, 5, 176, 0, 0, 6781, 6785, 5, 94, 0, 0, 6782, 6786, 5, 218, 0, 0, 6783, 6786, 5, 261, 0, 0, 6784, 6786, 3, 670, 335, 0, 6785, 6782, 1, 0, 0, 0, 6785, 6783, 1, 0, 0, 0, 6785, 6784, 1, 0, 0, 0, 6786, 6788, 1, 0, 0, 0, 6787, 6781, 1, 0, 0, 0, 6787, 6788, 1, 0, 0, 0, 6788, 6803, 1, 0, 0, 0, 6789, 6795, 5, 218, 0, 0, 6790, 6793, 5, 94, 0, 0, 6791, 6794, 5, 261, 0, 0, 6792, 6794, 3, 670, 335, 0, 6793, 6791, 1, 0, 0, 0, 6793, 6792, 1, 0, 0, 0, 6794, 6796, 1, 0, 0, 0, 6795, 6790, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6803, 1, 0, 0, 0, 6797, 6800, 5, 261, 0, 0, 6798, 6799, 5, 94, 0, 0, 6799, 6801, 3, 670, 335, 0, 6800, 6798, 1, 0, 0, 0, 6800, 6801, 1, 0, 0, 0, 6801, 6803, 1, 0, 0, 0, 6802, 6773, 1, 0, 0, 0, 6802, 6774, 1, 0, 0, 0, 6802, 6775, 1, 0, 0, 0, 6802, 6780, 1, 0, 0, 0, 6802, 6789, 1, 0, 0, 0, 6802, 6797, 1, 0, 0, 0, 6803, 669, 1, 0, 0, 0, 6804, 6806, 5, 326, 0, 0, 6805, 6807, 3, 660, 330, 0, 6806, 6805, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 671, 1, 0, 0, 0, 6808, 6809, 7, 92, 0, 0, 6809, 673, 1, 0, 0, 0, 6810, 6811, 3, 676, 338, 0, 6811, 675, 1, 0, 0, 0, 6812, 6813, 6, 338, -1, 0, 6813, 6815, 3, 680, 340, 0, 6814, 6816, 3, 678, 339, 0, 6815, 6814, 1, 0, 0, 0, 6815, 6816, 1, 0, 0, 0, 6816, 6820, 1, 0, 0, 0, 6817, 6818, 5, 77, 0, 0, 6818, 6820, 3, 676, 338, 3, 6819, 6812, 1, 0, 0, 0, 6819, 6817, 1, 0, 0, 0, 6820, 6829, 1, 0, 0, 0, 6821, 6822, 10, 2, 0, 0, 6822, 6823, 5, 33, 0, 0, 6823, 6828, 3, 676, 338, 3, 6824, 6825, 10, 1, 0, 0, 6825, 6826, 5, 82, 0, 0, 6826, 6828, 3, 676, 338, 2, 6827, 6821, 1, 0, 0, 0, 6827, 6824, 1, 0, 0, 0, 6828, 6831, 1, 0, 0, 0, 6829, 6827, 1, 0, 0, 0, 6829, 6830, 1, 0, 0, 0, 6830, 677, 1, 0, 0, 0, 6831, 6829, 1, 0, 0, 0, 6832, 6833, 3, 672, 336, 0, 6833, 6834, 3, 680, 340, 0, 6834, 6904, 1, 0, 0, 0, 6835, 6836, 3, 672, 336, 0, 6836, 6837, 3, 728, 364, 0, 6837, 6843, 3, 718, 359, 0, 6838, 6844, 3, 562, 281, 0, 6839, 6840, 5, 2, 0, 0, 6840, 6841, 3, 674, 337, 0, 6841, 6842, 5, 3, 0, 0, 6842, 6844, 1, 0, 0, 0, 6843, 6838, 1, 0, 0, 0, 6843, 6839, 1, 0, 0, 0, 6844, 6904, 1, 0, 0, 0, 6845, 6847, 5, 77, 0, 0, 6846, 6845, 1, 0, 0, 0, 6846, 6847, 1, 0, 0, 0, 6847, 6848, 1, 0, 0, 0, 6848, 6849, 5, 387, 0, 0, 6849, 6850, 3, 680, 340, 0, 6850, 6851, 5, 33, 0, 0, 6851, 6852, 3, 680, 340, 0, 6852, 6904, 1, 0, 0, 0, 6853, 6855, 5, 77, 0, 0, 6854, 6853, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6856, 1, 0, 0, 0, 6856, 6857, 5, 68, 0, 0, 6857, 6858, 5, 2, 0, 0, 6858, 6863, 3, 674, 337, 0, 6859, 6860, 5, 6, 0, 0, 6860, 6862, 3, 674, 337, 0, 6861, 6859, 1, 0, 0, 0, 6862, 6865, 1, 0, 0, 0, 6863, 6861, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6866, 1, 0, 0, 0, 6865, 6863, 1, 0, 0, 0, 6866, 6867, 5, 3, 0, 0, 6867, 6904, 1, 0, 0, 0, 6868, 6870, 5, 77, 0, 0, 6869, 6868, 1, 0, 0, 0, 6869, 6870, 1, 0, 0, 0, 6870, 6871, 1, 0, 0, 0, 6871, 6872, 5, 68, 0, 0, 6872, 6904, 3, 562, 281, 0, 6873, 6875, 5, 77, 0, 0, 6874, 6873, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6884, 1, 0, 0, 0, 6876, 6885, 5, 120, 0, 0, 6877, 6885, 5, 114, 0, 0, 6878, 6879, 5, 127, 0, 0, 6879, 6885, 5, 94, 0, 0, 6880, 6882, 5, 387, 0, 0, 6881, 6883, 5, 91, 0, 0, 6882, 6881, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6885, 1, 0, 0, 0, 6884, 6876, 1, 0, 0, 0, 6884, 6877, 1, 0, 0, 0, 6884, 6878, 1, 0, 0, 0, 6884, 6880, 1, 0, 0, 0, 6885, 6886, 1, 0, 0, 0, 6886, 6889, 3, 680, 340, 0, 6887, 6888, 5, 197, 0, 0, 6888, 6890, 3, 680, 340, 0, 6889, 6887, 1, 0, 0, 0, 6889, 6890, 1, 0, 0, 0, 6890, 6904, 1, 0, 0, 0, 6891, 6893, 5, 116, 0, 0, 6892, 6894, 5, 77, 0, 0, 6893, 6892, 1, 0, 0, 0, 6893, 6894, 1, 0, 0, 0, 6894, 6895, 1, 0, 0, 0, 6895, 6904, 5, 78, 0, 0, 6896, 6898, 5, 116, 0, 0, 6897, 6899, 5, 77, 0, 0, 6898, 6897, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 6900, 1, 0, 0, 0, 6900, 6901, 5, 56, 0, 0, 6901, 6902, 5, 64, 0, 0, 6902, 6904, 3, 680, 340, 0, 6903, 6832, 1, 0, 0, 0, 6903, 6835, 1, 0, 0, 0, 6903, 6846, 1, 0, 0, 0, 6903, 6854, 1, 0, 0, 0, 6903, 6869, 1, 0, 0, 0, 6903, 6874, 1, 0, 0, 0, 6903, 6891, 1, 0, 0, 0, 6903, 6896, 1, 0, 0, 0, 6904, 679, 1, 0, 0, 0, 6905, 6906, 6, 340, -1, 0, 6906, 6910, 3, 682, 341, 0, 6907, 6908, 7, 29, 0, 0, 6908, 6910, 3, 680, 340, 4, 6909, 6905, 1, 0, 0, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6927, 1, 0, 0, 0, 6911, 6912, 10, 3, 0, 0, 6912, 6913, 7, 93, 0, 0, 6913, 6926, 3, 680, 340, 4, 6914, 6915, 10, 2, 0, 0, 6915, 6916, 7, 29, 0, 0, 6916, 6926, 3, 680, 340, 3, 6917, 6918, 10, 1, 0, 0, 6918, 6919, 5, 15, 0, 0, 6919, 6926, 3, 680, 340, 2, 6920, 6921, 10, 5, 0, 0, 6921, 6922, 5, 142, 0, 0, 6922, 6923, 5, 418, 0, 0, 6923, 6924, 5, 386, 0, 0, 6924, 6926, 3, 674, 337, 0, 6925, 6911, 1, 0, 0, 0, 6925, 6914, 1, 0, 0, 0, 6925, 6917, 1, 0, 0, 0, 6925, 6920, 1, 0, 0, 0, 6926, 6929, 1, 0, 0, 0, 6927, 6925, 1, 0, 0, 0, 6927, 6928, 1, 0, 0, 0, 6928, 681, 1, 0, 0, 0, 6929, 6927, 1, 0, 0, 0, 6930, 6931, 6, 341, -1, 0, 6931, 6932, 7, 94, 0, 0, 6932, 7019, 3, 562, 281, 0, 6933, 6936, 5, 35, 0, 0, 6934, 6937, 3, 562, 281, 0, 6935, 6937, 3, 740, 370, 0, 6936, 6934, 1, 0, 0, 0, 6936, 6935, 1, 0, 0, 0, 6937, 7019, 1, 0, 0, 0, 6938, 6939, 5, 28, 0, 0, 6939, 7019, 3, 754, 377, 0, 6940, 6941, 5, 470, 0, 0, 6941, 7019, 3, 534, 267, 0, 6942, 7019, 5, 571, 0, 0, 6943, 7019, 5, 573, 0, 0, 6944, 7019, 5, 563, 0, 0, 6945, 7019, 5, 567, 0, 0, 6946, 6956, 3, 806, 403, 0, 6947, 6957, 3, 808, 404, 0, 6948, 6949, 5, 2, 0, 0, 6949, 6951, 3, 736, 368, 0, 6950, 6952, 3, 586, 293, 0, 6951, 6950, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 6954, 5, 3, 0, 0, 6954, 6955, 3, 808, 404, 0, 6955, 6957, 1, 0, 0, 0, 6956, 6947, 1, 0, 0, 0, 6956, 6948, 1, 0, 0, 0, 6957, 7019, 1, 0, 0, 0, 6958, 6960, 3, 656, 328, 0, 6959, 6958, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 7019, 3, 808, 404, 0, 6962, 6970, 5, 403, 0, 0, 6963, 6965, 3, 808, 404, 0, 6964, 6966, 3, 668, 334, 0, 6965, 6964, 1, 0, 0, 0, 6965, 6966, 1, 0, 0, 0, 6966, 6971, 1, 0, 0, 0, 6967, 6968, 3, 660, 330, 0, 6968, 6969, 3, 808, 404, 0, 6969, 6971, 1, 0, 0, 0, 6970, 6963, 1, 0, 0, 0, 6970, 6967, 1, 0, 0, 0, 6971, 7019, 1, 0, 0, 0, 6972, 7019, 5, 96, 0, 0, 6973, 7019, 5, 60, 0, 0, 6974, 7019, 5, 78, 0, 0, 6975, 7019, 5, 574, 0, 0, 6976, 6977, 5, 2, 0, 0, 6977, 6978, 3, 674, 337, 0, 6978, 6979, 5, 3, 0, 0, 6979, 6980, 3, 754, 377, 0, 6980, 7019, 1, 0, 0, 0, 6981, 6983, 5, 40, 0, 0, 6982, 6984, 3, 674, 337, 0, 6983, 6982, 1, 0, 0, 0, 6983, 6984, 1, 0, 0, 0, 6984, 6986, 1, 0, 0, 0, 6985, 6987, 3, 748, 374, 0, 6986, 6985, 1, 0, 0, 0, 6987, 6988, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6988, 6989, 1, 0, 0, 0, 6989, 6992, 1, 0, 0, 0, 6990, 6991, 5, 58, 0, 0, 6991, 6993, 3, 674, 337, 0, 6992, 6990, 1, 0, 0, 0, 6992, 6993, 1, 0, 0, 0, 6993, 6994, 1, 0, 0, 0, 6994, 6995, 5, 454, 0, 0, 6995, 7019, 1, 0, 0, 0, 6996, 7019, 3, 686, 343, 0, 6997, 6999, 3, 562, 281, 0, 6998, 7000, 3, 752, 376, 0, 6999, 6998, 1, 0, 0, 0, 6999, 7000, 1, 0, 0, 0, 7000, 7019, 1, 0, 0, 0, 7001, 7019, 3, 716, 358, 0, 7002, 7003, 5, 2, 0, 0, 7003, 7004, 3, 674, 337, 0, 7004, 7005, 5, 6, 0, 0, 7005, 7006, 3, 730, 365, 0, 7006, 7007, 5, 3, 0, 0, 7007, 7019, 1, 0, 0, 0, 7008, 7009, 3, 714, 357, 0, 7009, 7010, 5, 125, 0, 0, 7010, 7011, 3, 714, 357, 0, 7011, 7019, 1, 0, 0, 0, 7012, 7019, 3, 780, 390, 0, 7013, 7014, 7, 29, 0, 0, 7014, 7019, 3, 682, 341, 5, 7015, 7016, 3, 724, 362, 0, 7016, 7017, 3, 682, 341, 2, 7017, 7019, 1, 0, 0, 0, 7018, 6930, 1, 0, 0, 0, 7018, 6933, 1, 0, 0, 0, 7018, 6938, 1, 0, 0, 0, 7018, 6940, 1, 0, 0, 0, 7018, 6942, 1, 0, 0, 0, 7018, 6943, 1, 0, 0, 0, 7018, 6944, 1, 0, 0, 0, 7018, 6945, 1, 0, 0, 0, 7018, 6946, 1, 0, 0, 0, 7018, 6959, 1, 0, 0, 0, 7018, 6962, 1, 0, 0, 0, 7018, 6972, 1, 0, 0, 0, 7018, 6973, 1, 0, 0, 0, 7018, 6974, 1, 0, 0, 0, 7018, 6975, 1, 0, 0, 0, 7018, 6976, 1, 0, 0, 0, 7018, 6981, 1, 0, 0, 0, 7018, 6996, 1, 0, 0, 0, 7018, 6997, 1, 0, 0, 0, 7018, 7001, 1, 0, 0, 0, 7018, 7002, 1, 0, 0, 0, 7018, 7008, 1, 0, 0, 0, 7018, 7012, 1, 0, 0, 0, 7018, 7013, 1, 0, 0, 0, 7018, 7015, 1, 0, 0, 0, 7019, 7047, 1, 0, 0, 0, 7020, 7021, 10, 3, 0, 0, 7021, 7022, 3, 722, 361, 0, 7022, 7023, 3, 682, 341, 4, 7023, 7046, 1, 0, 0, 0, 7024, 7025, 10, 6, 0, 0, 7025, 7026, 5, 26, 0, 0, 7026, 7046, 3, 652, 326, 0, 7027, 7028, 10, 4, 0, 0, 7028, 7030, 3, 724, 362, 0, 7029, 7031, 3, 682, 341, 0, 7030, 7029, 1, 0, 0, 0, 7030, 7031, 1, 0, 0, 0, 7031, 7046, 1, 0, 0, 0, 7032, 7033, 10, 1, 0, 0, 7033, 7035, 5, 116, 0, 0, 7034, 7036, 5, 77, 0, 0, 7035, 7034, 1, 0, 0, 0, 7035, 7036, 1, 0, 0, 0, 7036, 7043, 1, 0, 0, 0, 7037, 7038, 5, 56, 0, 0, 7038, 7039, 5, 64, 0, 0, 7039, 7044, 3, 682, 341, 0, 7040, 7041, 5, 275, 0, 0, 7041, 7044, 3, 528, 264, 0, 7042, 7044, 5, 188, 0, 0, 7043, 7037, 1, 0, 0, 0, 7043, 7040, 1, 0, 0, 0, 7043, 7042, 1, 0, 0, 0, 7044, 7046, 1, 0, 0, 0, 7045, 7020, 1, 0, 0, 0, 7045, 7024, 1, 0, 0, 0, 7045, 7027, 1, 0, 0, 0, 7045, 7032, 1, 0, 0, 0, 7046, 7049, 1, 0, 0, 0, 7047, 7045, 1, 0, 0, 0, 7047, 7048, 1, 0, 0, 0, 7048, 683, 1, 0, 0, 0, 7049, 7047, 1, 0, 0, 0, 7050, 7076, 3, 806, 403, 0, 7051, 7073, 5, 2, 0, 0, 7052, 7056, 3, 736, 368, 0, 7053, 7054, 5, 6, 0, 0, 7054, 7055, 5, 101, 0, 0, 7055, 7057, 3, 738, 369, 0, 7056, 7053, 1, 0, 0, 0, 7056, 7057, 1, 0, 0, 0, 7057, 7059, 1, 0, 0, 0, 7058, 7060, 3, 586, 293, 0, 7059, 7058, 1, 0, 0, 0, 7059, 7060, 1, 0, 0, 0, 7060, 7074, 1, 0, 0, 0, 7061, 7062, 5, 101, 0, 0, 7062, 7064, 3, 738, 369, 0, 7063, 7065, 3, 586, 293, 0, 7064, 7063, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7074, 1, 0, 0, 0, 7066, 7067, 7, 80, 0, 0, 7067, 7069, 3, 736, 368, 0, 7068, 7070, 3, 586, 293, 0, 7069, 7068, 1, 0, 0, 0, 7069, 7070, 1, 0, 0, 0, 7070, 7074, 1, 0, 0, 0, 7071, 7074, 5, 9, 0, 0, 7072, 7074, 1, 0, 0, 0, 7073, 7052, 1, 0, 0, 0, 7073, 7061, 1, 0, 0, 0, 7073, 7066, 1, 0, 0, 0, 7073, 7071, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 7075, 1, 0, 0, 0, 7075, 7077, 5, 3, 0, 0, 7076, 7051, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 685, 1, 0, 0, 0, 7078, 7085, 3, 684, 342, 0, 7079, 7080, 5, 479, 0, 0, 7080, 7081, 5, 66, 0, 0, 7081, 7082, 5, 2, 0, 0, 7082, 7083, 3, 586, 293, 0, 7083, 7084, 5, 3, 0, 0, 7084, 7086, 1, 0, 0, 0, 7085, 7079, 1, 0, 0, 0, 7085, 7086, 1, 0, 0, 0, 7086, 7093, 1, 0, 0, 0, 7087, 7088, 5, 480, 0, 0, 7088, 7089, 5, 2, 0, 0, 7089, 7090, 5, 103, 0, 0, 7090, 7091, 3, 674, 337, 0, 7091, 7092, 5, 3, 0, 0, 7092, 7094, 1, 0, 0, 0, 7093, 7087, 1, 0, 0, 0, 7093, 7094, 1, 0, 0, 0, 7094, 7100, 1, 0, 0, 0, 7095, 7098, 5, 124, 0, 0, 7096, 7099, 3, 708, 354, 0, 7097, 7099, 3, 818, 409, 0, 7098, 7096, 1, 0, 0, 0, 7098, 7097, 1, 0, 0, 0, 7099, 7101, 1, 0, 0, 0, 7100, 7095, 1, 0, 0, 0, 7100, 7101, 1, 0, 0, 0, 7101, 7104, 1, 0, 0, 0, 7102, 7104, 3, 690, 345, 0, 7103, 7078, 1, 0, 0, 0, 7103, 7102, 1, 0, 0, 0, 7104, 687, 1, 0, 0, 0, 7105, 7108, 3, 684, 342, 0, 7106, 7108, 3, 690, 345, 0, 7107, 7105, 1, 0, 0, 0, 7107, 7106, 1, 0, 0, 0, 7108, 689, 1, 0, 0, 0, 7109, 7110, 5, 108, 0, 0, 7110, 7111, 5, 62, 0, 0, 7111, 7112, 5, 2, 0, 0, 7112, 7113, 3, 674, 337, 0, 7113, 7114, 5, 3, 0, 0, 7114, 7284, 1, 0, 0, 0, 7115, 7284, 5, 48, 0, 0, 7116, 7118, 7, 95, 0, 0, 7117, 7119, 3, 660, 330, 0, 7118, 7117, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7284, 1, 0, 0, 0, 7120, 7284, 5, 49, 0, 0, 7121, 7284, 5, 52, 0, 0, 7122, 7284, 5, 89, 0, 0, 7123, 7284, 5, 99, 0, 0, 7124, 7284, 5, 47, 0, 0, 7125, 7284, 5, 111, 0, 0, 7126, 7127, 7, 96, 0, 0, 7127, 7128, 5, 2, 0, 0, 7128, 7129, 3, 674, 337, 0, 7129, 7130, 5, 36, 0, 0, 7130, 7131, 3, 652, 326, 0, 7131, 7132, 5, 3, 0, 0, 7132, 7284, 1, 0, 0, 0, 7133, 7134, 5, 397, 0, 0, 7134, 7139, 5, 2, 0, 0, 7135, 7136, 3, 742, 371, 0, 7136, 7137, 5, 64, 0, 0, 7137, 7138, 3, 674, 337, 0, 7138, 7140, 1, 0, 0, 0, 7139, 7135, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7284, 5, 3, 0, 0, 7142, 7143, 5, 489, 0, 0, 7143, 7144, 5, 2, 0, 0, 7144, 7147, 3, 674, 337, 0, 7145, 7146, 5, 6, 0, 0, 7146, 7148, 3, 744, 372, 0, 7147, 7145, 1, 0, 0, 0, 7147, 7148, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7150, 5, 3, 0, 0, 7150, 7284, 1, 0, 0, 0, 7151, 7152, 5, 410, 0, 0, 7152, 7153, 5, 2, 0, 0, 7153, 7154, 3, 674, 337, 0, 7154, 7155, 5, 84, 0, 0, 7155, 7156, 3, 674, 337, 0, 7156, 7157, 5, 64, 0, 0, 7157, 7160, 3, 674, 337, 0, 7158, 7159, 5, 62, 0, 0, 7159, 7161, 3, 674, 337, 0, 7160, 7158, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 5, 3, 0, 0, 7163, 7284, 1, 0, 0, 0, 7164, 7165, 5, 411, 0, 0, 7165, 7170, 5, 2, 0, 0, 7166, 7167, 3, 682, 341, 0, 7167, 7168, 5, 68, 0, 0, 7168, 7169, 3, 682, 341, 0, 7169, 7171, 1, 0, 0, 0, 7170, 7166, 1, 0, 0, 0, 7170, 7171, 1, 0, 0, 0, 7171, 7172, 1, 0, 0, 0, 7172, 7284, 5, 3, 0, 0, 7173, 7174, 5, 417, 0, 0, 7174, 7176, 5, 2, 0, 0, 7175, 7177, 3, 746, 373, 0, 7176, 7175, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7284, 5, 3, 0, 0, 7179, 7180, 5, 421, 0, 0, 7180, 7182, 5, 2, 0, 0, 7181, 7183, 7, 97, 0, 0, 7182, 7181, 1, 0, 0, 0, 7182, 7183, 1, 0, 0, 0, 7183, 7188, 1, 0, 0, 0, 7184, 7186, 3, 674, 337, 0, 7185, 7184, 1, 0, 0, 0, 7185, 7186, 1, 0, 0, 0, 7186, 7187, 1, 0, 0, 0, 7187, 7189, 5, 64, 0, 0, 7188, 7185, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7190, 1, 0, 0, 0, 7190, 7191, 3, 730, 365, 0, 7191, 7192, 1, 0, 0, 0, 7192, 7193, 5, 3, 0, 0, 7193, 7284, 1, 0, 0, 0, 7194, 7195, 5, 408, 0, 0, 7195, 7196, 5, 2, 0, 0, 7196, 7197, 3, 674, 337, 0, 7197, 7198, 5, 6, 0, 0, 7198, 7199, 3, 674, 337, 0, 7199, 7200, 5, 3, 0, 0, 7200, 7284, 1, 0, 0, 0, 7201, 7202, 7, 98, 0, 0, 7202, 7284, 3, 534, 267, 0, 7203, 7204, 5, 426, 0, 0, 7204, 7205, 5, 2, 0, 0, 7205, 7206, 5, 266, 0, 0, 7206, 7216, 3, 824, 412, 0, 7207, 7214, 5, 6, 0, 0, 7208, 7209, 5, 424, 0, 0, 7209, 7210, 5, 2, 0, 0, 7210, 7211, 3, 692, 346, 0, 7211, 7212, 5, 3, 0, 0, 7212, 7215, 1, 0, 0, 0, 7213, 7215, 3, 730, 365, 0, 7214, 7208, 1, 0, 0, 0, 7214, 7213, 1, 0, 0, 0, 7215, 7217, 1, 0, 0, 0, 7216, 7207, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7218, 1, 0, 0, 0, 7218, 7219, 5, 3, 0, 0, 7219, 7284, 1, 0, 0, 0, 7220, 7221, 5, 427, 0, 0, 7221, 7222, 5, 2, 0, 0, 7222, 7223, 3, 682, 341, 0, 7223, 7224, 3, 698, 349, 0, 7224, 7225, 5, 3, 0, 0, 7225, 7284, 1, 0, 0, 0, 7226, 7227, 5, 428, 0, 0, 7227, 7228, 5, 2, 0, 0, 7228, 7229, 3, 692, 346, 0, 7229, 7230, 5, 3, 0, 0, 7230, 7284, 1, 0, 0, 0, 7231, 7232, 5, 429, 0, 0, 7232, 7233, 5, 2, 0, 0, 7233, 7234, 3, 696, 348, 0, 7234, 7237, 3, 674, 337, 0, 7235, 7236, 7, 99, 0, 0, 7236, 7238, 5, 378, 0, 0, 7237, 7235, 1, 0, 0, 0, 7237, 7238, 1, 0, 0, 0, 7238, 7239, 1, 0, 0, 0, 7239, 7240, 5, 3, 0, 0, 7240, 7284, 1, 0, 0, 0, 7241, 7242, 5, 430, 0, 0, 7242, 7243, 5, 2, 0, 0, 7243, 7244, 5, 266, 0, 0, 7244, 7247, 3, 824, 412, 0, 7245, 7246, 5, 6, 0, 0, 7246, 7248, 3, 674, 337, 0, 7247, 7245, 1, 0, 0, 0, 7247, 7248, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7250, 5, 3, 0, 0, 7250, 7284, 1, 0, 0, 0, 7251, 7252, 5, 431, 0, 0, 7252, 7253, 5, 2, 0, 0, 7253, 7254, 5, 383, 0, 0, 7254, 7255, 3, 674, 337, 0, 7255, 7256, 5, 6, 0, 0, 7256, 7260, 5, 375, 0, 0, 7257, 7258, 5, 269, 0, 0, 7258, 7261, 5, 450, 0, 0, 7259, 7261, 3, 674, 337, 0, 7260, 7257, 1, 0, 0, 0, 7260, 7259, 1, 0, 0, 0, 7261, 7271, 1, 0, 0, 0, 7262, 7263, 5, 6, 0, 0, 7263, 7269, 5, 339, 0, 0, 7264, 7266, 5, 269, 0, 0, 7265, 7264, 1, 0, 0, 0, 7265, 7266, 1, 0, 0, 0, 7266, 7267, 1, 0, 0, 0, 7267, 7270, 5, 450, 0, 0, 7268, 7270, 5, 385, 0, 0, 7269, 7265, 1, 0, 0, 0, 7269, 7268, 1, 0, 0, 0, 7270, 7272, 1, 0, 0, 0, 7271, 7262, 1, 0, 0, 0, 7271, 7272, 1, 0, 0, 0, 7272, 7273, 1, 0, 0, 0, 7273, 7274, 5, 3, 0, 0, 7274, 7284, 1, 0, 0, 0, 7275, 7276, 5, 432, 0, 0, 7276, 7277, 5, 2, 0, 0, 7277, 7278, 3, 696, 348, 0, 7278, 7279, 3, 674, 337, 0, 7279, 7280, 5, 36, 0, 0, 7280, 7281, 3, 654, 327, 0, 7281, 7282, 5, 3, 0, 0, 7282, 7284, 1, 0, 0, 0, 7283, 7109, 1, 0, 0, 0, 7283, 7115, 1, 0, 0, 0, 7283, 7116, 1, 0, 0, 0, 7283, 7120, 1, 0, 0, 0, 7283, 7121, 1, 0, 0, 0, 7283, 7122, 1, 0, 0, 0, 7283, 7123, 1, 0, 0, 0, 7283, 7124, 1, 0, 0, 0, 7283, 7125, 1, 0, 0, 0, 7283, 7126, 1, 0, 0, 0, 7283, 7133, 1, 0, 0, 0, 7283, 7142, 1, 0, 0, 0, 7283, 7151, 1, 0, 0, 0, 7283, 7164, 1, 0, 0, 0, 7283, 7173, 1, 0, 0, 0, 7283, 7179, 1, 0, 0, 0, 7283, 7194, 1, 0, 0, 0, 7283, 7201, 1, 0, 0, 0, 7283, 7203, 1, 0, 0, 0, 7283, 7220, 1, 0, 0, 0, 7283, 7226, 1, 0, 0, 0, 7283, 7231, 1, 0, 0, 0, 7283, 7241, 1, 0, 0, 0, 7283, 7251, 1, 0, 0, 0, 7283, 7275, 1, 0, 0, 0, 7284, 691, 1, 0, 0, 0, 7285, 7290, 3, 694, 347, 0, 7286, 7287, 5, 6, 0, 0, 7287, 7289, 3, 694, 347, 0, 7288, 7286, 1, 0, 0, 0, 7289, 7292, 1, 0, 0, 0, 7290, 7288, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 693, 1, 0, 0, 0, 7292, 7290, 1, 0, 0, 0, 7293, 7296, 3, 674, 337, 0, 7294, 7295, 5, 36, 0, 0, 7295, 7297, 3, 824, 412, 0, 7296, 7294, 1, 0, 0, 0, 7296, 7297, 1, 0, 0, 0, 7297, 695, 1, 0, 0, 0, 7298, 7299, 7, 100, 0, 0, 7299, 697, 1, 0, 0, 0, 7300, 7302, 5, 286, 0, 0, 7301, 7303, 3, 700, 350, 0, 7302, 7301, 1, 0, 0, 0, 7302, 7303, 1, 0, 0, 0, 7303, 7304, 1, 0, 0, 0, 7304, 7306, 3, 682, 341, 0, 7305, 7307, 3, 700, 350, 0, 7306, 7305, 1, 0, 0, 0, 7306, 7307, 1, 0, 0, 0, 7307, 699, 1, 0, 0, 0, 7308, 7309, 5, 147, 0, 0, 7309, 7310, 7, 101, 0, 0, 7310, 701, 1, 0, 0, 0, 7311, 7312, 5, 104, 0, 0, 7312, 7317, 3, 704, 352, 0, 7313, 7314, 5, 6, 0, 0, 7314, 7316, 3, 704, 352, 0, 7315, 7313, 1, 0, 0, 0, 7316, 7319, 1, 0, 0, 0, 7317, 7315, 1, 0, 0, 0, 7317, 7318, 1, 0, 0, 0, 7318, 703, 1, 0, 0, 0, 7319, 7317, 1, 0, 0, 0, 7320, 7321, 3, 818, 409, 0, 7321, 7322, 5, 36, 0, 0, 7322, 7323, 3, 708, 354, 0, 7323, 705, 1, 0, 0, 0, 7324, 7327, 5, 124, 0, 0, 7325, 7328, 3, 708, 354, 0, 7326, 7328, 3, 818, 409, 0, 7327, 7325, 1, 0, 0, 0, 7327, 7326, 1, 0, 0, 0, 7328, 707, 1, 0, 0, 0, 7329, 7331, 5, 2, 0, 0, 7330, 7332, 3, 818, 409, 0, 7331, 7330, 1, 0, 0, 0, 7331, 7332, 1, 0, 0, 0, 7332, 7336, 1, 0, 0, 0, 7333, 7334, 5, 285, 0, 0, 7334, 7335, 5, 147, 0, 0, 7335, 7337, 3, 730, 365, 0, 7336, 7333, 1, 0, 0, 0, 7336, 7337, 1, 0, 0, 0, 7337, 7339, 1, 0, 0, 0, 7338, 7340, 3, 586, 293, 0, 7339, 7338, 1, 0, 0, 0, 7339, 7340, 1, 0, 0, 0, 7340, 7342, 1, 0, 0, 0, 7341, 7343, 3, 710, 355, 0, 7342, 7341, 1, 0, 0, 0, 7342, 7343, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 7345, 5, 3, 0, 0, 7345, 709, 1, 0, 0, 0, 7346, 7351, 7, 102, 0, 0, 7347, 7348, 5, 387, 0, 0, 7348, 7349, 3, 712, 356, 0, 7349, 7350, 5, 33, 0, 0, 7350, 7352, 1, 0, 0, 0, 7351, 7347, 1, 0, 0, 0, 7351, 7352, 1, 0, 0, 0, 7352, 7353, 1, 0, 0, 0, 7353, 7354, 3, 712, 356, 0, 7354, 7364, 1, 0, 0, 0, 7355, 7362, 5, 199, 0, 0, 7356, 7357, 5, 434, 0, 0, 7357, 7363, 5, 414, 0, 0, 7358, 7363, 5, 66, 0, 0, 7359, 7363, 5, 467, 0, 0, 7360, 7361, 5, 269, 0, 0, 7361, 7363, 5, 482, 0, 0, 7362, 7356, 1, 0, 0, 0, 7362, 7358, 1, 0, 0, 0, 7362, 7359, 1, 0, 0, 0, 7362, 7360, 1, 0, 0, 0, 7363, 7365, 1, 0, 0, 0, 7364, 7355, 1, 0, 0, 0, 7364, 7365, 1, 0, 0, 0, 7365, 711, 1, 0, 0, 0, 7366, 7369, 5, 362, 0, 0, 7367, 7369, 3, 674, 337, 0, 7368, 7366, 1, 0, 0, 0, 7368, 7367, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7374, 7, 103, 0, 0, 7371, 7372, 5, 434, 0, 0, 7372, 7374, 5, 414, 0, 0, 7373, 7368, 1, 0, 0, 0, 7373, 7371, 1, 0, 0, 0, 7374, 713, 1, 0, 0, 0, 7375, 7383, 3, 716, 358, 0, 7376, 7377, 5, 2, 0, 0, 7377, 7378, 3, 730, 365, 0, 7378, 7379, 5, 6, 0, 0, 7379, 7380, 3, 674, 337, 0, 7380, 7381, 5, 3, 0, 0, 7381, 7383, 1, 0, 0, 0, 7382, 7375, 1, 0, 0, 0, 7382, 7376, 1, 0, 0, 0, 7383, 715, 1, 0, 0, 0, 7384, 7385, 5, 414, 0, 0, 7385, 7387, 5, 2, 0, 0, 7386, 7388, 3, 730, 365, 0, 7387, 7386, 1, 0, 0, 0, 7387, 7388, 1, 0, 0, 0, 7388, 7389, 1, 0, 0, 0, 7389, 7390, 5, 3, 0, 0, 7390, 717, 1, 0, 0, 0, 7391, 7392, 7, 104, 0, 0, 7392, 719, 1, 0, 0, 0, 7393, 7396, 5, 29, 0, 0, 7394, 7396, 3, 722, 361, 0, 7395, 7393, 1, 0, 0, 0, 7395, 7394, 1, 0, 0, 0, 7396, 721, 1, 0, 0, 0, 7397, 7398, 7, 105, 0, 0, 7398, 723, 1, 0, 0, 0, 7399, 7406, 5, 29, 0, 0, 7400, 7401, 5, 278, 0, 0, 7401, 7402, 5, 2, 0, 0, 7402, 7403, 3, 414, 207, 0, 7403, 7404, 5, 3, 0, 0, 7404, 7406, 1, 0, 0, 0, 7405, 7399, 1, 0, 0, 0, 7405, 7400, 1, 0, 0, 0, 7406, 725, 1, 0, 0, 0, 7407, 7414, 3, 720, 360, 0, 7408, 7409, 5, 278, 0, 0, 7409, 7410, 5, 2, 0, 0, 7410, 7411, 3, 414, 207, 0, 7411, 7412, 5, 3, 0, 0, 7412, 7414, 1, 0, 0, 0, 7413, 7407, 1, 0, 0, 0, 7413, 7408, 1, 0, 0, 0, 7414, 727, 1, 0, 0, 0, 7415, 7421, 3, 726, 363, 0, 7416, 7418, 5, 77, 0, 0, 7417, 7416, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 7419, 1, 0, 0, 0, 7419, 7421, 7, 106, 0, 0, 7420, 7415, 1, 0, 0, 0, 7420, 7417, 1, 0, 0, 0, 7421, 729, 1, 0, 0, 0, 7422, 7427, 3, 674, 337, 0, 7423, 7424, 5, 6, 0, 0, 7424, 7426, 3, 674, 337, 0, 7425, 7423, 1, 0, 0, 0, 7426, 7429, 1, 0, 0, 0, 7427, 7425, 1, 0, 0, 0, 7427, 7428, 1, 0, 0, 0, 7428, 731, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7430, 7431, 5, 2, 0, 0, 7431, 7432, 3, 674, 337, 0, 7432, 7433, 5, 3, 0, 0, 7433, 7436, 1, 0, 0, 0, 7434, 7436, 3, 800, 400, 0, 7435, 7430, 1, 0, 0, 0, 7435, 7434, 1, 0, 0, 0, 7436, 733, 1, 0, 0, 0, 7437, 7440, 3, 674, 337, 0, 7438, 7440, 3, 800, 400, 0, 7439, 7437, 1, 0, 0, 0, 7439, 7438, 1, 0, 0, 0, 7440, 735, 1, 0, 0, 0, 7441, 7446, 3, 738, 369, 0, 7442, 7443, 5, 6, 0, 0, 7443, 7445, 3, 738, 369, 0, 7444, 7442, 1, 0, 0, 0, 7445, 7448, 1, 0, 0, 0, 7446, 7444, 1, 0, 0, 0, 7446, 7447, 1, 0, 0, 0, 7447, 737, 1, 0, 0, 0, 7448, 7446, 1, 0, 0, 0, 7449, 7455, 3, 674, 337, 0, 7450, 7451, 3, 820, 410, 0, 7451, 7452, 7, 107, 0, 0, 7452, 7453, 3, 674, 337, 0, 7453, 7455, 1, 0, 0, 0, 7454, 7449, 1, 0, 0, 0, 7454, 7450, 1, 0, 0, 0, 7455, 739, 1, 0, 0, 0, 7456, 7466, 5, 4, 0, 0, 7457, 7467, 3, 730, 365, 0, 7458, 7463, 3, 740, 370, 0, 7459, 7460, 5, 6, 0, 0, 7460, 7462, 3, 740, 370, 0, 7461, 7459, 1, 0, 0, 0, 7462, 7465, 1, 0, 0, 0, 7463, 7461, 1, 0, 0, 0, 7463, 7464, 1, 0, 0, 0, 7464, 7467, 1, 0, 0, 0, 7465, 7463, 1, 0, 0, 0, 7466, 7457, 1, 0, 0, 0, 7466, 7458, 1, 0, 0, 0, 7466, 7467, 1, 0, 0, 0, 7467, 7468, 1, 0, 0, 0, 7468, 7469, 5, 5, 0, 0, 7469, 741, 1, 0, 0, 0, 7470, 7479, 3, 826, 413, 0, 7471, 7479, 5, 384, 0, 0, 7472, 7479, 5, 264, 0, 0, 7473, 7479, 5, 176, 0, 0, 7474, 7479, 5, 218, 0, 0, 7475, 7479, 5, 261, 0, 0, 7476, 7479, 5, 326, 0, 0, 7477, 7479, 3, 808, 404, 0, 7478, 7470, 1, 0, 0, 0, 7478, 7471, 1, 0, 0, 0, 7478, 7472, 1, 0, 0, 0, 7478, 7473, 1, 0, 0, 0, 7478, 7474, 1, 0, 0, 0, 7478, 7475, 1, 0, 0, 0, 7478, 7476, 1, 0, 0, 0, 7478, 7477, 1, 0, 0, 0, 7479, 743, 1, 0, 0, 0, 7480, 7481, 7, 108, 0, 0, 7481, 745, 1, 0, 0, 0, 7482, 7483, 3, 674, 337, 0, 7483, 7484, 5, 64, 0, 0, 7484, 7487, 3, 674, 337, 0, 7485, 7486, 5, 62, 0, 0, 7486, 7488, 3, 674, 337, 0, 7487, 7485, 1, 0, 0, 0, 7487, 7488, 1, 0, 0, 0, 7488, 7504, 1, 0, 0, 0, 7489, 7490, 3, 674, 337, 0, 7490, 7491, 5, 62, 0, 0, 7491, 7494, 3, 674, 337, 0, 7492, 7493, 5, 64, 0, 0, 7493, 7495, 3, 674, 337, 0, 7494, 7492, 1, 0, 0, 0, 7494, 7495, 1, 0, 0, 0, 7495, 7504, 1, 0, 0, 0, 7496, 7497, 3, 674, 337, 0, 7497, 7498, 5, 127, 0, 0, 7498, 7499, 3, 674, 337, 0, 7499, 7500, 5, 197, 0, 0, 7500, 7501, 3, 674, 337, 0, 7501, 7504, 1, 0, 0, 0, 7502, 7504, 3, 730, 365, 0, 7503, 7482, 1, 0, 0, 0, 7503, 7489, 1, 0, 0, 0, 7503, 7496, 1, 0, 0, 0, 7503, 7502, 1, 0, 0, 0, 7504, 747, 1, 0, 0, 0, 7505, 7506, 5, 102, 0, 0, 7506, 7507, 3, 674, 337, 0, 7507, 7508, 5, 93, 0, 0, 7508, 7509, 3, 674, 337, 0, 7509, 749, 1, 0, 0, 0, 7510, 7513, 5, 11, 0, 0, 7511, 7514, 3, 824, 412, 0, 7512, 7514, 5, 9, 0, 0, 7513, 7511, 1, 0, 0, 0, 7513, 7512, 1, 0, 0, 0, 7514, 7528, 1, 0, 0, 0, 7515, 7524, 5, 4, 0, 0, 7516, 7525, 3, 674, 337, 0, 7517, 7519, 3, 674, 337, 0, 7518, 7517, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7520, 1, 0, 0, 0, 7520, 7522, 5, 8, 0, 0, 7521, 7523, 3, 674, 337, 0, 7522, 7521, 1, 0, 0, 0, 7522, 7523, 1, 0, 0, 0, 7523, 7525, 1, 0, 0, 0, 7524, 7516, 1, 0, 0, 0, 7524, 7518, 1, 0, 0, 0, 7525, 7526, 1, 0, 0, 0, 7526, 7528, 5, 5, 0, 0, 7527, 7510, 1, 0, 0, 0, 7527, 7515, 1, 0, 0, 0, 7528, 751, 1, 0, 0, 0, 7529, 7531, 3, 750, 375, 0, 7530, 7529, 1, 0, 0, 0, 7531, 7532, 1, 0, 0, 0, 7532, 7530, 1, 0, 0, 0, 7532, 7533, 1, 0, 0, 0, 7533, 753, 1, 0, 0, 0, 7534, 7536, 3, 750, 375, 0, 7535, 7534, 1, 0, 0, 0, 7536, 7539, 1, 0, 0, 0, 7537, 7535, 1, 0, 0, 0, 7537, 7538, 1, 0, 0, 0, 7538, 755, 1, 0, 0, 0, 7539, 7537, 1, 0, 0, 0, 7540, 7545, 3, 758, 379, 0, 7541, 7542, 5, 6, 0, 0, 7542, 7544, 3, 758, 379, 0, 7543, 7541, 1, 0, 0, 0, 7544, 7547, 1, 0, 0, 0, 7545, 7543, 1, 0, 0, 0, 7545, 7546, 1, 0, 0, 0, 7546, 757, 1, 0, 0, 0, 7547, 7545, 1, 0, 0, 0, 7548, 7553, 3, 734, 367, 0, 7549, 7550, 5, 36, 0, 0, 7550, 7554, 3, 824, 412, 0, 7551, 7554, 3, 826, 413, 0, 7552, 7554, 1, 0, 0, 0, 7553, 7549, 1, 0, 0, 0, 7553, 7551, 1, 0, 0, 0, 7553, 7552, 1, 0, 0, 0, 7554, 7557, 1, 0, 0, 0, 7555, 7557, 5, 9, 0, 0, 7556, 7548, 1, 0, 0, 0, 7556, 7555, 1, 0, 0, 0, 7557, 759, 1, 0, 0, 0, 7558, 7563, 3, 780, 390, 0, 7559, 7560, 5, 6, 0, 0, 7560, 7562, 3, 780, 390, 0, 7561, 7559, 1, 0, 0, 0, 7562, 7565, 1, 0, 0, 0, 7563, 7561, 1, 0, 0, 0, 7563, 7564, 1, 0, 0, 0, 7564, 761, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7566, 7571, 3, 774, 387, 0, 7567, 7568, 5, 6, 0, 0, 7568, 7570, 3, 774, 387, 0, 7569, 7567, 1, 0, 0, 0, 7570, 7573, 1, 0, 0, 0, 7571, 7569, 1, 0, 0, 0, 7571, 7572, 1, 0, 0, 0, 7572, 763, 1, 0, 0, 0, 7573, 7571, 1, 0, 0, 0, 7574, 7579, 3, 790, 395, 0, 7575, 7576, 5, 6, 0, 0, 7576, 7578, 3, 790, 395, 0, 7577, 7575, 1, 0, 0, 0, 7578, 7581, 1, 0, 0, 0, 7579, 7577, 1, 0, 0, 0, 7579, 7580, 1, 0, 0, 0, 7580, 765, 1, 0, 0, 0, 7581, 7579, 1, 0, 0, 0, 7582, 7587, 3, 788, 394, 0, 7583, 7584, 5, 6, 0, 0, 7584, 7586, 3, 788, 394, 0, 7585, 7583, 1, 0, 0, 0, 7586, 7589, 1, 0, 0, 0, 7587, 7585, 1, 0, 0, 0, 7587, 7588, 1, 0, 0, 0, 7588, 767, 1, 0, 0, 0, 7589, 7587, 1, 0, 0, 0, 7590, 7591, 3, 780, 390, 0, 7591, 769, 1, 0, 0, 0, 7592, 7593, 3, 780, 390, 0, 7593, 771, 1, 0, 0, 0, 7594, 7595, 3, 780, 390, 0, 7595, 773, 1, 0, 0, 0, 7596, 7597, 3, 780, 390, 0, 7597, 775, 1, 0, 0, 0, 7598, 7599, 3, 780, 390, 0, 7599, 777, 1, 0, 0, 0, 7600, 7601, 3, 316, 158, 0, 7601, 779, 1, 0, 0, 0, 7602, 7604, 3, 818, 409, 0, 7603, 7605, 3, 752, 376, 0, 7604, 7603, 1, 0, 0, 0, 7604, 7605, 1, 0, 0, 0, 7605, 781, 1, 0, 0, 0, 7606, 7611, 3, 770, 385, 0, 7607, 7608, 5, 6, 0, 0, 7608, 7610, 3, 770, 385, 0, 7609, 7607, 1, 0, 0, 0, 7610, 7613, 1, 0, 0, 0, 7611, 7609, 1, 0, 0, 0, 7611, 7612, 1, 0, 0, 0, 7612, 783, 1, 0, 0, 0, 7613, 7611, 1, 0, 0, 0, 7614, 7619, 3, 818, 409, 0, 7615, 7616, 5, 6, 0, 0, 7616, 7618, 3, 818, 409, 0, 7617, 7615, 1, 0, 0, 0, 7618, 7621, 1, 0, 0, 0, 7619, 7617, 1, 0, 0, 0, 7619, 7620, 1, 0, 0, 0, 7620, 785, 1, 0, 0, 0, 7621, 7619, 1, 0, 0, 0, 7622, 7623, 3, 316, 158, 0, 7623, 787, 1, 0, 0, 0, 7624, 7625, 3, 316, 158, 0, 7625, 789, 1, 0, 0, 0, 7626, 7627, 3, 316, 158, 0, 7627, 791, 1, 0, 0, 0, 7628, 7629, 3, 818, 409, 0, 7629, 793, 1, 0, 0, 0, 7630, 7631, 3, 818, 409, 0, 7631, 795, 1, 0, 0, 0, 7632, 7637, 3, 820, 410, 0, 7633, 7634, 3, 818, 409, 0, 7634, 7635, 3, 752, 376, 0, 7635, 7637, 1, 0, 0, 0, 7636, 7632, 1, 0, 0, 0, 7636, 7633, 1, 0, 0, 0, 7637, 797, 1, 0, 0, 0, 7638, 7643, 3, 820, 410, 0, 7639, 7640, 3, 818, 409, 0, 7640, 7641, 3, 752, 376, 0, 7641, 7643, 1, 0, 0, 0, 7642, 7638, 1, 0, 0, 0, 7642, 7639, 1, 0, 0, 0, 7643, 799, 1, 0, 0, 0, 7644, 7645, 3, 818, 409, 0, 7645, 7646, 3, 754, 377, 0, 7646, 7649, 1, 0, 0, 0, 7647, 7649, 4, 400, 10, 0, 7648, 7644, 1, 0, 0, 0, 7648, 7647, 1, 0, 0, 0, 7649, 801, 1, 0, 0, 0, 7650, 7651, 3, 818, 409, 0, 7651, 803, 1, 0, 0, 0, 7652, 7657, 3, 820, 410, 0, 7653, 7654, 3, 818, 409, 0, 7654, 7655, 3, 752, 376, 0, 7655, 7657, 1, 0, 0, 0, 7656, 7652, 1, 0, 0, 0, 7656, 7653, 1, 0, 0, 0, 7657, 805, 1, 0, 0, 0, 7658, 7663, 3, 820, 410, 0, 7659, 7660, 3, 818, 409, 0, 7660, 7661, 3, 752, 376, 0, 7661, 7663, 1, 0, 0, 0, 7662, 7658, 1, 0, 0, 0, 7662, 7659, 1, 0, 0, 0, 7663, 807, 1, 0, 0, 0, 7664, 7667, 3, 810, 405, 0, 7665, 7666, 5, 487, 0, 0, 7666, 7668, 3, 810, 405, 0, 7667, 7665, 1, 0, 0, 0, 7667, 7668, 1, 0, 0, 0, 7668, 809, 1, 0, 0, 0, 7669, 7681, 5, 558, 0, 0, 7670, 7681, 5, 560, 0, 0, 7671, 7675, 5, 562, 0, 0, 7672, 7674, 5, 588, 0, 0, 7673, 7672, 1, 0, 0, 0, 7674, 7677, 1, 0, 0, 0, 7675, 7673, 1, 0, 0, 0, 7675, 7676, 1, 0, 0, 0, 7676, 7678, 1, 0, 0, 0, 7677, 7675, 1, 0, 0, 0, 7678, 7681, 5, 589, 0, 0, 7679, 7681, 5, 584, 0, 0, 7680, 7669, 1, 0, 0, 0, 7680, 7670, 1, 0, 0, 0, 7680, 7671, 1, 0, 0, 0, 7680, 7679, 1, 0, 0, 0, 7681, 811, 1, 0, 0, 0, 7682, 7684, 7, 29, 0, 0, 7683, 7682, 1, 0, 0, 0, 7683, 7684, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7686, 5, 571, 0, 0, 7686, 813, 1, 0, 0, 0, 7687, 7693, 3, 822, 411, 0, 7688, 7693, 5, 52, 0, 0, 7689, 7693, 5, 49, 0, 0, 7690, 7693, 5, 89, 0, 0, 7691, 7693, 5, 524, 0, 0, 7692, 7687, 1, 0, 0, 0, 7692, 7688, 1, 0, 0, 0, 7692, 7689, 1, 0, 0, 0, 7692, 7690, 1, 0, 0, 0, 7692, 7691, 1, 0, 0, 0, 7693, 815, 1, 0, 0, 0, 7694, 7699, 3, 814, 407, 0, 7695, 7696, 5, 6, 0, 0, 7696, 7698, 3, 814, 407, 0, 7697, 7695, 1, 0, 0, 0, 7698, 7701, 1, 0, 0, 0, 7699, 7697, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 817, 1, 0, 0, 0, 7701, 7699, 1, 0, 0, 0, 7702, 7705, 3, 826, 413, 0, 7703, 7705, 3, 830, 415, 0, 7704, 7702, 1, 0, 0, 0, 7704, 7703, 1, 0, 0, 0, 7705, 819, 1, 0, 0, 0, 7706, 7709, 3, 826, 413, 0, 7707, 7709, 3, 832, 416, 0, 7708, 7706, 1, 0, 0, 0, 7708, 7707, 1, 0, 0, 0, 7709, 821, 1, 0, 0, 0, 7710, 7714, 3, 826, 413, 0, 7711, 7714, 3, 830, 415, 0, 7712, 7714, 3, 832, 416, 0, 7713, 7710, 1, 0, 0, 0, 7713, 7711, 1, 0, 0, 0, 7713, 7712, 1, 0, 0, 0, 7714, 823, 1, 0, 0, 0, 7715, 7720, 3, 826, 413, 0, 7716, 7720, 3, 830, 415, 0, 7717, 7720, 3, 832, 416, 0, 7718, 7720, 3, 834, 417, 0, 7719, 7715, 1, 0, 0, 0, 7719, 7716, 1, 0, 0, 0, 7719, 7717, 1, 0, 0, 0, 7719, 7718, 1, 0, 0, 0, 7720, 825, 1, 0, 0, 0, 7721, 7724, 5, 549, 0, 0, 7722, 7723, 5, 487, 0, 0, 7723, 7725, 3, 810, 405, 0, 7724, 7722, 1, 0, 0, 0, 7724, 7725, 1, 0, 0, 0, 7725, 7733, 1, 0, 0, 0, 7726, 7733, 3, 808, 404, 0, 7727, 7733, 5, 550, 0, 0, 7728, 7733, 5, 554, 0, 0, 7729, 7733, 5, 574, 0, 0, 7730, 7733, 5, 575, 0, 0, 7731, 7733, 3, 828, 414, 0, 7732, 7721, 1, 0, 0, 0, 7732, 7726, 1, 0, 0, 0, 7732, 7727, 1, 0, 0, 0, 7732, 7728, 1, 0, 0, 0, 7732, 7729, 1, 0, 0, 0, 7732, 7730, 1, 0, 0, 0, 7732, 7731, 1, 0, 0, 0, 7733, 827, 1, 0, 0, 0, 7734, 7735, 7, 109, 0, 0, 7735, 829, 1, 0, 0, 0, 7736, 7788, 5, 387, 0, 0, 7737, 7788, 5, 388, 0, 0, 7738, 7788, 3, 662, 331, 0, 7739, 7788, 5, 390, 0, 0, 7740, 7788, 5, 391, 0, 0, 7741, 7788, 3, 664, 332, 0, 7742, 7788, 5, 393, 0, 0, 7743, 7788, 5, 394, 0, 0, 7744, 7788, 5, 395, 0, 0, 7745, 7788, 5, 396, 0, 0, 7746, 7788, 5, 397, 0, 0, 7747, 7788, 5, 398, 0, 0, 7748, 7788, 5, 399, 0, 0, 7749, 7788, 5, 470, 0, 0, 7750, 7788, 5, 400, 0, 0, 7751, 7788, 5, 401, 0, 0, 7752, 7788, 5, 402, 0, 0, 7753, 7788, 5, 403, 0, 0, 7754, 7788, 5, 404, 0, 0, 7755, 7788, 5, 405, 0, 0, 7756, 7788, 5, 406, 0, 0, 7757, 7788, 5, 407, 0, 0, 7758, 7788, 5, 489, 0, 0, 7759, 7788, 5, 408, 0, 0, 7760, 7788, 3, 658, 329, 0, 7761, 7788, 5, 453, 0, 0, 7762, 7788, 5, 410, 0, 0, 7763, 7788, 5, 411, 0, 0, 7764, 7788, 5, 412, 0, 0, 7765, 7788, 5, 413, 0, 0, 7766, 7788, 5, 414, 0, 0, 7767, 7788, 5, 415, 0, 0, 7768, 7788, 5, 416, 0, 0, 7769, 7788, 5, 417, 0, 0, 7770, 7788, 5, 418, 0, 0, 7771, 7788, 5, 419, 0, 0, 7772, 7788, 5, 420, 0, 0, 7773, 7788, 5, 421, 0, 0, 7774, 7788, 5, 422, 0, 0, 7775, 7788, 5, 423, 0, 0, 7776, 7788, 5, 424, 0, 0, 7777, 7788, 5, 425, 0, 0, 7778, 7788, 5, 426, 0, 0, 7779, 7788, 5, 427, 0, 0, 7780, 7788, 5, 428, 0, 0, 7781, 7788, 5, 476, 0, 0, 7782, 7788, 5, 429, 0, 0, 7783, 7788, 5, 430, 0, 0, 7784, 7788, 5, 431, 0, 0, 7785, 7788, 5, 432, 0, 0, 7786, 7788, 5, 474, 0, 0, 7787, 7736, 1, 0, 0, 0, 7787, 7737, 1, 0, 0, 0, 7787, 7738, 1, 0, 0, 0, 7787, 7739, 1, 0, 0, 0, 7787, 7740, 1, 0, 0, 0, 7787, 7741, 1, 0, 0, 0, 7787, 7742, 1, 0, 0, 0, 7787, 7743, 1, 0, 0, 0, 7787, 7744, 1, 0, 0, 0, 7787, 7745, 1, 0, 0, 0, 7787, 7746, 1, 0, 0, 0, 7787, 7747, 1, 0, 0, 0, 7787, 7748, 1, 0, 0, 0, 7787, 7749, 1, 0, 0, 0, 7787, 7750, 1, 0, 0, 0, 7787, 7751, 1, 0, 0, 0, 7787, 7752, 1, 0, 0, 0, 7787, 7753, 1, 0, 0, 0, 7787, 7754, 1, 0, 0, 0, 7787, 7755, 1, 0, 0, 0, 7787, 7756, 1, 0, 0, 0, 7787, 7757, 1, 0, 0, 0, 7787, 7758, 1, 0, 0, 0, 7787, 7759, 1, 0, 0, 0, 7787, 7760, 1, 0, 0, 0, 7787, 7761, 1, 0, 0, 0, 7787, 7762, 1, 0, 0, 0, 7787, 7763, 1, 0, 0, 0, 7787, 7764, 1, 0, 0, 0, 7787, 7765, 1, 0, 0, 0, 7787, 7766, 1, 0, 0, 0, 7787, 7767, 1, 0, 0, 0, 7787, 7768, 1, 0, 0, 0, 7787, 7769, 1, 0, 0, 0, 7787, 7770, 1, 0, 0, 0, 7787, 7771, 1, 0, 0, 0, 7787, 7772, 1, 0, 0, 0, 7787, 7773, 1, 0, 0, 0, 7787, 7774, 1, 0, 0, 0, 7787, 7775, 1, 0, 0, 0, 7787, 7776, 1, 0, 0, 0, 7787, 7777, 1, 0, 0, 0, 7787, 7778, 1, 0, 0, 0, 7787, 7779, 1, 0, 0, 0, 7787, 7780, 1, 0, 0, 0, 7787, 7781, 1, 0, 0, 0, 7787, 7782, 1, 0, 0, 0, 7787, 7783, 1, 0, 0, 0, 7787, 7784, 1, 0, 0, 0, 7787, 7785, 1, 0, 0, 0, 7787, 7786, 1, 0, 0, 0, 7788, 831, 1, 0, 0, 0, 7789, 7790, 7, 110, 0, 0, 7790, 833, 1, 0, 0, 0, 7791, 7792, 7, 111, 0, 0, 7792, 835, 1, 0, 0, 0, 7793, 7795, 3, 838, 419, 0, 7794, 7793, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7806, 1, 0, 0, 0, 7796, 7804, 5, 178, 0, 0, 7797, 7801, 3, 840, 420, 0, 7798, 7801, 5, 178, 0, 0, 7799, 7801, 3, 838, 419, 0, 7800, 7797, 1, 0, 0, 0, 7800, 7798, 1, 0, 0, 0, 7800, 7799, 1, 0, 0, 0, 7801, 7802, 1, 0, 0, 0, 7802, 7800, 1, 0, 0, 0, 7802, 7803, 1, 0, 0, 0, 7803, 7805, 1, 0, 0, 0, 7804, 7800, 1, 0, 0, 0, 7804, 7805, 1, 0, 0, 0, 7805, 7807, 1, 0, 0, 0, 7806, 7796, 1, 0, 0, 0, 7806, 7807, 1, 0, 0, 0, 7807, 7808, 1, 0, 0, 0, 7808, 7812, 5, 146, 0, 0, 7809, 7811, 3, 846, 423, 0, 7810, 7809, 1, 0, 0, 0, 7811, 7814, 1, 0, 0, 0, 7812, 7810, 1, 0, 0, 0, 7812, 7813, 1, 0, 0, 0, 7813, 7816, 1, 0, 0, 0, 7814, 7812, 1, 0, 0, 0, 7815, 7817, 3, 924, 462, 0, 7816, 7815, 1, 0, 0, 0, 7816, 7817, 1, 0, 0, 0, 7817, 7818, 1, 0, 0, 0, 7818, 7820, 5, 454, 0, 0, 7819, 7821, 3, 928, 464, 0, 7820, 7819, 1, 0, 0, 0, 7820, 7821, 1, 0, 0, 0, 7821, 837, 1, 0, 0, 0, 7822, 7823, 5, 18, 0, 0, 7823, 7824, 3, 928, 464, 0, 7824, 7825, 5, 19, 0, 0, 7825, 839, 1, 0, 0, 0, 7826, 7873, 3, 928, 464, 0, 7827, 7828, 5, 496, 0, 0, 7828, 7831, 5, 62, 0, 0, 7829, 7832, 5, 28, 0, 0, 7830, 7832, 3, 818, 409, 0, 7831, 7829, 1, 0, 0, 0, 7831, 7830, 1, 0, 0, 0, 7832, 7874, 1, 0, 0, 0, 7833, 7835, 5, 497, 0, 0, 7834, 7833, 1, 0, 0, 0, 7834, 7835, 1, 0, 0, 0, 7835, 7836, 1, 0, 0, 0, 7836, 7838, 3, 652, 326, 0, 7837, 7839, 3, 98, 49, 0, 7838, 7837, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7842, 1, 0, 0, 0, 7840, 7841, 5, 77, 0, 0, 7841, 7843, 5, 78, 0, 0, 7842, 7840, 1, 0, 0, 0, 7842, 7843, 1, 0, 0, 0, 7843, 7849, 1, 0, 0, 0, 7844, 7847, 3, 844, 422, 0, 7845, 7847, 5, 53, 0, 0, 7846, 7844, 1, 0, 0, 0, 7846, 7845, 1, 0, 0, 0, 7847, 7848, 1, 0, 0, 0, 7848, 7850, 3, 930, 465, 0, 7849, 7846, 1, 0, 0, 0, 7849, 7850, 1, 0, 0, 0, 7850, 7874, 1, 0, 0, 0, 7851, 7853, 5, 269, 0, 0, 7852, 7851, 1, 0, 0, 0, 7852, 7853, 1, 0, 0, 0, 7853, 7854, 1, 0, 0, 0, 7854, 7856, 5, 324, 0, 0, 7855, 7852, 1, 0, 0, 0, 7855, 7856, 1, 0, 0, 0, 7856, 7857, 1, 0, 0, 0, 7857, 7869, 5, 172, 0, 0, 7858, 7859, 5, 2, 0, 0, 7859, 7864, 3, 842, 421, 0, 7860, 7861, 5, 6, 0, 0, 7861, 7863, 3, 842, 421, 0, 7862, 7860, 1, 0, 0, 0, 7863, 7866, 1, 0, 0, 0, 7864, 7862, 1, 0, 0, 0, 7864, 7865, 1, 0, 0, 0, 7865, 7867, 1, 0, 0, 0, 7866, 7864, 1, 0, 0, 0, 7867, 7868, 5, 3, 0, 0, 7868, 7870, 1, 0, 0, 0, 7869, 7858, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7871, 1, 0, 0, 0, 7871, 7872, 7, 112, 0, 0, 7872, 7874, 3, 560, 280, 0, 7873, 7827, 1, 0, 0, 0, 7873, 7834, 1, 0, 0, 0, 7873, 7855, 1, 0, 0, 0, 7874, 7875, 1, 0, 0, 0, 7875, 7876, 5, 7, 0, 0, 7876, 841, 1, 0, 0, 0, 7877, 7878, 3, 928, 464, 0, 7878, 7879, 3, 652, 326, 0, 7879, 843, 1, 0, 0, 0, 7880, 7881, 7, 113, 0, 0, 7881, 845, 1, 0, 0, 0, 7882, 7883, 3, 836, 418, 0, 7883, 7884, 5, 7, 0, 0, 7884, 7907, 1, 0, 0, 0, 7885, 7907, 3, 874, 437, 0, 7886, 7907, 3, 876, 438, 0, 7887, 7907, 3, 852, 426, 0, 7888, 7907, 3, 860, 430, 0, 7889, 7907, 3, 864, 432, 0, 7890, 7907, 3, 866, 433, 0, 7891, 7907, 3, 870, 435, 0, 7892, 7907, 3, 872, 436, 0, 7893, 7907, 3, 880, 440, 0, 7894, 7907, 3, 884, 442, 0, 7895, 7907, 3, 886, 443, 0, 7896, 7907, 3, 848, 424, 0, 7897, 7907, 3, 850, 425, 0, 7898, 7907, 3, 854, 427, 0, 7899, 7907, 3, 890, 445, 0, 7900, 7907, 3, 894, 447, 0, 7901, 7907, 3, 898, 449, 0, 7902, 7907, 3, 914, 457, 0, 7903, 7907, 3, 916, 458, 0, 7904, 7907, 3, 918, 459, 0, 7905, 7907, 3, 920, 460, 0, 7906, 7882, 1, 0, 0, 0, 7906, 7885, 1, 0, 0, 0, 7906, 7886, 1, 0, 0, 0, 7906, 7887, 1, 0, 0, 0, 7906, 7888, 1, 0, 0, 0, 7906, 7889, 1, 0, 0, 0, 7906, 7890, 1, 0, 0, 0, 7906, 7891, 1, 0, 0, 0, 7906, 7892, 1, 0, 0, 0, 7906, 7893, 1, 0, 0, 0, 7906, 7894, 1, 0, 0, 0, 7906, 7895, 1, 0, 0, 0, 7906, 7896, 1, 0, 0, 0, 7906, 7897, 1, 0, 0, 0, 7906, 7898, 1, 0, 0, 0, 7906, 7899, 1, 0, 0, 0, 7906, 7900, 1, 0, 0, 0, 7906, 7901, 1, 0, 0, 0, 7906, 7902, 1, 0, 0, 0, 7906, 7903, 1, 0, 0, 0, 7906, 7904, 1, 0, 0, 0, 7906, 7905, 1, 0, 0, 0, 7907, 847, 1, 0, 0, 0, 7908, 7909, 5, 498, 0, 0, 7909, 7910, 3, 930, 465, 0, 7910, 7911, 5, 7, 0, 0, 7911, 849, 1, 0, 0, 0, 7912, 7913, 5, 433, 0, 0, 7913, 7920, 3, 928, 464, 0, 7914, 7916, 5, 2, 0, 0, 7915, 7917, 3, 730, 365, 0, 7916, 7915, 1, 0, 0, 0, 7916, 7917, 1, 0, 0, 0, 7917, 7918, 1, 0, 0, 0, 7918, 7919, 5, 3, 0, 0, 7919, 7921, 5, 7, 0, 0, 7920, 7914, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 7932, 1, 0, 0, 0, 7922, 7923, 5, 57, 0, 0, 7923, 7924, 3, 928, 464, 0, 7924, 7926, 5, 2, 0, 0, 7925, 7927, 3, 730, 365, 0, 7926, 7925, 1, 0, 0, 0, 7926, 7927, 1, 0, 0, 0, 7927, 7928, 1, 0, 0, 0, 7928, 7929, 5, 3, 0, 0, 7929, 7930, 5, 7, 0, 0, 7930, 7932, 1, 0, 0, 0, 7931, 7912, 1, 0, 0, 0, 7931, 7922, 1, 0, 0, 0, 7932, 851, 1, 0, 0, 0, 7933, 7934, 3, 858, 429, 0, 7934, 7935, 3, 844, 422, 0, 7935, 7936, 3, 930, 465, 0, 7936, 7937, 5, 7, 0, 0, 7937, 853, 1, 0, 0, 0, 7938, 7940, 5, 499, 0, 0, 7939, 7941, 7, 114, 0, 0, 7940, 7939, 1, 0, 0, 0, 7940, 7941, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7943, 5, 500, 0, 0, 7943, 7948, 3, 856, 428, 0, 7944, 7945, 5, 6, 0, 0, 7945, 7947, 3, 856, 428, 0, 7946, 7944, 1, 0, 0, 0, 7947, 7950, 1, 0, 0, 0, 7948, 7946, 1, 0, 0, 0, 7948, 7949, 1, 0, 0, 0, 7949, 7951, 1, 0, 0, 0, 7950, 7948, 1, 0, 0, 0, 7951, 7952, 5, 7, 0, 0, 7952, 855, 1, 0, 0, 0, 7953, 7954, 3, 858, 429, 0, 7954, 7955, 3, 844, 422, 0, 7955, 7956, 3, 818, 409, 0, 7956, 857, 1, 0, 0, 0, 7957, 7960, 3, 316, 158, 0, 7958, 7960, 5, 28, 0, 0, 7959, 7957, 1, 0, 0, 0, 7959, 7958, 1, 0, 0, 0, 7960, 7967, 1, 0, 0, 0, 7961, 7962, 5, 4, 0, 0, 7962, 7963, 3, 674, 337, 0, 7963, 7964, 5, 5, 0, 0, 7964, 7966, 1, 0, 0, 0, 7965, 7961, 1, 0, 0, 0, 7966, 7969, 1, 0, 0, 0, 7967, 7965, 1, 0, 0, 0, 7967, 7968, 1, 0, 0, 0, 7968, 859, 1, 0, 0, 0, 7969, 7967, 1, 0, 0, 0, 7970, 7971, 5, 220, 0, 0, 7971, 7972, 3, 930, 465, 0, 7972, 7976, 5, 93, 0, 0, 7973, 7975, 3, 846, 423, 0, 7974, 7973, 1, 0, 0, 0, 7975, 7978, 1, 0, 0, 0, 7976, 7974, 1, 0, 0, 0, 7976, 7977, 1, 0, 0, 0, 7977, 7990, 1, 0, 0, 0, 7978, 7976, 1, 0, 0, 0, 7979, 7980, 5, 502, 0, 0, 7980, 7981, 3, 674, 337, 0, 7981, 7985, 5, 93, 0, 0, 7982, 7984, 3, 846, 423, 0, 7983, 7982, 1, 0, 0, 0, 7984, 7987, 1, 0, 0, 0, 7985, 7983, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7989, 1, 0, 0, 0, 7987, 7985, 1, 0, 0, 0, 7988, 7979, 1, 0, 0, 0, 7989, 7992, 1, 0, 0, 0, 7990, 7988, 1, 0, 0, 0, 7990, 7991, 1, 0, 0, 0, 7991, 7994, 1, 0, 0, 0, 7992, 7990, 1, 0, 0, 0, 7993, 7995, 3, 862, 431, 0, 7994, 7993, 1, 0, 0, 0, 7994, 7995, 1, 0, 0, 0, 7995, 7996, 1, 0, 0, 0, 7996, 7997, 5, 454, 0, 0, 7997, 7998, 5, 220, 0, 0, 7998, 7999, 5, 7, 0, 0, 7999, 861, 1, 0, 0, 0, 8000, 8004, 5, 58, 0, 0, 8001, 8003, 3, 846, 423, 0, 8002, 8001, 1, 0, 0, 0, 8003, 8006, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8004, 8005, 1, 0, 0, 0, 8005, 863, 1, 0, 0, 0, 8006, 8004, 1, 0, 0, 0, 8007, 8009, 5, 40, 0, 0, 8008, 8010, 3, 930, 465, 0, 8009, 8008, 1, 0, 0, 0, 8009, 8010, 1, 0, 0, 0, 8010, 8020, 1, 0, 0, 0, 8011, 8012, 5, 102, 0, 0, 8012, 8013, 3, 730, 365, 0, 8013, 8017, 5, 93, 0, 0, 8014, 8016, 3, 846, 423, 0, 8015, 8014, 1, 0, 0, 0, 8016, 8019, 1, 0, 0, 0, 8017, 8015, 1, 0, 0, 0, 8017, 8018, 1, 0, 0, 0, 8018, 8021, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8020, 8011, 1, 0, 0, 0, 8021, 8022, 1, 0, 0, 0, 8022, 8020, 1, 0, 0, 0, 8022, 8023, 1, 0, 0, 0, 8023, 8025, 1, 0, 0, 0, 8024, 8026, 3, 862, 431, 0, 8025, 8024, 1, 0, 0, 0, 8025, 8026, 1, 0, 0, 0, 8026, 8027, 1, 0, 0, 0, 8027, 8028, 5, 454, 0, 0, 8028, 8029, 5, 40, 0, 0, 8029, 8030, 5, 7, 0, 0, 8030, 865, 1, 0, 0, 0, 8031, 8033, 3, 838, 419, 0, 8032, 8031, 1, 0, 0, 0, 8032, 8033, 1, 0, 0, 0, 8033, 8038, 1, 0, 0, 0, 8034, 8035, 5, 503, 0, 0, 8035, 8039, 3, 674, 337, 0, 8036, 8037, 5, 62, 0, 0, 8037, 8039, 3, 868, 434, 0, 8038, 8034, 1, 0, 0, 0, 8038, 8036, 1, 0, 0, 0, 8038, 8039, 1, 0, 0, 0, 8039, 8040, 1, 0, 0, 0, 8040, 8041, 3, 882, 441, 0, 8041, 867, 1, 0, 0, 0, 8042, 8043, 3, 314, 157, 0, 8043, 8066, 5, 68, 0, 0, 8044, 8046, 3, 818, 409, 0, 8045, 8047, 3, 534, 267, 0, 8046, 8045, 1, 0, 0, 0, 8046, 8047, 1, 0, 0, 0, 8047, 8067, 1, 0, 0, 0, 8048, 8067, 3, 560, 280, 0, 8049, 8067, 3, 520, 260, 0, 8050, 8051, 5, 202, 0, 0, 8051, 8054, 3, 674, 337, 0, 8052, 8053, 5, 100, 0, 0, 8053, 8055, 3, 730, 365, 0, 8054, 8052, 1, 0, 0, 0, 8054, 8055, 1, 0, 0, 0, 8055, 8067, 1, 0, 0, 0, 8056, 8058, 5, 504, 0, 0, 8057, 8056, 1, 0, 0, 0, 8057, 8058, 1, 0, 0, 0, 8058, 8059, 1, 0, 0, 0, 8059, 8060, 3, 674, 337, 0, 8060, 8061, 5, 24, 0, 0, 8061, 8064, 3, 674, 337, 0, 8062, 8063, 5, 147, 0, 0, 8063, 8065, 3, 674, 337, 0, 8064, 8062, 1, 0, 0, 0, 8064, 8065, 1, 0, 0, 0, 8065, 8067, 1, 0, 0, 0, 8066, 8044, 1, 0, 0, 0, 8066, 8048, 1, 0, 0, 0, 8066, 8049, 1, 0, 0, 0, 8066, 8050, 1, 0, 0, 0, 8066, 8057, 1, 0, 0, 0, 8067, 869, 1, 0, 0, 0, 8068, 8070, 3, 838, 419, 0, 8069, 8068, 1, 0, 0, 0, 8069, 8070, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8072, 5, 505, 0, 0, 8072, 8075, 3, 314, 157, 0, 8073, 8074, 5, 506, 0, 0, 8074, 8076, 5, 571, 0, 0, 8075, 8073, 1, 0, 0, 0, 8075, 8076, 1, 0, 0, 0, 8076, 8077, 1, 0, 0, 0, 8077, 8078, 5, 68, 0, 0, 8078, 8079, 5, 35, 0, 0, 8079, 8080, 3, 674, 337, 0, 8080, 8081, 3, 882, 441, 0, 8081, 871, 1, 0, 0, 0, 8082, 8084, 7, 115, 0, 0, 8083, 8085, 3, 928, 464, 0, 8084, 8083, 1, 0, 0, 0, 8084, 8085, 1, 0, 0, 0, 8085, 8088, 1, 0, 0, 0, 8086, 8087, 5, 102, 0, 0, 8087, 8089, 3, 930, 465, 0, 8088, 8086, 1, 0, 0, 0, 8088, 8089, 1, 0, 0, 0, 8089, 8090, 1, 0, 0, 0, 8090, 8091, 5, 7, 0, 0, 8091, 873, 1, 0, 0, 0, 8092, 8107, 5, 508, 0, 0, 8093, 8094, 5, 268, 0, 0, 8094, 8108, 3, 930, 465, 0, 8095, 8102, 5, 509, 0, 0, 8096, 8097, 5, 202, 0, 0, 8097, 8098, 3, 674, 337, 0, 8098, 8099, 5, 100, 0, 0, 8099, 8100, 3, 730, 365, 0, 8100, 8103, 1, 0, 0, 0, 8101, 8103, 3, 560, 280, 0, 8102, 8096, 1, 0, 0, 0, 8102, 8101, 1, 0, 0, 0, 8103, 8108, 1, 0, 0, 0, 8104, 8106, 3, 930, 465, 0, 8105, 8104, 1, 0, 0, 0, 8105, 8106, 1, 0, 0, 0, 8106, 8108, 1, 0, 0, 0, 8107, 8093, 1, 0, 0, 0, 8107, 8095, 1, 0, 0, 0, 8107, 8105, 1, 0, 0, 0, 8108, 8109, 1, 0, 0, 0, 8109, 8110, 5, 7, 0, 0, 8110, 875, 1, 0, 0, 0, 8111, 8141, 5, 510, 0, 0, 8112, 8114, 7, 116, 0, 0, 8113, 8112, 1, 0, 0, 0, 8113, 8114, 1, 0, 0, 0, 8114, 8127, 1, 0, 0, 0, 8115, 8128, 3, 826, 413, 0, 8116, 8117, 5, 511, 0, 0, 8117, 8128, 3, 808, 404, 0, 8118, 8125, 3, 808, 404, 0, 8119, 8120, 5, 6, 0, 0, 8120, 8122, 3, 674, 337, 0, 8121, 8119, 1, 0, 0, 0, 8122, 8123, 1, 0, 0, 0, 8123, 8121, 1, 0, 0, 0, 8123, 8124, 1, 0, 0, 0, 8124, 8126, 1, 0, 0, 0, 8125, 8121, 1, 0, 0, 0, 8125, 8126, 1, 0, 0, 0, 8126, 8128, 1, 0, 0, 0, 8127, 8115, 1, 0, 0, 0, 8127, 8116, 1, 0, 0, 0, 8127, 8118, 1, 0, 0, 0, 8127, 8128, 1, 0, 0, 0, 8128, 8138, 1, 0, 0, 0, 8129, 8130, 5, 100, 0, 0, 8130, 8135, 3, 878, 439, 0, 8131, 8132, 5, 6, 0, 0, 8132, 8134, 3, 878, 439, 0, 8133, 8131, 1, 0, 0, 0, 8134, 8137, 1, 0, 0, 0, 8135, 8133, 1, 0, 0, 0, 8135, 8136, 1, 0, 0, 0, 8136, 8139, 1, 0, 0, 0, 8137, 8135, 1, 0, 0, 0, 8138, 8129, 1, 0, 0, 0, 8138, 8139, 1, 0, 0, 0, 8139, 8140, 1, 0, 0, 0, 8140, 8142, 5, 7, 0, 0, 8141, 8113, 1, 0, 0, 0, 8141, 8142, 1, 0, 0, 0, 8142, 877, 1, 0, 0, 0, 8143, 8144, 3, 826, 413, 0, 8144, 8145, 5, 10, 0, 0, 8145, 8146, 3, 674, 337, 0, 8146, 879, 1, 0, 0, 0, 8147, 8148, 5, 518, 0, 0, 8148, 8151, 3, 930, 465, 0, 8149, 8150, 5, 6, 0, 0, 8150, 8152, 3, 930, 465, 0, 8151, 8149, 1, 0, 0, 0, 8151, 8152, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8154, 5, 7, 0, 0, 8154, 881, 1, 0, 0, 0, 8155, 8159, 5, 519, 0, 0, 8156, 8158, 3, 846, 423, 0, 8157, 8156, 1, 0, 0, 0, 8158, 8161, 1, 0, 0, 0, 8159, 8157, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8162, 1, 0, 0, 0, 8161, 8159, 1, 0, 0, 0, 8162, 8163, 5, 454, 0, 0, 8163, 8165, 5, 519, 0, 0, 8164, 8166, 3, 928, 464, 0, 8165, 8164, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8167, 1, 0, 0, 0, 8167, 8168, 5, 7, 0, 0, 8168, 883, 1, 0, 0, 0, 8169, 8171, 3, 4, 2, 0, 8170, 8172, 3, 888, 444, 0, 8171, 8170, 1, 0, 0, 0, 8171, 8172, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8174, 5, 7, 0, 0, 8174, 885, 1, 0, 0, 0, 8175, 8176, 5, 202, 0, 0, 8176, 8192, 3, 674, 337, 0, 8177, 8179, 3, 888, 444, 0, 8178, 8177, 1, 0, 0, 0, 8178, 8179, 1, 0, 0, 0, 8179, 8182, 1, 0, 0, 0, 8180, 8181, 5, 100, 0, 0, 8181, 8183, 3, 730, 365, 0, 8182, 8180, 1, 0, 0, 0, 8182, 8183, 1, 0, 0, 0, 8183, 8193, 1, 0, 0, 0, 8184, 8185, 5, 100, 0, 0, 8185, 8187, 3, 730, 365, 0, 8186, 8184, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8189, 1, 0, 0, 0, 8188, 8190, 3, 888, 444, 0, 8189, 8188, 1, 0, 0, 0, 8189, 8190, 1, 0, 0, 0, 8190, 8193, 1, 0, 0, 0, 8191, 8193, 1, 0, 0, 0, 8192, 8178, 1, 0, 0, 0, 8192, 8186, 1, 0, 0, 0, 8192, 8191, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 8195, 5, 7, 0, 0, 8195, 887, 1, 0, 0, 0, 8196, 8198, 5, 71, 0, 0, 8197, 8199, 5, 346, 0, 0, 8198, 8197, 1, 0, 0, 0, 8198, 8199, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8201, 3, 730, 365, 0, 8201, 889, 1, 0, 0, 0, 8202, 8234, 5, 520, 0, 0, 8203, 8208, 3, 922, 461, 0, 8204, 8206, 5, 269, 0, 0, 8205, 8204, 1, 0, 0, 0, 8205, 8206, 1, 0, 0, 0, 8206, 8207, 1, 0, 0, 0, 8207, 8209, 5, 324, 0, 0, 8208, 8205, 1, 0, 0, 0, 8208, 8209, 1, 0, 0, 0, 8209, 8210, 1, 0, 0, 0, 8210, 8218, 5, 62, 0, 0, 8211, 8219, 3, 560, 280, 0, 8212, 8213, 5, 202, 0, 0, 8213, 8216, 3, 930, 465, 0, 8214, 8215, 5, 100, 0, 0, 8215, 8217, 3, 730, 365, 0, 8216, 8214, 1, 0, 0, 0, 8216, 8217, 1, 0, 0, 0, 8217, 8219, 1, 0, 0, 0, 8218, 8211, 1, 0, 0, 0, 8218, 8212, 1, 0, 0, 0, 8219, 8235, 1, 0, 0, 0, 8220, 8232, 3, 818, 409, 0, 8221, 8222, 5, 2, 0, 0, 8222, 8227, 3, 892, 446, 0, 8223, 8224, 5, 6, 0, 0, 8224, 8226, 3, 892, 446, 0, 8225, 8223, 1, 0, 0, 0, 8226, 8229, 1, 0, 0, 0, 8227, 8225, 1, 0, 0, 0, 8227, 8228, 1, 0, 0, 0, 8228, 8230, 1, 0, 0, 0, 8229, 8227, 1, 0, 0, 0, 8230, 8231, 5, 3, 0, 0, 8231, 8233, 1, 0, 0, 0, 8232, 8221, 1, 0, 0, 0, 8232, 8233, 1, 0, 0, 0, 8233, 8235, 1, 0, 0, 0, 8234, 8203, 1, 0, 0, 0, 8234, 8220, 1, 0, 0, 0, 8235, 8236, 1, 0, 0, 0, 8236, 8237, 5, 7, 0, 0, 8237, 891, 1, 0, 0, 0, 8238, 8239, 3, 818, 409, 0, 8239, 8240, 5, 20, 0, 0, 8240, 8242, 1, 0, 0, 0, 8241, 8238, 1, 0, 0, 0, 8241, 8242, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 8244, 3, 674, 337, 0, 8244, 893, 1, 0, 0, 0, 8245, 8247, 5, 61, 0, 0, 8246, 8248, 3, 896, 448, 0, 8247, 8246, 1, 0, 0, 0, 8247, 8248, 1, 0, 0, 0, 8248, 8250, 1, 0, 0, 0, 8249, 8251, 3, 332, 166, 0, 8250, 8249, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8252, 1, 0, 0, 0, 8252, 8253, 3, 922, 461, 0, 8253, 8254, 5, 71, 0, 0, 8254, 8255, 3, 730, 365, 0, 8255, 8256, 5, 7, 0, 0, 8256, 895, 1, 0, 0, 0, 8257, 8272, 5, 268, 0, 0, 8258, 8272, 5, 293, 0, 0, 8259, 8272, 5, 207, 0, 0, 8260, 8272, 5, 249, 0, 0, 8261, 8263, 7, 50, 0, 0, 8262, 8261, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8272, 3, 674, 337, 0, 8265, 8272, 5, 30, 0, 0, 8266, 8269, 7, 117, 0, 0, 8267, 8270, 3, 674, 337, 0, 8268, 8270, 5, 30, 0, 0, 8269, 8267, 1, 0, 0, 0, 8269, 8268, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8272, 1, 0, 0, 0, 8271, 8257, 1, 0, 0, 0, 8271, 8258, 1, 0, 0, 0, 8271, 8259, 1, 0, 0, 0, 8271, 8260, 1, 0, 0, 0, 8271, 8262, 1, 0, 0, 0, 8271, 8265, 1, 0, 0, 0, 8271, 8266, 1, 0, 0, 0, 8272, 897, 1, 0, 0, 0, 8273, 8275, 5, 265, 0, 0, 8274, 8276, 3, 896, 448, 0, 8275, 8274, 1, 0, 0, 0, 8275, 8276, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8278, 3, 922, 461, 0, 8278, 8279, 5, 7, 0, 0, 8279, 899, 1, 0, 0, 0, 8280, 8282, 3, 572, 286, 0, 8281, 8280, 1, 0, 0, 0, 8281, 8282, 1, 0, 0, 0, 8282, 8283, 1, 0, 0, 0, 8283, 8284, 5, 525, 0, 0, 8284, 8286, 5, 71, 0, 0, 8285, 8287, 5, 81, 0, 0, 8286, 8285, 1, 0, 0, 0, 8286, 8287, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 8290, 3, 774, 387, 0, 8289, 8291, 5, 9, 0, 0, 8290, 8289, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8296, 1, 0, 0, 0, 8292, 8294, 5, 36, 0, 0, 8293, 8292, 1, 0, 0, 0, 8293, 8294, 1, 0, 0, 0, 8294, 8295, 1, 0, 0, 0, 8295, 8297, 3, 818, 409, 0, 8296, 8293, 1, 0, 0, 0, 8296, 8297, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 8299, 5, 100, 0, 0, 8299, 8300, 3, 902, 451, 0, 8300, 8301, 5, 80, 0, 0, 8301, 8303, 3, 674, 337, 0, 8302, 8304, 3, 904, 452, 0, 8303, 8302, 1, 0, 0, 0, 8304, 8305, 1, 0, 0, 0, 8305, 8303, 1, 0, 0, 0, 8305, 8306, 1, 0, 0, 0, 8306, 901, 1, 0, 0, 0, 8307, 8309, 5, 81, 0, 0, 8308, 8307, 1, 0, 0, 0, 8308, 8309, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8312, 3, 774, 387, 0, 8311, 8313, 5, 9, 0, 0, 8312, 8311, 1, 0, 0, 0, 8312, 8313, 1, 0, 0, 0, 8313, 8319, 1, 0, 0, 0, 8314, 8317, 3, 564, 282, 0, 8315, 8317, 3, 608, 304, 0, 8316, 8314, 1, 0, 0, 0, 8316, 8315, 1, 0, 0, 0, 8317, 8319, 1, 0, 0, 0, 8318, 8308, 1, 0, 0, 0, 8318, 8316, 1, 0, 0, 0, 8319, 8324, 1, 0, 0, 0, 8320, 8322, 5, 36, 0, 0, 8321, 8320, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 8323, 1, 0, 0, 0, 8323, 8325, 3, 818, 409, 0, 8324, 8321, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 903, 1, 0, 0, 0, 8326, 8327, 5, 102, 0, 0, 8327, 8330, 5, 526, 0, 0, 8328, 8329, 5, 33, 0, 0, 8329, 8331, 3, 674, 337, 0, 8330, 8328, 1, 0, 0, 0, 8330, 8331, 1, 0, 0, 0, 8331, 8332, 1, 0, 0, 0, 8332, 8337, 5, 93, 0, 0, 8333, 8338, 3, 908, 454, 0, 8334, 8338, 5, 182, 0, 0, 8335, 8336, 5, 57, 0, 0, 8336, 8338, 5, 270, 0, 0, 8337, 8333, 1, 0, 0, 0, 8337, 8334, 1, 0, 0, 0, 8337, 8335, 1, 0, 0, 0, 8338, 8353, 1, 0, 0, 0, 8339, 8340, 5, 102, 0, 0, 8340, 8341, 5, 77, 0, 0, 8341, 8344, 5, 526, 0, 0, 8342, 8343, 5, 33, 0, 0, 8343, 8345, 3, 674, 337, 0, 8344, 8342, 1, 0, 0, 0, 8344, 8345, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8350, 5, 93, 0, 0, 8347, 8351, 3, 906, 453, 0, 8348, 8349, 5, 57, 0, 0, 8349, 8351, 5, 270, 0, 0, 8350, 8347, 1, 0, 0, 0, 8350, 8348, 1, 0, 0, 0, 8351, 8353, 1, 0, 0, 0, 8352, 8326, 1, 0, 0, 0, 8352, 8339, 1, 0, 0, 0, 8353, 905, 1, 0, 0, 0, 8354, 8356, 5, 241, 0, 0, 8355, 8357, 3, 144, 72, 0, 8356, 8355, 1, 0, 0, 0, 8356, 8357, 1, 0, 0, 0, 8357, 8361, 1, 0, 0, 0, 8358, 8359, 5, 463, 0, 0, 8359, 8360, 7, 76, 0, 0, 8360, 8362, 5, 450, 0, 0, 8361, 8358, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, 8363, 1, 0, 0, 0, 8363, 8364, 3, 910, 455, 0, 8364, 907, 1, 0, 0, 0, 8365, 8366, 5, 369, 0, 0, 8366, 8384, 5, 333, 0, 0, 8367, 8368, 3, 800, 400, 0, 8368, 8369, 5, 10, 0, 0, 8369, 8370, 3, 912, 456, 0, 8370, 8385, 1, 0, 0, 0, 8371, 8372, 3, 144, 72, 0, 8372, 8373, 5, 10, 0, 0, 8373, 8374, 5, 2, 0, 0, 8374, 8379, 3, 912, 456, 0, 8375, 8376, 5, 6, 0, 0, 8376, 8378, 3, 912, 456, 0, 8377, 8375, 1, 0, 0, 0, 8378, 8381, 1, 0, 0, 0, 8379, 8377, 1, 0, 0, 0, 8379, 8380, 1, 0, 0, 0, 8380, 8382, 1, 0, 0, 0, 8381, 8379, 1, 0, 0, 0, 8382, 8383, 5, 3, 0, 0, 8383, 8385, 1, 0, 0, 0, 8384, 8367, 1, 0, 0, 0, 8384, 8371, 1, 0, 0, 0, 8385, 8386, 1, 0, 0, 0, 8386, 8384, 1, 0, 0, 0, 8386, 8387, 1, 0, 0, 0, 8387, 909, 1, 0, 0, 0, 8388, 8389, 5, 422, 0, 0, 8389, 8390, 5, 2, 0, 0, 8390, 8395, 3, 912, 456, 0, 8391, 8392, 5, 6, 0, 0, 8392, 8394, 3, 912, 456, 0, 8393, 8391, 1, 0, 0, 0, 8394, 8397, 1, 0, 0, 0, 8395, 8393, 1, 0, 0, 0, 8395, 8396, 1, 0, 0, 0, 8396, 8398, 1, 0, 0, 0, 8397, 8395, 1, 0, 0, 0, 8398, 8399, 5, 3, 0, 0, 8399, 8403, 1, 0, 0, 0, 8400, 8401, 5, 53, 0, 0, 8401, 8403, 5, 422, 0, 0, 8402, 8388, 1, 0, 0, 0, 8402, 8400, 1, 0, 0, 0, 8403, 911, 1, 0, 0, 0, 8404, 8407, 3, 588, 294, 0, 8405, 8407, 5, 53, 0, 0, 8406, 8404, 1, 0, 0, 0, 8406, 8405, 1, 0, 0, 0, 8407, 913, 1, 0, 0, 0, 8408, 8409, 5, 157, 0, 0, 8409, 8410, 3, 922, 461, 0, 8410, 8411, 5, 7, 0, 0, 8411, 915, 1, 0, 0, 0, 8412, 8413, 5, 78, 0, 0, 8413, 8414, 5, 7, 0, 0, 8414, 917, 1, 0, 0, 0, 8415, 8421, 7, 67, 0, 0, 8416, 8418, 5, 33, 0, 0, 8417, 8419, 5, 269, 0, 0, 8418, 8417, 1, 0, 0, 0, 8418, 8419, 1, 0, 0, 0, 8419, 8420, 1, 0, 0, 0, 8420, 8422, 5, 153, 0, 0, 8421, 8416, 1, 0, 0, 0, 8421, 8422, 1, 0, 0, 0, 8422, 8423, 1, 0, 0, 0, 8423, 8424, 5, 7, 0, 0, 8424, 919, 1, 0, 0, 0, 8425, 8426, 5, 333, 0, 0, 8426, 8427, 3, 316, 158, 0, 8427, 8428, 5, 94, 0, 0, 8428, 8429, 5, 53, 0, 0, 8429, 8430, 5, 7, 0, 0, 8430, 8438, 1, 0, 0, 0, 8431, 8434, 5, 313, 0, 0, 8432, 8435, 3, 316, 158, 0, 8433, 8435, 5, 30, 0, 0, 8434, 8432, 1, 0, 0, 0, 8434, 8433, 1, 0, 0, 0, 8435, 8436, 1, 0, 0, 0, 8436, 8438, 5, 7, 0, 0, 8437, 8425, 1, 0, 0, 0, 8437, 8431, 1, 0, 0, 0, 8438, 921, 1, 0, 0, 0, 8439, 8442, 3, 818, 409, 0, 8440, 8442, 5, 28, 0, 0, 8441, 8439, 1, 0, 0, 0, 8441, 8440, 1, 0, 0, 0, 8442, 923, 1, 0, 0, 0, 8443, 8460, 5, 517, 0, 0, 8444, 8445, 5, 102, 0, 0, 8445, 8450, 3, 926, 463, 0, 8446, 8447, 5, 82, 0, 0, 8447, 8449, 3, 926, 463, 0, 8448, 8446, 1, 0, 0, 0, 8449, 8452, 1, 0, 0, 0, 8450, 8448, 1, 0, 0, 0, 8450, 8451, 1, 0, 0, 0, 8451, 8453, 1, 0, 0, 0, 8452, 8450, 1, 0, 0, 0, 8453, 8457, 5, 93, 0, 0, 8454, 8456, 3, 846, 423, 0, 8455, 8454, 1, 0, 0, 0, 8456, 8459, 1, 0, 0, 0, 8457, 8455, 1, 0, 0, 0, 8457, 8458, 1, 0, 0, 0, 8458, 8461, 1, 0, 0, 0, 8459, 8457, 1, 0, 0, 0, 8460, 8444, 1, 0, 0, 0, 8461, 8462, 1, 0, 0, 0, 8462, 8460, 1, 0, 0, 0, 8462, 8463, 1, 0, 0, 0, 8463, 925, 1, 0, 0, 0, 8464, 8468, 3, 928, 464, 0, 8465, 8466, 5, 511, 0, 0, 8466, 8468, 3, 808, 404, 0, 8467, 8464, 1, 0, 0, 0, 8467, 8465, 1, 0, 0, 0, 8468, 927, 1, 0, 0, 0, 8469, 8472, 3, 818, 409, 0, 8470, 8472, 3, 828, 414, 0, 8471, 8469, 1, 0, 0, 0, 8471, 8470, 1, 0, 0, 0, 8472, 929, 1, 0, 0, 0, 8473, 8475, 3, 756, 378, 0, 8474, 8473, 1, 0, 0, 0, 8474, 8475, 1, 0, 0, 0, 8475, 8477, 1, 0, 0, 0, 8476, 8478, 3, 580, 290, 0, 8477, 8476, 1, 0, 0, 0, 8477, 8478, 1, 0, 0, 0, 8478, 8480, 1, 0, 0, 0, 8479, 8481, 3, 610, 305, 0, 8480, 8479, 1, 0, 0, 0, 8480, 8481, 1, 0, 0, 0, 8481, 8483, 1, 0, 0, 0, 8482, 8484, 3, 638, 319, 0, 8483, 8482, 1, 0, 0, 0, 8483, 8484, 1, 0, 0, 0, 8484, 8486, 1, 0, 0, 0, 8485, 8487, 3, 600, 300, 0, 8486, 8485, 1, 0, 0, 0, 8486, 8487, 1, 0, 0, 0, 8487, 8490, 1, 0, 0, 0, 8488, 8489, 5, 67, 0, 0, 8489, 8491, 3, 674, 337, 0, 8490, 8488, 1, 0, 0, 0, 8490, 8491, 1, 0, 0, 0, 8491, 8493, 1, 0, 0, 0, 8492, 8494, 3, 702, 351, 0, 8493, 8492, 1, 0, 0, 0, 8493, 8494, 1, 0, 0, 0, 8494, 931, 1, 0, 0, 0, 1188, 935, 942, 1062, 1064, 1073, 1078, 1084, 1119, 1129, 1135, 1140, 1147, 1152, 1159, 1170, 1178, 1182, 1194, 1200, 1206, 1210, 1215, 1219, 1232, 1242, 1244, 1250, 1255, 1268, 1271, 1276, 1281, 1292, 1296, 1308, 1312, 1315, 1319, 1331, 1349, 1356, 1364, 1369, 1376, 1384, 1390, 1398, 1406, 1410, 1424, 1429, 1434, 1446, 1452, 1464, 1469, 1479, 1485, 1490, 1498, 1503, 1510, 1515, 1520, 1530, 1535, 1540, 1547, 1551, 1565, 1571, 1577, 1582, 1589, 1601, 1609, 1617, 1633, 1642, 1651, 1660, 1664, 1676, 1684, 1694, 1714, 1719, 1722, 1729, 1732, 1736, 1740, 1743, 1748, 1753, 1757, 1766, 1772, 1776, 1785, 1788, 1794, 1803, 1815, 1819, 1823, 1828, 1831, 1837, 1839, 1841, 1845, 1851, 1855, 1860, 1865, 1869, 1872, 1879, 1892, 1905, 1919, 1936, 1946, 1953, 1958, 1962, 1969, 1974, 1977, 1979, 1984, 1988, 1992, 1996, 2001, 2004, 2008, 2011, 2015, 2023, 2028, 2031, 2035, 2041, 2050, 2054, 2060, 2062, 2071, 2076, 2088, 2093, 2097, 2101, 2106, 2110, 2113, 2116, 2119, 2122, 2125, 2130, 2133, 2136, 2139, 2142, 2145, 2151, 2155, 2158, 2161, 2164, 2167, 2169, 2176, 2184, 2194, 2199, 2209, 2212, 2217, 2222, 2227, 2230, 2235, 2244, 2246, 2250, 2253, 2257, 2262, 2267, 2271, 2274, 2278, 2281, 2286, 2289, 2294, 2297, 2301, 2304, 2307, 2312, 2315, 2323, 2335, 2339, 2346, 2351, 2354, 2357, 2360, 2365, 2376, 2382, 2386, 2389, 2392, 2397, 2404, 2407, 2411, 2419, 2424, 2427, 2430, 2437, 2442, 2451, 2454, 2457, 2462, 2465, 2477, 2487, 2504, 2508, 2512, 2514, 2531, 2533, 2549, 2560, 2563, 2566, 2575, 2584, 2600, 2603, 2606, 2614, 2618, 2625, 2634, 2638, 2644, 2648, 2651, 2654, 2657, 2660, 2666, 2670, 2675, 2679, 2682, 2685, 2688, 2693, 2699, 2703, 2707, 2711, 2717, 2719, 2724, 2730, 2736, 2740, 2755, 2760, 2763, 2765, 2768, 2772, 2776, 2779, 2782, 2790, 2796, 2798, 2804, 2809, 2814, 2818, 2825, 2827, 2838, 2877, 2887, 2889, 2892, 2896, 2900, 2910, 2912, 2918, 2920, 2929, 2941, 2955, 2960, 2963, 2970, 2975, 2983, 2985, 2991, 2996, 3000, 3005, 3011, 3018, 3024, 3026, 3035, 3041, 3049, 3055, 3060, 3065, 3073, 3088, 3090, 3094, 3098, 3101, 3104, 3113, 3116, 3119, 3125, 3131, 3135, 3147, 3153, 3156, 3161, 3165, 3172, 3182, 3184, 3208, 3220, 3225, 3227, 3231, 3234, 3237, 3247, 3250, 3260, 3265, 3270, 3273, 3276, 3284, 3290, 3297, 3305, 3308, 3319, 3323, 3329, 3336, 3339, 3348, 3362, 3365, 3379, 3390, 3393, 3405, 3410, 3423, 3428, 3441, 3450, 3453, 3456, 3463, 3466, 3478, 3484, 3486, 3494, 3502, 3510, 3522, 3527, 3538, 3549, 3557, 3565, 3572, 3579, 3581, 3584, 3589, 3594, 3613, 3622, 3625, 3652, 3661, 3664, 3668, 3672, 3676, 3683, 3687, 3691, 3695, 3699, 3704, 3708, 3713, 3719, 3724, 3731, 3735, 3741, 3745, 3750, 3758, 3764, 3769, 3776, 3781, 3785, 3790, 3796, 3803, 3808, 3815, 3820, 3827, 3831, 3839, 3843, 3845, 3848, 3853, 3863, 3878, 3881, 3889, 3896, 3901, 3907, 3911, 3918, 3923, 3926, 3929, 3933, 3942, 3960, 3963, 3995, 4000, 4006, 4026, 4031, 4037, 4040, 4044, 4048, 4054, 4057, 4061, 4065, 4070, 4073, 4076, 4079, 4092, 4098, 4106, 4113, 4118, 4121, 4128, 4131, 4139, 4142, 4147, 4154, 4157, 4177, 4189, 4192, 4198, 4203, 4212, 4220, 4225, 4231, 4238, 4246, 4249, 4260, 4262, 4276, 4282, 4290, 4292, 4298, 4302, 4305, 4308, 4313, 4318, 4322, 4325, 4328, 4331, 4334, 4342, 4353, 4356, 4359, 4364, 4367, 4371, 4375, 4381, 4389, 4392, 4405, 4410, 4412, 4417, 4424, 4431, 4440, 4448, 4456, 4463, 4471, 4478, 4486, 4490, 4494, 4496, 4502, 4507, 4511, 4518, 4523, 4528, 4533, 4535, 4545, 4555, 4571, 4589, 4601, 4608, 4623, 4628, 4631, 4636, 4641, 4646, 4649, 4652, 4657, 4664, 4668, 4673, 4680, 4684, 4690, 4699, 4708, 4720, 4722, 4735, 4741, 4745, 4747, 4754, 4767, 4774, 4776, 4792, 4796, 4800, 4805, 4810, 4815, 4820, 4823, 4835, 4888, 4897, 4901, 4910, 4914, 4923, 4927, 4932, 4935, 4939, 4944, 4946, 4955, 4960, 4971, 4975, 4989, 4997, 5035, 5037, 5056, 5059, 5086, 5090, 5094, 5098, 5102, 5105, 5120, 5127, 5141, 5154, 5179, 5198, 5213, 5229, 5236, 5247, 5250, 5269, 5272, 5285, 5289, 5309, 5321, 5325, 5347, 5351, 5361, 5365, 5371, 5375, 5379, 5383, 5390, 5395, 5406, 5410, 5413, 5418, 5424, 5435, 5439, 5442, 5446, 5450, 5453, 5463, 5466, 5470, 5475, 5481, 5484, 5489, 5492, 5499, 5501, 5507, 5511, 5520, 5525, 5527, 5537, 5540, 5545, 5553, 5556, 5561, 5563, 5565, 5571, 5588, 5594, 5607, 5613, 5617, 5622, 5652, 5667, 5672, 5676, 5689, 5693, 5695, 5704, 5710, 5712, 5716, 5719, 5722, 5725, 5728, 5730, 5733, 5737, 5745, 5750, 5753, 5759, 5763, 5767, 5772, 5774, 5778, 5782, 5789, 5795, 5799, 5801, 5803, 5816, 5824, 5832, 5843, 5852, 5857, 5861, 5865, 5872, 5875, 5877, 5885, 5889, 5892, 5899, 5906, 5911, 5918, 5921, 5923, 5926, 5932, 5937, 5941, 5948, 5958, 5965, 5968, 5971, 5975, 5986, 5989, 5992, 5995, 5998, 6005, 6008, 6011, 6018, 6030, 6037, 6039, 6044, 6049, 6051, 6057, 6064, 6069, 6074, 6078, 6082, 6086, 6088, 6092, 6096, 6099, 6102, 6104, 6114, 6116, 6121, 6125, 6130, 6134, 6141, 6146, 6150, 6153, 6159, 6162, 6181, 6188, 6192, 6195, 6199, 6203, 6206, 6209, 6214, 6223, 6230, 6234, 6238, 6242, 6245, 6247, 6252, 6256, 6261, 6267, 6274, 6279, 6284, 6293, 6300, 6308, 6319, 6324, 6328, 6331, 6335, 6340, 6344, 6349, 6357, 6368, 6373, 6377, 6380, 6383, 6385, 6388, 6391, 6394, 6398, 6402, 6406, 6408, 6417, 6422, 6428, 6432, 6434, 6441, 6446, 6452, 6454, 6458, 6465, 6470, 6473, 6479, 6483, 6489, 6498, 6504, 6506, 6511, 6514, 6523, 6530, 6532, 6539, 6544, 6547, 6557, 6568, 6573, 6577, 6585, 6595, 6602, 6608, 6619, 6625, 6635, 6644, 6648, 6651, 6653, 6655, 6659, 6667, 6670, 6675, 6680, 6687, 6689, 6695, 6699, 6702, 6707, 6710, 6712, 6718, 6727, 6733, 6736, 6744, 6747, 6751, 6757, 6759, 6762, 6766, 6771, 6778, 6785, 6787, 6793, 6795, 6800, 6802, 6806, 6815, 6819, 6827, 6829, 6843, 6846, 6854, 6863, 6869, 6874, 6882, 6884, 6889, 6893, 6898, 6903, 6909, 6925, 6927, 6936, 6951, 6956, 6959, 6965, 6970, 6983, 6988, 6992, 6999, 7018, 7030, 7035, 7043, 7045, 7047, 7056, 7059, 7064, 7069, 7073, 7076, 7085, 7093, 7098, 7100, 7103, 7107, 7118, 7139, 7147, 7160, 7170, 7176, 7182, 7185, 7188, 7214, 7216, 7237, 7247, 7260, 7265, 7269, 7271, 7283, 7290, 7296, 7302, 7306, 7317, 7327, 7331, 7336, 7339, 7342, 7351, 7362, 7364, 7368, 7373, 7382, 7387, 7395, 7405, 7413, 7417, 7420, 7427, 7435, 7439, 7446, 7454, 7463, 7466, 7478, 7487, 7494, 7503, 7513, 7518, 7522, 7524, 7527, 7532, 7537, 7545, 7553, 7556, 7563, 7571, 7579, 7587, 7604, 7611, 7619, 7636, 7642, 7648, 7656, 7662, 7667, 7675, 7680, 7683, 7692, 7699, 7704, 7708, 7713, 7719, 7724, 7732, 7787, 7794, 7800, 7802, 7804, 7806, 7812, 7816, 7820, 7831, 7834, 7838, 7842, 7846, 7849, 7852, 7855, 7864, 7869, 7873, 7906, 7916, 7920, 7926, 7931, 7940, 7948, 7959, 7967, 7976, 7985, 7990, 7994, 8004, 8009, 8017, 8022, 8025, 8032, 8038, 8046, 8054, 8057, 8064, 8066, 8069, 8075, 8084, 8088, 8102, 8105, 8107, 8113, 8123, 8125, 8127, 8135, 8138, 8141, 8151, 8159, 8165, 8171, 8178, 8182, 8186, 8189, 8192, 8198, 8205, 8208, 8216, 8218, 8227, 8232, 8234, 8241, 8247, 8250, 8262, 8269, 8271, 8275, 8281, 8286, 8290, 8293, 8296, 8305, 8308, 8312, 8316, 8318, 8321, 8324, 8330, 8337, 8344, 8350, 8352, 8356, 8361, 8379, 8384, 8386, 8395, 8402, 8406, 8418, 8421, 8434, 8437, 8441, 8450, 8457, 8462, 8467, 8471, 8474, 8477, 8480, 8483, 8486, 8490, 8493] \ No newline at end of file +[4, 1, 590, 8497, 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, 1, 0, 5, 0, 934, 8, 0, 10, 0, 12, 0, 937, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 943, 8, 1, 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, 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, 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, 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, 1063, 8, 2, 3, 2, 1065, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1074, 8, 4, 1, 4, 5, 4, 1077, 8, 4, 10, 4, 12, 4, 1080, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1085, 8, 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, 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, 1120, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1130, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1136, 8, 7, 1, 7, 5, 7, 1139, 8, 7, 10, 7, 12, 7, 1142, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1148, 8, 8, 1, 8, 5, 8, 1151, 8, 8, 10, 8, 12, 8, 1154, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1160, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1171, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1177, 8, 11, 10, 11, 12, 11, 1180, 9, 11, 1, 11, 3, 11, 1183, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1195, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1201, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1207, 8, 12, 1, 12, 1, 12, 3, 12, 1211, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1216, 8, 12, 1, 12, 1, 12, 3, 12, 1220, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1233, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1243, 8, 12, 3, 12, 1245, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1251, 8, 13, 1, 13, 5, 13, 1254, 8, 13, 10, 13, 12, 13, 1257, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1269, 8, 15, 1, 15, 3, 15, 1272, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1277, 8, 15, 1, 15, 5, 15, 1280, 8, 15, 10, 15, 12, 15, 1283, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1293, 8, 17, 1, 18, 1, 18, 3, 18, 1297, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1309, 8, 19, 1, 20, 1, 20, 3, 20, 1313, 8, 20, 1, 20, 3, 20, 1316, 8, 20, 1, 20, 1, 20, 3, 20, 1320, 8, 20, 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, 1, 21, 1, 21, 1, 21, 1, 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, 1350, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1355, 8, 22, 10, 22, 12, 22, 1358, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1363, 8, 23, 10, 23, 12, 23, 1366, 9, 23, 1, 24, 1, 24, 3, 24, 1370, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1377, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1385, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1391, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1399, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1407, 8, 28, 1, 29, 1, 29, 3, 29, 1411, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1425, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1430, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1435, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1447, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1453, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1465, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1470, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1480, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1486, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1491, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1499, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1504, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1511, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1516, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1521, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1531, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1536, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1541, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1548, 8, 38, 1, 38, 1, 38, 3, 38, 1552, 8, 38, 1, 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, 1566, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1578, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1583, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1588, 8, 39, 10, 39, 12, 39, 1591, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1602, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1608, 8, 41, 10, 41, 12, 41, 1611, 9, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1618, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1634, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1643, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1650, 8, 46, 10, 46, 12, 46, 1653, 9, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1661, 8, 46, 1, 46, 1, 46, 3, 46, 1665, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1677, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1685, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1695, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1715, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1720, 8, 46, 1, 46, 3, 46, 1723, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1730, 8, 46, 1, 46, 3, 46, 1733, 8, 46, 1, 46, 1, 46, 3, 46, 1737, 8, 46, 1, 46, 1, 46, 3, 46, 1741, 8, 46, 1, 46, 3, 46, 1744, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1749, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1754, 8, 46, 1, 46, 1, 46, 3, 46, 1758, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1767, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1773, 8, 46, 1, 46, 1, 46, 3, 46, 1777, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1786, 8, 46, 1, 46, 3, 46, 1789, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1795, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1804, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 4, 46, 1814, 8, 46, 11, 46, 12, 46, 1815, 1, 46, 1, 46, 3, 46, 1820, 8, 46, 1, 46, 1, 46, 3, 46, 1824, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1829, 8, 46, 1, 46, 3, 46, 1832, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1838, 8, 46, 4, 46, 1840, 8, 46, 11, 46, 12, 46, 1841, 1, 46, 1, 46, 3, 46, 1846, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1852, 8, 46, 1, 46, 1, 46, 3, 46, 1856, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1861, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1866, 8, 46, 1, 46, 1, 46, 3, 46, 1870, 8, 46, 1, 46, 3, 46, 1873, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1880, 8, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1891, 8, 50, 10, 50, 12, 50, 1894, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1906, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1918, 8, 53, 10, 53, 12, 53, 1921, 9, 53, 1, 53, 1, 53, 1, 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, 1937, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1945, 8, 54, 10, 54, 12, 54, 1948, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1954, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1959, 8, 55, 1, 55, 1, 55, 3, 55, 1963, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1970, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1975, 8, 55, 1, 55, 3, 55, 1978, 8, 55, 3, 55, 1980, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1985, 8, 56, 1, 57, 1, 57, 3, 57, 1989, 8, 57, 1, 57, 1, 57, 3, 57, 1993, 8, 57, 1, 57, 1, 57, 3, 57, 1997, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2002, 8, 57, 1, 57, 3, 57, 2005, 8, 57, 1, 57, 1, 57, 3, 57, 2009, 8, 57, 1, 57, 3, 57, 2012, 8, 57, 1, 57, 1, 57, 3, 57, 2016, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2024, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2029, 8, 57, 1, 57, 3, 57, 2032, 8, 57, 1, 57, 1, 57, 3, 57, 2036, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2042, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2051, 8, 58, 1, 58, 1, 58, 3, 58, 2055, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2061, 8, 58, 10, 58, 12, 58, 2064, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2070, 8, 58, 10, 58, 12, 58, 2073, 9, 58, 1, 58, 1, 58, 3, 58, 2077, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2087, 8, 59, 10, 59, 12, 59, 2090, 9, 59, 1, 59, 1, 59, 3, 59, 2094, 8, 59, 1, 60, 1, 60, 3, 60, 2098, 8, 60, 1, 60, 1, 60, 3, 60, 2102, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2107, 8, 60, 1, 60, 1, 60, 3, 60, 2111, 8, 60, 1, 60, 3, 60, 2114, 8, 60, 1, 60, 3, 60, 2117, 8, 60, 1, 60, 3, 60, 2120, 8, 60, 1, 60, 3, 60, 2123, 8, 60, 1, 60, 3, 60, 2126, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2131, 8, 60, 1, 60, 3, 60, 2134, 8, 60, 1, 60, 3, 60, 2137, 8, 60, 1, 60, 3, 60, 2140, 8, 60, 1, 60, 3, 60, 2143, 8, 60, 1, 60, 3, 60, 2146, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2152, 8, 60, 1, 60, 1, 60, 3, 60, 2156, 8, 60, 1, 60, 3, 60, 2159, 8, 60, 1, 60, 3, 60, 2162, 8, 60, 1, 60, 3, 60, 2165, 8, 60, 1, 60, 3, 60, 2168, 8, 60, 3, 60, 2170, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2177, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2183, 8, 62, 10, 62, 12, 62, 2186, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 5, 63, 2193, 8, 63, 10, 63, 12, 63, 2196, 9, 63, 1, 64, 1, 64, 3, 64, 2200, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2208, 8, 64, 10, 64, 12, 64, 2211, 9, 64, 3, 64, 2213, 8, 64, 1, 65, 1, 65, 1, 65, 3, 65, 2218, 8, 65, 1, 65, 5, 65, 2221, 8, 65, 10, 65, 12, 65, 2224, 9, 65, 1, 65, 1, 65, 3, 65, 2228, 8, 65, 1, 65, 3, 65, 2231, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2236, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2245, 8, 66, 3, 66, 2247, 8, 66, 1, 66, 1, 66, 3, 66, 2251, 8, 66, 1, 66, 3, 66, 2254, 8, 66, 1, 66, 1, 66, 3, 66, 2258, 8, 66, 1, 66, 5, 66, 2261, 8, 66, 10, 66, 12, 66, 2264, 9, 66, 1, 67, 1, 67, 3, 67, 2268, 8, 67, 1, 67, 1, 67, 3, 67, 2272, 8, 67, 1, 67, 3, 67, 2275, 8, 67, 1, 67, 1, 67, 3, 67, 2279, 8, 67, 1, 68, 3, 68, 2282, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2287, 8, 68, 1, 68, 3, 68, 2290, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2295, 8, 68, 1, 68, 3, 68, 2298, 8, 68, 1, 68, 1, 68, 3, 68, 2302, 8, 68, 1, 68, 3, 68, 2305, 8, 68, 1, 68, 3, 68, 2308, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2313, 8, 68, 1, 68, 3, 68, 2316, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2324, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 2334, 8, 68, 11, 68, 12, 68, 2335, 1, 68, 1, 68, 3, 68, 2340, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2347, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2352, 8, 68, 1, 68, 3, 68, 2355, 8, 68, 1, 68, 3, 68, 2358, 8, 68, 1, 68, 3, 68, 2361, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2366, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2375, 8, 71, 10, 71, 12, 71, 2378, 9, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2383, 8, 71, 1, 71, 1, 71, 3, 71, 2387, 8, 71, 1, 71, 3, 71, 2390, 8, 71, 1, 71, 3, 71, 2393, 8, 71, 1, 71, 5, 71, 2396, 8, 71, 10, 71, 12, 71, 2399, 9, 71, 1, 71, 1, 71, 5, 71, 2403, 8, 71, 10, 71, 12, 71, 2406, 9, 71, 3, 71, 2408, 8, 71, 1, 71, 1, 71, 3, 71, 2412, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2418, 8, 71, 10, 71, 12, 71, 2421, 9, 71, 1, 71, 1, 71, 3, 71, 2425, 8, 71, 1, 71, 3, 71, 2428, 8, 71, 1, 71, 3, 71, 2431, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2438, 8, 71, 1, 71, 5, 71, 2441, 8, 71, 10, 71, 12, 71, 2444, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2452, 8, 71, 1, 71, 3, 71, 2455, 8, 71, 1, 71, 3, 71, 2458, 8, 71, 1, 71, 5, 71, 2461, 8, 71, 10, 71, 12, 71, 2464, 9, 71, 3, 71, 2466, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2476, 8, 73, 10, 73, 12, 73, 2479, 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2486, 8, 74, 10, 74, 12, 74, 2489, 9, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2505, 8, 77, 1, 78, 1, 78, 3, 78, 2509, 8, 78, 1, 78, 1, 78, 3, 78, 2513, 8, 78, 3, 78, 2515, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2532, 8, 81, 3, 81, 2534, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2548, 8, 83, 10, 83, 12, 83, 2551, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2561, 8, 84, 1, 84, 3, 84, 2564, 8, 84, 1, 84, 3, 84, 2567, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2576, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2585, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 2601, 8, 91, 1, 91, 3, 91, 2604, 8, 91, 1, 91, 3, 91, 2607, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 2613, 8, 91, 10, 91, 12, 91, 2616, 9, 91, 1, 91, 3, 91, 2619, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 2626, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2635, 8, 93, 1, 93, 1, 93, 3, 93, 2639, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2645, 8, 93, 1, 94, 1, 94, 3, 94, 2649, 8, 94, 1, 94, 3, 94, 2652, 8, 94, 1, 94, 3, 94, 2655, 8, 94, 1, 94, 3, 94, 2658, 8, 94, 1, 94, 3, 94, 2661, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2667, 8, 95, 1, 96, 1, 96, 3, 96, 2671, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2676, 8, 96, 1, 96, 1, 96, 3, 96, 2680, 8, 96, 1, 96, 3, 96, 2683, 8, 96, 1, 96, 3, 96, 2686, 8, 96, 1, 96, 3, 96, 2689, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2694, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2700, 8, 97, 1, 97, 1, 97, 3, 97, 2704, 8, 97, 1, 98, 1, 98, 3, 98, 2708, 8, 98, 1, 98, 1, 98, 3, 98, 2712, 8, 98, 1, 98, 1, 98, 4, 98, 2716, 8, 98, 11, 98, 12, 98, 2717, 3, 98, 2720, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2725, 8, 99, 1, 99, 1, 99, 4, 99, 2729, 8, 99, 11, 99, 12, 99, 2730, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2737, 8, 100, 1, 100, 1, 100, 3, 100, 2741, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2756, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2761, 8, 100, 1, 100, 3, 100, 2764, 8, 100, 3, 100, 2766, 8, 100, 1, 101, 3, 101, 2769, 8, 101, 1, 101, 1, 101, 3, 101, 2773, 8, 101, 1, 102, 1, 102, 3, 102, 2777, 8, 102, 1, 102, 3, 102, 2780, 8, 102, 1, 102, 3, 102, 2783, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2791, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2797, 8, 102, 3, 102, 2799, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2805, 8, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2810, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2815, 8, 104, 1, 104, 1, 104, 3, 104, 2819, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 2826, 8, 104, 10, 104, 12, 104, 2829, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 2837, 8, 105, 10, 105, 12, 105, 2840, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2878, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 4, 107, 2886, 8, 107, 11, 107, 12, 107, 2887, 3, 107, 2890, 8, 107, 1, 107, 3, 107, 2893, 8, 107, 1, 108, 1, 108, 3, 108, 2897, 8, 108, 1, 108, 1, 108, 3, 108, 2901, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 4, 109, 2909, 8, 109, 11, 109, 12, 109, 2910, 3, 109, 2913, 8, 109, 1, 109, 1, 109, 4, 109, 2917, 8, 109, 11, 109, 12, 109, 2918, 3, 109, 2921, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2928, 8, 110, 10, 110, 12, 110, 2931, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 2940, 8, 111, 10, 111, 12, 111, 2943, 9, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2956, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2961, 8, 114, 1, 114, 3, 114, 2964, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2971, 8, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2976, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2984, 8, 116, 3, 116, 2986, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2992, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2997, 8, 117, 1, 117, 1, 117, 3, 117, 3001, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3006, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3012, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3019, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3025, 8, 117, 3, 117, 3027, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3036, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3042, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3050, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3056, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3061, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3066, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3074, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3089, 8, 121, 3, 121, 3091, 8, 121, 1, 121, 1, 121, 3, 121, 3095, 8, 121, 1, 121, 1, 121, 3, 121, 3099, 8, 121, 1, 121, 3, 121, 3102, 8, 121, 1, 121, 3, 121, 3105, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3114, 8, 122, 1, 122, 3, 122, 3117, 8, 122, 1, 122, 3, 122, 3120, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3126, 8, 123, 1, 123, 1, 123, 5, 123, 3130, 8, 123, 10, 123, 12, 123, 3133, 9, 123, 1, 123, 3, 123, 3136, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3148, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3154, 8, 123, 1, 124, 3, 124, 3157, 8, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3162, 8, 124, 1, 124, 1, 124, 3, 124, 3166, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3173, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3183, 8, 124, 3, 124, 3185, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3209, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3221, 8, 128, 1, 128, 4, 128, 3224, 8, 128, 11, 128, 12, 128, 3225, 3, 128, 3228, 8, 128, 1, 128, 1, 128, 3, 128, 3232, 8, 128, 1, 128, 3, 128, 3235, 8, 128, 1, 128, 3, 128, 3238, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3248, 8, 128, 1, 128, 3, 128, 3251, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3261, 8, 128, 1, 128, 5, 128, 3264, 8, 128, 10, 128, 12, 128, 3267, 9, 128, 1, 128, 1, 128, 3, 128, 3271, 8, 128, 1, 128, 3, 128, 3274, 8, 128, 1, 128, 3, 128, 3277, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3285, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3291, 8, 129, 1, 130, 1, 130, 1, 130, 5, 130, 3296, 8, 130, 10, 130, 12, 130, 3299, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3306, 8, 131, 1, 131, 3, 131, 3309, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3320, 8, 133, 1, 134, 1, 134, 3, 134, 3324, 8, 134, 1, 134, 1, 134, 5, 134, 3328, 8, 134, 10, 134, 12, 134, 3331, 9, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3337, 8, 135, 1, 136, 3, 136, 3340, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3349, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3361, 8, 137, 10, 137, 12, 137, 3364, 9, 137, 3, 137, 3366, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3378, 8, 138, 10, 138, 12, 138, 3381, 9, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3391, 8, 139, 1, 139, 3, 139, 3394, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3404, 8, 140, 10, 140, 12, 140, 3407, 9, 140, 1, 141, 1, 141, 3, 141, 3411, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3422, 8, 141, 10, 141, 12, 141, 3425, 9, 141, 1, 141, 1, 141, 3, 141, 3429, 8, 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, 3442, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3449, 8, 141, 10, 141, 12, 141, 3452, 9, 141, 3, 141, 3454, 8, 141, 1, 141, 3, 141, 3457, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3464, 8, 141, 1, 141, 3, 141, 3467, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3479, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3485, 8, 141, 3, 141, 3487, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3493, 8, 142, 10, 142, 12, 142, 3496, 9, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3503, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3511, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3523, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3528, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3539, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3550, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3558, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3564, 8, 148, 10, 148, 12, 148, 3567, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3573, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3580, 8, 149, 3, 149, 3582, 8, 149, 1, 149, 3, 149, 3585, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3590, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3595, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3612, 8, 151, 10, 151, 12, 151, 3615, 9, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3621, 8, 151, 10, 151, 12, 151, 3624, 9, 151, 3, 151, 3626, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 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, 1, 154, 3, 154, 3653, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3662, 8, 154, 1, 154, 3, 154, 3665, 8, 154, 1, 154, 1, 154, 3, 154, 3669, 8, 154, 1, 154, 1, 154, 3, 154, 3673, 8, 154, 1, 154, 1, 154, 3, 154, 3677, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3682, 8, 154, 10, 154, 12, 154, 3685, 9, 154, 1, 154, 3, 154, 3688, 8, 154, 1, 154, 1, 154, 3, 154, 3692, 8, 154, 1, 154, 1, 154, 3, 154, 3696, 8, 154, 1, 154, 1, 154, 3, 154, 3700, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3705, 8, 154, 1, 154, 1, 154, 3, 154, 3709, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3714, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3720, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3725, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3730, 8, 154, 10, 154, 12, 154, 3733, 9, 154, 1, 154, 3, 154, 3736, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3742, 8, 154, 1, 154, 1, 154, 3, 154, 3746, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3751, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3759, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3765, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3770, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3777, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3782, 8, 154, 1, 154, 1, 154, 3, 154, 3786, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3791, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3797, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3804, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3809, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3816, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3821, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3828, 8, 154, 1, 154, 1, 154, 3, 154, 3832, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3838, 8, 154, 10, 154, 12, 154, 3841, 9, 154, 1, 154, 3, 154, 3844, 8, 154, 3, 154, 3846, 8, 154, 1, 155, 3, 155, 3849, 8, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3854, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3864, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3879, 8, 156, 1, 156, 3, 156, 3882, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3890, 8, 156, 1, 157, 1, 157, 1, 157, 5, 157, 3895, 8, 157, 10, 157, 12, 157, 3898, 9, 157, 1, 158, 1, 158, 3, 158, 3902, 8, 158, 1, 159, 1, 159, 4, 159, 3906, 8, 159, 11, 159, 12, 159, 3907, 1, 160, 1, 160, 3, 160, 3912, 8, 160, 1, 160, 1, 160, 1, 160, 5, 160, 3917, 8, 160, 10, 160, 12, 160, 3920, 9, 160, 1, 160, 1, 160, 3, 160, 3924, 8, 160, 1, 160, 3, 160, 3927, 8, 160, 1, 161, 3, 161, 3930, 8, 161, 1, 161, 1, 161, 3, 161, 3934, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3943, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3961, 8, 162, 1, 162, 3, 162, 3964, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3996, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4001, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4007, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4027, 8, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4032, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 3, 165, 4038, 8, 165, 1, 165, 3, 165, 4041, 8, 165, 1, 165, 1, 165, 3, 165, 4045, 8, 165, 1, 165, 1, 165, 3, 165, 4049, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4055, 8, 165, 1, 165, 3, 165, 4058, 8, 165, 1, 165, 1, 165, 3, 165, 4062, 8, 165, 1, 165, 1, 165, 3, 165, 4066, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4071, 8, 165, 1, 165, 3, 165, 4074, 8, 165, 1, 165, 3, 165, 4077, 8, 165, 1, 165, 3, 165, 4080, 8, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 4093, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4099, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4107, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 4112, 8, 169, 10, 169, 12, 169, 4115, 9, 169, 1, 169, 1, 169, 3, 169, 4119, 8, 169, 1, 169, 3, 169, 4122, 8, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4127, 8, 169, 10, 169, 12, 169, 4130, 9, 169, 3, 169, 4132, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4140, 8, 171, 1, 171, 3, 171, 4143, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 4148, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4155, 8, 172, 1, 172, 3, 172, 4158, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4176, 8, 172, 10, 172, 12, 172, 4179, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4190, 8, 172, 1, 173, 3, 173, 4193, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 4199, 8, 173, 1, 173, 5, 173, 4202, 8, 173, 10, 173, 12, 173, 4205, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 4211, 8, 174, 10, 174, 12, 174, 4214, 9, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4221, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4226, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4232, 8, 175, 1, 175, 1, 175, 1, 175, 5, 175, 4237, 8, 175, 10, 175, 12, 175, 4240, 9, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4247, 8, 175, 1, 175, 3, 175, 4250, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4261, 8, 176, 10, 176, 12, 176, 4264, 9, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4277, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4283, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4291, 8, 177, 3, 177, 4293, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4299, 8, 179, 1, 179, 1, 179, 3, 179, 4303, 8, 179, 1, 179, 3, 179, 4306, 8, 179, 1, 179, 3, 179, 4309, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4314, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4319, 8, 179, 1, 179, 1, 179, 3, 179, 4323, 8, 179, 1, 179, 3, 179, 4326, 8, 179, 1, 179, 3, 179, 4329, 8, 179, 1, 179, 3, 179, 4332, 8, 179, 1, 179, 3, 179, 4335, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 5, 180, 4341, 8, 180, 10, 180, 12, 180, 4344, 9, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4354, 8, 181, 1, 181, 3, 181, 4357, 8, 181, 1, 181, 3, 181, 4360, 8, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4365, 8, 181, 1, 181, 3, 181, 4368, 8, 181, 1, 181, 1, 181, 3, 181, 4372, 8, 181, 1, 182, 1, 182, 3, 182, 4376, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4382, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4388, 8, 182, 10, 182, 12, 182, 4391, 9, 182, 3, 182, 4393, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4404, 8, 182, 10, 182, 12, 182, 4407, 9, 182, 1, 182, 1, 182, 3, 182, 4411, 8, 182, 3, 182, 4413, 8, 182, 1, 182, 4, 182, 4416, 8, 182, 11, 182, 12, 182, 4417, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4425, 8, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 3, 184, 4432, 8, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4439, 8, 185, 10, 185, 12, 185, 4442, 9, 185, 1, 186, 1, 186, 1, 186, 5, 186, 4447, 8, 186, 10, 186, 12, 186, 4450, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4457, 8, 187, 1, 188, 1, 188, 1, 188, 5, 188, 4462, 8, 188, 10, 188, 12, 188, 4465, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4472, 8, 189, 1, 190, 1, 190, 1, 190, 5, 190, 4477, 8, 190, 10, 190, 12, 190, 4480, 9, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4487, 8, 191, 1, 192, 1, 192, 3, 192, 4491, 8, 192, 1, 192, 1, 192, 3, 192, 4495, 8, 192, 3, 192, 4497, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 3, 193, 4503, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4508, 8, 193, 1, 194, 1, 194, 3, 194, 4512, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4519, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4524, 8, 195, 1, 196, 1, 196, 1, 196, 3, 196, 4529, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4534, 8, 196, 3, 196, 4536, 8, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 3, 198, 4546, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4556, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4572, 8, 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, 5, 199, 4588, 8, 199, 10, 199, 12, 199, 4591, 9, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4602, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4609, 8, 199, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4624, 8, 202, 1, 202, 4, 202, 4627, 8, 202, 11, 202, 12, 202, 4628, 1, 202, 3, 202, 4632, 8, 202, 1, 203, 1, 203, 1, 203, 3, 203, 4637, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4642, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4647, 8, 203, 1, 203, 3, 203, 4650, 8, 203, 1, 203, 3, 203, 4653, 8, 203, 1, 204, 1, 204, 1, 204, 3, 204, 4658, 8, 204, 1, 204, 1, 204, 1, 204, 5, 204, 4663, 8, 204, 10, 204, 12, 204, 4666, 9, 204, 1, 204, 3, 204, 4669, 8, 204, 1, 205, 1, 205, 1, 205, 3, 205, 4674, 8, 205, 1, 205, 1, 205, 1, 205, 5, 205, 4679, 8, 205, 10, 205, 12, 205, 4682, 9, 205, 1, 205, 3, 205, 4685, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4691, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4700, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 5, 207, 4707, 8, 207, 10, 207, 12, 207, 4710, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 4, 209, 4721, 8, 209, 11, 209, 12, 209, 4722, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4736, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4742, 8, 210, 1, 210, 1, 210, 3, 210, 4746, 8, 210, 3, 210, 4748, 8, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 4755, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4768, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4775, 8, 212, 3, 212, 4777, 8, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 4791, 8, 214, 10, 214, 12, 214, 4794, 9, 214, 1, 214, 3, 214, 4797, 8, 214, 1, 214, 1, 214, 3, 214, 4801, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4806, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4811, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4816, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4821, 8, 214, 1, 214, 3, 214, 4824, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4836, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4889, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4898, 8, 216, 1, 216, 1, 216, 3, 216, 4902, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4911, 8, 216, 1, 216, 1, 216, 3, 216, 4915, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4924, 8, 216, 1, 216, 1, 216, 3, 216, 4928, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4933, 8, 216, 1, 216, 3, 216, 4936, 8, 216, 1, 216, 1, 216, 3, 216, 4940, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4945, 8, 216, 3, 216, 4947, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4956, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4961, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4972, 8, 216, 1, 216, 1, 216, 3, 216, 4976, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4990, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4998, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 5036, 8, 216, 3, 216, 5038, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 5057, 8, 217, 1, 217, 3, 217, 5060, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5087, 8, 218, 1, 218, 1, 218, 3, 218, 5091, 8, 218, 1, 218, 1, 218, 3, 218, 5095, 8, 218, 1, 218, 1, 218, 3, 218, 5099, 8, 218, 1, 218, 1, 218, 3, 218, 5103, 8, 218, 1, 218, 3, 218, 5106, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5121, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5128, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 5, 220, 5140, 8, 220, 10, 220, 12, 220, 5143, 9, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5155, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5180, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5199, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5214, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5230, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5237, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5248, 8, 224, 1, 224, 3, 224, 5251, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 5268, 8, 225, 10, 225, 12, 225, 5271, 9, 225, 3, 225, 5273, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 5, 226, 5284, 8, 226, 10, 226, 12, 226, 5287, 9, 226, 1, 226, 3, 226, 5290, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5310, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5320, 8, 227, 10, 227, 12, 227, 5323, 9, 227, 1, 227, 3, 227, 5326, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5348, 8, 227, 1, 228, 1, 228, 3, 228, 5352, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5362, 8, 228, 1, 228, 1, 228, 3, 228, 5366, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5372, 8, 228, 1, 228, 1, 228, 3, 228, 5376, 8, 228, 5, 228, 5378, 8, 228, 10, 228, 12, 228, 5381, 9, 228, 1, 228, 3, 228, 5384, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 5391, 8, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5396, 8, 230, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5407, 8, 233, 1, 234, 1, 234, 3, 234, 5411, 8, 234, 1, 234, 3, 234, 5414, 8, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5419, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5425, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5436, 8, 234, 1, 234, 1, 234, 3, 234, 5440, 8, 234, 1, 234, 3, 234, 5443, 8, 234, 1, 234, 1, 234, 3, 234, 5447, 8, 234, 1, 234, 1, 234, 3, 234, 5451, 8, 234, 1, 234, 3, 234, 5454, 8, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5464, 8, 236, 1, 236, 3, 236, 5467, 8, 236, 1, 237, 1, 237, 3, 237, 5471, 8, 237, 1, 237, 5, 237, 5474, 8, 237, 10, 237, 12, 237, 5477, 9, 237, 1, 238, 1, 238, 1, 238, 3, 238, 5482, 8, 238, 1, 238, 3, 238, 5485, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5490, 8, 238, 1, 238, 3, 238, 5493, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5500, 8, 238, 3, 238, 5502, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5508, 8, 238, 1, 238, 1, 238, 3, 238, 5512, 8, 238, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5521, 8, 240, 1, 240, 4, 240, 5524, 8, 240, 11, 240, 12, 240, 5525, 3, 240, 5528, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5538, 8, 241, 1, 241, 3, 241, 5541, 8, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5546, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5554, 8, 242, 1, 242, 3, 242, 5557, 8, 242, 1, 242, 4, 242, 5560, 8, 242, 11, 242, 12, 242, 5561, 3, 242, 5564, 8, 242, 3, 242, 5566, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5572, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5589, 8, 246, 1, 246, 1, 246, 5, 246, 5593, 8, 246, 10, 246, 12, 246, 5596, 9, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5608, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5614, 8, 247, 1, 247, 1, 247, 3, 247, 5618, 8, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5623, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5653, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5668, 8, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5673, 8, 249, 1, 250, 1, 250, 3, 250, 5677, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 5690, 8, 251, 1, 251, 1, 251, 3, 251, 5694, 8, 251, 3, 251, 5696, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 5703, 8, 251, 10, 251, 12, 251, 5706, 9, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5711, 8, 251, 3, 251, 5713, 8, 251, 1, 252, 1, 252, 3, 252, 5717, 8, 252, 1, 252, 3, 252, 5720, 8, 252, 1, 252, 3, 252, 5723, 8, 252, 1, 252, 3, 252, 5726, 8, 252, 1, 252, 3, 252, 5729, 8, 252, 3, 252, 5731, 8, 252, 1, 252, 3, 252, 5734, 8, 252, 1, 253, 1, 253, 3, 253, 5738, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 5744, 8, 253, 10, 253, 12, 253, 5747, 9, 253, 1, 253, 1, 253, 3, 253, 5751, 8, 253, 1, 253, 3, 253, 5754, 8, 253, 1, 254, 1, 254, 1, 255, 1, 255, 3, 255, 5760, 8, 255, 1, 255, 1, 255, 3, 255, 5764, 8, 255, 1, 256, 1, 256, 3, 256, 5768, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5773, 8, 256, 3, 256, 5775, 8, 256, 1, 257, 1, 257, 3, 257, 5779, 8, 257, 1, 258, 1, 258, 3, 258, 5783, 8, 258, 1, 259, 1, 259, 1, 259, 5, 259, 5788, 8, 259, 10, 259, 12, 259, 5791, 9, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5796, 8, 260, 1, 260, 1, 260, 3, 260, 5800, 8, 260, 3, 260, 5802, 8, 260, 3, 260, 5804, 8, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5817, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 5823, 8, 262, 10, 262, 12, 262, 5826, 9, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5833, 8, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 5, 264, 5842, 8, 264, 10, 264, 12, 264, 5845, 9, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5853, 8, 265, 1, 266, 1, 266, 1, 266, 3, 266, 5858, 8, 266, 1, 266, 1, 266, 3, 266, 5862, 8, 266, 1, 266, 1, 266, 3, 266, 5866, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5873, 8, 266, 1, 266, 3, 266, 5876, 8, 266, 3, 266, 5878, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 5886, 8, 268, 1, 268, 1, 268, 3, 268, 5890, 8, 268, 1, 269, 3, 269, 5893, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5900, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5907, 8, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5912, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5919, 8, 269, 1, 269, 3, 269, 5922, 8, 269, 3, 269, 5924, 8, 269, 1, 269, 3, 269, 5927, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5933, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5938, 8, 270, 1, 270, 1, 270, 3, 270, 5942, 8, 270, 1, 271, 1, 271, 1, 271, 5, 271, 5947, 8, 271, 10, 271, 12, 271, 5950, 9, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 274, 3, 274, 5959, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5966, 8, 274, 1, 274, 3, 274, 5969, 8, 274, 1, 274, 3, 274, 5972, 8, 274, 1, 275, 1, 275, 3, 275, 5976, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 5987, 8, 275, 1, 275, 3, 275, 5990, 8, 275, 1, 275, 3, 275, 5993, 8, 275, 1, 275, 3, 275, 5996, 8, 275, 1, 276, 3, 276, 5999, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6006, 8, 276, 1, 276, 3, 276, 6009, 8, 276, 1, 276, 3, 276, 6012, 8, 276, 1, 277, 1, 277, 1, 277, 5, 277, 6017, 8, 277, 10, 277, 12, 277, 6020, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6031, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6038, 8, 278, 3, 278, 6040, 8, 278, 1, 279, 1, 279, 1, 279, 3, 279, 6045, 8, 279, 1, 279, 1, 279, 1, 279, 5, 279, 6050, 8, 279, 10, 279, 12, 279, 6053, 9, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6058, 8, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 3, 280, 6065, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 6070, 8, 281, 1, 281, 1, 281, 1, 282, 3, 282, 6075, 8, 282, 1, 282, 1, 282, 3, 282, 6079, 8, 282, 1, 282, 1, 282, 3, 282, 6083, 8, 282, 1, 282, 1, 282, 3, 282, 6087, 8, 282, 3, 282, 6089, 8, 282, 1, 283, 1, 283, 3, 283, 6093, 8, 283, 1, 284, 1, 284, 3, 284, 6097, 8, 284, 1, 284, 3, 284, 6100, 8, 284, 1, 284, 3, 284, 6103, 8, 284, 3, 284, 6105, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6115, 8, 284, 3, 284, 6117, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6122, 8, 284, 5, 284, 6124, 8, 284, 10, 284, 12, 284, 6127, 9, 284, 1, 285, 1, 285, 3, 285, 6131, 8, 285, 1, 286, 1, 286, 3, 286, 6135, 8, 286, 1, 286, 1, 286, 1, 286, 5, 286, 6140, 8, 286, 10, 286, 12, 286, 6143, 9, 286, 1, 287, 1, 287, 3, 287, 6147, 8, 287, 1, 287, 1, 287, 3, 287, 6151, 8, 287, 1, 287, 3, 287, 6154, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6160, 8, 287, 1, 287, 3, 287, 6163, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6182, 8, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 3, 290, 6189, 8, 290, 1, 290, 1, 290, 3, 290, 6193, 8, 290, 1, 291, 3, 291, 6196, 8, 291, 1, 291, 1, 291, 3, 291, 6200, 8, 291, 1, 291, 1, 291, 3, 291, 6204, 8, 291, 1, 291, 3, 291, 6207, 8, 291, 1, 291, 3, 291, 6210, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6215, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 5, 293, 6222, 8, 293, 10, 293, 12, 293, 6225, 9, 293, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6231, 8, 294, 1, 294, 1, 294, 3, 294, 6235, 8, 294, 1, 295, 1, 295, 3, 295, 6239, 8, 295, 1, 295, 1, 295, 3, 295, 6243, 8, 295, 1, 295, 3, 295, 6246, 8, 295, 3, 295, 6248, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6253, 8, 296, 1, 296, 1, 296, 3, 296, 6257, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6262, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6268, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6275, 8, 298, 1, 299, 1, 299, 1, 299, 3, 299, 6280, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6285, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 5, 301, 6292, 8, 301, 10, 301, 12, 301, 6295, 9, 301, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6301, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 5, 302, 6307, 8, 302, 10, 302, 12, 302, 6310, 9, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6320, 8, 302, 1, 303, 1, 303, 1, 303, 3, 303, 6325, 8, 303, 1, 303, 1, 303, 3, 303, 6329, 8, 303, 1, 303, 3, 303, 6332, 8, 303, 1, 303, 1, 303, 3, 303, 6336, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6341, 8, 303, 4, 303, 6343, 8, 303, 11, 303, 12, 303, 6344, 1, 303, 1, 303, 1, 303, 3, 303, 6350, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6356, 8, 304, 10, 304, 12, 304, 6359, 9, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 5, 306, 6367, 8, 306, 10, 306, 12, 306, 6370, 9, 306, 1, 307, 1, 307, 3, 307, 6374, 8, 307, 1, 307, 1, 307, 3, 307, 6378, 8, 307, 1, 307, 3, 307, 6381, 8, 307, 1, 307, 3, 307, 6384, 8, 307, 3, 307, 6386, 8, 307, 1, 307, 3, 307, 6389, 8, 307, 1, 307, 3, 307, 6392, 8, 307, 1, 307, 3, 307, 6395, 8, 307, 1, 307, 1, 307, 3, 307, 6399, 8, 307, 1, 307, 1, 307, 3, 307, 6403, 8, 307, 1, 307, 1, 307, 3, 307, 6407, 8, 307, 3, 307, 6409, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6418, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6423, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6429, 8, 307, 1, 307, 1, 307, 3, 307, 6433, 8, 307, 3, 307, 6435, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6442, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6447, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 5, 307, 6453, 8, 307, 10, 307, 12, 307, 6456, 9, 307, 1, 308, 3, 308, 6459, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6466, 8, 308, 1, 309, 1, 309, 1, 309, 3, 309, 6471, 8, 309, 1, 309, 3, 309, 6474, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6480, 8, 309, 1, 310, 1, 310, 3, 310, 6484, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6490, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6499, 8, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6505, 8, 312, 3, 312, 6507, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 6512, 8, 313, 1, 313, 3, 313, 6515, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6524, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6531, 8, 313, 3, 313, 6533, 8, 313, 1, 314, 1, 314, 1, 314, 5, 314, 6538, 8, 314, 10, 314, 12, 314, 6541, 9, 314, 1, 315, 1, 315, 3, 315, 6545, 8, 315, 1, 315, 3, 315, 6548, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6558, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 5, 317, 6567, 8, 317, 10, 317, 12, 317, 6570, 9, 317, 1, 317, 1, 317, 3, 317, 6574, 8, 317, 1, 317, 1, 317, 3, 317, 6578, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6586, 8, 318, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6596, 8, 320, 1, 321, 1, 321, 1, 321, 5, 321, 6601, 8, 321, 10, 321, 12, 321, 6604, 9, 321, 1, 322, 1, 322, 1, 322, 3, 322, 6609, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 6618, 8, 323, 10, 323, 12, 323, 6621, 9, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6626, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 6634, 8, 323, 10, 323, 12, 323, 6637, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6645, 8, 324, 1, 324, 1, 324, 3, 324, 6649, 8, 324, 1, 324, 4, 324, 6652, 8, 324, 11, 324, 12, 324, 6653, 3, 324, 6656, 8, 324, 1, 324, 1, 324, 3, 324, 6660, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6668, 8, 325, 1, 326, 3, 326, 6671, 8, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6676, 8, 326, 1, 326, 5, 326, 6679, 8, 326, 10, 326, 12, 326, 6682, 9, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6688, 8, 326, 3, 326, 6690, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6696, 8, 326, 1, 327, 1, 327, 3, 327, 6700, 8, 327, 1, 327, 3, 327, 6703, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6708, 8, 327, 1, 327, 3, 327, 6711, 8, 327, 3, 327, 6713, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 3, 328, 6719, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6728, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6734, 8, 329, 1, 329, 3, 329, 6737, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 3, 331, 6745, 8, 331, 1, 331, 3, 331, 6748, 8, 331, 1, 332, 1, 332, 3, 332, 6752, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6758, 8, 332, 3, 332, 6760, 8, 332, 1, 332, 3, 332, 6763, 8, 332, 1, 333, 1, 333, 3, 333, 6767, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 6772, 8, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6779, 8, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6786, 8, 334, 3, 334, 6788, 8, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6794, 8, 334, 3, 334, 6796, 8, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6801, 8, 334, 3, 334, 6803, 8, 334, 1, 335, 1, 335, 3, 335, 6807, 8, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 3, 338, 6816, 8, 338, 1, 338, 1, 338, 3, 338, 6820, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6828, 8, 338, 10, 338, 12, 338, 6831, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6844, 8, 339, 1, 339, 3, 339, 6847, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6855, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 5, 339, 6862, 8, 339, 10, 339, 12, 339, 6865, 9, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6870, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6875, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6883, 8, 339, 3, 339, 6885, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6890, 8, 339, 1, 339, 1, 339, 3, 339, 6894, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6899, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6904, 8, 339, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6910, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 5, 340, 6926, 8, 340, 10, 340, 12, 340, 6929, 9, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6937, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6952, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6957, 8, 341, 1, 341, 3, 341, 6960, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6966, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6971, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6984, 8, 341, 1, 341, 4, 341, 6987, 8, 341, 11, 341, 12, 341, 6988, 1, 341, 1, 341, 3, 341, 6993, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7000, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7019, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7031, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7036, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7044, 8, 341, 5, 341, 7046, 8, 341, 10, 341, 12, 341, 7049, 9, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7057, 8, 342, 1, 342, 3, 342, 7060, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7065, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7070, 8, 342, 1, 342, 1, 342, 3, 342, 7074, 8, 342, 1, 342, 3, 342, 7077, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7086, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7094, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7099, 8, 343, 3, 343, 7101, 8, 343, 1, 343, 3, 343, 7104, 8, 343, 1, 344, 1, 344, 3, 344, 7108, 8, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7119, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7140, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7148, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7161, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7171, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7177, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7183, 8, 345, 1, 345, 3, 345, 7186, 8, 345, 1, 345, 3, 345, 7189, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7215, 8, 345, 3, 345, 7217, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7238, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7248, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7261, 8, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7266, 8, 345, 1, 345, 1, 345, 3, 345, 7270, 8, 345, 3, 345, 7272, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7284, 8, 345, 1, 346, 1, 346, 1, 346, 5, 346, 7289, 8, 346, 10, 346, 12, 346, 7292, 9, 346, 1, 347, 1, 347, 1, 347, 3, 347, 7297, 8, 347, 1, 348, 1, 348, 1, 349, 1, 349, 3, 349, 7303, 8, 349, 1, 349, 1, 349, 3, 349, 7307, 8, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 7316, 8, 351, 10, 351, 12, 351, 7319, 9, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 3, 353, 7328, 8, 353, 1, 354, 1, 354, 3, 354, 7332, 8, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7337, 8, 354, 1, 354, 3, 354, 7340, 8, 354, 1, 354, 3, 354, 7343, 8, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7352, 8, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7363, 8, 355, 3, 355, 7365, 8, 355, 1, 356, 1, 356, 3, 356, 7369, 8, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7374, 8, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7383, 8, 357, 1, 358, 1, 358, 1, 358, 3, 358, 7388, 8, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 360, 1, 360, 3, 360, 7396, 8, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7406, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7414, 8, 363, 1, 364, 1, 364, 3, 364, 7418, 8, 364, 1, 364, 3, 364, 7421, 8, 364, 1, 365, 1, 365, 1, 365, 5, 365, 7426, 8, 365, 10, 365, 12, 365, 7429, 9, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7436, 8, 366, 1, 367, 1, 367, 3, 367, 7440, 8, 367, 1, 368, 1, 368, 1, 368, 5, 368, 7445, 8, 368, 10, 368, 12, 368, 7448, 9, 368, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7454, 8, 369, 3, 369, 7456, 8, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 5, 370, 7463, 8, 370, 10, 370, 12, 370, 7466, 9, 370, 3, 370, 7468, 8, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7480, 8, 371, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7489, 8, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7496, 8, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7505, 8, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 3, 375, 7515, 8, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7520, 8, 375, 1, 375, 1, 375, 3, 375, 7524, 8, 375, 3, 375, 7526, 8, 375, 1, 375, 3, 375, 7529, 8, 375, 1, 376, 4, 376, 7532, 8, 376, 11, 376, 12, 376, 7533, 1, 377, 5, 377, 7537, 8, 377, 10, 377, 12, 377, 7540, 9, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7545, 8, 378, 10, 378, 12, 378, 7548, 9, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 3, 379, 7555, 8, 379, 1, 379, 3, 379, 7558, 8, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7563, 8, 380, 10, 380, 12, 380, 7566, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7571, 8, 381, 10, 381, 12, 381, 7574, 9, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7579, 8, 382, 10, 382, 12, 382, 7582, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7587, 8, 383, 10, 383, 12, 383, 7590, 9, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 3, 390, 7606, 8, 390, 1, 391, 1, 391, 1, 391, 5, 391, 7611, 8, 391, 10, 391, 12, 391, 7614, 9, 391, 1, 392, 1, 392, 1, 392, 5, 392, 7619, 8, 392, 10, 392, 12, 392, 7622, 9, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7638, 8, 398, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7644, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7650, 8, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7658, 8, 402, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7664, 8, 403, 1, 404, 1, 404, 1, 404, 3, 404, 7669, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 5, 405, 7675, 8, 405, 10, 405, 12, 405, 7678, 9, 405, 1, 405, 1, 405, 3, 405, 7682, 8, 405, 1, 406, 3, 406, 7685, 8, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7694, 8, 407, 1, 408, 1, 408, 1, 408, 5, 408, 7699, 8, 408, 10, 408, 12, 408, 7702, 9, 408, 1, 409, 1, 409, 3, 409, 7706, 8, 409, 1, 410, 1, 410, 3, 410, 7710, 8, 410, 1, 411, 1, 411, 1, 411, 3, 411, 7715, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7721, 8, 412, 1, 413, 1, 413, 1, 413, 3, 413, 7726, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7734, 8, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7789, 8, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 3, 418, 7796, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 4, 418, 7802, 8, 418, 11, 418, 12, 418, 7803, 3, 418, 7806, 8, 418, 3, 418, 7808, 8, 418, 1, 418, 1, 418, 5, 418, 7812, 8, 418, 10, 418, 12, 418, 7815, 9, 418, 1, 418, 3, 418, 7818, 8, 418, 1, 418, 1, 418, 3, 418, 7822, 8, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7833, 8, 420, 1, 420, 3, 420, 7836, 8, 420, 1, 420, 1, 420, 3, 420, 7840, 8, 420, 1, 420, 1, 420, 3, 420, 7844, 8, 420, 1, 420, 1, 420, 3, 420, 7848, 8, 420, 1, 420, 3, 420, 7851, 8, 420, 1, 420, 3, 420, 7854, 8, 420, 1, 420, 3, 420, 7857, 8, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 5, 420, 7864, 8, 420, 10, 420, 12, 420, 7867, 9, 420, 1, 420, 1, 420, 3, 420, 7871, 8, 420, 1, 420, 1, 420, 3, 420, 7875, 8, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 7908, 8, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7918, 8, 425, 1, 425, 1, 425, 3, 425, 7922, 8, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7928, 8, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7933, 8, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 3, 427, 7942, 8, 427, 1, 427, 1, 427, 1, 427, 1, 427, 5, 427, 7948, 8, 427, 10, 427, 12, 427, 7951, 9, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 3, 429, 7961, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7967, 8, 429, 10, 429, 12, 429, 7970, 9, 429, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7976, 8, 430, 10, 430, 12, 430, 7979, 9, 430, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7985, 8, 430, 10, 430, 12, 430, 7988, 9, 430, 5, 430, 7990, 8, 430, 10, 430, 12, 430, 7993, 9, 430, 1, 430, 3, 430, 7996, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 5, 431, 8004, 8, 431, 10, 431, 12, 431, 8007, 9, 431, 1, 432, 1, 432, 3, 432, 8011, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 8017, 8, 432, 10, 432, 12, 432, 8020, 9, 432, 4, 432, 8022, 8, 432, 11, 432, 12, 432, 8023, 1, 432, 3, 432, 8027, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 3, 433, 8034, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8040, 8, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8048, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8056, 8, 434, 1, 434, 3, 434, 8059, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8066, 8, 434, 3, 434, 8068, 8, 434, 1, 435, 3, 435, 8071, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 8077, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 3, 436, 8086, 8, 436, 1, 436, 1, 436, 3, 436, 8090, 8, 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, 3, 437, 8104, 8, 437, 1, 437, 3, 437, 8107, 8, 437, 3, 437, 8109, 8, 437, 1, 437, 1, 437, 1, 438, 1, 438, 3, 438, 8115, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 4, 438, 8123, 8, 438, 11, 438, 12, 438, 8124, 3, 438, 8127, 8, 438, 3, 438, 8129, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 5, 438, 8135, 8, 438, 10, 438, 12, 438, 8138, 9, 438, 3, 438, 8140, 8, 438, 1, 438, 3, 438, 8143, 8, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8153, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 5, 441, 8159, 8, 441, 10, 441, 12, 441, 8162, 9, 441, 1, 441, 1, 441, 1, 441, 3, 441, 8167, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 3, 442, 8173, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 3, 443, 8180, 8, 443, 1, 443, 1, 443, 3, 443, 8184, 8, 443, 1, 443, 1, 443, 3, 443, 8188, 8, 443, 1, 443, 3, 443, 8191, 8, 443, 1, 443, 3, 443, 8194, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 3, 444, 8200, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8207, 8, 445, 1, 445, 3, 445, 8210, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8218, 8, 445, 3, 445, 8220, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 5, 445, 8227, 8, 445, 10, 445, 12, 445, 8230, 9, 445, 1, 445, 1, 445, 3, 445, 8234, 8, 445, 3, 445, 8236, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 3, 446, 8243, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8249, 8, 447, 1, 447, 3, 447, 8252, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8264, 8, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8271, 8, 448, 3, 448, 8273, 8, 448, 1, 449, 1, 449, 3, 449, 8277, 8, 449, 1, 449, 1, 449, 1, 449, 1, 450, 3, 450, 8283, 8, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8288, 8, 450, 1, 450, 1, 450, 3, 450, 8292, 8, 450, 1, 450, 3, 450, 8295, 8, 450, 1, 450, 3, 450, 8298, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 4, 450, 8305, 8, 450, 11, 450, 12, 450, 8306, 1, 451, 3, 451, 8310, 8, 451, 1, 451, 1, 451, 3, 451, 8314, 8, 451, 1, 451, 1, 451, 3, 451, 8318, 8, 451, 3, 451, 8320, 8, 451, 1, 451, 3, 451, 8323, 8, 451, 1, 451, 3, 451, 8326, 8, 451, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8332, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8339, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8346, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8352, 8, 452, 3, 452, 8354, 8, 452, 1, 453, 1, 453, 3, 453, 8358, 8, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8363, 8, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 5, 454, 8379, 8, 454, 10, 454, 12, 454, 8382, 9, 454, 1, 454, 1, 454, 4, 454, 8386, 8, 454, 11, 454, 12, 454, 8387, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 5, 455, 8395, 8, 455, 10, 455, 12, 455, 8398, 9, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8404, 8, 455, 1, 456, 1, 456, 3, 456, 8408, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 3, 459, 8420, 8, 459, 1, 459, 3, 459, 8423, 8, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 8436, 8, 460, 1, 460, 3, 460, 8439, 8, 460, 1, 461, 1, 461, 3, 461, 8443, 8, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 5, 462, 8450, 8, 462, 10, 462, 12, 462, 8453, 9, 462, 1, 462, 1, 462, 5, 462, 8457, 8, 462, 10, 462, 12, 462, 8460, 9, 462, 4, 462, 8462, 8, 462, 11, 462, 12, 462, 8463, 1, 463, 1, 463, 1, 463, 3, 463, 8469, 8, 463, 1, 464, 1, 464, 3, 464, 8473, 8, 464, 1, 465, 3, 465, 8476, 8, 465, 1, 465, 3, 465, 8479, 8, 465, 1, 465, 3, 465, 8482, 8, 465, 1, 465, 3, 465, 8485, 8, 465, 1, 465, 3, 465, 8488, 8, 465, 1, 465, 1, 465, 3, 465, 8492, 8, 465, 1, 465, 3, 465, 8495, 8, 465, 1, 465, 0, 3, 676, 680, 682, 466, 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, 0, 118, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 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, 158, 158, 277, 277, 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, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 2, 0, 213, 213, 254, 254, 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, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 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, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 571, 571, 573, 573, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 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, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 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, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9932, 0, 935, 1, 0, 0, 0, 2, 940, 1, 0, 0, 0, 4, 1064, 1, 0, 0, 0, 6, 1066, 1, 0, 0, 0, 8, 1069, 1, 0, 0, 0, 10, 1119, 1, 0, 0, 0, 12, 1129, 1, 0, 0, 0, 14, 1131, 1, 0, 0, 0, 16, 1143, 1, 0, 0, 0, 18, 1155, 1, 0, 0, 0, 20, 1166, 1, 0, 0, 0, 22, 1200, 1, 0, 0, 0, 24, 1244, 1, 0, 0, 0, 26, 1246, 1, 0, 0, 0, 28, 1258, 1, 0, 0, 0, 30, 1265, 1, 0, 0, 0, 32, 1284, 1, 0, 0, 0, 34, 1292, 1, 0, 0, 0, 36, 1294, 1, 0, 0, 0, 38, 1308, 1, 0, 0, 0, 40, 1312, 1, 0, 0, 0, 42, 1349, 1, 0, 0, 0, 44, 1351, 1, 0, 0, 0, 46, 1359, 1, 0, 0, 0, 48, 1369, 1, 0, 0, 0, 50, 1376, 1, 0, 0, 0, 52, 1384, 1, 0, 0, 0, 54, 1390, 1, 0, 0, 0, 56, 1406, 1, 0, 0, 0, 58, 1410, 1, 0, 0, 0, 60, 1412, 1, 0, 0, 0, 62, 1424, 1, 0, 0, 0, 64, 1429, 1, 0, 0, 0, 66, 1434, 1, 0, 0, 0, 68, 1436, 1, 0, 0, 0, 70, 1448, 1, 0, 0, 0, 72, 1456, 1, 0, 0, 0, 74, 1458, 1, 0, 0, 0, 76, 1582, 1, 0, 0, 0, 78, 1584, 1, 0, 0, 0, 80, 1601, 1, 0, 0, 0, 82, 1603, 1, 0, 0, 0, 84, 1617, 1, 0, 0, 0, 86, 1619, 1, 0, 0, 0, 88, 1633, 1, 0, 0, 0, 90, 1635, 1, 0, 0, 0, 92, 1872, 1, 0, 0, 0, 94, 1879, 1, 0, 0, 0, 96, 1881, 1, 0, 0, 0, 98, 1883, 1, 0, 0, 0, 100, 1886, 1, 0, 0, 0, 102, 1897, 1, 0, 0, 0, 104, 1900, 1, 0, 0, 0, 106, 1936, 1, 0, 0, 0, 108, 1938, 1, 0, 0, 0, 110, 1979, 1, 0, 0, 0, 112, 1981, 1, 0, 0, 0, 114, 2035, 1, 0, 0, 0, 116, 2076, 1, 0, 0, 0, 118, 2078, 1, 0, 0, 0, 120, 2095, 1, 0, 0, 0, 122, 2176, 1, 0, 0, 0, 124, 2178, 1, 0, 0, 0, 126, 2189, 1, 0, 0, 0, 128, 2212, 1, 0, 0, 0, 130, 2230, 1, 0, 0, 0, 132, 2232, 1, 0, 0, 0, 134, 2267, 1, 0, 0, 0, 136, 2360, 1, 0, 0, 0, 138, 2365, 1, 0, 0, 0, 140, 2367, 1, 0, 0, 0, 142, 2465, 1, 0, 0, 0, 144, 2467, 1, 0, 0, 0, 146, 2471, 1, 0, 0, 0, 148, 2482, 1, 0, 0, 0, 150, 2490, 1, 0, 0, 0, 152, 2493, 1, 0, 0, 0, 154, 2496, 1, 0, 0, 0, 156, 2514, 1, 0, 0, 0, 158, 2516, 1, 0, 0, 0, 160, 2520, 1, 0, 0, 0, 162, 2533, 1, 0, 0, 0, 164, 2535, 1, 0, 0, 0, 166, 2540, 1, 0, 0, 0, 168, 2560, 1, 0, 0, 0, 170, 2568, 1, 0, 0, 0, 172, 2575, 1, 0, 0, 0, 174, 2577, 1, 0, 0, 0, 176, 2586, 1, 0, 0, 0, 178, 2589, 1, 0, 0, 0, 180, 2593, 1, 0, 0, 0, 182, 2597, 1, 0, 0, 0, 184, 2622, 1, 0, 0, 0, 186, 2632, 1, 0, 0, 0, 188, 2646, 1, 0, 0, 0, 190, 2662, 1, 0, 0, 0, 192, 2668, 1, 0, 0, 0, 194, 2695, 1, 0, 0, 0, 196, 2705, 1, 0, 0, 0, 198, 2721, 1, 0, 0, 0, 200, 2765, 1, 0, 0, 0, 202, 2772, 1, 0, 0, 0, 204, 2774, 1, 0, 0, 0, 206, 2800, 1, 0, 0, 0, 208, 2811, 1, 0, 0, 0, 210, 2830, 1, 0, 0, 0, 212, 2841, 1, 0, 0, 0, 214, 2879, 1, 0, 0, 0, 216, 2900, 1, 0, 0, 0, 218, 2902, 1, 0, 0, 0, 220, 2922, 1, 0, 0, 0, 222, 2934, 1, 0, 0, 0, 224, 2946, 1, 0, 0, 0, 226, 2949, 1, 0, 0, 0, 228, 2952, 1, 0, 0, 0, 230, 2972, 1, 0, 0, 0, 232, 2977, 1, 0, 0, 0, 234, 3026, 1, 0, 0, 0, 236, 3028, 1, 0, 0, 0, 238, 3051, 1, 0, 0, 0, 240, 3067, 1, 0, 0, 0, 242, 3079, 1, 0, 0, 0, 244, 3106, 1, 0, 0, 0, 246, 3121, 1, 0, 0, 0, 248, 3184, 1, 0, 0, 0, 250, 3186, 1, 0, 0, 0, 252, 3191, 1, 0, 0, 0, 254, 3197, 1, 0, 0, 0, 256, 3284, 1, 0, 0, 0, 258, 3290, 1, 0, 0, 0, 260, 3292, 1, 0, 0, 0, 262, 3308, 1, 0, 0, 0, 264, 3310, 1, 0, 0, 0, 266, 3319, 1, 0, 0, 0, 268, 3323, 1, 0, 0, 0, 270, 3336, 1, 0, 0, 0, 272, 3348, 1, 0, 0, 0, 274, 3350, 1, 0, 0, 0, 276, 3372, 1, 0, 0, 0, 278, 3384, 1, 0, 0, 0, 280, 3395, 1, 0, 0, 0, 282, 3486, 1, 0, 0, 0, 284, 3488, 1, 0, 0, 0, 286, 3499, 1, 0, 0, 0, 288, 3510, 1, 0, 0, 0, 290, 3512, 1, 0, 0, 0, 292, 3538, 1, 0, 0, 0, 294, 3540, 1, 0, 0, 0, 296, 3544, 1, 0, 0, 0, 298, 3594, 1, 0, 0, 0, 300, 3596, 1, 0, 0, 0, 302, 3602, 1, 0, 0, 0, 304, 3627, 1, 0, 0, 0, 306, 3631, 1, 0, 0, 0, 308, 3845, 1, 0, 0, 0, 310, 3863, 1, 0, 0, 0, 312, 3889, 1, 0, 0, 0, 314, 3891, 1, 0, 0, 0, 316, 3899, 1, 0, 0, 0, 318, 3905, 1, 0, 0, 0, 320, 3909, 1, 0, 0, 0, 322, 3929, 1, 0, 0, 0, 324, 3935, 1, 0, 0, 0, 326, 4002, 1, 0, 0, 0, 328, 4033, 1, 0, 0, 0, 330, 4079, 1, 0, 0, 0, 332, 4081, 1, 0, 0, 0, 334, 4083, 1, 0, 0, 0, 336, 4094, 1, 0, 0, 0, 338, 4131, 1, 0, 0, 0, 340, 4133, 1, 0, 0, 0, 342, 4139, 1, 0, 0, 0, 344, 4189, 1, 0, 0, 0, 346, 4192, 1, 0, 0, 0, 348, 4206, 1, 0, 0, 0, 350, 4227, 1, 0, 0, 0, 352, 4251, 1, 0, 0, 0, 354, 4292, 1, 0, 0, 0, 356, 4294, 1, 0, 0, 0, 358, 4296, 1, 0, 0, 0, 360, 4336, 1, 0, 0, 0, 362, 4353, 1, 0, 0, 0, 364, 4373, 1, 0, 0, 0, 366, 4426, 1, 0, 0, 0, 368, 4429, 1, 0, 0, 0, 370, 4435, 1, 0, 0, 0, 372, 4443, 1, 0, 0, 0, 374, 4456, 1, 0, 0, 0, 376, 4458, 1, 0, 0, 0, 378, 4471, 1, 0, 0, 0, 380, 4473, 1, 0, 0, 0, 382, 4486, 1, 0, 0, 0, 384, 4496, 1, 0, 0, 0, 386, 4507, 1, 0, 0, 0, 388, 4518, 1, 0, 0, 0, 390, 4520, 1, 0, 0, 0, 392, 4525, 1, 0, 0, 0, 394, 4539, 1, 0, 0, 0, 396, 4571, 1, 0, 0, 0, 398, 4608, 1, 0, 0, 0, 400, 4610, 1, 0, 0, 0, 402, 4613, 1, 0, 0, 0, 404, 4616, 1, 0, 0, 0, 406, 4633, 1, 0, 0, 0, 408, 4654, 1, 0, 0, 0, 410, 4670, 1, 0, 0, 0, 412, 4686, 1, 0, 0, 0, 414, 4708, 1, 0, 0, 0, 416, 4713, 1, 0, 0, 0, 418, 4716, 1, 0, 0, 0, 420, 4724, 1, 0, 0, 0, 422, 4749, 1, 0, 0, 0, 424, 4752, 1, 0, 0, 0, 426, 4780, 1, 0, 0, 0, 428, 4785, 1, 0, 0, 0, 430, 4825, 1, 0, 0, 0, 432, 5037, 1, 0, 0, 0, 434, 5039, 1, 0, 0, 0, 436, 5127, 1, 0, 0, 0, 438, 5129, 1, 0, 0, 0, 440, 5135, 1, 0, 0, 0, 442, 5146, 1, 0, 0, 0, 444, 5156, 1, 0, 0, 0, 446, 5236, 1, 0, 0, 0, 448, 5238, 1, 0, 0, 0, 450, 5252, 1, 0, 0, 0, 452, 5274, 1, 0, 0, 0, 454, 5347, 1, 0, 0, 0, 456, 5349, 1, 0, 0, 0, 458, 5390, 1, 0, 0, 0, 460, 5392, 1, 0, 0, 0, 462, 5397, 1, 0, 0, 0, 464, 5400, 1, 0, 0, 0, 466, 5403, 1, 0, 0, 0, 468, 5453, 1, 0, 0, 0, 470, 5455, 1, 0, 0, 0, 472, 5466, 1, 0, 0, 0, 474, 5468, 1, 0, 0, 0, 476, 5478, 1, 0, 0, 0, 478, 5513, 1, 0, 0, 0, 480, 5516, 1, 0, 0, 0, 482, 5537, 1, 0, 0, 0, 484, 5547, 1, 0, 0, 0, 486, 5567, 1, 0, 0, 0, 488, 5573, 1, 0, 0, 0, 490, 5579, 1, 0, 0, 0, 492, 5584, 1, 0, 0, 0, 494, 5597, 1, 0, 0, 0, 496, 5624, 1, 0, 0, 0, 498, 5672, 1, 0, 0, 0, 500, 5674, 1, 0, 0, 0, 502, 5712, 1, 0, 0, 0, 504, 5714, 1, 0, 0, 0, 506, 5735, 1, 0, 0, 0, 508, 5755, 1, 0, 0, 0, 510, 5759, 1, 0, 0, 0, 512, 5774, 1, 0, 0, 0, 514, 5776, 1, 0, 0, 0, 516, 5780, 1, 0, 0, 0, 518, 5784, 1, 0, 0, 0, 520, 5792, 1, 0, 0, 0, 522, 5816, 1, 0, 0, 0, 524, 5818, 1, 0, 0, 0, 526, 5829, 1, 0, 0, 0, 528, 5837, 1, 0, 0, 0, 530, 5852, 1, 0, 0, 0, 532, 5877, 1, 0, 0, 0, 534, 5879, 1, 0, 0, 0, 536, 5883, 1, 0, 0, 0, 538, 5892, 1, 0, 0, 0, 540, 5932, 1, 0, 0, 0, 542, 5943, 1, 0, 0, 0, 544, 5951, 1, 0, 0, 0, 546, 5954, 1, 0, 0, 0, 548, 5958, 1, 0, 0, 0, 550, 5973, 1, 0, 0, 0, 552, 5998, 1, 0, 0, 0, 554, 6013, 1, 0, 0, 0, 556, 6039, 1, 0, 0, 0, 558, 6041, 1, 0, 0, 0, 560, 6064, 1, 0, 0, 0, 562, 6066, 1, 0, 0, 0, 564, 6074, 1, 0, 0, 0, 566, 6092, 1, 0, 0, 0, 568, 6116, 1, 0, 0, 0, 570, 6128, 1, 0, 0, 0, 572, 6132, 1, 0, 0, 0, 574, 6144, 1, 0, 0, 0, 576, 6164, 1, 0, 0, 0, 578, 6172, 1, 0, 0, 0, 580, 6186, 1, 0, 0, 0, 582, 6209, 1, 0, 0, 0, 584, 6211, 1, 0, 0, 0, 586, 6216, 1, 0, 0, 0, 588, 6226, 1, 0, 0, 0, 590, 6247, 1, 0, 0, 0, 592, 6249, 1, 0, 0, 0, 594, 6258, 1, 0, 0, 0, 596, 6269, 1, 0, 0, 0, 598, 6279, 1, 0, 0, 0, 600, 6281, 1, 0, 0, 0, 602, 6288, 1, 0, 0, 0, 604, 6319, 1, 0, 0, 0, 606, 6349, 1, 0, 0, 0, 608, 6351, 1, 0, 0, 0, 610, 6360, 1, 0, 0, 0, 612, 6363, 1, 0, 0, 0, 614, 6434, 1, 0, 0, 0, 616, 6458, 1, 0, 0, 0, 618, 6479, 1, 0, 0, 0, 620, 6481, 1, 0, 0, 0, 622, 6489, 1, 0, 0, 0, 624, 6506, 1, 0, 0, 0, 626, 6532, 1, 0, 0, 0, 628, 6534, 1, 0, 0, 0, 630, 6542, 1, 0, 0, 0, 632, 6549, 1, 0, 0, 0, 634, 6573, 1, 0, 0, 0, 636, 6579, 1, 0, 0, 0, 638, 6587, 1, 0, 0, 0, 640, 6590, 1, 0, 0, 0, 642, 6597, 1, 0, 0, 0, 644, 6605, 1, 0, 0, 0, 646, 6610, 1, 0, 0, 0, 648, 6640, 1, 0, 0, 0, 650, 6667, 1, 0, 0, 0, 652, 6695, 1, 0, 0, 0, 654, 6712, 1, 0, 0, 0, 656, 6718, 1, 0, 0, 0, 658, 6736, 1, 0, 0, 0, 660, 6738, 1, 0, 0, 0, 662, 6742, 1, 0, 0, 0, 664, 6759, 1, 0, 0, 0, 666, 6764, 1, 0, 0, 0, 668, 6802, 1, 0, 0, 0, 670, 6804, 1, 0, 0, 0, 672, 6808, 1, 0, 0, 0, 674, 6810, 1, 0, 0, 0, 676, 6819, 1, 0, 0, 0, 678, 6903, 1, 0, 0, 0, 680, 6909, 1, 0, 0, 0, 682, 7018, 1, 0, 0, 0, 684, 7050, 1, 0, 0, 0, 686, 7103, 1, 0, 0, 0, 688, 7107, 1, 0, 0, 0, 690, 7283, 1, 0, 0, 0, 692, 7285, 1, 0, 0, 0, 694, 7293, 1, 0, 0, 0, 696, 7298, 1, 0, 0, 0, 698, 7300, 1, 0, 0, 0, 700, 7308, 1, 0, 0, 0, 702, 7311, 1, 0, 0, 0, 704, 7320, 1, 0, 0, 0, 706, 7324, 1, 0, 0, 0, 708, 7329, 1, 0, 0, 0, 710, 7346, 1, 0, 0, 0, 712, 7373, 1, 0, 0, 0, 714, 7382, 1, 0, 0, 0, 716, 7384, 1, 0, 0, 0, 718, 7391, 1, 0, 0, 0, 720, 7395, 1, 0, 0, 0, 722, 7397, 1, 0, 0, 0, 724, 7405, 1, 0, 0, 0, 726, 7413, 1, 0, 0, 0, 728, 7420, 1, 0, 0, 0, 730, 7422, 1, 0, 0, 0, 732, 7435, 1, 0, 0, 0, 734, 7439, 1, 0, 0, 0, 736, 7441, 1, 0, 0, 0, 738, 7455, 1, 0, 0, 0, 740, 7457, 1, 0, 0, 0, 742, 7479, 1, 0, 0, 0, 744, 7481, 1, 0, 0, 0, 746, 7504, 1, 0, 0, 0, 748, 7506, 1, 0, 0, 0, 750, 7528, 1, 0, 0, 0, 752, 7531, 1, 0, 0, 0, 754, 7538, 1, 0, 0, 0, 756, 7541, 1, 0, 0, 0, 758, 7557, 1, 0, 0, 0, 760, 7559, 1, 0, 0, 0, 762, 7567, 1, 0, 0, 0, 764, 7575, 1, 0, 0, 0, 766, 7583, 1, 0, 0, 0, 768, 7591, 1, 0, 0, 0, 770, 7593, 1, 0, 0, 0, 772, 7595, 1, 0, 0, 0, 774, 7597, 1, 0, 0, 0, 776, 7599, 1, 0, 0, 0, 778, 7601, 1, 0, 0, 0, 780, 7603, 1, 0, 0, 0, 782, 7607, 1, 0, 0, 0, 784, 7615, 1, 0, 0, 0, 786, 7623, 1, 0, 0, 0, 788, 7625, 1, 0, 0, 0, 790, 7627, 1, 0, 0, 0, 792, 7629, 1, 0, 0, 0, 794, 7631, 1, 0, 0, 0, 796, 7637, 1, 0, 0, 0, 798, 7643, 1, 0, 0, 0, 800, 7649, 1, 0, 0, 0, 802, 7651, 1, 0, 0, 0, 804, 7657, 1, 0, 0, 0, 806, 7663, 1, 0, 0, 0, 808, 7665, 1, 0, 0, 0, 810, 7681, 1, 0, 0, 0, 812, 7684, 1, 0, 0, 0, 814, 7693, 1, 0, 0, 0, 816, 7695, 1, 0, 0, 0, 818, 7705, 1, 0, 0, 0, 820, 7709, 1, 0, 0, 0, 822, 7714, 1, 0, 0, 0, 824, 7720, 1, 0, 0, 0, 826, 7733, 1, 0, 0, 0, 828, 7735, 1, 0, 0, 0, 830, 7788, 1, 0, 0, 0, 832, 7790, 1, 0, 0, 0, 834, 7792, 1, 0, 0, 0, 836, 7795, 1, 0, 0, 0, 838, 7823, 1, 0, 0, 0, 840, 7827, 1, 0, 0, 0, 842, 7878, 1, 0, 0, 0, 844, 7881, 1, 0, 0, 0, 846, 7907, 1, 0, 0, 0, 848, 7909, 1, 0, 0, 0, 850, 7932, 1, 0, 0, 0, 852, 7934, 1, 0, 0, 0, 854, 7939, 1, 0, 0, 0, 856, 7954, 1, 0, 0, 0, 858, 7960, 1, 0, 0, 0, 860, 7971, 1, 0, 0, 0, 862, 8001, 1, 0, 0, 0, 864, 8008, 1, 0, 0, 0, 866, 8033, 1, 0, 0, 0, 868, 8043, 1, 0, 0, 0, 870, 8070, 1, 0, 0, 0, 872, 8083, 1, 0, 0, 0, 874, 8093, 1, 0, 0, 0, 876, 8112, 1, 0, 0, 0, 878, 8144, 1, 0, 0, 0, 880, 8148, 1, 0, 0, 0, 882, 8156, 1, 0, 0, 0, 884, 8170, 1, 0, 0, 0, 886, 8176, 1, 0, 0, 0, 888, 8197, 1, 0, 0, 0, 890, 8203, 1, 0, 0, 0, 892, 8242, 1, 0, 0, 0, 894, 8246, 1, 0, 0, 0, 896, 8272, 1, 0, 0, 0, 898, 8274, 1, 0, 0, 0, 900, 8282, 1, 0, 0, 0, 902, 8319, 1, 0, 0, 0, 904, 8353, 1, 0, 0, 0, 906, 8355, 1, 0, 0, 0, 908, 8366, 1, 0, 0, 0, 910, 8403, 1, 0, 0, 0, 912, 8407, 1, 0, 0, 0, 914, 8409, 1, 0, 0, 0, 916, 8413, 1, 0, 0, 0, 918, 8416, 1, 0, 0, 0, 920, 8438, 1, 0, 0, 0, 922, 8442, 1, 0, 0, 0, 924, 8444, 1, 0, 0, 0, 926, 8468, 1, 0, 0, 0, 928, 8472, 1, 0, 0, 0, 930, 8475, 1, 0, 0, 0, 932, 934, 3, 2, 1, 0, 933, 932, 1, 0, 0, 0, 934, 937, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 935, 1, 0, 0, 0, 938, 939, 5, 0, 0, 1, 939, 1, 1, 0, 0, 0, 940, 942, 3, 4, 2, 0, 941, 943, 5, 7, 0, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 3, 1, 0, 0, 0, 944, 1065, 3, 278, 139, 0, 945, 1065, 3, 488, 244, 0, 946, 1065, 3, 484, 242, 0, 947, 1065, 3, 486, 243, 0, 948, 1065, 3, 352, 176, 0, 949, 1065, 3, 494, 247, 0, 950, 1065, 3, 292, 146, 0, 951, 1065, 3, 210, 105, 0, 952, 1065, 3, 212, 106, 0, 953, 1065, 3, 218, 109, 0, 954, 1065, 3, 232, 116, 0, 955, 1065, 3, 404, 202, 0, 956, 1065, 3, 28, 14, 0, 957, 1065, 3, 434, 217, 0, 958, 1065, 3, 436, 218, 0, 959, 1065, 3, 446, 223, 0, 960, 1065, 3, 438, 219, 0, 961, 1065, 3, 444, 222, 0, 962, 1065, 3, 244, 122, 0, 963, 1065, 3, 246, 123, 0, 964, 1065, 3, 198, 99, 0, 965, 1065, 3, 490, 245, 0, 966, 1065, 3, 76, 38, 0, 967, 1065, 3, 430, 215, 0, 968, 1065, 3, 108, 54, 0, 969, 1065, 3, 450, 225, 0, 970, 1065, 3, 18, 9, 0, 971, 1065, 3, 20, 10, 0, 972, 1065, 3, 16, 8, 0, 973, 1065, 3, 454, 227, 0, 974, 1065, 3, 184, 92, 0, 975, 1065, 3, 498, 249, 0, 976, 1065, 3, 496, 248, 0, 977, 1065, 3, 240, 120, 0, 978, 1065, 3, 506, 253, 0, 979, 1065, 3, 6, 3, 0, 980, 1065, 3, 72, 36, 0, 981, 1065, 3, 112, 56, 0, 982, 1065, 3, 502, 251, 0, 983, 1065, 3, 324, 162, 0, 984, 1065, 3, 70, 35, 0, 985, 1065, 3, 114, 57, 0, 986, 1065, 3, 254, 127, 0, 987, 1065, 3, 186, 93, 0, 988, 1065, 3, 280, 140, 0, 989, 1065, 3, 420, 210, 0, 990, 1065, 3, 500, 250, 0, 991, 1065, 3, 492, 246, 0, 992, 1065, 3, 208, 104, 0, 993, 1065, 3, 214, 107, 0, 994, 1065, 3, 228, 114, 0, 995, 1065, 3, 234, 117, 0, 996, 1065, 3, 364, 182, 0, 997, 1065, 3, 26, 13, 0, 998, 1065, 3, 192, 96, 0, 999, 1065, 3, 296, 148, 0, 1000, 1065, 3, 300, 150, 0, 1001, 1065, 3, 448, 224, 0, 1002, 1065, 3, 302, 151, 0, 1003, 1065, 3, 242, 121, 0, 1004, 1065, 3, 204, 102, 0, 1005, 1065, 3, 30, 15, 0, 1006, 1065, 3, 196, 98, 0, 1007, 1065, 3, 120, 60, 0, 1008, 1065, 3, 452, 226, 0, 1009, 1065, 3, 182, 91, 0, 1010, 1065, 3, 206, 103, 0, 1011, 1065, 3, 424, 212, 0, 1012, 1065, 3, 256, 128, 0, 1013, 1065, 3, 274, 137, 0, 1014, 1065, 3, 8, 4, 0, 1015, 1065, 3, 14, 7, 0, 1016, 1065, 3, 238, 119, 0, 1017, 1065, 3, 480, 240, 0, 1018, 1065, 3, 536, 268, 0, 1019, 1065, 3, 558, 279, 0, 1020, 1065, 3, 282, 141, 0, 1021, 1065, 3, 548, 274, 0, 1022, 1065, 3, 74, 37, 0, 1023, 1065, 3, 418, 209, 0, 1024, 1065, 3, 308, 154, 0, 1025, 1065, 3, 532, 266, 0, 1026, 1065, 3, 520, 260, 0, 1027, 1065, 3, 328, 164, 0, 1028, 1065, 3, 334, 167, 0, 1029, 1065, 3, 348, 174, 0, 1030, 1065, 3, 900, 450, 0, 1031, 1065, 3, 236, 118, 0, 1032, 1065, 3, 358, 179, 0, 1033, 1065, 3, 538, 269, 0, 1034, 1065, 3, 464, 232, 0, 1035, 1065, 3, 194, 97, 0, 1036, 1065, 3, 478, 239, 0, 1037, 1065, 3, 550, 275, 0, 1038, 1065, 3, 460, 230, 0, 1039, 1065, 3, 526, 263, 0, 1040, 1065, 3, 306, 153, 0, 1041, 1065, 3, 428, 214, 0, 1042, 1065, 3, 408, 204, 0, 1043, 1065, 3, 406, 203, 0, 1044, 1065, 3, 410, 205, 0, 1045, 1065, 3, 432, 216, 0, 1046, 1065, 3, 336, 168, 0, 1047, 1065, 3, 350, 175, 0, 1048, 1065, 3, 456, 228, 0, 1049, 1065, 3, 326, 163, 0, 1050, 1065, 3, 560, 280, 0, 1051, 1065, 3, 468, 234, 0, 1052, 1065, 3, 320, 160, 0, 1053, 1065, 3, 466, 233, 0, 1054, 1065, 3, 552, 276, 0, 1055, 1065, 3, 504, 252, 0, 1056, 1065, 3, 60, 30, 0, 1057, 1065, 3, 36, 18, 0, 1058, 1065, 3, 68, 34, 0, 1059, 1065, 3, 476, 238, 0, 1060, 1062, 5, 581, 0, 0, 1061, 1063, 5, 582, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 944, 1, 0, 0, 0, 1064, 945, 1, 0, 0, 0, 1064, 946, 1, 0, 0, 0, 1064, 947, 1, 0, 0, 0, 1064, 948, 1, 0, 0, 0, 1064, 949, 1, 0, 0, 0, 1064, 950, 1, 0, 0, 0, 1064, 951, 1, 0, 0, 0, 1064, 952, 1, 0, 0, 0, 1064, 953, 1, 0, 0, 0, 1064, 954, 1, 0, 0, 0, 1064, 955, 1, 0, 0, 0, 1064, 956, 1, 0, 0, 0, 1064, 957, 1, 0, 0, 0, 1064, 958, 1, 0, 0, 0, 1064, 959, 1, 0, 0, 0, 1064, 960, 1, 0, 0, 0, 1064, 961, 1, 0, 0, 0, 1064, 962, 1, 0, 0, 0, 1064, 963, 1, 0, 0, 0, 1064, 964, 1, 0, 0, 0, 1064, 965, 1, 0, 0, 0, 1064, 966, 1, 0, 0, 0, 1064, 967, 1, 0, 0, 0, 1064, 968, 1, 0, 0, 0, 1064, 969, 1, 0, 0, 0, 1064, 970, 1, 0, 0, 0, 1064, 971, 1, 0, 0, 0, 1064, 972, 1, 0, 0, 0, 1064, 973, 1, 0, 0, 0, 1064, 974, 1, 0, 0, 0, 1064, 975, 1, 0, 0, 0, 1064, 976, 1, 0, 0, 0, 1064, 977, 1, 0, 0, 0, 1064, 978, 1, 0, 0, 0, 1064, 979, 1, 0, 0, 0, 1064, 980, 1, 0, 0, 0, 1064, 981, 1, 0, 0, 0, 1064, 982, 1, 0, 0, 0, 1064, 983, 1, 0, 0, 0, 1064, 984, 1, 0, 0, 0, 1064, 985, 1, 0, 0, 0, 1064, 986, 1, 0, 0, 0, 1064, 987, 1, 0, 0, 0, 1064, 988, 1, 0, 0, 0, 1064, 989, 1, 0, 0, 0, 1064, 990, 1, 0, 0, 0, 1064, 991, 1, 0, 0, 0, 1064, 992, 1, 0, 0, 0, 1064, 993, 1, 0, 0, 0, 1064, 994, 1, 0, 0, 0, 1064, 995, 1, 0, 0, 0, 1064, 996, 1, 0, 0, 0, 1064, 997, 1, 0, 0, 0, 1064, 998, 1, 0, 0, 0, 1064, 999, 1, 0, 0, 0, 1064, 1000, 1, 0, 0, 0, 1064, 1001, 1, 0, 0, 0, 1064, 1002, 1, 0, 0, 0, 1064, 1003, 1, 0, 0, 0, 1064, 1004, 1, 0, 0, 0, 1064, 1005, 1, 0, 0, 0, 1064, 1006, 1, 0, 0, 0, 1064, 1007, 1, 0, 0, 0, 1064, 1008, 1, 0, 0, 0, 1064, 1009, 1, 0, 0, 0, 1064, 1010, 1, 0, 0, 0, 1064, 1011, 1, 0, 0, 0, 1064, 1012, 1, 0, 0, 0, 1064, 1013, 1, 0, 0, 0, 1064, 1014, 1, 0, 0, 0, 1064, 1015, 1, 0, 0, 0, 1064, 1016, 1, 0, 0, 0, 1064, 1017, 1, 0, 0, 0, 1064, 1018, 1, 0, 0, 0, 1064, 1019, 1, 0, 0, 0, 1064, 1020, 1, 0, 0, 0, 1064, 1021, 1, 0, 0, 0, 1064, 1022, 1, 0, 0, 0, 1064, 1023, 1, 0, 0, 0, 1064, 1024, 1, 0, 0, 0, 1064, 1025, 1, 0, 0, 0, 1064, 1026, 1, 0, 0, 0, 1064, 1027, 1, 0, 0, 0, 1064, 1028, 1, 0, 0, 0, 1064, 1029, 1, 0, 0, 0, 1064, 1030, 1, 0, 0, 0, 1064, 1031, 1, 0, 0, 0, 1064, 1032, 1, 0, 0, 0, 1064, 1033, 1, 0, 0, 0, 1064, 1034, 1, 0, 0, 0, 1064, 1035, 1, 0, 0, 0, 1064, 1036, 1, 0, 0, 0, 1064, 1037, 1, 0, 0, 0, 1064, 1038, 1, 0, 0, 0, 1064, 1039, 1, 0, 0, 0, 1064, 1040, 1, 0, 0, 0, 1064, 1041, 1, 0, 0, 0, 1064, 1042, 1, 0, 0, 0, 1064, 1043, 1, 0, 0, 0, 1064, 1044, 1, 0, 0, 0, 1064, 1045, 1, 0, 0, 0, 1064, 1046, 1, 0, 0, 0, 1064, 1047, 1, 0, 0, 0, 1064, 1048, 1, 0, 0, 0, 1064, 1049, 1, 0, 0, 0, 1064, 1050, 1, 0, 0, 0, 1064, 1051, 1, 0, 0, 0, 1064, 1052, 1, 0, 0, 0, 1064, 1053, 1, 0, 0, 0, 1064, 1054, 1, 0, 0, 0, 1064, 1055, 1, 0, 0, 0, 1064, 1056, 1, 0, 0, 0, 1064, 1057, 1, 0, 0, 0, 1064, 1058, 1, 0, 0, 0, 1064, 1059, 1, 0, 0, 0, 1064, 1060, 1, 0, 0, 0, 1065, 5, 1, 0, 0, 0, 1066, 1067, 5, 433, 0, 0, 1067, 1068, 3, 684, 342, 0, 1068, 7, 1, 0, 0, 0, 1069, 1070, 5, 46, 0, 0, 1070, 1071, 5, 318, 0, 0, 1071, 1073, 3, 814, 407, 0, 1072, 1074, 5, 105, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1078, 1, 0, 0, 0, 1075, 1077, 3, 12, 6, 0, 1076, 1075, 1, 0, 0, 0, 1077, 1080, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 9, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1081, 1084, 5, 287, 0, 0, 1082, 1085, 3, 808, 404, 0, 1083, 1085, 5, 78, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1120, 1, 0, 0, 0, 1086, 1087, 7, 0, 0, 0, 1087, 1088, 5, 287, 0, 0, 1088, 1120, 3, 808, 404, 0, 1089, 1120, 5, 228, 0, 0, 1090, 1120, 5, 229, 0, 0, 1091, 1120, 5, 236, 0, 0, 1092, 1120, 5, 237, 0, 0, 1093, 1120, 5, 234, 0, 0, 1094, 1120, 5, 235, 0, 0, 1095, 1120, 5, 232, 0, 0, 1096, 1120, 5, 233, 0, 0, 1097, 1120, 5, 230, 0, 0, 1098, 1120, 5, 231, 0, 0, 1099, 1120, 5, 535, 0, 0, 1100, 1120, 5, 536, 0, 0, 1101, 1120, 5, 537, 0, 0, 1102, 1120, 5, 538, 0, 0, 1103, 1120, 5, 539, 0, 0, 1104, 1120, 5, 540, 0, 0, 1105, 1106, 5, 164, 0, 0, 1106, 1107, 5, 74, 0, 0, 1107, 1120, 3, 812, 406, 0, 1108, 1109, 5, 371, 0, 0, 1109, 1110, 5, 368, 0, 0, 1110, 1120, 3, 808, 404, 0, 1111, 1112, 5, 68, 0, 0, 1112, 1113, 7, 1, 0, 0, 1113, 1120, 3, 784, 392, 0, 1114, 1115, 7, 2, 0, 0, 1115, 1120, 3, 816, 408, 0, 1116, 1117, 5, 134, 0, 0, 1117, 1120, 3, 784, 392, 0, 1118, 1120, 3, 826, 413, 0, 1119, 1081, 1, 0, 0, 0, 1119, 1086, 1, 0, 0, 0, 1119, 1089, 1, 0, 0, 0, 1119, 1090, 1, 0, 0, 0, 1119, 1091, 1, 0, 0, 0, 1119, 1092, 1, 0, 0, 0, 1119, 1093, 1, 0, 0, 0, 1119, 1094, 1, 0, 0, 0, 1119, 1095, 1, 0, 0, 0, 1119, 1096, 1, 0, 0, 0, 1119, 1097, 1, 0, 0, 0, 1119, 1098, 1, 0, 0, 0, 1119, 1099, 1, 0, 0, 0, 1119, 1100, 1, 0, 0, 0, 1119, 1101, 1, 0, 0, 0, 1119, 1102, 1, 0, 0, 0, 1119, 1103, 1, 0, 0, 0, 1119, 1104, 1, 0, 0, 0, 1119, 1105, 1, 0, 0, 0, 1119, 1108, 1, 0, 0, 0, 1119, 1111, 1, 0, 0, 0, 1119, 1114, 1, 0, 0, 0, 1119, 1116, 1, 0, 0, 0, 1119, 1118, 1, 0, 0, 0, 1120, 11, 1, 0, 0, 0, 1121, 1130, 3, 10, 5, 0, 1122, 1123, 5, 348, 0, 0, 1123, 1130, 5, 571, 0, 0, 1124, 1125, 7, 3, 0, 0, 1125, 1130, 3, 816, 408, 0, 1126, 1127, 5, 68, 0, 0, 1127, 1128, 7, 1, 0, 0, 1128, 1130, 3, 816, 408, 0, 1129, 1121, 1, 0, 0, 0, 1129, 1122, 1, 0, 0, 0, 1129, 1124, 1, 0, 0, 0, 1129, 1126, 1, 0, 0, 0, 1130, 13, 1, 0, 0, 0, 1131, 1132, 5, 46, 0, 0, 1132, 1133, 5, 99, 0, 0, 1133, 1135, 3, 814, 407, 0, 1134, 1136, 5, 105, 0, 0, 1135, 1134, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1140, 1, 0, 0, 0, 1137, 1139, 3, 12, 6, 0, 1138, 1137, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 15, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1144, 5, 138, 0, 0, 1144, 1145, 7, 2, 0, 0, 1145, 1147, 3, 814, 407, 0, 1146, 1148, 5, 105, 0, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1152, 1, 0, 0, 0, 1149, 1151, 3, 10, 5, 0, 1150, 1149, 1, 0, 0, 0, 1151, 1154, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 17, 1, 0, 0, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1156, 5, 138, 0, 0, 1156, 1159, 7, 2, 0, 0, 1157, 1160, 5, 30, 0, 0, 1158, 1160, 3, 814, 407, 0, 1159, 1157, 1, 0, 0, 0, 1159, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 5, 68, 0, 0, 1162, 1163, 5, 175, 0, 0, 1163, 1164, 3, 788, 394, 0, 1164, 1165, 3, 64, 32, 0, 1165, 19, 1, 0, 0, 0, 1166, 1167, 5, 138, 0, 0, 1167, 1168, 5, 442, 0, 0, 1168, 1170, 3, 794, 397, 0, 1169, 1171, 3, 368, 184, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 3, 22, 11, 0, 1173, 21, 1, 0, 0, 0, 1174, 1178, 3, 24, 12, 0, 1175, 1177, 3, 24, 12, 0, 1176, 1175, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1182, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1183, 5, 315, 0, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1201, 1, 0, 0, 0, 1184, 1185, 5, 309, 0, 0, 1185, 1186, 5, 94, 0, 0, 1186, 1201, 3, 792, 396, 0, 1187, 1188, 5, 282, 0, 0, 1188, 1189, 5, 94, 0, 0, 1189, 1201, 3, 814, 407, 0, 1190, 1191, 5, 333, 0, 0, 1191, 1192, 5, 323, 0, 0, 1192, 1201, 3, 32, 16, 0, 1193, 1195, 5, 269, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 462, 0, 0, 1197, 1198, 5, 80, 0, 0, 1198, 1199, 5, 204, 0, 0, 1199, 1201, 3, 818, 409, 0, 1200, 1174, 1, 0, 0, 0, 1200, 1184, 1, 0, 0, 0, 1200, 1187, 1, 0, 0, 0, 1200, 1190, 1, 0, 0, 0, 1200, 1194, 1, 0, 0, 0, 1201, 23, 1, 0, 0, 0, 1202, 1245, 5, 222, 0, 0, 1203, 1245, 5, 338, 0, 0, 1204, 1245, 5, 377, 0, 0, 1205, 1207, 5, 77, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1245, 5, 250, 0, 0, 1209, 1211, 5, 205, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 327, 0, 0, 1213, 1220, 5, 243, 0, 0, 1214, 1216, 5, 205, 0, 0, 1215, 1214, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 5, 327, 0, 0, 1218, 1220, 5, 181, 0, 0, 1219, 1210, 1, 0, 0, 0, 1219, 1215, 1, 0, 0, 0, 1220, 1245, 1, 0, 0, 0, 1221, 1222, 5, 460, 0, 0, 1222, 1245, 7, 4, 0, 0, 1223, 1224, 5, 170, 0, 0, 1224, 1245, 3, 824, 412, 0, 1225, 1226, 5, 320, 0, 0, 1226, 1245, 3, 818, 409, 0, 1227, 1228, 5, 333, 0, 0, 1228, 1229, 3, 818, 409, 0, 1229, 1232, 7, 5, 0, 0, 1230, 1233, 3, 818, 409, 0, 1231, 1233, 5, 53, 0, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1231, 1, 0, 0, 0, 1233, 1245, 1, 0, 0, 0, 1234, 1235, 5, 333, 0, 0, 1235, 1236, 3, 818, 409, 0, 1236, 1237, 5, 64, 0, 0, 1237, 1238, 5, 434, 0, 0, 1238, 1245, 1, 0, 0, 0, 1239, 1242, 5, 313, 0, 0, 1240, 1243, 3, 818, 409, 0, 1241, 1243, 5, 30, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1202, 1, 0, 0, 0, 1244, 1203, 1, 0, 0, 0, 1244, 1204, 1, 0, 0, 0, 1244, 1206, 1, 0, 0, 0, 1244, 1219, 1, 0, 0, 0, 1244, 1221, 1, 0, 0, 0, 1244, 1223, 1, 0, 0, 0, 1244, 1225, 1, 0, 0, 0, 1244, 1227, 1, 0, 0, 0, 1244, 1234, 1, 0, 0, 0, 1244, 1239, 1, 0, 0, 0, 1245, 25, 1, 0, 0, 0, 1246, 1247, 5, 46, 0, 0, 1247, 1248, 5, 66, 0, 0, 1248, 1250, 3, 814, 407, 0, 1249, 1251, 5, 105, 0, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1255, 1, 0, 0, 0, 1252, 1254, 3, 12, 6, 0, 1253, 1252, 1, 0, 0, 0, 1254, 1257, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 27, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1259, 5, 138, 0, 0, 1259, 1260, 5, 66, 0, 0, 1260, 1261, 3, 814, 407, 0, 1261, 1262, 7, 6, 0, 0, 1262, 1263, 5, 99, 0, 0, 1263, 1264, 3, 816, 408, 0, 1264, 29, 1, 0, 0, 0, 1265, 1266, 5, 46, 0, 0, 1266, 1268, 5, 323, 0, 0, 1267, 1269, 3, 294, 147, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1276, 1, 0, 0, 0, 1270, 1272, 3, 32, 16, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 5, 106, 0, 0, 1274, 1277, 3, 814, 407, 0, 1275, 1277, 3, 32, 16, 0, 1276, 1271, 1, 0, 0, 0, 1276, 1275, 1, 0, 0, 0, 1277, 1281, 1, 0, 0, 0, 1278, 1280, 3, 34, 17, 0, 1279, 1278, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 31, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1285, 3, 316, 158, 0, 1285, 33, 1, 0, 0, 0, 1286, 1293, 3, 120, 60, 0, 1287, 1293, 3, 358, 179, 0, 1288, 1293, 3, 196, 98, 0, 1289, 1293, 3, 256, 128, 0, 1290, 1293, 3, 334, 167, 0, 1291, 1293, 3, 476, 238, 0, 1292, 1286, 1, 0, 0, 0, 1292, 1287, 1, 0, 0, 0, 1292, 1288, 1, 0, 0, 0, 1292, 1289, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1292, 1291, 1, 0, 0, 0, 1293, 35, 1, 0, 0, 0, 1294, 1296, 5, 333, 0, 0, 1295, 1297, 7, 7, 0, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 38, 19, 0, 1299, 37, 1, 0, 0, 0, 1300, 1301, 5, 356, 0, 0, 1301, 1309, 3, 474, 237, 0, 1302, 1303, 5, 332, 0, 0, 1303, 1304, 5, 154, 0, 0, 1304, 1305, 5, 36, 0, 0, 1305, 1306, 5, 356, 0, 0, 1306, 1309, 3, 474, 237, 0, 1307, 1309, 3, 42, 21, 0, 1308, 1300, 1, 0, 0, 0, 1308, 1302, 1, 0, 0, 0, 1308, 1307, 1, 0, 0, 0, 1309, 39, 1, 0, 0, 0, 1310, 1313, 5, 30, 0, 0, 1311, 1313, 3, 44, 22, 0, 1312, 1310, 1, 0, 0, 0, 1312, 1311, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1316, 7, 5, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1319, 1, 0, 0, 0, 1317, 1320, 5, 53, 0, 0, 1318, 1320, 3, 46, 23, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 41, 1, 0, 0, 0, 1321, 1322, 5, 418, 0, 0, 1322, 1323, 5, 386, 0, 0, 1323, 1350, 3, 56, 28, 0, 1324, 1325, 5, 152, 0, 0, 1325, 1350, 3, 808, 404, 0, 1326, 1327, 5, 323, 0, 0, 1327, 1350, 3, 790, 395, 0, 1328, 1331, 5, 267, 0, 0, 1329, 1332, 3, 808, 404, 0, 1330, 1332, 5, 53, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1350, 1, 0, 0, 0, 1333, 1334, 5, 318, 0, 0, 1334, 1350, 3, 58, 29, 0, 1335, 1336, 5, 332, 0, 0, 1336, 1337, 5, 106, 0, 0, 1337, 1350, 3, 58, 29, 0, 1338, 1339, 5, 383, 0, 0, 1339, 1340, 5, 279, 0, 0, 1340, 1350, 3, 696, 348, 0, 1341, 1342, 5, 356, 0, 0, 1342, 1343, 5, 337, 0, 0, 1343, 1350, 3, 808, 404, 0, 1344, 1345, 3, 44, 22, 0, 1345, 1346, 5, 64, 0, 0, 1346, 1347, 5, 434, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1350, 3, 40, 20, 0, 1349, 1321, 1, 0, 0, 0, 1349, 1324, 1, 0, 0, 0, 1349, 1326, 1, 0, 0, 0, 1349, 1328, 1, 0, 0, 0, 1349, 1333, 1, 0, 0, 0, 1349, 1335, 1, 0, 0, 0, 1349, 1338, 1, 0, 0, 0, 1349, 1341, 1, 0, 0, 0, 1349, 1344, 1, 0, 0, 0, 1349, 1348, 1, 0, 0, 0, 1350, 43, 1, 0, 0, 0, 1351, 1356, 3, 818, 409, 0, 1352, 1353, 5, 11, 0, 0, 1353, 1355, 3, 818, 409, 0, 1354, 1352, 1, 0, 0, 0, 1355, 1358, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 45, 1, 0, 0, 0, 1358, 1356, 1, 0, 0, 0, 1359, 1364, 3, 48, 24, 0, 1360, 1361, 5, 6, 0, 0, 1361, 1363, 3, 48, 24, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 47, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1370, 3, 54, 27, 0, 1368, 1370, 3, 202, 101, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1368, 1, 0, 0, 0, 1370, 49, 1, 0, 0, 0, 1371, 1372, 5, 300, 0, 0, 1372, 1377, 7, 8, 0, 0, 1373, 1374, 5, 310, 0, 0, 1374, 1377, 5, 300, 0, 0, 1375, 1377, 5, 330, 0, 0, 1376, 1371, 1, 0, 0, 0, 1376, 1373, 1, 0, 0, 0, 1376, 1375, 1, 0, 0, 0, 1377, 51, 1, 0, 0, 0, 1378, 1385, 5, 96, 0, 0, 1379, 1385, 5, 60, 0, 0, 1380, 1385, 5, 80, 0, 0, 1381, 1385, 3, 800, 400, 0, 1382, 1385, 3, 832, 416, 0, 1383, 1385, 3, 808, 404, 0, 1384, 1378, 1, 0, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1380, 1, 0, 0, 0, 1384, 1381, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 53, 1, 0, 0, 0, 1386, 1391, 5, 96, 0, 0, 1387, 1391, 5, 60, 0, 0, 1388, 1391, 5, 80, 0, 0, 1389, 1391, 3, 58, 29, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1387, 1, 0, 0, 0, 1390, 1388, 1, 0, 0, 0, 1390, 1389, 1, 0, 0, 0, 1391, 55, 1, 0, 0, 0, 1392, 1407, 3, 808, 404, 0, 1393, 1407, 5, 53, 0, 0, 1394, 1407, 3, 826, 413, 0, 1395, 1396, 5, 403, 0, 0, 1396, 1398, 3, 808, 404, 0, 1397, 1399, 3, 668, 334, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1407, 1, 0, 0, 0, 1400, 1401, 5, 403, 0, 0, 1401, 1402, 3, 660, 330, 0, 1402, 1403, 3, 808, 404, 0, 1403, 1407, 1, 0, 0, 0, 1404, 1407, 3, 202, 101, 0, 1405, 1407, 5, 254, 0, 0, 1406, 1392, 1, 0, 0, 0, 1406, 1393, 1, 0, 0, 0, 1406, 1394, 1, 0, 0, 0, 1406, 1395, 1, 0, 0, 0, 1406, 1400, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1405, 1, 0, 0, 0, 1407, 57, 1, 0, 0, 0, 1408, 1411, 3, 822, 411, 0, 1409, 1411, 3, 808, 404, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1409, 1, 0, 0, 0, 1411, 59, 1, 0, 0, 0, 1412, 1413, 5, 313, 0, 0, 1413, 1414, 3, 62, 31, 0, 1414, 61, 1, 0, 0, 0, 1415, 1416, 5, 418, 0, 0, 1416, 1425, 5, 386, 0, 0, 1417, 1418, 5, 356, 0, 0, 1418, 1419, 5, 244, 0, 0, 1419, 1425, 5, 251, 0, 0, 1420, 1421, 5, 332, 0, 0, 1421, 1425, 5, 106, 0, 0, 1422, 1425, 5, 30, 0, 0, 1423, 1425, 3, 44, 22, 0, 1424, 1415, 1, 0, 0, 0, 1424, 1417, 1, 0, 0, 0, 1424, 1420, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1424, 1423, 1, 0, 0, 0, 1425, 63, 1, 0, 0, 0, 1426, 1427, 5, 333, 0, 0, 1427, 1430, 3, 38, 19, 0, 1428, 1430, 3, 60, 30, 0, 1429, 1426, 1, 0, 0, 0, 1429, 1428, 1, 0, 0, 0, 1430, 65, 1, 0, 0, 0, 1431, 1432, 5, 333, 0, 0, 1432, 1435, 3, 42, 21, 0, 1433, 1435, 3, 60, 30, 0, 1434, 1431, 1, 0, 0, 0, 1434, 1433, 1, 0, 0, 0, 1435, 67, 1, 0, 0, 0, 1436, 1446, 5, 335, 0, 0, 1437, 1447, 3, 44, 22, 0, 1438, 1439, 5, 418, 0, 0, 1439, 1447, 5, 386, 0, 0, 1440, 1441, 5, 356, 0, 0, 1441, 1442, 5, 244, 0, 0, 1442, 1447, 5, 251, 0, 0, 1443, 1444, 5, 332, 0, 0, 1444, 1447, 5, 106, 0, 0, 1445, 1447, 5, 30, 0, 0, 1446, 1437, 1, 0, 0, 0, 1446, 1438, 1, 0, 0, 0, 1446, 1440, 1, 0, 0, 0, 1446, 1443, 1, 0, 0, 0, 1446, 1445, 1, 0, 0, 0, 1447, 69, 1, 0, 0, 0, 1448, 1449, 5, 333, 0, 0, 1449, 1452, 5, 165, 0, 0, 1450, 1453, 5, 30, 0, 0, 1451, 1453, 3, 760, 380, 0, 1452, 1450, 1, 0, 0, 0, 1452, 1451, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 7, 9, 0, 0, 1455, 71, 1, 0, 0, 0, 1456, 1457, 5, 155, 0, 0, 1457, 73, 1, 0, 0, 0, 1458, 1459, 5, 187, 0, 0, 1459, 1460, 7, 10, 0, 0, 1460, 75, 1, 0, 0, 0, 1461, 1462, 5, 138, 0, 0, 1462, 1464, 5, 92, 0, 0, 1463, 1465, 3, 422, 211, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 3, 624, 312, 0, 1467, 1470, 3, 78, 39, 0, 1468, 1470, 3, 88, 44, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1468, 1, 0, 0, 0, 1470, 1583, 1, 0, 0, 0, 1471, 1472, 5, 138, 0, 0, 1472, 1473, 5, 92, 0, 0, 1473, 1474, 5, 30, 0, 0, 1474, 1475, 5, 68, 0, 0, 1475, 1479, 3, 176, 88, 0, 1476, 1477, 5, 281, 0, 0, 1477, 1478, 5, 147, 0, 0, 1478, 1480, 3, 816, 408, 0, 1479, 1476, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 5, 333, 0, 0, 1482, 1483, 5, 351, 0, 0, 1483, 1485, 3, 768, 384, 0, 1484, 1486, 5, 272, 0, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1583, 1, 0, 0, 0, 1487, 1488, 5, 138, 0, 0, 1488, 1490, 5, 92, 0, 0, 1489, 1491, 3, 422, 211, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 3, 774, 387, 0, 1493, 1498, 3, 90, 45, 0, 1494, 1495, 5, 62, 0, 0, 1495, 1496, 5, 422, 0, 0, 1496, 1499, 3, 80, 40, 0, 1497, 1499, 5, 53, 0, 0, 1498, 1494, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 1583, 1, 0, 0, 0, 1500, 1501, 5, 138, 0, 0, 1501, 1503, 5, 92, 0, 0, 1502, 1504, 3, 422, 211, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 3, 774, 387, 0, 1506, 1507, 5, 436, 0, 0, 1507, 1508, 5, 285, 0, 0, 1508, 1510, 3, 780, 390, 0, 1509, 1511, 7, 11, 0, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1583, 1, 0, 0, 0, 1512, 1513, 5, 138, 0, 0, 1513, 1515, 5, 226, 0, 0, 1514, 1516, 3, 422, 211, 0, 1515, 1514, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1520, 3, 780, 390, 0, 1518, 1521, 3, 78, 39, 0, 1519, 1521, 3, 90, 45, 0, 1520, 1518, 1, 0, 0, 0, 1520, 1519, 1, 0, 0, 0, 1521, 1583, 1, 0, 0, 0, 1522, 1523, 5, 138, 0, 0, 1523, 1524, 5, 226, 0, 0, 1524, 1525, 5, 30, 0, 0, 1525, 1526, 5, 68, 0, 0, 1526, 1530, 3, 176, 88, 0, 1527, 1528, 5, 281, 0, 0, 1528, 1529, 5, 147, 0, 0, 1529, 1531, 3, 816, 408, 0, 1530, 1527, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 5, 333, 0, 0, 1533, 1535, 3, 176, 88, 0, 1534, 1536, 5, 272, 0, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1583, 1, 0, 0, 0, 1537, 1538, 5, 138, 0, 0, 1538, 1540, 5, 328, 0, 0, 1539, 1541, 3, 422, 211, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 3, 780, 390, 0, 1543, 1544, 3, 78, 39, 0, 1544, 1583, 1, 0, 0, 0, 1545, 1547, 5, 138, 0, 0, 1546, 1548, 5, 259, 0, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 5, 376, 0, 0, 1550, 1552, 3, 422, 211, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 3, 778, 389, 0, 1554, 1555, 3, 78, 39, 0, 1555, 1583, 1, 0, 0, 0, 1556, 1557, 5, 138, 0, 0, 1557, 1558, 5, 259, 0, 0, 1558, 1559, 5, 376, 0, 0, 1559, 1560, 5, 30, 0, 0, 1560, 1561, 5, 68, 0, 0, 1561, 1565, 3, 176, 88, 0, 1562, 1563, 5, 281, 0, 0, 1563, 1564, 5, 147, 0, 0, 1564, 1566, 3, 816, 408, 0, 1565, 1562, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 5, 333, 0, 0, 1568, 1569, 5, 351, 0, 0, 1569, 1571, 3, 768, 384, 0, 1570, 1572, 5, 272, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1583, 1, 0, 0, 0, 1573, 1574, 5, 138, 0, 0, 1574, 1575, 5, 63, 0, 0, 1575, 1577, 5, 92, 0, 0, 1576, 1578, 3, 422, 211, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 3, 624, 312, 0, 1580, 1581, 3, 78, 39, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1461, 1, 0, 0, 0, 1582, 1471, 1, 0, 0, 0, 1582, 1487, 1, 0, 0, 0, 1582, 1500, 1, 0, 0, 0, 1582, 1512, 1, 0, 0, 0, 1582, 1522, 1, 0, 0, 0, 1582, 1537, 1, 0, 0, 0, 1582, 1545, 1, 0, 0, 0, 1582, 1556, 1, 0, 0, 0, 1582, 1573, 1, 0, 0, 0, 1583, 77, 1, 0, 0, 0, 1584, 1589, 3, 92, 46, 0, 1585, 1586, 5, 6, 0, 0, 1586, 1588, 3, 92, 46, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 79, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 68, 0, 0, 1593, 1602, 3, 534, 267, 0, 1594, 1595, 5, 64, 0, 0, 1595, 1596, 3, 82, 41, 0, 1596, 1597, 5, 94, 0, 0, 1597, 1598, 3, 82, 41, 0, 1598, 1602, 1, 0, 0, 0, 1599, 1600, 5, 105, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1592, 1, 0, 0, 0, 1601, 1594, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 81, 1, 0, 0, 0, 1603, 1604, 5, 2, 0, 0, 1604, 1609, 3, 84, 42, 0, 1605, 1606, 5, 6, 0, 0, 1606, 1608, 3, 84, 42, 0, 1607, 1605, 1, 0, 0, 0, 1608, 1611, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1609, 1, 0, 0, 0, 1612, 1613, 5, 3, 0, 0, 1613, 83, 1, 0, 0, 0, 1614, 1618, 3, 534, 267, 0, 1615, 1618, 5, 262, 0, 0, 1616, 1618, 5, 260, 0, 0, 1617, 1614, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 85, 1, 0, 0, 0, 1619, 1620, 5, 2, 0, 0, 1620, 1621, 5, 533, 0, 0, 1621, 1622, 3, 202, 101, 0, 1622, 1623, 5, 6, 0, 0, 1623, 1624, 5, 534, 0, 0, 1624, 1625, 3, 202, 101, 0, 1625, 1626, 5, 3, 0, 0, 1626, 87, 1, 0, 0, 0, 1627, 1628, 3, 90, 45, 0, 1628, 1629, 3, 106, 53, 0, 1629, 1634, 1, 0, 0, 0, 1630, 1631, 5, 436, 0, 0, 1631, 1632, 5, 285, 0, 0, 1632, 1634, 3, 780, 390, 0, 1633, 1627, 1, 0, 0, 0, 1633, 1630, 1, 0, 0, 0, 1634, 89, 1, 0, 0, 0, 1635, 1636, 5, 435, 0, 0, 1636, 1637, 5, 285, 0, 0, 1637, 1638, 3, 780, 390, 0, 1638, 91, 1, 0, 0, 0, 1639, 1642, 5, 133, 0, 0, 1640, 1641, 5, 45, 0, 0, 1641, 1643, 3, 818, 409, 0, 1642, 1640, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1873, 3, 142, 71, 0, 1645, 1646, 5, 138, 0, 0, 1646, 1647, 5, 45, 0, 0, 1647, 1651, 3, 818, 409, 0, 1648, 1650, 3, 272, 136, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1873, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1654, 1655, 5, 372, 0, 0, 1655, 1656, 5, 45, 0, 0, 1656, 1873, 3, 818, 409, 0, 1657, 1658, 5, 191, 0, 0, 1658, 1660, 5, 45, 0, 0, 1659, 1661, 3, 422, 211, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 3, 818, 409, 0, 1663, 1665, 3, 96, 48, 0, 1664, 1663, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1873, 1, 0, 0, 0, 1666, 1667, 5, 333, 0, 0, 1667, 1668, 5, 379, 0, 0, 1668, 1873, 7, 12, 0, 0, 1669, 1670, 5, 158, 0, 0, 1670, 1671, 5, 80, 0, 0, 1671, 1873, 3, 818, 409, 0, 1672, 1673, 5, 333, 0, 0, 1673, 1873, 7, 13, 0, 0, 1674, 1676, 5, 193, 0, 0, 1675, 1677, 7, 14, 0, 0, 1676, 1675, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1873, 5, 357, 0, 0, 1679, 1680, 5, 186, 0, 0, 1680, 1684, 5, 357, 0, 0, 1681, 1685, 5, 30, 0, 0, 1682, 1685, 5, 99, 0, 0, 1683, 1685, 3, 818, 409, 0, 1684, 1681, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1683, 1, 0, 0, 0, 1685, 1873, 1, 0, 0, 0, 1686, 1687, 5, 193, 0, 0, 1687, 1688, 7, 14, 0, 0, 1688, 1689, 5, 321, 0, 0, 1689, 1873, 3, 818, 409, 0, 1690, 1691, 5, 186, 0, 0, 1691, 1692, 5, 321, 0, 0, 1692, 1873, 3, 818, 409, 0, 1693, 1695, 5, 269, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1873, 3, 780, 390, 0, 1698, 1699, 5, 275, 0, 0, 1699, 1873, 3, 316, 158, 0, 1700, 1701, 5, 77, 0, 0, 1701, 1873, 5, 275, 0, 0, 1702, 1703, 5, 282, 0, 0, 1703, 1704, 5, 94, 0, 0, 1704, 1873, 3, 814, 407, 0, 1705, 1706, 5, 333, 0, 0, 1706, 1707, 5, 351, 0, 0, 1707, 1873, 3, 768, 384, 0, 1708, 1709, 5, 312, 0, 0, 1709, 1714, 5, 219, 0, 0, 1710, 1715, 5, 270, 0, 0, 1711, 1715, 5, 113, 0, 0, 1712, 1715, 5, 53, 0, 0, 1713, 1715, 3, 180, 90, 0, 1714, 1710, 1, 0, 0, 0, 1714, 1711, 1, 0, 0, 0, 1714, 1712, 1, 0, 0, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1873, 1, 0, 0, 0, 1716, 1723, 5, 193, 0, 0, 1717, 1723, 5, 186, 0, 0, 1718, 1720, 5, 269, 0, 0, 1719, 1718, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1723, 5, 209, 0, 0, 1722, 1716, 1, 0, 0, 0, 1722, 1717, 1, 0, 0, 0, 1722, 1719, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 5, 414, 0, 0, 1725, 1726, 5, 251, 0, 0, 1726, 1873, 5, 327, 0, 0, 1727, 1729, 5, 191, 0, 0, 1728, 1730, 5, 44, 0, 0, 1729, 1728, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1732, 1, 0, 0, 0, 1731, 1733, 3, 422, 211, 0, 1732, 1731, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1736, 3, 800, 400, 0, 1735, 1737, 3, 96, 48, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1873, 1, 0, 0, 0, 1738, 1740, 5, 133, 0, 0, 1739, 1741, 5, 44, 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1744, 3, 294, 147, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1873, 3, 132, 66, 0, 1746, 1748, 5, 138, 0, 0, 1747, 1749, 5, 44, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1753, 3, 800, 400, 0, 1751, 1754, 3, 94, 47, 0, 1752, 1754, 3, 222, 111, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1752, 1, 0, 0, 0, 1754, 1873, 1, 0, 0, 0, 1755, 1757, 5, 138, 0, 0, 1756, 1758, 5, 44, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 3, 800, 400, 0, 1760, 1761, 7, 15, 0, 0, 1761, 1762, 5, 77, 0, 0, 1762, 1763, 5, 78, 0, 0, 1763, 1873, 1, 0, 0, 0, 1764, 1766, 5, 138, 0, 0, 1765, 1767, 5, 44, 0, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 3, 800, 400, 0, 1769, 1770, 5, 191, 0, 0, 1770, 1772, 5, 437, 0, 0, 1771, 1773, 3, 422, 211, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1873, 1, 0, 0, 0, 1774, 1776, 5, 138, 0, 0, 1775, 1777, 5, 44, 0, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 3, 800, 400, 0, 1779, 1780, 5, 333, 0, 0, 1780, 1781, 5, 342, 0, 0, 1781, 1782, 3, 812, 406, 0, 1782, 1873, 1, 0, 0, 0, 1783, 1785, 5, 138, 0, 0, 1784, 1786, 5, 44, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 3, 800, 400, 0, 1788, 1783, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 7, 16, 0, 0, 1791, 1873, 3, 100, 50, 0, 1792, 1794, 5, 138, 0, 0, 1793, 1795, 5, 44, 0, 0, 1794, 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 3, 800, 400, 0, 1797, 1798, 5, 333, 0, 0, 1798, 1799, 5, 345, 0, 0, 1799, 1800, 3, 818, 409, 0, 1800, 1873, 1, 0, 0, 0, 1801, 1803, 5, 138, 0, 0, 1802, 1804, 5, 44, 0, 0, 1803, 1802, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 3, 800, 400, 0, 1806, 1807, 5, 133, 0, 0, 1807, 1808, 5, 438, 0, 0, 1808, 1809, 3, 138, 69, 0, 1809, 1810, 5, 36, 0, 0, 1810, 1819, 5, 219, 0, 0, 1811, 1813, 5, 2, 0, 0, 1812, 1814, 3, 200, 100, 0, 1813, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 5, 3, 0, 0, 1818, 1820, 1, 0, 0, 0, 1819, 1811, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1873, 1, 0, 0, 0, 1821, 1823, 5, 138, 0, 0, 1822, 1824, 5, 44, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1839, 3, 800, 400, 0, 1826, 1831, 5, 314, 0, 0, 1827, 1829, 5, 105, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1832, 3, 202, 101, 0, 1831, 1828, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1840, 1, 0, 0, 0, 1833, 1837, 5, 333, 0, 0, 1834, 1838, 3, 200, 100, 0, 1835, 1836, 5, 438, 0, 0, 1836, 1838, 3, 138, 69, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1826, 1, 0, 0, 0, 1839, 1833, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1873, 1, 0, 0, 0, 1843, 1845, 5, 138, 0, 0, 1844, 1846, 5, 44, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 3, 800, 400, 0, 1848, 1849, 5, 191, 0, 0, 1849, 1851, 5, 219, 0, 0, 1850, 1852, 3, 422, 211, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1873, 1, 0, 0, 0, 1853, 1855, 5, 138, 0, 0, 1854, 1856, 5, 44, 0, 0, 1855, 1854, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1860, 3, 800, 400, 0, 1858, 1859, 5, 333, 0, 0, 1859, 1861, 5, 174, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 5, 360, 0, 0, 1863, 1865, 3, 652, 326, 0, 1864, 1866, 3, 98, 49, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1869, 1, 0, 0, 0, 1867, 1868, 5, 100, 0, 0, 1868, 1870, 3, 674, 337, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1873, 1, 0, 0, 0, 1871, 1873, 3, 222, 111, 0, 1872, 1639, 1, 0, 0, 0, 1872, 1645, 1, 0, 0, 0, 1872, 1654, 1, 0, 0, 0, 1872, 1657, 1, 0, 0, 0, 1872, 1666, 1, 0, 0, 0, 1872, 1669, 1, 0, 0, 0, 1872, 1672, 1, 0, 0, 0, 1872, 1674, 1, 0, 0, 0, 1872, 1679, 1, 0, 0, 0, 1872, 1686, 1, 0, 0, 0, 1872, 1690, 1, 0, 0, 0, 1872, 1694, 1, 0, 0, 0, 1872, 1698, 1, 0, 0, 0, 1872, 1700, 1, 0, 0, 0, 1872, 1702, 1, 0, 0, 0, 1872, 1705, 1, 0, 0, 0, 1872, 1708, 1, 0, 0, 0, 1872, 1722, 1, 0, 0, 0, 1872, 1727, 1, 0, 0, 0, 1872, 1738, 1, 0, 0, 0, 1872, 1746, 1, 0, 0, 0, 1872, 1755, 1, 0, 0, 0, 1872, 1764, 1, 0, 0, 0, 1872, 1774, 1, 0, 0, 0, 1872, 1788, 1, 0, 0, 0, 1872, 1792, 1, 0, 0, 0, 1872, 1801, 1, 0, 0, 0, 1872, 1821, 1, 0, 0, 0, 1872, 1843, 1, 0, 0, 0, 1872, 1853, 1, 0, 0, 0, 1872, 1871, 1, 0, 0, 0, 1873, 93, 1, 0, 0, 0, 1874, 1875, 5, 333, 0, 0, 1875, 1876, 5, 53, 0, 0, 1876, 1880, 3, 674, 337, 0, 1877, 1878, 5, 191, 0, 0, 1878, 1880, 5, 53, 0, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 95, 1, 0, 0, 0, 1881, 1882, 7, 17, 0, 0, 1882, 97, 1, 0, 0, 0, 1883, 1884, 5, 43, 0, 0, 1884, 1885, 3, 316, 158, 0, 1885, 99, 1, 0, 0, 0, 1886, 1887, 5, 2, 0, 0, 1887, 1892, 3, 104, 52, 0, 1888, 1889, 5, 6, 0, 0, 1889, 1891, 3, 104, 52, 0, 1890, 1888, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1896, 5, 3, 0, 0, 1896, 101, 1, 0, 0, 0, 1897, 1898, 5, 105, 0, 0, 1898, 1899, 3, 100, 50, 0, 1899, 103, 1, 0, 0, 0, 1900, 1905, 3, 824, 412, 0, 1901, 1902, 5, 10, 0, 0, 1902, 1906, 3, 288, 144, 0, 1903, 1904, 5, 11, 0, 0, 1904, 1906, 3, 286, 143, 0, 1905, 1901, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 105, 1, 0, 0, 0, 1907, 1908, 5, 62, 0, 0, 1908, 1909, 5, 422, 0, 0, 1909, 1910, 5, 105, 0, 0, 1910, 1911, 5, 2, 0, 0, 1911, 1912, 3, 822, 411, 0, 1912, 1919, 5, 571, 0, 0, 1913, 1914, 5, 6, 0, 0, 1914, 1915, 3, 822, 411, 0, 1915, 1916, 5, 571, 0, 0, 1916, 1918, 1, 0, 0, 0, 1917, 1913, 1, 0, 0, 0, 1918, 1921, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1919, 1, 0, 0, 0, 1922, 1923, 5, 3, 0, 0, 1923, 1937, 1, 0, 0, 0, 1924, 1925, 5, 62, 0, 0, 1925, 1926, 5, 422, 0, 0, 1926, 1927, 5, 68, 0, 0, 1927, 1937, 3, 534, 267, 0, 1928, 1929, 5, 62, 0, 0, 1929, 1930, 5, 422, 0, 0, 1930, 1931, 5, 64, 0, 0, 1931, 1932, 3, 534, 267, 0, 1932, 1933, 5, 94, 0, 0, 1933, 1934, 3, 534, 267, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1937, 5, 53, 0, 0, 1936, 1907, 1, 0, 0, 0, 1936, 1924, 1, 0, 0, 0, 1936, 1928, 1, 0, 0, 0, 1936, 1935, 1, 0, 0, 0, 1937, 107, 1, 0, 0, 0, 1938, 1939, 5, 138, 0, 0, 1939, 1940, 5, 360, 0, 0, 1940, 1941, 3, 316, 158, 0, 1941, 1946, 3, 110, 55, 0, 1942, 1943, 5, 6, 0, 0, 1943, 1945, 3, 110, 55, 0, 1944, 1942, 1, 0, 0, 0, 1945, 1948, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 109, 1, 0, 0, 0, 1948, 1946, 1, 0, 0, 0, 1949, 1950, 5, 133, 0, 0, 1950, 1951, 5, 143, 0, 0, 1951, 1953, 3, 644, 322, 0, 1952, 1954, 3, 96, 48, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1980, 1, 0, 0, 0, 1955, 1956, 5, 191, 0, 0, 1956, 1958, 5, 143, 0, 0, 1957, 1959, 3, 422, 211, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1962, 3, 818, 409, 0, 1961, 1963, 3, 96, 48, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1980, 1, 0, 0, 0, 1964, 1965, 5, 138, 0, 0, 1965, 1966, 5, 143, 0, 0, 1966, 1969, 3, 818, 409, 0, 1967, 1968, 5, 333, 0, 0, 1968, 1970, 5, 174, 0, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 5, 360, 0, 0, 1972, 1974, 3, 652, 326, 0, 1973, 1975, 3, 98, 49, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 96, 48, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1949, 1, 0, 0, 0, 1979, 1955, 1, 0, 0, 0, 1979, 1964, 1, 0, 0, 0, 1980, 111, 1, 0, 0, 0, 1981, 1984, 5, 157, 0, 0, 1982, 1985, 3, 818, 409, 0, 1983, 1985, 5, 30, 0, 0, 1984, 1982, 1, 0, 0, 0, 1984, 1983, 1, 0, 0, 0, 1985, 113, 1, 0, 0, 0, 1986, 1988, 5, 169, 0, 0, 1987, 1989, 5, 107, 0, 0, 1988, 1987, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1992, 3, 774, 387, 0, 1991, 1993, 3, 144, 72, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1996, 7, 18, 0, 0, 1995, 1997, 5, 297, 0, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2001, 1, 0, 0, 0, 1998, 2002, 3, 808, 404, 0, 1999, 2002, 5, 343, 0, 0, 2000, 2002, 5, 344, 0, 0, 2001, 1998, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2001, 2000, 1, 0, 0, 0, 2002, 2008, 1, 0, 0, 0, 2003, 2005, 5, 100, 0, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 5, 184, 0, 0, 2007, 2009, 3, 808, 404, 0, 2008, 2004, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2011, 1, 0, 0, 0, 2010, 2012, 5, 105, 0, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 3, 116, 58, 0, 2014, 2016, 3, 638, 319, 0, 2015, 2014, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2036, 1, 0, 0, 0, 2017, 2018, 5, 169, 0, 0, 2018, 2019, 5, 2, 0, 0, 2019, 2020, 3, 530, 265, 0, 2020, 2021, 5, 3, 0, 0, 2021, 2023, 5, 94, 0, 0, 2022, 2024, 5, 297, 0, 0, 2023, 2022, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2028, 1, 0, 0, 0, 2025, 2029, 3, 808, 404, 0, 2026, 2029, 5, 343, 0, 0, 2027, 2029, 5, 344, 0, 0, 2028, 2025, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2027, 1, 0, 0, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2032, 5, 105, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 3, 116, 58, 0, 2034, 2036, 1, 0, 0, 0, 2035, 1986, 1, 0, 0, 0, 2035, 2017, 1, 0, 0, 0, 2036, 115, 1, 0, 0, 0, 2037, 2061, 5, 107, 0, 0, 2038, 2061, 5, 112, 0, 0, 2039, 2041, 7, 19, 0, 0, 2040, 2042, 5, 36, 0, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2061, 3, 808, 404, 0, 2044, 2061, 5, 171, 0, 0, 2045, 2061, 5, 216, 0, 0, 2046, 2047, 5, 209, 0, 0, 2047, 2050, 5, 298, 0, 0, 2048, 2051, 3, 148, 74, 0, 2049, 2051, 5, 9, 0, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2049, 1, 0, 0, 0, 2051, 2061, 1, 0, 0, 0, 2052, 2054, 5, 209, 0, 0, 2053, 2055, 5, 77, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 78, 0, 0, 2057, 2061, 3, 148, 74, 0, 2058, 2059, 5, 194, 0, 0, 2059, 2061, 3, 808, 404, 0, 2060, 2037, 1, 0, 0, 0, 2060, 2038, 1, 0, 0, 0, 2060, 2039, 1, 0, 0, 0, 2060, 2044, 1, 0, 0, 0, 2060, 2045, 1, 0, 0, 0, 2060, 2046, 1, 0, 0, 0, 2060, 2052, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2077, 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2066, 5, 2, 0, 0, 2066, 2071, 3, 118, 59, 0, 2067, 2068, 5, 6, 0, 0, 2068, 2070, 3, 118, 59, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2073, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2074, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2075, 5, 3, 0, 0, 2075, 2077, 1, 0, 0, 0, 2076, 2062, 1, 0, 0, 0, 2076, 2065, 1, 0, 0, 0, 2077, 117, 1, 0, 0, 0, 2078, 2093, 3, 824, 412, 0, 2079, 2094, 3, 54, 27, 0, 2080, 2094, 3, 202, 101, 0, 2081, 2094, 5, 9, 0, 0, 2082, 2083, 5, 2, 0, 0, 2083, 2088, 3, 52, 26, 0, 2084, 2085, 5, 6, 0, 0, 2085, 2087, 3, 52, 26, 0, 2086, 2084, 1, 0, 0, 0, 2087, 2090, 1, 0, 0, 0, 2088, 2086, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2091, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2091, 2092, 5, 3, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2079, 1, 0, 0, 0, 2093, 2080, 1, 0, 0, 0, 2093, 2081, 1, 0, 0, 0, 2093, 2082, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 119, 1, 0, 0, 0, 2095, 2097, 5, 46, 0, 0, 2096, 2098, 3, 122, 61, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 5, 92, 0, 0, 2100, 2102, 3, 294, 147, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 2169, 3, 772, 386, 0, 2104, 2106, 5, 2, 0, 0, 2105, 2107, 3, 126, 63, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2110, 5, 3, 0, 0, 2109, 2111, 3, 164, 82, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 166, 83, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2117, 3, 170, 85, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 172, 86, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2123, 3, 174, 87, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2126, 3, 176, 88, 0, 2125, 2124, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2170, 1, 0, 0, 0, 2127, 2128, 5, 275, 0, 0, 2128, 2130, 3, 316, 158, 0, 2129, 2131, 3, 124, 62, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2134, 3, 166, 83, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2136, 1, 0, 0, 0, 2135, 2137, 3, 170, 85, 0, 2136, 2135, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2139, 1, 0, 0, 0, 2138, 2140, 3, 172, 86, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2143, 3, 174, 87, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 176, 88, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2170, 1, 0, 0, 0, 2147, 2148, 5, 285, 0, 0, 2148, 2149, 5, 275, 0, 0, 2149, 2151, 3, 780, 390, 0, 2150, 2152, 3, 124, 62, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 3, 106, 53, 0, 2154, 2156, 3, 166, 83, 0, 2155, 2154, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2159, 3, 170, 85, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2161, 1, 0, 0, 0, 2160, 2162, 3, 172, 86, 0, 2161, 2160, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2165, 3, 174, 87, 0, 2164, 2163, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 1, 0, 0, 0, 2166, 2168, 3, 176, 88, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2104, 1, 0, 0, 0, 2169, 2127, 1, 0, 0, 0, 2169, 2147, 1, 0, 0, 0, 2170, 121, 1, 0, 0, 0, 2171, 2177, 5, 354, 0, 0, 2172, 2177, 5, 352, 0, 0, 2173, 2174, 7, 20, 0, 0, 2174, 2177, 7, 21, 0, 0, 2175, 2177, 5, 367, 0, 0, 2176, 2171, 1, 0, 0, 0, 2176, 2172, 1, 0, 0, 0, 2176, 2173, 1, 0, 0, 0, 2176, 2175, 1, 0, 0, 0, 2177, 123, 1, 0, 0, 0, 2178, 2179, 5, 2, 0, 0, 2179, 2184, 3, 130, 65, 0, 2180, 2181, 5, 6, 0, 0, 2181, 2183, 3, 130, 65, 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, 2188, 5, 3, 0, 0, 2188, 125, 1, 0, 0, 0, 2189, 2194, 3, 128, 64, 0, 2190, 2191, 5, 6, 0, 0, 2191, 2193, 3, 128, 64, 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, 127, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2198, 5, 45, 0, 0, 2198, 2200, 3, 818, 409, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2213, 3, 142, 71, 0, 2202, 2213, 3, 132, 66, 0, 2203, 2204, 5, 120, 0, 0, 2204, 2209, 3, 780, 390, 0, 2205, 2206, 7, 22, 0, 0, 2206, 2208, 3, 140, 70, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2211, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2212, 2199, 1, 0, 0, 0, 2212, 2202, 1, 0, 0, 0, 2212, 2203, 1, 0, 0, 0, 2213, 129, 1, 0, 0, 0, 2214, 2217, 3, 802, 401, 0, 2215, 2216, 5, 105, 0, 0, 2216, 2218, 5, 280, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2222, 1, 0, 0, 0, 2219, 2221, 3, 134, 67, 0, 2220, 2219, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2231, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 5, 45, 0, 0, 2226, 2228, 3, 818, 409, 0, 2227, 2225, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2231, 3, 142, 71, 0, 2230, 2214, 1, 0, 0, 0, 2230, 2227, 1, 0, 0, 0, 2231, 131, 1, 0, 0, 0, 2232, 2233, 3, 802, 401, 0, 2233, 2235, 3, 652, 326, 0, 2234, 2236, 3, 220, 110, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2246, 1, 0, 0, 0, 2237, 2244, 5, 345, 0, 0, 2238, 2245, 5, 544, 0, 0, 2239, 2245, 5, 205, 0, 0, 2240, 2245, 5, 545, 0, 0, 2241, 2245, 5, 546, 0, 0, 2242, 2245, 5, 53, 0, 0, 2243, 2245, 3, 818, 409, 0, 2244, 2238, 1, 0, 0, 0, 2244, 2239, 1, 0, 0, 0, 2244, 2240, 1, 0, 0, 0, 2244, 2241, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2243, 1, 0, 0, 0, 2245, 2247, 1, 0, 0, 0, 2246, 2237, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2250, 1, 0, 0, 0, 2248, 2249, 5, 543, 0, 0, 2249, 2251, 3, 818, 409, 0, 2250, 2248, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2253, 1, 0, 0, 0, 2252, 2254, 3, 98, 49, 0, 2253, 2252, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2256, 5, 105, 0, 0, 2256, 2258, 5, 280, 0, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2262, 1, 0, 0, 0, 2259, 2261, 3, 134, 67, 0, 2260, 2259, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 133, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2266, 5, 45, 0, 0, 2266, 2268, 3, 818, 409, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2274, 3, 136, 68, 0, 2270, 2272, 5, 77, 0, 0, 2271, 2270, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2275, 5, 54, 0, 0, 2274, 2271, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2278, 1, 0, 0, 0, 2276, 2277, 5, 69, 0, 0, 2277, 2279, 7, 9, 0, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 135, 1, 0, 0, 0, 2280, 2282, 5, 77, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2361, 5, 78, 0, 0, 2284, 2286, 5, 98, 0, 0, 2285, 2287, 3, 400, 200, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2289, 1, 0, 0, 0, 2288, 2290, 3, 178, 89, 0, 2289, 2288, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2361, 1, 0, 0, 0, 2291, 2297, 5, 98, 0, 0, 2292, 2294, 5, 273, 0, 0, 2293, 2295, 5, 77, 0, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2298, 5, 56, 0, 0, 2297, 2292, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2301, 1, 0, 0, 0, 2299, 2300, 5, 441, 0, 0, 2300, 2302, 3, 360, 180, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2305, 3, 572, 286, 0, 2304, 2303, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2307, 1, 0, 0, 0, 2306, 2308, 3, 178, 89, 0, 2307, 2306, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2361, 1, 0, 0, 0, 2309, 2310, 5, 85, 0, 0, 2310, 2312, 5, 245, 0, 0, 2311, 2313, 3, 400, 200, 0, 2312, 2311, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2316, 3, 178, 89, 0, 2315, 2314, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2361, 1, 0, 0, 0, 2317, 2318, 5, 42, 0, 0, 2318, 2319, 5, 2, 0, 0, 2319, 2320, 3, 674, 337, 0, 2320, 2323, 5, 3, 0, 0, 2321, 2322, 5, 269, 0, 0, 2322, 2324, 5, 228, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2361, 1, 0, 0, 0, 2325, 2326, 5, 53, 0, 0, 2326, 2361, 3, 682, 341, 0, 2327, 2328, 5, 438, 0, 0, 2328, 2329, 3, 138, 69, 0, 2329, 2346, 5, 36, 0, 0, 2330, 2339, 5, 219, 0, 0, 2331, 2333, 5, 2, 0, 0, 2332, 2334, 3, 200, 100, 0, 2333, 2332, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 5, 3, 0, 0, 2338, 2340, 1, 0, 0, 0, 2339, 2331, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2347, 1, 0, 0, 0, 2341, 2342, 5, 2, 0, 0, 2342, 2343, 3, 674, 337, 0, 2343, 2344, 5, 3, 0, 0, 2344, 2345, 5, 440, 0, 0, 2345, 2347, 1, 0, 0, 0, 2346, 2330, 1, 0, 0, 0, 2346, 2341, 1, 0, 0, 0, 2347, 2361, 1, 0, 0, 0, 2348, 2349, 5, 86, 0, 0, 2349, 2351, 3, 780, 390, 0, 2350, 2352, 3, 144, 72, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2354, 1, 0, 0, 0, 2353, 2355, 3, 152, 76, 0, 2354, 2353, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2357, 1, 0, 0, 0, 2356, 2358, 3, 156, 78, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2361, 1, 0, 0, 0, 2359, 2361, 3, 98, 49, 0, 2360, 2281, 1, 0, 0, 0, 2360, 2284, 1, 0, 0, 0, 2360, 2291, 1, 0, 0, 0, 2360, 2309, 1, 0, 0, 0, 2360, 2317, 1, 0, 0, 0, 2360, 2325, 1, 0, 0, 0, 2360, 2327, 1, 0, 0, 0, 2360, 2348, 1, 0, 0, 0, 2360, 2359, 1, 0, 0, 0, 2361, 137, 1, 0, 0, 0, 2362, 2366, 5, 139, 0, 0, 2363, 2364, 5, 147, 0, 0, 2364, 2366, 5, 53, 0, 0, 2365, 2362, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 139, 1, 0, 0, 0, 2367, 2368, 7, 23, 0, 0, 2368, 141, 1, 0, 0, 0, 2369, 2370, 5, 42, 0, 0, 2370, 2371, 5, 2, 0, 0, 2371, 2372, 3, 674, 337, 0, 2372, 2376, 5, 3, 0, 0, 2373, 2375, 3, 272, 136, 0, 2374, 2373, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2466, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2383, 5, 98, 0, 0, 2380, 2381, 5, 85, 0, 0, 2381, 2383, 5, 245, 0, 0, 2382, 2379, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2407, 1, 0, 0, 0, 2384, 2386, 3, 144, 72, 0, 2385, 2387, 3, 150, 75, 0, 2386, 2385, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2390, 3, 400, 200, 0, 2389, 2388, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 1, 0, 0, 0, 2391, 2393, 3, 178, 89, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2397, 1, 0, 0, 0, 2394, 2396, 3, 272, 136, 0, 2395, 2394, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2408, 1, 0, 0, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2404, 3, 180, 90, 0, 2401, 2403, 3, 272, 136, 0, 2402, 2401, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2384, 1, 0, 0, 0, 2407, 2400, 1, 0, 0, 0, 2408, 2466, 1, 0, 0, 0, 2409, 2411, 5, 199, 0, 0, 2410, 2412, 3, 170, 85, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2414, 5, 2, 0, 0, 2414, 2419, 3, 154, 77, 0, 2415, 2416, 5, 6, 0, 0, 2416, 2418, 3, 154, 77, 0, 2417, 2415, 1, 0, 0, 0, 2418, 2421, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2422, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2422, 2424, 5, 3, 0, 0, 2423, 2425, 3, 150, 75, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2427, 1, 0, 0, 0, 2426, 2428, 3, 400, 200, 0, 2427, 2426, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2430, 1, 0, 0, 0, 2429, 2431, 3, 178, 89, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2437, 1, 0, 0, 0, 2432, 2433, 5, 103, 0, 0, 2433, 2434, 5, 2, 0, 0, 2434, 2435, 3, 674, 337, 0, 2435, 2436, 5, 3, 0, 0, 2436, 2438, 1, 0, 0, 0, 2437, 2432, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2442, 1, 0, 0, 0, 2439, 2441, 3, 272, 136, 0, 2440, 2439, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2466, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2446, 5, 63, 0, 0, 2446, 2447, 5, 245, 0, 0, 2447, 2448, 3, 144, 72, 0, 2448, 2449, 5, 86, 0, 0, 2449, 2451, 3, 780, 390, 0, 2450, 2452, 3, 144, 72, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2454, 1, 0, 0, 0, 2453, 2455, 3, 152, 76, 0, 2454, 2453, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 1, 0, 0, 0, 2456, 2458, 3, 156, 78, 0, 2457, 2456, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2462, 1, 0, 0, 0, 2459, 2461, 3, 272, 136, 0, 2460, 2459, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2369, 1, 0, 0, 0, 2465, 2382, 1, 0, 0, 0, 2465, 2409, 1, 0, 0, 0, 2465, 2445, 1, 0, 0, 0, 2466, 143, 1, 0, 0, 0, 2467, 2468, 5, 2, 0, 0, 2468, 2469, 3, 148, 74, 0, 2469, 2470, 5, 3, 0, 0, 2470, 145, 1, 0, 0, 0, 2471, 2472, 5, 2, 0, 0, 2472, 2477, 3, 802, 401, 0, 2473, 2474, 5, 6, 0, 0, 2474, 2476, 3, 802, 401, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2479, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2481, 5, 3, 0, 0, 2481, 147, 1, 0, 0, 0, 2482, 2487, 3, 800, 400, 0, 2483, 2484, 5, 6, 0, 0, 2484, 2486, 3, 800, 400, 0, 2485, 2483, 1, 0, 0, 0, 2486, 2489, 1, 0, 0, 0, 2487, 2485, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 149, 1, 0, 0, 0, 2489, 2487, 1, 0, 0, 0, 2490, 2491, 5, 441, 0, 0, 2491, 2492, 3, 144, 72, 0, 2492, 151, 1, 0, 0, 0, 2493, 2494, 5, 258, 0, 0, 2494, 2495, 7, 24, 0, 0, 2495, 153, 1, 0, 0, 0, 2496, 2497, 3, 362, 181, 0, 2497, 2504, 5, 105, 0, 0, 2498, 2505, 3, 414, 207, 0, 2499, 2500, 5, 278, 0, 0, 2500, 2501, 5, 2, 0, 0, 2501, 2502, 3, 414, 207, 0, 2502, 2503, 5, 3, 0, 0, 2503, 2505, 1, 0, 0, 0, 2504, 2498, 1, 0, 0, 0, 2504, 2499, 1, 0, 0, 0, 2505, 155, 1, 0, 0, 0, 2506, 2508, 3, 158, 79, 0, 2507, 2509, 3, 160, 80, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2515, 1, 0, 0, 0, 2510, 2512, 3, 160, 80, 0, 2511, 2513, 3, 158, 79, 0, 2512, 2511, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 1, 0, 0, 0, 2514, 2506, 1, 0, 0, 0, 2514, 2510, 1, 0, 0, 0, 2515, 157, 1, 0, 0, 0, 2516, 2517, 5, 80, 0, 0, 2517, 2518, 5, 369, 0, 0, 2518, 2519, 3, 162, 81, 0, 2519, 159, 1, 0, 0, 0, 2520, 2521, 5, 80, 0, 0, 2521, 2522, 5, 182, 0, 0, 2522, 2523, 3, 162, 81, 0, 2523, 161, 1, 0, 0, 0, 2524, 2525, 5, 269, 0, 0, 2525, 2534, 5, 132, 0, 0, 2526, 2534, 5, 315, 0, 0, 2527, 2534, 5, 150, 0, 0, 2528, 2529, 5, 333, 0, 0, 2529, 2531, 7, 25, 0, 0, 2530, 2532, 3, 148, 74, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2524, 1, 0, 0, 0, 2533, 2526, 1, 0, 0, 0, 2533, 2527, 1, 0, 0, 0, 2533, 2528, 1, 0, 0, 0, 2534, 163, 1, 0, 0, 0, 2535, 2536, 5, 238, 0, 0, 2536, 2537, 5, 2, 0, 0, 2537, 2538, 3, 760, 380, 0, 2538, 2539, 5, 3, 0, 0, 2539, 165, 1, 0, 0, 0, 2540, 2541, 5, 285, 0, 0, 2541, 2542, 5, 147, 0, 0, 2542, 2543, 3, 818, 409, 0, 2543, 2544, 5, 2, 0, 0, 2544, 2549, 3, 168, 84, 0, 2545, 2546, 5, 6, 0, 0, 2546, 2548, 3, 168, 84, 0, 2547, 2545, 1, 0, 0, 0, 2548, 2551, 1, 0, 0, 0, 2549, 2547, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2549, 1, 0, 0, 0, 2552, 2553, 5, 3, 0, 0, 2553, 167, 1, 0, 0, 0, 2554, 2561, 3, 800, 400, 0, 2555, 2561, 3, 688, 344, 0, 2556, 2557, 5, 2, 0, 0, 2557, 2558, 3, 674, 337, 0, 2558, 2559, 5, 3, 0, 0, 2559, 2561, 1, 0, 0, 0, 2560, 2554, 1, 0, 0, 0, 2560, 2555, 1, 0, 0, 0, 2560, 2556, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 98, 49, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2566, 1, 0, 0, 0, 2565, 2567, 3, 316, 158, 0, 2566, 2565, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 169, 1, 0, 0, 0, 2568, 2569, 5, 100, 0, 0, 2569, 2570, 3, 818, 409, 0, 2570, 171, 1, 0, 0, 0, 2571, 2572, 5, 105, 0, 0, 2572, 2576, 3, 100, 50, 0, 2573, 2574, 7, 26, 0, 0, 2574, 2576, 5, 277, 0, 0, 2575, 2571, 1, 0, 0, 0, 2575, 2573, 1, 0, 0, 0, 2576, 173, 1, 0, 0, 0, 2577, 2578, 5, 80, 0, 0, 2578, 2584, 5, 161, 0, 0, 2579, 2585, 5, 191, 0, 0, 2580, 2581, 5, 182, 0, 0, 2581, 2585, 5, 320, 0, 0, 2582, 2583, 5, 292, 0, 0, 2583, 2585, 5, 320, 0, 0, 2584, 2579, 1, 0, 0, 0, 2584, 2580, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2585, 175, 1, 0, 0, 0, 2586, 2587, 5, 351, 0, 0, 2587, 2588, 3, 770, 385, 0, 2588, 177, 1, 0, 0, 0, 2589, 2590, 5, 100, 0, 0, 2590, 2591, 5, 226, 0, 0, 2591, 2592, 3, 176, 88, 0, 2592, 179, 1, 0, 0, 0, 2593, 2594, 5, 100, 0, 0, 2594, 2595, 5, 226, 0, 0, 2595, 2596, 3, 818, 409, 0, 2596, 181, 1, 0, 0, 0, 2597, 2598, 5, 46, 0, 0, 2598, 2603, 5, 342, 0, 0, 2599, 2601, 3, 294, 147, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2604, 3, 316, 158, 0, 2603, 2600, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2606, 1, 0, 0, 0, 2605, 2607, 3, 144, 72, 0, 2606, 2605, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2618, 5, 80, 0, 0, 2609, 2614, 3, 732, 366, 0, 2610, 2611, 5, 6, 0, 0, 2611, 2613, 3, 732, 366, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2616, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2619, 1, 0, 0, 0, 2616, 2614, 1, 0, 0, 0, 2617, 2619, 3, 730, 365, 0, 2618, 2609, 1, 0, 0, 0, 2618, 2617, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 3, 610, 305, 0, 2621, 183, 1, 0, 0, 0, 2622, 2623, 5, 138, 0, 0, 2623, 2625, 5, 342, 0, 0, 2624, 2626, 3, 422, 211, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2628, 3, 316, 158, 0, 2628, 2629, 5, 333, 0, 0, 2629, 2630, 5, 342, 0, 0, 2630, 2631, 3, 812, 406, 0, 2631, 185, 1, 0, 0, 0, 2632, 2634, 5, 46, 0, 0, 2633, 2635, 3, 122, 61, 0, 2634, 2633, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2638, 5, 92, 0, 0, 2637, 2639, 3, 294, 147, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 3, 188, 94, 0, 2641, 2642, 5, 36, 0, 0, 2642, 2644, 3, 560, 280, 0, 2643, 2645, 3, 190, 95, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 187, 1, 0, 0, 0, 2646, 2648, 3, 772, 386, 0, 2647, 2649, 3, 146, 73, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 170, 85, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 1, 0, 0, 0, 2653, 2655, 3, 172, 86, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2658, 3, 174, 87, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2660, 1, 0, 0, 0, 2659, 2661, 3, 176, 88, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 189, 1, 0, 0, 0, 2662, 2666, 5, 105, 0, 0, 2663, 2667, 5, 174, 0, 0, 2664, 2665, 5, 269, 0, 0, 2665, 2667, 5, 174, 0, 0, 2666, 2663, 1, 0, 0, 0, 2666, 2664, 1, 0, 0, 0, 2667, 191, 1, 0, 0, 0, 2668, 2670, 5, 46, 0, 0, 2669, 2671, 5, 367, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2673, 5, 259, 0, 0, 2673, 2675, 5, 376, 0, 0, 2674, 2676, 3, 294, 147, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 3, 776, 388, 0, 2678, 2680, 3, 146, 73, 0, 2679, 2678, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 1, 0, 0, 0, 2681, 2683, 3, 170, 85, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2686, 3, 102, 51, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2688, 1, 0, 0, 0, 2687, 2689, 3, 176, 88, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 5, 36, 0, 0, 2691, 2693, 3, 560, 280, 0, 2692, 2694, 3, 190, 95, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 193, 1, 0, 0, 0, 2695, 2696, 5, 305, 0, 0, 2696, 2697, 5, 259, 0, 0, 2697, 2699, 5, 376, 0, 0, 2698, 2700, 5, 109, 0, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2703, 3, 778, 389, 0, 2702, 2704, 3, 190, 95, 0, 2703, 2702, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 195, 1, 0, 0, 0, 2705, 2707, 5, 46, 0, 0, 2706, 2708, 3, 122, 61, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2711, 5, 328, 0, 0, 2710, 2712, 3, 294, 147, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2719, 3, 780, 390, 0, 2714, 2716, 3, 200, 100, 0, 2715, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2715, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2715, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 197, 1, 0, 0, 0, 2721, 2722, 5, 138, 0, 0, 2722, 2724, 5, 328, 0, 0, 2723, 2725, 3, 422, 211, 0, 2724, 2723, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 3, 780, 390, 0, 2727, 2729, 3, 200, 100, 0, 2728, 2727, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 199, 1, 0, 0, 0, 2732, 2733, 5, 36, 0, 0, 2733, 2766, 3, 654, 327, 0, 2734, 2736, 5, 148, 0, 0, 2735, 2737, 3, 202, 101, 0, 2736, 2735, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2766, 1, 0, 0, 0, 2738, 2740, 5, 225, 0, 0, 2739, 2741, 5, 147, 0, 0, 2740, 2739, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2766, 3, 202, 101, 0, 2743, 2744, 7, 27, 0, 0, 2744, 2766, 3, 202, 101, 0, 2745, 2746, 5, 269, 0, 0, 2746, 2766, 7, 28, 0, 0, 2747, 2748, 5, 281, 0, 0, 2748, 2749, 5, 147, 0, 0, 2749, 2766, 3, 800, 400, 0, 2750, 2751, 5, 328, 0, 0, 2751, 2752, 5, 266, 0, 0, 2752, 2766, 3, 316, 158, 0, 2753, 2755, 5, 340, 0, 0, 2754, 2756, 5, 105, 0, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2766, 3, 202, 101, 0, 2758, 2760, 5, 314, 0, 0, 2759, 2761, 5, 105, 0, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 1, 0, 0, 0, 2762, 2764, 3, 202, 101, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 1, 0, 0, 0, 2765, 2732, 1, 0, 0, 0, 2765, 2734, 1, 0, 0, 0, 2765, 2738, 1, 0, 0, 0, 2765, 2743, 1, 0, 0, 0, 2765, 2745, 1, 0, 0, 0, 2765, 2747, 1, 0, 0, 0, 2765, 2750, 1, 0, 0, 0, 2765, 2753, 1, 0, 0, 0, 2765, 2758, 1, 0, 0, 0, 2766, 201, 1, 0, 0, 0, 2767, 2769, 7, 29, 0, 0, 2768, 2767, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2773, 5, 573, 0, 0, 2771, 2773, 3, 812, 406, 0, 2772, 2768, 1, 0, 0, 0, 2772, 2771, 1, 0, 0, 0, 2773, 203, 1, 0, 0, 0, 2774, 2776, 5, 46, 0, 0, 2775, 2777, 3, 366, 183, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2779, 1, 0, 0, 0, 2778, 2780, 5, 359, 0, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2782, 1, 0, 0, 0, 2781, 2783, 5, 295, 0, 0, 2782, 2781, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 5, 247, 0, 0, 2785, 2798, 3, 818, 409, 0, 2786, 2787, 5, 215, 0, 0, 2787, 2790, 3, 316, 158, 0, 2788, 2789, 5, 239, 0, 0, 2789, 2791, 3, 316, 158, 0, 2790, 2788, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2796, 1, 0, 0, 0, 2792, 2793, 5, 373, 0, 0, 2793, 2797, 3, 316, 158, 0, 2794, 2795, 5, 269, 0, 0, 2795, 2797, 5, 373, 0, 0, 2796, 2792, 1, 0, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2799, 1, 0, 0, 0, 2798, 2786, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 205, 1, 0, 0, 0, 2800, 2801, 5, 46, 0, 0, 2801, 2804, 3, 176, 88, 0, 2802, 2803, 5, 282, 0, 0, 2803, 2805, 3, 814, 407, 0, 2804, 2802, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2807, 5, 255, 0, 0, 2807, 2809, 3, 808, 404, 0, 2808, 2810, 3, 102, 51, 0, 2809, 2808, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 207, 1, 0, 0, 0, 2811, 2812, 5, 46, 0, 0, 2812, 2814, 5, 204, 0, 0, 2813, 2815, 3, 294, 147, 0, 2814, 2813, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 3, 818, 409, 0, 2817, 2819, 5, 105, 0, 0, 2818, 2817, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 2827, 1, 0, 0, 0, 2820, 2821, 5, 323, 0, 0, 2821, 2826, 3, 790, 395, 0, 2822, 2823, 7, 30, 0, 0, 2823, 2826, 3, 58, 29, 0, 2824, 2826, 5, 150, 0, 0, 2825, 2820, 1, 0, 0, 0, 2825, 2822, 1, 0, 0, 0, 2825, 2824, 1, 0, 0, 0, 2826, 2829, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 209, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2831, 5, 138, 0, 0, 2831, 2832, 5, 204, 0, 0, 2832, 2833, 3, 818, 409, 0, 2833, 2838, 5, 369, 0, 0, 2834, 2835, 5, 94, 0, 0, 2835, 2837, 3, 58, 29, 0, 2836, 2834, 1, 0, 0, 0, 2837, 2840, 1, 0, 0, 0, 2838, 2836, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 211, 1, 0, 0, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2842, 5, 138, 0, 0, 2842, 2843, 5, 204, 0, 0, 2843, 2844, 3, 818, 409, 0, 2844, 2877, 7, 6, 0, 0, 2845, 2846, 5, 443, 0, 0, 2846, 2847, 5, 62, 0, 0, 2847, 2848, 3, 652, 326, 0, 2848, 2849, 5, 247, 0, 0, 2849, 2850, 3, 818, 409, 0, 2850, 2878, 1, 0, 0, 0, 2851, 2852, 5, 442, 0, 0, 2852, 2878, 3, 374, 187, 0, 2853, 2854, 5, 296, 0, 0, 2854, 2878, 3, 378, 189, 0, 2855, 2856, 5, 278, 0, 0, 2856, 2857, 7, 31, 0, 0, 2857, 2858, 3, 316, 158, 0, 2858, 2859, 3, 170, 85, 0, 2859, 2878, 1, 0, 0, 0, 2860, 2861, 5, 278, 0, 0, 2861, 2878, 3, 416, 208, 0, 2862, 2863, 5, 211, 0, 0, 2863, 2878, 3, 382, 191, 0, 2864, 2865, 7, 32, 0, 0, 2865, 2878, 3, 652, 326, 0, 2866, 2867, 5, 41, 0, 0, 2867, 2868, 5, 2, 0, 0, 2868, 2869, 3, 652, 326, 0, 2869, 2870, 5, 36, 0, 0, 2870, 2871, 3, 652, 326, 0, 2871, 2872, 5, 3, 0, 0, 2872, 2878, 1, 0, 0, 0, 2873, 2874, 5, 136, 0, 0, 2874, 2878, 3, 394, 197, 0, 2875, 2878, 3, 312, 156, 0, 2876, 2878, 3, 310, 155, 0, 2877, 2845, 1, 0, 0, 0, 2877, 2851, 1, 0, 0, 0, 2877, 2853, 1, 0, 0, 0, 2877, 2855, 1, 0, 0, 0, 2877, 2860, 1, 0, 0, 0, 2877, 2862, 1, 0, 0, 0, 2877, 2864, 1, 0, 0, 0, 2877, 2866, 1, 0, 0, 0, 2877, 2873, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2876, 1, 0, 0, 0, 2878, 213, 1, 0, 0, 0, 2879, 2880, 5, 46, 0, 0, 2880, 2881, 5, 63, 0, 0, 2881, 2882, 5, 174, 0, 0, 2882, 2883, 5, 381, 0, 0, 2883, 2889, 3, 818, 409, 0, 2884, 2886, 3, 216, 108, 0, 2885, 2884, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2885, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2890, 1, 0, 0, 0, 2889, 2885, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2893, 3, 220, 110, 0, 2892, 2891, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 215, 1, 0, 0, 0, 2894, 2896, 7, 33, 0, 0, 2895, 2897, 3, 316, 158, 0, 2896, 2895, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2901, 1, 0, 0, 0, 2898, 2899, 5, 269, 0, 0, 2899, 2901, 7, 33, 0, 0, 2900, 2894, 1, 0, 0, 0, 2900, 2898, 1, 0, 0, 0, 2901, 217, 1, 0, 0, 0, 2902, 2903, 5, 138, 0, 0, 2903, 2904, 5, 63, 0, 0, 2904, 2905, 5, 174, 0, 0, 2905, 2906, 5, 381, 0, 0, 2906, 2920, 3, 818, 409, 0, 2907, 2909, 3, 216, 108, 0, 2908, 2907, 1, 0, 0, 0, 2909, 2910, 1, 0, 0, 0, 2910, 2908, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2913, 1, 0, 0, 0, 2912, 2908, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2921, 3, 222, 111, 0, 2915, 2917, 3, 216, 108, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2921, 1, 0, 0, 0, 2920, 2912, 1, 0, 0, 0, 2920, 2916, 1, 0, 0, 0, 2921, 219, 1, 0, 0, 0, 2922, 2923, 5, 280, 0, 0, 2923, 2924, 5, 2, 0, 0, 2924, 2929, 3, 226, 113, 0, 2925, 2926, 5, 6, 0, 0, 2926, 2928, 3, 226, 113, 0, 2927, 2925, 1, 0, 0, 0, 2928, 2931, 1, 0, 0, 0, 2929, 2927, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2932, 1, 0, 0, 0, 2931, 2929, 1, 0, 0, 0, 2932, 2933, 5, 3, 0, 0, 2933, 221, 1, 0, 0, 0, 2934, 2935, 5, 280, 0, 0, 2935, 2936, 5, 2, 0, 0, 2936, 2941, 3, 224, 112, 0, 2937, 2938, 5, 6, 0, 0, 2938, 2940, 3, 224, 112, 0, 2939, 2937, 1, 0, 0, 0, 2940, 2943, 1, 0, 0, 0, 2941, 2939, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2941, 1, 0, 0, 0, 2944, 2945, 5, 3, 0, 0, 2945, 223, 1, 0, 0, 0, 2946, 2947, 7, 34, 0, 0, 2947, 2948, 3, 226, 113, 0, 2948, 225, 1, 0, 0, 0, 2949, 2950, 3, 824, 412, 0, 2950, 2951, 3, 808, 404, 0, 2951, 227, 1, 0, 0, 0, 2952, 2953, 5, 46, 0, 0, 2953, 2955, 5, 331, 0, 0, 2954, 2956, 3, 294, 147, 0, 2955, 2954, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2960, 3, 818, 409, 0, 2958, 2959, 5, 360, 0, 0, 2959, 2961, 3, 808, 404, 0, 2960, 2958, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2963, 1, 0, 0, 0, 2962, 2964, 3, 230, 115, 0, 2963, 2962, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2966, 5, 63, 0, 0, 2966, 2967, 5, 174, 0, 0, 2967, 2968, 5, 381, 0, 0, 2968, 2970, 3, 818, 409, 0, 2969, 2971, 3, 220, 110, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 229, 1, 0, 0, 0, 2972, 2975, 5, 375, 0, 0, 2973, 2976, 3, 808, 404, 0, 2974, 2976, 5, 78, 0, 0, 2975, 2973, 1, 0, 0, 0, 2975, 2974, 1, 0, 0, 0, 2976, 231, 1, 0, 0, 0, 2977, 2978, 5, 138, 0, 0, 2978, 2979, 5, 331, 0, 0, 2979, 2985, 3, 818, 409, 0, 2980, 2986, 3, 222, 111, 0, 2981, 2983, 3, 230, 115, 0, 2982, 2984, 3, 222, 111, 0, 2983, 2982, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2986, 1, 0, 0, 0, 2985, 2980, 1, 0, 0, 0, 2985, 2981, 1, 0, 0, 0, 2986, 233, 1, 0, 0, 0, 2987, 2988, 5, 46, 0, 0, 2988, 2989, 5, 63, 0, 0, 2989, 2991, 5, 92, 0, 0, 2990, 2992, 3, 294, 147, 0, 2991, 2990, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2994, 3, 772, 386, 0, 2994, 2996, 5, 2, 0, 0, 2995, 2997, 3, 126, 63, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 3000, 5, 3, 0, 0, 2999, 3001, 3, 164, 82, 0, 3000, 2999, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 5, 331, 0, 0, 3003, 3005, 3, 818, 409, 0, 3004, 3006, 3, 220, 110, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3027, 1, 0, 0, 0, 3007, 3008, 5, 46, 0, 0, 3008, 3009, 5, 63, 0, 0, 3009, 3011, 5, 92, 0, 0, 3010, 3012, 3, 294, 147, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 3, 772, 386, 0, 3014, 3015, 5, 285, 0, 0, 3015, 3016, 5, 275, 0, 0, 3016, 3018, 3, 774, 387, 0, 3017, 3019, 3, 124, 62, 0, 3018, 3017, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3021, 3, 106, 53, 0, 3021, 3022, 5, 331, 0, 0, 3022, 3024, 3, 818, 409, 0, 3023, 3025, 3, 220, 110, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3027, 1, 0, 0, 0, 3026, 2987, 1, 0, 0, 0, 3026, 3007, 1, 0, 0, 0, 3027, 235, 1, 0, 0, 0, 3028, 3029, 5, 444, 0, 0, 3029, 3030, 5, 63, 0, 0, 3030, 3031, 5, 323, 0, 0, 3031, 3041, 3, 790, 395, 0, 3032, 3033, 5, 74, 0, 0, 3033, 3036, 5, 94, 0, 0, 3034, 3036, 5, 59, 0, 0, 3035, 3032, 1, 0, 0, 0, 3035, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3038, 5, 2, 0, 0, 3038, 3039, 3, 628, 314, 0, 3039, 3040, 5, 3, 0, 0, 3040, 3042, 1, 0, 0, 0, 3041, 3035, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 5, 64, 0, 0, 3044, 3045, 5, 331, 0, 0, 3045, 3046, 3, 818, 409, 0, 3046, 3047, 5, 71, 0, 0, 3047, 3049, 3, 818, 409, 0, 3048, 3050, 3, 220, 110, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 237, 1, 0, 0, 0, 3051, 3052, 5, 46, 0, 0, 3052, 3053, 5, 99, 0, 0, 3053, 3055, 5, 257, 0, 0, 3054, 3056, 3, 294, 147, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3060, 5, 62, 0, 0, 3058, 3061, 3, 814, 407, 0, 3059, 3061, 5, 99, 0, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3059, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 331, 0, 0, 3063, 3065, 3, 818, 409, 0, 3064, 3066, 3, 220, 110, 0, 3065, 3064, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 239, 1, 0, 0, 0, 3067, 3068, 5, 138, 0, 0, 3068, 3069, 5, 99, 0, 0, 3069, 3070, 5, 257, 0, 0, 3070, 3073, 5, 62, 0, 0, 3071, 3074, 3, 814, 407, 0, 3072, 3074, 5, 99, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3072, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 5, 331, 0, 0, 3076, 3077, 3, 818, 409, 0, 3077, 3078, 3, 222, 111, 0, 3078, 241, 1, 0, 0, 0, 3079, 3080, 5, 46, 0, 0, 3080, 3081, 5, 445, 0, 0, 3081, 3082, 3, 818, 409, 0, 3082, 3083, 5, 80, 0, 0, 3083, 3090, 3, 780, 390, 0, 3084, 3088, 5, 36, 0, 0, 3085, 3089, 5, 541, 0, 0, 3086, 3089, 5, 542, 0, 0, 3087, 3089, 3, 826, 413, 0, 3088, 3085, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3087, 1, 0, 0, 0, 3089, 3091, 1, 0, 0, 0, 3090, 3084, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3094, 1, 0, 0, 0, 3092, 3093, 5, 62, 0, 0, 3093, 3095, 7, 35, 0, 0, 3094, 3092, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3098, 1, 0, 0, 0, 3096, 3097, 5, 94, 0, 0, 3097, 3099, 3, 816, 408, 0, 3098, 3096, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3101, 1, 0, 0, 0, 3100, 3102, 3, 250, 125, 0, 3101, 3100, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3104, 1, 0, 0, 0, 3103, 3105, 3, 252, 126, 0, 3104, 3103, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 243, 1, 0, 0, 0, 3106, 3107, 5, 138, 0, 0, 3107, 3108, 5, 445, 0, 0, 3108, 3109, 3, 818, 409, 0, 3109, 3110, 5, 80, 0, 0, 3110, 3113, 3, 780, 390, 0, 3111, 3112, 5, 94, 0, 0, 3112, 3114, 3, 816, 408, 0, 3113, 3111, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3116, 1, 0, 0, 0, 3115, 3117, 3, 250, 125, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3119, 1, 0, 0, 0, 3118, 3120, 3, 252, 126, 0, 3119, 3118, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 245, 1, 0, 0, 0, 3121, 3122, 5, 138, 0, 0, 3122, 3123, 5, 296, 0, 0, 3123, 3125, 3, 796, 398, 0, 3124, 3126, 3, 368, 184, 0, 3125, 3124, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3153, 1, 0, 0, 0, 3127, 3131, 3, 248, 124, 0, 3128, 3130, 3, 248, 124, 0, 3129, 3128, 1, 0, 0, 0, 3130, 3133, 1, 0, 0, 0, 3131, 3129, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3135, 1, 0, 0, 0, 3133, 3131, 1, 0, 0, 0, 3134, 3136, 5, 315, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3154, 1, 0, 0, 0, 3137, 3138, 5, 309, 0, 0, 3138, 3139, 5, 94, 0, 0, 3139, 3154, 3, 798, 399, 0, 3140, 3141, 5, 282, 0, 0, 3141, 3142, 5, 94, 0, 0, 3142, 3154, 3, 814, 407, 0, 3143, 3144, 5, 333, 0, 0, 3144, 3145, 5, 323, 0, 0, 3145, 3154, 3, 32, 16, 0, 3146, 3148, 5, 269, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 462, 0, 0, 3150, 3151, 5, 80, 0, 0, 3151, 3152, 5, 204, 0, 0, 3152, 3154, 3, 818, 409, 0, 3153, 3127, 1, 0, 0, 0, 3153, 3137, 1, 0, 0, 0, 3153, 3140, 1, 0, 0, 0, 3153, 3143, 1, 0, 0, 0, 3153, 3147, 1, 0, 0, 0, 3154, 247, 1, 0, 0, 0, 3155, 3157, 5, 205, 0, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, 5, 327, 0, 0, 3159, 3166, 5, 243, 0, 0, 3160, 3162, 5, 205, 0, 0, 3161, 3160, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3164, 5, 327, 0, 0, 3164, 3166, 5, 181, 0, 0, 3165, 3156, 1, 0, 0, 0, 3165, 3161, 1, 0, 0, 0, 3166, 3185, 1, 0, 0, 0, 3167, 3168, 5, 333, 0, 0, 3168, 3169, 3, 818, 409, 0, 3169, 3172, 7, 36, 0, 0, 3170, 3173, 3, 818, 409, 0, 3171, 3173, 5, 53, 0, 0, 3172, 3170, 1, 0, 0, 0, 3172, 3171, 1, 0, 0, 0, 3173, 3185, 1, 0, 0, 0, 3174, 3175, 5, 333, 0, 0, 3175, 3176, 3, 818, 409, 0, 3176, 3177, 5, 64, 0, 0, 3177, 3178, 5, 434, 0, 0, 3178, 3185, 1, 0, 0, 0, 3179, 3182, 5, 313, 0, 0, 3180, 3183, 3, 818, 409, 0, 3181, 3183, 5, 30, 0, 0, 3182, 3180, 1, 0, 0, 0, 3182, 3181, 1, 0, 0, 0, 3183, 3185, 1, 0, 0, 0, 3184, 3165, 1, 0, 0, 0, 3184, 3167, 1, 0, 0, 0, 3184, 3174, 1, 0, 0, 0, 3184, 3179, 1, 0, 0, 0, 3185, 249, 1, 0, 0, 0, 3186, 3187, 5, 100, 0, 0, 3187, 3188, 5, 2, 0, 0, 3188, 3189, 3, 674, 337, 0, 3189, 3190, 5, 3, 0, 0, 3190, 251, 1, 0, 0, 0, 3191, 3192, 5, 105, 0, 0, 3192, 3193, 5, 42, 0, 0, 3193, 3194, 5, 2, 0, 0, 3194, 3195, 3, 674, 337, 0, 3195, 3196, 5, 3, 0, 0, 3196, 253, 1, 0, 0, 0, 3197, 3198, 5, 46, 0, 0, 3198, 3199, 5, 131, 0, 0, 3199, 3200, 5, 446, 0, 0, 3200, 3201, 3, 818, 409, 0, 3201, 3202, 5, 360, 0, 0, 3202, 3203, 7, 37, 0, 0, 3203, 3204, 5, 215, 0, 0, 3204, 3205, 3, 316, 158, 0, 3205, 255, 1, 0, 0, 0, 3206, 3208, 5, 46, 0, 0, 3207, 3209, 3, 366, 183, 0, 3208, 3207, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 5, 357, 0, 0, 3211, 3212, 3, 818, 409, 0, 3212, 3213, 3, 258, 129, 0, 3213, 3214, 3, 260, 130, 0, 3214, 3215, 5, 80, 0, 0, 3215, 3227, 3, 774, 387, 0, 3216, 3223, 5, 447, 0, 0, 3217, 3218, 7, 38, 0, 0, 3218, 3220, 7, 39, 0, 0, 3219, 3221, 5, 36, 0, 0, 3220, 3219, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 3, 818, 409, 0, 3223, 3217, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3223, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3216, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3234, 1, 0, 0, 0, 3229, 3231, 5, 62, 0, 0, 3230, 3232, 5, 192, 0, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3235, 7, 40, 0, 0, 3234, 3229, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 264, 132, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3240, 5, 202, 0, 0, 3240, 3241, 3, 266, 133, 0, 3241, 3242, 5, 2, 0, 0, 3242, 3243, 3, 268, 134, 0, 3243, 3244, 5, 3, 0, 0, 3244, 3285, 1, 0, 0, 0, 3245, 3247, 5, 46, 0, 0, 3246, 3248, 3, 366, 183, 0, 3247, 3246, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3250, 1, 0, 0, 0, 3249, 3251, 5, 45, 0, 0, 3250, 3249, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3253, 5, 357, 0, 0, 3253, 3254, 3, 818, 409, 0, 3254, 3255, 3, 258, 129, 0, 3255, 3256, 3, 260, 130, 0, 3256, 3257, 5, 80, 0, 0, 3257, 3260, 3, 774, 387, 0, 3258, 3259, 5, 64, 0, 0, 3259, 3261, 3, 780, 390, 0, 3260, 3258, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3265, 1, 0, 0, 0, 3262, 3264, 3, 272, 136, 0, 3263, 3262, 1, 0, 0, 0, 3264, 3267, 1, 0, 0, 0, 3265, 3263, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3273, 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3268, 3270, 5, 62, 0, 0, 3269, 3271, 5, 192, 0, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 7, 40, 0, 0, 3273, 3268, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3276, 1, 0, 0, 0, 3275, 3277, 3, 264, 132, 0, 3276, 3275, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3279, 5, 202, 0, 0, 3279, 3280, 3, 266, 133, 0, 3280, 3281, 5, 2, 0, 0, 3281, 3282, 3, 268, 134, 0, 3282, 3283, 5, 3, 0, 0, 3283, 3285, 1, 0, 0, 0, 3284, 3206, 1, 0, 0, 0, 3284, 3245, 1, 0, 0, 0, 3285, 257, 1, 0, 0, 0, 3286, 3291, 5, 145, 0, 0, 3287, 3291, 5, 135, 0, 0, 3288, 3289, 5, 242, 0, 0, 3289, 3291, 5, 275, 0, 0, 3290, 3286, 1, 0, 0, 0, 3290, 3287, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3291, 259, 1, 0, 0, 0, 3292, 3297, 3, 262, 131, 0, 3293, 3294, 5, 82, 0, 0, 3294, 3296, 3, 262, 131, 0, 3295, 3293, 1, 0, 0, 0, 3296, 3299, 1, 0, 0, 0, 3297, 3295, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 261, 1, 0, 0, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3309, 5, 241, 0, 0, 3301, 3309, 5, 182, 0, 0, 3302, 3305, 5, 369, 0, 0, 3303, 3304, 5, 275, 0, 0, 3304, 3306, 3, 148, 74, 0, 3305, 3303, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3309, 1, 0, 0, 0, 3307, 3309, 5, 358, 0, 0, 3308, 3300, 1, 0, 0, 0, 3308, 3301, 1, 0, 0, 0, 3308, 3302, 1, 0, 0, 0, 3308, 3307, 1, 0, 0, 0, 3309, 263, 1, 0, 0, 0, 3310, 3311, 5, 102, 0, 0, 3311, 3312, 5, 2, 0, 0, 3312, 3313, 3, 674, 337, 0, 3313, 3314, 5, 3, 0, 0, 3314, 265, 1, 0, 0, 0, 3315, 3316, 5, 211, 0, 0, 3316, 3320, 3, 806, 403, 0, 3317, 3318, 5, 296, 0, 0, 3318, 3320, 3, 796, 398, 0, 3319, 3315, 1, 0, 0, 0, 3319, 3317, 1, 0, 0, 0, 3320, 267, 1, 0, 0, 0, 3321, 3324, 3, 270, 135, 0, 3322, 3324, 1, 0, 0, 0, 3323, 3321, 1, 0, 0, 0, 3323, 3322, 1, 0, 0, 0, 3324, 3329, 1, 0, 0, 0, 3325, 3326, 5, 6, 0, 0, 3326, 3328, 3, 270, 135, 0, 3327, 3325, 1, 0, 0, 0, 3328, 3331, 1, 0, 0, 0, 3329, 3327, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 269, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3332, 3337, 5, 571, 0, 0, 3333, 3337, 5, 573, 0, 0, 3334, 3337, 3, 808, 404, 0, 3335, 3337, 3, 824, 412, 0, 3336, 3332, 1, 0, 0, 0, 3336, 3333, 1, 0, 0, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3335, 1, 0, 0, 0, 3337, 271, 1, 0, 0, 0, 3338, 3340, 5, 77, 0, 0, 3339, 3338, 1, 0, 0, 0, 3339, 3340, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3349, 5, 54, 0, 0, 3342, 3343, 5, 69, 0, 0, 3343, 3349, 7, 9, 0, 0, 3344, 3345, 5, 77, 0, 0, 3345, 3349, 5, 371, 0, 0, 3346, 3347, 5, 269, 0, 0, 3347, 3349, 5, 228, 0, 0, 3348, 3339, 1, 0, 0, 0, 3348, 3342, 1, 0, 0, 0, 3348, 3344, 1, 0, 0, 0, 3348, 3346, 1, 0, 0, 0, 3349, 273, 1, 0, 0, 0, 3350, 3351, 5, 46, 0, 0, 3351, 3352, 5, 198, 0, 0, 3352, 3353, 5, 357, 0, 0, 3353, 3354, 3, 818, 409, 0, 3354, 3355, 5, 80, 0, 0, 3355, 3365, 3, 824, 412, 0, 3356, 3357, 5, 102, 0, 0, 3357, 3362, 3, 276, 138, 0, 3358, 3359, 5, 33, 0, 0, 3359, 3361, 3, 276, 138, 0, 3360, 3358, 1, 0, 0, 0, 3361, 3364, 1, 0, 0, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3366, 1, 0, 0, 0, 3364, 3362, 1, 0, 0, 0, 3365, 3356, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 5, 202, 0, 0, 3368, 3369, 3, 266, 133, 0, 3369, 3370, 5, 2, 0, 0, 3370, 3371, 5, 3, 0, 0, 3371, 275, 1, 0, 0, 0, 3372, 3373, 3, 818, 409, 0, 3373, 3374, 5, 68, 0, 0, 3374, 3375, 5, 2, 0, 0, 3375, 3379, 3, 808, 404, 0, 3376, 3378, 3, 462, 231, 0, 3377, 3376, 1, 0, 0, 0, 3378, 3381, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3382, 1, 0, 0, 0, 3381, 3379, 1, 0, 0, 0, 3382, 3383, 5, 3, 0, 0, 3383, 277, 1, 0, 0, 0, 3384, 3385, 5, 138, 0, 0, 3385, 3386, 5, 198, 0, 0, 3386, 3387, 5, 357, 0, 0, 3387, 3393, 3, 818, 409, 0, 3388, 3390, 5, 193, 0, 0, 3389, 3391, 7, 14, 0, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3394, 5, 186, 0, 0, 3393, 3388, 1, 0, 0, 0, 3393, 3392, 1, 0, 0, 0, 3394, 279, 1, 0, 0, 0, 3395, 3396, 5, 46, 0, 0, 3396, 3397, 5, 140, 0, 0, 3397, 3398, 3, 316, 158, 0, 3398, 3399, 5, 42, 0, 0, 3399, 3400, 5, 2, 0, 0, 3400, 3401, 3, 674, 337, 0, 3401, 3405, 5, 3, 0, 0, 3402, 3404, 3, 272, 136, 0, 3403, 3402, 1, 0, 0, 0, 3404, 3407, 1, 0, 0, 0, 3405, 3403, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 281, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3408, 3410, 5, 46, 0, 0, 3409, 3411, 3, 366, 183, 0, 3410, 3409, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 5, 136, 0, 0, 3413, 3428, 3, 806, 403, 0, 3414, 3415, 3, 392, 196, 0, 3415, 3416, 3, 284, 142, 0, 3416, 3429, 1, 0, 0, 0, 3417, 3418, 5, 2, 0, 0, 3418, 3423, 3, 290, 145, 0, 3419, 3420, 5, 6, 0, 0, 3420, 3422, 3, 290, 145, 0, 3421, 3419, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3426, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3427, 5, 3, 0, 0, 3427, 3429, 1, 0, 0, 0, 3428, 3414, 1, 0, 0, 0, 3428, 3417, 1, 0, 0, 0, 3429, 3487, 1, 0, 0, 0, 3430, 3431, 5, 46, 0, 0, 3431, 3432, 5, 278, 0, 0, 3432, 3433, 3, 414, 207, 0, 3433, 3434, 3, 284, 142, 0, 3434, 3487, 1, 0, 0, 0, 3435, 3436, 5, 46, 0, 0, 3436, 3437, 5, 360, 0, 0, 3437, 3438, 3, 316, 158, 0, 3438, 3456, 5, 36, 0, 0, 3439, 3441, 5, 2, 0, 0, 3440, 3442, 3, 642, 321, 0, 3441, 3440, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3457, 5, 3, 0, 0, 3444, 3445, 5, 196, 0, 0, 3445, 3453, 5, 2, 0, 0, 3446, 3450, 3, 808, 404, 0, 3447, 3449, 3, 462, 231, 0, 3448, 3447, 1, 0, 0, 0, 3449, 3452, 1, 0, 0, 0, 3450, 3448, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3454, 1, 0, 0, 0, 3452, 3450, 1, 0, 0, 0, 3453, 3446, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 5, 3, 0, 0, 3456, 3439, 1, 0, 0, 0, 3456, 3444, 1, 0, 0, 0, 3457, 3487, 1, 0, 0, 0, 3458, 3459, 5, 46, 0, 0, 3459, 3460, 5, 360, 0, 0, 3460, 3466, 3, 316, 158, 0, 3461, 3462, 5, 36, 0, 0, 3462, 3464, 5, 299, 0, 0, 3463, 3461, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3467, 3, 284, 142, 0, 3466, 3463, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3487, 1, 0, 0, 0, 3468, 3469, 5, 46, 0, 0, 3469, 3470, 5, 355, 0, 0, 3470, 3471, 5, 325, 0, 0, 3471, 3472, 7, 41, 0, 0, 3472, 3473, 3, 316, 158, 0, 3473, 3474, 3, 284, 142, 0, 3474, 3487, 1, 0, 0, 0, 3475, 3476, 5, 46, 0, 0, 3476, 3478, 5, 108, 0, 0, 3477, 3479, 3, 294, 147, 0, 3478, 3477, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3484, 3, 316, 158, 0, 3481, 3485, 3, 284, 142, 0, 3482, 3483, 5, 64, 0, 0, 3483, 3485, 3, 316, 158, 0, 3484, 3481, 1, 0, 0, 0, 3484, 3482, 1, 0, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3408, 1, 0, 0, 0, 3486, 3430, 1, 0, 0, 0, 3486, 3435, 1, 0, 0, 0, 3486, 3458, 1, 0, 0, 0, 3486, 3468, 1, 0, 0, 0, 3486, 3475, 1, 0, 0, 0, 3487, 283, 1, 0, 0, 0, 3488, 3489, 5, 2, 0, 0, 3489, 3494, 3, 286, 143, 0, 3490, 3491, 5, 6, 0, 0, 3491, 3493, 3, 286, 143, 0, 3492, 3490, 1, 0, 0, 0, 3493, 3496, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3497, 1, 0, 0, 0, 3496, 3494, 1, 0, 0, 0, 3497, 3498, 5, 3, 0, 0, 3498, 285, 1, 0, 0, 0, 3499, 3502, 3, 824, 412, 0, 3500, 3501, 5, 10, 0, 0, 3501, 3503, 3, 288, 144, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 287, 1, 0, 0, 0, 3504, 3511, 3, 388, 194, 0, 3505, 3511, 3, 834, 417, 0, 3506, 3511, 3, 726, 363, 0, 3507, 3511, 3, 202, 101, 0, 3508, 3511, 3, 808, 404, 0, 3509, 3511, 5, 407, 0, 0, 3510, 3504, 1, 0, 0, 0, 3510, 3505, 1, 0, 0, 0, 3510, 3506, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3510, 3509, 1, 0, 0, 0, 3511, 289, 1, 0, 0, 0, 3512, 3513, 3, 826, 413, 0, 3513, 3514, 5, 10, 0, 0, 3514, 3515, 3, 288, 144, 0, 3515, 291, 1, 0, 0, 0, 3516, 3517, 5, 138, 0, 0, 3517, 3518, 5, 360, 0, 0, 3518, 3519, 3, 316, 158, 0, 3519, 3520, 5, 133, 0, 0, 3520, 3522, 5, 450, 0, 0, 3521, 3523, 3, 294, 147, 0, 3522, 3521, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 3, 808, 404, 0, 3525, 3526, 7, 42, 0, 0, 3526, 3528, 3, 808, 404, 0, 3527, 3525, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3539, 1, 0, 0, 0, 3529, 3530, 5, 138, 0, 0, 3530, 3531, 5, 360, 0, 0, 3531, 3532, 3, 316, 158, 0, 3532, 3533, 5, 309, 0, 0, 3533, 3534, 5, 450, 0, 0, 3534, 3535, 3, 808, 404, 0, 3535, 3536, 5, 94, 0, 0, 3536, 3537, 3, 808, 404, 0, 3537, 3539, 1, 0, 0, 0, 3538, 3516, 1, 0, 0, 0, 3538, 3529, 1, 0, 0, 0, 3539, 293, 1, 0, 0, 0, 3540, 3541, 5, 220, 0, 0, 3541, 3542, 5, 77, 0, 0, 3542, 3543, 5, 396, 0, 0, 3543, 295, 1, 0, 0, 0, 3544, 3545, 5, 46, 0, 0, 3545, 3546, 5, 278, 0, 0, 3546, 3547, 5, 156, 0, 0, 3547, 3549, 3, 316, 158, 0, 3548, 3550, 5, 53, 0, 0, 3549, 3548, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3552, 5, 62, 0, 0, 3552, 3553, 5, 360, 0, 0, 3553, 3554, 3, 652, 326, 0, 3554, 3557, 3, 170, 85, 0, 3555, 3556, 5, 206, 0, 0, 3556, 3558, 3, 316, 158, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3560, 5, 36, 0, 0, 3560, 3565, 3, 298, 149, 0, 3561, 3562, 5, 6, 0, 0, 3562, 3564, 3, 298, 149, 0, 3563, 3561, 1, 0, 0, 0, 3564, 3567, 1, 0, 0, 0, 3565, 3563, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 297, 1, 0, 0, 0, 3567, 3565, 1, 0, 0, 0, 3568, 3569, 5, 278, 0, 0, 3569, 3570, 5, 571, 0, 0, 3570, 3572, 3, 414, 207, 0, 3571, 3573, 3, 412, 206, 0, 3572, 3571, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3581, 1, 0, 0, 0, 3574, 3579, 5, 62, 0, 0, 3575, 3580, 5, 325, 0, 0, 3576, 3577, 5, 83, 0, 0, 3577, 3578, 5, 147, 0, 0, 3578, 3580, 3, 316, 158, 0, 3579, 3575, 1, 0, 0, 0, 3579, 3576, 1, 0, 0, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3574, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3584, 1, 0, 0, 0, 3583, 3585, 5, 302, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3595, 1, 0, 0, 0, 3586, 3587, 5, 211, 0, 0, 3587, 3589, 5, 571, 0, 0, 3588, 3590, 3, 528, 264, 0, 3589, 3588, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3595, 3, 382, 191, 0, 3592, 3593, 5, 345, 0, 0, 3593, 3595, 3, 652, 326, 0, 3594, 3568, 1, 0, 0, 0, 3594, 3586, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3595, 299, 1, 0, 0, 0, 3596, 3597, 5, 46, 0, 0, 3597, 3598, 5, 278, 0, 0, 3598, 3599, 5, 206, 0, 0, 3599, 3600, 3, 316, 158, 0, 3600, 3601, 3, 170, 85, 0, 3601, 301, 1, 0, 0, 0, 3602, 3603, 5, 138, 0, 0, 3603, 3604, 5, 278, 0, 0, 3604, 3605, 5, 206, 0, 0, 3605, 3606, 3, 316, 158, 0, 3606, 3625, 3, 170, 85, 0, 3607, 3608, 5, 133, 0, 0, 3608, 3613, 3, 298, 149, 0, 3609, 3610, 5, 6, 0, 0, 3610, 3612, 3, 298, 149, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3626, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3616, 3617, 5, 191, 0, 0, 3617, 3622, 3, 304, 152, 0, 3618, 3619, 5, 6, 0, 0, 3619, 3621, 3, 304, 152, 0, 3620, 3618, 1, 0, 0, 0, 3621, 3624, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3626, 1, 0, 0, 0, 3624, 3622, 1, 0, 0, 0, 3625, 3607, 1, 0, 0, 0, 3625, 3616, 1, 0, 0, 0, 3626, 303, 1, 0, 0, 0, 3627, 3628, 7, 43, 0, 0, 3628, 3629, 5, 571, 0, 0, 3629, 3630, 3, 528, 264, 0, 3630, 305, 1, 0, 0, 0, 3631, 3632, 5, 301, 0, 0, 3632, 3633, 5, 281, 0, 0, 3633, 3634, 5, 147, 0, 0, 3634, 3635, 3, 816, 408, 0, 3635, 3636, 5, 94, 0, 0, 3636, 3637, 3, 814, 407, 0, 3637, 307, 1, 0, 0, 0, 3638, 3661, 5, 191, 0, 0, 3639, 3662, 5, 328, 0, 0, 3640, 3662, 5, 226, 0, 0, 3641, 3662, 5, 108, 0, 0, 3642, 3662, 5, 168, 0, 0, 3643, 3662, 5, 342, 0, 0, 3644, 3662, 5, 452, 0, 0, 3645, 3662, 5, 331, 0, 0, 3646, 3647, 5, 131, 0, 0, 3647, 3662, 5, 446, 0, 0, 3648, 3649, 5, 198, 0, 0, 3649, 3662, 5, 357, 0, 0, 3650, 3662, 5, 204, 0, 0, 3651, 3653, 5, 295, 0, 0, 3652, 3651, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3662, 5, 247, 0, 0, 3655, 3656, 5, 63, 0, 0, 3656, 3657, 5, 174, 0, 0, 3657, 3662, 5, 381, 0, 0, 3658, 3659, 5, 355, 0, 0, 3659, 3660, 5, 325, 0, 0, 3660, 3662, 7, 41, 0, 0, 3661, 3639, 1, 0, 0, 0, 3661, 3640, 1, 0, 0, 0, 3661, 3641, 1, 0, 0, 0, 3661, 3642, 1, 0, 0, 0, 3661, 3643, 1, 0, 0, 0, 3661, 3644, 1, 0, 0, 0, 3661, 3645, 1, 0, 0, 0, 3661, 3646, 1, 0, 0, 0, 3661, 3648, 1, 0, 0, 0, 3661, 3650, 1, 0, 0, 0, 3661, 3652, 1, 0, 0, 0, 3661, 3655, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3662, 3664, 1, 0, 0, 0, 3663, 3665, 3, 422, 211, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3668, 3, 784, 392, 0, 3667, 3669, 3, 96, 48, 0, 3668, 3667, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3846, 1, 0, 0, 0, 3670, 3672, 5, 191, 0, 0, 3671, 3673, 5, 259, 0, 0, 3672, 3671, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3676, 5, 376, 0, 0, 3675, 3677, 3, 422, 211, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3683, 3, 778, 389, 0, 3679, 3680, 5, 6, 0, 0, 3680, 3682, 3, 778, 389, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3687, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3688, 3, 96, 48, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3846, 1, 0, 0, 0, 3689, 3691, 5, 191, 0, 0, 3690, 3692, 5, 63, 0, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 5, 92, 0, 0, 3694, 3696, 3, 422, 211, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 3697, 1, 0, 0, 0, 3697, 3699, 3, 762, 381, 0, 3698, 3700, 3, 96, 48, 0, 3699, 3698, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3846, 1, 0, 0, 0, 3701, 3702, 5, 191, 0, 0, 3702, 3704, 5, 323, 0, 0, 3703, 3705, 3, 422, 211, 0, 3704, 3703, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3708, 3, 764, 382, 0, 3707, 3709, 3, 96, 48, 0, 3708, 3707, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3846, 1, 0, 0, 0, 3710, 3711, 5, 191, 0, 0, 3711, 3713, 7, 44, 0, 0, 3712, 3714, 3, 422, 211, 0, 3713, 3712, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3716, 3, 818, 409, 0, 3716, 3717, 5, 80, 0, 0, 3717, 3719, 3, 316, 158, 0, 3718, 3720, 3, 96, 48, 0, 3719, 3718, 1, 0, 0, 0, 3719, 3720, 1, 0, 0, 0, 3720, 3846, 1, 0, 0, 0, 3721, 3722, 5, 191, 0, 0, 3722, 3724, 7, 32, 0, 0, 3723, 3725, 3, 422, 211, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3731, 3, 652, 326, 0, 3727, 3728, 5, 6, 0, 0, 3728, 3730, 3, 652, 326, 0, 3729, 3727, 1, 0, 0, 0, 3730, 3733, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3735, 1, 0, 0, 0, 3733, 3731, 1, 0, 0, 0, 3734, 3736, 3, 96, 48, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3846, 1, 0, 0, 0, 3737, 3738, 5, 191, 0, 0, 3738, 3739, 5, 226, 0, 0, 3739, 3741, 5, 109, 0, 0, 3740, 3742, 3, 422, 211, 0, 3741, 3740, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 3, 314, 157, 0, 3744, 3746, 3, 96, 48, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3846, 1, 0, 0, 0, 3747, 3748, 5, 191, 0, 0, 3748, 3750, 5, 41, 0, 0, 3749, 3751, 3, 422, 211, 0, 3750, 3749, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3753, 5, 2, 0, 0, 3753, 3754, 3, 652, 326, 0, 3754, 3755, 5, 36, 0, 0, 3755, 3756, 3, 652, 326, 0, 3756, 3758, 5, 3, 0, 0, 3757, 3759, 3, 96, 48, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3846, 1, 0, 0, 0, 3760, 3761, 5, 191, 0, 0, 3761, 3762, 5, 278, 0, 0, 3762, 3764, 7, 31, 0, 0, 3763, 3765, 3, 422, 211, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3767, 3, 316, 158, 0, 3767, 3769, 3, 170, 85, 0, 3768, 3770, 3, 96, 48, 0, 3769, 3768, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3846, 1, 0, 0, 0, 3771, 3772, 5, 191, 0, 0, 3772, 3773, 5, 281, 0, 0, 3773, 3774, 5, 147, 0, 0, 3774, 3776, 3, 816, 408, 0, 3775, 3777, 3, 96, 48, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3846, 1, 0, 0, 0, 3778, 3779, 5, 191, 0, 0, 3779, 3781, 5, 451, 0, 0, 3780, 3782, 3, 422, 211, 0, 3781, 3780, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3785, 3, 818, 409, 0, 3784, 3786, 3, 96, 48, 0, 3785, 3784, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3846, 1, 0, 0, 0, 3787, 3788, 5, 191, 0, 0, 3788, 3790, 5, 351, 0, 0, 3789, 3791, 3, 422, 211, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3846, 3, 770, 385, 0, 3793, 3794, 5, 191, 0, 0, 3794, 3796, 5, 443, 0, 0, 3795, 3797, 3, 422, 211, 0, 3796, 3795, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3799, 5, 62, 0, 0, 3799, 3800, 3, 652, 326, 0, 3800, 3801, 5, 247, 0, 0, 3801, 3803, 3, 818, 409, 0, 3802, 3804, 3, 96, 48, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3846, 1, 0, 0, 0, 3805, 3806, 5, 191, 0, 0, 3806, 3808, 7, 45, 0, 0, 3807, 3809, 3, 422, 211, 0, 3808, 3807, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3846, 3, 816, 408, 0, 3811, 3812, 5, 191, 0, 0, 3812, 3813, 5, 99, 0, 0, 3813, 3815, 5, 257, 0, 0, 3814, 3816, 3, 422, 211, 0, 3815, 3814, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 3820, 5, 62, 0, 0, 3818, 3821, 3, 814, 407, 0, 3819, 3821, 5, 99, 0, 0, 3820, 3818, 1, 0, 0, 0, 3820, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3823, 5, 331, 0, 0, 3823, 3846, 3, 818, 409, 0, 3824, 3825, 5, 191, 0, 0, 3825, 3827, 5, 175, 0, 0, 3826, 3828, 3, 422, 211, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3843, 3, 788, 394, 0, 3830, 3832, 5, 105, 0, 0, 3831, 3830, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3834, 5, 2, 0, 0, 3834, 3839, 5, 209, 0, 0, 3835, 3836, 5, 6, 0, 0, 3836, 3838, 5, 209, 0, 0, 3837, 3835, 1, 0, 0, 0, 3838, 3841, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3842, 1, 0, 0, 0, 3841, 3839, 1, 0, 0, 0, 3842, 3844, 5, 3, 0, 0, 3843, 3831, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3638, 1, 0, 0, 0, 3845, 3670, 1, 0, 0, 0, 3845, 3689, 1, 0, 0, 0, 3845, 3701, 1, 0, 0, 0, 3845, 3710, 1, 0, 0, 0, 3845, 3721, 1, 0, 0, 0, 3845, 3737, 1, 0, 0, 0, 3845, 3747, 1, 0, 0, 0, 3845, 3760, 1, 0, 0, 0, 3845, 3771, 1, 0, 0, 0, 3845, 3778, 1, 0, 0, 0, 3845, 3787, 1, 0, 0, 0, 3845, 3793, 1, 0, 0, 0, 3845, 3805, 1, 0, 0, 0, 3845, 3811, 1, 0, 0, 0, 3845, 3824, 1, 0, 0, 0, 3846, 309, 1, 0, 0, 0, 3847, 3849, 5, 63, 0, 0, 3848, 3847, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 3851, 5, 92, 0, 0, 3851, 3864, 3, 774, 387, 0, 3852, 3854, 5, 259, 0, 0, 3853, 3852, 1, 0, 0, 0, 3853, 3854, 1, 0, 0, 0, 3854, 3855, 1, 0, 0, 0, 3855, 3856, 5, 376, 0, 0, 3856, 3864, 3, 778, 389, 0, 3857, 3858, 7, 46, 0, 0, 3858, 3864, 3, 316, 158, 0, 3859, 3860, 5, 355, 0, 0, 3860, 3861, 5, 325, 0, 0, 3861, 3862, 7, 41, 0, 0, 3862, 3864, 3, 316, 158, 0, 3863, 3848, 1, 0, 0, 0, 3863, 3853, 1, 0, 0, 0, 3863, 3857, 1, 0, 0, 0, 3863, 3859, 1, 0, 0, 0, 3864, 311, 1, 0, 0, 0, 3865, 3866, 5, 198, 0, 0, 3866, 3882, 5, 357, 0, 0, 3867, 3868, 5, 131, 0, 0, 3868, 3882, 5, 446, 0, 0, 3869, 3882, 5, 204, 0, 0, 3870, 3882, 5, 452, 0, 0, 3871, 3882, 5, 331, 0, 0, 3872, 3882, 5, 318, 0, 0, 3873, 3882, 5, 451, 0, 0, 3874, 3875, 5, 63, 0, 0, 3875, 3876, 5, 174, 0, 0, 3876, 3882, 5, 381, 0, 0, 3877, 3879, 5, 295, 0, 0, 3878, 3877, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3882, 5, 247, 0, 0, 3881, 3865, 1, 0, 0, 0, 3881, 3867, 1, 0, 0, 0, 3881, 3869, 1, 0, 0, 0, 3881, 3870, 1, 0, 0, 0, 3881, 3871, 1, 0, 0, 0, 3881, 3872, 1, 0, 0, 0, 3881, 3873, 1, 0, 0, 0, 3881, 3874, 1, 0, 0, 0, 3881, 3878, 1, 0, 0, 0, 3882, 3883, 1, 0, 0, 0, 3883, 3890, 3, 818, 409, 0, 3884, 3885, 5, 323, 0, 0, 3885, 3890, 3, 790, 395, 0, 3886, 3887, 5, 175, 0, 0, 3887, 3890, 3, 788, 394, 0, 3888, 3890, 3, 176, 88, 0, 3889, 3881, 1, 0, 0, 0, 3889, 3884, 1, 0, 0, 0, 3889, 3886, 1, 0, 0, 0, 3889, 3888, 1, 0, 0, 0, 3890, 313, 1, 0, 0, 0, 3891, 3896, 3, 316, 158, 0, 3892, 3893, 5, 6, 0, 0, 3893, 3895, 3, 316, 158, 0, 3894, 3892, 1, 0, 0, 0, 3895, 3898, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 315, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3899, 3901, 3, 818, 409, 0, 3900, 3902, 3, 318, 159, 0, 3901, 3900, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 317, 1, 0, 0, 0, 3903, 3904, 5, 11, 0, 0, 3904, 3906, 3, 824, 412, 0, 3905, 3903, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 319, 1, 0, 0, 0, 3909, 3911, 5, 358, 0, 0, 3910, 3912, 5, 92, 0, 0, 3911, 3910, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3918, 3, 322, 161, 0, 3914, 3915, 5, 6, 0, 0, 3915, 3917, 3, 322, 161, 0, 3916, 3914, 1, 0, 0, 0, 3917, 3920, 1, 0, 0, 0, 3918, 3916, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3923, 1, 0, 0, 0, 3920, 3918, 1, 0, 0, 0, 3921, 3922, 7, 47, 0, 0, 3922, 3924, 5, 219, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3926, 1, 0, 0, 0, 3925, 3927, 3, 96, 48, 0, 3926, 3925, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 321, 1, 0, 0, 0, 3928, 3930, 5, 81, 0, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3933, 3, 774, 387, 0, 3932, 3934, 5, 9, 0, 0, 3933, 3932, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 323, 1, 0, 0, 0, 3935, 3936, 5, 159, 0, 0, 3936, 3995, 5, 80, 0, 0, 3937, 3996, 3, 310, 155, 0, 3938, 3996, 3, 312, 156, 0, 3939, 3940, 5, 44, 0, 0, 3940, 3942, 3, 818, 409, 0, 3941, 3943, 3, 318, 159, 0, 3942, 3941, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 3944, 1, 0, 0, 0, 3944, 3945, 5, 11, 0, 0, 3945, 3946, 3, 800, 400, 0, 3946, 3996, 1, 0, 0, 0, 3947, 3948, 7, 32, 0, 0, 3948, 3996, 3, 652, 326, 0, 3949, 3950, 5, 136, 0, 0, 3950, 3996, 3, 394, 197, 0, 3951, 3952, 5, 211, 0, 0, 3952, 3996, 3, 382, 191, 0, 3953, 3954, 5, 278, 0, 0, 3954, 3996, 3, 416, 208, 0, 3955, 3956, 5, 45, 0, 0, 3956, 3957, 3, 818, 409, 0, 3957, 3963, 5, 80, 0, 0, 3958, 3964, 3, 774, 387, 0, 3959, 3961, 5, 189, 0, 0, 3960, 3959, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 3964, 3, 316, 158, 0, 3963, 3958, 1, 0, 0, 0, 3963, 3960, 1, 0, 0, 0, 3964, 3996, 1, 0, 0, 0, 3965, 3966, 7, 44, 0, 0, 3966, 3967, 3, 818, 409, 0, 3967, 3968, 5, 80, 0, 0, 3968, 3969, 3, 316, 158, 0, 3969, 3996, 1, 0, 0, 0, 3970, 3971, 5, 296, 0, 0, 3971, 3996, 3, 378, 189, 0, 3972, 3973, 5, 442, 0, 0, 3973, 3996, 3, 374, 187, 0, 3974, 3975, 5, 443, 0, 0, 3975, 3976, 5, 62, 0, 0, 3976, 3977, 3, 652, 326, 0, 3977, 3978, 5, 247, 0, 0, 3978, 3979, 3, 818, 409, 0, 3979, 3996, 1, 0, 0, 0, 3980, 3981, 5, 278, 0, 0, 3981, 3982, 7, 31, 0, 0, 3982, 3983, 3, 316, 158, 0, 3983, 3984, 3, 170, 85, 0, 3984, 3996, 1, 0, 0, 0, 3985, 3986, 5, 248, 0, 0, 3986, 3987, 5, 274, 0, 0, 3987, 3996, 3, 202, 101, 0, 3988, 3989, 5, 41, 0, 0, 3989, 3990, 5, 2, 0, 0, 3990, 3991, 3, 652, 326, 0, 3991, 3992, 5, 36, 0, 0, 3992, 3993, 3, 652, 326, 0, 3993, 3994, 5, 3, 0, 0, 3994, 3996, 1, 0, 0, 0, 3995, 3937, 1, 0, 0, 0, 3995, 3938, 1, 0, 0, 0, 3995, 3939, 1, 0, 0, 0, 3995, 3947, 1, 0, 0, 0, 3995, 3949, 1, 0, 0, 0, 3995, 3951, 1, 0, 0, 0, 3995, 3953, 1, 0, 0, 0, 3995, 3955, 1, 0, 0, 0, 3995, 3965, 1, 0, 0, 0, 3995, 3970, 1, 0, 0, 0, 3995, 3972, 1, 0, 0, 0, 3995, 3974, 1, 0, 0, 0, 3995, 3980, 1, 0, 0, 0, 3995, 3985, 1, 0, 0, 0, 3995, 3988, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 4000, 5, 116, 0, 0, 3998, 4001, 3, 808, 404, 0, 3999, 4001, 5, 78, 0, 0, 4000, 3998, 1, 0, 0, 0, 4000, 3999, 1, 0, 0, 0, 4001, 325, 1, 0, 0, 0, 4002, 4003, 5, 327, 0, 0, 4003, 4006, 5, 246, 0, 0, 4004, 4005, 5, 62, 0, 0, 4005, 4007, 3, 58, 29, 0, 4006, 4004, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4008, 1, 0, 0, 0, 4008, 4026, 5, 80, 0, 0, 4009, 4010, 7, 32, 0, 0, 4010, 4027, 3, 652, 326, 0, 4011, 4012, 5, 136, 0, 0, 4012, 4027, 3, 394, 197, 0, 4013, 4014, 5, 44, 0, 0, 4014, 4027, 3, 800, 400, 0, 4015, 4016, 5, 211, 0, 0, 4016, 4027, 3, 382, 191, 0, 4017, 4018, 5, 248, 0, 0, 4018, 4019, 5, 274, 0, 0, 4019, 4027, 3, 202, 101, 0, 4020, 4021, 5, 296, 0, 0, 4021, 4027, 3, 378, 189, 0, 4022, 4023, 5, 442, 0, 0, 4023, 4027, 3, 374, 187, 0, 4024, 4027, 3, 310, 155, 0, 4025, 4027, 3, 312, 156, 0, 4026, 4009, 1, 0, 0, 0, 4026, 4011, 1, 0, 0, 0, 4026, 4013, 1, 0, 0, 0, 4026, 4015, 1, 0, 0, 0, 4026, 4017, 1, 0, 0, 0, 4026, 4020, 1, 0, 0, 0, 4026, 4022, 1, 0, 0, 0, 4026, 4024, 1, 0, 0, 0, 4026, 4025, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 4031, 5, 116, 0, 0, 4029, 4032, 3, 808, 404, 0, 4030, 4032, 5, 78, 0, 0, 4031, 4029, 1, 0, 0, 0, 4031, 4030, 1, 0, 0, 0, 4032, 327, 1, 0, 0, 0, 4033, 4034, 7, 48, 0, 0, 4034, 4035, 3, 330, 165, 0, 4035, 329, 1, 0, 0, 0, 4036, 4038, 7, 49, 0, 0, 4037, 4036, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4040, 1, 0, 0, 0, 4039, 4041, 3, 332, 166, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4080, 3, 818, 409, 0, 4043, 4045, 7, 50, 0, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4048, 3, 812, 406, 0, 4047, 4049, 3, 332, 166, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4051, 3, 818, 409, 0, 4051, 4080, 1, 0, 0, 0, 4052, 4054, 5, 210, 0, 0, 4053, 4055, 3, 812, 406, 0, 4054, 4053, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4057, 1, 0, 0, 0, 4056, 4058, 3, 332, 166, 0, 4057, 4056, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4059, 1, 0, 0, 0, 4059, 4080, 3, 818, 409, 0, 4060, 4062, 5, 210, 0, 0, 4061, 4060, 1, 0, 0, 0, 4061, 4062, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4065, 5, 30, 0, 0, 4064, 4066, 3, 332, 166, 0, 4065, 4064, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4080, 3, 818, 409, 0, 4068, 4073, 5, 144, 0, 0, 4069, 4071, 5, 30, 0, 0, 4070, 4069, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4074, 1, 0, 0, 0, 4072, 4074, 3, 812, 406, 0, 4073, 4070, 1, 0, 0, 0, 4073, 4072, 1, 0, 0, 0, 4074, 4076, 1, 0, 0, 0, 4075, 4077, 3, 332, 166, 0, 4076, 4075, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4080, 3, 818, 409, 0, 4079, 4037, 1, 0, 0, 0, 4079, 4044, 1, 0, 0, 0, 4079, 4052, 1, 0, 0, 0, 4079, 4061, 1, 0, 0, 0, 4079, 4068, 1, 0, 0, 0, 4080, 331, 1, 0, 0, 0, 4081, 4082, 7, 51, 0, 0, 4082, 333, 1, 0, 0, 0, 4083, 4084, 5, 65, 0, 0, 4084, 4085, 3, 338, 169, 0, 4085, 4086, 5, 80, 0, 0, 4086, 4087, 3, 344, 172, 0, 4087, 4088, 5, 94, 0, 0, 4088, 4092, 3, 346, 173, 0, 4089, 4090, 5, 105, 0, 0, 4090, 4091, 5, 65, 0, 0, 4091, 4093, 5, 279, 0, 0, 4092, 4089, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 335, 1, 0, 0, 0, 4094, 4098, 5, 317, 0, 0, 4095, 4096, 5, 65, 0, 0, 4096, 4097, 5, 279, 0, 0, 4097, 4099, 5, 62, 0, 0, 4098, 4095, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, 0, 4100, 4101, 3, 338, 169, 0, 4101, 4102, 5, 80, 0, 0, 4102, 4103, 3, 344, 172, 0, 4103, 4104, 5, 64, 0, 0, 4104, 4106, 3, 346, 173, 0, 4105, 4107, 3, 96, 48, 0, 4106, 4105, 1, 0, 0, 0, 4106, 4107, 1, 0, 0, 0, 4107, 337, 1, 0, 0, 0, 4108, 4113, 3, 342, 171, 0, 4109, 4110, 5, 6, 0, 0, 4110, 4112, 3, 342, 171, 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, 4132, 1, 0, 0, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4118, 5, 30, 0, 0, 4117, 4119, 5, 294, 0, 0, 4118, 4117, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 144, 72, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4132, 1, 0, 0, 0, 4123, 4128, 3, 340, 170, 0, 4124, 4125, 5, 6, 0, 0, 4125, 4127, 3, 340, 170, 0, 4126, 4124, 1, 0, 0, 0, 4127, 4130, 1, 0, 0, 0, 4128, 4126, 1, 0, 0, 0, 4128, 4129, 1, 0, 0, 0, 4129, 4132, 1, 0, 0, 0, 4130, 4128, 1, 0, 0, 0, 4131, 4108, 1, 0, 0, 0, 4131, 4116, 1, 0, 0, 0, 4131, 4123, 1, 0, 0, 0, 4132, 339, 1, 0, 0, 0, 4133, 4134, 7, 52, 0, 0, 4134, 341, 1, 0, 0, 0, 4135, 4140, 5, 88, 0, 0, 4136, 4140, 5, 86, 0, 0, 4137, 4140, 5, 46, 0, 0, 4138, 4140, 3, 818, 409, 0, 4139, 4135, 1, 0, 0, 0, 4139, 4136, 1, 0, 0, 0, 4139, 4137, 1, 0, 0, 0, 4139, 4138, 1, 0, 0, 0, 4140, 4142, 1, 0, 0, 0, 4141, 4143, 3, 144, 72, 0, 4142, 4141, 1, 0, 0, 0, 4142, 4143, 1, 0, 0, 0, 4143, 343, 1, 0, 0, 0, 4144, 4145, 5, 92, 0, 0, 4145, 4190, 3, 762, 381, 0, 4146, 4148, 5, 328, 0, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4149, 1, 0, 0, 0, 4149, 4190, 3, 760, 380, 0, 4150, 4154, 5, 63, 0, 0, 4151, 4152, 5, 174, 0, 0, 4152, 4155, 5, 381, 0, 0, 4153, 4155, 5, 331, 0, 0, 4154, 4151, 1, 0, 0, 0, 4154, 4153, 1, 0, 0, 0, 4155, 4158, 1, 0, 0, 0, 4156, 4158, 5, 247, 0, 0, 4157, 4150, 1, 0, 0, 0, 4157, 4156, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 4190, 3, 784, 392, 0, 4160, 4161, 5, 211, 0, 0, 4161, 4190, 3, 380, 190, 0, 4162, 4163, 5, 296, 0, 0, 4163, 4190, 3, 376, 188, 0, 4164, 4165, 5, 442, 0, 0, 4165, 4190, 3, 372, 186, 0, 4166, 4167, 5, 175, 0, 0, 4167, 4190, 3, 766, 383, 0, 4168, 4169, 7, 32, 0, 0, 4169, 4190, 3, 314, 157, 0, 4170, 4171, 5, 248, 0, 0, 4171, 4172, 5, 274, 0, 0, 4172, 4177, 3, 202, 101, 0, 4173, 4174, 5, 6, 0, 0, 4174, 4176, 3, 202, 101, 0, 4175, 4173, 1, 0, 0, 0, 4176, 4179, 1, 0, 0, 0, 4177, 4175, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4190, 1, 0, 0, 0, 4179, 4177, 1, 0, 0, 0, 4180, 4181, 5, 323, 0, 0, 4181, 4190, 3, 764, 382, 0, 4182, 4183, 5, 351, 0, 0, 4183, 4190, 3, 782, 391, 0, 4184, 4185, 5, 30, 0, 0, 4185, 4186, 7, 53, 0, 0, 4186, 4187, 5, 68, 0, 0, 4187, 4188, 5, 323, 0, 0, 4188, 4190, 3, 764, 382, 0, 4189, 4144, 1, 0, 0, 0, 4189, 4147, 1, 0, 0, 0, 4189, 4157, 1, 0, 0, 0, 4189, 4160, 1, 0, 0, 0, 4189, 4162, 1, 0, 0, 0, 4189, 4164, 1, 0, 0, 0, 4189, 4166, 1, 0, 0, 0, 4189, 4168, 1, 0, 0, 0, 4189, 4170, 1, 0, 0, 0, 4189, 4180, 1, 0, 0, 0, 4189, 4182, 1, 0, 0, 0, 4189, 4184, 1, 0, 0, 0, 4190, 345, 1, 0, 0, 0, 4191, 4193, 5, 66, 0, 0, 4192, 4191, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 4194, 1, 0, 0, 0, 4194, 4195, 3, 814, 407, 0, 4195, 4203, 1, 0, 0, 0, 4196, 4198, 5, 6, 0, 0, 4197, 4199, 5, 66, 0, 0, 4198, 4197, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4202, 3, 814, 407, 0, 4201, 4196, 1, 0, 0, 0, 4202, 4205, 1, 0, 0, 0, 4203, 4201, 1, 0, 0, 0, 4203, 4204, 1, 0, 0, 0, 4204, 347, 1, 0, 0, 0, 4205, 4203, 1, 0, 0, 0, 4206, 4207, 5, 65, 0, 0, 4207, 4212, 3, 342, 171, 0, 4208, 4209, 5, 6, 0, 0, 4209, 4211, 3, 342, 171, 0, 4210, 4208, 1, 0, 0, 0, 4211, 4214, 1, 0, 0, 0, 4212, 4210, 1, 0, 0, 0, 4212, 4213, 1, 0, 0, 0, 4213, 4215, 1, 0, 0, 0, 4214, 4212, 1, 0, 0, 0, 4215, 4216, 5, 94, 0, 0, 4216, 4220, 3, 816, 408, 0, 4217, 4218, 5, 105, 0, 0, 4218, 4219, 5, 134, 0, 0, 4219, 4221, 5, 279, 0, 0, 4220, 4217, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4225, 1, 0, 0, 0, 4222, 4223, 5, 214, 0, 0, 4223, 4224, 5, 147, 0, 0, 4224, 4226, 3, 814, 407, 0, 4225, 4222, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 349, 1, 0, 0, 0, 4227, 4231, 5, 317, 0, 0, 4228, 4229, 5, 134, 0, 0, 4229, 4230, 5, 279, 0, 0, 4230, 4232, 5, 62, 0, 0, 4231, 4228, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4233, 1, 0, 0, 0, 4233, 4238, 3, 342, 171, 0, 4234, 4235, 5, 6, 0, 0, 4235, 4237, 3, 342, 171, 0, 4236, 4234, 1, 0, 0, 0, 4237, 4240, 1, 0, 0, 0, 4238, 4236, 1, 0, 0, 0, 4238, 4239, 1, 0, 0, 0, 4239, 4241, 1, 0, 0, 0, 4240, 4238, 1, 0, 0, 0, 4241, 4242, 5, 64, 0, 0, 4242, 4246, 3, 816, 408, 0, 4243, 4244, 5, 214, 0, 0, 4244, 4245, 5, 147, 0, 0, 4245, 4247, 3, 814, 407, 0, 4246, 4243, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 4249, 1, 0, 0, 0, 4248, 4250, 3, 96, 48, 0, 4249, 4248, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, 0, 4250, 351, 1, 0, 0, 0, 4251, 4252, 5, 138, 0, 0, 4252, 4253, 5, 53, 0, 0, 4253, 4262, 5, 294, 0, 0, 4254, 4255, 5, 68, 0, 0, 4255, 4256, 5, 323, 0, 0, 4256, 4261, 3, 764, 382, 0, 4257, 4258, 5, 62, 0, 0, 4258, 4259, 7, 2, 0, 0, 4259, 4261, 3, 816, 408, 0, 4260, 4254, 1, 0, 0, 0, 4260, 4257, 1, 0, 0, 0, 4261, 4264, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4265, 1, 0, 0, 0, 4264, 4262, 1, 0, 0, 0, 4265, 4266, 3, 354, 177, 0, 4266, 353, 1, 0, 0, 0, 4267, 4268, 5, 65, 0, 0, 4268, 4269, 3, 338, 169, 0, 4269, 4270, 5, 80, 0, 0, 4270, 4271, 3, 356, 178, 0, 4271, 4272, 5, 94, 0, 0, 4272, 4276, 3, 346, 173, 0, 4273, 4274, 5, 105, 0, 0, 4274, 4275, 5, 65, 0, 0, 4275, 4277, 5, 279, 0, 0, 4276, 4273, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 4293, 1, 0, 0, 0, 4278, 4282, 5, 317, 0, 0, 4279, 4280, 5, 65, 0, 0, 4280, 4281, 5, 279, 0, 0, 4281, 4283, 5, 62, 0, 0, 4282, 4279, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4285, 3, 338, 169, 0, 4285, 4286, 5, 80, 0, 0, 4286, 4287, 3, 356, 178, 0, 4287, 4288, 5, 64, 0, 0, 4288, 4290, 3, 346, 173, 0, 4289, 4291, 3, 96, 48, 0, 4290, 4289, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4293, 1, 0, 0, 0, 4292, 4267, 1, 0, 0, 0, 4292, 4278, 1, 0, 0, 0, 4293, 355, 1, 0, 0, 0, 4294, 4295, 7, 54, 0, 0, 4295, 357, 1, 0, 0, 0, 4296, 4298, 5, 46, 0, 0, 4297, 4299, 5, 98, 0, 0, 4298, 4297, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 4302, 5, 226, 0, 0, 4301, 4303, 5, 109, 0, 0, 4302, 4301, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4305, 1, 0, 0, 0, 4304, 4306, 3, 294, 147, 0, 4305, 4304, 1, 0, 0, 0, 4305, 4306, 1, 0, 0, 0, 4306, 4308, 1, 0, 0, 0, 4307, 4309, 3, 818, 409, 0, 4308, 4307, 1, 0, 0, 0, 4308, 4309, 1, 0, 0, 0, 4309, 4310, 1, 0, 0, 0, 4310, 4311, 5, 80, 0, 0, 4311, 4313, 3, 624, 312, 0, 4312, 4314, 3, 170, 85, 0, 4313, 4312, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 4315, 1, 0, 0, 0, 4315, 4318, 3, 360, 180, 0, 4316, 4317, 5, 441, 0, 0, 4317, 4319, 3, 360, 180, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4325, 1, 0, 0, 0, 4320, 4322, 5, 273, 0, 0, 4321, 4323, 5, 77, 0, 0, 4322, 4321, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 4326, 5, 56, 0, 0, 4325, 4320, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4328, 1, 0, 0, 0, 4327, 4329, 3, 102, 51, 0, 4328, 4327, 1, 0, 0, 0, 4328, 4329, 1, 0, 0, 0, 4329, 4331, 1, 0, 0, 0, 4330, 4332, 3, 176, 88, 0, 4331, 4330, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4334, 1, 0, 0, 0, 4333, 4335, 3, 638, 319, 0, 4334, 4333, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 359, 1, 0, 0, 0, 4336, 4337, 5, 2, 0, 0, 4337, 4342, 3, 362, 181, 0, 4338, 4339, 5, 6, 0, 0, 4339, 4341, 3, 362, 181, 0, 4340, 4338, 1, 0, 0, 0, 4341, 4344, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4345, 4346, 5, 3, 0, 0, 4346, 361, 1, 0, 0, 0, 4347, 4354, 3, 800, 400, 0, 4348, 4354, 3, 688, 344, 0, 4349, 4350, 5, 2, 0, 0, 4350, 4351, 3, 674, 337, 0, 4351, 4352, 5, 3, 0, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4347, 1, 0, 0, 0, 4353, 4348, 1, 0, 0, 0, 4353, 4349, 1, 0, 0, 0, 4354, 4356, 1, 0, 0, 0, 4355, 4357, 3, 98, 49, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4364, 1, 0, 0, 0, 4358, 4360, 3, 316, 158, 0, 4359, 4358, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 4365, 1, 0, 0, 0, 4361, 4362, 3, 316, 158, 0, 4362, 4363, 3, 100, 50, 0, 4363, 4365, 1, 0, 0, 0, 4364, 4359, 1, 0, 0, 0, 4364, 4361, 1, 0, 0, 0, 4365, 4367, 1, 0, 0, 0, 4366, 4368, 7, 55, 0, 0, 4367, 4366, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4371, 1, 0, 0, 0, 4369, 4370, 5, 273, 0, 0, 4370, 4372, 7, 56, 0, 0, 4371, 4369, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 363, 1, 0, 0, 0, 4373, 4375, 5, 46, 0, 0, 4374, 4376, 3, 366, 183, 0, 4375, 4374, 1, 0, 0, 0, 4375, 4376, 1, 0, 0, 0, 4376, 4381, 1, 0, 0, 0, 4377, 4378, 5, 211, 0, 0, 4378, 4382, 3, 804, 402, 0, 4379, 4380, 5, 296, 0, 0, 4380, 4382, 3, 798, 399, 0, 4381, 4377, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4392, 5, 2, 0, 0, 4384, 4389, 3, 390, 195, 0, 4385, 4386, 5, 6, 0, 0, 4386, 4388, 3, 390, 195, 0, 4387, 4385, 1, 0, 0, 0, 4388, 4391, 1, 0, 0, 0, 4389, 4387, 1, 0, 0, 0, 4389, 4390, 1, 0, 0, 0, 4390, 4393, 1, 0, 0, 0, 4391, 4389, 1, 0, 0, 0, 4392, 4384, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 4394, 1, 0, 0, 0, 4394, 4395, 5, 3, 0, 0, 4395, 4412, 1, 0, 0, 0, 4396, 4410, 5, 316, 0, 0, 4397, 4411, 3, 388, 194, 0, 4398, 4399, 5, 92, 0, 0, 4399, 4400, 5, 2, 0, 0, 4400, 4405, 3, 402, 201, 0, 4401, 4402, 5, 6, 0, 0, 4402, 4404, 3, 402, 201, 0, 4403, 4401, 1, 0, 0, 0, 4404, 4407, 1, 0, 0, 0, 4405, 4403, 1, 0, 0, 0, 4405, 4406, 1, 0, 0, 0, 4406, 4408, 1, 0, 0, 0, 4407, 4405, 1, 0, 0, 0, 4408, 4409, 5, 3, 0, 0, 4409, 4411, 1, 0, 0, 0, 4410, 4397, 1, 0, 0, 0, 4410, 4398, 1, 0, 0, 0, 4411, 4413, 1, 0, 0, 0, 4412, 4396, 1, 0, 0, 0, 4412, 4413, 1, 0, 0, 0, 4413, 4415, 1, 0, 0, 0, 4414, 4416, 3, 398, 199, 0, 4415, 4414, 1, 0, 0, 0, 4416, 4417, 1, 0, 0, 0, 4417, 4415, 1, 0, 0, 0, 4417, 4418, 1, 0, 0, 0, 4418, 4424, 1, 0, 0, 0, 4419, 4420, 5, 105, 0, 0, 4420, 4421, 5, 2, 0, 0, 4421, 4422, 3, 784, 392, 0, 4422, 4423, 5, 3, 0, 0, 4423, 4425, 1, 0, 0, 0, 4424, 4419, 1, 0, 0, 0, 4424, 4425, 1, 0, 0, 0, 4425, 365, 1, 0, 0, 0, 4426, 4427, 5, 82, 0, 0, 4427, 4428, 5, 311, 0, 0, 4428, 367, 1, 0, 0, 0, 4429, 4431, 5, 2, 0, 0, 4430, 4432, 3, 370, 185, 0, 4431, 4430, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 4433, 1, 0, 0, 0, 4433, 4434, 5, 3, 0, 0, 4434, 369, 1, 0, 0, 0, 4435, 4440, 3, 384, 192, 0, 4436, 4437, 5, 6, 0, 0, 4437, 4439, 3, 384, 192, 0, 4438, 4436, 1, 0, 0, 0, 4439, 4442, 1, 0, 0, 0, 4440, 4438, 1, 0, 0, 0, 4440, 4441, 1, 0, 0, 0, 4441, 371, 1, 0, 0, 0, 4442, 4440, 1, 0, 0, 0, 4443, 4448, 3, 374, 187, 0, 4444, 4445, 5, 6, 0, 0, 4445, 4447, 3, 374, 187, 0, 4446, 4444, 1, 0, 0, 0, 4447, 4450, 1, 0, 0, 0, 4448, 4446, 1, 0, 0, 0, 4448, 4449, 1, 0, 0, 0, 4449, 373, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4451, 4452, 3, 794, 397, 0, 4452, 4453, 3, 368, 184, 0, 4453, 4457, 1, 0, 0, 0, 4454, 4457, 3, 832, 416, 0, 4455, 4457, 3, 780, 390, 0, 4456, 4451, 1, 0, 0, 0, 4456, 4454, 1, 0, 0, 0, 4456, 4455, 1, 0, 0, 0, 4457, 375, 1, 0, 0, 0, 4458, 4463, 3, 378, 189, 0, 4459, 4460, 5, 6, 0, 0, 4460, 4462, 3, 378, 189, 0, 4461, 4459, 1, 0, 0, 0, 4462, 4465, 1, 0, 0, 0, 4463, 4461, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 377, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4466, 4467, 3, 796, 398, 0, 4467, 4468, 3, 368, 184, 0, 4468, 4472, 1, 0, 0, 0, 4469, 4472, 3, 832, 416, 0, 4470, 4472, 3, 780, 390, 0, 4471, 4466, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4471, 4470, 1, 0, 0, 0, 4472, 379, 1, 0, 0, 0, 4473, 4478, 3, 382, 191, 0, 4474, 4475, 5, 6, 0, 0, 4475, 4477, 3, 382, 191, 0, 4476, 4474, 1, 0, 0, 0, 4477, 4480, 1, 0, 0, 0, 4478, 4476, 1, 0, 0, 0, 4478, 4479, 1, 0, 0, 0, 4479, 381, 1, 0, 0, 0, 4480, 4478, 1, 0, 0, 0, 4481, 4482, 3, 806, 403, 0, 4482, 4483, 3, 368, 184, 0, 4483, 4487, 1, 0, 0, 0, 4484, 4487, 3, 832, 416, 0, 4485, 4487, 3, 780, 390, 0, 4486, 4481, 1, 0, 0, 0, 4486, 4484, 1, 0, 0, 0, 4486, 4485, 1, 0, 0, 0, 4487, 383, 1, 0, 0, 0, 4488, 4490, 3, 386, 193, 0, 4489, 4491, 3, 820, 410, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4497, 1, 0, 0, 0, 4492, 4494, 3, 820, 410, 0, 4493, 4495, 3, 386, 193, 0, 4494, 4493, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4497, 1, 0, 0, 0, 4496, 4488, 1, 0, 0, 0, 4496, 4492, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4498, 1, 0, 0, 0, 4498, 4499, 3, 388, 194, 0, 4499, 385, 1, 0, 0, 0, 4500, 4502, 5, 68, 0, 0, 4501, 4503, 5, 453, 0, 0, 4502, 4501, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 4508, 1, 0, 0, 0, 4504, 4508, 5, 453, 0, 0, 4505, 4508, 5, 400, 0, 0, 4506, 4508, 5, 101, 0, 0, 4507, 4500, 1, 0, 0, 0, 4507, 4504, 1, 0, 0, 0, 4507, 4505, 1, 0, 0, 0, 4507, 4506, 1, 0, 0, 0, 4508, 387, 1, 0, 0, 0, 4509, 4519, 3, 652, 326, 0, 4510, 4512, 5, 415, 0, 0, 4511, 4510, 1, 0, 0, 0, 4511, 4512, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4514, 3, 820, 410, 0, 4514, 4515, 3, 318, 159, 0, 4515, 4516, 5, 27, 0, 0, 4516, 4517, 5, 360, 0, 0, 4517, 4519, 1, 0, 0, 0, 4518, 4509, 1, 0, 0, 0, 4518, 4511, 1, 0, 0, 0, 4519, 389, 1, 0, 0, 0, 4520, 4523, 3, 384, 192, 0, 4521, 4522, 7, 57, 0, 0, 4522, 4524, 3, 674, 337, 0, 4523, 4521, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 391, 1, 0, 0, 0, 4525, 4535, 5, 2, 0, 0, 4526, 4536, 5, 9, 0, 0, 4527, 4529, 3, 370, 185, 0, 4528, 4527, 1, 0, 0, 0, 4528, 4529, 1, 0, 0, 0, 4529, 4533, 1, 0, 0, 0, 4530, 4531, 5, 83, 0, 0, 4531, 4532, 5, 147, 0, 0, 4532, 4534, 3, 370, 185, 0, 4533, 4530, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 4536, 1, 0, 0, 0, 4535, 4526, 1, 0, 0, 0, 4535, 4528, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 4538, 5, 3, 0, 0, 4538, 393, 1, 0, 0, 0, 4539, 4540, 3, 806, 403, 0, 4540, 4541, 3, 392, 196, 0, 4541, 395, 1, 0, 0, 0, 4542, 4543, 5, 316, 0, 0, 4543, 4546, 5, 78, 0, 0, 4544, 4546, 5, 149, 0, 0, 4545, 4542, 1, 0, 0, 0, 4545, 4544, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 4548, 5, 80, 0, 0, 4548, 4549, 5, 78, 0, 0, 4549, 4572, 5, 458, 0, 0, 4550, 4572, 5, 346, 0, 0, 4551, 4572, 5, 222, 0, 0, 4552, 4572, 5, 338, 0, 0, 4553, 4572, 5, 377, 0, 0, 4554, 4556, 5, 205, 0, 0, 4555, 4554, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4558, 5, 327, 0, 0, 4558, 4572, 7, 58, 0, 0, 4559, 4572, 5, 250, 0, 0, 4560, 4561, 5, 77, 0, 0, 4561, 4572, 5, 250, 0, 0, 4562, 4563, 7, 59, 0, 0, 4563, 4572, 3, 202, 101, 0, 4564, 4565, 5, 459, 0, 0, 4565, 4572, 3, 316, 158, 0, 4566, 4567, 5, 333, 0, 0, 4567, 4572, 3, 42, 21, 0, 4568, 4572, 3, 60, 30, 0, 4569, 4570, 5, 460, 0, 0, 4570, 4572, 3, 818, 409, 0, 4571, 4545, 1, 0, 0, 0, 4571, 4550, 1, 0, 0, 0, 4571, 4551, 1, 0, 0, 0, 4571, 4552, 1, 0, 0, 0, 4571, 4553, 1, 0, 0, 0, 4571, 4555, 1, 0, 0, 0, 4571, 4559, 1, 0, 0, 0, 4571, 4560, 1, 0, 0, 0, 4571, 4562, 1, 0, 0, 0, 4571, 4564, 1, 0, 0, 0, 4571, 4566, 1, 0, 0, 0, 4571, 4568, 1, 0, 0, 0, 4571, 4569, 1, 0, 0, 0, 4572, 397, 1, 0, 0, 0, 4573, 4574, 5, 36, 0, 0, 4574, 4575, 3, 808, 404, 0, 4575, 4576, 3, 462, 231, 0, 4576, 4609, 1, 0, 0, 0, 4577, 4578, 5, 247, 0, 0, 4578, 4609, 3, 58, 29, 0, 4579, 4580, 5, 443, 0, 0, 4580, 4581, 5, 62, 0, 0, 4581, 4582, 5, 360, 0, 0, 4582, 4589, 3, 652, 326, 0, 4583, 4584, 5, 6, 0, 0, 4584, 4585, 5, 62, 0, 0, 4585, 4586, 5, 360, 0, 0, 4586, 4588, 3, 652, 326, 0, 4587, 4583, 1, 0, 0, 0, 4588, 4591, 1, 0, 0, 0, 4589, 4587, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4609, 1, 0, 0, 0, 4591, 4589, 1, 0, 0, 0, 4592, 4609, 5, 104, 0, 0, 4593, 4594, 5, 333, 0, 0, 4594, 4601, 3, 818, 409, 0, 4595, 4596, 5, 94, 0, 0, 4596, 4602, 3, 818, 409, 0, 4597, 4598, 5, 10, 0, 0, 4598, 4602, 3, 818, 409, 0, 4599, 4600, 5, 64, 0, 0, 4600, 4602, 5, 434, 0, 0, 4601, 4595, 1, 0, 0, 0, 4601, 4597, 1, 0, 0, 0, 4601, 4599, 1, 0, 0, 0, 4602, 4609, 1, 0, 0, 0, 4603, 4604, 5, 36, 0, 0, 4604, 4609, 3, 818, 409, 0, 4605, 4609, 3, 4, 2, 0, 4606, 4609, 3, 396, 198, 0, 4607, 4609, 3, 818, 409, 0, 4608, 4573, 1, 0, 0, 0, 4608, 4577, 1, 0, 0, 0, 4608, 4579, 1, 0, 0, 0, 4608, 4592, 1, 0, 0, 0, 4608, 4593, 1, 0, 0, 0, 4608, 4603, 1, 0, 0, 0, 4608, 4605, 1, 0, 0, 0, 4608, 4606, 1, 0, 0, 0, 4608, 4607, 1, 0, 0, 0, 4609, 399, 1, 0, 0, 0, 4610, 4611, 5, 105, 0, 0, 4611, 4612, 3, 284, 142, 0, 4612, 401, 1, 0, 0, 0, 4613, 4614, 3, 800, 400, 0, 4614, 4615, 3, 388, 194, 0, 4615, 403, 1, 0, 0, 0, 4616, 4623, 5, 138, 0, 0, 4617, 4618, 5, 211, 0, 0, 4618, 4624, 3, 382, 191, 0, 4619, 4620, 5, 296, 0, 0, 4620, 4624, 3, 378, 189, 0, 4621, 4622, 5, 442, 0, 0, 4622, 4624, 3, 374, 187, 0, 4623, 4617, 1, 0, 0, 0, 4623, 4619, 1, 0, 0, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4626, 1, 0, 0, 0, 4625, 4627, 3, 396, 198, 0, 4626, 4625, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 4626, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4631, 1, 0, 0, 0, 4630, 4632, 5, 315, 0, 0, 4631, 4630, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 405, 1, 0, 0, 0, 4633, 4649, 5, 191, 0, 0, 4634, 4636, 5, 211, 0, 0, 4635, 4637, 3, 422, 211, 0, 4636, 4635, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4650, 3, 380, 190, 0, 4639, 4641, 5, 296, 0, 0, 4640, 4642, 3, 422, 211, 0, 4641, 4640, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 4643, 1, 0, 0, 0, 4643, 4650, 3, 376, 188, 0, 4644, 4646, 5, 442, 0, 0, 4645, 4647, 3, 422, 211, 0, 4646, 4645, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 4650, 3, 372, 186, 0, 4649, 4634, 1, 0, 0, 0, 4649, 4639, 1, 0, 0, 0, 4649, 4644, 1, 0, 0, 0, 4650, 4652, 1, 0, 0, 0, 4651, 4653, 3, 96, 48, 0, 4652, 4651, 1, 0, 0, 0, 4652, 4653, 1, 0, 0, 0, 4653, 407, 1, 0, 0, 0, 4654, 4655, 5, 191, 0, 0, 4655, 4657, 5, 136, 0, 0, 4656, 4658, 3, 422, 211, 0, 4657, 4656, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4659, 1, 0, 0, 0, 4659, 4664, 3, 394, 197, 0, 4660, 4661, 5, 6, 0, 0, 4661, 4663, 3, 394, 197, 0, 4662, 4660, 1, 0, 0, 0, 4663, 4666, 1, 0, 0, 0, 4664, 4662, 1, 0, 0, 0, 4664, 4665, 1, 0, 0, 0, 4665, 4668, 1, 0, 0, 0, 4666, 4664, 1, 0, 0, 0, 4667, 4669, 3, 96, 48, 0, 4668, 4667, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 409, 1, 0, 0, 0, 4670, 4671, 5, 191, 0, 0, 4671, 4673, 5, 278, 0, 0, 4672, 4674, 3, 422, 211, 0, 4673, 4672, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 4680, 3, 416, 208, 0, 4676, 4677, 5, 6, 0, 0, 4677, 4679, 3, 416, 208, 0, 4678, 4676, 1, 0, 0, 0, 4679, 4682, 1, 0, 0, 0, 4680, 4678, 1, 0, 0, 0, 4680, 4681, 1, 0, 0, 0, 4681, 4684, 1, 0, 0, 0, 4682, 4680, 1, 0, 0, 0, 4683, 4685, 3, 96, 48, 0, 4684, 4683, 1, 0, 0, 0, 4684, 4685, 1, 0, 0, 0, 4685, 411, 1, 0, 0, 0, 4686, 4699, 5, 2, 0, 0, 4687, 4690, 3, 652, 326, 0, 4688, 4689, 5, 6, 0, 0, 4689, 4691, 3, 652, 326, 0, 4690, 4688, 1, 0, 0, 0, 4690, 4691, 1, 0, 0, 0, 4691, 4700, 1, 0, 0, 0, 4692, 4693, 5, 407, 0, 0, 4693, 4694, 5, 6, 0, 0, 4694, 4700, 3, 652, 326, 0, 4695, 4696, 3, 652, 326, 0, 4696, 4697, 5, 6, 0, 0, 4697, 4698, 5, 407, 0, 0, 4698, 4700, 1, 0, 0, 0, 4699, 4687, 1, 0, 0, 0, 4699, 4692, 1, 0, 0, 0, 4699, 4695, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4702, 5, 3, 0, 0, 4702, 413, 1, 0, 0, 0, 4703, 4704, 3, 818, 409, 0, 4704, 4705, 5, 11, 0, 0, 4705, 4707, 1, 0, 0, 0, 4706, 4703, 1, 0, 0, 0, 4707, 4710, 1, 0, 0, 0, 4708, 4706, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4711, 1, 0, 0, 0, 4710, 4708, 1, 0, 0, 0, 4711, 4712, 3, 720, 360, 0, 4712, 415, 1, 0, 0, 0, 4713, 4714, 3, 414, 207, 0, 4714, 4715, 3, 412, 206, 0, 4715, 417, 1, 0, 0, 0, 4716, 4720, 5, 57, 0, 0, 4717, 4721, 3, 808, 404, 0, 4718, 4719, 5, 247, 0, 0, 4719, 4721, 3, 58, 29, 0, 4720, 4717, 1, 0, 0, 0, 4720, 4718, 1, 0, 0, 0, 4721, 4722, 1, 0, 0, 0, 4722, 4720, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 419, 1, 0, 0, 0, 4724, 4725, 5, 46, 0, 0, 4725, 4726, 5, 41, 0, 0, 4726, 4727, 5, 2, 0, 0, 4727, 4728, 3, 652, 326, 0, 4728, 4729, 5, 36, 0, 0, 4729, 4730, 3, 652, 326, 0, 4730, 4747, 5, 3, 0, 0, 4731, 4732, 5, 379, 0, 0, 4732, 4735, 5, 211, 0, 0, 4733, 4734, 5, 36, 0, 0, 4734, 4736, 7, 60, 0, 0, 4735, 4733, 1, 0, 0, 0, 4735, 4736, 1, 0, 0, 0, 4736, 4748, 1, 0, 0, 0, 4737, 4741, 5, 105, 0, 0, 4738, 4739, 5, 211, 0, 0, 4739, 4742, 3, 382, 191, 0, 4740, 4742, 5, 400, 0, 0, 4741, 4738, 1, 0, 0, 0, 4741, 4740, 1, 0, 0, 0, 4742, 4745, 1, 0, 0, 0, 4743, 4744, 5, 36, 0, 0, 4744, 4746, 7, 60, 0, 0, 4745, 4743, 1, 0, 0, 0, 4745, 4746, 1, 0, 0, 0, 4746, 4748, 1, 0, 0, 0, 4747, 4731, 1, 0, 0, 0, 4747, 4737, 1, 0, 0, 0, 4748, 421, 1, 0, 0, 0, 4749, 4750, 5, 220, 0, 0, 4750, 4751, 5, 396, 0, 0, 4751, 423, 1, 0, 0, 0, 4752, 4754, 5, 46, 0, 0, 4753, 4755, 3, 366, 183, 0, 4754, 4753, 1, 0, 0, 0, 4754, 4755, 1, 0, 0, 0, 4755, 4756, 1, 0, 0, 0, 4756, 4757, 5, 443, 0, 0, 4757, 4758, 5, 62, 0, 0, 4758, 4759, 3, 652, 326, 0, 4759, 4760, 5, 247, 0, 0, 4760, 4761, 3, 818, 409, 0, 4761, 4776, 5, 2, 0, 0, 4762, 4763, 5, 64, 0, 0, 4763, 4767, 3, 426, 213, 0, 4764, 4765, 5, 6, 0, 0, 4765, 4766, 5, 94, 0, 0, 4766, 4768, 3, 426, 213, 0, 4767, 4764, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4777, 1, 0, 0, 0, 4769, 4770, 5, 94, 0, 0, 4770, 4774, 3, 426, 213, 0, 4771, 4772, 5, 6, 0, 0, 4772, 4773, 5, 64, 0, 0, 4773, 4775, 3, 426, 213, 0, 4774, 4771, 1, 0, 0, 0, 4774, 4775, 1, 0, 0, 0, 4775, 4777, 1, 0, 0, 0, 4776, 4762, 1, 0, 0, 0, 4776, 4769, 1, 0, 0, 0, 4777, 4778, 1, 0, 0, 0, 4778, 4779, 5, 3, 0, 0, 4779, 425, 1, 0, 0, 0, 4780, 4781, 5, 461, 0, 0, 4781, 4782, 5, 105, 0, 0, 4782, 4783, 5, 211, 0, 0, 4783, 4784, 3, 382, 191, 0, 4784, 427, 1, 0, 0, 0, 4785, 4796, 5, 306, 0, 0, 4786, 4787, 5, 2, 0, 0, 4787, 4792, 5, 128, 0, 0, 4788, 4789, 5, 6, 0, 0, 4789, 4791, 5, 128, 0, 0, 4790, 4788, 1, 0, 0, 0, 4791, 4794, 1, 0, 0, 0, 4792, 4790, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 4795, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4797, 5, 3, 0, 0, 4796, 4786, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4823, 1, 0, 0, 0, 4798, 4800, 5, 226, 0, 0, 4799, 4801, 5, 109, 0, 0, 4800, 4799, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4802, 1, 0, 0, 0, 4802, 4824, 3, 780, 390, 0, 4803, 4805, 5, 92, 0, 0, 4804, 4806, 5, 109, 0, 0, 4805, 4804, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 4807, 1, 0, 0, 0, 4807, 4824, 3, 774, 387, 0, 4808, 4810, 5, 323, 0, 0, 4809, 4811, 5, 109, 0, 0, 4810, 4809, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 4812, 1, 0, 0, 0, 4812, 4824, 3, 790, 395, 0, 4813, 4815, 5, 349, 0, 0, 4814, 4816, 5, 109, 0, 0, 4815, 4814, 1, 0, 0, 0, 4815, 4816, 1, 0, 0, 0, 4816, 4817, 1, 0, 0, 0, 4817, 4824, 3, 818, 409, 0, 4818, 4820, 5, 175, 0, 0, 4819, 4821, 5, 109, 0, 0, 4820, 4819, 1, 0, 0, 0, 4820, 4821, 1, 0, 0, 0, 4821, 4822, 1, 0, 0, 0, 4822, 4824, 3, 788, 394, 0, 4823, 4798, 1, 0, 0, 0, 4823, 4803, 1, 0, 0, 0, 4823, 4808, 1, 0, 0, 0, 4823, 4813, 1, 0, 0, 0, 4823, 4818, 1, 0, 0, 0, 4824, 429, 1, 0, 0, 0, 4825, 4826, 5, 138, 0, 0, 4826, 4827, 3, 176, 88, 0, 4827, 4828, 7, 16, 0, 0, 4828, 4829, 3, 100, 50, 0, 4829, 431, 1, 0, 0, 0, 4830, 4835, 5, 138, 0, 0, 4831, 4832, 5, 136, 0, 0, 4832, 4836, 3, 394, 197, 0, 4833, 4834, 5, 442, 0, 0, 4834, 4836, 3, 374, 187, 0, 4835, 4831, 1, 0, 0, 0, 4835, 4833, 1, 0, 0, 0, 4836, 4837, 1, 0, 0, 0, 4837, 4838, 5, 309, 0, 0, 4838, 4839, 5, 94, 0, 0, 4839, 4840, 3, 818, 409, 0, 4840, 5038, 1, 0, 0, 0, 4841, 4842, 5, 138, 0, 0, 4842, 4843, 5, 175, 0, 0, 4843, 4844, 3, 788, 394, 0, 4844, 4845, 5, 309, 0, 0, 4845, 4846, 5, 94, 0, 0, 4846, 4847, 3, 786, 393, 0, 4847, 5038, 1, 0, 0, 0, 4848, 4849, 5, 138, 0, 0, 4849, 4850, 7, 61, 0, 0, 4850, 4851, 3, 316, 158, 0, 4851, 4852, 5, 309, 0, 0, 4852, 4853, 5, 94, 0, 0, 4853, 4854, 3, 818, 409, 0, 4854, 5038, 1, 0, 0, 0, 4855, 4856, 5, 138, 0, 0, 4856, 4857, 5, 211, 0, 0, 4857, 4858, 3, 382, 191, 0, 4858, 4859, 5, 309, 0, 0, 4859, 4860, 5, 94, 0, 0, 4860, 4861, 3, 804, 402, 0, 4861, 5038, 1, 0, 0, 0, 4862, 4863, 5, 138, 0, 0, 4863, 4864, 5, 278, 0, 0, 4864, 4865, 7, 31, 0, 0, 4865, 4866, 3, 316, 158, 0, 4866, 4867, 3, 170, 85, 0, 4867, 4868, 5, 309, 0, 0, 4868, 4869, 5, 94, 0, 0, 4869, 4870, 3, 818, 409, 0, 4870, 5038, 1, 0, 0, 0, 4871, 4872, 5, 138, 0, 0, 4872, 4873, 5, 296, 0, 0, 4873, 4874, 3, 378, 189, 0, 4874, 4875, 5, 309, 0, 0, 4875, 4876, 5, 94, 0, 0, 4876, 4877, 3, 798, 399, 0, 4877, 5038, 1, 0, 0, 0, 4878, 4879, 5, 138, 0, 0, 4879, 4880, 5, 323, 0, 0, 4880, 4881, 3, 790, 395, 0, 4881, 4882, 5, 309, 0, 0, 4882, 4883, 5, 94, 0, 0, 4883, 4884, 3, 32, 16, 0, 4884, 5038, 1, 0, 0, 0, 4885, 4886, 5, 138, 0, 0, 4886, 4888, 7, 62, 0, 0, 4887, 4889, 3, 422, 211, 0, 4888, 4887, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4891, 3, 780, 390, 0, 4891, 4892, 5, 309, 0, 0, 4892, 4893, 5, 94, 0, 0, 4893, 4894, 3, 818, 409, 0, 4894, 5038, 1, 0, 0, 0, 4895, 4897, 5, 138, 0, 0, 4896, 4898, 5, 259, 0, 0, 4897, 4896, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4901, 5, 376, 0, 0, 4900, 4902, 3, 422, 211, 0, 4901, 4900, 1, 0, 0, 0, 4901, 4902, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4904, 3, 778, 389, 0, 4904, 4905, 5, 309, 0, 0, 4905, 4906, 5, 94, 0, 0, 4906, 4907, 3, 776, 388, 0, 4907, 5038, 1, 0, 0, 0, 4908, 4910, 5, 138, 0, 0, 4909, 4911, 5, 63, 0, 0, 4910, 4909, 1, 0, 0, 0, 4910, 4911, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4914, 5, 92, 0, 0, 4913, 4915, 3, 422, 211, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4917, 3, 624, 312, 0, 4917, 4918, 5, 309, 0, 0, 4918, 4919, 5, 94, 0, 0, 4919, 4920, 3, 772, 386, 0, 4920, 5038, 1, 0, 0, 0, 4921, 4946, 5, 138, 0, 0, 4922, 4924, 5, 63, 0, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4925, 1, 0, 0, 0, 4925, 4927, 5, 92, 0, 0, 4926, 4928, 3, 422, 211, 0, 4927, 4926, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4930, 3, 624, 312, 0, 4930, 4932, 5, 309, 0, 0, 4931, 4933, 5, 44, 0, 0, 4932, 4931, 1, 0, 0, 0, 4932, 4933, 1, 0, 0, 0, 4933, 4947, 1, 0, 0, 0, 4934, 4936, 5, 259, 0, 0, 4935, 4934, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4939, 5, 376, 0, 0, 4938, 4940, 3, 422, 211, 0, 4939, 4938, 1, 0, 0, 0, 4939, 4940, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 4942, 3, 778, 389, 0, 4942, 4944, 5, 309, 0, 0, 4943, 4945, 5, 44, 0, 0, 4944, 4943, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4947, 1, 0, 0, 0, 4946, 4923, 1, 0, 0, 0, 4946, 4935, 1, 0, 0, 0, 4947, 4948, 1, 0, 0, 0, 4948, 4949, 3, 800, 400, 0, 4949, 4950, 5, 94, 0, 0, 4950, 4951, 3, 802, 401, 0, 4951, 5038, 1, 0, 0, 0, 4952, 4960, 5, 138, 0, 0, 4953, 4955, 5, 92, 0, 0, 4954, 4956, 3, 422, 211, 0, 4955, 4954, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 4957, 1, 0, 0, 0, 4957, 4961, 3, 624, 312, 0, 4958, 4959, 5, 189, 0, 0, 4959, 4961, 3, 316, 158, 0, 4960, 4953, 1, 0, 0, 0, 4960, 4958, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 4963, 5, 309, 0, 0, 4963, 4964, 5, 45, 0, 0, 4964, 4965, 3, 818, 409, 0, 4965, 4966, 5, 94, 0, 0, 4966, 4967, 3, 818, 409, 0, 4967, 5038, 1, 0, 0, 0, 4968, 4975, 5, 138, 0, 0, 4969, 4971, 5, 445, 0, 0, 4970, 4972, 3, 422, 211, 0, 4971, 4970, 1, 0, 0, 0, 4971, 4972, 1, 0, 0, 0, 4972, 4976, 1, 0, 0, 0, 4973, 4976, 5, 321, 0, 0, 4974, 4976, 5, 357, 0, 0, 4975, 4969, 1, 0, 0, 0, 4975, 4973, 1, 0, 0, 0, 4975, 4974, 1, 0, 0, 0, 4976, 4977, 1, 0, 0, 0, 4977, 4978, 3, 818, 409, 0, 4978, 4979, 5, 80, 0, 0, 4979, 4980, 3, 780, 390, 0, 4980, 4981, 5, 309, 0, 0, 4981, 4982, 5, 94, 0, 0, 4982, 4983, 3, 818, 409, 0, 4983, 5038, 1, 0, 0, 0, 4984, 4997, 5, 138, 0, 0, 4985, 4986, 5, 63, 0, 0, 4986, 4987, 5, 174, 0, 0, 4987, 4998, 5, 381, 0, 0, 4988, 4990, 5, 295, 0, 0, 4989, 4988, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4991, 1, 0, 0, 0, 4991, 4998, 5, 247, 0, 0, 4992, 4998, 5, 452, 0, 0, 4993, 4998, 5, 331, 0, 0, 4994, 4998, 5, 451, 0, 0, 4995, 4996, 5, 198, 0, 0, 4996, 4998, 5, 357, 0, 0, 4997, 4985, 1, 0, 0, 0, 4997, 4989, 1, 0, 0, 0, 4997, 4992, 1, 0, 0, 0, 4997, 4993, 1, 0, 0, 0, 4997, 4994, 1, 0, 0, 0, 4997, 4995, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5000, 3, 818, 409, 0, 5000, 5001, 5, 309, 0, 0, 5001, 5002, 5, 94, 0, 0, 5002, 5003, 3, 818, 409, 0, 5003, 5038, 1, 0, 0, 0, 5004, 5005, 5, 138, 0, 0, 5005, 5006, 7, 45, 0, 0, 5006, 5007, 3, 814, 407, 0, 5007, 5008, 5, 309, 0, 0, 5008, 5009, 5, 94, 0, 0, 5009, 5010, 3, 814, 407, 0, 5010, 5038, 1, 0, 0, 0, 5011, 5012, 5, 138, 0, 0, 5012, 5013, 3, 176, 88, 0, 5013, 5014, 5, 309, 0, 0, 5014, 5015, 5, 94, 0, 0, 5015, 5016, 3, 768, 384, 0, 5016, 5038, 1, 0, 0, 0, 5017, 5018, 5, 138, 0, 0, 5018, 5019, 5, 355, 0, 0, 5019, 5020, 5, 325, 0, 0, 5020, 5021, 7, 41, 0, 0, 5021, 5022, 3, 316, 158, 0, 5022, 5023, 5, 309, 0, 0, 5023, 5024, 5, 94, 0, 0, 5024, 5025, 3, 818, 409, 0, 5025, 5038, 1, 0, 0, 0, 5026, 5027, 5, 138, 0, 0, 5027, 5028, 5, 360, 0, 0, 5028, 5029, 3, 316, 158, 0, 5029, 5030, 5, 309, 0, 0, 5030, 5031, 5, 143, 0, 0, 5031, 5032, 3, 818, 409, 0, 5032, 5033, 5, 94, 0, 0, 5033, 5035, 3, 818, 409, 0, 5034, 5036, 3, 96, 48, 0, 5035, 5034, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5038, 1, 0, 0, 0, 5037, 4830, 1, 0, 0, 0, 5037, 4841, 1, 0, 0, 0, 5037, 4848, 1, 0, 0, 0, 5037, 4855, 1, 0, 0, 0, 5037, 4862, 1, 0, 0, 0, 5037, 4871, 1, 0, 0, 0, 5037, 4878, 1, 0, 0, 0, 5037, 4885, 1, 0, 0, 0, 5037, 4895, 1, 0, 0, 0, 5037, 4908, 1, 0, 0, 0, 5037, 4921, 1, 0, 0, 0, 5037, 4952, 1, 0, 0, 0, 5037, 4968, 1, 0, 0, 0, 5037, 4984, 1, 0, 0, 0, 5037, 5004, 1, 0, 0, 0, 5037, 5011, 1, 0, 0, 0, 5037, 5017, 1, 0, 0, 0, 5037, 5026, 1, 0, 0, 0, 5038, 433, 1, 0, 0, 0, 5039, 5056, 5, 138, 0, 0, 5040, 5041, 5, 211, 0, 0, 5041, 5057, 3, 382, 191, 0, 5042, 5043, 5, 296, 0, 0, 5043, 5057, 3, 378, 189, 0, 5044, 5045, 5, 442, 0, 0, 5045, 5057, 3, 374, 187, 0, 5046, 5047, 5, 357, 0, 0, 5047, 5048, 3, 818, 409, 0, 5048, 5049, 5, 80, 0, 0, 5049, 5050, 3, 780, 390, 0, 5050, 5057, 1, 0, 0, 0, 5051, 5052, 5, 259, 0, 0, 5052, 5053, 5, 376, 0, 0, 5053, 5057, 3, 778, 389, 0, 5054, 5055, 5, 226, 0, 0, 5055, 5057, 3, 780, 390, 0, 5056, 5040, 1, 0, 0, 0, 5056, 5042, 1, 0, 0, 0, 5056, 5044, 1, 0, 0, 0, 5056, 5046, 1, 0, 0, 0, 5056, 5051, 1, 0, 0, 0, 5056, 5054, 1, 0, 0, 0, 5057, 5059, 1, 0, 0, 0, 5058, 5060, 5, 269, 0, 0, 5059, 5058, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5062, 5, 462, 0, 0, 5062, 5063, 5, 80, 0, 0, 5063, 5064, 5, 204, 0, 0, 5064, 5065, 3, 818, 409, 0, 5065, 435, 1, 0, 0, 0, 5066, 5105, 5, 138, 0, 0, 5067, 5068, 5, 136, 0, 0, 5068, 5106, 3, 394, 197, 0, 5069, 5070, 5, 204, 0, 0, 5070, 5106, 3, 818, 409, 0, 5071, 5072, 5, 211, 0, 0, 5072, 5106, 3, 382, 191, 0, 5073, 5074, 5, 278, 0, 0, 5074, 5106, 3, 416, 208, 0, 5075, 5076, 5, 278, 0, 0, 5076, 5077, 7, 31, 0, 0, 5077, 5078, 3, 316, 158, 0, 5078, 5079, 3, 170, 85, 0, 5079, 5106, 1, 0, 0, 0, 5080, 5081, 5, 296, 0, 0, 5081, 5106, 3, 378, 189, 0, 5082, 5083, 5, 442, 0, 0, 5083, 5106, 3, 374, 187, 0, 5084, 5086, 5, 328, 0, 0, 5085, 5087, 3, 422, 211, 0, 5086, 5085, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5106, 3, 780, 390, 0, 5089, 5091, 5, 259, 0, 0, 5090, 5089, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5094, 5, 376, 0, 0, 5093, 5095, 3, 422, 211, 0, 5094, 5093, 1, 0, 0, 0, 5094, 5095, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5106, 3, 778, 389, 0, 5097, 5099, 5, 63, 0, 0, 5098, 5097, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5102, 5, 92, 0, 0, 5101, 5103, 3, 422, 211, 0, 5102, 5101, 1, 0, 0, 0, 5102, 5103, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 5106, 3, 624, 312, 0, 5105, 5067, 1, 0, 0, 0, 5105, 5069, 1, 0, 0, 0, 5105, 5071, 1, 0, 0, 0, 5105, 5073, 1, 0, 0, 0, 5105, 5075, 1, 0, 0, 0, 5105, 5080, 1, 0, 0, 0, 5105, 5082, 1, 0, 0, 0, 5105, 5084, 1, 0, 0, 0, 5105, 5090, 1, 0, 0, 0, 5105, 5098, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5108, 5, 333, 0, 0, 5108, 5109, 5, 323, 0, 0, 5109, 5110, 3, 790, 395, 0, 5110, 5128, 1, 0, 0, 0, 5111, 5120, 5, 138, 0, 0, 5112, 5113, 5, 355, 0, 0, 5113, 5114, 5, 325, 0, 0, 5114, 5121, 7, 41, 0, 0, 5115, 5121, 5, 108, 0, 0, 5116, 5121, 5, 168, 0, 0, 5117, 5121, 5, 189, 0, 0, 5118, 5121, 5, 342, 0, 0, 5119, 5121, 5, 360, 0, 0, 5120, 5112, 1, 0, 0, 0, 5120, 5115, 1, 0, 0, 0, 5120, 5116, 1, 0, 0, 0, 5120, 5117, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5119, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5123, 3, 316, 158, 0, 5123, 5124, 5, 333, 0, 0, 5124, 5125, 5, 323, 0, 0, 5125, 5126, 3, 790, 395, 0, 5126, 5128, 1, 0, 0, 0, 5127, 5066, 1, 0, 0, 0, 5127, 5111, 1, 0, 0, 0, 5128, 437, 1, 0, 0, 0, 5129, 5130, 5, 138, 0, 0, 5130, 5131, 5, 278, 0, 0, 5131, 5132, 3, 416, 208, 0, 5132, 5133, 5, 333, 0, 0, 5133, 5134, 3, 440, 220, 0, 5134, 439, 1, 0, 0, 0, 5135, 5136, 5, 2, 0, 0, 5136, 5141, 3, 442, 221, 0, 5137, 5138, 5, 6, 0, 0, 5138, 5140, 3, 442, 221, 0, 5139, 5137, 1, 0, 0, 0, 5140, 5143, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 5144, 1, 0, 0, 0, 5143, 5141, 1, 0, 0, 0, 5144, 5145, 5, 3, 0, 0, 5145, 441, 1, 0, 0, 0, 5146, 5147, 3, 824, 412, 0, 5147, 5154, 5, 10, 0, 0, 5148, 5155, 5, 407, 0, 0, 5149, 5155, 3, 388, 194, 0, 5150, 5155, 3, 834, 417, 0, 5151, 5155, 3, 726, 363, 0, 5152, 5155, 3, 202, 101, 0, 5153, 5155, 3, 808, 404, 0, 5154, 5148, 1, 0, 0, 0, 5154, 5149, 1, 0, 0, 0, 5154, 5150, 1, 0, 0, 0, 5154, 5151, 1, 0, 0, 0, 5154, 5152, 1, 0, 0, 0, 5154, 5153, 1, 0, 0, 0, 5155, 443, 1, 0, 0, 0, 5156, 5157, 5, 138, 0, 0, 5157, 5158, 5, 360, 0, 0, 5158, 5159, 3, 316, 158, 0, 5159, 5160, 5, 333, 0, 0, 5160, 5161, 3, 440, 220, 0, 5161, 445, 1, 0, 0, 0, 5162, 5163, 5, 138, 0, 0, 5163, 5164, 5, 278, 0, 0, 5164, 5165, 7, 31, 0, 0, 5165, 5166, 3, 316, 158, 0, 5166, 5167, 3, 170, 85, 0, 5167, 5168, 5, 282, 0, 0, 5168, 5169, 5, 94, 0, 0, 5169, 5170, 3, 814, 407, 0, 5170, 5237, 1, 0, 0, 0, 5171, 5198, 5, 138, 0, 0, 5172, 5173, 5, 136, 0, 0, 5173, 5199, 3, 394, 197, 0, 5174, 5175, 5, 175, 0, 0, 5175, 5199, 3, 788, 394, 0, 5176, 5177, 5, 211, 0, 0, 5177, 5199, 3, 382, 191, 0, 5178, 5180, 5, 295, 0, 0, 5179, 5178, 1, 0, 0, 0, 5179, 5180, 1, 0, 0, 0, 5180, 5181, 1, 0, 0, 0, 5181, 5182, 5, 247, 0, 0, 5182, 5199, 3, 818, 409, 0, 5183, 5184, 5, 248, 0, 0, 5184, 5185, 5, 274, 0, 0, 5185, 5199, 3, 202, 101, 0, 5186, 5187, 5, 248, 0, 0, 5187, 5188, 5, 274, 0, 0, 5188, 5199, 3, 202, 101, 0, 5189, 5190, 5, 278, 0, 0, 5190, 5199, 3, 416, 208, 0, 5191, 5192, 5, 296, 0, 0, 5192, 5199, 3, 378, 189, 0, 5193, 5194, 5, 442, 0, 0, 5194, 5199, 3, 374, 187, 0, 5195, 5196, 5, 323, 0, 0, 5196, 5199, 3, 790, 395, 0, 5197, 5199, 3, 176, 88, 0, 5198, 5172, 1, 0, 0, 0, 5198, 5174, 1, 0, 0, 0, 5198, 5176, 1, 0, 0, 0, 5198, 5179, 1, 0, 0, 0, 5198, 5183, 1, 0, 0, 0, 5198, 5186, 1, 0, 0, 0, 5198, 5189, 1, 0, 0, 0, 5198, 5191, 1, 0, 0, 0, 5198, 5193, 1, 0, 0, 0, 5198, 5195, 1, 0, 0, 0, 5198, 5197, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 5, 282, 0, 0, 5201, 5202, 5, 94, 0, 0, 5202, 5203, 3, 814, 407, 0, 5203, 5237, 1, 0, 0, 0, 5204, 5213, 5, 138, 0, 0, 5205, 5206, 5, 355, 0, 0, 5206, 5207, 5, 325, 0, 0, 5207, 5214, 7, 63, 0, 0, 5208, 5214, 5, 108, 0, 0, 5209, 5214, 5, 168, 0, 0, 5210, 5214, 5, 189, 0, 0, 5211, 5214, 5, 360, 0, 0, 5212, 5214, 5, 342, 0, 0, 5213, 5205, 1, 0, 0, 0, 5213, 5208, 1, 0, 0, 0, 5213, 5209, 1, 0, 0, 0, 5213, 5210, 1, 0, 0, 0, 5213, 5211, 1, 0, 0, 0, 5213, 5212, 1, 0, 0, 0, 5214, 5215, 1, 0, 0, 0, 5215, 5216, 3, 316, 158, 0, 5216, 5217, 5, 282, 0, 0, 5217, 5218, 5, 94, 0, 0, 5218, 5219, 3, 814, 407, 0, 5219, 5237, 1, 0, 0, 0, 5220, 5229, 5, 138, 0, 0, 5221, 5230, 5, 331, 0, 0, 5222, 5223, 5, 63, 0, 0, 5223, 5224, 5, 174, 0, 0, 5224, 5230, 5, 381, 0, 0, 5225, 5226, 5, 198, 0, 0, 5226, 5230, 5, 357, 0, 0, 5227, 5230, 5, 452, 0, 0, 5228, 5230, 5, 451, 0, 0, 5229, 5221, 1, 0, 0, 0, 5229, 5222, 1, 0, 0, 0, 5229, 5225, 1, 0, 0, 0, 5229, 5227, 1, 0, 0, 0, 5229, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 5232, 3, 818, 409, 0, 5232, 5233, 5, 282, 0, 0, 5233, 5234, 5, 94, 0, 0, 5234, 5235, 3, 814, 407, 0, 5235, 5237, 1, 0, 0, 0, 5236, 5162, 1, 0, 0, 0, 5236, 5171, 1, 0, 0, 0, 5236, 5204, 1, 0, 0, 0, 5236, 5220, 1, 0, 0, 0, 5237, 447, 1, 0, 0, 0, 5238, 5239, 5, 46, 0, 0, 5239, 5240, 5, 452, 0, 0, 5240, 5247, 3, 818, 409, 0, 5241, 5242, 5, 62, 0, 0, 5242, 5243, 5, 92, 0, 0, 5243, 5248, 3, 628, 314, 0, 5244, 5245, 5, 62, 0, 0, 5245, 5246, 5, 30, 0, 0, 5246, 5248, 5, 350, 0, 0, 5247, 5241, 1, 0, 0, 0, 5247, 5244, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5250, 1, 0, 0, 0, 5249, 5251, 3, 400, 200, 0, 5250, 5249, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 449, 1, 0, 0, 0, 5252, 5253, 5, 138, 0, 0, 5253, 5254, 5, 452, 0, 0, 5254, 5272, 3, 818, 409, 0, 5255, 5256, 5, 282, 0, 0, 5256, 5257, 5, 94, 0, 0, 5257, 5273, 3, 814, 407, 0, 5258, 5259, 5, 333, 0, 0, 5259, 5273, 3, 284, 142, 0, 5260, 5261, 5, 309, 0, 0, 5261, 5262, 5, 94, 0, 0, 5262, 5273, 3, 818, 409, 0, 5263, 5264, 7, 34, 0, 0, 5264, 5269, 3, 626, 313, 0, 5265, 5266, 5, 6, 0, 0, 5266, 5268, 3, 626, 313, 0, 5267, 5265, 1, 0, 0, 0, 5268, 5271, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5273, 1, 0, 0, 0, 5271, 5269, 1, 0, 0, 0, 5272, 5255, 1, 0, 0, 0, 5272, 5258, 1, 0, 0, 0, 5272, 5260, 1, 0, 0, 0, 5272, 5263, 1, 0, 0, 0, 5273, 451, 1, 0, 0, 0, 5274, 5275, 5, 46, 0, 0, 5275, 5276, 5, 451, 0, 0, 5276, 5277, 3, 818, 409, 0, 5277, 5278, 5, 164, 0, 0, 5278, 5279, 3, 808, 404, 0, 5279, 5280, 5, 452, 0, 0, 5280, 5285, 3, 824, 412, 0, 5281, 5282, 5, 6, 0, 0, 5282, 5284, 3, 824, 412, 0, 5283, 5281, 1, 0, 0, 0, 5284, 5287, 1, 0, 0, 0, 5285, 5283, 1, 0, 0, 0, 5285, 5286, 1, 0, 0, 0, 5286, 5289, 1, 0, 0, 0, 5287, 5285, 1, 0, 0, 0, 5288, 5290, 3, 400, 200, 0, 5289, 5288, 1, 0, 0, 0, 5289, 5290, 1, 0, 0, 0, 5290, 453, 1, 0, 0, 0, 5291, 5292, 5, 138, 0, 0, 5292, 5293, 5, 451, 0, 0, 5293, 5294, 3, 818, 409, 0, 5294, 5295, 5, 333, 0, 0, 5295, 5296, 3, 284, 142, 0, 5296, 5348, 1, 0, 0, 0, 5297, 5298, 5, 138, 0, 0, 5298, 5299, 5, 451, 0, 0, 5299, 5300, 3, 818, 409, 0, 5300, 5301, 5, 164, 0, 0, 5301, 5302, 3, 808, 404, 0, 5302, 5348, 1, 0, 0, 0, 5303, 5304, 5, 138, 0, 0, 5304, 5305, 5, 451, 0, 0, 5305, 5306, 3, 818, 409, 0, 5306, 5307, 5, 305, 0, 0, 5307, 5309, 5, 452, 0, 0, 5308, 5310, 3, 400, 200, 0, 5309, 5308, 1, 0, 0, 0, 5309, 5310, 1, 0, 0, 0, 5310, 5348, 1, 0, 0, 0, 5311, 5312, 5, 138, 0, 0, 5312, 5313, 5, 451, 0, 0, 5313, 5314, 3, 818, 409, 0, 5314, 5315, 7, 34, 0, 0, 5315, 5316, 5, 452, 0, 0, 5316, 5321, 3, 824, 412, 0, 5317, 5318, 5, 6, 0, 0, 5318, 5320, 3, 824, 412, 0, 5319, 5317, 1, 0, 0, 0, 5320, 5323, 1, 0, 0, 0, 5321, 5319, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, 5325, 1, 0, 0, 0, 5323, 5321, 1, 0, 0, 0, 5324, 5326, 3, 400, 200, 0, 5325, 5324, 1, 0, 0, 0, 5325, 5326, 1, 0, 0, 0, 5326, 5348, 1, 0, 0, 0, 5327, 5328, 5, 138, 0, 0, 5328, 5329, 5, 451, 0, 0, 5329, 5330, 3, 818, 409, 0, 5330, 5331, 7, 64, 0, 0, 5331, 5348, 1, 0, 0, 0, 5332, 5333, 5, 138, 0, 0, 5333, 5334, 5, 451, 0, 0, 5334, 5335, 3, 818, 409, 0, 5335, 5336, 5, 465, 0, 0, 5336, 5337, 5, 2, 0, 0, 5337, 5338, 3, 290, 145, 0, 5338, 5339, 5, 3, 0, 0, 5339, 5348, 1, 0, 0, 0, 5340, 5341, 5, 138, 0, 0, 5341, 5342, 5, 451, 0, 0, 5342, 5343, 3, 818, 409, 0, 5343, 5344, 5, 282, 0, 0, 5344, 5345, 5, 94, 0, 0, 5345, 5346, 3, 814, 407, 0, 5346, 5348, 1, 0, 0, 0, 5347, 5291, 1, 0, 0, 0, 5347, 5297, 1, 0, 0, 0, 5347, 5303, 1, 0, 0, 0, 5347, 5311, 1, 0, 0, 0, 5347, 5327, 1, 0, 0, 0, 5347, 5332, 1, 0, 0, 0, 5347, 5340, 1, 0, 0, 0, 5348, 455, 1, 0, 0, 0, 5349, 5351, 5, 46, 0, 0, 5350, 5352, 3, 366, 183, 0, 5351, 5350, 1, 0, 0, 0, 5351, 5352, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5354, 5, 321, 0, 0, 5354, 5355, 3, 818, 409, 0, 5355, 5356, 5, 36, 0, 0, 5356, 5357, 5, 80, 0, 0, 5357, 5358, 7, 65, 0, 0, 5358, 5359, 5, 94, 0, 0, 5359, 5361, 3, 780, 390, 0, 5360, 5362, 3, 638, 319, 0, 5361, 5360, 1, 0, 0, 0, 5361, 5362, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5365, 5, 57, 0, 0, 5364, 5366, 7, 66, 0, 0, 5365, 5364, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 5383, 1, 0, 0, 0, 5367, 5384, 5, 270, 0, 0, 5368, 5384, 3, 458, 229, 0, 5369, 5371, 5, 2, 0, 0, 5370, 5372, 3, 458, 229, 0, 5371, 5370, 1, 0, 0, 0, 5371, 5372, 1, 0, 0, 0, 5372, 5379, 1, 0, 0, 0, 5373, 5375, 5, 7, 0, 0, 5374, 5376, 3, 458, 229, 0, 5375, 5374, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5378, 1, 0, 0, 0, 5377, 5373, 1, 0, 0, 0, 5378, 5381, 1, 0, 0, 0, 5379, 5377, 1, 0, 0, 0, 5379, 5380, 1, 0, 0, 0, 5380, 5382, 1, 0, 0, 0, 5381, 5379, 1, 0, 0, 0, 5382, 5384, 5, 3, 0, 0, 5383, 5367, 1, 0, 0, 0, 5383, 5368, 1, 0, 0, 0, 5383, 5369, 1, 0, 0, 0, 5384, 457, 1, 0, 0, 0, 5385, 5391, 3, 560, 280, 0, 5386, 5391, 3, 538, 269, 0, 5387, 5391, 3, 552, 276, 0, 5388, 5391, 3, 548, 274, 0, 5389, 5391, 3, 460, 230, 0, 5390, 5385, 1, 0, 0, 0, 5390, 5386, 1, 0, 0, 0, 5390, 5387, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5390, 5389, 1, 0, 0, 0, 5391, 459, 1, 0, 0, 0, 5392, 5393, 5, 271, 0, 0, 5393, 5395, 3, 818, 409, 0, 5394, 5396, 3, 462, 231, 0, 5395, 5394, 1, 0, 0, 0, 5395, 5396, 1, 0, 0, 0, 5396, 461, 1, 0, 0, 0, 5397, 5398, 5, 6, 0, 0, 5398, 5399, 3, 808, 404, 0, 5399, 463, 1, 0, 0, 0, 5400, 5401, 5, 252, 0, 0, 5401, 5402, 3, 818, 409, 0, 5402, 465, 1, 0, 0, 0, 5403, 5406, 5, 366, 0, 0, 5404, 5407, 3, 818, 409, 0, 5405, 5407, 5, 9, 0, 0, 5406, 5404, 1, 0, 0, 0, 5406, 5405, 1, 0, 0, 0, 5407, 467, 1, 0, 0, 0, 5408, 5410, 5, 146, 0, 0, 5409, 5411, 3, 470, 235, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5413, 1, 0, 0, 0, 5412, 5414, 3, 474, 237, 0, 5413, 5412, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5454, 1, 0, 0, 0, 5415, 5416, 5, 340, 0, 0, 5416, 5418, 5, 356, 0, 0, 5417, 5419, 3, 474, 237, 0, 5418, 5417, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5454, 1, 0, 0, 0, 5420, 5421, 5, 322, 0, 0, 5421, 5454, 3, 818, 409, 0, 5422, 5424, 5, 308, 0, 0, 5423, 5425, 5, 322, 0, 0, 5424, 5423, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5454, 3, 818, 409, 0, 5427, 5428, 5, 290, 0, 0, 5428, 5429, 5, 356, 0, 0, 5429, 5454, 3, 808, 404, 0, 5430, 5431, 7, 67, 0, 0, 5431, 5432, 5, 291, 0, 0, 5432, 5454, 3, 808, 404, 0, 5433, 5435, 7, 68, 0, 0, 5434, 5436, 3, 470, 235, 0, 5435, 5434, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5442, 1, 0, 0, 0, 5437, 5439, 5, 33, 0, 0, 5438, 5440, 5, 269, 0, 0, 5439, 5438, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5443, 5, 153, 0, 0, 5442, 5437, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5454, 1, 0, 0, 0, 5444, 5446, 5, 319, 0, 0, 5445, 5447, 3, 470, 235, 0, 5446, 5445, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5448, 5450, 5, 94, 0, 0, 5449, 5451, 5, 322, 0, 0, 5450, 5449, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5454, 3, 818, 409, 0, 5453, 5408, 1, 0, 0, 0, 5453, 5415, 1, 0, 0, 0, 5453, 5420, 1, 0, 0, 0, 5453, 5422, 1, 0, 0, 0, 5453, 5427, 1, 0, 0, 0, 5453, 5430, 1, 0, 0, 0, 5453, 5433, 1, 0, 0, 0, 5453, 5444, 1, 0, 0, 0, 5454, 469, 1, 0, 0, 0, 5455, 5456, 7, 69, 0, 0, 5456, 471, 1, 0, 0, 0, 5457, 5458, 5, 244, 0, 0, 5458, 5459, 5, 251, 0, 0, 5459, 5467, 3, 50, 25, 0, 5460, 5461, 5, 300, 0, 0, 5461, 5467, 7, 70, 0, 0, 5462, 5464, 5, 77, 0, 0, 5463, 5462, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5467, 5, 54, 0, 0, 5466, 5457, 1, 0, 0, 0, 5466, 5460, 1, 0, 0, 0, 5466, 5463, 1, 0, 0, 0, 5467, 473, 1, 0, 0, 0, 5468, 5475, 3, 472, 236, 0, 5469, 5471, 5, 6, 0, 0, 5470, 5469, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5474, 3, 472, 236, 0, 5473, 5470, 1, 0, 0, 0, 5474, 5477, 1, 0, 0, 0, 5475, 5473, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 475, 1, 0, 0, 0, 5477, 5475, 1, 0, 0, 0, 5478, 5481, 5, 46, 0, 0, 5479, 5480, 5, 82, 0, 0, 5480, 5482, 5, 311, 0, 0, 5481, 5479, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5484, 1, 0, 0, 0, 5483, 5485, 3, 122, 61, 0, 5484, 5483, 1, 0, 0, 0, 5484, 5485, 1, 0, 0, 0, 5485, 5501, 1, 0, 0, 0, 5486, 5487, 5, 376, 0, 0, 5487, 5489, 3, 776, 388, 0, 5488, 5490, 3, 146, 73, 0, 5489, 5488, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5492, 1, 0, 0, 0, 5491, 5493, 3, 102, 51, 0, 5492, 5491, 1, 0, 0, 0, 5492, 5493, 1, 0, 0, 0, 5493, 5502, 1, 0, 0, 0, 5494, 5495, 5, 303, 0, 0, 5495, 5496, 5, 376, 0, 0, 5496, 5497, 3, 776, 388, 0, 5497, 5499, 3, 144, 72, 0, 5498, 5500, 3, 102, 51, 0, 5499, 5498, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5502, 1, 0, 0, 0, 5501, 5486, 1, 0, 0, 0, 5501, 5494, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5504, 5, 36, 0, 0, 5504, 5511, 3, 560, 280, 0, 5505, 5507, 5, 105, 0, 0, 5506, 5508, 7, 71, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5510, 5, 42, 0, 0, 5510, 5512, 5, 279, 0, 0, 5511, 5505, 1, 0, 0, 0, 5511, 5512, 1, 0, 0, 0, 5512, 477, 1, 0, 0, 0, 5513, 5514, 5, 253, 0, 0, 5514, 5515, 3, 808, 404, 0, 5515, 479, 1, 0, 0, 0, 5516, 5517, 5, 46, 0, 0, 5517, 5518, 5, 175, 0, 0, 5518, 5520, 3, 786, 393, 0, 5519, 5521, 5, 105, 0, 0, 5520, 5519, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 5527, 1, 0, 0, 0, 5522, 5524, 3, 482, 241, 0, 5523, 5522, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5523, 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 5528, 1, 0, 0, 0, 5527, 5523, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 481, 1, 0, 0, 0, 5529, 5530, 5, 164, 0, 0, 5530, 5538, 5, 74, 0, 0, 5531, 5538, 5, 194, 0, 0, 5532, 5538, 5, 255, 0, 0, 5533, 5538, 5, 282, 0, 0, 5534, 5538, 5, 351, 0, 0, 5535, 5538, 5, 353, 0, 0, 5536, 5538, 3, 826, 413, 0, 5537, 5529, 1, 0, 0, 0, 5537, 5531, 1, 0, 0, 0, 5537, 5532, 1, 0, 0, 0, 5537, 5533, 1, 0, 0, 0, 5537, 5534, 1, 0, 0, 0, 5537, 5535, 1, 0, 0, 0, 5537, 5536, 1, 0, 0, 0, 5538, 5540, 1, 0, 0, 0, 5539, 5541, 5, 10, 0, 0, 5540, 5539, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5545, 1, 0, 0, 0, 5542, 5546, 3, 812, 406, 0, 5543, 5546, 3, 54, 27, 0, 5544, 5546, 5, 53, 0, 0, 5545, 5542, 1, 0, 0, 0, 5545, 5543, 1, 0, 0, 0, 5545, 5544, 1, 0, 0, 0, 5546, 483, 1, 0, 0, 0, 5547, 5548, 5, 138, 0, 0, 5548, 5549, 5, 175, 0, 0, 5549, 5565, 3, 788, 394, 0, 5550, 5551, 5, 333, 0, 0, 5551, 5552, 5, 351, 0, 0, 5552, 5554, 3, 768, 384, 0, 5553, 5550, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 5566, 1, 0, 0, 0, 5555, 5557, 5, 105, 0, 0, 5556, 5555, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 5559, 1, 0, 0, 0, 5558, 5560, 3, 482, 241, 0, 5559, 5558, 1, 0, 0, 0, 5560, 5561, 1, 0, 0, 0, 5561, 5559, 1, 0, 0, 0, 5561, 5562, 1, 0, 0, 0, 5562, 5564, 1, 0, 0, 0, 5563, 5556, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 5566, 1, 0, 0, 0, 5565, 5553, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5566, 485, 1, 0, 0, 0, 5567, 5568, 5, 138, 0, 0, 5568, 5569, 5, 175, 0, 0, 5569, 5571, 3, 788, 394, 0, 5570, 5572, 3, 64, 32, 0, 5571, 5570, 1, 0, 0, 0, 5571, 5572, 1, 0, 0, 0, 5572, 487, 1, 0, 0, 0, 5573, 5574, 5, 138, 0, 0, 5574, 5575, 5, 108, 0, 0, 5575, 5576, 3, 316, 158, 0, 5576, 5577, 5, 305, 0, 0, 5577, 5578, 5, 375, 0, 0, 5578, 489, 1, 0, 0, 0, 5579, 5580, 5, 138, 0, 0, 5580, 5581, 5, 349, 0, 0, 5581, 5582, 7, 16, 0, 0, 5582, 5583, 3, 40, 20, 0, 5583, 491, 1, 0, 0, 0, 5584, 5585, 5, 46, 0, 0, 5585, 5586, 5, 189, 0, 0, 5586, 5588, 3, 316, 158, 0, 5587, 5589, 5, 36, 0, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5594, 3, 652, 326, 0, 5591, 5593, 3, 134, 67, 0, 5592, 5591, 1, 0, 0, 0, 5593, 5596, 1, 0, 0, 0, 5594, 5592, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 493, 1, 0, 0, 0, 5596, 5594, 1, 0, 0, 0, 5597, 5598, 5, 138, 0, 0, 5598, 5599, 5, 189, 0, 0, 5599, 5622, 3, 316, 158, 0, 5600, 5623, 3, 94, 47, 0, 5601, 5602, 7, 15, 0, 0, 5602, 5603, 5, 77, 0, 0, 5603, 5623, 5, 78, 0, 0, 5604, 5607, 5, 133, 0, 0, 5605, 5606, 5, 45, 0, 0, 5606, 5608, 3, 818, 409, 0, 5607, 5605, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5623, 3, 142, 71, 0, 5610, 5611, 5, 191, 0, 0, 5611, 5613, 5, 45, 0, 0, 5612, 5614, 3, 422, 211, 0, 5613, 5612, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5615, 1, 0, 0, 0, 5615, 5617, 3, 818, 409, 0, 5616, 5618, 3, 96, 48, 0, 5617, 5616, 1, 0, 0, 0, 5617, 5618, 1, 0, 0, 0, 5618, 5623, 1, 0, 0, 0, 5619, 5620, 5, 372, 0, 0, 5620, 5621, 5, 45, 0, 0, 5621, 5623, 3, 818, 409, 0, 5622, 5600, 1, 0, 0, 0, 5622, 5601, 1, 0, 0, 0, 5622, 5604, 1, 0, 0, 0, 5622, 5610, 1, 0, 0, 0, 5622, 5619, 1, 0, 0, 0, 5623, 495, 1, 0, 0, 0, 5624, 5625, 5, 138, 0, 0, 5625, 5626, 5, 355, 0, 0, 5626, 5627, 5, 325, 0, 0, 5627, 5628, 5, 185, 0, 0, 5628, 5629, 3, 316, 158, 0, 5629, 5630, 3, 284, 142, 0, 5630, 497, 1, 0, 0, 0, 5631, 5632, 5, 138, 0, 0, 5632, 5633, 5, 355, 0, 0, 5633, 5634, 5, 325, 0, 0, 5634, 5635, 5, 163, 0, 0, 5635, 5636, 3, 316, 158, 0, 5636, 5637, 7, 72, 0, 0, 5637, 5638, 5, 257, 0, 0, 5638, 5639, 5, 62, 0, 0, 5639, 5640, 3, 784, 392, 0, 5640, 5641, 5, 105, 0, 0, 5641, 5642, 3, 314, 157, 0, 5642, 5673, 1, 0, 0, 0, 5643, 5644, 5, 138, 0, 0, 5644, 5645, 5, 355, 0, 0, 5645, 5646, 5, 325, 0, 0, 5646, 5647, 5, 163, 0, 0, 5647, 5648, 3, 316, 158, 0, 5648, 5649, 5, 138, 0, 0, 5649, 5652, 5, 257, 0, 0, 5650, 5651, 5, 62, 0, 0, 5651, 5653, 3, 784, 392, 0, 5652, 5650, 1, 0, 0, 0, 5652, 5653, 1, 0, 0, 0, 5653, 5654, 1, 0, 0, 0, 5654, 5655, 5, 311, 0, 0, 5655, 5656, 3, 316, 158, 0, 5656, 5657, 5, 105, 0, 0, 5657, 5658, 3, 316, 158, 0, 5658, 5673, 1, 0, 0, 0, 5659, 5660, 5, 138, 0, 0, 5660, 5661, 5, 355, 0, 0, 5661, 5662, 5, 325, 0, 0, 5662, 5663, 5, 163, 0, 0, 5663, 5664, 3, 316, 158, 0, 5664, 5665, 5, 191, 0, 0, 5665, 5667, 5, 257, 0, 0, 5666, 5668, 3, 422, 211, 0, 5667, 5666, 1, 0, 0, 0, 5667, 5668, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5670, 5, 62, 0, 0, 5670, 5671, 3, 784, 392, 0, 5671, 5673, 1, 0, 0, 0, 5672, 5631, 1, 0, 0, 0, 5672, 5643, 1, 0, 0, 0, 5672, 5659, 1, 0, 0, 0, 5673, 499, 1, 0, 0, 0, 5674, 5676, 5, 46, 0, 0, 5675, 5677, 5, 53, 0, 0, 5676, 5675, 1, 0, 0, 0, 5676, 5677, 1, 0, 0, 0, 5677, 5678, 1, 0, 0, 0, 5678, 5679, 5, 168, 0, 0, 5679, 5680, 3, 316, 158, 0, 5680, 5681, 5, 62, 0, 0, 5681, 5682, 3, 808, 404, 0, 5682, 5683, 5, 94, 0, 0, 5683, 5684, 3, 808, 404, 0, 5684, 5685, 5, 64, 0, 0, 5685, 5686, 3, 316, 158, 0, 5686, 501, 1, 0, 0, 0, 5687, 5689, 5, 158, 0, 0, 5688, 5690, 3, 514, 257, 0, 5689, 5688, 1, 0, 0, 0, 5689, 5690, 1, 0, 0, 0, 5690, 5695, 1, 0, 0, 0, 5691, 5693, 3, 774, 387, 0, 5692, 5694, 3, 170, 85, 0, 5693, 5692, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5696, 1, 0, 0, 0, 5695, 5691, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5713, 1, 0, 0, 0, 5697, 5698, 5, 158, 0, 0, 5698, 5699, 5, 2, 0, 0, 5699, 5704, 3, 514, 257, 0, 5700, 5701, 5, 6, 0, 0, 5701, 5703, 3, 514, 257, 0, 5702, 5700, 1, 0, 0, 0, 5703, 5706, 1, 0, 0, 0, 5704, 5702, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5707, 1, 0, 0, 0, 5706, 5704, 1, 0, 0, 0, 5707, 5708, 5, 3, 0, 0, 5708, 5710, 3, 774, 387, 0, 5709, 5711, 3, 170, 85, 0, 5710, 5709, 1, 0, 0, 0, 5710, 5711, 1, 0, 0, 0, 5711, 5713, 1, 0, 0, 0, 5712, 5687, 1, 0, 0, 0, 5712, 5697, 1, 0, 0, 0, 5713, 503, 1, 0, 0, 0, 5714, 5730, 5, 370, 0, 0, 5715, 5717, 5, 113, 0, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5719, 1, 0, 0, 0, 5718, 5720, 5, 112, 0, 0, 5719, 5718, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 5722, 1, 0, 0, 0, 5721, 5723, 3, 514, 257, 0, 5722, 5721, 1, 0, 0, 0, 5722, 5723, 1, 0, 0, 0, 5723, 5725, 1, 0, 0, 0, 5724, 5726, 3, 508, 254, 0, 5725, 5724, 1, 0, 0, 0, 5725, 5726, 1, 0, 0, 0, 5726, 5731, 1, 0, 0, 0, 5727, 5729, 3, 524, 262, 0, 5728, 5727, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5731, 1, 0, 0, 0, 5730, 5716, 1, 0, 0, 0, 5730, 5728, 1, 0, 0, 0, 5731, 5733, 1, 0, 0, 0, 5732, 5734, 3, 518, 259, 0, 5733, 5732, 1, 0, 0, 0, 5733, 5734, 1, 0, 0, 0, 5734, 505, 1, 0, 0, 0, 5735, 5750, 3, 508, 254, 0, 5736, 5738, 3, 514, 257, 0, 5737, 5736, 1, 0, 0, 0, 5737, 5738, 1, 0, 0, 0, 5738, 5751, 1, 0, 0, 0, 5739, 5740, 5, 2, 0, 0, 5740, 5745, 3, 512, 256, 0, 5741, 5742, 5, 6, 0, 0, 5742, 5744, 3, 512, 256, 0, 5743, 5741, 1, 0, 0, 0, 5744, 5747, 1, 0, 0, 0, 5745, 5743, 1, 0, 0, 0, 5745, 5746, 1, 0, 0, 0, 5746, 5748, 1, 0, 0, 0, 5747, 5745, 1, 0, 0, 0, 5748, 5749, 5, 3, 0, 0, 5749, 5751, 1, 0, 0, 0, 5750, 5737, 1, 0, 0, 0, 5750, 5739, 1, 0, 0, 0, 5751, 5753, 1, 0, 0, 0, 5752, 5754, 3, 518, 259, 0, 5753, 5752, 1, 0, 0, 0, 5753, 5754, 1, 0, 0, 0, 5754, 507, 1, 0, 0, 0, 5755, 5756, 7, 73, 0, 0, 5756, 509, 1, 0, 0, 0, 5757, 5760, 3, 822, 411, 0, 5758, 5760, 3, 508, 254, 0, 5759, 5757, 1, 0, 0, 0, 5759, 5758, 1, 0, 0, 0, 5760, 5763, 1, 0, 0, 0, 5761, 5764, 3, 54, 27, 0, 5762, 5764, 3, 202, 101, 0, 5763, 5761, 1, 0, 0, 0, 5763, 5762, 1, 0, 0, 0, 5763, 5764, 1, 0, 0, 0, 5764, 511, 1, 0, 0, 0, 5765, 5767, 7, 74, 0, 0, 5766, 5768, 7, 75, 0, 0, 5767, 5766, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 5775, 1, 0, 0, 0, 5769, 5772, 5, 548, 0, 0, 5770, 5773, 3, 202, 101, 0, 5771, 5773, 3, 808, 404, 0, 5772, 5770, 1, 0, 0, 0, 5772, 5771, 1, 0, 0, 0, 5773, 5775, 1, 0, 0, 0, 5774, 5765, 1, 0, 0, 0, 5774, 5769, 1, 0, 0, 0, 5775, 513, 1, 0, 0, 0, 5776, 5778, 5, 128, 0, 0, 5777, 5779, 7, 75, 0, 0, 5778, 5777, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 515, 1, 0, 0, 0, 5780, 5782, 3, 774, 387, 0, 5781, 5783, 3, 144, 72, 0, 5782, 5781, 1, 0, 0, 0, 5782, 5783, 1, 0, 0, 0, 5783, 517, 1, 0, 0, 0, 5784, 5789, 3, 516, 258, 0, 5785, 5786, 5, 6, 0, 0, 5786, 5788, 3, 516, 258, 0, 5787, 5785, 1, 0, 0, 0, 5788, 5791, 1, 0, 0, 0, 5789, 5787, 1, 0, 0, 0, 5789, 5790, 1, 0, 0, 0, 5790, 519, 1, 0, 0, 0, 5791, 5789, 1, 0, 0, 0, 5792, 5803, 5, 203, 0, 0, 5793, 5804, 3, 524, 262, 0, 5794, 5796, 5, 128, 0, 0, 5795, 5794, 1, 0, 0, 0, 5795, 5796, 1, 0, 0, 0, 5796, 5804, 1, 0, 0, 0, 5797, 5799, 3, 508, 254, 0, 5798, 5800, 3, 514, 257, 0, 5799, 5798, 1, 0, 0, 0, 5799, 5800, 1, 0, 0, 0, 5800, 5802, 1, 0, 0, 0, 5801, 5797, 1, 0, 0, 0, 5801, 5802, 1, 0, 0, 0, 5802, 5804, 1, 0, 0, 0, 5803, 5793, 1, 0, 0, 0, 5803, 5795, 1, 0, 0, 0, 5803, 5801, 1, 0, 0, 0, 5804, 5805, 1, 0, 0, 0, 5805, 5806, 3, 522, 261, 0, 5806, 521, 1, 0, 0, 0, 5807, 5817, 3, 560, 280, 0, 5808, 5817, 3, 538, 269, 0, 5809, 5817, 3, 552, 276, 0, 5810, 5817, 3, 548, 274, 0, 5811, 5817, 3, 558, 279, 0, 5812, 5817, 3, 186, 93, 0, 5813, 5817, 3, 192, 96, 0, 5814, 5817, 3, 194, 97, 0, 5815, 5817, 3, 532, 266, 0, 5816, 5807, 1, 0, 0, 0, 5816, 5808, 1, 0, 0, 0, 5816, 5809, 1, 0, 0, 0, 5816, 5810, 1, 0, 0, 0, 5816, 5811, 1, 0, 0, 0, 5816, 5812, 1, 0, 0, 0, 5816, 5813, 1, 0, 0, 0, 5816, 5814, 1, 0, 0, 0, 5816, 5815, 1, 0, 0, 0, 5817, 523, 1, 0, 0, 0, 5818, 5819, 5, 2, 0, 0, 5819, 5824, 3, 510, 255, 0, 5820, 5821, 5, 6, 0, 0, 5821, 5823, 3, 510, 255, 0, 5822, 5820, 1, 0, 0, 0, 5823, 5826, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5824, 5825, 1, 0, 0, 0, 5825, 5827, 1, 0, 0, 0, 5826, 5824, 1, 0, 0, 0, 5827, 5828, 5, 3, 0, 0, 5828, 525, 1, 0, 0, 0, 5829, 5830, 5, 290, 0, 0, 5830, 5832, 3, 818, 409, 0, 5831, 5833, 3, 528, 264, 0, 5832, 5831, 1, 0, 0, 0, 5832, 5833, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5835, 5, 36, 0, 0, 5835, 5836, 3, 530, 265, 0, 5836, 527, 1, 0, 0, 0, 5837, 5838, 5, 2, 0, 0, 5838, 5843, 3, 652, 326, 0, 5839, 5840, 5, 6, 0, 0, 5840, 5842, 3, 652, 326, 0, 5841, 5839, 1, 0, 0, 0, 5842, 5845, 1, 0, 0, 0, 5843, 5841, 1, 0, 0, 0, 5843, 5844, 1, 0, 0, 0, 5844, 5846, 1, 0, 0, 0, 5845, 5843, 1, 0, 0, 0, 5846, 5847, 5, 3, 0, 0, 5847, 529, 1, 0, 0, 0, 5848, 5853, 3, 560, 280, 0, 5849, 5853, 3, 538, 269, 0, 5850, 5853, 3, 552, 276, 0, 5851, 5853, 3, 548, 274, 0, 5852, 5848, 1, 0, 0, 0, 5852, 5849, 1, 0, 0, 0, 5852, 5850, 1, 0, 0, 0, 5852, 5851, 1, 0, 0, 0, 5853, 531, 1, 0, 0, 0, 5854, 5855, 5, 202, 0, 0, 5855, 5857, 3, 818, 409, 0, 5856, 5858, 3, 534, 267, 0, 5857, 5856, 1, 0, 0, 0, 5857, 5858, 1, 0, 0, 0, 5858, 5878, 1, 0, 0, 0, 5859, 5861, 5, 46, 0, 0, 5860, 5862, 3, 122, 61, 0, 5861, 5860, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5863, 1, 0, 0, 0, 5863, 5865, 5, 92, 0, 0, 5864, 5866, 3, 294, 147, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5867, 1, 0, 0, 0, 5867, 5868, 3, 188, 94, 0, 5868, 5869, 5, 36, 0, 0, 5869, 5870, 5, 202, 0, 0, 5870, 5872, 3, 818, 409, 0, 5871, 5873, 3, 534, 267, 0, 5872, 5871, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5875, 1, 0, 0, 0, 5874, 5876, 3, 190, 95, 0, 5875, 5874, 1, 0, 0, 0, 5875, 5876, 1, 0, 0, 0, 5876, 5878, 1, 0, 0, 0, 5877, 5854, 1, 0, 0, 0, 5877, 5859, 1, 0, 0, 0, 5878, 533, 1, 0, 0, 0, 5879, 5880, 5, 2, 0, 0, 5880, 5881, 3, 730, 365, 0, 5881, 5882, 5, 3, 0, 0, 5882, 535, 1, 0, 0, 0, 5883, 5885, 5, 177, 0, 0, 5884, 5886, 5, 290, 0, 0, 5885, 5884, 1, 0, 0, 0, 5885, 5886, 1, 0, 0, 0, 5886, 5889, 1, 0, 0, 0, 5887, 5890, 3, 818, 409, 0, 5888, 5890, 5, 30, 0, 0, 5889, 5887, 1, 0, 0, 0, 5889, 5888, 1, 0, 0, 0, 5890, 537, 1, 0, 0, 0, 5891, 5893, 3, 572, 286, 0, 5892, 5891, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5894, 1, 0, 0, 0, 5894, 5895, 5, 241, 0, 0, 5895, 5896, 5, 71, 0, 0, 5896, 5899, 3, 774, 387, 0, 5897, 5898, 5, 36, 0, 0, 5898, 5900, 3, 818, 409, 0, 5899, 5897, 1, 0, 0, 0, 5899, 5900, 1, 0, 0, 0, 5900, 5901, 1, 0, 0, 0, 5901, 5923, 3, 540, 270, 0, 5902, 5903, 5, 80, 0, 0, 5903, 5911, 5, 464, 0, 0, 5904, 5906, 3, 360, 180, 0, 5905, 5907, 3, 638, 319, 0, 5906, 5905, 1, 0, 0, 0, 5906, 5907, 1, 0, 0, 0, 5907, 5912, 1, 0, 0, 0, 5908, 5909, 5, 80, 0, 0, 5909, 5910, 5, 45, 0, 0, 5910, 5912, 3, 818, 409, 0, 5911, 5904, 1, 0, 0, 0, 5911, 5908, 1, 0, 0, 0, 5911, 5912, 1, 0, 0, 0, 5912, 5913, 1, 0, 0, 0, 5913, 5921, 5, 57, 0, 0, 5914, 5915, 5, 369, 0, 0, 5915, 5916, 5, 333, 0, 0, 5916, 5918, 3, 554, 277, 0, 5917, 5919, 3, 638, 319, 0, 5918, 5917, 1, 0, 0, 0, 5918, 5919, 1, 0, 0, 0, 5919, 5922, 1, 0, 0, 0, 5920, 5922, 5, 270, 0, 0, 5921, 5914, 1, 0, 0, 0, 5921, 5920, 1, 0, 0, 0, 5922, 5924, 1, 0, 0, 0, 5923, 5902, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 5926, 1, 0, 0, 0, 5925, 5927, 3, 546, 273, 0, 5926, 5925, 1, 0, 0, 0, 5926, 5927, 1, 0, 0, 0, 5927, 539, 1, 0, 0, 0, 5928, 5929, 5, 2, 0, 0, 5929, 5930, 3, 542, 271, 0, 5930, 5931, 5, 3, 0, 0, 5931, 5933, 1, 0, 0, 0, 5932, 5928, 1, 0, 0, 0, 5932, 5933, 1, 0, 0, 0, 5933, 5937, 1, 0, 0, 0, 5934, 5935, 5, 463, 0, 0, 5935, 5936, 7, 76, 0, 0, 5936, 5938, 5, 450, 0, 0, 5937, 5934, 1, 0, 0, 0, 5937, 5938, 1, 0, 0, 0, 5938, 5941, 1, 0, 0, 0, 5939, 5942, 3, 910, 455, 0, 5940, 5942, 3, 560, 280, 0, 5941, 5939, 1, 0, 0, 0, 5941, 5940, 1, 0, 0, 0, 5942, 541, 1, 0, 0, 0, 5943, 5948, 3, 544, 272, 0, 5944, 5945, 5, 6, 0, 0, 5945, 5947, 3, 544, 272, 0, 5946, 5944, 1, 0, 0, 0, 5947, 5950, 1, 0, 0, 0, 5948, 5946, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 543, 1, 0, 0, 0, 5950, 5948, 1, 0, 0, 0, 5951, 5952, 3, 800, 400, 0, 5952, 5953, 3, 754, 377, 0, 5953, 545, 1, 0, 0, 0, 5954, 5955, 5, 87, 0, 0, 5955, 5956, 3, 756, 378, 0, 5956, 547, 1, 0, 0, 0, 5957, 5959, 3, 572, 286, 0, 5958, 5957, 1, 0, 0, 0, 5958, 5959, 1, 0, 0, 0, 5959, 5960, 1, 0, 0, 0, 5960, 5961, 5, 182, 0, 0, 5961, 5962, 5, 64, 0, 0, 5962, 5965, 3, 630, 315, 0, 5963, 5964, 5, 100, 0, 0, 5964, 5966, 3, 612, 306, 0, 5965, 5963, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 5968, 1, 0, 0, 0, 5967, 5969, 3, 640, 320, 0, 5968, 5967, 1, 0, 0, 0, 5968, 5969, 1, 0, 0, 0, 5969, 5971, 1, 0, 0, 0, 5970, 5972, 3, 546, 273, 0, 5971, 5970, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 549, 1, 0, 0, 0, 5973, 5975, 5, 256, 0, 0, 5974, 5976, 5, 92, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 5992, 3, 628, 314, 0, 5978, 5989, 5, 68, 0, 0, 5979, 5980, 7, 77, 0, 0, 5980, 5990, 7, 78, 0, 0, 5981, 5986, 5, 334, 0, 0, 5982, 5983, 5, 369, 0, 0, 5983, 5987, 5, 201, 0, 0, 5984, 5985, 5, 414, 0, 0, 5985, 5987, 5, 201, 0, 0, 5986, 5982, 1, 0, 0, 0, 5986, 5984, 1, 0, 0, 0, 5986, 5987, 1, 0, 0, 0, 5987, 5990, 1, 0, 0, 0, 5988, 5990, 5, 201, 0, 0, 5989, 5979, 1, 0, 0, 0, 5989, 5981, 1, 0, 0, 0, 5989, 5988, 1, 0, 0, 0, 5990, 5991, 1, 0, 0, 0, 5991, 5993, 5, 263, 0, 0, 5992, 5978, 1, 0, 0, 0, 5992, 5993, 1, 0, 0, 0, 5993, 5995, 1, 0, 0, 0, 5994, 5996, 5, 272, 0, 0, 5995, 5994, 1, 0, 0, 0, 5995, 5996, 1, 0, 0, 0, 5996, 551, 1, 0, 0, 0, 5997, 5999, 3, 572, 286, 0, 5998, 5997, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 6000, 1, 0, 0, 0, 6000, 6001, 5, 369, 0, 0, 6001, 6002, 3, 630, 315, 0, 6002, 6003, 5, 333, 0, 0, 6003, 6005, 3, 554, 277, 0, 6004, 6006, 3, 610, 305, 0, 6005, 6004, 1, 0, 0, 0, 6005, 6006, 1, 0, 0, 0, 6006, 6008, 1, 0, 0, 0, 6007, 6009, 3, 640, 320, 0, 6008, 6007, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 6011, 1, 0, 0, 0, 6010, 6012, 3, 546, 273, 0, 6011, 6010, 1, 0, 0, 0, 6011, 6012, 1, 0, 0, 0, 6012, 553, 1, 0, 0, 0, 6013, 6018, 3, 556, 278, 0, 6014, 6015, 5, 6, 0, 0, 6015, 6017, 3, 556, 278, 0, 6016, 6014, 1, 0, 0, 0, 6017, 6020, 1, 0, 0, 0, 6018, 6016, 1, 0, 0, 0, 6018, 6019, 1, 0, 0, 0, 6019, 555, 1, 0, 0, 0, 6020, 6018, 1, 0, 0, 0, 6021, 6022, 3, 544, 272, 0, 6022, 6023, 5, 10, 0, 0, 6023, 6024, 3, 674, 337, 0, 6024, 6040, 1, 0, 0, 0, 6025, 6026, 5, 2, 0, 0, 6026, 6027, 3, 542, 271, 0, 6027, 6028, 5, 3, 0, 0, 6028, 6037, 5, 10, 0, 0, 6029, 6031, 5, 414, 0, 0, 6030, 6029, 1, 0, 0, 0, 6030, 6031, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6038, 3, 674, 337, 0, 6033, 6034, 5, 2, 0, 0, 6034, 6035, 3, 566, 283, 0, 6035, 6036, 5, 3, 0, 0, 6036, 6038, 1, 0, 0, 0, 6037, 6030, 1, 0, 0, 0, 6037, 6033, 1, 0, 0, 0, 6038, 6040, 1, 0, 0, 0, 6039, 6021, 1, 0, 0, 0, 6039, 6025, 1, 0, 0, 0, 6040, 557, 1, 0, 0, 0, 6041, 6042, 5, 178, 0, 0, 6042, 6051, 3, 818, 409, 0, 6043, 6045, 5, 269, 0, 0, 6044, 6043, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6046, 1, 0, 0, 0, 6046, 6050, 5, 324, 0, 0, 6047, 6050, 5, 107, 0, 0, 6048, 6050, 5, 240, 0, 0, 6049, 6044, 1, 0, 0, 0, 6049, 6047, 1, 0, 0, 0, 6049, 6048, 1, 0, 0, 0, 6050, 6053, 1, 0, 0, 0, 6051, 6049, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6054, 1, 0, 0, 0, 6053, 6051, 1, 0, 0, 0, 6054, 6057, 5, 172, 0, 0, 6055, 6056, 7, 26, 0, 0, 6056, 6058, 5, 217, 0, 0, 6057, 6055, 1, 0, 0, 0, 6057, 6058, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6060, 5, 62, 0, 0, 6060, 6061, 3, 560, 280, 0, 6061, 559, 1, 0, 0, 0, 6062, 6065, 3, 564, 282, 0, 6063, 6065, 3, 562, 281, 0, 6064, 6062, 1, 0, 0, 0, 6064, 6063, 1, 0, 0, 0, 6065, 561, 1, 0, 0, 0, 6066, 6069, 5, 2, 0, 0, 6067, 6070, 3, 564, 282, 0, 6068, 6070, 3, 562, 281, 0, 6069, 6067, 1, 0, 0, 0, 6069, 6068, 1, 0, 0, 0, 6070, 6071, 1, 0, 0, 0, 6071, 6072, 5, 3, 0, 0, 6072, 563, 1, 0, 0, 0, 6073, 6075, 3, 572, 286, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6076, 1, 0, 0, 0, 6076, 6078, 3, 566, 283, 0, 6077, 6079, 3, 586, 293, 0, 6078, 6077, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6088, 1, 0, 0, 0, 6080, 6082, 3, 606, 303, 0, 6081, 6083, 3, 590, 295, 0, 6082, 6081, 1, 0, 0, 0, 6082, 6083, 1, 0, 0, 0, 6083, 6089, 1, 0, 0, 0, 6084, 6086, 3, 590, 295, 0, 6085, 6087, 3, 606, 303, 0, 6086, 6085, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6089, 1, 0, 0, 0, 6088, 6080, 1, 0, 0, 0, 6088, 6084, 1, 0, 0, 0, 6088, 6089, 1, 0, 0, 0, 6089, 565, 1, 0, 0, 0, 6090, 6093, 3, 568, 284, 0, 6091, 6093, 3, 562, 281, 0, 6092, 6090, 1, 0, 0, 0, 6092, 6091, 1, 0, 0, 0, 6093, 567, 1, 0, 0, 0, 6094, 6104, 5, 88, 0, 0, 6095, 6097, 5, 30, 0, 0, 6096, 6095, 1, 0, 0, 0, 6096, 6097, 1, 0, 0, 0, 6097, 6099, 1, 0, 0, 0, 6098, 6100, 3, 580, 290, 0, 6099, 6098, 1, 0, 0, 0, 6099, 6100, 1, 0, 0, 0, 6100, 6105, 1, 0, 0, 0, 6101, 6103, 3, 584, 292, 0, 6102, 6101, 1, 0, 0, 0, 6102, 6103, 1, 0, 0, 0, 6103, 6105, 1, 0, 0, 0, 6104, 6096, 1, 0, 0, 0, 6104, 6102, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 6117, 3, 930, 465, 0, 6107, 6117, 3, 608, 304, 0, 6108, 6109, 5, 92, 0, 0, 6109, 6117, 3, 624, 312, 0, 6110, 6111, 3, 562, 281, 0, 6111, 6114, 3, 570, 285, 0, 6112, 6115, 3, 568, 284, 0, 6113, 6115, 3, 562, 281, 0, 6114, 6112, 1, 0, 0, 0, 6114, 6113, 1, 0, 0, 0, 6115, 6117, 1, 0, 0, 0, 6116, 6094, 1, 0, 0, 0, 6116, 6107, 1, 0, 0, 0, 6116, 6108, 1, 0, 0, 0, 6116, 6110, 1, 0, 0, 0, 6117, 6125, 1, 0, 0, 0, 6118, 6121, 3, 570, 285, 0, 6119, 6122, 3, 568, 284, 0, 6120, 6122, 3, 562, 281, 0, 6121, 6119, 1, 0, 0, 0, 6121, 6120, 1, 0, 0, 0, 6122, 6124, 1, 0, 0, 0, 6123, 6118, 1, 0, 0, 0, 6124, 6127, 1, 0, 0, 0, 6125, 6123, 1, 0, 0, 0, 6125, 6126, 1, 0, 0, 0, 6126, 569, 1, 0, 0, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6130, 7, 79, 0, 0, 6129, 6131, 7, 80, 0, 0, 6130, 6129, 1, 0, 0, 0, 6130, 6131, 1, 0, 0, 0, 6131, 571, 1, 0, 0, 0, 6132, 6134, 5, 105, 0, 0, 6133, 6135, 5, 303, 0, 0, 6134, 6133, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 6141, 3, 574, 287, 0, 6137, 6138, 5, 6, 0, 0, 6138, 6140, 3, 574, 287, 0, 6139, 6137, 1, 0, 0, 0, 6140, 6143, 1, 0, 0, 0, 6141, 6139, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 573, 1, 0, 0, 0, 6143, 6141, 1, 0, 0, 0, 6144, 6146, 3, 818, 409, 0, 6145, 6147, 3, 144, 72, 0, 6146, 6145, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6148, 1, 0, 0, 0, 6148, 6153, 5, 36, 0, 0, 6149, 6151, 5, 77, 0, 0, 6150, 6149, 1, 0, 0, 0, 6150, 6151, 1, 0, 0, 0, 6151, 6152, 1, 0, 0, 0, 6152, 6154, 5, 259, 0, 0, 6153, 6150, 1, 0, 0, 0, 6153, 6154, 1, 0, 0, 0, 6154, 6155, 1, 0, 0, 0, 6155, 6156, 5, 2, 0, 0, 6156, 6157, 3, 530, 265, 0, 6157, 6159, 5, 3, 0, 0, 6158, 6160, 3, 576, 288, 0, 6159, 6158, 1, 0, 0, 0, 6159, 6160, 1, 0, 0, 0, 6160, 6162, 1, 0, 0, 0, 6161, 6163, 3, 578, 289, 0, 6162, 6161, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, 0, 6163, 575, 1, 0, 0, 0, 6164, 6165, 5, 325, 0, 0, 6165, 6166, 7, 81, 0, 0, 6166, 6167, 5, 207, 0, 0, 6167, 6168, 5, 147, 0, 0, 6168, 6169, 3, 148, 74, 0, 6169, 6170, 5, 333, 0, 0, 6170, 6171, 3, 800, 400, 0, 6171, 577, 1, 0, 0, 0, 6172, 6173, 5, 173, 0, 0, 6173, 6174, 3, 148, 74, 0, 6174, 6175, 5, 333, 0, 0, 6175, 6181, 3, 800, 400, 0, 6176, 6177, 5, 94, 0, 0, 6177, 6178, 3, 818, 409, 0, 6178, 6179, 5, 53, 0, 0, 6179, 6180, 3, 818, 409, 0, 6180, 6182, 1, 0, 0, 0, 6181, 6176, 1, 0, 0, 0, 6181, 6182, 1, 0, 0, 0, 6182, 6183, 1, 0, 0, 0, 6183, 6184, 5, 100, 0, 0, 6184, 6185, 3, 800, 400, 0, 6185, 579, 1, 0, 0, 0, 6186, 6192, 5, 71, 0, 0, 6187, 6189, 5, 346, 0, 0, 6188, 6187, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6193, 3, 582, 291, 0, 6191, 6193, 3, 730, 365, 0, 6192, 6188, 1, 0, 0, 0, 6192, 6191, 1, 0, 0, 0, 6193, 581, 1, 0, 0, 0, 6194, 6196, 7, 20, 0, 0, 6195, 6194, 1, 0, 0, 0, 6195, 6196, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6199, 7, 21, 0, 0, 6198, 6200, 5, 92, 0, 0, 6199, 6198, 1, 0, 0, 0, 6199, 6200, 1, 0, 0, 0, 6200, 6201, 1, 0, 0, 0, 6201, 6210, 3, 772, 386, 0, 6202, 6204, 5, 367, 0, 0, 6203, 6202, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6206, 1, 0, 0, 0, 6205, 6207, 5, 92, 0, 0, 6206, 6205, 1, 0, 0, 0, 6206, 6207, 1, 0, 0, 0, 6207, 6208, 1, 0, 0, 0, 6208, 6210, 3, 772, 386, 0, 6209, 6195, 1, 0, 0, 0, 6209, 6203, 1, 0, 0, 0, 6210, 583, 1, 0, 0, 0, 6211, 6214, 5, 56, 0, 0, 6212, 6213, 5, 80, 0, 0, 6213, 6215, 3, 534, 267, 0, 6214, 6212, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 585, 1, 0, 0, 0, 6216, 6217, 5, 83, 0, 0, 6217, 6218, 5, 147, 0, 0, 6218, 6223, 3, 588, 294, 0, 6219, 6220, 5, 6, 0, 0, 6220, 6222, 3, 588, 294, 0, 6221, 6219, 1, 0, 0, 0, 6222, 6225, 1, 0, 0, 0, 6223, 6221, 1, 0, 0, 0, 6223, 6224, 1, 0, 0, 0, 6224, 587, 1, 0, 0, 0, 6225, 6223, 1, 0, 0, 0, 6226, 6230, 3, 734, 367, 0, 6227, 6228, 5, 100, 0, 0, 6228, 6231, 3, 726, 363, 0, 6229, 6231, 7, 55, 0, 0, 6230, 6227, 1, 0, 0, 0, 6230, 6229, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6234, 1, 0, 0, 0, 6232, 6233, 5, 273, 0, 0, 6233, 6235, 7, 56, 0, 0, 6234, 6232, 1, 0, 0, 0, 6234, 6235, 1, 0, 0, 0, 6235, 589, 1, 0, 0, 0, 6236, 6238, 3, 596, 298, 0, 6237, 6239, 3, 594, 297, 0, 6238, 6237, 1, 0, 0, 0, 6238, 6239, 1, 0, 0, 0, 6239, 6248, 1, 0, 0, 0, 6240, 6243, 3, 592, 296, 0, 6241, 6243, 3, 594, 297, 0, 6242, 6240, 1, 0, 0, 0, 6242, 6241, 1, 0, 0, 0, 6243, 6245, 1, 0, 0, 0, 6244, 6246, 3, 596, 298, 0, 6245, 6244, 1, 0, 0, 0, 6245, 6246, 1, 0, 0, 0, 6246, 6248, 1, 0, 0, 0, 6247, 6236, 1, 0, 0, 0, 6247, 6242, 1, 0, 0, 0, 6248, 591, 1, 0, 0, 0, 6249, 6252, 5, 74, 0, 0, 6250, 6253, 3, 674, 337, 0, 6251, 6253, 5, 30, 0, 0, 6252, 6250, 1, 0, 0, 0, 6252, 6251, 1, 0, 0, 0, 6253, 6256, 1, 0, 0, 0, 6254, 6255, 5, 6, 0, 0, 6255, 6257, 3, 674, 337, 0, 6256, 6254, 1, 0, 0, 0, 6256, 6257, 1, 0, 0, 0, 6257, 593, 1, 0, 0, 0, 6258, 6259, 5, 61, 0, 0, 6259, 6261, 7, 82, 0, 0, 6260, 6262, 3, 598, 299, 0, 6261, 6260, 1, 0, 0, 0, 6261, 6262, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6267, 7, 83, 0, 0, 6264, 6268, 5, 81, 0, 0, 6265, 6266, 5, 105, 0, 0, 6266, 6268, 5, 467, 0, 0, 6267, 6264, 1, 0, 0, 0, 6267, 6265, 1, 0, 0, 0, 6268, 595, 1, 0, 0, 0, 6269, 6274, 5, 79, 0, 0, 6270, 6271, 3, 598, 299, 0, 6271, 6272, 7, 83, 0, 0, 6272, 6275, 1, 0, 0, 0, 6273, 6275, 3, 674, 337, 0, 6274, 6270, 1, 0, 0, 0, 6274, 6273, 1, 0, 0, 0, 6275, 597, 1, 0, 0, 0, 6276, 6277, 7, 29, 0, 0, 6277, 6280, 7, 84, 0, 0, 6278, 6280, 3, 682, 341, 0, 6279, 6276, 1, 0, 0, 0, 6279, 6278, 1, 0, 0, 0, 6280, 599, 1, 0, 0, 0, 6281, 6282, 5, 66, 0, 0, 6282, 6284, 5, 147, 0, 0, 6283, 6285, 7, 80, 0, 0, 6284, 6283, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6286, 1, 0, 0, 0, 6286, 6287, 3, 602, 301, 0, 6287, 601, 1, 0, 0, 0, 6288, 6293, 3, 604, 302, 0, 6289, 6290, 5, 6, 0, 0, 6290, 6292, 3, 604, 302, 0, 6291, 6289, 1, 0, 0, 0, 6292, 6295, 1, 0, 0, 0, 6293, 6291, 1, 0, 0, 0, 6293, 6294, 1, 0, 0, 0, 6294, 603, 1, 0, 0, 0, 6295, 6293, 1, 0, 0, 0, 6296, 6320, 3, 734, 367, 0, 6297, 6298, 5, 2, 0, 0, 6298, 6320, 5, 3, 0, 0, 6299, 6301, 7, 85, 0, 0, 6300, 6299, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6302, 1, 0, 0, 0, 6302, 6303, 5, 2, 0, 0, 6303, 6308, 3, 734, 367, 0, 6304, 6305, 5, 6, 0, 0, 6305, 6307, 3, 734, 367, 0, 6306, 6304, 1, 0, 0, 0, 6307, 6310, 1, 0, 0, 0, 6308, 6306, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6311, 1, 0, 0, 0, 6310, 6308, 1, 0, 0, 0, 6311, 6312, 5, 3, 0, 0, 6312, 6320, 1, 0, 0, 0, 6313, 6314, 5, 470, 0, 0, 6314, 6315, 5, 471, 0, 0, 6315, 6316, 5, 2, 0, 0, 6316, 6317, 3, 602, 301, 0, 6317, 6318, 5, 3, 0, 0, 6318, 6320, 1, 0, 0, 0, 6319, 6296, 1, 0, 0, 0, 6319, 6297, 1, 0, 0, 0, 6319, 6300, 1, 0, 0, 0, 6319, 6313, 1, 0, 0, 0, 6320, 605, 1, 0, 0, 0, 6321, 6331, 5, 62, 0, 0, 6322, 6323, 5, 269, 0, 0, 6323, 6325, 5, 245, 0, 0, 6324, 6322, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6326, 1, 0, 0, 0, 6326, 6332, 5, 369, 0, 0, 6327, 6329, 5, 245, 0, 0, 6328, 6327, 1, 0, 0, 0, 6328, 6329, 1, 0, 0, 0, 6329, 6330, 1, 0, 0, 0, 6330, 6332, 5, 334, 0, 0, 6331, 6324, 1, 0, 0, 0, 6331, 6328, 1, 0, 0, 0, 6332, 6335, 1, 0, 0, 0, 6333, 6334, 5, 275, 0, 0, 6334, 6336, 3, 760, 380, 0, 6335, 6333, 1, 0, 0, 0, 6335, 6336, 1, 0, 0, 0, 6336, 6340, 1, 0, 0, 0, 6337, 6341, 5, 272, 0, 0, 6338, 6339, 5, 465, 0, 0, 6339, 6341, 5, 466, 0, 0, 6340, 6337, 1, 0, 0, 0, 6340, 6338, 1, 0, 0, 0, 6340, 6341, 1, 0, 0, 0, 6341, 6343, 1, 0, 0, 0, 6342, 6321, 1, 0, 0, 0, 6343, 6344, 1, 0, 0, 0, 6344, 6342, 1, 0, 0, 0, 6344, 6345, 1, 0, 0, 0, 6345, 6350, 1, 0, 0, 0, 6346, 6347, 5, 62, 0, 0, 6347, 6348, 5, 300, 0, 0, 6348, 6350, 5, 81, 0, 0, 6349, 6342, 1, 0, 0, 0, 6349, 6346, 1, 0, 0, 0, 6350, 607, 1, 0, 0, 0, 6351, 6352, 5, 422, 0, 0, 6352, 6357, 3, 534, 267, 0, 6353, 6354, 5, 6, 0, 0, 6354, 6356, 3, 534, 267, 0, 6355, 6353, 1, 0, 0, 0, 6356, 6359, 1, 0, 0, 0, 6357, 6355, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 609, 1, 0, 0, 0, 6359, 6357, 1, 0, 0, 0, 6360, 6361, 5, 64, 0, 0, 6361, 6362, 3, 612, 306, 0, 6362, 611, 1, 0, 0, 0, 6363, 6368, 3, 614, 307, 0, 6364, 6365, 5, 6, 0, 0, 6365, 6367, 3, 614, 307, 0, 6366, 6364, 1, 0, 0, 0, 6367, 6370, 1, 0, 0, 0, 6368, 6366, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 613, 1, 0, 0, 0, 6370, 6368, 1, 0, 0, 0, 6371, 6386, 3, 624, 312, 0, 6372, 6374, 5, 81, 0, 0, 6373, 6372, 1, 0, 0, 0, 6373, 6374, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6377, 3, 778, 389, 0, 6376, 6378, 5, 9, 0, 0, 6377, 6376, 1, 0, 0, 0, 6377, 6378, 1, 0, 0, 0, 6378, 6380, 1, 0, 0, 0, 6379, 6381, 3, 148, 74, 0, 6380, 6379, 1, 0, 0, 0, 6380, 6381, 1, 0, 0, 0, 6381, 6383, 1, 0, 0, 0, 6382, 6384, 3, 638, 319, 0, 6383, 6382, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6386, 1, 0, 0, 0, 6385, 6371, 1, 0, 0, 0, 6385, 6373, 1, 0, 0, 0, 6386, 6388, 1, 0, 0, 0, 6387, 6389, 3, 616, 308, 0, 6388, 6387, 1, 0, 0, 0, 6388, 6389, 1, 0, 0, 0, 6389, 6391, 1, 0, 0, 0, 6390, 6392, 3, 632, 316, 0, 6391, 6390, 1, 0, 0, 0, 6391, 6392, 1, 0, 0, 0, 6392, 6435, 1, 0, 0, 0, 6393, 6395, 5, 72, 0, 0, 6394, 6393, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6408, 1, 0, 0, 0, 6396, 6398, 3, 646, 323, 0, 6397, 6399, 3, 616, 308, 0, 6398, 6397, 1, 0, 0, 0, 6398, 6399, 1, 0, 0, 0, 6399, 6409, 1, 0, 0, 0, 6400, 6402, 3, 634, 317, 0, 6401, 6403, 3, 618, 309, 0, 6402, 6401, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6409, 1, 0, 0, 0, 6404, 6406, 3, 562, 281, 0, 6405, 6407, 3, 616, 308, 0, 6406, 6405, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6409, 1, 0, 0, 0, 6408, 6396, 1, 0, 0, 0, 6408, 6400, 1, 0, 0, 0, 6408, 6404, 1, 0, 0, 0, 6409, 6435, 1, 0, 0, 0, 6410, 6411, 5, 2, 0, 0, 6411, 6428, 3, 614, 307, 0, 6412, 6413, 5, 110, 0, 0, 6413, 6414, 5, 118, 0, 0, 6414, 6429, 3, 614, 307, 0, 6415, 6417, 5, 121, 0, 0, 6416, 6418, 3, 620, 310, 0, 6417, 6416, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6419, 1, 0, 0, 0, 6419, 6420, 5, 118, 0, 0, 6420, 6429, 3, 614, 307, 0, 6421, 6423, 3, 620, 310, 0, 6422, 6421, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6424, 1, 0, 0, 0, 6424, 6425, 5, 118, 0, 0, 6425, 6426, 3, 614, 307, 0, 6426, 6427, 3, 622, 311, 0, 6427, 6429, 1, 0, 0, 0, 6428, 6412, 1, 0, 0, 0, 6428, 6415, 1, 0, 0, 0, 6428, 6422, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 6430, 1, 0, 0, 0, 6430, 6432, 5, 3, 0, 0, 6431, 6433, 3, 616, 308, 0, 6432, 6431, 1, 0, 0, 0, 6432, 6433, 1, 0, 0, 0, 6433, 6435, 1, 0, 0, 0, 6434, 6385, 1, 0, 0, 0, 6434, 6394, 1, 0, 0, 0, 6434, 6410, 1, 0, 0, 0, 6435, 6454, 1, 0, 0, 0, 6436, 6437, 5, 110, 0, 0, 6437, 6438, 5, 118, 0, 0, 6438, 6453, 3, 614, 307, 0, 6439, 6441, 5, 121, 0, 0, 6440, 6442, 3, 620, 310, 0, 6441, 6440, 1, 0, 0, 0, 6441, 6442, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 6444, 5, 118, 0, 0, 6444, 6453, 3, 614, 307, 0, 6445, 6447, 3, 620, 310, 0, 6446, 6445, 1, 0, 0, 0, 6446, 6447, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6449, 5, 118, 0, 0, 6449, 6450, 3, 614, 307, 0, 6450, 6451, 3, 622, 311, 0, 6451, 6453, 1, 0, 0, 0, 6452, 6436, 1, 0, 0, 0, 6452, 6439, 1, 0, 0, 0, 6452, 6446, 1, 0, 0, 0, 6453, 6456, 1, 0, 0, 0, 6454, 6452, 1, 0, 0, 0, 6454, 6455, 1, 0, 0, 0, 6455, 615, 1, 0, 0, 0, 6456, 6454, 1, 0, 0, 0, 6457, 6459, 5, 36, 0, 0, 6458, 6457, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 6465, 3, 818, 409, 0, 6461, 6462, 5, 2, 0, 0, 6462, 6463, 3, 784, 392, 0, 6463, 6464, 5, 3, 0, 0, 6464, 6466, 1, 0, 0, 0, 6465, 6461, 1, 0, 0, 0, 6465, 6466, 1, 0, 0, 0, 6466, 617, 1, 0, 0, 0, 6467, 6480, 3, 616, 308, 0, 6468, 6470, 5, 36, 0, 0, 6469, 6471, 3, 818, 409, 0, 6470, 6469, 1, 0, 0, 0, 6470, 6471, 1, 0, 0, 0, 6471, 6474, 1, 0, 0, 0, 6472, 6474, 3, 818, 409, 0, 6473, 6468, 1, 0, 0, 0, 6473, 6472, 1, 0, 0, 0, 6474, 6475, 1, 0, 0, 0, 6475, 6476, 5, 2, 0, 0, 6476, 6477, 3, 642, 321, 0, 6477, 6478, 5, 3, 0, 0, 6478, 6480, 1, 0, 0, 0, 6479, 6467, 1, 0, 0, 0, 6479, 6473, 1, 0, 0, 0, 6480, 619, 1, 0, 0, 0, 6481, 6483, 7, 86, 0, 0, 6482, 6484, 5, 123, 0, 0, 6483, 6482, 1, 0, 0, 0, 6483, 6484, 1, 0, 0, 0, 6484, 621, 1, 0, 0, 0, 6485, 6486, 5, 100, 0, 0, 6486, 6490, 3, 144, 72, 0, 6487, 6488, 5, 80, 0, 0, 6488, 6490, 3, 674, 337, 0, 6489, 6485, 1, 0, 0, 0, 6489, 6487, 1, 0, 0, 0, 6490, 623, 1, 0, 0, 0, 6491, 6507, 3, 322, 161, 0, 6492, 6498, 5, 81, 0, 0, 6493, 6499, 3, 774, 387, 0, 6494, 6495, 5, 2, 0, 0, 6495, 6496, 3, 774, 387, 0, 6496, 6497, 5, 3, 0, 0, 6497, 6499, 1, 0, 0, 0, 6498, 6493, 1, 0, 0, 0, 6498, 6494, 1, 0, 0, 0, 6499, 6507, 1, 0, 0, 0, 6500, 6501, 5, 68, 0, 0, 6501, 6504, 5, 323, 0, 0, 6502, 6505, 3, 790, 395, 0, 6503, 6505, 5, 111, 0, 0, 6504, 6502, 1, 0, 0, 0, 6504, 6503, 1, 0, 0, 0, 6505, 6507, 1, 0, 0, 0, 6506, 6491, 1, 0, 0, 0, 6506, 6492, 1, 0, 0, 0, 6506, 6500, 1, 0, 0, 0, 6507, 625, 1, 0, 0, 0, 6508, 6509, 5, 92, 0, 0, 6509, 6511, 3, 322, 161, 0, 6510, 6512, 3, 144, 72, 0, 6511, 6510, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 6514, 1, 0, 0, 0, 6513, 6515, 3, 638, 319, 0, 6514, 6513, 1, 0, 0, 0, 6514, 6515, 1, 0, 0, 0, 6515, 6533, 1, 0, 0, 0, 6516, 6517, 5, 92, 0, 0, 6517, 6523, 5, 81, 0, 0, 6518, 6524, 3, 774, 387, 0, 6519, 6520, 5, 2, 0, 0, 6520, 6521, 3, 774, 387, 0, 6521, 6522, 5, 3, 0, 0, 6522, 6524, 1, 0, 0, 0, 6523, 6518, 1, 0, 0, 0, 6523, 6519, 1, 0, 0, 0, 6524, 6533, 1, 0, 0, 0, 6525, 6526, 5, 350, 0, 0, 6526, 6527, 5, 68, 0, 0, 6527, 6530, 5, 323, 0, 0, 6528, 6531, 3, 790, 395, 0, 6529, 6531, 5, 111, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6529, 1, 0, 0, 0, 6531, 6533, 1, 0, 0, 0, 6532, 6508, 1, 0, 0, 0, 6532, 6516, 1, 0, 0, 0, 6532, 6525, 1, 0, 0, 0, 6533, 627, 1, 0, 0, 0, 6534, 6539, 3, 624, 312, 0, 6535, 6536, 5, 6, 0, 0, 6536, 6538, 3, 624, 312, 0, 6537, 6535, 1, 0, 0, 0, 6538, 6541, 1, 0, 0, 0, 6539, 6537, 1, 0, 0, 0, 6539, 6540, 1, 0, 0, 0, 6540, 629, 1, 0, 0, 0, 6541, 6539, 1, 0, 0, 0, 6542, 6547, 3, 624, 312, 0, 6543, 6545, 5, 36, 0, 0, 6544, 6543, 1, 0, 0, 0, 6544, 6545, 1, 0, 0, 0, 6545, 6546, 1, 0, 0, 0, 6546, 6548, 3, 818, 409, 0, 6547, 6544, 1, 0, 0, 0, 6547, 6548, 1, 0, 0, 0, 6548, 631, 1, 0, 0, 0, 6549, 6550, 5, 472, 0, 0, 6550, 6551, 3, 806, 403, 0, 6551, 6557, 3, 534, 267, 0, 6552, 6553, 5, 310, 0, 0, 6553, 6554, 5, 2, 0, 0, 6554, 6555, 3, 674, 337, 0, 6555, 6556, 5, 3, 0, 0, 6556, 6558, 1, 0, 0, 0, 6557, 6552, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 633, 1, 0, 0, 0, 6559, 6574, 3, 688, 344, 0, 6560, 6561, 5, 320, 0, 0, 6561, 6562, 5, 64, 0, 0, 6562, 6563, 5, 2, 0, 0, 6563, 6568, 3, 636, 318, 0, 6564, 6565, 5, 6, 0, 0, 6565, 6567, 3, 636, 318, 0, 6566, 6564, 1, 0, 0, 0, 6567, 6570, 1, 0, 0, 0, 6568, 6566, 1, 0, 0, 0, 6568, 6569, 1, 0, 0, 0, 6569, 6571, 1, 0, 0, 0, 6570, 6568, 1, 0, 0, 0, 6571, 6572, 5, 3, 0, 0, 6572, 6574, 1, 0, 0, 0, 6573, 6559, 1, 0, 0, 0, 6573, 6560, 1, 0, 0, 0, 6574, 6577, 1, 0, 0, 0, 6575, 6576, 5, 105, 0, 0, 6576, 6578, 5, 473, 0, 0, 6577, 6575, 1, 0, 0, 0, 6577, 6578, 1, 0, 0, 0, 6578, 635, 1, 0, 0, 0, 6579, 6585, 3, 688, 344, 0, 6580, 6581, 5, 36, 0, 0, 6581, 6582, 5, 2, 0, 0, 6582, 6583, 3, 642, 321, 0, 6583, 6584, 5, 3, 0, 0, 6584, 6586, 1, 0, 0, 0, 6585, 6580, 1, 0, 0, 0, 6585, 6586, 1, 0, 0, 0, 6586, 637, 1, 0, 0, 0, 6587, 6588, 5, 103, 0, 0, 6588, 6589, 3, 734, 367, 0, 6589, 639, 1, 0, 0, 0, 6590, 6595, 5, 103, 0, 0, 6591, 6592, 5, 434, 0, 0, 6592, 6593, 5, 275, 0, 0, 6593, 6596, 3, 818, 409, 0, 6594, 6596, 3, 674, 337, 0, 6595, 6591, 1, 0, 0, 0, 6595, 6594, 1, 0, 0, 0, 6596, 641, 1, 0, 0, 0, 6597, 6602, 3, 644, 322, 0, 6598, 6599, 5, 6, 0, 0, 6599, 6601, 3, 644, 322, 0, 6600, 6598, 1, 0, 0, 0, 6601, 6604, 1, 0, 0, 0, 6602, 6600, 1, 0, 0, 0, 6602, 6603, 1, 0, 0, 0, 6603, 643, 1, 0, 0, 0, 6604, 6602, 1, 0, 0, 0, 6605, 6606, 3, 818, 409, 0, 6606, 6608, 3, 652, 326, 0, 6607, 6609, 3, 98, 49, 0, 6608, 6607, 1, 0, 0, 0, 6608, 6609, 1, 0, 0, 0, 6609, 645, 1, 0, 0, 0, 6610, 6611, 5, 474, 0, 0, 6611, 6625, 5, 2, 0, 0, 6612, 6613, 5, 476, 0, 0, 6613, 6614, 5, 2, 0, 0, 6614, 6619, 3, 650, 325, 0, 6615, 6616, 5, 6, 0, 0, 6616, 6618, 3, 650, 325, 0, 6617, 6615, 1, 0, 0, 0, 6618, 6621, 1, 0, 0, 0, 6619, 6617, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 6622, 1, 0, 0, 0, 6621, 6619, 1, 0, 0, 0, 6622, 6623, 5, 3, 0, 0, 6623, 6624, 5, 6, 0, 0, 6624, 6626, 1, 0, 0, 0, 6625, 6612, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6627, 1, 0, 0, 0, 6627, 6628, 3, 682, 341, 0, 6628, 6629, 3, 698, 349, 0, 6629, 6630, 5, 475, 0, 0, 6630, 6635, 3, 648, 324, 0, 6631, 6632, 5, 6, 0, 0, 6632, 6634, 3, 648, 324, 0, 6633, 6631, 1, 0, 0, 0, 6634, 6637, 1, 0, 0, 0, 6635, 6633, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6638, 1, 0, 0, 0, 6637, 6635, 1, 0, 0, 0, 6638, 6639, 5, 3, 0, 0, 6639, 647, 1, 0, 0, 0, 6640, 6659, 3, 818, 409, 0, 6641, 6655, 3, 652, 326, 0, 6642, 6645, 5, 53, 0, 0, 6643, 6645, 3, 826, 413, 0, 6644, 6642, 1, 0, 0, 0, 6644, 6643, 1, 0, 0, 0, 6645, 6646, 1, 0, 0, 0, 6646, 6652, 3, 674, 337, 0, 6647, 6649, 5, 77, 0, 0, 6648, 6647, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6650, 1, 0, 0, 0, 6650, 6652, 5, 78, 0, 0, 6651, 6644, 1, 0, 0, 0, 6651, 6648, 1, 0, 0, 0, 6652, 6653, 1, 0, 0, 0, 6653, 6651, 1, 0, 0, 0, 6653, 6654, 1, 0, 0, 0, 6654, 6656, 1, 0, 0, 0, 6655, 6651, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6660, 1, 0, 0, 0, 6657, 6658, 5, 62, 0, 0, 6658, 6660, 5, 473, 0, 0, 6659, 6641, 1, 0, 0, 0, 6659, 6657, 1, 0, 0, 0, 6660, 649, 1, 0, 0, 0, 6661, 6662, 3, 682, 341, 0, 6662, 6663, 5, 36, 0, 0, 6663, 6664, 3, 824, 412, 0, 6664, 6668, 1, 0, 0, 0, 6665, 6666, 5, 53, 0, 0, 6666, 6668, 3, 682, 341, 0, 6667, 6661, 1, 0, 0, 0, 6667, 6665, 1, 0, 0, 0, 6668, 651, 1, 0, 0, 0, 6669, 6671, 5, 415, 0, 0, 6670, 6669, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 6672, 1, 0, 0, 0, 6672, 6689, 3, 654, 327, 0, 6673, 6675, 5, 4, 0, 0, 6674, 6676, 5, 571, 0, 0, 6675, 6674, 1, 0, 0, 0, 6675, 6676, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 6679, 5, 5, 0, 0, 6678, 6673, 1, 0, 0, 0, 6679, 6682, 1, 0, 0, 0, 6680, 6678, 1, 0, 0, 0, 6680, 6681, 1, 0, 0, 0, 6681, 6690, 1, 0, 0, 0, 6682, 6680, 1, 0, 0, 0, 6683, 6687, 5, 35, 0, 0, 6684, 6685, 5, 4, 0, 0, 6685, 6686, 5, 571, 0, 0, 6686, 6688, 5, 5, 0, 0, 6687, 6684, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6690, 1, 0, 0, 0, 6689, 6680, 1, 0, 0, 0, 6689, 6683, 1, 0, 0, 0, 6690, 6696, 1, 0, 0, 0, 6691, 6692, 3, 780, 390, 0, 6692, 6693, 5, 27, 0, 0, 6693, 6694, 7, 87, 0, 0, 6694, 6696, 1, 0, 0, 0, 6695, 6670, 1, 0, 0, 0, 6695, 6691, 1, 0, 0, 0, 6696, 653, 1, 0, 0, 0, 6697, 6699, 3, 820, 410, 0, 6698, 6700, 3, 318, 159, 0, 6699, 6698, 1, 0, 0, 0, 6699, 6700, 1, 0, 0, 0, 6700, 6702, 1, 0, 0, 0, 6701, 6703, 3, 534, 267, 0, 6702, 6701, 1, 0, 0, 0, 6702, 6703, 1, 0, 0, 0, 6703, 6713, 1, 0, 0, 0, 6704, 6713, 3, 656, 328, 0, 6705, 6710, 5, 403, 0, 0, 6706, 6708, 3, 668, 334, 0, 6707, 6706, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6711, 1, 0, 0, 0, 6709, 6711, 3, 660, 330, 0, 6710, 6707, 1, 0, 0, 0, 6710, 6709, 1, 0, 0, 0, 6711, 6713, 1, 0, 0, 0, 6712, 6697, 1, 0, 0, 0, 6712, 6704, 1, 0, 0, 0, 6712, 6705, 1, 0, 0, 0, 6713, 655, 1, 0, 0, 0, 6714, 6719, 3, 658, 329, 0, 6715, 6719, 3, 662, 331, 0, 6716, 6719, 3, 664, 332, 0, 6717, 6719, 3, 666, 333, 0, 6718, 6714, 1, 0, 0, 0, 6718, 6715, 1, 0, 0, 0, 6718, 6716, 1, 0, 0, 0, 6718, 6717, 1, 0, 0, 0, 6719, 657, 1, 0, 0, 0, 6720, 6737, 5, 401, 0, 0, 6721, 6737, 5, 402, 0, 0, 6722, 6737, 5, 416, 0, 0, 6723, 6737, 5, 388, 0, 0, 6724, 6737, 5, 413, 0, 0, 6725, 6727, 5, 398, 0, 0, 6726, 6728, 3, 660, 330, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 6737, 1, 0, 0, 0, 6729, 6730, 5, 190, 0, 0, 6730, 6737, 5, 412, 0, 0, 6731, 6733, 7, 88, 0, 0, 6732, 6734, 3, 534, 267, 0, 6733, 6732, 1, 0, 0, 0, 6733, 6734, 1, 0, 0, 0, 6734, 6737, 1, 0, 0, 0, 6735, 6737, 5, 390, 0, 0, 6736, 6720, 1, 0, 0, 0, 6736, 6721, 1, 0, 0, 0, 6736, 6722, 1, 0, 0, 0, 6736, 6723, 1, 0, 0, 0, 6736, 6724, 1, 0, 0, 0, 6736, 6725, 1, 0, 0, 0, 6736, 6729, 1, 0, 0, 0, 6736, 6731, 1, 0, 0, 0, 6736, 6735, 1, 0, 0, 0, 6737, 659, 1, 0, 0, 0, 6738, 6739, 5, 2, 0, 0, 6739, 6740, 5, 571, 0, 0, 6740, 6741, 5, 3, 0, 0, 6741, 661, 1, 0, 0, 0, 6742, 6744, 5, 389, 0, 0, 6743, 6745, 5, 374, 0, 0, 6744, 6743, 1, 0, 0, 0, 6744, 6745, 1, 0, 0, 0, 6745, 6747, 1, 0, 0, 0, 6746, 6748, 3, 534, 267, 0, 6747, 6746, 1, 0, 0, 0, 6747, 6748, 1, 0, 0, 0, 6748, 663, 1, 0, 0, 0, 6749, 6751, 7, 89, 0, 0, 6750, 6752, 5, 374, 0, 0, 6751, 6750, 1, 0, 0, 0, 6751, 6752, 1, 0, 0, 0, 6752, 6760, 1, 0, 0, 0, 6753, 6760, 5, 423, 0, 0, 6754, 6755, 5, 405, 0, 0, 6755, 6757, 7, 90, 0, 0, 6756, 6758, 5, 374, 0, 0, 6757, 6756, 1, 0, 0, 0, 6757, 6758, 1, 0, 0, 0, 6758, 6760, 1, 0, 0, 0, 6759, 6749, 1, 0, 0, 0, 6759, 6753, 1, 0, 0, 0, 6759, 6754, 1, 0, 0, 0, 6760, 6762, 1, 0, 0, 0, 6761, 6763, 3, 660, 330, 0, 6762, 6761, 1, 0, 0, 0, 6762, 6763, 1, 0, 0, 0, 6763, 665, 1, 0, 0, 0, 6764, 6766, 7, 91, 0, 0, 6765, 6767, 3, 660, 330, 0, 6766, 6765, 1, 0, 0, 0, 6766, 6767, 1, 0, 0, 0, 6767, 6771, 1, 0, 0, 0, 6768, 6769, 7, 26, 0, 0, 6769, 6770, 5, 418, 0, 0, 6770, 6772, 5, 386, 0, 0, 6771, 6768, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 667, 1, 0, 0, 0, 6773, 6803, 5, 264, 0, 0, 6774, 6803, 3, 670, 335, 0, 6775, 6778, 5, 384, 0, 0, 6776, 6777, 5, 94, 0, 0, 6777, 6779, 5, 264, 0, 0, 6778, 6776, 1, 0, 0, 0, 6778, 6779, 1, 0, 0, 0, 6779, 6803, 1, 0, 0, 0, 6780, 6787, 5, 176, 0, 0, 6781, 6785, 5, 94, 0, 0, 6782, 6786, 5, 218, 0, 0, 6783, 6786, 5, 261, 0, 0, 6784, 6786, 3, 670, 335, 0, 6785, 6782, 1, 0, 0, 0, 6785, 6783, 1, 0, 0, 0, 6785, 6784, 1, 0, 0, 0, 6786, 6788, 1, 0, 0, 0, 6787, 6781, 1, 0, 0, 0, 6787, 6788, 1, 0, 0, 0, 6788, 6803, 1, 0, 0, 0, 6789, 6795, 5, 218, 0, 0, 6790, 6793, 5, 94, 0, 0, 6791, 6794, 5, 261, 0, 0, 6792, 6794, 3, 670, 335, 0, 6793, 6791, 1, 0, 0, 0, 6793, 6792, 1, 0, 0, 0, 6794, 6796, 1, 0, 0, 0, 6795, 6790, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6803, 1, 0, 0, 0, 6797, 6800, 5, 261, 0, 0, 6798, 6799, 5, 94, 0, 0, 6799, 6801, 3, 670, 335, 0, 6800, 6798, 1, 0, 0, 0, 6800, 6801, 1, 0, 0, 0, 6801, 6803, 1, 0, 0, 0, 6802, 6773, 1, 0, 0, 0, 6802, 6774, 1, 0, 0, 0, 6802, 6775, 1, 0, 0, 0, 6802, 6780, 1, 0, 0, 0, 6802, 6789, 1, 0, 0, 0, 6802, 6797, 1, 0, 0, 0, 6803, 669, 1, 0, 0, 0, 6804, 6806, 5, 326, 0, 0, 6805, 6807, 3, 660, 330, 0, 6806, 6805, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 671, 1, 0, 0, 0, 6808, 6809, 7, 92, 0, 0, 6809, 673, 1, 0, 0, 0, 6810, 6811, 3, 676, 338, 0, 6811, 675, 1, 0, 0, 0, 6812, 6813, 6, 338, -1, 0, 6813, 6815, 3, 680, 340, 0, 6814, 6816, 3, 678, 339, 0, 6815, 6814, 1, 0, 0, 0, 6815, 6816, 1, 0, 0, 0, 6816, 6820, 1, 0, 0, 0, 6817, 6818, 5, 77, 0, 0, 6818, 6820, 3, 676, 338, 3, 6819, 6812, 1, 0, 0, 0, 6819, 6817, 1, 0, 0, 0, 6820, 6829, 1, 0, 0, 0, 6821, 6822, 10, 2, 0, 0, 6822, 6823, 5, 33, 0, 0, 6823, 6828, 3, 676, 338, 3, 6824, 6825, 10, 1, 0, 0, 6825, 6826, 5, 82, 0, 0, 6826, 6828, 3, 676, 338, 2, 6827, 6821, 1, 0, 0, 0, 6827, 6824, 1, 0, 0, 0, 6828, 6831, 1, 0, 0, 0, 6829, 6827, 1, 0, 0, 0, 6829, 6830, 1, 0, 0, 0, 6830, 677, 1, 0, 0, 0, 6831, 6829, 1, 0, 0, 0, 6832, 6833, 3, 672, 336, 0, 6833, 6834, 3, 680, 340, 0, 6834, 6904, 1, 0, 0, 0, 6835, 6836, 3, 672, 336, 0, 6836, 6837, 3, 728, 364, 0, 6837, 6843, 3, 718, 359, 0, 6838, 6844, 3, 562, 281, 0, 6839, 6840, 5, 2, 0, 0, 6840, 6841, 3, 674, 337, 0, 6841, 6842, 5, 3, 0, 0, 6842, 6844, 1, 0, 0, 0, 6843, 6838, 1, 0, 0, 0, 6843, 6839, 1, 0, 0, 0, 6844, 6904, 1, 0, 0, 0, 6845, 6847, 5, 77, 0, 0, 6846, 6845, 1, 0, 0, 0, 6846, 6847, 1, 0, 0, 0, 6847, 6848, 1, 0, 0, 0, 6848, 6849, 5, 387, 0, 0, 6849, 6850, 3, 680, 340, 0, 6850, 6851, 5, 33, 0, 0, 6851, 6852, 3, 680, 340, 0, 6852, 6904, 1, 0, 0, 0, 6853, 6855, 5, 77, 0, 0, 6854, 6853, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6856, 1, 0, 0, 0, 6856, 6857, 5, 68, 0, 0, 6857, 6858, 5, 2, 0, 0, 6858, 6863, 3, 674, 337, 0, 6859, 6860, 5, 6, 0, 0, 6860, 6862, 3, 674, 337, 0, 6861, 6859, 1, 0, 0, 0, 6862, 6865, 1, 0, 0, 0, 6863, 6861, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6866, 1, 0, 0, 0, 6865, 6863, 1, 0, 0, 0, 6866, 6867, 5, 3, 0, 0, 6867, 6904, 1, 0, 0, 0, 6868, 6870, 5, 77, 0, 0, 6869, 6868, 1, 0, 0, 0, 6869, 6870, 1, 0, 0, 0, 6870, 6871, 1, 0, 0, 0, 6871, 6872, 5, 68, 0, 0, 6872, 6904, 3, 562, 281, 0, 6873, 6875, 5, 77, 0, 0, 6874, 6873, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 6884, 1, 0, 0, 0, 6876, 6885, 5, 120, 0, 0, 6877, 6885, 5, 114, 0, 0, 6878, 6879, 5, 127, 0, 0, 6879, 6885, 5, 94, 0, 0, 6880, 6882, 5, 387, 0, 0, 6881, 6883, 5, 91, 0, 0, 6882, 6881, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6885, 1, 0, 0, 0, 6884, 6876, 1, 0, 0, 0, 6884, 6877, 1, 0, 0, 0, 6884, 6878, 1, 0, 0, 0, 6884, 6880, 1, 0, 0, 0, 6885, 6886, 1, 0, 0, 0, 6886, 6889, 3, 680, 340, 0, 6887, 6888, 5, 197, 0, 0, 6888, 6890, 3, 680, 340, 0, 6889, 6887, 1, 0, 0, 0, 6889, 6890, 1, 0, 0, 0, 6890, 6904, 1, 0, 0, 0, 6891, 6893, 5, 116, 0, 0, 6892, 6894, 5, 77, 0, 0, 6893, 6892, 1, 0, 0, 0, 6893, 6894, 1, 0, 0, 0, 6894, 6895, 1, 0, 0, 0, 6895, 6904, 5, 78, 0, 0, 6896, 6898, 5, 116, 0, 0, 6897, 6899, 5, 77, 0, 0, 6898, 6897, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 6900, 1, 0, 0, 0, 6900, 6901, 5, 56, 0, 0, 6901, 6902, 5, 64, 0, 0, 6902, 6904, 3, 680, 340, 0, 6903, 6832, 1, 0, 0, 0, 6903, 6835, 1, 0, 0, 0, 6903, 6846, 1, 0, 0, 0, 6903, 6854, 1, 0, 0, 0, 6903, 6869, 1, 0, 0, 0, 6903, 6874, 1, 0, 0, 0, 6903, 6891, 1, 0, 0, 0, 6903, 6896, 1, 0, 0, 0, 6904, 679, 1, 0, 0, 0, 6905, 6906, 6, 340, -1, 0, 6906, 6910, 3, 682, 341, 0, 6907, 6908, 7, 29, 0, 0, 6908, 6910, 3, 680, 340, 4, 6909, 6905, 1, 0, 0, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6927, 1, 0, 0, 0, 6911, 6912, 10, 3, 0, 0, 6912, 6913, 7, 93, 0, 0, 6913, 6926, 3, 680, 340, 4, 6914, 6915, 10, 2, 0, 0, 6915, 6916, 7, 29, 0, 0, 6916, 6926, 3, 680, 340, 3, 6917, 6918, 10, 1, 0, 0, 6918, 6919, 5, 15, 0, 0, 6919, 6926, 3, 680, 340, 2, 6920, 6921, 10, 5, 0, 0, 6921, 6922, 5, 142, 0, 0, 6922, 6923, 5, 418, 0, 0, 6923, 6924, 5, 386, 0, 0, 6924, 6926, 3, 674, 337, 0, 6925, 6911, 1, 0, 0, 0, 6925, 6914, 1, 0, 0, 0, 6925, 6917, 1, 0, 0, 0, 6925, 6920, 1, 0, 0, 0, 6926, 6929, 1, 0, 0, 0, 6927, 6925, 1, 0, 0, 0, 6927, 6928, 1, 0, 0, 0, 6928, 681, 1, 0, 0, 0, 6929, 6927, 1, 0, 0, 0, 6930, 6931, 6, 341, -1, 0, 6931, 6932, 7, 94, 0, 0, 6932, 7019, 3, 562, 281, 0, 6933, 6936, 5, 35, 0, 0, 6934, 6937, 3, 562, 281, 0, 6935, 6937, 3, 740, 370, 0, 6936, 6934, 1, 0, 0, 0, 6936, 6935, 1, 0, 0, 0, 6937, 7019, 1, 0, 0, 0, 6938, 6939, 5, 28, 0, 0, 6939, 7019, 3, 754, 377, 0, 6940, 6941, 5, 470, 0, 0, 6941, 7019, 3, 534, 267, 0, 6942, 7019, 5, 571, 0, 0, 6943, 7019, 5, 573, 0, 0, 6944, 7019, 5, 563, 0, 0, 6945, 7019, 5, 567, 0, 0, 6946, 6956, 3, 806, 403, 0, 6947, 6957, 3, 808, 404, 0, 6948, 6949, 5, 2, 0, 0, 6949, 6951, 3, 736, 368, 0, 6950, 6952, 3, 586, 293, 0, 6951, 6950, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 6954, 5, 3, 0, 0, 6954, 6955, 3, 808, 404, 0, 6955, 6957, 1, 0, 0, 0, 6956, 6947, 1, 0, 0, 0, 6956, 6948, 1, 0, 0, 0, 6957, 7019, 1, 0, 0, 0, 6958, 6960, 3, 656, 328, 0, 6959, 6958, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 7019, 3, 808, 404, 0, 6962, 6970, 5, 403, 0, 0, 6963, 6965, 3, 808, 404, 0, 6964, 6966, 3, 668, 334, 0, 6965, 6964, 1, 0, 0, 0, 6965, 6966, 1, 0, 0, 0, 6966, 6971, 1, 0, 0, 0, 6967, 6968, 3, 660, 330, 0, 6968, 6969, 3, 808, 404, 0, 6969, 6971, 1, 0, 0, 0, 6970, 6963, 1, 0, 0, 0, 6970, 6967, 1, 0, 0, 0, 6971, 7019, 1, 0, 0, 0, 6972, 7019, 5, 96, 0, 0, 6973, 7019, 5, 60, 0, 0, 6974, 7019, 5, 78, 0, 0, 6975, 7019, 5, 574, 0, 0, 6976, 6977, 5, 2, 0, 0, 6977, 6978, 3, 674, 337, 0, 6978, 6979, 5, 3, 0, 0, 6979, 6980, 3, 754, 377, 0, 6980, 7019, 1, 0, 0, 0, 6981, 6983, 5, 40, 0, 0, 6982, 6984, 3, 674, 337, 0, 6983, 6982, 1, 0, 0, 0, 6983, 6984, 1, 0, 0, 0, 6984, 6986, 1, 0, 0, 0, 6985, 6987, 3, 748, 374, 0, 6986, 6985, 1, 0, 0, 0, 6987, 6988, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6988, 6989, 1, 0, 0, 0, 6989, 6992, 1, 0, 0, 0, 6990, 6991, 5, 58, 0, 0, 6991, 6993, 3, 674, 337, 0, 6992, 6990, 1, 0, 0, 0, 6992, 6993, 1, 0, 0, 0, 6993, 6994, 1, 0, 0, 0, 6994, 6995, 5, 454, 0, 0, 6995, 7019, 1, 0, 0, 0, 6996, 7019, 3, 686, 343, 0, 6997, 6999, 3, 562, 281, 0, 6998, 7000, 3, 752, 376, 0, 6999, 6998, 1, 0, 0, 0, 6999, 7000, 1, 0, 0, 0, 7000, 7019, 1, 0, 0, 0, 7001, 7019, 3, 716, 358, 0, 7002, 7003, 5, 2, 0, 0, 7003, 7004, 3, 674, 337, 0, 7004, 7005, 5, 6, 0, 0, 7005, 7006, 3, 730, 365, 0, 7006, 7007, 5, 3, 0, 0, 7007, 7019, 1, 0, 0, 0, 7008, 7009, 3, 714, 357, 0, 7009, 7010, 5, 125, 0, 0, 7010, 7011, 3, 714, 357, 0, 7011, 7019, 1, 0, 0, 0, 7012, 7019, 3, 780, 390, 0, 7013, 7014, 7, 29, 0, 0, 7014, 7019, 3, 682, 341, 5, 7015, 7016, 3, 724, 362, 0, 7016, 7017, 3, 682, 341, 2, 7017, 7019, 1, 0, 0, 0, 7018, 6930, 1, 0, 0, 0, 7018, 6933, 1, 0, 0, 0, 7018, 6938, 1, 0, 0, 0, 7018, 6940, 1, 0, 0, 0, 7018, 6942, 1, 0, 0, 0, 7018, 6943, 1, 0, 0, 0, 7018, 6944, 1, 0, 0, 0, 7018, 6945, 1, 0, 0, 0, 7018, 6946, 1, 0, 0, 0, 7018, 6959, 1, 0, 0, 0, 7018, 6962, 1, 0, 0, 0, 7018, 6972, 1, 0, 0, 0, 7018, 6973, 1, 0, 0, 0, 7018, 6974, 1, 0, 0, 0, 7018, 6975, 1, 0, 0, 0, 7018, 6976, 1, 0, 0, 0, 7018, 6981, 1, 0, 0, 0, 7018, 6996, 1, 0, 0, 0, 7018, 6997, 1, 0, 0, 0, 7018, 7001, 1, 0, 0, 0, 7018, 7002, 1, 0, 0, 0, 7018, 7008, 1, 0, 0, 0, 7018, 7012, 1, 0, 0, 0, 7018, 7013, 1, 0, 0, 0, 7018, 7015, 1, 0, 0, 0, 7019, 7047, 1, 0, 0, 0, 7020, 7021, 10, 3, 0, 0, 7021, 7022, 3, 722, 361, 0, 7022, 7023, 3, 682, 341, 4, 7023, 7046, 1, 0, 0, 0, 7024, 7025, 10, 6, 0, 0, 7025, 7026, 5, 26, 0, 0, 7026, 7046, 3, 652, 326, 0, 7027, 7028, 10, 4, 0, 0, 7028, 7030, 3, 724, 362, 0, 7029, 7031, 3, 682, 341, 0, 7030, 7029, 1, 0, 0, 0, 7030, 7031, 1, 0, 0, 0, 7031, 7046, 1, 0, 0, 0, 7032, 7033, 10, 1, 0, 0, 7033, 7035, 5, 116, 0, 0, 7034, 7036, 5, 77, 0, 0, 7035, 7034, 1, 0, 0, 0, 7035, 7036, 1, 0, 0, 0, 7036, 7043, 1, 0, 0, 0, 7037, 7038, 5, 56, 0, 0, 7038, 7039, 5, 64, 0, 0, 7039, 7044, 3, 682, 341, 0, 7040, 7041, 5, 275, 0, 0, 7041, 7044, 3, 528, 264, 0, 7042, 7044, 5, 188, 0, 0, 7043, 7037, 1, 0, 0, 0, 7043, 7040, 1, 0, 0, 0, 7043, 7042, 1, 0, 0, 0, 7044, 7046, 1, 0, 0, 0, 7045, 7020, 1, 0, 0, 0, 7045, 7024, 1, 0, 0, 0, 7045, 7027, 1, 0, 0, 0, 7045, 7032, 1, 0, 0, 0, 7046, 7049, 1, 0, 0, 0, 7047, 7045, 1, 0, 0, 0, 7047, 7048, 1, 0, 0, 0, 7048, 683, 1, 0, 0, 0, 7049, 7047, 1, 0, 0, 0, 7050, 7076, 3, 806, 403, 0, 7051, 7073, 5, 2, 0, 0, 7052, 7056, 3, 736, 368, 0, 7053, 7054, 5, 6, 0, 0, 7054, 7055, 5, 101, 0, 0, 7055, 7057, 3, 738, 369, 0, 7056, 7053, 1, 0, 0, 0, 7056, 7057, 1, 0, 0, 0, 7057, 7059, 1, 0, 0, 0, 7058, 7060, 3, 586, 293, 0, 7059, 7058, 1, 0, 0, 0, 7059, 7060, 1, 0, 0, 0, 7060, 7074, 1, 0, 0, 0, 7061, 7062, 5, 101, 0, 0, 7062, 7064, 3, 738, 369, 0, 7063, 7065, 3, 586, 293, 0, 7064, 7063, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7074, 1, 0, 0, 0, 7066, 7067, 7, 80, 0, 0, 7067, 7069, 3, 736, 368, 0, 7068, 7070, 3, 586, 293, 0, 7069, 7068, 1, 0, 0, 0, 7069, 7070, 1, 0, 0, 0, 7070, 7074, 1, 0, 0, 0, 7071, 7074, 5, 9, 0, 0, 7072, 7074, 1, 0, 0, 0, 7073, 7052, 1, 0, 0, 0, 7073, 7061, 1, 0, 0, 0, 7073, 7066, 1, 0, 0, 0, 7073, 7071, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 7075, 1, 0, 0, 0, 7075, 7077, 5, 3, 0, 0, 7076, 7051, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 685, 1, 0, 0, 0, 7078, 7085, 3, 684, 342, 0, 7079, 7080, 5, 479, 0, 0, 7080, 7081, 5, 66, 0, 0, 7081, 7082, 5, 2, 0, 0, 7082, 7083, 3, 586, 293, 0, 7083, 7084, 5, 3, 0, 0, 7084, 7086, 1, 0, 0, 0, 7085, 7079, 1, 0, 0, 0, 7085, 7086, 1, 0, 0, 0, 7086, 7093, 1, 0, 0, 0, 7087, 7088, 5, 480, 0, 0, 7088, 7089, 5, 2, 0, 0, 7089, 7090, 5, 103, 0, 0, 7090, 7091, 3, 674, 337, 0, 7091, 7092, 5, 3, 0, 0, 7092, 7094, 1, 0, 0, 0, 7093, 7087, 1, 0, 0, 0, 7093, 7094, 1, 0, 0, 0, 7094, 7100, 1, 0, 0, 0, 7095, 7098, 5, 124, 0, 0, 7096, 7099, 3, 708, 354, 0, 7097, 7099, 3, 818, 409, 0, 7098, 7096, 1, 0, 0, 0, 7098, 7097, 1, 0, 0, 0, 7099, 7101, 1, 0, 0, 0, 7100, 7095, 1, 0, 0, 0, 7100, 7101, 1, 0, 0, 0, 7101, 7104, 1, 0, 0, 0, 7102, 7104, 3, 690, 345, 0, 7103, 7078, 1, 0, 0, 0, 7103, 7102, 1, 0, 0, 0, 7104, 687, 1, 0, 0, 0, 7105, 7108, 3, 684, 342, 0, 7106, 7108, 3, 690, 345, 0, 7107, 7105, 1, 0, 0, 0, 7107, 7106, 1, 0, 0, 0, 7108, 689, 1, 0, 0, 0, 7109, 7110, 5, 108, 0, 0, 7110, 7111, 5, 62, 0, 0, 7111, 7112, 5, 2, 0, 0, 7112, 7113, 3, 674, 337, 0, 7113, 7114, 5, 3, 0, 0, 7114, 7284, 1, 0, 0, 0, 7115, 7284, 5, 48, 0, 0, 7116, 7118, 7, 95, 0, 0, 7117, 7119, 3, 660, 330, 0, 7118, 7117, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7284, 1, 0, 0, 0, 7120, 7284, 5, 49, 0, 0, 7121, 7284, 5, 52, 0, 0, 7122, 7284, 5, 89, 0, 0, 7123, 7284, 5, 99, 0, 0, 7124, 7284, 5, 47, 0, 0, 7125, 7284, 5, 111, 0, 0, 7126, 7127, 7, 96, 0, 0, 7127, 7128, 5, 2, 0, 0, 7128, 7129, 3, 674, 337, 0, 7129, 7130, 5, 36, 0, 0, 7130, 7131, 3, 652, 326, 0, 7131, 7132, 5, 3, 0, 0, 7132, 7284, 1, 0, 0, 0, 7133, 7134, 5, 397, 0, 0, 7134, 7139, 5, 2, 0, 0, 7135, 7136, 3, 742, 371, 0, 7136, 7137, 5, 64, 0, 0, 7137, 7138, 3, 674, 337, 0, 7138, 7140, 1, 0, 0, 0, 7139, 7135, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7284, 5, 3, 0, 0, 7142, 7143, 5, 489, 0, 0, 7143, 7144, 5, 2, 0, 0, 7144, 7147, 3, 674, 337, 0, 7145, 7146, 5, 6, 0, 0, 7146, 7148, 3, 744, 372, 0, 7147, 7145, 1, 0, 0, 0, 7147, 7148, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7150, 5, 3, 0, 0, 7150, 7284, 1, 0, 0, 0, 7151, 7152, 5, 410, 0, 0, 7152, 7153, 5, 2, 0, 0, 7153, 7154, 3, 674, 337, 0, 7154, 7155, 5, 84, 0, 0, 7155, 7156, 3, 674, 337, 0, 7156, 7157, 5, 64, 0, 0, 7157, 7160, 3, 674, 337, 0, 7158, 7159, 5, 62, 0, 0, 7159, 7161, 3, 674, 337, 0, 7160, 7158, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 5, 3, 0, 0, 7163, 7284, 1, 0, 0, 0, 7164, 7165, 5, 411, 0, 0, 7165, 7170, 5, 2, 0, 0, 7166, 7167, 3, 682, 341, 0, 7167, 7168, 5, 68, 0, 0, 7168, 7169, 3, 682, 341, 0, 7169, 7171, 1, 0, 0, 0, 7170, 7166, 1, 0, 0, 0, 7170, 7171, 1, 0, 0, 0, 7171, 7172, 1, 0, 0, 0, 7172, 7284, 5, 3, 0, 0, 7173, 7174, 5, 417, 0, 0, 7174, 7176, 5, 2, 0, 0, 7175, 7177, 3, 746, 373, 0, 7176, 7175, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7284, 5, 3, 0, 0, 7179, 7180, 5, 421, 0, 0, 7180, 7182, 5, 2, 0, 0, 7181, 7183, 7, 97, 0, 0, 7182, 7181, 1, 0, 0, 0, 7182, 7183, 1, 0, 0, 0, 7183, 7188, 1, 0, 0, 0, 7184, 7186, 3, 674, 337, 0, 7185, 7184, 1, 0, 0, 0, 7185, 7186, 1, 0, 0, 0, 7186, 7187, 1, 0, 0, 0, 7187, 7189, 5, 64, 0, 0, 7188, 7185, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7190, 1, 0, 0, 0, 7190, 7191, 3, 730, 365, 0, 7191, 7192, 1, 0, 0, 0, 7192, 7193, 5, 3, 0, 0, 7193, 7284, 1, 0, 0, 0, 7194, 7195, 5, 408, 0, 0, 7195, 7196, 5, 2, 0, 0, 7196, 7197, 3, 674, 337, 0, 7197, 7198, 5, 6, 0, 0, 7198, 7199, 3, 674, 337, 0, 7199, 7200, 5, 3, 0, 0, 7200, 7284, 1, 0, 0, 0, 7201, 7202, 7, 98, 0, 0, 7202, 7284, 3, 534, 267, 0, 7203, 7204, 5, 426, 0, 0, 7204, 7205, 5, 2, 0, 0, 7205, 7206, 5, 266, 0, 0, 7206, 7216, 3, 824, 412, 0, 7207, 7214, 5, 6, 0, 0, 7208, 7209, 5, 424, 0, 0, 7209, 7210, 5, 2, 0, 0, 7210, 7211, 3, 692, 346, 0, 7211, 7212, 5, 3, 0, 0, 7212, 7215, 1, 0, 0, 0, 7213, 7215, 3, 730, 365, 0, 7214, 7208, 1, 0, 0, 0, 7214, 7213, 1, 0, 0, 0, 7215, 7217, 1, 0, 0, 0, 7216, 7207, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7218, 1, 0, 0, 0, 7218, 7219, 5, 3, 0, 0, 7219, 7284, 1, 0, 0, 0, 7220, 7221, 5, 427, 0, 0, 7221, 7222, 5, 2, 0, 0, 7222, 7223, 3, 682, 341, 0, 7223, 7224, 3, 698, 349, 0, 7224, 7225, 5, 3, 0, 0, 7225, 7284, 1, 0, 0, 0, 7226, 7227, 5, 428, 0, 0, 7227, 7228, 5, 2, 0, 0, 7228, 7229, 3, 692, 346, 0, 7229, 7230, 5, 3, 0, 0, 7230, 7284, 1, 0, 0, 0, 7231, 7232, 5, 429, 0, 0, 7232, 7233, 5, 2, 0, 0, 7233, 7234, 3, 696, 348, 0, 7234, 7237, 3, 674, 337, 0, 7235, 7236, 7, 99, 0, 0, 7236, 7238, 5, 378, 0, 0, 7237, 7235, 1, 0, 0, 0, 7237, 7238, 1, 0, 0, 0, 7238, 7239, 1, 0, 0, 0, 7239, 7240, 5, 3, 0, 0, 7240, 7284, 1, 0, 0, 0, 7241, 7242, 5, 430, 0, 0, 7242, 7243, 5, 2, 0, 0, 7243, 7244, 5, 266, 0, 0, 7244, 7247, 3, 824, 412, 0, 7245, 7246, 5, 6, 0, 0, 7246, 7248, 3, 674, 337, 0, 7247, 7245, 1, 0, 0, 0, 7247, 7248, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7250, 5, 3, 0, 0, 7250, 7284, 1, 0, 0, 0, 7251, 7252, 5, 431, 0, 0, 7252, 7253, 5, 2, 0, 0, 7253, 7254, 5, 383, 0, 0, 7254, 7255, 3, 674, 337, 0, 7255, 7256, 5, 6, 0, 0, 7256, 7260, 5, 375, 0, 0, 7257, 7258, 5, 269, 0, 0, 7258, 7261, 5, 450, 0, 0, 7259, 7261, 3, 674, 337, 0, 7260, 7257, 1, 0, 0, 0, 7260, 7259, 1, 0, 0, 0, 7261, 7271, 1, 0, 0, 0, 7262, 7263, 5, 6, 0, 0, 7263, 7269, 5, 339, 0, 0, 7264, 7266, 5, 269, 0, 0, 7265, 7264, 1, 0, 0, 0, 7265, 7266, 1, 0, 0, 0, 7266, 7267, 1, 0, 0, 0, 7267, 7270, 5, 450, 0, 0, 7268, 7270, 5, 385, 0, 0, 7269, 7265, 1, 0, 0, 0, 7269, 7268, 1, 0, 0, 0, 7270, 7272, 1, 0, 0, 0, 7271, 7262, 1, 0, 0, 0, 7271, 7272, 1, 0, 0, 0, 7272, 7273, 1, 0, 0, 0, 7273, 7274, 5, 3, 0, 0, 7274, 7284, 1, 0, 0, 0, 7275, 7276, 5, 432, 0, 0, 7276, 7277, 5, 2, 0, 0, 7277, 7278, 3, 696, 348, 0, 7278, 7279, 3, 674, 337, 0, 7279, 7280, 5, 36, 0, 0, 7280, 7281, 3, 654, 327, 0, 7281, 7282, 5, 3, 0, 0, 7282, 7284, 1, 0, 0, 0, 7283, 7109, 1, 0, 0, 0, 7283, 7115, 1, 0, 0, 0, 7283, 7116, 1, 0, 0, 0, 7283, 7120, 1, 0, 0, 0, 7283, 7121, 1, 0, 0, 0, 7283, 7122, 1, 0, 0, 0, 7283, 7123, 1, 0, 0, 0, 7283, 7124, 1, 0, 0, 0, 7283, 7125, 1, 0, 0, 0, 7283, 7126, 1, 0, 0, 0, 7283, 7133, 1, 0, 0, 0, 7283, 7142, 1, 0, 0, 0, 7283, 7151, 1, 0, 0, 0, 7283, 7164, 1, 0, 0, 0, 7283, 7173, 1, 0, 0, 0, 7283, 7179, 1, 0, 0, 0, 7283, 7194, 1, 0, 0, 0, 7283, 7201, 1, 0, 0, 0, 7283, 7203, 1, 0, 0, 0, 7283, 7220, 1, 0, 0, 0, 7283, 7226, 1, 0, 0, 0, 7283, 7231, 1, 0, 0, 0, 7283, 7241, 1, 0, 0, 0, 7283, 7251, 1, 0, 0, 0, 7283, 7275, 1, 0, 0, 0, 7284, 691, 1, 0, 0, 0, 7285, 7290, 3, 694, 347, 0, 7286, 7287, 5, 6, 0, 0, 7287, 7289, 3, 694, 347, 0, 7288, 7286, 1, 0, 0, 0, 7289, 7292, 1, 0, 0, 0, 7290, 7288, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 693, 1, 0, 0, 0, 7292, 7290, 1, 0, 0, 0, 7293, 7296, 3, 674, 337, 0, 7294, 7295, 5, 36, 0, 0, 7295, 7297, 3, 824, 412, 0, 7296, 7294, 1, 0, 0, 0, 7296, 7297, 1, 0, 0, 0, 7297, 695, 1, 0, 0, 0, 7298, 7299, 7, 100, 0, 0, 7299, 697, 1, 0, 0, 0, 7300, 7302, 5, 286, 0, 0, 7301, 7303, 3, 700, 350, 0, 7302, 7301, 1, 0, 0, 0, 7302, 7303, 1, 0, 0, 0, 7303, 7304, 1, 0, 0, 0, 7304, 7306, 3, 682, 341, 0, 7305, 7307, 3, 700, 350, 0, 7306, 7305, 1, 0, 0, 0, 7306, 7307, 1, 0, 0, 0, 7307, 699, 1, 0, 0, 0, 7308, 7309, 5, 147, 0, 0, 7309, 7310, 7, 101, 0, 0, 7310, 701, 1, 0, 0, 0, 7311, 7312, 5, 104, 0, 0, 7312, 7317, 3, 704, 352, 0, 7313, 7314, 5, 6, 0, 0, 7314, 7316, 3, 704, 352, 0, 7315, 7313, 1, 0, 0, 0, 7316, 7319, 1, 0, 0, 0, 7317, 7315, 1, 0, 0, 0, 7317, 7318, 1, 0, 0, 0, 7318, 703, 1, 0, 0, 0, 7319, 7317, 1, 0, 0, 0, 7320, 7321, 3, 818, 409, 0, 7321, 7322, 5, 36, 0, 0, 7322, 7323, 3, 708, 354, 0, 7323, 705, 1, 0, 0, 0, 7324, 7327, 5, 124, 0, 0, 7325, 7328, 3, 708, 354, 0, 7326, 7328, 3, 818, 409, 0, 7327, 7325, 1, 0, 0, 0, 7327, 7326, 1, 0, 0, 0, 7328, 707, 1, 0, 0, 0, 7329, 7331, 5, 2, 0, 0, 7330, 7332, 3, 818, 409, 0, 7331, 7330, 1, 0, 0, 0, 7331, 7332, 1, 0, 0, 0, 7332, 7336, 1, 0, 0, 0, 7333, 7334, 5, 285, 0, 0, 7334, 7335, 5, 147, 0, 0, 7335, 7337, 3, 730, 365, 0, 7336, 7333, 1, 0, 0, 0, 7336, 7337, 1, 0, 0, 0, 7337, 7339, 1, 0, 0, 0, 7338, 7340, 3, 586, 293, 0, 7339, 7338, 1, 0, 0, 0, 7339, 7340, 1, 0, 0, 0, 7340, 7342, 1, 0, 0, 0, 7341, 7343, 3, 710, 355, 0, 7342, 7341, 1, 0, 0, 0, 7342, 7343, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 7345, 5, 3, 0, 0, 7345, 709, 1, 0, 0, 0, 7346, 7351, 7, 102, 0, 0, 7347, 7348, 5, 387, 0, 0, 7348, 7349, 3, 712, 356, 0, 7349, 7350, 5, 33, 0, 0, 7350, 7352, 1, 0, 0, 0, 7351, 7347, 1, 0, 0, 0, 7351, 7352, 1, 0, 0, 0, 7352, 7353, 1, 0, 0, 0, 7353, 7354, 3, 712, 356, 0, 7354, 7364, 1, 0, 0, 0, 7355, 7362, 5, 199, 0, 0, 7356, 7357, 5, 434, 0, 0, 7357, 7363, 5, 414, 0, 0, 7358, 7363, 5, 66, 0, 0, 7359, 7363, 5, 467, 0, 0, 7360, 7361, 5, 269, 0, 0, 7361, 7363, 5, 482, 0, 0, 7362, 7356, 1, 0, 0, 0, 7362, 7358, 1, 0, 0, 0, 7362, 7359, 1, 0, 0, 0, 7362, 7360, 1, 0, 0, 0, 7363, 7365, 1, 0, 0, 0, 7364, 7355, 1, 0, 0, 0, 7364, 7365, 1, 0, 0, 0, 7365, 711, 1, 0, 0, 0, 7366, 7369, 5, 362, 0, 0, 7367, 7369, 3, 674, 337, 0, 7368, 7366, 1, 0, 0, 0, 7368, 7367, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7374, 7, 103, 0, 0, 7371, 7372, 5, 434, 0, 0, 7372, 7374, 5, 414, 0, 0, 7373, 7368, 1, 0, 0, 0, 7373, 7371, 1, 0, 0, 0, 7374, 713, 1, 0, 0, 0, 7375, 7383, 3, 716, 358, 0, 7376, 7377, 5, 2, 0, 0, 7377, 7378, 3, 730, 365, 0, 7378, 7379, 5, 6, 0, 0, 7379, 7380, 3, 674, 337, 0, 7380, 7381, 5, 3, 0, 0, 7381, 7383, 1, 0, 0, 0, 7382, 7375, 1, 0, 0, 0, 7382, 7376, 1, 0, 0, 0, 7383, 715, 1, 0, 0, 0, 7384, 7385, 5, 414, 0, 0, 7385, 7387, 5, 2, 0, 0, 7386, 7388, 3, 730, 365, 0, 7387, 7386, 1, 0, 0, 0, 7387, 7388, 1, 0, 0, 0, 7388, 7389, 1, 0, 0, 0, 7389, 7390, 5, 3, 0, 0, 7390, 717, 1, 0, 0, 0, 7391, 7392, 7, 104, 0, 0, 7392, 719, 1, 0, 0, 0, 7393, 7396, 5, 29, 0, 0, 7394, 7396, 3, 722, 361, 0, 7395, 7393, 1, 0, 0, 0, 7395, 7394, 1, 0, 0, 0, 7396, 721, 1, 0, 0, 0, 7397, 7398, 7, 105, 0, 0, 7398, 723, 1, 0, 0, 0, 7399, 7406, 5, 29, 0, 0, 7400, 7401, 5, 278, 0, 0, 7401, 7402, 5, 2, 0, 0, 7402, 7403, 3, 414, 207, 0, 7403, 7404, 5, 3, 0, 0, 7404, 7406, 1, 0, 0, 0, 7405, 7399, 1, 0, 0, 0, 7405, 7400, 1, 0, 0, 0, 7406, 725, 1, 0, 0, 0, 7407, 7414, 3, 720, 360, 0, 7408, 7409, 5, 278, 0, 0, 7409, 7410, 5, 2, 0, 0, 7410, 7411, 3, 414, 207, 0, 7411, 7412, 5, 3, 0, 0, 7412, 7414, 1, 0, 0, 0, 7413, 7407, 1, 0, 0, 0, 7413, 7408, 1, 0, 0, 0, 7414, 727, 1, 0, 0, 0, 7415, 7421, 3, 726, 363, 0, 7416, 7418, 5, 77, 0, 0, 7417, 7416, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 7419, 1, 0, 0, 0, 7419, 7421, 7, 106, 0, 0, 7420, 7415, 1, 0, 0, 0, 7420, 7417, 1, 0, 0, 0, 7421, 729, 1, 0, 0, 0, 7422, 7427, 3, 674, 337, 0, 7423, 7424, 5, 6, 0, 0, 7424, 7426, 3, 674, 337, 0, 7425, 7423, 1, 0, 0, 0, 7426, 7429, 1, 0, 0, 0, 7427, 7425, 1, 0, 0, 0, 7427, 7428, 1, 0, 0, 0, 7428, 731, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7430, 7431, 5, 2, 0, 0, 7431, 7432, 3, 674, 337, 0, 7432, 7433, 5, 3, 0, 0, 7433, 7436, 1, 0, 0, 0, 7434, 7436, 3, 800, 400, 0, 7435, 7430, 1, 0, 0, 0, 7435, 7434, 1, 0, 0, 0, 7436, 733, 1, 0, 0, 0, 7437, 7440, 3, 674, 337, 0, 7438, 7440, 3, 800, 400, 0, 7439, 7437, 1, 0, 0, 0, 7439, 7438, 1, 0, 0, 0, 7440, 735, 1, 0, 0, 0, 7441, 7446, 3, 738, 369, 0, 7442, 7443, 5, 6, 0, 0, 7443, 7445, 3, 738, 369, 0, 7444, 7442, 1, 0, 0, 0, 7445, 7448, 1, 0, 0, 0, 7446, 7444, 1, 0, 0, 0, 7446, 7447, 1, 0, 0, 0, 7447, 737, 1, 0, 0, 0, 7448, 7446, 1, 0, 0, 0, 7449, 7456, 3, 674, 337, 0, 7450, 7453, 3, 820, 410, 0, 7451, 7452, 7, 107, 0, 0, 7452, 7454, 3, 674, 337, 0, 7453, 7451, 1, 0, 0, 0, 7453, 7454, 1, 0, 0, 0, 7454, 7456, 1, 0, 0, 0, 7455, 7449, 1, 0, 0, 0, 7455, 7450, 1, 0, 0, 0, 7456, 739, 1, 0, 0, 0, 7457, 7467, 5, 4, 0, 0, 7458, 7468, 3, 730, 365, 0, 7459, 7464, 3, 740, 370, 0, 7460, 7461, 5, 6, 0, 0, 7461, 7463, 3, 740, 370, 0, 7462, 7460, 1, 0, 0, 0, 7463, 7466, 1, 0, 0, 0, 7464, 7462, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7468, 1, 0, 0, 0, 7466, 7464, 1, 0, 0, 0, 7467, 7458, 1, 0, 0, 0, 7467, 7459, 1, 0, 0, 0, 7467, 7468, 1, 0, 0, 0, 7468, 7469, 1, 0, 0, 0, 7469, 7470, 5, 5, 0, 0, 7470, 741, 1, 0, 0, 0, 7471, 7480, 3, 826, 413, 0, 7472, 7480, 5, 384, 0, 0, 7473, 7480, 5, 264, 0, 0, 7474, 7480, 5, 176, 0, 0, 7475, 7480, 5, 218, 0, 0, 7476, 7480, 5, 261, 0, 0, 7477, 7480, 5, 326, 0, 0, 7478, 7480, 3, 808, 404, 0, 7479, 7471, 1, 0, 0, 0, 7479, 7472, 1, 0, 0, 0, 7479, 7473, 1, 0, 0, 0, 7479, 7474, 1, 0, 0, 0, 7479, 7475, 1, 0, 0, 0, 7479, 7476, 1, 0, 0, 0, 7479, 7477, 1, 0, 0, 0, 7479, 7478, 1, 0, 0, 0, 7480, 743, 1, 0, 0, 0, 7481, 7482, 7, 108, 0, 0, 7482, 745, 1, 0, 0, 0, 7483, 7484, 3, 674, 337, 0, 7484, 7485, 5, 64, 0, 0, 7485, 7488, 3, 674, 337, 0, 7486, 7487, 5, 62, 0, 0, 7487, 7489, 3, 674, 337, 0, 7488, 7486, 1, 0, 0, 0, 7488, 7489, 1, 0, 0, 0, 7489, 7505, 1, 0, 0, 0, 7490, 7491, 3, 674, 337, 0, 7491, 7492, 5, 62, 0, 0, 7492, 7495, 3, 674, 337, 0, 7493, 7494, 5, 64, 0, 0, 7494, 7496, 3, 674, 337, 0, 7495, 7493, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7505, 1, 0, 0, 0, 7497, 7498, 3, 674, 337, 0, 7498, 7499, 5, 127, 0, 0, 7499, 7500, 3, 674, 337, 0, 7500, 7501, 5, 197, 0, 0, 7501, 7502, 3, 674, 337, 0, 7502, 7505, 1, 0, 0, 0, 7503, 7505, 3, 730, 365, 0, 7504, 7483, 1, 0, 0, 0, 7504, 7490, 1, 0, 0, 0, 7504, 7497, 1, 0, 0, 0, 7504, 7503, 1, 0, 0, 0, 7505, 747, 1, 0, 0, 0, 7506, 7507, 5, 102, 0, 0, 7507, 7508, 3, 674, 337, 0, 7508, 7509, 5, 93, 0, 0, 7509, 7510, 3, 674, 337, 0, 7510, 749, 1, 0, 0, 0, 7511, 7514, 5, 11, 0, 0, 7512, 7515, 3, 824, 412, 0, 7513, 7515, 5, 9, 0, 0, 7514, 7512, 1, 0, 0, 0, 7514, 7513, 1, 0, 0, 0, 7515, 7529, 1, 0, 0, 0, 7516, 7525, 5, 4, 0, 0, 7517, 7526, 3, 674, 337, 0, 7518, 7520, 3, 674, 337, 0, 7519, 7518, 1, 0, 0, 0, 7519, 7520, 1, 0, 0, 0, 7520, 7521, 1, 0, 0, 0, 7521, 7523, 5, 8, 0, 0, 7522, 7524, 3, 674, 337, 0, 7523, 7522, 1, 0, 0, 0, 7523, 7524, 1, 0, 0, 0, 7524, 7526, 1, 0, 0, 0, 7525, 7517, 1, 0, 0, 0, 7525, 7519, 1, 0, 0, 0, 7526, 7527, 1, 0, 0, 0, 7527, 7529, 5, 5, 0, 0, 7528, 7511, 1, 0, 0, 0, 7528, 7516, 1, 0, 0, 0, 7529, 751, 1, 0, 0, 0, 7530, 7532, 3, 750, 375, 0, 7531, 7530, 1, 0, 0, 0, 7532, 7533, 1, 0, 0, 0, 7533, 7531, 1, 0, 0, 0, 7533, 7534, 1, 0, 0, 0, 7534, 753, 1, 0, 0, 0, 7535, 7537, 3, 750, 375, 0, 7536, 7535, 1, 0, 0, 0, 7537, 7540, 1, 0, 0, 0, 7538, 7536, 1, 0, 0, 0, 7538, 7539, 1, 0, 0, 0, 7539, 755, 1, 0, 0, 0, 7540, 7538, 1, 0, 0, 0, 7541, 7546, 3, 758, 379, 0, 7542, 7543, 5, 6, 0, 0, 7543, 7545, 3, 758, 379, 0, 7544, 7542, 1, 0, 0, 0, 7545, 7548, 1, 0, 0, 0, 7546, 7544, 1, 0, 0, 0, 7546, 7547, 1, 0, 0, 0, 7547, 757, 1, 0, 0, 0, 7548, 7546, 1, 0, 0, 0, 7549, 7554, 3, 734, 367, 0, 7550, 7551, 5, 36, 0, 0, 7551, 7555, 3, 824, 412, 0, 7552, 7555, 3, 826, 413, 0, 7553, 7555, 1, 0, 0, 0, 7554, 7550, 1, 0, 0, 0, 7554, 7552, 1, 0, 0, 0, 7554, 7553, 1, 0, 0, 0, 7555, 7558, 1, 0, 0, 0, 7556, 7558, 5, 9, 0, 0, 7557, 7549, 1, 0, 0, 0, 7557, 7556, 1, 0, 0, 0, 7558, 759, 1, 0, 0, 0, 7559, 7564, 3, 780, 390, 0, 7560, 7561, 5, 6, 0, 0, 7561, 7563, 3, 780, 390, 0, 7562, 7560, 1, 0, 0, 0, 7563, 7566, 1, 0, 0, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7565, 1, 0, 0, 0, 7565, 761, 1, 0, 0, 0, 7566, 7564, 1, 0, 0, 0, 7567, 7572, 3, 774, 387, 0, 7568, 7569, 5, 6, 0, 0, 7569, 7571, 3, 774, 387, 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, 763, 1, 0, 0, 0, 7574, 7572, 1, 0, 0, 0, 7575, 7580, 3, 790, 395, 0, 7576, 7577, 5, 6, 0, 0, 7577, 7579, 3, 790, 395, 0, 7578, 7576, 1, 0, 0, 0, 7579, 7582, 1, 0, 0, 0, 7580, 7578, 1, 0, 0, 0, 7580, 7581, 1, 0, 0, 0, 7581, 765, 1, 0, 0, 0, 7582, 7580, 1, 0, 0, 0, 7583, 7588, 3, 788, 394, 0, 7584, 7585, 5, 6, 0, 0, 7585, 7587, 3, 788, 394, 0, 7586, 7584, 1, 0, 0, 0, 7587, 7590, 1, 0, 0, 0, 7588, 7586, 1, 0, 0, 0, 7588, 7589, 1, 0, 0, 0, 7589, 767, 1, 0, 0, 0, 7590, 7588, 1, 0, 0, 0, 7591, 7592, 3, 780, 390, 0, 7592, 769, 1, 0, 0, 0, 7593, 7594, 3, 780, 390, 0, 7594, 771, 1, 0, 0, 0, 7595, 7596, 3, 780, 390, 0, 7596, 773, 1, 0, 0, 0, 7597, 7598, 3, 780, 390, 0, 7598, 775, 1, 0, 0, 0, 7599, 7600, 3, 780, 390, 0, 7600, 777, 1, 0, 0, 0, 7601, 7602, 3, 316, 158, 0, 7602, 779, 1, 0, 0, 0, 7603, 7605, 3, 818, 409, 0, 7604, 7606, 3, 752, 376, 0, 7605, 7604, 1, 0, 0, 0, 7605, 7606, 1, 0, 0, 0, 7606, 781, 1, 0, 0, 0, 7607, 7612, 3, 770, 385, 0, 7608, 7609, 5, 6, 0, 0, 7609, 7611, 3, 770, 385, 0, 7610, 7608, 1, 0, 0, 0, 7611, 7614, 1, 0, 0, 0, 7612, 7610, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 783, 1, 0, 0, 0, 7614, 7612, 1, 0, 0, 0, 7615, 7620, 3, 818, 409, 0, 7616, 7617, 5, 6, 0, 0, 7617, 7619, 3, 818, 409, 0, 7618, 7616, 1, 0, 0, 0, 7619, 7622, 1, 0, 0, 0, 7620, 7618, 1, 0, 0, 0, 7620, 7621, 1, 0, 0, 0, 7621, 785, 1, 0, 0, 0, 7622, 7620, 1, 0, 0, 0, 7623, 7624, 3, 316, 158, 0, 7624, 787, 1, 0, 0, 0, 7625, 7626, 3, 316, 158, 0, 7626, 789, 1, 0, 0, 0, 7627, 7628, 3, 316, 158, 0, 7628, 791, 1, 0, 0, 0, 7629, 7630, 3, 818, 409, 0, 7630, 793, 1, 0, 0, 0, 7631, 7632, 3, 818, 409, 0, 7632, 795, 1, 0, 0, 0, 7633, 7638, 3, 820, 410, 0, 7634, 7635, 3, 818, 409, 0, 7635, 7636, 3, 752, 376, 0, 7636, 7638, 1, 0, 0, 0, 7637, 7633, 1, 0, 0, 0, 7637, 7634, 1, 0, 0, 0, 7638, 797, 1, 0, 0, 0, 7639, 7644, 3, 820, 410, 0, 7640, 7641, 3, 818, 409, 0, 7641, 7642, 3, 752, 376, 0, 7642, 7644, 1, 0, 0, 0, 7643, 7639, 1, 0, 0, 0, 7643, 7640, 1, 0, 0, 0, 7644, 799, 1, 0, 0, 0, 7645, 7646, 3, 818, 409, 0, 7646, 7647, 3, 754, 377, 0, 7647, 7650, 1, 0, 0, 0, 7648, 7650, 4, 400, 10, 0, 7649, 7645, 1, 0, 0, 0, 7649, 7648, 1, 0, 0, 0, 7650, 801, 1, 0, 0, 0, 7651, 7652, 3, 818, 409, 0, 7652, 803, 1, 0, 0, 0, 7653, 7658, 3, 820, 410, 0, 7654, 7655, 3, 818, 409, 0, 7655, 7656, 3, 752, 376, 0, 7656, 7658, 1, 0, 0, 0, 7657, 7653, 1, 0, 0, 0, 7657, 7654, 1, 0, 0, 0, 7658, 805, 1, 0, 0, 0, 7659, 7664, 3, 820, 410, 0, 7660, 7661, 3, 818, 409, 0, 7661, 7662, 3, 752, 376, 0, 7662, 7664, 1, 0, 0, 0, 7663, 7659, 1, 0, 0, 0, 7663, 7660, 1, 0, 0, 0, 7664, 807, 1, 0, 0, 0, 7665, 7668, 3, 810, 405, 0, 7666, 7667, 5, 487, 0, 0, 7667, 7669, 3, 810, 405, 0, 7668, 7666, 1, 0, 0, 0, 7668, 7669, 1, 0, 0, 0, 7669, 809, 1, 0, 0, 0, 7670, 7682, 5, 558, 0, 0, 7671, 7682, 5, 560, 0, 0, 7672, 7676, 5, 562, 0, 0, 7673, 7675, 5, 588, 0, 0, 7674, 7673, 1, 0, 0, 0, 7675, 7678, 1, 0, 0, 0, 7676, 7674, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7679, 1, 0, 0, 0, 7678, 7676, 1, 0, 0, 0, 7679, 7682, 5, 589, 0, 0, 7680, 7682, 5, 584, 0, 0, 7681, 7670, 1, 0, 0, 0, 7681, 7671, 1, 0, 0, 0, 7681, 7672, 1, 0, 0, 0, 7681, 7680, 1, 0, 0, 0, 7682, 811, 1, 0, 0, 0, 7683, 7685, 7, 29, 0, 0, 7684, 7683, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7686, 1, 0, 0, 0, 7686, 7687, 5, 571, 0, 0, 7687, 813, 1, 0, 0, 0, 7688, 7694, 3, 822, 411, 0, 7689, 7694, 5, 52, 0, 0, 7690, 7694, 5, 49, 0, 0, 7691, 7694, 5, 89, 0, 0, 7692, 7694, 5, 524, 0, 0, 7693, 7688, 1, 0, 0, 0, 7693, 7689, 1, 0, 0, 0, 7693, 7690, 1, 0, 0, 0, 7693, 7691, 1, 0, 0, 0, 7693, 7692, 1, 0, 0, 0, 7694, 815, 1, 0, 0, 0, 7695, 7700, 3, 814, 407, 0, 7696, 7697, 5, 6, 0, 0, 7697, 7699, 3, 814, 407, 0, 7698, 7696, 1, 0, 0, 0, 7699, 7702, 1, 0, 0, 0, 7700, 7698, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, 817, 1, 0, 0, 0, 7702, 7700, 1, 0, 0, 0, 7703, 7706, 3, 826, 413, 0, 7704, 7706, 3, 830, 415, 0, 7705, 7703, 1, 0, 0, 0, 7705, 7704, 1, 0, 0, 0, 7706, 819, 1, 0, 0, 0, 7707, 7710, 3, 826, 413, 0, 7708, 7710, 3, 832, 416, 0, 7709, 7707, 1, 0, 0, 0, 7709, 7708, 1, 0, 0, 0, 7710, 821, 1, 0, 0, 0, 7711, 7715, 3, 826, 413, 0, 7712, 7715, 3, 830, 415, 0, 7713, 7715, 3, 832, 416, 0, 7714, 7711, 1, 0, 0, 0, 7714, 7712, 1, 0, 0, 0, 7714, 7713, 1, 0, 0, 0, 7715, 823, 1, 0, 0, 0, 7716, 7721, 3, 826, 413, 0, 7717, 7721, 3, 830, 415, 0, 7718, 7721, 3, 832, 416, 0, 7719, 7721, 3, 834, 417, 0, 7720, 7716, 1, 0, 0, 0, 7720, 7717, 1, 0, 0, 0, 7720, 7718, 1, 0, 0, 0, 7720, 7719, 1, 0, 0, 0, 7721, 825, 1, 0, 0, 0, 7722, 7725, 5, 549, 0, 0, 7723, 7724, 5, 487, 0, 0, 7724, 7726, 3, 810, 405, 0, 7725, 7723, 1, 0, 0, 0, 7725, 7726, 1, 0, 0, 0, 7726, 7734, 1, 0, 0, 0, 7727, 7734, 3, 808, 404, 0, 7728, 7734, 5, 550, 0, 0, 7729, 7734, 5, 554, 0, 0, 7730, 7734, 5, 574, 0, 0, 7731, 7734, 5, 575, 0, 0, 7732, 7734, 3, 828, 414, 0, 7733, 7722, 1, 0, 0, 0, 7733, 7727, 1, 0, 0, 0, 7733, 7728, 1, 0, 0, 0, 7733, 7729, 1, 0, 0, 0, 7733, 7730, 1, 0, 0, 0, 7733, 7731, 1, 0, 0, 0, 7733, 7732, 1, 0, 0, 0, 7734, 827, 1, 0, 0, 0, 7735, 7736, 7, 109, 0, 0, 7736, 829, 1, 0, 0, 0, 7737, 7789, 5, 387, 0, 0, 7738, 7789, 5, 388, 0, 0, 7739, 7789, 3, 662, 331, 0, 7740, 7789, 5, 390, 0, 0, 7741, 7789, 5, 391, 0, 0, 7742, 7789, 3, 664, 332, 0, 7743, 7789, 5, 393, 0, 0, 7744, 7789, 5, 394, 0, 0, 7745, 7789, 5, 395, 0, 0, 7746, 7789, 5, 396, 0, 0, 7747, 7789, 5, 397, 0, 0, 7748, 7789, 5, 398, 0, 0, 7749, 7789, 5, 399, 0, 0, 7750, 7789, 5, 470, 0, 0, 7751, 7789, 5, 400, 0, 0, 7752, 7789, 5, 401, 0, 0, 7753, 7789, 5, 402, 0, 0, 7754, 7789, 5, 403, 0, 0, 7755, 7789, 5, 404, 0, 0, 7756, 7789, 5, 405, 0, 0, 7757, 7789, 5, 406, 0, 0, 7758, 7789, 5, 407, 0, 0, 7759, 7789, 5, 489, 0, 0, 7760, 7789, 5, 408, 0, 0, 7761, 7789, 3, 658, 329, 0, 7762, 7789, 5, 453, 0, 0, 7763, 7789, 5, 410, 0, 0, 7764, 7789, 5, 411, 0, 0, 7765, 7789, 5, 412, 0, 0, 7766, 7789, 5, 413, 0, 0, 7767, 7789, 5, 414, 0, 0, 7768, 7789, 5, 415, 0, 0, 7769, 7789, 5, 416, 0, 0, 7770, 7789, 5, 417, 0, 0, 7771, 7789, 5, 418, 0, 0, 7772, 7789, 5, 419, 0, 0, 7773, 7789, 5, 420, 0, 0, 7774, 7789, 5, 421, 0, 0, 7775, 7789, 5, 422, 0, 0, 7776, 7789, 5, 423, 0, 0, 7777, 7789, 5, 424, 0, 0, 7778, 7789, 5, 425, 0, 0, 7779, 7789, 5, 426, 0, 0, 7780, 7789, 5, 427, 0, 0, 7781, 7789, 5, 428, 0, 0, 7782, 7789, 5, 476, 0, 0, 7783, 7789, 5, 429, 0, 0, 7784, 7789, 5, 430, 0, 0, 7785, 7789, 5, 431, 0, 0, 7786, 7789, 5, 432, 0, 0, 7787, 7789, 5, 474, 0, 0, 7788, 7737, 1, 0, 0, 0, 7788, 7738, 1, 0, 0, 0, 7788, 7739, 1, 0, 0, 0, 7788, 7740, 1, 0, 0, 0, 7788, 7741, 1, 0, 0, 0, 7788, 7742, 1, 0, 0, 0, 7788, 7743, 1, 0, 0, 0, 7788, 7744, 1, 0, 0, 0, 7788, 7745, 1, 0, 0, 0, 7788, 7746, 1, 0, 0, 0, 7788, 7747, 1, 0, 0, 0, 7788, 7748, 1, 0, 0, 0, 7788, 7749, 1, 0, 0, 0, 7788, 7750, 1, 0, 0, 0, 7788, 7751, 1, 0, 0, 0, 7788, 7752, 1, 0, 0, 0, 7788, 7753, 1, 0, 0, 0, 7788, 7754, 1, 0, 0, 0, 7788, 7755, 1, 0, 0, 0, 7788, 7756, 1, 0, 0, 0, 7788, 7757, 1, 0, 0, 0, 7788, 7758, 1, 0, 0, 0, 7788, 7759, 1, 0, 0, 0, 7788, 7760, 1, 0, 0, 0, 7788, 7761, 1, 0, 0, 0, 7788, 7762, 1, 0, 0, 0, 7788, 7763, 1, 0, 0, 0, 7788, 7764, 1, 0, 0, 0, 7788, 7765, 1, 0, 0, 0, 7788, 7766, 1, 0, 0, 0, 7788, 7767, 1, 0, 0, 0, 7788, 7768, 1, 0, 0, 0, 7788, 7769, 1, 0, 0, 0, 7788, 7770, 1, 0, 0, 0, 7788, 7771, 1, 0, 0, 0, 7788, 7772, 1, 0, 0, 0, 7788, 7773, 1, 0, 0, 0, 7788, 7774, 1, 0, 0, 0, 7788, 7775, 1, 0, 0, 0, 7788, 7776, 1, 0, 0, 0, 7788, 7777, 1, 0, 0, 0, 7788, 7778, 1, 0, 0, 0, 7788, 7779, 1, 0, 0, 0, 7788, 7780, 1, 0, 0, 0, 7788, 7781, 1, 0, 0, 0, 7788, 7782, 1, 0, 0, 0, 7788, 7783, 1, 0, 0, 0, 7788, 7784, 1, 0, 0, 0, 7788, 7785, 1, 0, 0, 0, 7788, 7786, 1, 0, 0, 0, 7788, 7787, 1, 0, 0, 0, 7789, 831, 1, 0, 0, 0, 7790, 7791, 7, 110, 0, 0, 7791, 833, 1, 0, 0, 0, 7792, 7793, 7, 111, 0, 0, 7793, 835, 1, 0, 0, 0, 7794, 7796, 3, 838, 419, 0, 7795, 7794, 1, 0, 0, 0, 7795, 7796, 1, 0, 0, 0, 7796, 7807, 1, 0, 0, 0, 7797, 7805, 5, 178, 0, 0, 7798, 7802, 3, 840, 420, 0, 7799, 7802, 5, 178, 0, 0, 7800, 7802, 3, 838, 419, 0, 7801, 7798, 1, 0, 0, 0, 7801, 7799, 1, 0, 0, 0, 7801, 7800, 1, 0, 0, 0, 7802, 7803, 1, 0, 0, 0, 7803, 7801, 1, 0, 0, 0, 7803, 7804, 1, 0, 0, 0, 7804, 7806, 1, 0, 0, 0, 7805, 7801, 1, 0, 0, 0, 7805, 7806, 1, 0, 0, 0, 7806, 7808, 1, 0, 0, 0, 7807, 7797, 1, 0, 0, 0, 7807, 7808, 1, 0, 0, 0, 7808, 7809, 1, 0, 0, 0, 7809, 7813, 5, 146, 0, 0, 7810, 7812, 3, 846, 423, 0, 7811, 7810, 1, 0, 0, 0, 7812, 7815, 1, 0, 0, 0, 7813, 7811, 1, 0, 0, 0, 7813, 7814, 1, 0, 0, 0, 7814, 7817, 1, 0, 0, 0, 7815, 7813, 1, 0, 0, 0, 7816, 7818, 3, 924, 462, 0, 7817, 7816, 1, 0, 0, 0, 7817, 7818, 1, 0, 0, 0, 7818, 7819, 1, 0, 0, 0, 7819, 7821, 5, 454, 0, 0, 7820, 7822, 3, 928, 464, 0, 7821, 7820, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 837, 1, 0, 0, 0, 7823, 7824, 5, 18, 0, 0, 7824, 7825, 3, 928, 464, 0, 7825, 7826, 5, 19, 0, 0, 7826, 839, 1, 0, 0, 0, 7827, 7874, 3, 928, 464, 0, 7828, 7829, 5, 496, 0, 0, 7829, 7832, 5, 62, 0, 0, 7830, 7833, 5, 28, 0, 0, 7831, 7833, 3, 818, 409, 0, 7832, 7830, 1, 0, 0, 0, 7832, 7831, 1, 0, 0, 0, 7833, 7875, 1, 0, 0, 0, 7834, 7836, 5, 497, 0, 0, 7835, 7834, 1, 0, 0, 0, 7835, 7836, 1, 0, 0, 0, 7836, 7837, 1, 0, 0, 0, 7837, 7839, 3, 652, 326, 0, 7838, 7840, 3, 98, 49, 0, 7839, 7838, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7843, 1, 0, 0, 0, 7841, 7842, 5, 77, 0, 0, 7842, 7844, 5, 78, 0, 0, 7843, 7841, 1, 0, 0, 0, 7843, 7844, 1, 0, 0, 0, 7844, 7850, 1, 0, 0, 0, 7845, 7848, 3, 844, 422, 0, 7846, 7848, 5, 53, 0, 0, 7847, 7845, 1, 0, 0, 0, 7847, 7846, 1, 0, 0, 0, 7848, 7849, 1, 0, 0, 0, 7849, 7851, 3, 930, 465, 0, 7850, 7847, 1, 0, 0, 0, 7850, 7851, 1, 0, 0, 0, 7851, 7875, 1, 0, 0, 0, 7852, 7854, 5, 269, 0, 0, 7853, 7852, 1, 0, 0, 0, 7853, 7854, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 7857, 5, 324, 0, 0, 7856, 7853, 1, 0, 0, 0, 7856, 7857, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 7870, 5, 172, 0, 0, 7859, 7860, 5, 2, 0, 0, 7860, 7865, 3, 842, 421, 0, 7861, 7862, 5, 6, 0, 0, 7862, 7864, 3, 842, 421, 0, 7863, 7861, 1, 0, 0, 0, 7864, 7867, 1, 0, 0, 0, 7865, 7863, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7868, 1, 0, 0, 0, 7867, 7865, 1, 0, 0, 0, 7868, 7869, 5, 3, 0, 0, 7869, 7871, 1, 0, 0, 0, 7870, 7859, 1, 0, 0, 0, 7870, 7871, 1, 0, 0, 0, 7871, 7872, 1, 0, 0, 0, 7872, 7873, 7, 112, 0, 0, 7873, 7875, 3, 560, 280, 0, 7874, 7828, 1, 0, 0, 0, 7874, 7835, 1, 0, 0, 0, 7874, 7856, 1, 0, 0, 0, 7875, 7876, 1, 0, 0, 0, 7876, 7877, 5, 7, 0, 0, 7877, 841, 1, 0, 0, 0, 7878, 7879, 3, 928, 464, 0, 7879, 7880, 3, 652, 326, 0, 7880, 843, 1, 0, 0, 0, 7881, 7882, 7, 113, 0, 0, 7882, 845, 1, 0, 0, 0, 7883, 7884, 3, 836, 418, 0, 7884, 7885, 5, 7, 0, 0, 7885, 7908, 1, 0, 0, 0, 7886, 7908, 3, 874, 437, 0, 7887, 7908, 3, 876, 438, 0, 7888, 7908, 3, 852, 426, 0, 7889, 7908, 3, 860, 430, 0, 7890, 7908, 3, 864, 432, 0, 7891, 7908, 3, 866, 433, 0, 7892, 7908, 3, 870, 435, 0, 7893, 7908, 3, 872, 436, 0, 7894, 7908, 3, 880, 440, 0, 7895, 7908, 3, 884, 442, 0, 7896, 7908, 3, 886, 443, 0, 7897, 7908, 3, 848, 424, 0, 7898, 7908, 3, 850, 425, 0, 7899, 7908, 3, 854, 427, 0, 7900, 7908, 3, 890, 445, 0, 7901, 7908, 3, 894, 447, 0, 7902, 7908, 3, 898, 449, 0, 7903, 7908, 3, 914, 457, 0, 7904, 7908, 3, 916, 458, 0, 7905, 7908, 3, 918, 459, 0, 7906, 7908, 3, 920, 460, 0, 7907, 7883, 1, 0, 0, 0, 7907, 7886, 1, 0, 0, 0, 7907, 7887, 1, 0, 0, 0, 7907, 7888, 1, 0, 0, 0, 7907, 7889, 1, 0, 0, 0, 7907, 7890, 1, 0, 0, 0, 7907, 7891, 1, 0, 0, 0, 7907, 7892, 1, 0, 0, 0, 7907, 7893, 1, 0, 0, 0, 7907, 7894, 1, 0, 0, 0, 7907, 7895, 1, 0, 0, 0, 7907, 7896, 1, 0, 0, 0, 7907, 7897, 1, 0, 0, 0, 7907, 7898, 1, 0, 0, 0, 7907, 7899, 1, 0, 0, 0, 7907, 7900, 1, 0, 0, 0, 7907, 7901, 1, 0, 0, 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, 847, 1, 0, 0, 0, 7909, 7910, 5, 498, 0, 0, 7910, 7911, 3, 930, 465, 0, 7911, 7912, 5, 7, 0, 0, 7912, 849, 1, 0, 0, 0, 7913, 7914, 5, 433, 0, 0, 7914, 7921, 3, 928, 464, 0, 7915, 7917, 5, 2, 0, 0, 7916, 7918, 3, 730, 365, 0, 7917, 7916, 1, 0, 0, 0, 7917, 7918, 1, 0, 0, 0, 7918, 7919, 1, 0, 0, 0, 7919, 7920, 5, 3, 0, 0, 7920, 7922, 5, 7, 0, 0, 7921, 7915, 1, 0, 0, 0, 7921, 7922, 1, 0, 0, 0, 7922, 7933, 1, 0, 0, 0, 7923, 7924, 5, 57, 0, 0, 7924, 7925, 3, 928, 464, 0, 7925, 7927, 5, 2, 0, 0, 7926, 7928, 3, 730, 365, 0, 7927, 7926, 1, 0, 0, 0, 7927, 7928, 1, 0, 0, 0, 7928, 7929, 1, 0, 0, 0, 7929, 7930, 5, 3, 0, 0, 7930, 7931, 5, 7, 0, 0, 7931, 7933, 1, 0, 0, 0, 7932, 7913, 1, 0, 0, 0, 7932, 7923, 1, 0, 0, 0, 7933, 851, 1, 0, 0, 0, 7934, 7935, 3, 858, 429, 0, 7935, 7936, 3, 844, 422, 0, 7936, 7937, 3, 930, 465, 0, 7937, 7938, 5, 7, 0, 0, 7938, 853, 1, 0, 0, 0, 7939, 7941, 5, 499, 0, 0, 7940, 7942, 7, 114, 0, 0, 7941, 7940, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7943, 1, 0, 0, 0, 7943, 7944, 5, 500, 0, 0, 7944, 7949, 3, 856, 428, 0, 7945, 7946, 5, 6, 0, 0, 7946, 7948, 3, 856, 428, 0, 7947, 7945, 1, 0, 0, 0, 7948, 7951, 1, 0, 0, 0, 7949, 7947, 1, 0, 0, 0, 7949, 7950, 1, 0, 0, 0, 7950, 7952, 1, 0, 0, 0, 7951, 7949, 1, 0, 0, 0, 7952, 7953, 5, 7, 0, 0, 7953, 855, 1, 0, 0, 0, 7954, 7955, 3, 858, 429, 0, 7955, 7956, 3, 844, 422, 0, 7956, 7957, 3, 818, 409, 0, 7957, 857, 1, 0, 0, 0, 7958, 7961, 3, 316, 158, 0, 7959, 7961, 5, 28, 0, 0, 7960, 7958, 1, 0, 0, 0, 7960, 7959, 1, 0, 0, 0, 7961, 7968, 1, 0, 0, 0, 7962, 7963, 5, 4, 0, 0, 7963, 7964, 3, 674, 337, 0, 7964, 7965, 5, 5, 0, 0, 7965, 7967, 1, 0, 0, 0, 7966, 7962, 1, 0, 0, 0, 7967, 7970, 1, 0, 0, 0, 7968, 7966, 1, 0, 0, 0, 7968, 7969, 1, 0, 0, 0, 7969, 859, 1, 0, 0, 0, 7970, 7968, 1, 0, 0, 0, 7971, 7972, 5, 220, 0, 0, 7972, 7973, 3, 930, 465, 0, 7973, 7977, 5, 93, 0, 0, 7974, 7976, 3, 846, 423, 0, 7975, 7974, 1, 0, 0, 0, 7976, 7979, 1, 0, 0, 0, 7977, 7975, 1, 0, 0, 0, 7977, 7978, 1, 0, 0, 0, 7978, 7991, 1, 0, 0, 0, 7979, 7977, 1, 0, 0, 0, 7980, 7981, 5, 502, 0, 0, 7981, 7982, 3, 674, 337, 0, 7982, 7986, 5, 93, 0, 0, 7983, 7985, 3, 846, 423, 0, 7984, 7983, 1, 0, 0, 0, 7985, 7988, 1, 0, 0, 0, 7986, 7984, 1, 0, 0, 0, 7986, 7987, 1, 0, 0, 0, 7987, 7990, 1, 0, 0, 0, 7988, 7986, 1, 0, 0, 0, 7989, 7980, 1, 0, 0, 0, 7990, 7993, 1, 0, 0, 0, 7991, 7989, 1, 0, 0, 0, 7991, 7992, 1, 0, 0, 0, 7992, 7995, 1, 0, 0, 0, 7993, 7991, 1, 0, 0, 0, 7994, 7996, 3, 862, 431, 0, 7995, 7994, 1, 0, 0, 0, 7995, 7996, 1, 0, 0, 0, 7996, 7997, 1, 0, 0, 0, 7997, 7998, 5, 454, 0, 0, 7998, 7999, 5, 220, 0, 0, 7999, 8000, 5, 7, 0, 0, 8000, 861, 1, 0, 0, 0, 8001, 8005, 5, 58, 0, 0, 8002, 8004, 3, 846, 423, 0, 8003, 8002, 1, 0, 0, 0, 8004, 8007, 1, 0, 0, 0, 8005, 8003, 1, 0, 0, 0, 8005, 8006, 1, 0, 0, 0, 8006, 863, 1, 0, 0, 0, 8007, 8005, 1, 0, 0, 0, 8008, 8010, 5, 40, 0, 0, 8009, 8011, 3, 930, 465, 0, 8010, 8009, 1, 0, 0, 0, 8010, 8011, 1, 0, 0, 0, 8011, 8021, 1, 0, 0, 0, 8012, 8013, 5, 102, 0, 0, 8013, 8014, 3, 730, 365, 0, 8014, 8018, 5, 93, 0, 0, 8015, 8017, 3, 846, 423, 0, 8016, 8015, 1, 0, 0, 0, 8017, 8020, 1, 0, 0, 0, 8018, 8016, 1, 0, 0, 0, 8018, 8019, 1, 0, 0, 0, 8019, 8022, 1, 0, 0, 0, 8020, 8018, 1, 0, 0, 0, 8021, 8012, 1, 0, 0, 0, 8022, 8023, 1, 0, 0, 0, 8023, 8021, 1, 0, 0, 0, 8023, 8024, 1, 0, 0, 0, 8024, 8026, 1, 0, 0, 0, 8025, 8027, 3, 862, 431, 0, 8026, 8025, 1, 0, 0, 0, 8026, 8027, 1, 0, 0, 0, 8027, 8028, 1, 0, 0, 0, 8028, 8029, 5, 454, 0, 0, 8029, 8030, 5, 40, 0, 0, 8030, 8031, 5, 7, 0, 0, 8031, 865, 1, 0, 0, 0, 8032, 8034, 3, 838, 419, 0, 8033, 8032, 1, 0, 0, 0, 8033, 8034, 1, 0, 0, 0, 8034, 8039, 1, 0, 0, 0, 8035, 8036, 5, 503, 0, 0, 8036, 8040, 3, 674, 337, 0, 8037, 8038, 5, 62, 0, 0, 8038, 8040, 3, 868, 434, 0, 8039, 8035, 1, 0, 0, 0, 8039, 8037, 1, 0, 0, 0, 8039, 8040, 1, 0, 0, 0, 8040, 8041, 1, 0, 0, 0, 8041, 8042, 3, 882, 441, 0, 8042, 867, 1, 0, 0, 0, 8043, 8044, 3, 314, 157, 0, 8044, 8067, 5, 68, 0, 0, 8045, 8047, 3, 818, 409, 0, 8046, 8048, 3, 534, 267, 0, 8047, 8046, 1, 0, 0, 0, 8047, 8048, 1, 0, 0, 0, 8048, 8068, 1, 0, 0, 0, 8049, 8068, 3, 560, 280, 0, 8050, 8068, 3, 520, 260, 0, 8051, 8052, 5, 202, 0, 0, 8052, 8055, 3, 674, 337, 0, 8053, 8054, 5, 100, 0, 0, 8054, 8056, 3, 730, 365, 0, 8055, 8053, 1, 0, 0, 0, 8055, 8056, 1, 0, 0, 0, 8056, 8068, 1, 0, 0, 0, 8057, 8059, 5, 504, 0, 0, 8058, 8057, 1, 0, 0, 0, 8058, 8059, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8061, 3, 674, 337, 0, 8061, 8062, 5, 24, 0, 0, 8062, 8065, 3, 674, 337, 0, 8063, 8064, 5, 147, 0, 0, 8064, 8066, 3, 674, 337, 0, 8065, 8063, 1, 0, 0, 0, 8065, 8066, 1, 0, 0, 0, 8066, 8068, 1, 0, 0, 0, 8067, 8045, 1, 0, 0, 0, 8067, 8049, 1, 0, 0, 0, 8067, 8050, 1, 0, 0, 0, 8067, 8051, 1, 0, 0, 0, 8067, 8058, 1, 0, 0, 0, 8068, 869, 1, 0, 0, 0, 8069, 8071, 3, 838, 419, 0, 8070, 8069, 1, 0, 0, 0, 8070, 8071, 1, 0, 0, 0, 8071, 8072, 1, 0, 0, 0, 8072, 8073, 5, 505, 0, 0, 8073, 8076, 3, 314, 157, 0, 8074, 8075, 5, 506, 0, 0, 8075, 8077, 5, 571, 0, 0, 8076, 8074, 1, 0, 0, 0, 8076, 8077, 1, 0, 0, 0, 8077, 8078, 1, 0, 0, 0, 8078, 8079, 5, 68, 0, 0, 8079, 8080, 5, 35, 0, 0, 8080, 8081, 3, 674, 337, 0, 8081, 8082, 3, 882, 441, 0, 8082, 871, 1, 0, 0, 0, 8083, 8085, 7, 115, 0, 0, 8084, 8086, 3, 928, 464, 0, 8085, 8084, 1, 0, 0, 0, 8085, 8086, 1, 0, 0, 0, 8086, 8089, 1, 0, 0, 0, 8087, 8088, 5, 102, 0, 0, 8088, 8090, 3, 930, 465, 0, 8089, 8087, 1, 0, 0, 0, 8089, 8090, 1, 0, 0, 0, 8090, 8091, 1, 0, 0, 0, 8091, 8092, 5, 7, 0, 0, 8092, 873, 1, 0, 0, 0, 8093, 8108, 5, 508, 0, 0, 8094, 8095, 5, 268, 0, 0, 8095, 8109, 3, 930, 465, 0, 8096, 8103, 5, 509, 0, 0, 8097, 8098, 5, 202, 0, 0, 8098, 8099, 3, 674, 337, 0, 8099, 8100, 5, 100, 0, 0, 8100, 8101, 3, 730, 365, 0, 8101, 8104, 1, 0, 0, 0, 8102, 8104, 3, 560, 280, 0, 8103, 8097, 1, 0, 0, 0, 8103, 8102, 1, 0, 0, 0, 8104, 8109, 1, 0, 0, 0, 8105, 8107, 3, 930, 465, 0, 8106, 8105, 1, 0, 0, 0, 8106, 8107, 1, 0, 0, 0, 8107, 8109, 1, 0, 0, 0, 8108, 8094, 1, 0, 0, 0, 8108, 8096, 1, 0, 0, 0, 8108, 8106, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, 0, 8110, 8111, 5, 7, 0, 0, 8111, 875, 1, 0, 0, 0, 8112, 8142, 5, 510, 0, 0, 8113, 8115, 7, 116, 0, 0, 8114, 8113, 1, 0, 0, 0, 8114, 8115, 1, 0, 0, 0, 8115, 8128, 1, 0, 0, 0, 8116, 8129, 3, 826, 413, 0, 8117, 8118, 5, 511, 0, 0, 8118, 8129, 3, 808, 404, 0, 8119, 8126, 3, 808, 404, 0, 8120, 8121, 5, 6, 0, 0, 8121, 8123, 3, 674, 337, 0, 8122, 8120, 1, 0, 0, 0, 8123, 8124, 1, 0, 0, 0, 8124, 8122, 1, 0, 0, 0, 8124, 8125, 1, 0, 0, 0, 8125, 8127, 1, 0, 0, 0, 8126, 8122, 1, 0, 0, 0, 8126, 8127, 1, 0, 0, 0, 8127, 8129, 1, 0, 0, 0, 8128, 8116, 1, 0, 0, 0, 8128, 8117, 1, 0, 0, 0, 8128, 8119, 1, 0, 0, 0, 8128, 8129, 1, 0, 0, 0, 8129, 8139, 1, 0, 0, 0, 8130, 8131, 5, 100, 0, 0, 8131, 8136, 3, 878, 439, 0, 8132, 8133, 5, 6, 0, 0, 8133, 8135, 3, 878, 439, 0, 8134, 8132, 1, 0, 0, 0, 8135, 8138, 1, 0, 0, 0, 8136, 8134, 1, 0, 0, 0, 8136, 8137, 1, 0, 0, 0, 8137, 8140, 1, 0, 0, 0, 8138, 8136, 1, 0, 0, 0, 8139, 8130, 1, 0, 0, 0, 8139, 8140, 1, 0, 0, 0, 8140, 8141, 1, 0, 0, 0, 8141, 8143, 5, 7, 0, 0, 8142, 8114, 1, 0, 0, 0, 8142, 8143, 1, 0, 0, 0, 8143, 877, 1, 0, 0, 0, 8144, 8145, 3, 826, 413, 0, 8145, 8146, 5, 10, 0, 0, 8146, 8147, 3, 674, 337, 0, 8147, 879, 1, 0, 0, 0, 8148, 8149, 5, 518, 0, 0, 8149, 8152, 3, 930, 465, 0, 8150, 8151, 5, 6, 0, 0, 8151, 8153, 3, 930, 465, 0, 8152, 8150, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8154, 1, 0, 0, 0, 8154, 8155, 5, 7, 0, 0, 8155, 881, 1, 0, 0, 0, 8156, 8160, 5, 519, 0, 0, 8157, 8159, 3, 846, 423, 0, 8158, 8157, 1, 0, 0, 0, 8159, 8162, 1, 0, 0, 0, 8160, 8158, 1, 0, 0, 0, 8160, 8161, 1, 0, 0, 0, 8161, 8163, 1, 0, 0, 0, 8162, 8160, 1, 0, 0, 0, 8163, 8164, 5, 454, 0, 0, 8164, 8166, 5, 519, 0, 0, 8165, 8167, 3, 928, 464, 0, 8166, 8165, 1, 0, 0, 0, 8166, 8167, 1, 0, 0, 0, 8167, 8168, 1, 0, 0, 0, 8168, 8169, 5, 7, 0, 0, 8169, 883, 1, 0, 0, 0, 8170, 8172, 3, 4, 2, 0, 8171, 8173, 3, 888, 444, 0, 8172, 8171, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8174, 1, 0, 0, 0, 8174, 8175, 5, 7, 0, 0, 8175, 885, 1, 0, 0, 0, 8176, 8177, 5, 202, 0, 0, 8177, 8193, 3, 674, 337, 0, 8178, 8180, 3, 888, 444, 0, 8179, 8178, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8183, 1, 0, 0, 0, 8181, 8182, 5, 100, 0, 0, 8182, 8184, 3, 730, 365, 0, 8183, 8181, 1, 0, 0, 0, 8183, 8184, 1, 0, 0, 0, 8184, 8194, 1, 0, 0, 0, 8185, 8186, 5, 100, 0, 0, 8186, 8188, 3, 730, 365, 0, 8187, 8185, 1, 0, 0, 0, 8187, 8188, 1, 0, 0, 0, 8188, 8190, 1, 0, 0, 0, 8189, 8191, 3, 888, 444, 0, 8190, 8189, 1, 0, 0, 0, 8190, 8191, 1, 0, 0, 0, 8191, 8194, 1, 0, 0, 0, 8192, 8194, 1, 0, 0, 0, 8193, 8179, 1, 0, 0, 0, 8193, 8187, 1, 0, 0, 0, 8193, 8192, 1, 0, 0, 0, 8194, 8195, 1, 0, 0, 0, 8195, 8196, 5, 7, 0, 0, 8196, 887, 1, 0, 0, 0, 8197, 8199, 5, 71, 0, 0, 8198, 8200, 5, 346, 0, 0, 8199, 8198, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8201, 1, 0, 0, 0, 8201, 8202, 3, 730, 365, 0, 8202, 889, 1, 0, 0, 0, 8203, 8235, 5, 520, 0, 0, 8204, 8209, 3, 922, 461, 0, 8205, 8207, 5, 269, 0, 0, 8206, 8205, 1, 0, 0, 0, 8206, 8207, 1, 0, 0, 0, 8207, 8208, 1, 0, 0, 0, 8208, 8210, 5, 324, 0, 0, 8209, 8206, 1, 0, 0, 0, 8209, 8210, 1, 0, 0, 0, 8210, 8211, 1, 0, 0, 0, 8211, 8219, 5, 62, 0, 0, 8212, 8220, 3, 560, 280, 0, 8213, 8214, 5, 202, 0, 0, 8214, 8217, 3, 930, 465, 0, 8215, 8216, 5, 100, 0, 0, 8216, 8218, 3, 730, 365, 0, 8217, 8215, 1, 0, 0, 0, 8217, 8218, 1, 0, 0, 0, 8218, 8220, 1, 0, 0, 0, 8219, 8212, 1, 0, 0, 0, 8219, 8213, 1, 0, 0, 0, 8220, 8236, 1, 0, 0, 0, 8221, 8233, 3, 818, 409, 0, 8222, 8223, 5, 2, 0, 0, 8223, 8228, 3, 892, 446, 0, 8224, 8225, 5, 6, 0, 0, 8225, 8227, 3, 892, 446, 0, 8226, 8224, 1, 0, 0, 0, 8227, 8230, 1, 0, 0, 0, 8228, 8226, 1, 0, 0, 0, 8228, 8229, 1, 0, 0, 0, 8229, 8231, 1, 0, 0, 0, 8230, 8228, 1, 0, 0, 0, 8231, 8232, 5, 3, 0, 0, 8232, 8234, 1, 0, 0, 0, 8233, 8222, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8236, 1, 0, 0, 0, 8235, 8204, 1, 0, 0, 0, 8235, 8221, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8238, 5, 7, 0, 0, 8238, 891, 1, 0, 0, 0, 8239, 8240, 3, 818, 409, 0, 8240, 8241, 5, 20, 0, 0, 8241, 8243, 1, 0, 0, 0, 8242, 8239, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 8244, 1, 0, 0, 0, 8244, 8245, 3, 674, 337, 0, 8245, 893, 1, 0, 0, 0, 8246, 8248, 5, 61, 0, 0, 8247, 8249, 3, 896, 448, 0, 8248, 8247, 1, 0, 0, 0, 8248, 8249, 1, 0, 0, 0, 8249, 8251, 1, 0, 0, 0, 8250, 8252, 3, 332, 166, 0, 8251, 8250, 1, 0, 0, 0, 8251, 8252, 1, 0, 0, 0, 8252, 8253, 1, 0, 0, 0, 8253, 8254, 3, 922, 461, 0, 8254, 8255, 5, 71, 0, 0, 8255, 8256, 3, 730, 365, 0, 8256, 8257, 5, 7, 0, 0, 8257, 895, 1, 0, 0, 0, 8258, 8273, 5, 268, 0, 0, 8259, 8273, 5, 293, 0, 0, 8260, 8273, 5, 207, 0, 0, 8261, 8273, 5, 249, 0, 0, 8262, 8264, 7, 50, 0, 0, 8263, 8262, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, 8265, 1, 0, 0, 0, 8265, 8273, 3, 674, 337, 0, 8266, 8273, 5, 30, 0, 0, 8267, 8270, 7, 117, 0, 0, 8268, 8271, 3, 674, 337, 0, 8269, 8271, 5, 30, 0, 0, 8270, 8268, 1, 0, 0, 0, 8270, 8269, 1, 0, 0, 0, 8270, 8271, 1, 0, 0, 0, 8271, 8273, 1, 0, 0, 0, 8272, 8258, 1, 0, 0, 0, 8272, 8259, 1, 0, 0, 0, 8272, 8260, 1, 0, 0, 0, 8272, 8261, 1, 0, 0, 0, 8272, 8263, 1, 0, 0, 0, 8272, 8266, 1, 0, 0, 0, 8272, 8267, 1, 0, 0, 0, 8273, 897, 1, 0, 0, 0, 8274, 8276, 5, 265, 0, 0, 8275, 8277, 3, 896, 448, 0, 8276, 8275, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8278, 1, 0, 0, 0, 8278, 8279, 3, 922, 461, 0, 8279, 8280, 5, 7, 0, 0, 8280, 899, 1, 0, 0, 0, 8281, 8283, 3, 572, 286, 0, 8282, 8281, 1, 0, 0, 0, 8282, 8283, 1, 0, 0, 0, 8283, 8284, 1, 0, 0, 0, 8284, 8285, 5, 525, 0, 0, 8285, 8287, 5, 71, 0, 0, 8286, 8288, 5, 81, 0, 0, 8287, 8286, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 8289, 1, 0, 0, 0, 8289, 8291, 3, 774, 387, 0, 8290, 8292, 5, 9, 0, 0, 8291, 8290, 1, 0, 0, 0, 8291, 8292, 1, 0, 0, 0, 8292, 8297, 1, 0, 0, 0, 8293, 8295, 5, 36, 0, 0, 8294, 8293, 1, 0, 0, 0, 8294, 8295, 1, 0, 0, 0, 8295, 8296, 1, 0, 0, 0, 8296, 8298, 3, 818, 409, 0, 8297, 8294, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 8299, 1, 0, 0, 0, 8299, 8300, 5, 100, 0, 0, 8300, 8301, 3, 902, 451, 0, 8301, 8302, 5, 80, 0, 0, 8302, 8304, 3, 674, 337, 0, 8303, 8305, 3, 904, 452, 0, 8304, 8303, 1, 0, 0, 0, 8305, 8306, 1, 0, 0, 0, 8306, 8304, 1, 0, 0, 0, 8306, 8307, 1, 0, 0, 0, 8307, 901, 1, 0, 0, 0, 8308, 8310, 5, 81, 0, 0, 8309, 8308, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8313, 3, 774, 387, 0, 8312, 8314, 5, 9, 0, 0, 8313, 8312, 1, 0, 0, 0, 8313, 8314, 1, 0, 0, 0, 8314, 8320, 1, 0, 0, 0, 8315, 8318, 3, 564, 282, 0, 8316, 8318, 3, 608, 304, 0, 8317, 8315, 1, 0, 0, 0, 8317, 8316, 1, 0, 0, 0, 8318, 8320, 1, 0, 0, 0, 8319, 8309, 1, 0, 0, 0, 8319, 8317, 1, 0, 0, 0, 8320, 8325, 1, 0, 0, 0, 8321, 8323, 5, 36, 0, 0, 8322, 8321, 1, 0, 0, 0, 8322, 8323, 1, 0, 0, 0, 8323, 8324, 1, 0, 0, 0, 8324, 8326, 3, 818, 409, 0, 8325, 8322, 1, 0, 0, 0, 8325, 8326, 1, 0, 0, 0, 8326, 903, 1, 0, 0, 0, 8327, 8328, 5, 102, 0, 0, 8328, 8331, 5, 526, 0, 0, 8329, 8330, 5, 33, 0, 0, 8330, 8332, 3, 674, 337, 0, 8331, 8329, 1, 0, 0, 0, 8331, 8332, 1, 0, 0, 0, 8332, 8333, 1, 0, 0, 0, 8333, 8338, 5, 93, 0, 0, 8334, 8339, 3, 908, 454, 0, 8335, 8339, 5, 182, 0, 0, 8336, 8337, 5, 57, 0, 0, 8337, 8339, 5, 270, 0, 0, 8338, 8334, 1, 0, 0, 0, 8338, 8335, 1, 0, 0, 0, 8338, 8336, 1, 0, 0, 0, 8339, 8354, 1, 0, 0, 0, 8340, 8341, 5, 102, 0, 0, 8341, 8342, 5, 77, 0, 0, 8342, 8345, 5, 526, 0, 0, 8343, 8344, 5, 33, 0, 0, 8344, 8346, 3, 674, 337, 0, 8345, 8343, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8351, 5, 93, 0, 0, 8348, 8352, 3, 906, 453, 0, 8349, 8350, 5, 57, 0, 0, 8350, 8352, 5, 270, 0, 0, 8351, 8348, 1, 0, 0, 0, 8351, 8349, 1, 0, 0, 0, 8352, 8354, 1, 0, 0, 0, 8353, 8327, 1, 0, 0, 0, 8353, 8340, 1, 0, 0, 0, 8354, 905, 1, 0, 0, 0, 8355, 8357, 5, 241, 0, 0, 8356, 8358, 3, 144, 72, 0, 8357, 8356, 1, 0, 0, 0, 8357, 8358, 1, 0, 0, 0, 8358, 8362, 1, 0, 0, 0, 8359, 8360, 5, 463, 0, 0, 8360, 8361, 7, 76, 0, 0, 8361, 8363, 5, 450, 0, 0, 8362, 8359, 1, 0, 0, 0, 8362, 8363, 1, 0, 0, 0, 8363, 8364, 1, 0, 0, 0, 8364, 8365, 3, 910, 455, 0, 8365, 907, 1, 0, 0, 0, 8366, 8367, 5, 369, 0, 0, 8367, 8385, 5, 333, 0, 0, 8368, 8369, 3, 800, 400, 0, 8369, 8370, 5, 10, 0, 0, 8370, 8371, 3, 912, 456, 0, 8371, 8386, 1, 0, 0, 0, 8372, 8373, 3, 144, 72, 0, 8373, 8374, 5, 10, 0, 0, 8374, 8375, 5, 2, 0, 0, 8375, 8380, 3, 912, 456, 0, 8376, 8377, 5, 6, 0, 0, 8377, 8379, 3, 912, 456, 0, 8378, 8376, 1, 0, 0, 0, 8379, 8382, 1, 0, 0, 0, 8380, 8378, 1, 0, 0, 0, 8380, 8381, 1, 0, 0, 0, 8381, 8383, 1, 0, 0, 0, 8382, 8380, 1, 0, 0, 0, 8383, 8384, 5, 3, 0, 0, 8384, 8386, 1, 0, 0, 0, 8385, 8368, 1, 0, 0, 0, 8385, 8372, 1, 0, 0, 0, 8386, 8387, 1, 0, 0, 0, 8387, 8385, 1, 0, 0, 0, 8387, 8388, 1, 0, 0, 0, 8388, 909, 1, 0, 0, 0, 8389, 8390, 5, 422, 0, 0, 8390, 8391, 5, 2, 0, 0, 8391, 8396, 3, 912, 456, 0, 8392, 8393, 5, 6, 0, 0, 8393, 8395, 3, 912, 456, 0, 8394, 8392, 1, 0, 0, 0, 8395, 8398, 1, 0, 0, 0, 8396, 8394, 1, 0, 0, 0, 8396, 8397, 1, 0, 0, 0, 8397, 8399, 1, 0, 0, 0, 8398, 8396, 1, 0, 0, 0, 8399, 8400, 5, 3, 0, 0, 8400, 8404, 1, 0, 0, 0, 8401, 8402, 5, 53, 0, 0, 8402, 8404, 5, 422, 0, 0, 8403, 8389, 1, 0, 0, 0, 8403, 8401, 1, 0, 0, 0, 8404, 911, 1, 0, 0, 0, 8405, 8408, 3, 588, 294, 0, 8406, 8408, 5, 53, 0, 0, 8407, 8405, 1, 0, 0, 0, 8407, 8406, 1, 0, 0, 0, 8408, 913, 1, 0, 0, 0, 8409, 8410, 5, 157, 0, 0, 8410, 8411, 3, 922, 461, 0, 8411, 8412, 5, 7, 0, 0, 8412, 915, 1, 0, 0, 0, 8413, 8414, 5, 78, 0, 0, 8414, 8415, 5, 7, 0, 0, 8415, 917, 1, 0, 0, 0, 8416, 8422, 7, 67, 0, 0, 8417, 8419, 5, 33, 0, 0, 8418, 8420, 5, 269, 0, 0, 8419, 8418, 1, 0, 0, 0, 8419, 8420, 1, 0, 0, 0, 8420, 8421, 1, 0, 0, 0, 8421, 8423, 5, 153, 0, 0, 8422, 8417, 1, 0, 0, 0, 8422, 8423, 1, 0, 0, 0, 8423, 8424, 1, 0, 0, 0, 8424, 8425, 5, 7, 0, 0, 8425, 919, 1, 0, 0, 0, 8426, 8427, 5, 333, 0, 0, 8427, 8428, 3, 316, 158, 0, 8428, 8429, 5, 94, 0, 0, 8429, 8430, 5, 53, 0, 0, 8430, 8431, 5, 7, 0, 0, 8431, 8439, 1, 0, 0, 0, 8432, 8435, 5, 313, 0, 0, 8433, 8436, 3, 316, 158, 0, 8434, 8436, 5, 30, 0, 0, 8435, 8433, 1, 0, 0, 0, 8435, 8434, 1, 0, 0, 0, 8436, 8437, 1, 0, 0, 0, 8437, 8439, 5, 7, 0, 0, 8438, 8426, 1, 0, 0, 0, 8438, 8432, 1, 0, 0, 0, 8439, 921, 1, 0, 0, 0, 8440, 8443, 3, 818, 409, 0, 8441, 8443, 5, 28, 0, 0, 8442, 8440, 1, 0, 0, 0, 8442, 8441, 1, 0, 0, 0, 8443, 923, 1, 0, 0, 0, 8444, 8461, 5, 517, 0, 0, 8445, 8446, 5, 102, 0, 0, 8446, 8451, 3, 926, 463, 0, 8447, 8448, 5, 82, 0, 0, 8448, 8450, 3, 926, 463, 0, 8449, 8447, 1, 0, 0, 0, 8450, 8453, 1, 0, 0, 0, 8451, 8449, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 8454, 1, 0, 0, 0, 8453, 8451, 1, 0, 0, 0, 8454, 8458, 5, 93, 0, 0, 8455, 8457, 3, 846, 423, 0, 8456, 8455, 1, 0, 0, 0, 8457, 8460, 1, 0, 0, 0, 8458, 8456, 1, 0, 0, 0, 8458, 8459, 1, 0, 0, 0, 8459, 8462, 1, 0, 0, 0, 8460, 8458, 1, 0, 0, 0, 8461, 8445, 1, 0, 0, 0, 8462, 8463, 1, 0, 0, 0, 8463, 8461, 1, 0, 0, 0, 8463, 8464, 1, 0, 0, 0, 8464, 925, 1, 0, 0, 0, 8465, 8469, 3, 928, 464, 0, 8466, 8467, 5, 511, 0, 0, 8467, 8469, 3, 808, 404, 0, 8468, 8465, 1, 0, 0, 0, 8468, 8466, 1, 0, 0, 0, 8469, 927, 1, 0, 0, 0, 8470, 8473, 3, 818, 409, 0, 8471, 8473, 3, 828, 414, 0, 8472, 8470, 1, 0, 0, 0, 8472, 8471, 1, 0, 0, 0, 8473, 929, 1, 0, 0, 0, 8474, 8476, 3, 756, 378, 0, 8475, 8474, 1, 0, 0, 0, 8475, 8476, 1, 0, 0, 0, 8476, 8478, 1, 0, 0, 0, 8477, 8479, 3, 580, 290, 0, 8478, 8477, 1, 0, 0, 0, 8478, 8479, 1, 0, 0, 0, 8479, 8481, 1, 0, 0, 0, 8480, 8482, 3, 610, 305, 0, 8481, 8480, 1, 0, 0, 0, 8481, 8482, 1, 0, 0, 0, 8482, 8484, 1, 0, 0, 0, 8483, 8485, 3, 638, 319, 0, 8484, 8483, 1, 0, 0, 0, 8484, 8485, 1, 0, 0, 0, 8485, 8487, 1, 0, 0, 0, 8486, 8488, 3, 600, 300, 0, 8487, 8486, 1, 0, 0, 0, 8487, 8488, 1, 0, 0, 0, 8488, 8491, 1, 0, 0, 0, 8489, 8490, 5, 67, 0, 0, 8490, 8492, 3, 674, 337, 0, 8491, 8489, 1, 0, 0, 0, 8491, 8492, 1, 0, 0, 0, 8492, 8494, 1, 0, 0, 0, 8493, 8495, 3, 702, 351, 0, 8494, 8493, 1, 0, 0, 0, 8494, 8495, 1, 0, 0, 0, 8495, 931, 1, 0, 0, 0, 1189, 935, 942, 1062, 1064, 1073, 1078, 1084, 1119, 1129, 1135, 1140, 1147, 1152, 1159, 1170, 1178, 1182, 1194, 1200, 1206, 1210, 1215, 1219, 1232, 1242, 1244, 1250, 1255, 1268, 1271, 1276, 1281, 1292, 1296, 1308, 1312, 1315, 1319, 1331, 1349, 1356, 1364, 1369, 1376, 1384, 1390, 1398, 1406, 1410, 1424, 1429, 1434, 1446, 1452, 1464, 1469, 1479, 1485, 1490, 1498, 1503, 1510, 1515, 1520, 1530, 1535, 1540, 1547, 1551, 1565, 1571, 1577, 1582, 1589, 1601, 1609, 1617, 1633, 1642, 1651, 1660, 1664, 1676, 1684, 1694, 1714, 1719, 1722, 1729, 1732, 1736, 1740, 1743, 1748, 1753, 1757, 1766, 1772, 1776, 1785, 1788, 1794, 1803, 1815, 1819, 1823, 1828, 1831, 1837, 1839, 1841, 1845, 1851, 1855, 1860, 1865, 1869, 1872, 1879, 1892, 1905, 1919, 1936, 1946, 1953, 1958, 1962, 1969, 1974, 1977, 1979, 1984, 1988, 1992, 1996, 2001, 2004, 2008, 2011, 2015, 2023, 2028, 2031, 2035, 2041, 2050, 2054, 2060, 2062, 2071, 2076, 2088, 2093, 2097, 2101, 2106, 2110, 2113, 2116, 2119, 2122, 2125, 2130, 2133, 2136, 2139, 2142, 2145, 2151, 2155, 2158, 2161, 2164, 2167, 2169, 2176, 2184, 2194, 2199, 2209, 2212, 2217, 2222, 2227, 2230, 2235, 2244, 2246, 2250, 2253, 2257, 2262, 2267, 2271, 2274, 2278, 2281, 2286, 2289, 2294, 2297, 2301, 2304, 2307, 2312, 2315, 2323, 2335, 2339, 2346, 2351, 2354, 2357, 2360, 2365, 2376, 2382, 2386, 2389, 2392, 2397, 2404, 2407, 2411, 2419, 2424, 2427, 2430, 2437, 2442, 2451, 2454, 2457, 2462, 2465, 2477, 2487, 2504, 2508, 2512, 2514, 2531, 2533, 2549, 2560, 2563, 2566, 2575, 2584, 2600, 2603, 2606, 2614, 2618, 2625, 2634, 2638, 2644, 2648, 2651, 2654, 2657, 2660, 2666, 2670, 2675, 2679, 2682, 2685, 2688, 2693, 2699, 2703, 2707, 2711, 2717, 2719, 2724, 2730, 2736, 2740, 2755, 2760, 2763, 2765, 2768, 2772, 2776, 2779, 2782, 2790, 2796, 2798, 2804, 2809, 2814, 2818, 2825, 2827, 2838, 2877, 2887, 2889, 2892, 2896, 2900, 2910, 2912, 2918, 2920, 2929, 2941, 2955, 2960, 2963, 2970, 2975, 2983, 2985, 2991, 2996, 3000, 3005, 3011, 3018, 3024, 3026, 3035, 3041, 3049, 3055, 3060, 3065, 3073, 3088, 3090, 3094, 3098, 3101, 3104, 3113, 3116, 3119, 3125, 3131, 3135, 3147, 3153, 3156, 3161, 3165, 3172, 3182, 3184, 3208, 3220, 3225, 3227, 3231, 3234, 3237, 3247, 3250, 3260, 3265, 3270, 3273, 3276, 3284, 3290, 3297, 3305, 3308, 3319, 3323, 3329, 3336, 3339, 3348, 3362, 3365, 3379, 3390, 3393, 3405, 3410, 3423, 3428, 3441, 3450, 3453, 3456, 3463, 3466, 3478, 3484, 3486, 3494, 3502, 3510, 3522, 3527, 3538, 3549, 3557, 3565, 3572, 3579, 3581, 3584, 3589, 3594, 3613, 3622, 3625, 3652, 3661, 3664, 3668, 3672, 3676, 3683, 3687, 3691, 3695, 3699, 3704, 3708, 3713, 3719, 3724, 3731, 3735, 3741, 3745, 3750, 3758, 3764, 3769, 3776, 3781, 3785, 3790, 3796, 3803, 3808, 3815, 3820, 3827, 3831, 3839, 3843, 3845, 3848, 3853, 3863, 3878, 3881, 3889, 3896, 3901, 3907, 3911, 3918, 3923, 3926, 3929, 3933, 3942, 3960, 3963, 3995, 4000, 4006, 4026, 4031, 4037, 4040, 4044, 4048, 4054, 4057, 4061, 4065, 4070, 4073, 4076, 4079, 4092, 4098, 4106, 4113, 4118, 4121, 4128, 4131, 4139, 4142, 4147, 4154, 4157, 4177, 4189, 4192, 4198, 4203, 4212, 4220, 4225, 4231, 4238, 4246, 4249, 4260, 4262, 4276, 4282, 4290, 4292, 4298, 4302, 4305, 4308, 4313, 4318, 4322, 4325, 4328, 4331, 4334, 4342, 4353, 4356, 4359, 4364, 4367, 4371, 4375, 4381, 4389, 4392, 4405, 4410, 4412, 4417, 4424, 4431, 4440, 4448, 4456, 4463, 4471, 4478, 4486, 4490, 4494, 4496, 4502, 4507, 4511, 4518, 4523, 4528, 4533, 4535, 4545, 4555, 4571, 4589, 4601, 4608, 4623, 4628, 4631, 4636, 4641, 4646, 4649, 4652, 4657, 4664, 4668, 4673, 4680, 4684, 4690, 4699, 4708, 4720, 4722, 4735, 4741, 4745, 4747, 4754, 4767, 4774, 4776, 4792, 4796, 4800, 4805, 4810, 4815, 4820, 4823, 4835, 4888, 4897, 4901, 4910, 4914, 4923, 4927, 4932, 4935, 4939, 4944, 4946, 4955, 4960, 4971, 4975, 4989, 4997, 5035, 5037, 5056, 5059, 5086, 5090, 5094, 5098, 5102, 5105, 5120, 5127, 5141, 5154, 5179, 5198, 5213, 5229, 5236, 5247, 5250, 5269, 5272, 5285, 5289, 5309, 5321, 5325, 5347, 5351, 5361, 5365, 5371, 5375, 5379, 5383, 5390, 5395, 5406, 5410, 5413, 5418, 5424, 5435, 5439, 5442, 5446, 5450, 5453, 5463, 5466, 5470, 5475, 5481, 5484, 5489, 5492, 5499, 5501, 5507, 5511, 5520, 5525, 5527, 5537, 5540, 5545, 5553, 5556, 5561, 5563, 5565, 5571, 5588, 5594, 5607, 5613, 5617, 5622, 5652, 5667, 5672, 5676, 5689, 5693, 5695, 5704, 5710, 5712, 5716, 5719, 5722, 5725, 5728, 5730, 5733, 5737, 5745, 5750, 5753, 5759, 5763, 5767, 5772, 5774, 5778, 5782, 5789, 5795, 5799, 5801, 5803, 5816, 5824, 5832, 5843, 5852, 5857, 5861, 5865, 5872, 5875, 5877, 5885, 5889, 5892, 5899, 5906, 5911, 5918, 5921, 5923, 5926, 5932, 5937, 5941, 5948, 5958, 5965, 5968, 5971, 5975, 5986, 5989, 5992, 5995, 5998, 6005, 6008, 6011, 6018, 6030, 6037, 6039, 6044, 6049, 6051, 6057, 6064, 6069, 6074, 6078, 6082, 6086, 6088, 6092, 6096, 6099, 6102, 6104, 6114, 6116, 6121, 6125, 6130, 6134, 6141, 6146, 6150, 6153, 6159, 6162, 6181, 6188, 6192, 6195, 6199, 6203, 6206, 6209, 6214, 6223, 6230, 6234, 6238, 6242, 6245, 6247, 6252, 6256, 6261, 6267, 6274, 6279, 6284, 6293, 6300, 6308, 6319, 6324, 6328, 6331, 6335, 6340, 6344, 6349, 6357, 6368, 6373, 6377, 6380, 6383, 6385, 6388, 6391, 6394, 6398, 6402, 6406, 6408, 6417, 6422, 6428, 6432, 6434, 6441, 6446, 6452, 6454, 6458, 6465, 6470, 6473, 6479, 6483, 6489, 6498, 6504, 6506, 6511, 6514, 6523, 6530, 6532, 6539, 6544, 6547, 6557, 6568, 6573, 6577, 6585, 6595, 6602, 6608, 6619, 6625, 6635, 6644, 6648, 6651, 6653, 6655, 6659, 6667, 6670, 6675, 6680, 6687, 6689, 6695, 6699, 6702, 6707, 6710, 6712, 6718, 6727, 6733, 6736, 6744, 6747, 6751, 6757, 6759, 6762, 6766, 6771, 6778, 6785, 6787, 6793, 6795, 6800, 6802, 6806, 6815, 6819, 6827, 6829, 6843, 6846, 6854, 6863, 6869, 6874, 6882, 6884, 6889, 6893, 6898, 6903, 6909, 6925, 6927, 6936, 6951, 6956, 6959, 6965, 6970, 6983, 6988, 6992, 6999, 7018, 7030, 7035, 7043, 7045, 7047, 7056, 7059, 7064, 7069, 7073, 7076, 7085, 7093, 7098, 7100, 7103, 7107, 7118, 7139, 7147, 7160, 7170, 7176, 7182, 7185, 7188, 7214, 7216, 7237, 7247, 7260, 7265, 7269, 7271, 7283, 7290, 7296, 7302, 7306, 7317, 7327, 7331, 7336, 7339, 7342, 7351, 7362, 7364, 7368, 7373, 7382, 7387, 7395, 7405, 7413, 7417, 7420, 7427, 7435, 7439, 7446, 7453, 7455, 7464, 7467, 7479, 7488, 7495, 7504, 7514, 7519, 7523, 7525, 7528, 7533, 7538, 7546, 7554, 7557, 7564, 7572, 7580, 7588, 7605, 7612, 7620, 7637, 7643, 7649, 7657, 7663, 7668, 7676, 7681, 7684, 7693, 7700, 7705, 7709, 7714, 7720, 7725, 7733, 7788, 7795, 7801, 7803, 7805, 7807, 7813, 7817, 7821, 7832, 7835, 7839, 7843, 7847, 7850, 7853, 7856, 7865, 7870, 7874, 7907, 7917, 7921, 7927, 7932, 7941, 7949, 7960, 7968, 7977, 7986, 7991, 7995, 8005, 8010, 8018, 8023, 8026, 8033, 8039, 8047, 8055, 8058, 8065, 8067, 8070, 8076, 8085, 8089, 8103, 8106, 8108, 8114, 8124, 8126, 8128, 8136, 8139, 8142, 8152, 8160, 8166, 8172, 8179, 8183, 8187, 8190, 8193, 8199, 8206, 8209, 8217, 8219, 8228, 8233, 8235, 8242, 8248, 8251, 8263, 8270, 8272, 8276, 8282, 8287, 8291, 8294, 8297, 8306, 8309, 8313, 8317, 8319, 8322, 8325, 8331, 8338, 8345, 8351, 8353, 8357, 8362, 8380, 8385, 8387, 8396, 8403, 8407, 8419, 8422, 8435, 8438, 8442, 8451, 8458, 8463, 8468, 8472, 8475, 8478, 8481, 8484, 8487, 8491, 8494] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index 4b81fb75..4d401d21 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -11547,7 +11547,7 @@ export class PostgreSqlParser extends SQLParserBase { this.state = 2232; this.column_name_create(); this.state = 2233; - this.typename(); + localContext._colType = this.typename(); this.state = 2235; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { @@ -36866,7 +36866,7 @@ export class PostgreSqlParser extends SQLParserBase { } this.state = 6460; - this.colid(); + localContext._alias = this.colid(); this.state = 6465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 865, this.context) ) { @@ -36928,7 +36928,7 @@ export class PostgreSqlParser extends SQLParserBase { if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { this.state = 6469; - this.colid(); + localContext._alias = this.colid(); } } @@ -37330,7 +37330,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: { this.state = 6472; - this.colid(); + localContext._alias = this.colid(); } break; default: @@ -46143,9 +46143,9 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 738, PostgreSqlParser.RULE_func_arg_expr); let _la: number; try { - this.state = 7454; + this.state = 7455; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -46158,17 +46158,25 @@ export class PostgreSqlParser extends SQLParserBase { { this.state = 7450; this.type_function_name(); - this.state = 7451; + this.state = 7453; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 20 || _la === 22)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + if (_la === 20 || _la === 22) { + { + this.state = 7451; + _la = this.tokenStream.LA(1); + if(!(_la === 20 || _la === 22)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 7452; + this.expression(); + } } - this.state = 7452; - this.expression(); + } break; } @@ -46194,9 +46202,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7456; + this.state = 7457; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7466; + this.state = 7467; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -46642,28 +46650,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7457; + this.state = 7458; this.expr_list(); } break; case PostgreSqlParser.OPEN_BRACKET: { { - this.state = 7458; + this.state = 7459; this.array_expr(); - this.state = 7463; + this.state = 7464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7459; - this.match(PostgreSqlParser.COMMA); this.state = 7460; + this.match(PostgreSqlParser.COMMA); + this.state = 7461; this.array_expr(); } } - this.state = 7465; + this.state = 7466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46675,7 +46683,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 7468; + this.state = 7469; this.match(PostgreSqlParser.CLOSE_BRACKET); } } @@ -46697,62 +46705,62 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Extract_argContext(this.context, this.state); this.enterRule(localContext, 742, PostgreSqlParser.RULE_extract_arg); try { - this.state = 7478; + this.state = 7479; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7470; + this.state = 7471; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7471; + this.state = 7472; this.match(PostgreSqlParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7472; + this.state = 7473; this.match(PostgreSqlParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7473; + this.state = 7474; this.match(PostgreSqlParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7474; + this.state = 7475; this.match(PostgreSqlParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7475; + this.state = 7476; this.match(PostgreSqlParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7476; + this.state = 7477; this.match(PostgreSqlParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7477; + this.state = 7478; this.sconst(); } break; @@ -46779,7 +46787,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7480; + this.state = 7481; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -46809,26 +46817,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 746, PostgreSqlParser.RULE_substr_list); let _la: number; try { - this.state = 7503; + this.state = 7504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1028, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7482; - this.expression(); this.state = 7483; - this.match(PostgreSqlParser.KW_FROM); + this.expression(); this.state = 7484; + this.match(PostgreSqlParser.KW_FROM); + this.state = 7485; this.expression(); - this.state = 7487; + this.state = 7488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7485; - this.match(PostgreSqlParser.KW_FOR); this.state = 7486; + this.match(PostgreSqlParser.KW_FOR); + this.state = 7487; this.expression(); } } @@ -46838,20 +46846,20 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7489; - this.expression(); this.state = 7490; - this.match(PostgreSqlParser.KW_FOR); + this.expression(); this.state = 7491; + this.match(PostgreSqlParser.KW_FOR); + this.state = 7492; this.expression(); - this.state = 7494; + this.state = 7495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 7492; - this.match(PostgreSqlParser.KW_FROM); this.state = 7493; + this.match(PostgreSqlParser.KW_FROM); + this.state = 7494; this.expression(); } } @@ -46861,22 +46869,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7496; - this.expression(); this.state = 7497; - this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 7498; this.expression(); + this.state = 7498; + this.match(PostgreSqlParser.KW_SIMILAR); this.state = 7499; - this.match(PostgreSqlParser.KW_ESCAPE); + this.expression(); this.state = 7500; + this.match(PostgreSqlParser.KW_ESCAPE); + this.state = 7501; this.expression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7502; + this.state = 7503; this.expr_list(); } break; @@ -46902,13 +46910,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7505; - this.match(PostgreSqlParser.KW_WHEN); this.state = 7506; - this.expression(); + this.match(PostgreSqlParser.KW_WHEN); this.state = 7507; - this.match(PostgreSqlParser.KW_THEN); + this.expression(); this.state = 7508; + this.match(PostgreSqlParser.KW_THEN); + this.state = 7509; this.expression(); } } @@ -46931,15 +46939,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 750, PostgreSqlParser.RULE_indirection_el); let _la: number; try { - this.state = 7527; + this.state = 7528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 7510; + this.state = 7511; this.match(PostgreSqlParser.DOT); - this.state = 7513; + this.state = 7514; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -47433,13 +47441,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7511; + this.state = 7512; this.collabel(); } break; case PostgreSqlParser.STAR: { - this.state = 7512; + this.state = 7513; this.match(PostgreSqlParser.STAR); } break; @@ -47451,37 +47459,37 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 7515; + this.state = 7516; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7524; + this.state = 7525; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7516; + this.state = 7517; this.expression(); } break; case 2: { - this.state = 7518; + this.state = 7519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7517; + this.state = 7518; this.expression(); } } - this.state = 7520; + this.state = 7521; this.match(PostgreSqlParser.COLON); - this.state = 7522; + this.state = 7523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7521; + this.state = 7522; this.expression(); } } @@ -47489,7 +47497,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 7526; + this.state = 7527; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -47518,7 +47526,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7530; + this.state = 7531; this.errorHandler.sync(this); alternative = 1; do { @@ -47526,7 +47534,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 7529; + this.state = 7530; this.indirection_el(); } } @@ -47534,9 +47542,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7532; + this.state = 7533; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -47561,21 +47569,21 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7537; + this.state = 7538; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7534; + this.state = 7535; this.indirection_el(); } } } - this.state = 7539; + this.state = 7540; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); } } } @@ -47600,25 +47608,25 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7540; + this.state = 7541; this.target_el(); - this.state = 7545; + this.state = 7546; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7541; - this.match(PostgreSqlParser.COMMA); this.state = 7542; + this.match(PostgreSqlParser.COMMA); + this.state = 7543; this.target_el(); } } } - this.state = 7547; + this.state = 7548; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); } } } @@ -47640,29 +47648,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Target_elContext(this.context, this.state); this.enterRule(localContext, 758, PostgreSqlParser.RULE_target_el); try { - this.state = 7556; + this.state = 7557; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7548; + this.state = 7549; this.column_expr_noparen(); - this.state = 7553; + this.state = 7554; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7549; - this.match(PostgreSqlParser.KW_AS); this.state = 7550; + this.match(PostgreSqlParser.KW_AS); + this.state = 7551; this.collabel(); } break; case 2: { - this.state = 7551; + this.state = 7552; this.identifier(); } break; @@ -47678,7 +47686,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7555; + this.state = 7556; this.match(PostgreSqlParser.STAR); } break; @@ -47705,21 +47713,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7558; + this.state = 7559; this.qualified_name(); - this.state = 7563; + this.state = 7564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7559; - this.match(PostgreSqlParser.COMMA); this.state = 7560; + this.match(PostgreSqlParser.COMMA); + this.state = 7561; this.qualified_name(); } } - this.state = 7565; + this.state = 7566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47746,21 +47754,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7566; + this.state = 7567; this.table_name(); - this.state = 7571; + this.state = 7572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7567; - this.match(PostgreSqlParser.COMMA); this.state = 7568; + this.match(PostgreSqlParser.COMMA); + this.state = 7569; this.table_name(); } } - this.state = 7573; + this.state = 7574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47787,21 +47795,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7574; + this.state = 7575; this.schema_name(); - this.state = 7579; + this.state = 7580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7575; - this.match(PostgreSqlParser.COMMA); this.state = 7576; + this.match(PostgreSqlParser.COMMA); + this.state = 7577; this.schema_name(); } } - this.state = 7581; + this.state = 7582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47828,21 +47836,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7582; + this.state = 7583; this.database_name(); - this.state = 7587; + this.state = 7588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7583; - this.match(PostgreSqlParser.COMMA); this.state = 7584; + this.match(PostgreSqlParser.COMMA); + this.state = 7585; this.database_name(); } } - this.state = 7589; + this.state = 7590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47869,7 +47877,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new TablespaceNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7590; + this.state = 7591; this.qualified_name(); } } @@ -47894,7 +47902,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new TablespaceNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7592; + this.state = 7593; this.qualified_name(); } } @@ -47919,7 +47927,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new TableNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7594; + this.state = 7595; this.qualified_name(); } } @@ -47944,7 +47952,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7596; + this.state = 7597; this.qualified_name(); } } @@ -47969,7 +47977,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ViewNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7598; + this.state = 7599; this.qualified_name(); } } @@ -47994,7 +48002,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ViewNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7600; + this.state = 7601; this.any_name(); } } @@ -48018,14 +48026,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7602; + this.state = 7603; this.colid(); - this.state = 7604; + this.state = 7605; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7603; + this.state = 7604; this.indirection(); } break; @@ -48053,21 +48061,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7606; + this.state = 7607; this.tablespace_name(); - this.state = 7611; + this.state = 7612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7607; - this.match(PostgreSqlParser.COMMA); this.state = 7608; + this.match(PostgreSqlParser.COMMA); + this.state = 7609; this.tablespace_name(); } } - this.state = 7613; + this.state = 7614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48094,21 +48102,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7614; + this.state = 7615; this.colid(); - this.state = 7619; + this.state = 7620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7615; - this.match(PostgreSqlParser.COMMA); this.state = 7616; + this.match(PostgreSqlParser.COMMA); + this.state = 7617; this.colid(); } } - this.state = 7621; + this.state = 7622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48135,7 +48143,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new DatabaseNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7622; + this.state = 7623; this.any_name(); } } @@ -48160,7 +48168,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new DatabaseNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7624; + this.state = 7625; this.any_name(); } } @@ -48185,7 +48193,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new SchemaNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7626; + this.state = 7627; this.any_name(); } } @@ -48210,7 +48218,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new RoutineNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7628; + this.state = 7629; this.colid(); } } @@ -48235,7 +48243,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new RoutineNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7630; + this.state = 7631; this.colid(); } } @@ -48257,14 +48265,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Procedure_nameContext(this.context, this.state); this.enterRule(localContext, 796, PostgreSqlParser.RULE_procedure_name); try { - this.state = 7636; + this.state = 7637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: localContext = new ProcedureNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7632; + this.state = 7633; this.type_function_name(); } break; @@ -48272,9 +48280,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ProcedureNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7633; - this.colid(); this.state = 7634; + this.colid(); + this.state = 7635; this.indirection(); } break; @@ -48298,14 +48306,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Procedure_name_createContext(this.context, this.state); this.enterRule(localContext, 798, PostgreSqlParser.RULE_procedure_name_create); try { - this.state = 7642; + this.state = 7643; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: localContext = new ProcedureNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7638; + this.state = 7639; this.type_function_name(); } break; @@ -48313,9 +48321,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ProcedureNameCreateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7639; - this.colid(); this.state = 7640; + this.colid(); + this.state = 7641; this.indirection(); } break; @@ -48339,16 +48347,16 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Column_nameContext(this.context, this.state); this.enterRule(localContext, 800, PostgreSqlParser.RULE_column_name); try { - this.state = 7648; + this.state = 7649; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: localContext = new ColumnNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7644; - this.colid(); this.state = 7645; + this.colid(); + this.state = 7646; this.opt_indirection(); } break; @@ -48356,7 +48364,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnNameMatchContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7647; + this.state = 7648; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -48385,7 +48393,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7650; + this.state = 7651; this.colid(); } } @@ -48407,14 +48415,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Function_name_createContext(this.context, this.state); this.enterRule(localContext, 804, PostgreSqlParser.RULE_function_name_create); try { - this.state = 7656; + this.state = 7657; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: localContext = new FunctionNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7652; + this.state = 7653; this.type_function_name(); } break; @@ -48422,9 +48430,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new FunctionNameCreateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7653; - this.colid(); this.state = 7654; + this.colid(); + this.state = 7655; this.indirection(); } break; @@ -48448,14 +48456,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Function_nameContext(this.context, this.state); this.enterRule(localContext, 806, PostgreSqlParser.RULE_function_name); try { - this.state = 7662; + this.state = 7663; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: localContext = new FunctionNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7658; + this.state = 7659; this.type_function_name(); } break; @@ -48463,9 +48471,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new FunctionNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7659; - this.colid(); this.state = 7660; + this.colid(); + this.state = 7661; this.indirection(); } break; @@ -48491,16 +48499,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7664; + this.state = 7665; this.anysconst(); - this.state = 7667; + this.state = 7668; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7665; - this.match(PostgreSqlParser.KW_UESCAPE); this.state = 7666; + this.match(PostgreSqlParser.KW_UESCAPE); + this.state = 7667; this.anysconst(); } break; @@ -48526,50 +48534,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 810, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7680; + this.state = 7681; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7669; + this.state = 7670; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7670; + this.state = 7671; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7671; + this.state = 7672; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7675; + this.state = 7676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 588) { { { - this.state = 7672; + this.state = 7673; this.match(PostgreSqlParser.DollarText); } } - this.state = 7677; + this.state = 7678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7678; + this.state = 7679; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7679; + this.state = 7680; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -48598,12 +48606,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7683; + this.state = 7684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7682; + this.state = 7683; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -48615,7 +48623,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7685; + this.state = 7686; this.match(PostgreSqlParser.Integral); } } @@ -48637,41 +48645,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RolespecContext(this.context, this.state); this.enterRule(localContext, 814, PostgreSqlParser.RULE_rolespec); try { - this.state = 7692; + this.state = 7693; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7687; + this.state = 7688; this.nonreservedword(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7688; + this.state = 7689; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7689; + this.state = 7690; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7690; + this.state = 7691; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7691; + this.state = 7692; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -48698,21 +48706,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7694; + this.state = 7695; this.rolespec(); - this.state = 7699; + this.state = 7700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7695; - this.match(PostgreSqlParser.COMMA); this.state = 7696; + this.match(PostgreSqlParser.COMMA); + this.state = 7697; this.rolespec(); } } - this.state = 7701; + this.state = 7702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48736,20 +48744,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColidContext(this.context, this.state); this.enterRule(localContext, 818, PostgreSqlParser.RULE_colid); try { - this.state = 7704; + this.state = 7705; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7702; + this.state = 7703; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7703; + this.state = 7704; this.col_name_keyword(); } break; @@ -48773,20 +48781,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Type_function_nameContext(this.context, this.state); this.enterRule(localContext, 820, PostgreSqlParser.RULE_type_function_name); try { - this.state = 7708; + this.state = 7709; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7706; + this.state = 7707; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7707; + this.state = 7708; this.type_func_name_keyword(); } break; @@ -48810,27 +48818,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonreservedwordContext(this.context, this.state); this.enterRule(localContext, 822, PostgreSqlParser.RULE_nonreservedword); try { - this.state = 7713; + this.state = 7714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7710; + this.state = 7711; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7711; + this.state = 7712; this.col_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7712; + this.state = 7713; this.type_func_name_keyword(); } break; @@ -48854,34 +48862,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new CollabelContext(this.context, this.state); this.enterRule(localContext, 824, PostgreSqlParser.RULE_collabel); try { - this.state = 7719; + this.state = 7720; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7715; + this.state = 7716; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7716; + this.state = 7717; this.col_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7717; + this.state = 7718; this.type_func_name_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7718; + this.state = 7719; this.reserved_keyword(); } break; @@ -48905,22 +48913,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 826, PostgreSqlParser.RULE_identifier); try { - this.state = 7732; + this.state = 7733; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7721; + this.state = 7722; this.match(PostgreSqlParser.Identifier); - this.state = 7724; + this.state = 7725; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: { - this.state = 7722; - this.match(PostgreSqlParser.KW_UESCAPE); this.state = 7723; + this.match(PostgreSqlParser.KW_UESCAPE); + this.state = 7724; this.anysconst(); } break; @@ -48933,35 +48941,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7726; + this.state = 7727; this.sconst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7727; + this.state = 7728; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7728; + this.state = 7729; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7729; + this.state = 7730; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7730; + this.state = 7731; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -49301,7 +49309,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7731; + this.state = 7732; this.unreserved_keyword(); } break; @@ -49330,7 +49338,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7734; + this.state = 7735; _la = this.tokenStream.LA(1); if(!(_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -49359,363 +49367,363 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Col_name_keywordContext(this.context, this.state); this.enterRule(localContext, 830, PostgreSqlParser.RULE_col_name_keyword); try { - this.state = 7787; + this.state = 7788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7736; + this.state = 7737; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7737; + this.state = 7738; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7738; + this.state = 7739; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7739; + this.state = 7740; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7740; + this.state = 7741; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7741; + this.state = 7742; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7742; + this.state = 7743; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7743; + this.state = 7744; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7744; + this.state = 7745; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7745; + this.state = 7746; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7746; + this.state = 7747; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7747; + this.state = 7748; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7748; + this.state = 7749; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7749; + this.state = 7750; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7750; + this.state = 7751; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7751; + this.state = 7752; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7752; + this.state = 7753; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7753; + this.state = 7754; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7754; + this.state = 7755; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7755; + this.state = 7756; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7756; + this.state = 7757; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7757; + this.state = 7758; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7758; + this.state = 7759; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7759; + this.state = 7760; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7760; + this.state = 7761; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7761; + this.state = 7762; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7762; + this.state = 7763; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7763; + this.state = 7764; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7764; + this.state = 7765; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7765; + this.state = 7766; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7766; + this.state = 7767; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7767; + this.state = 7768; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7768; + this.state = 7769; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7769; + this.state = 7770; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7770; + this.state = 7771; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7771; + this.state = 7772; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7772; + this.state = 7773; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7773; + this.state = 7774; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7774; + this.state = 7775; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7775; + this.state = 7776; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7776; + this.state = 7777; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7777; + this.state = 7778; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7778; + this.state = 7779; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7779; + this.state = 7780; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7780; + this.state = 7781; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7781; + this.state = 7782; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7782; + this.state = 7783; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7783; + this.state = 7784; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7784; + this.state = 7785; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7785; + this.state = 7786; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7786; + this.state = 7787; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -49742,7 +49750,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7789; + this.state = 7790; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -49774,7 +49782,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7791; + this.state = 7792; _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); @@ -49808,53 +49816,53 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 7794; + this.state = 7795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7793; + this.state = 7794; this.label_decl(); } } - this.state = 7806; + this.state = 7807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7796; + this.state = 7797; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7804; + this.state = 7805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7800; + this.state = 7801; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7800; + this.state = 7801; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: { - this.state = 7797; + this.state = 7798; this.decl_statement(); } break; case 2: { - this.state = 7798; + this.state = 7799; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7799; + this.state = 7800; this.label_decl(); } break; @@ -49864,9 +49872,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7802; + this.state = 7803; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -49875,42 +49883,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7808; + this.state = 7809; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7812; + this.state = 7813; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7809; + this.state = 7810; this.proc_stmt(); } } } - this.state = 7814; + this.state = 7815; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); } - this.state = 7816; + this.state = 7817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7815; + this.state = 7816; this.exception_sect(); } } - this.state = 7818; + this.state = 7819; this.match(PostgreSqlParser.KW_END); - this.state = 7820; + this.state = 7821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 7819; + this.state = 7820; this.any_identifier(); } } @@ -49937,11 +49945,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7822; - this.match(PostgreSqlParser.LESS_LESS); this.state = 7823; - this.any_identifier(); + this.match(PostgreSqlParser.LESS_LESS); this.state = 7824; + this.any_identifier(); + this.state = 7825; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -49966,23 +49974,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7826; + this.state = 7827; this.any_identifier(); - this.state = 7873; + this.state = 7874; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1082, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { case 1: { - this.state = 7827; - this.match(PostgreSqlParser.KW_ALIAS); this.state = 7828; + this.match(PostgreSqlParser.KW_ALIAS); + this.state = 7829; this.match(PostgreSqlParser.KW_FOR); - this.state = 7831; + this.state = 7832; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7829; + this.state = 7830; this.match(PostgreSqlParser.PARAM); } break; @@ -50381,7 +50389,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7830; + this.state = 7831; this.colid(); } break; @@ -50392,65 +50400,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7834; + this.state = 7835; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { case 1: { - this.state = 7833; + this.state = 7834; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7836; + this.state = 7837; this.typename(); - this.state = 7838; + this.state = 7839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7837; + this.state = 7838; this.opt_collate_clause(); } } - this.state = 7842; + this.state = 7843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7840; - this.match(PostgreSqlParser.KW_NOT); this.state = 7841; + this.match(PostgreSqlParser.KW_NOT); + this.state = 7842; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7849; + this.state = 7850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7846; + this.state = 7847; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7844; + this.state = 7845; this.assign_operator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7845; + this.state = 7846; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7848; + this.state = 7849; this.sql_expression(); } } @@ -50459,59 +50467,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7855; + this.state = 7856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7852; + this.state = 7853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7851; + this.state = 7852; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7854; + this.state = 7855; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7857; + this.state = 7858; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7869; + this.state = 7870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7858; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7859; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7860; this.decl_cursor_arg(); - this.state = 7864; + this.state = 7865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7860; - this.match(PostgreSqlParser.COMMA); this.state = 7861; + this.match(PostgreSqlParser.COMMA); + this.state = 7862; this.decl_cursor_arg(); } } - this.state = 7866; + this.state = 7867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7867; + this.state = 7868; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7871; + this.state = 7872; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -50520,12 +50528,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7872; + this.state = 7873; this.selectstmt(); } break; } - this.state = 7875; + this.state = 7876; this.match(PostgreSqlParser.SEMI); } } @@ -50549,9 +50557,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7877; - this.any_identifier(); this.state = 7878; + this.any_identifier(); + this.state = 7879; this.typename(); } } @@ -50576,7 +50584,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7880; + this.state = 7881; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -50605,162 +50613,162 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Proc_stmtContext(this.context, this.state); this.enterRule(localContext, 846, PostgreSqlParser.RULE_proc_stmt); try { - this.state = 7906; + this.state = 7907; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7882; - this.pl_block(); this.state = 7883; + this.pl_block(); + this.state = 7884; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7885; + this.state = 7886; this.stmt_return(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7886; + this.state = 7887; this.stmt_raise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7887; + this.state = 7888; this.stmt_assign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7888; + this.state = 7889; this.stmt_if(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7889; + this.state = 7890; this.stmt_case(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7890; + this.state = 7891; this.stmt_loop_while_for(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7891; + this.state = 7892; this.stmt_foreach_a(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7892; + this.state = 7893; this.stmt_exit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7893; + this.state = 7894; this.stmt_assert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7894; + this.state = 7895; this.stmt_execsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7895; + this.state = 7896; this.stmt_dynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7896; + this.state = 7897; this.stmt_perform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7897; + this.state = 7898; this.stmt_call(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7898; + this.state = 7899; this.stmt_getdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7899; + this.state = 7900; this.stmt_open(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7900; + this.state = 7901; this.stmt_fetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7901; + this.state = 7902; this.stmt_move(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7902; + this.state = 7903; this.stmt_close(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7903; + this.state = 7904; this.stmt_null(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7904; + this.state = 7905; this.stmt_commit_or_rollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7905; + this.state = 7906; this.stmt_set(); } break; @@ -50786,11 +50794,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7908; - this.match(PostgreSqlParser.KW_PERFORM); this.state = 7909; - this.sql_expression(); + this.match(PostgreSqlParser.KW_PERFORM); this.state = 7910; + this.sql_expression(); + this.state = 7911; this.match(PostgreSqlParser.SEMI); } } @@ -50813,36 +50821,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 850, PostgreSqlParser.RULE_stmt_call); let _la: number; try { - this.state = 7931; + this.state = 7932; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7912; - this.match(PostgreSqlParser.KW_CALL); this.state = 7913; + this.match(PostgreSqlParser.KW_CALL); + this.state = 7914; this.any_identifier(); - this.state = 7920; + this.state = 7921; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: { - this.state = 7914; + this.state = 7915; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7916; + this.state = 7917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7915; + this.state = 7916; this.expr_list(); } } - this.state = 7918; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 7919; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7920; this.match(PostgreSqlParser.SEMI); } break; @@ -50852,25 +50860,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7922; - this.match(PostgreSqlParser.KW_DO); this.state = 7923; - this.any_identifier(); + this.match(PostgreSqlParser.KW_DO); this.state = 7924; + this.any_identifier(); + this.state = 7925; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7926; + this.state = 7927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7925; + this.state = 7926; this.expr_list(); } } - this.state = 7928; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 7929; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 7930; this.match(PostgreSqlParser.SEMI); } break; @@ -50898,13 +50906,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7933; - this.assign_var(); this.state = 7934; - this.assign_operator(); + this.assign_var(); this.state = 7935; - this.sql_expression(); + this.assign_operator(); this.state = 7936; + this.sql_expression(); + this.state = 7937; this.match(PostgreSqlParser.SEMI); } } @@ -50929,14 +50937,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7938; + this.state = 7939; this.match(PostgreSqlParser.KW_GET); - this.state = 7940; + this.state = 7941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7939; + this.state = 7940; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -50948,29 +50956,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7942; + this.state = 7943; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7943; + this.state = 7944; this.getdiag_list_item(); - this.state = 7948; + this.state = 7949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7944; - this.match(PostgreSqlParser.COMMA); this.state = 7945; + this.match(PostgreSqlParser.COMMA); + this.state = 7946; this.getdiag_list_item(); } } - this.state = 7950; + this.state = 7951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7951; + this.state = 7952; this.match(PostgreSqlParser.SEMI); } } @@ -50994,11 +51002,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7953; - this.assign_var(); this.state = 7954; - this.assign_operator(); + this.assign_var(); this.state = 7955; + this.assign_operator(); + this.state = 7956; this.colid(); } } @@ -51023,7 +51031,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7959; + this.state = 7960; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -51421,34 +51429,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7957; + this.state = 7958; this.any_name(); } break; case PostgreSqlParser.PARAM: { - this.state = 7958; + this.state = 7959; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7967; + this.state = 7968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7961; - this.match(PostgreSqlParser.OPEN_BRACKET); this.state = 7962; - this.expression(); + this.match(PostgreSqlParser.OPEN_BRACKET); this.state = 7963; + this.expression(); + this.state = 7964; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 7969; + this.state = 7970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51476,79 +51484,79 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7970; - this.match(PostgreSqlParser.KW_IF); this.state = 7971; - this.sql_expression(); + this.match(PostgreSqlParser.KW_IF); this.state = 7972; + this.sql_expression(); + this.state = 7973; this.match(PostgreSqlParser.KW_THEN); - this.state = 7976; + this.state = 7977; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7973; + this.state = 7974; this.proc_stmt(); } } } - this.state = 7978; + this.state = 7979; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); } { - this.state = 7990; + this.state = 7991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 7979; - this.match(PostgreSqlParser.KW_ELSIF); this.state = 7980; - this.expression(); + this.match(PostgreSqlParser.KW_ELSIF); this.state = 7981; + this.expression(); + this.state = 7982; this.match(PostgreSqlParser.KW_THEN); - this.state = 7985; + this.state = 7986; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, 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 = 7982; + this.state = 7983; this.proc_stmt(); } } } - this.state = 7987; + this.state = 7988; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); } } } - this.state = 7992; + this.state = 7993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7994; + this.state = 7995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 7993; + this.state = 7994; this.stmt_else(); } } - this.state = 7996; - this.match(PostgreSqlParser.KW_END); this.state = 7997; - this.match(PostgreSqlParser.KW_IF); + this.match(PostgreSqlParser.KW_END); this.state = 7998; + this.match(PostgreSqlParser.KW_IF); + this.state = 7999; this.match(PostgreSqlParser.SEMI); } } @@ -51573,23 +51581,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8000; + this.state = 8001; this.match(PostgreSqlParser.KW_ELSE); - this.state = 8004; + this.state = 8005; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8001; + this.state = 8002; this.proc_stmt(); } } } - this.state = 8006; + this.state = 8007; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); } } } @@ -51615,67 +51623,67 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8007; + this.state = 8008; this.match(PostgreSqlParser.KW_CASE); - this.state = 8009; + this.state = 8010; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { case 1: { - this.state = 8008; + this.state = 8009; this.sql_expression(); } break; } - this.state = 8020; + this.state = 8021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8011; - this.match(PostgreSqlParser.KW_WHEN); this.state = 8012; - this.expr_list(); + this.match(PostgreSqlParser.KW_WHEN); this.state = 8013; + this.expr_list(); + this.state = 8014; this.match(PostgreSqlParser.KW_THEN); - this.state = 8017; + this.state = 8018; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8014; + this.state = 8015; this.proc_stmt(); } } } - this.state = 8019; + this.state = 8020; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); } } } - this.state = 8022; + this.state = 8023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8025; + this.state = 8026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8024; + this.state = 8025; this.stmt_else(); } } - this.state = 8027; - this.match(PostgreSqlParser.KW_END); this.state = 8028; - this.match(PostgreSqlParser.KW_CASE); + this.match(PostgreSqlParser.KW_END); this.state = 8029; + this.match(PostgreSqlParser.KW_CASE); + this.state = 8030; this.match(PostgreSqlParser.SEMI); } } @@ -51700,25 +51708,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8032; + this.state = 8033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8031; + this.state = 8032; this.label_decl(); } } - this.state = 8038; + this.state = 8039; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8034; - this.match(PostgreSqlParser.KW_WHILE); this.state = 8035; + this.match(PostgreSqlParser.KW_WHILE); + this.state = 8036; this.expression(); } } @@ -51726,9 +51734,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8036; - this.match(PostgreSqlParser.KW_FOR); this.state = 8037; + this.match(PostgreSqlParser.KW_FOR); + this.state = 8038; this.for_control(); } } @@ -51738,7 +51746,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8040; + this.state = 8041; this.loop_body(); } } @@ -51763,23 +51771,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8042; - this.any_name_list(); this.state = 8043; + this.any_name_list(); + this.state = 8044; this.match(PostgreSqlParser.KW_IN); - this.state = 8066; + this.state = 8067; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 8044; + this.state = 8045; this.colid(); - this.state = 8046; + this.state = 8047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8045; + this.state = 8046; this.execute_param_clause(); } } @@ -51788,30 +51796,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8048; + this.state = 8049; this.selectstmt(); } break; case 3: { - this.state = 8049; + this.state = 8050; this.explainstmt(); } break; case 4: { - this.state = 8050; - this.match(PostgreSqlParser.KW_EXECUTE); this.state = 8051; + this.match(PostgreSqlParser.KW_EXECUTE); + this.state = 8052; this.expression(); - this.state = 8054; + this.state = 8055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8052; - this.match(PostgreSqlParser.KW_USING); this.state = 8053; + this.match(PostgreSqlParser.KW_USING); + this.state = 8054; this.expr_list(); } } @@ -51820,30 +51828,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8057; + this.state = 8058; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 8056; + this.state = 8057; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8059; - this.expression(); this.state = 8060; - this.match(PostgreSqlParser.DOT_DOT); + this.expression(); this.state = 8061; + this.match(PostgreSqlParser.DOT_DOT); + this.state = 8062; this.expression(); - this.state = 8064; + this.state = 8065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8062; - this.match(PostgreSqlParser.KW_BY); this.state = 8063; + this.match(PostgreSqlParser.KW_BY); + this.state = 8064; this.expression(); } } @@ -51874,39 +51882,39 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8069; + this.state = 8070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8068; + this.state = 8069; this.label_decl(); } } - this.state = 8071; - this.match(PostgreSqlParser.KW_FOREACH); this.state = 8072; + this.match(PostgreSqlParser.KW_FOREACH); + this.state = 8073; this.any_name_list(); - this.state = 8075; + this.state = 8076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8073; - this.match(PostgreSqlParser.KW_SLICE); this.state = 8074; + this.match(PostgreSqlParser.KW_SLICE); + this.state = 8075; this.match(PostgreSqlParser.Integral); } } - this.state = 8077; - this.match(PostgreSqlParser.KW_IN); this.state = 8078; - this.match(PostgreSqlParser.KW_ARRAY); + this.match(PostgreSqlParser.KW_IN); this.state = 8079; - this.expression(); + this.match(PostgreSqlParser.KW_ARRAY); this.state = 8080; + this.expression(); + this.state = 8081; this.loop_body(); } } @@ -51931,7 +51939,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8082; + this.state = 8083; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -51940,29 +51948,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8084; + this.state = 8085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8083; + this.state = 8084; this.any_identifier(); } } - this.state = 8088; + this.state = 8089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8086; - this.match(PostgreSqlParser.KW_WHEN); this.state = 8087; + this.match(PostgreSqlParser.KW_WHEN); + this.state = 8088; this.sql_expression(); } } - this.state = 8090; + this.state = 8091; this.match(PostgreSqlParser.SEMI); } } @@ -51986,35 +51994,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8092; + this.state = 8093; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8107; + this.state = 8108; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { case 1: { - this.state = 8093; - this.match(PostgreSqlParser.KW_NEXT); this.state = 8094; + this.match(PostgreSqlParser.KW_NEXT); + this.state = 8095; this.sql_expression(); } break; case 2: { - this.state = 8095; + this.state = 8096; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8102; + this.state = 8103; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8096; - this.match(PostgreSqlParser.KW_EXECUTE); this.state = 8097; - this.expression(); + this.match(PostgreSqlParser.KW_EXECUTE); this.state = 8098; - this.match(PostgreSqlParser.KW_USING); + this.expression(); this.state = 8099; + this.match(PostgreSqlParser.KW_USING); + this.state = 8100; this.expr_list(); } break; @@ -52024,7 +52032,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8101; + this.state = 8102; this.selectstmt(); } break; @@ -52035,12 +52043,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8105; + this.state = 8106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 8104; + this.state = 8105; this.sql_expression(); } break; @@ -52048,7 +52056,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8109; + this.state = 8110; this.match(PostgreSqlParser.SEMI); } } @@ -52073,19 +52081,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8111; + this.state = 8112; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8141; + this.state = 8142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: { - this.state = 8113; + this.state = 8114; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 8112; + this.state = 8113; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -52097,21 +52105,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8127; + this.state = 8128; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 8115; + this.state = 8116; this.identifier(); } break; case 2: { { - this.state = 8116; - this.match(PostgreSqlParser.KW_SQLSTATE); this.state = 8117; + this.match(PostgreSqlParser.KW_SQLSTATE); + this.state = 8118; this.sconst(); } } @@ -52119,26 +52127,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8118; + this.state = 8119; this.sconst(); - this.state = 8125; + this.state = 8126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8121; + this.state = 8122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8119; - this.match(PostgreSqlParser.COMMA); this.state = 8120; + this.match(PostgreSqlParser.COMMA); + this.state = 8121; this.expression(); } } - this.state = 8123; + this.state = 8124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -52149,29 +52157,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8138; + this.state = 8139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8129; + this.state = 8130; this.match(PostgreSqlParser.KW_USING); { - this.state = 8130; + this.state = 8131; this.opt_raise_using_elem(); - this.state = 8135; + this.state = 8136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8131; - this.match(PostgreSqlParser.COMMA); this.state = 8132; + this.match(PostgreSqlParser.COMMA); + this.state = 8133; this.opt_raise_using_elem(); } } - this.state = 8137; + this.state = 8138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -52179,7 +52187,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8140; + this.state = 8141; this.match(PostgreSqlParser.SEMI); } break; @@ -52206,11 +52214,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8143; - this.identifier(); this.state = 8144; - this.match(PostgreSqlParser.EQUAL); + this.identifier(); this.state = 8145; + this.match(PostgreSqlParser.EQUAL); + this.state = 8146; this.expression(); } } @@ -52235,23 +52243,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8147; - this.match(PostgreSqlParser.KW_ASSERT); this.state = 8148; + this.match(PostgreSqlParser.KW_ASSERT); + this.state = 8149; this.sql_expression(); - this.state = 8151; + this.state = 8152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8149; - this.match(PostgreSqlParser.COMMA); this.state = 8150; + this.match(PostgreSqlParser.COMMA); + this.state = 8151; this.sql_expression(); } } - this.state = 8153; + this.state = 8154; this.match(PostgreSqlParser.SEMI); } } @@ -52277,39 +52285,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8155; + this.state = 8156; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8159; + this.state = 8160; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1123, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8156; + this.state = 8157; this.proc_stmt(); } } } - this.state = 8161; + this.state = 8162; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1123, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); } - this.state = 8162; - this.match(PostgreSqlParser.KW_END); this.state = 8163; + this.match(PostgreSqlParser.KW_END); + this.state = 8164; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8165; + this.state = 8166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8164; + this.state = 8165; this.any_identifier(); } } - this.state = 8167; + this.state = 8168; this.match(PostgreSqlParser.SEMI); } } @@ -52334,19 +52342,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8169; + this.state = 8170; this.stmt(); - this.state = 8171; + this.state = 8172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8170; + this.state = 8171; this.opt_execute_into(); } } - this.state = 8173; + this.state = 8174; this.match(PostgreSqlParser.SEMI); } } @@ -52371,33 +52379,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8175; - this.match(PostgreSqlParser.KW_EXECUTE); this.state = 8176; + this.match(PostgreSqlParser.KW_EXECUTE); + this.state = 8177; this.expression(); - this.state = 8192; + this.state = 8193; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: { - this.state = 8178; + this.state = 8179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8177; + this.state = 8178; this.opt_execute_into(); } } - this.state = 8182; + this.state = 8183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8180; - this.match(PostgreSqlParser.KW_USING); this.state = 8181; + this.match(PostgreSqlParser.KW_USING); + this.state = 8182; this.expr_list(); } } @@ -52406,24 +52414,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8186; + this.state = 8187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8184; - this.match(PostgreSqlParser.KW_USING); this.state = 8185; + this.match(PostgreSqlParser.KW_USING); + this.state = 8186; this.expr_list(); } } - this.state = 8189; + this.state = 8190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8188; + this.state = 8189; this.opt_execute_into(); } } @@ -52436,7 +52444,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8194; + this.state = 8195; this.match(PostgreSqlParser.SEMI); } } @@ -52460,19 +52468,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8196; + this.state = 8197; this.match(PostgreSqlParser.KW_INTO); - this.state = 8198; + this.state = 8199; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { case 1: { - this.state = 8197; + this.state = 8198; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8200; + this.state = 8201; this.expr_list(); } } @@ -52497,38 +52505,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8202; + this.state = 8203; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8234; + this.state = 8235; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: { - this.state = 8203; + this.state = 8204; this.cursor_variable(); - this.state = 8208; + this.state = 8209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8205; + this.state = 8206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8204; + this.state = 8205; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8207; + this.state = 8208; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8210; + this.state = 8211; this.match(PostgreSqlParser.KW_FOR); - this.state = 8218; + this.state = 8219; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -52537,24 +52545,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8211; + this.state = 8212; this.selectstmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8212; - this.match(PostgreSqlParser.KW_EXECUTE); this.state = 8213; + this.match(PostgreSqlParser.KW_EXECUTE); + this.state = 8214; this.sql_expression(); - this.state = 8216; + this.state = 8217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8214; - this.match(PostgreSqlParser.KW_USING); this.state = 8215; + this.match(PostgreSqlParser.KW_USING); + this.state = 8216; this.expr_list(); } } @@ -52568,36 +52576,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8220; + this.state = 8221; this.colid(); - this.state = 8232; + this.state = 8233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8221; + this.state = 8222; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8222; + this.state = 8223; this.opt_open_bound_list_item(); - this.state = 8227; + this.state = 8228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8223; - this.match(PostgreSqlParser.COMMA); this.state = 8224; + this.match(PostgreSqlParser.COMMA); + this.state = 8225; this.opt_open_bound_list_item(); } } - this.state = 8229; + this.state = 8230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8230; + this.state = 8231; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -52605,7 +52613,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8236; + this.state = 8237; this.match(PostgreSqlParser.SEMI); } } @@ -52629,19 +52637,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8241; + this.state = 8242; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { case 1: { - this.state = 8238; - this.colid(); this.state = 8239; + this.colid(); + this.state = 8240; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8243; + this.state = 8244; this.expression(); } } @@ -52666,35 +52674,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8245; + this.state = 8246; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8247; + this.state = 8248; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { - this.state = 8246; + this.state = 8247; localContext._direction = this.opt_fetch_direction(); } break; } - this.state = 8250; + this.state = 8251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8249; + this.state = 8250; this.from_in(); } } - this.state = 8252; - this.cursor_variable(); this.state = 8253; - this.match(PostgreSqlParser.KW_INTO); + this.cursor_variable(); this.state = 8254; - this.expr_list(); + this.match(PostgreSqlParser.KW_INTO); this.state = 8255; + this.expr_list(); + this.state = 8256; this.match(PostgreSqlParser.SEMI); } } @@ -52717,46 +52725,46 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 896, PostgreSqlParser.RULE_opt_fetch_direction); let _la: number; try { - this.state = 8271; + this.state = 8272; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8257; + this.state = 8258; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8258; + this.state = 8259; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8259; + this.state = 8260; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8260; + this.state = 8261; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8262; + this.state = 8263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 8261; + this.state = 8262; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -52768,21 +52776,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8264; + this.state = 8265; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8265; + this.state = 8266; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8266; + this.state = 8267; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -52791,18 +52799,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8269; + this.state = 8270; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: { - this.state = 8267; + this.state = 8268; this.expression(); } break; case 2: { - this.state = 8268; + this.state = 8269; this.match(PostgreSqlParser.KW_ALL); } break; @@ -52831,21 +52839,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8273; + this.state = 8274; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8275; + this.state = 8276; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 8274; + this.state = 8275; this.opt_fetch_direction(); } break; } - this.state = 8277; - this.cursor_variable(); this.state = 8278; + this.cursor_variable(); + this.state = 8279; this.match(PostgreSqlParser.SEMI); } } @@ -52870,81 +52878,81 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8281; + this.state = 8282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8280; + this.state = 8281; this.with_clause(); } } - this.state = 8283; - this.match(PostgreSqlParser.KW_MERGE); this.state = 8284; + this.match(PostgreSqlParser.KW_MERGE); + this.state = 8285; this.match(PostgreSqlParser.KW_INTO); - this.state = 8286; + this.state = 8287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8285; + this.state = 8286; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8288; + this.state = 8289; this.table_name(); - this.state = 8290; + this.state = 8291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8289; + this.state = 8290; this.match(PostgreSqlParser.STAR); } } - this.state = 8296; + this.state = 8297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8293; + this.state = 8294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8292; + this.state = 8293; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8295; + this.state = 8296; this.colid(); } } - this.state = 8298; - this.match(PostgreSqlParser.KW_USING); this.state = 8299; - this.data_source(); + this.match(PostgreSqlParser.KW_USING); this.state = 8300; - this.match(PostgreSqlParser.KW_ON); + this.data_source(); this.state = 8301; + this.match(PostgreSqlParser.KW_ON); + this.state = 8302; this.expression(); - this.state = 8303; + this.state = 8304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8302; + this.state = 8303; this.merge_when_clause(); } } - this.state = 8305; + this.state = 8306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -52971,29 +52979,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8318; + this.state = 8319; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { case 1: { - this.state = 8308; + this.state = 8309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8307; + this.state = 8308; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8310; + this.state = 8311; this.table_name(); - this.state = 8312; + this.state = 8313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8311; + this.state = 8312; this.match(PostgreSqlParser.STAR); } } @@ -53002,18 +53010,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8316; + this.state = 8317; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1154, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { case 1: { - this.state = 8314; + this.state = 8315; this.select_no_parens(); } break; case 2: { - this.state = 8315; + this.state = 8316; this.values_clause(); } break; @@ -53021,22 +53029,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8324; + this.state = 8325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8321; + this.state = 8322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8320; + this.state = 8321; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8323; + this.state = 8324; this.colid(); } } @@ -53062,50 +53070,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 904, PostgreSqlParser.RULE_merge_when_clause); let _la: number; try { - this.state = 8352; + this.state = 8353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8326; - this.match(PostgreSqlParser.KW_WHEN); this.state = 8327; + this.match(PostgreSqlParser.KW_WHEN); + this.state = 8328; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8330; + this.state = 8331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8328; - this.match(PostgreSqlParser.KW_AND); this.state = 8329; + this.match(PostgreSqlParser.KW_AND); + this.state = 8330; this.expression(); } } - this.state = 8332; + this.state = 8333; this.match(PostgreSqlParser.KW_THEN); - this.state = 8337; + this.state = 8338; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8333; + this.state = 8334; this.merge_update(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8334; + this.state = 8335; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8335; - this.match(PostgreSqlParser.KW_DO); this.state = 8336; + this.match(PostgreSqlParser.KW_DO); + this.state = 8337; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -53117,40 +53125,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8339; - this.match(PostgreSqlParser.KW_WHEN); this.state = 8340; - this.match(PostgreSqlParser.KW_NOT); + this.match(PostgreSqlParser.KW_WHEN); this.state = 8341; + this.match(PostgreSqlParser.KW_NOT); + this.state = 8342; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8344; + this.state = 8345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8342; - this.match(PostgreSqlParser.KW_AND); this.state = 8343; + this.match(PostgreSqlParser.KW_AND); + this.state = 8344; this.expression(); } } - this.state = 8346; + this.state = 8347; this.match(PostgreSqlParser.KW_THEN); - this.state = 8350; + this.state = 8351; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8347; + this.state = 8348; this.merge_insert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8348; - this.match(PostgreSqlParser.KW_DO); this.state = 8349; + this.match(PostgreSqlParser.KW_DO); + this.state = 8350; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -53182,26 +53190,26 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8354; + this.state = 8355; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8356; + this.state = 8357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8355; + this.state = 8356; this.opt_column_list(); } } - this.state = 8361; + this.state = 8362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8358; - this.match(PostgreSqlParser.KW_OVERRIDING); this.state = 8359; + this.match(PostgreSqlParser.KW_OVERRIDING); + this.state = 8360; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -53210,12 +53218,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8360; + this.state = 8361; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8363; + this.state = 8364; this.default_values_or_values(); } } @@ -53241,57 +53249,57 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8365; - this.match(PostgreSqlParser.KW_UPDATE); this.state = 8366; + this.match(PostgreSqlParser.KW_UPDATE); + this.state = 8367; this.match(PostgreSqlParser.KW_SET); - this.state = 8384; + this.state = 8385; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8384; + this.state = 8385; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { case 1: { - this.state = 8367; - this.column_name(); this.state = 8368; - this.match(PostgreSqlParser.EQUAL); + this.column_name(); this.state = 8369; + this.match(PostgreSqlParser.EQUAL); + this.state = 8370; this.exprofdefault(); } break; case 2: { - this.state = 8371; - this.opt_column_list(); this.state = 8372; - this.match(PostgreSqlParser.EQUAL); + this.opt_column_list(); this.state = 8373; - this.match(PostgreSqlParser.OPEN_PAREN); + this.match(PostgreSqlParser.EQUAL); this.state = 8374; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8375; this.exprofdefault(); - this.state = 8379; + this.state = 8380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8375; - this.match(PostgreSqlParser.COMMA); this.state = 8376; + this.match(PostgreSqlParser.COMMA); + this.state = 8377; this.exprofdefault(); } } - this.state = 8381; + this.state = 8382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8382; + this.state = 8383; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -53301,9 +53309,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 8386; + this.state = 8387; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -53326,44 +53334,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 910, PostgreSqlParser.RULE_default_values_or_values); let _la: number; try { - this.state = 8402; + this.state = 8403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8388; - this.match(PostgreSqlParser.KW_VALUES); this.state = 8389; - this.match(PostgreSqlParser.OPEN_PAREN); + this.match(PostgreSqlParser.KW_VALUES); this.state = 8390; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 8391; this.exprofdefault(); - this.state = 8395; + this.state = 8396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8391; - this.match(PostgreSqlParser.COMMA); this.state = 8392; + this.match(PostgreSqlParser.COMMA); + this.state = 8393; this.exprofdefault(); } } - this.state = 8397; + this.state = 8398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8398; + this.state = 8399; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8400; - this.match(PostgreSqlParser.KW_DEFAULT); this.state = 8401; + this.match(PostgreSqlParser.KW_DEFAULT); + this.state = 8402; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -53389,20 +53397,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExprofdefaultContext(this.context, this.state); this.enterRule(localContext, 912, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8406; + this.state = 8407; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1170, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8404; + this.state = 8405; this.sortby(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8405; + this.state = 8406; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -53428,11 +53436,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8408; - this.match(PostgreSqlParser.KW_CLOSE); this.state = 8409; - this.cursor_variable(); + this.match(PostgreSqlParser.KW_CLOSE); this.state = 8410; + this.cursor_variable(); + this.state = 8411; this.match(PostgreSqlParser.SEMI); } } @@ -53456,9 +53464,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8412; - this.match(PostgreSqlParser.KW_NULL); this.state = 8413; + this.match(PostgreSqlParser.KW_NULL); + this.state = 8414; this.match(PostgreSqlParser.SEMI); } } @@ -53483,7 +53491,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8415; + this.state = 8416; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -53492,29 +53500,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8421; + this.state = 8422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8416; + this.state = 8417; this.match(PostgreSqlParser.KW_AND); - this.state = 8418; + this.state = 8419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8417; + this.state = 8418; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8420; + this.state = 8421; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8423; + this.state = 8424; this.match(PostgreSqlParser.SEMI); } } @@ -53536,30 +53544,30 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Stmt_setContext(this.context, this.state); this.enterRule(localContext, 920, PostgreSqlParser.RULE_stmt_set); try { - this.state = 8437; + this.state = 8438; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8425; - this.match(PostgreSqlParser.KW_SET); this.state = 8426; - this.any_name(); + this.match(PostgreSqlParser.KW_SET); this.state = 8427; - this.match(PostgreSqlParser.KW_TO); + this.any_name(); this.state = 8428; - this.match(PostgreSqlParser.KW_DEFAULT); + this.match(PostgreSqlParser.KW_TO); this.state = 8429; + this.match(PostgreSqlParser.KW_DEFAULT); + this.state = 8430; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8431; + this.state = 8432; this.match(PostgreSqlParser.KW_RESET); - this.state = 8434; + this.state = 8435; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53957,20 +53965,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8432; + this.state = 8433; this.any_name(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8433; + this.state = 8434; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8436; + this.state = 8437; this.match(PostgreSqlParser.SEMI); } break; @@ -53996,7 +54004,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Cursor_variableContext(this.context, this.state); this.enterRule(localContext, 922, PostgreSqlParser.RULE_cursor_variable); try { - this.state = 8441; + this.state = 8442; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -54395,14 +54403,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8439; + this.state = 8440; this.colid(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8440; + this.state = 8441; this.match(PostgreSqlParser.PARAM); } break; @@ -54432,57 +54440,57 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8443; + this.state = 8444; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8460; + this.state = 8461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8444; + this.state = 8445; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8445; + this.state = 8446; this.proc_condition(); - this.state = 8450; + this.state = 8451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8446; - this.match(PostgreSqlParser.KW_OR); this.state = 8447; + this.match(PostgreSqlParser.KW_OR); + this.state = 8448; this.proc_condition(); } } - this.state = 8452; + this.state = 8453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8453; + this.state = 8454; this.match(PostgreSqlParser.KW_THEN); - this.state = 8457; + this.state = 8458; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8454; + this.state = 8455; this.proc_stmt(); } } } - this.state = 8459; + this.state = 8460; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context); } } } - this.state = 8462; + this.state = 8463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -54506,22 +54514,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Proc_conditionContext(this.context, this.state); this.enterRule(localContext, 926, PostgreSqlParser.RULE_proc_condition); try { - this.state = 8467; + this.state = 8468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1180, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8464; + this.state = 8465; this.any_identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8465; - this.match(PostgreSqlParser.KW_SQLSTATE); this.state = 8466; + this.match(PostgreSqlParser.KW_SQLSTATE); + this.state = 8467; this.sconst(); } break; @@ -54545,20 +54553,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Any_identifierContext(this.context, this.state); this.enterRule(localContext, 928, PostgreSqlParser.RULE_any_identifier); try { - this.state = 8471; + this.state = 8472; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1180, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8469; + this.state = 8470; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8470; + this.state = 8471; this.unreserved_keyword(); } break; @@ -54585,74 +54593,74 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8474; + this.state = 8475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context) ) { case 1: { - this.state = 8473; + this.state = 8474; this.target_list(); } break; } - this.state = 8477; + this.state = 8478; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { case 1: { - this.state = 8476; + this.state = 8477; this.into_clause(); } break; } - this.state = 8480; + this.state = 8481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8479; + this.state = 8480; this.from_clause(); } } - this.state = 8483; + this.state = 8484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8482; + this.state = 8483; this.where_clause(); } } - this.state = 8486; + this.state = 8487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8485; + this.state = 8486; this.group_clause(); } } - this.state = 8490; + this.state = 8491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8488; - this.match(PostgreSqlParser.KW_HAVING); this.state = 8489; + this.match(PostgreSqlParser.KW_HAVING); + this.state = 8490; this.expression(); } } - this.state = 8493; + this.state = 8494; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1187, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1188, this.context) ) { case 1: { - this.state = 8492; + this.state = 8493; this.window_clause(); } break; @@ -54731,7 +54739,7 @@ export class PostgreSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,590,8496,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,590,8497,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, @@ -55475,406 +55483,406 @@ export class PostgreSqlParser extends SQLParserBase { 364,1,365,1,365,1,365,5,365,7426,8,365,10,365,12,365,7429,9,365, 1,366,1,366,1,366,1,366,1,366,3,366,7436,8,366,1,367,1,367,3,367, 7440,8,367,1,368,1,368,1,368,5,368,7445,8,368,10,368,12,368,7448, - 9,368,1,369,1,369,1,369,1,369,1,369,3,369,7455,8,369,1,370,1,370, - 1,370,1,370,1,370,5,370,7462,8,370,10,370,12,370,7465,9,370,3,370, - 7467,8,370,1,370,1,370,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,3,371,7479,8,371,1,372,1,372,1,373,1,373,1,373,1,373,1,373, - 3,373,7488,8,373,1,373,1,373,1,373,1,373,1,373,3,373,7495,8,373, - 1,373,1,373,1,373,1,373,1,373,1,373,1,373,3,373,7504,8,373,1,374, - 1,374,1,374,1,374,1,374,1,375,1,375,1,375,3,375,7514,8,375,1,375, - 1,375,1,375,3,375,7519,8,375,1,375,1,375,3,375,7523,8,375,3,375, - 7525,8,375,1,375,3,375,7528,8,375,1,376,4,376,7531,8,376,11,376, - 12,376,7532,1,377,5,377,7536,8,377,10,377,12,377,7539,9,377,1,378, - 1,378,1,378,5,378,7544,8,378,10,378,12,378,7547,9,378,1,379,1,379, - 1,379,1,379,1,379,3,379,7554,8,379,1,379,3,379,7557,8,379,1,380, - 1,380,1,380,5,380,7562,8,380,10,380,12,380,7565,9,380,1,381,1,381, - 1,381,5,381,7570,8,381,10,381,12,381,7573,9,381,1,382,1,382,1,382, - 5,382,7578,8,382,10,382,12,382,7581,9,382,1,383,1,383,1,383,5,383, - 7586,8,383,10,383,12,383,7589,9,383,1,384,1,384,1,385,1,385,1,386, - 1,386,1,387,1,387,1,388,1,388,1,389,1,389,1,390,1,390,3,390,7605, - 8,390,1,391,1,391,1,391,5,391,7610,8,391,10,391,12,391,7613,9,391, - 1,392,1,392,1,392,5,392,7618,8,392,10,392,12,392,7621,9,392,1,393, - 1,393,1,394,1,394,1,395,1,395,1,396,1,396,1,397,1,397,1,398,1,398, - 1,398,1,398,3,398,7637,8,398,1,399,1,399,1,399,1,399,3,399,7643, - 8,399,1,400,1,400,1,400,1,400,3,400,7649,8,400,1,401,1,401,1,402, - 1,402,1,402,1,402,3,402,7657,8,402,1,403,1,403,1,403,1,403,3,403, - 7663,8,403,1,404,1,404,1,404,3,404,7668,8,404,1,405,1,405,1,405, - 1,405,5,405,7674,8,405,10,405,12,405,7677,9,405,1,405,1,405,3,405, - 7681,8,405,1,406,3,406,7684,8,406,1,406,1,406,1,407,1,407,1,407, - 1,407,1,407,3,407,7693,8,407,1,408,1,408,1,408,5,408,7698,8,408, - 10,408,12,408,7701,9,408,1,409,1,409,3,409,7705,8,409,1,410,1,410, - 3,410,7709,8,410,1,411,1,411,1,411,3,411,7714,8,411,1,412,1,412, - 1,412,1,412,3,412,7720,8,412,1,413,1,413,1,413,3,413,7725,8,413, - 1,413,1,413,1,413,1,413,1,413,1,413,3,413,7733,8,413,1,414,1,414, - 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, + 9,368,1,369,1,369,1,369,1,369,3,369,7454,8,369,3,369,7456,8,369, + 1,370,1,370,1,370,1,370,1,370,5,370,7463,8,370,10,370,12,370,7466, + 9,370,3,370,7468,8,370,1,370,1,370,1,371,1,371,1,371,1,371,1,371, + 1,371,1,371,1,371,3,371,7480,8,371,1,372,1,372,1,373,1,373,1,373, + 1,373,1,373,3,373,7489,8,373,1,373,1,373,1,373,1,373,1,373,3,373, + 7496,8,373,1,373,1,373,1,373,1,373,1,373,1,373,1,373,3,373,7505, + 8,373,1,374,1,374,1,374,1,374,1,374,1,375,1,375,1,375,3,375,7515, + 8,375,1,375,1,375,1,375,3,375,7520,8,375,1,375,1,375,3,375,7524, + 8,375,3,375,7526,8,375,1,375,3,375,7529,8,375,1,376,4,376,7532,8, + 376,11,376,12,376,7533,1,377,5,377,7537,8,377,10,377,12,377,7540, + 9,377,1,378,1,378,1,378,5,378,7545,8,378,10,378,12,378,7548,9,378, + 1,379,1,379,1,379,1,379,1,379,3,379,7555,8,379,1,379,3,379,7558, + 8,379,1,380,1,380,1,380,5,380,7563,8,380,10,380,12,380,7566,9,380, + 1,381,1,381,1,381,5,381,7571,8,381,10,381,12,381,7574,9,381,1,382, + 1,382,1,382,5,382,7579,8,382,10,382,12,382,7582,9,382,1,383,1,383, + 1,383,5,383,7587,8,383,10,383,12,383,7590,9,383,1,384,1,384,1,385, + 1,385,1,386,1,386,1,387,1,387,1,388,1,388,1,389,1,389,1,390,1,390, + 3,390,7606,8,390,1,391,1,391,1,391,5,391,7611,8,391,10,391,12,391, + 7614,9,391,1,392,1,392,1,392,5,392,7619,8,392,10,392,12,392,7622, + 9,392,1,393,1,393,1,394,1,394,1,395,1,395,1,396,1,396,1,397,1,397, + 1,398,1,398,1,398,1,398,3,398,7638,8,398,1,399,1,399,1,399,1,399, + 3,399,7644,8,399,1,400,1,400,1,400,1,400,3,400,7650,8,400,1,401, + 1,401,1,402,1,402,1,402,1,402,3,402,7658,8,402,1,403,1,403,1,403, + 1,403,3,403,7664,8,403,1,404,1,404,1,404,3,404,7669,8,404,1,405, + 1,405,1,405,1,405,5,405,7675,8,405,10,405,12,405,7678,9,405,1,405, + 1,405,3,405,7682,8,405,1,406,3,406,7685,8,406,1,406,1,406,1,407, + 1,407,1,407,1,407,1,407,3,407,7694,8,407,1,408,1,408,1,408,5,408, + 7699,8,408,10,408,12,408,7702,9,408,1,409,1,409,3,409,7706,8,409, + 1,410,1,410,3,410,7710,8,410,1,411,1,411,1,411,3,411,7715,8,411, + 1,412,1,412,1,412,1,412,3,412,7721,8,412,1,413,1,413,1,413,3,413, + 7726,8,413,1,413,1,413,1,413,1,413,1,413,1,413,3,413,7734,8,413, + 1,414,1,414,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, - 1,415,1,415,1,415,1,415,1,415,1,415,1,415,3,415,7788,8,415,1,416, - 1,416,1,417,1,417,1,418,3,418,7795,8,418,1,418,1,418,1,418,1,418, - 4,418,7801,8,418,11,418,12,418,7802,3,418,7805,8,418,3,418,7807, - 8,418,1,418,1,418,5,418,7811,8,418,10,418,12,418,7814,9,418,1,418, - 3,418,7817,8,418,1,418,1,418,3,418,7821,8,418,1,419,1,419,1,419, - 1,419,1,420,1,420,1,420,1,420,1,420,3,420,7832,8,420,1,420,3,420, - 7835,8,420,1,420,1,420,3,420,7839,8,420,1,420,1,420,3,420,7843,8, - 420,1,420,1,420,3,420,7847,8,420,1,420,3,420,7850,8,420,1,420,3, - 420,7853,8,420,1,420,3,420,7856,8,420,1,420,1,420,1,420,1,420,1, - 420,5,420,7863,8,420,10,420,12,420,7866,9,420,1,420,1,420,3,420, - 7870,8,420,1,420,1,420,3,420,7874,8,420,1,420,1,420,1,421,1,421, - 1,421,1,422,1,422,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423, + 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,3,415,7789, + 8,415,1,416,1,416,1,417,1,417,1,418,3,418,7796,8,418,1,418,1,418, + 1,418,1,418,4,418,7802,8,418,11,418,12,418,7803,3,418,7806,8,418, + 3,418,7808,8,418,1,418,1,418,5,418,7812,8,418,10,418,12,418,7815, + 9,418,1,418,3,418,7818,8,418,1,418,1,418,3,418,7822,8,418,1,419, + 1,419,1,419,1,419,1,420,1,420,1,420,1,420,1,420,3,420,7833,8,420, + 1,420,3,420,7836,8,420,1,420,1,420,3,420,7840,8,420,1,420,1,420, + 3,420,7844,8,420,1,420,1,420,3,420,7848,8,420,1,420,3,420,7851,8, + 420,1,420,3,420,7854,8,420,1,420,3,420,7857,8,420,1,420,1,420,1, + 420,1,420,1,420,5,420,7864,8,420,10,420,12,420,7867,9,420,1,420, + 1,420,3,420,7871,8,420,1,420,1,420,3,420,7875,8,420,1,420,1,420, + 1,421,1,421,1,421,1,422,1,422,1,423,1,423,1,423,1,423,1,423,1,423, 1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423, - 1,423,1,423,1,423,1,423,1,423,3,423,7907,8,423,1,424,1,424,1,424, - 1,424,1,425,1,425,1,425,1,425,3,425,7917,8,425,1,425,1,425,3,425, - 7921,8,425,1,425,1,425,1,425,1,425,3,425,7927,8,425,1,425,1,425, - 1,425,3,425,7932,8,425,1,426,1,426,1,426,1,426,1,426,1,427,1,427, - 3,427,7941,8,427,1,427,1,427,1,427,1,427,5,427,7947,8,427,10,427, - 12,427,7950,9,427,1,427,1,427,1,428,1,428,1,428,1,428,1,429,1,429, - 3,429,7960,8,429,1,429,1,429,1,429,1,429,5,429,7966,8,429,10,429, - 12,429,7969,9,429,1,430,1,430,1,430,1,430,5,430,7975,8,430,10,430, - 12,430,7978,9,430,1,430,1,430,1,430,1,430,5,430,7984,8,430,10,430, - 12,430,7987,9,430,5,430,7989,8,430,10,430,12,430,7992,9,430,1,430, - 3,430,7995,8,430,1,430,1,430,1,430,1,430,1,431,1,431,5,431,8003, - 8,431,10,431,12,431,8006,9,431,1,432,1,432,3,432,8010,8,432,1,432, - 1,432,1,432,1,432,5,432,8016,8,432,10,432,12,432,8019,9,432,4,432, - 8021,8,432,11,432,12,432,8022,1,432,3,432,8026,8,432,1,432,1,432, - 1,432,1,432,1,433,3,433,8033,8,433,1,433,1,433,1,433,1,433,3,433, - 8039,8,433,1,433,1,433,1,434,1,434,1,434,1,434,3,434,8047,8,434, - 1,434,1,434,1,434,1,434,1,434,1,434,3,434,8055,8,434,1,434,3,434, - 8058,8,434,1,434,1,434,1,434,1,434,1,434,3,434,8065,8,434,3,434, - 8067,8,434,1,435,3,435,8070,8,435,1,435,1,435,1,435,1,435,3,435, - 8076,8,435,1,435,1,435,1,435,1,435,1,435,1,436,1,436,3,436,8085, - 8,436,1,436,1,436,3,436,8089,8,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,3,437,8103,8,437,1,437, - 3,437,8106,8,437,3,437,8108,8,437,1,437,1,437,1,438,1,438,3,438, - 8114,8,438,1,438,1,438,1,438,1,438,1,438,1,438,4,438,8122,8,438, - 11,438,12,438,8123,3,438,8126,8,438,3,438,8128,8,438,1,438,1,438, - 1,438,1,438,5,438,8134,8,438,10,438,12,438,8137,9,438,3,438,8139, - 8,438,1,438,3,438,8142,8,438,1,439,1,439,1,439,1,439,1,440,1,440, - 1,440,1,440,3,440,8152,8,440,1,440,1,440,1,441,1,441,5,441,8158, - 8,441,10,441,12,441,8161,9,441,1,441,1,441,1,441,3,441,8166,8,441, - 1,441,1,441,1,442,1,442,3,442,8172,8,442,1,442,1,442,1,443,1,443, - 1,443,3,443,8179,8,443,1,443,1,443,3,443,8183,8,443,1,443,1,443, - 3,443,8187,8,443,1,443,3,443,8190,8,443,1,443,3,443,8193,8,443,1, - 443,1,443,1,444,1,444,3,444,8199,8,444,1,444,1,444,1,445,1,445,1, - 445,3,445,8206,8,445,1,445,3,445,8209,8,445,1,445,1,445,1,445,1, - 445,1,445,1,445,3,445,8217,8,445,3,445,8219,8,445,1,445,1,445,1, - 445,1,445,1,445,5,445,8226,8,445,10,445,12,445,8229,9,445,1,445, - 1,445,3,445,8233,8,445,3,445,8235,8,445,1,445,1,445,1,446,1,446, - 1,446,3,446,8242,8,446,1,446,1,446,1,447,1,447,3,447,8248,8,447, - 1,447,3,447,8251,8,447,1,447,1,447,1,447,1,447,1,447,1,448,1,448, - 1,448,1,448,1,448,3,448,8263,8,448,1,448,1,448,1,448,1,448,1,448, - 3,448,8270,8,448,3,448,8272,8,448,1,449,1,449,3,449,8276,8,449,1, - 449,1,449,1,449,1,450,3,450,8282,8,450,1,450,1,450,1,450,3,450,8287, - 8,450,1,450,1,450,3,450,8291,8,450,1,450,3,450,8294,8,450,1,450, - 3,450,8297,8,450,1,450,1,450,1,450,1,450,1,450,4,450,8304,8,450, - 11,450,12,450,8305,1,451,3,451,8309,8,451,1,451,1,451,3,451,8313, - 8,451,1,451,1,451,3,451,8317,8,451,3,451,8319,8,451,1,451,3,451, - 8322,8,451,1,451,3,451,8325,8,451,1,452,1,452,1,452,1,452,3,452, - 8331,8,452,1,452,1,452,1,452,1,452,1,452,3,452,8338,8,452,1,452, - 1,452,1,452,1,452,1,452,3,452,8345,8,452,1,452,1,452,1,452,1,452, - 3,452,8351,8,452,3,452,8353,8,452,1,453,1,453,3,453,8357,8,453,1, - 453,1,453,1,453,3,453,8362,8,453,1,453,1,453,1,454,1,454,1,454,1, - 454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,5,454,8378,8, - 454,10,454,12,454,8381,9,454,1,454,1,454,4,454,8385,8,454,11,454, - 12,454,8386,1,455,1,455,1,455,1,455,1,455,5,455,8394,8,455,10,455, - 12,455,8397,9,455,1,455,1,455,1,455,1,455,3,455,8403,8,455,1,456, - 1,456,3,456,8407,8,456,1,457,1,457,1,457,1,457,1,458,1,458,1,458, - 1,459,1,459,1,459,3,459,8419,8,459,1,459,3,459,8422,8,459,1,459, - 1,459,1,460,1,460,1,460,1,460,1,460,1,460,1,460,1,460,1,460,3,460, - 8435,8,460,1,460,3,460,8438,8,460,1,461,1,461,3,461,8442,8,461,1, - 462,1,462,1,462,1,462,1,462,5,462,8449,8,462,10,462,12,462,8452, - 9,462,1,462,1,462,5,462,8456,8,462,10,462,12,462,8459,9,462,4,462, - 8461,8,462,11,462,12,462,8462,1,463,1,463,1,463,3,463,8468,8,463, - 1,464,1,464,3,464,8472,8,464,1,465,3,465,8475,8,465,1,465,3,465, - 8478,8,465,1,465,3,465,8481,8,465,1,465,3,465,8484,8,465,1,465,3, - 465,8487,8,465,1,465,1,465,3,465,8491,8,465,1,465,3,465,8494,8,465, - 1,465,0,3,676,680,682,466,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,0,118,2,0,195,195,364,364,2, - 0,66,66,318,318,2,0,99,99,318,318,2,0,134,134,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,158,158,277,277,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,4,0,78,78,183,183,197,197,298, - 298,2,0,213,213,254,254,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,2,0,105,105, - 379,379,2,0,260,260,262,262,3,0,173,173,260,260,262,262,1,0,12,13, - 2,0,64,64,375,375,2,0,156,156,206,206,2,0,189,189,360,360,2,0,215, - 215,373,373,3,0,133,133,191,191,333,333,5,0,30,30,88,88,182,182, - 241,241,369,369,2,0,9,9,94,94,2,0,92,92,226,226,1,0,448,449,2,0, - 92,92,414,414,2,0,341,341,414,414,4,0,163,163,185,185,283,283,353, - 353,2,0,135,135,145,145,2,0,211,211,278,278,3,0,321,321,357,357, - 445,445,3,0,66,66,99,99,318,318,5,0,108,108,168,168,226,226,328, - 328,342,342,2,0,167,167,314,314,2,0,61,61,265,265,4,0,207,207,249, - 249,268,268,293,293,2,0,130,130,307,307,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,455,455,457,457,5,0,212,212, - 329,329,350,350,361,361,455,456,2,0,37,37,55,55,2,0,207,207,249, - 249,2,0,10,10,53,53,2,0,181,181,243,243,2,0,170,170,320,320,2,0, - 141,141,223,223,5,0,108,108,168,168,189,189,342,342,360,360,2,0, - 226,226,328,328,2,0,163,163,185,185,2,0,186,186,193,193,4,0,88,88, - 182,182,241,241,369,369,2,0,137,137,242,242,2,0,161,161,319,319, - 4,0,129,129,161,161,319,319,454,454,2,0,356,356,380,380,2,0,81,81, - 382,382,2,0,151,151,254,254,2,0,133,133,138,138,1,0,31,32,2,0,128, - 128,547,547,2,0,60,60,96,96,2,0,99,99,349,349,2,0,131,131,414,414, - 2,0,201,201,334,334,3,0,59,59,70,70,97,97,2,0,30,30,56,56,1,0,527, - 528,2,0,207,207,268,268,2,0,320,320,414,414,2,0,571,571,573,573, - 1,0,468,469,4,0,113,113,115,115,119,119,126,126,2,0,360,360,477, - 477,2,0,394,395,409,409,2,0,391,392,406,406,1,0,391,392,1,0,418, - 419,5,0,10,10,16,17,21,21,23,23,25,25,3,0,9,9,14,14,27,27,2,0,98, - 98,396,396,2,0,50,51,75,76,2,0,41,41,420,420,3,0,39,39,73,73,95, - 95,4,0,393,393,399,399,404,404,425,425,2,0,292,292,347,347,2,0,166, - 166,188,188,2,0,304,304,450,450,3,0,299,299,320,320,481,481,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,114,114,120,120,2,0,20,20,22,22,1,0,483,486,17,0, - 53,53,116,116,123,124,129,228,238,386,433,452,455,469,471,471,473, - 473,475,475,477,488,490,502,504,504,506,518,520,520,524,524,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,434,434,501,501,2,0,167,167, - 507,507,1,0,512,517,2,0,144,144,210,210,9930,0,935,1,0,0,0,2,940, - 1,0,0,0,4,1064,1,0,0,0,6,1066,1,0,0,0,8,1069,1,0,0,0,10,1119,1,0, - 0,0,12,1129,1,0,0,0,14,1131,1,0,0,0,16,1143,1,0,0,0,18,1155,1,0, - 0,0,20,1166,1,0,0,0,22,1200,1,0,0,0,24,1244,1,0,0,0,26,1246,1,0, - 0,0,28,1258,1,0,0,0,30,1265,1,0,0,0,32,1284,1,0,0,0,34,1292,1,0, - 0,0,36,1294,1,0,0,0,38,1308,1,0,0,0,40,1312,1,0,0,0,42,1349,1,0, - 0,0,44,1351,1,0,0,0,46,1359,1,0,0,0,48,1369,1,0,0,0,50,1376,1,0, - 0,0,52,1384,1,0,0,0,54,1390,1,0,0,0,56,1406,1,0,0,0,58,1410,1,0, - 0,0,60,1412,1,0,0,0,62,1424,1,0,0,0,64,1429,1,0,0,0,66,1434,1,0, - 0,0,68,1436,1,0,0,0,70,1448,1,0,0,0,72,1456,1,0,0,0,74,1458,1,0, - 0,0,76,1582,1,0,0,0,78,1584,1,0,0,0,80,1601,1,0,0,0,82,1603,1,0, - 0,0,84,1617,1,0,0,0,86,1619,1,0,0,0,88,1633,1,0,0,0,90,1635,1,0, - 0,0,92,1872,1,0,0,0,94,1879,1,0,0,0,96,1881,1,0,0,0,98,1883,1,0, - 0,0,100,1886,1,0,0,0,102,1897,1,0,0,0,104,1900,1,0,0,0,106,1936, - 1,0,0,0,108,1938,1,0,0,0,110,1979,1,0,0,0,112,1981,1,0,0,0,114,2035, - 1,0,0,0,116,2076,1,0,0,0,118,2078,1,0,0,0,120,2095,1,0,0,0,122,2176, - 1,0,0,0,124,2178,1,0,0,0,126,2189,1,0,0,0,128,2212,1,0,0,0,130,2230, - 1,0,0,0,132,2232,1,0,0,0,134,2267,1,0,0,0,136,2360,1,0,0,0,138,2365, - 1,0,0,0,140,2367,1,0,0,0,142,2465,1,0,0,0,144,2467,1,0,0,0,146,2471, - 1,0,0,0,148,2482,1,0,0,0,150,2490,1,0,0,0,152,2493,1,0,0,0,154,2496, - 1,0,0,0,156,2514,1,0,0,0,158,2516,1,0,0,0,160,2520,1,0,0,0,162,2533, - 1,0,0,0,164,2535,1,0,0,0,166,2540,1,0,0,0,168,2560,1,0,0,0,170,2568, - 1,0,0,0,172,2575,1,0,0,0,174,2577,1,0,0,0,176,2586,1,0,0,0,178,2589, - 1,0,0,0,180,2593,1,0,0,0,182,2597,1,0,0,0,184,2622,1,0,0,0,186,2632, - 1,0,0,0,188,2646,1,0,0,0,190,2662,1,0,0,0,192,2668,1,0,0,0,194,2695, - 1,0,0,0,196,2705,1,0,0,0,198,2721,1,0,0,0,200,2765,1,0,0,0,202,2772, - 1,0,0,0,204,2774,1,0,0,0,206,2800,1,0,0,0,208,2811,1,0,0,0,210,2830, - 1,0,0,0,212,2841,1,0,0,0,214,2879,1,0,0,0,216,2900,1,0,0,0,218,2902, - 1,0,0,0,220,2922,1,0,0,0,222,2934,1,0,0,0,224,2946,1,0,0,0,226,2949, - 1,0,0,0,228,2952,1,0,0,0,230,2972,1,0,0,0,232,2977,1,0,0,0,234,3026, - 1,0,0,0,236,3028,1,0,0,0,238,3051,1,0,0,0,240,3067,1,0,0,0,242,3079, - 1,0,0,0,244,3106,1,0,0,0,246,3121,1,0,0,0,248,3184,1,0,0,0,250,3186, - 1,0,0,0,252,3191,1,0,0,0,254,3197,1,0,0,0,256,3284,1,0,0,0,258,3290, - 1,0,0,0,260,3292,1,0,0,0,262,3308,1,0,0,0,264,3310,1,0,0,0,266,3319, - 1,0,0,0,268,3323,1,0,0,0,270,3336,1,0,0,0,272,3348,1,0,0,0,274,3350, - 1,0,0,0,276,3372,1,0,0,0,278,3384,1,0,0,0,280,3395,1,0,0,0,282,3486, - 1,0,0,0,284,3488,1,0,0,0,286,3499,1,0,0,0,288,3510,1,0,0,0,290,3512, - 1,0,0,0,292,3538,1,0,0,0,294,3540,1,0,0,0,296,3544,1,0,0,0,298,3594, - 1,0,0,0,300,3596,1,0,0,0,302,3602,1,0,0,0,304,3627,1,0,0,0,306,3631, - 1,0,0,0,308,3845,1,0,0,0,310,3863,1,0,0,0,312,3889,1,0,0,0,314,3891, - 1,0,0,0,316,3899,1,0,0,0,318,3905,1,0,0,0,320,3909,1,0,0,0,322,3929, - 1,0,0,0,324,3935,1,0,0,0,326,4002,1,0,0,0,328,4033,1,0,0,0,330,4079, - 1,0,0,0,332,4081,1,0,0,0,334,4083,1,0,0,0,336,4094,1,0,0,0,338,4131, - 1,0,0,0,340,4133,1,0,0,0,342,4139,1,0,0,0,344,4189,1,0,0,0,346,4192, - 1,0,0,0,348,4206,1,0,0,0,350,4227,1,0,0,0,352,4251,1,0,0,0,354,4292, - 1,0,0,0,356,4294,1,0,0,0,358,4296,1,0,0,0,360,4336,1,0,0,0,362,4353, - 1,0,0,0,364,4373,1,0,0,0,366,4426,1,0,0,0,368,4429,1,0,0,0,370,4435, - 1,0,0,0,372,4443,1,0,0,0,374,4456,1,0,0,0,376,4458,1,0,0,0,378,4471, - 1,0,0,0,380,4473,1,0,0,0,382,4486,1,0,0,0,384,4496,1,0,0,0,386,4507, - 1,0,0,0,388,4518,1,0,0,0,390,4520,1,0,0,0,392,4525,1,0,0,0,394,4539, - 1,0,0,0,396,4571,1,0,0,0,398,4608,1,0,0,0,400,4610,1,0,0,0,402,4613, - 1,0,0,0,404,4616,1,0,0,0,406,4633,1,0,0,0,408,4654,1,0,0,0,410,4670, - 1,0,0,0,412,4686,1,0,0,0,414,4708,1,0,0,0,416,4713,1,0,0,0,418,4716, - 1,0,0,0,420,4724,1,0,0,0,422,4749,1,0,0,0,424,4752,1,0,0,0,426,4780, - 1,0,0,0,428,4785,1,0,0,0,430,4825,1,0,0,0,432,5037,1,0,0,0,434,5039, - 1,0,0,0,436,5127,1,0,0,0,438,5129,1,0,0,0,440,5135,1,0,0,0,442,5146, - 1,0,0,0,444,5156,1,0,0,0,446,5236,1,0,0,0,448,5238,1,0,0,0,450,5252, - 1,0,0,0,452,5274,1,0,0,0,454,5347,1,0,0,0,456,5349,1,0,0,0,458,5390, - 1,0,0,0,460,5392,1,0,0,0,462,5397,1,0,0,0,464,5400,1,0,0,0,466,5403, - 1,0,0,0,468,5453,1,0,0,0,470,5455,1,0,0,0,472,5466,1,0,0,0,474,5468, - 1,0,0,0,476,5478,1,0,0,0,478,5513,1,0,0,0,480,5516,1,0,0,0,482,5537, - 1,0,0,0,484,5547,1,0,0,0,486,5567,1,0,0,0,488,5573,1,0,0,0,490,5579, - 1,0,0,0,492,5584,1,0,0,0,494,5597,1,0,0,0,496,5624,1,0,0,0,498,5672, - 1,0,0,0,500,5674,1,0,0,0,502,5712,1,0,0,0,504,5714,1,0,0,0,506,5735, - 1,0,0,0,508,5755,1,0,0,0,510,5759,1,0,0,0,512,5774,1,0,0,0,514,5776, - 1,0,0,0,516,5780,1,0,0,0,518,5784,1,0,0,0,520,5792,1,0,0,0,522,5816, - 1,0,0,0,524,5818,1,0,0,0,526,5829,1,0,0,0,528,5837,1,0,0,0,530,5852, - 1,0,0,0,532,5877,1,0,0,0,534,5879,1,0,0,0,536,5883,1,0,0,0,538,5892, - 1,0,0,0,540,5932,1,0,0,0,542,5943,1,0,0,0,544,5951,1,0,0,0,546,5954, - 1,0,0,0,548,5958,1,0,0,0,550,5973,1,0,0,0,552,5998,1,0,0,0,554,6013, - 1,0,0,0,556,6039,1,0,0,0,558,6041,1,0,0,0,560,6064,1,0,0,0,562,6066, - 1,0,0,0,564,6074,1,0,0,0,566,6092,1,0,0,0,568,6116,1,0,0,0,570,6128, - 1,0,0,0,572,6132,1,0,0,0,574,6144,1,0,0,0,576,6164,1,0,0,0,578,6172, - 1,0,0,0,580,6186,1,0,0,0,582,6209,1,0,0,0,584,6211,1,0,0,0,586,6216, - 1,0,0,0,588,6226,1,0,0,0,590,6247,1,0,0,0,592,6249,1,0,0,0,594,6258, - 1,0,0,0,596,6269,1,0,0,0,598,6279,1,0,0,0,600,6281,1,0,0,0,602,6288, - 1,0,0,0,604,6319,1,0,0,0,606,6349,1,0,0,0,608,6351,1,0,0,0,610,6360, - 1,0,0,0,612,6363,1,0,0,0,614,6434,1,0,0,0,616,6458,1,0,0,0,618,6479, - 1,0,0,0,620,6481,1,0,0,0,622,6489,1,0,0,0,624,6506,1,0,0,0,626,6532, - 1,0,0,0,628,6534,1,0,0,0,630,6542,1,0,0,0,632,6549,1,0,0,0,634,6573, - 1,0,0,0,636,6579,1,0,0,0,638,6587,1,0,0,0,640,6590,1,0,0,0,642,6597, - 1,0,0,0,644,6605,1,0,0,0,646,6610,1,0,0,0,648,6640,1,0,0,0,650,6667, - 1,0,0,0,652,6695,1,0,0,0,654,6712,1,0,0,0,656,6718,1,0,0,0,658,6736, - 1,0,0,0,660,6738,1,0,0,0,662,6742,1,0,0,0,664,6759,1,0,0,0,666,6764, - 1,0,0,0,668,6802,1,0,0,0,670,6804,1,0,0,0,672,6808,1,0,0,0,674,6810, - 1,0,0,0,676,6819,1,0,0,0,678,6903,1,0,0,0,680,6909,1,0,0,0,682,7018, - 1,0,0,0,684,7050,1,0,0,0,686,7103,1,0,0,0,688,7107,1,0,0,0,690,7283, - 1,0,0,0,692,7285,1,0,0,0,694,7293,1,0,0,0,696,7298,1,0,0,0,698,7300, - 1,0,0,0,700,7308,1,0,0,0,702,7311,1,0,0,0,704,7320,1,0,0,0,706,7324, - 1,0,0,0,708,7329,1,0,0,0,710,7346,1,0,0,0,712,7373,1,0,0,0,714,7382, - 1,0,0,0,716,7384,1,0,0,0,718,7391,1,0,0,0,720,7395,1,0,0,0,722,7397, - 1,0,0,0,724,7405,1,0,0,0,726,7413,1,0,0,0,728,7420,1,0,0,0,730,7422, - 1,0,0,0,732,7435,1,0,0,0,734,7439,1,0,0,0,736,7441,1,0,0,0,738,7454, - 1,0,0,0,740,7456,1,0,0,0,742,7478,1,0,0,0,744,7480,1,0,0,0,746,7503, - 1,0,0,0,748,7505,1,0,0,0,750,7527,1,0,0,0,752,7530,1,0,0,0,754,7537, - 1,0,0,0,756,7540,1,0,0,0,758,7556,1,0,0,0,760,7558,1,0,0,0,762,7566, - 1,0,0,0,764,7574,1,0,0,0,766,7582,1,0,0,0,768,7590,1,0,0,0,770,7592, - 1,0,0,0,772,7594,1,0,0,0,774,7596,1,0,0,0,776,7598,1,0,0,0,778,7600, - 1,0,0,0,780,7602,1,0,0,0,782,7606,1,0,0,0,784,7614,1,0,0,0,786,7622, - 1,0,0,0,788,7624,1,0,0,0,790,7626,1,0,0,0,792,7628,1,0,0,0,794,7630, - 1,0,0,0,796,7636,1,0,0,0,798,7642,1,0,0,0,800,7648,1,0,0,0,802,7650, - 1,0,0,0,804,7656,1,0,0,0,806,7662,1,0,0,0,808,7664,1,0,0,0,810,7680, - 1,0,0,0,812,7683,1,0,0,0,814,7692,1,0,0,0,816,7694,1,0,0,0,818,7704, - 1,0,0,0,820,7708,1,0,0,0,822,7713,1,0,0,0,824,7719,1,0,0,0,826,7732, - 1,0,0,0,828,7734,1,0,0,0,830,7787,1,0,0,0,832,7789,1,0,0,0,834,7791, - 1,0,0,0,836,7794,1,0,0,0,838,7822,1,0,0,0,840,7826,1,0,0,0,842,7877, - 1,0,0,0,844,7880,1,0,0,0,846,7906,1,0,0,0,848,7908,1,0,0,0,850,7931, - 1,0,0,0,852,7933,1,0,0,0,854,7938,1,0,0,0,856,7953,1,0,0,0,858,7959, - 1,0,0,0,860,7970,1,0,0,0,862,8000,1,0,0,0,864,8007,1,0,0,0,866,8032, - 1,0,0,0,868,8042,1,0,0,0,870,8069,1,0,0,0,872,8082,1,0,0,0,874,8092, - 1,0,0,0,876,8111,1,0,0,0,878,8143,1,0,0,0,880,8147,1,0,0,0,882,8155, - 1,0,0,0,884,8169,1,0,0,0,886,8175,1,0,0,0,888,8196,1,0,0,0,890,8202, - 1,0,0,0,892,8241,1,0,0,0,894,8245,1,0,0,0,896,8271,1,0,0,0,898,8273, - 1,0,0,0,900,8281,1,0,0,0,902,8318,1,0,0,0,904,8352,1,0,0,0,906,8354, - 1,0,0,0,908,8365,1,0,0,0,910,8402,1,0,0,0,912,8406,1,0,0,0,914,8408, - 1,0,0,0,916,8412,1,0,0,0,918,8415,1,0,0,0,920,8437,1,0,0,0,922,8441, - 1,0,0,0,924,8443,1,0,0,0,926,8467,1,0,0,0,928,8471,1,0,0,0,930,8474, - 1,0,0,0,932,934,3,2,1,0,933,932,1,0,0,0,934,937,1,0,0,0,935,933, - 1,0,0,0,935,936,1,0,0,0,936,938,1,0,0,0,937,935,1,0,0,0,938,939, - 5,0,0,1,939,1,1,0,0,0,940,942,3,4,2,0,941,943,5,7,0,0,942,941,1, - 0,0,0,942,943,1,0,0,0,943,3,1,0,0,0,944,1065,3,278,139,0,945,1065, - 3,488,244,0,946,1065,3,484,242,0,947,1065,3,486,243,0,948,1065,3, - 352,176,0,949,1065,3,494,247,0,950,1065,3,292,146,0,951,1065,3,210, - 105,0,952,1065,3,212,106,0,953,1065,3,218,109,0,954,1065,3,232,116, - 0,955,1065,3,404,202,0,956,1065,3,28,14,0,957,1065,3,434,217,0,958, - 1065,3,436,218,0,959,1065,3,446,223,0,960,1065,3,438,219,0,961,1065, - 3,444,222,0,962,1065,3,244,122,0,963,1065,3,246,123,0,964,1065,3, - 198,99,0,965,1065,3,490,245,0,966,1065,3,76,38,0,967,1065,3,430, - 215,0,968,1065,3,108,54,0,969,1065,3,450,225,0,970,1065,3,18,9,0, - 971,1065,3,20,10,0,972,1065,3,16,8,0,973,1065,3,454,227,0,974,1065, - 3,184,92,0,975,1065,3,498,249,0,976,1065,3,496,248,0,977,1065,3, - 240,120,0,978,1065,3,506,253,0,979,1065,3,6,3,0,980,1065,3,72,36, - 0,981,1065,3,112,56,0,982,1065,3,502,251,0,983,1065,3,324,162,0, - 984,1065,3,70,35,0,985,1065,3,114,57,0,986,1065,3,254,127,0,987, - 1065,3,186,93,0,988,1065,3,280,140,0,989,1065,3,420,210,0,990,1065, - 3,500,250,0,991,1065,3,492,246,0,992,1065,3,208,104,0,993,1065,3, - 214,107,0,994,1065,3,228,114,0,995,1065,3,234,117,0,996,1065,3,364, - 182,0,997,1065,3,26,13,0,998,1065,3,192,96,0,999,1065,3,296,148, - 0,1000,1065,3,300,150,0,1001,1065,3,448,224,0,1002,1065,3,302,151, - 0,1003,1065,3,242,121,0,1004,1065,3,204,102,0,1005,1065,3,30,15, - 0,1006,1065,3,196,98,0,1007,1065,3,120,60,0,1008,1065,3,452,226, - 0,1009,1065,3,182,91,0,1010,1065,3,206,103,0,1011,1065,3,424,212, - 0,1012,1065,3,256,128,0,1013,1065,3,274,137,0,1014,1065,3,8,4,0, - 1015,1065,3,14,7,0,1016,1065,3,238,119,0,1017,1065,3,480,240,0,1018, - 1065,3,536,268,0,1019,1065,3,558,279,0,1020,1065,3,282,141,0,1021, - 1065,3,548,274,0,1022,1065,3,74,37,0,1023,1065,3,418,209,0,1024, - 1065,3,308,154,0,1025,1065,3,532,266,0,1026,1065,3,520,260,0,1027, - 1065,3,328,164,0,1028,1065,3,334,167,0,1029,1065,3,348,174,0,1030, - 1065,3,900,450,0,1031,1065,3,236,118,0,1032,1065,3,358,179,0,1033, - 1065,3,538,269,0,1034,1065,3,464,232,0,1035,1065,3,194,97,0,1036, - 1065,3,478,239,0,1037,1065,3,550,275,0,1038,1065,3,460,230,0,1039, - 1065,3,526,263,0,1040,1065,3,306,153,0,1041,1065,3,428,214,0,1042, - 1065,3,408,204,0,1043,1065,3,406,203,0,1044,1065,3,410,205,0,1045, - 1065,3,432,216,0,1046,1065,3,336,168,0,1047,1065,3,350,175,0,1048, - 1065,3,456,228,0,1049,1065,3,326,163,0,1050,1065,3,560,280,0,1051, - 1065,3,468,234,0,1052,1065,3,320,160,0,1053,1065,3,466,233,0,1054, - 1065,3,552,276,0,1055,1065,3,504,252,0,1056,1065,3,60,30,0,1057, - 1065,3,36,18,0,1058,1065,3,68,34,0,1059,1065,3,476,238,0,1060,1062, - 5,581,0,0,1061,1063,5,582,0,0,1062,1061,1,0,0,0,1062,1063,1,0,0, - 0,1063,1065,1,0,0,0,1064,944,1,0,0,0,1064,945,1,0,0,0,1064,946,1, - 0,0,0,1064,947,1,0,0,0,1064,948,1,0,0,0,1064,949,1,0,0,0,1064,950, - 1,0,0,0,1064,951,1,0,0,0,1064,952,1,0,0,0,1064,953,1,0,0,0,1064, - 954,1,0,0,0,1064,955,1,0,0,0,1064,956,1,0,0,0,1064,957,1,0,0,0,1064, - 958,1,0,0,0,1064,959,1,0,0,0,1064,960,1,0,0,0,1064,961,1,0,0,0,1064, - 962,1,0,0,0,1064,963,1,0,0,0,1064,964,1,0,0,0,1064,965,1,0,0,0,1064, - 966,1,0,0,0,1064,967,1,0,0,0,1064,968,1,0,0,0,1064,969,1,0,0,0,1064, - 970,1,0,0,0,1064,971,1,0,0,0,1064,972,1,0,0,0,1064,973,1,0,0,0,1064, - 974,1,0,0,0,1064,975,1,0,0,0,1064,976,1,0,0,0,1064,977,1,0,0,0,1064, - 978,1,0,0,0,1064,979,1,0,0,0,1064,980,1,0,0,0,1064,981,1,0,0,0,1064, - 982,1,0,0,0,1064,983,1,0,0,0,1064,984,1,0,0,0,1064,985,1,0,0,0,1064, - 986,1,0,0,0,1064,987,1,0,0,0,1064,988,1,0,0,0,1064,989,1,0,0,0,1064, - 990,1,0,0,0,1064,991,1,0,0,0,1064,992,1,0,0,0,1064,993,1,0,0,0,1064, - 994,1,0,0,0,1064,995,1,0,0,0,1064,996,1,0,0,0,1064,997,1,0,0,0,1064, - 998,1,0,0,0,1064,999,1,0,0,0,1064,1000,1,0,0,0,1064,1001,1,0,0,0, - 1064,1002,1,0,0,0,1064,1003,1,0,0,0,1064,1004,1,0,0,0,1064,1005, - 1,0,0,0,1064,1006,1,0,0,0,1064,1007,1,0,0,0,1064,1008,1,0,0,0,1064, - 1009,1,0,0,0,1064,1010,1,0,0,0,1064,1011,1,0,0,0,1064,1012,1,0,0, - 0,1064,1013,1,0,0,0,1064,1014,1,0,0,0,1064,1015,1,0,0,0,1064,1016, - 1,0,0,0,1064,1017,1,0,0,0,1064,1018,1,0,0,0,1064,1019,1,0,0,0,1064, - 1020,1,0,0,0,1064,1021,1,0,0,0,1064,1022,1,0,0,0,1064,1023,1,0,0, - 0,1064,1024,1,0,0,0,1064,1025,1,0,0,0,1064,1026,1,0,0,0,1064,1027, - 1,0,0,0,1064,1028,1,0,0,0,1064,1029,1,0,0,0,1064,1030,1,0,0,0,1064, - 1031,1,0,0,0,1064,1032,1,0,0,0,1064,1033,1,0,0,0,1064,1034,1,0,0, - 0,1064,1035,1,0,0,0,1064,1036,1,0,0,0,1064,1037,1,0,0,0,1064,1038, - 1,0,0,0,1064,1039,1,0,0,0,1064,1040,1,0,0,0,1064,1041,1,0,0,0,1064, - 1042,1,0,0,0,1064,1043,1,0,0,0,1064,1044,1,0,0,0,1064,1045,1,0,0, - 0,1064,1046,1,0,0,0,1064,1047,1,0,0,0,1064,1048,1,0,0,0,1064,1049, - 1,0,0,0,1064,1050,1,0,0,0,1064,1051,1,0,0,0,1064,1052,1,0,0,0,1064, - 1053,1,0,0,0,1064,1054,1,0,0,0,1064,1055,1,0,0,0,1064,1056,1,0,0, - 0,1064,1057,1,0,0,0,1064,1058,1,0,0,0,1064,1059,1,0,0,0,1064,1060, - 1,0,0,0,1065,5,1,0,0,0,1066,1067,5,433,0,0,1067,1068,3,684,342,0, - 1068,7,1,0,0,0,1069,1070,5,46,0,0,1070,1071,5,318,0,0,1071,1073, - 3,814,407,0,1072,1074,5,105,0,0,1073,1072,1,0,0,0,1073,1074,1,0, - 0,0,1074,1078,1,0,0,0,1075,1077,3,12,6,0,1076,1075,1,0,0,0,1077, - 1080,1,0,0,0,1078,1076,1,0,0,0,1078,1079,1,0,0,0,1079,9,1,0,0,0, - 1080,1078,1,0,0,0,1081,1084,5,287,0,0,1082,1085,3,808,404,0,1083, - 1085,5,78,0,0,1084,1082,1,0,0,0,1084,1083,1,0,0,0,1085,1120,1,0, - 0,0,1086,1087,7,0,0,0,1087,1088,5,287,0,0,1088,1120,3,808,404,0, - 1089,1120,5,228,0,0,1090,1120,5,229,0,0,1091,1120,5,236,0,0,1092, - 1120,5,237,0,0,1093,1120,5,234,0,0,1094,1120,5,235,0,0,1095,1120, - 5,232,0,0,1096,1120,5,233,0,0,1097,1120,5,230,0,0,1098,1120,5,231, - 0,0,1099,1120,5,535,0,0,1100,1120,5,536,0,0,1101,1120,5,537,0,0, - 1102,1120,5,538,0,0,1103,1120,5,539,0,0,1104,1120,5,540,0,0,1105, - 1106,5,164,0,0,1106,1107,5,74,0,0,1107,1120,3,812,406,0,1108,1109, - 5,371,0,0,1109,1110,5,368,0,0,1110,1120,3,808,404,0,1111,1112,5, - 68,0,0,1112,1113,7,1,0,0,1113,1120,3,784,392,0,1114,1115,7,2,0,0, - 1115,1120,3,816,408,0,1116,1117,5,134,0,0,1117,1120,3,784,392,0, - 1118,1120,3,826,413,0,1119,1081,1,0,0,0,1119,1086,1,0,0,0,1119,1089, - 1,0,0,0,1119,1090,1,0,0,0,1119,1091,1,0,0,0,1119,1092,1,0,0,0,1119, - 1093,1,0,0,0,1119,1094,1,0,0,0,1119,1095,1,0,0,0,1119,1096,1,0,0, - 0,1119,1097,1,0,0,0,1119,1098,1,0,0,0,1119,1099,1,0,0,0,1119,1100, - 1,0,0,0,1119,1101,1,0,0,0,1119,1102,1,0,0,0,1119,1103,1,0,0,0,1119, - 1104,1,0,0,0,1119,1105,1,0,0,0,1119,1108,1,0,0,0,1119,1111,1,0,0, - 0,1119,1114,1,0,0,0,1119,1116,1,0,0,0,1119,1118,1,0,0,0,1120,11, - 1,0,0,0,1121,1130,3,10,5,0,1122,1123,5,348,0,0,1123,1130,5,571,0, - 0,1124,1125,7,3,0,0,1125,1130,3,816,408,0,1126,1127,5,68,0,0,1127, + 1,423,1,423,1,423,1,423,1,423,1,423,1,423,3,423,7908,8,423,1,424, + 1,424,1,424,1,424,1,425,1,425,1,425,1,425,3,425,7918,8,425,1,425, + 1,425,3,425,7922,8,425,1,425,1,425,1,425,1,425,3,425,7928,8,425, + 1,425,1,425,1,425,3,425,7933,8,425,1,426,1,426,1,426,1,426,1,426, + 1,427,1,427,3,427,7942,8,427,1,427,1,427,1,427,1,427,5,427,7948, + 8,427,10,427,12,427,7951,9,427,1,427,1,427,1,428,1,428,1,428,1,428, + 1,429,1,429,3,429,7961,8,429,1,429,1,429,1,429,1,429,5,429,7967, + 8,429,10,429,12,429,7970,9,429,1,430,1,430,1,430,1,430,5,430,7976, + 8,430,10,430,12,430,7979,9,430,1,430,1,430,1,430,1,430,5,430,7985, + 8,430,10,430,12,430,7988,9,430,5,430,7990,8,430,10,430,12,430,7993, + 9,430,1,430,3,430,7996,8,430,1,430,1,430,1,430,1,430,1,431,1,431, + 5,431,8004,8,431,10,431,12,431,8007,9,431,1,432,1,432,3,432,8011, + 8,432,1,432,1,432,1,432,1,432,5,432,8017,8,432,10,432,12,432,8020, + 9,432,4,432,8022,8,432,11,432,12,432,8023,1,432,3,432,8027,8,432, + 1,432,1,432,1,432,1,432,1,433,3,433,8034,8,433,1,433,1,433,1,433, + 1,433,3,433,8040,8,433,1,433,1,433,1,434,1,434,1,434,1,434,3,434, + 8048,8,434,1,434,1,434,1,434,1,434,1,434,1,434,3,434,8056,8,434, + 1,434,3,434,8059,8,434,1,434,1,434,1,434,1,434,1,434,3,434,8066, + 8,434,3,434,8068,8,434,1,435,3,435,8071,8,435,1,435,1,435,1,435, + 1,435,3,435,8077,8,435,1,435,1,435,1,435,1,435,1,435,1,436,1,436, + 3,436,8086,8,436,1,436,1,436,3,436,8090,8,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,3,437,8104, + 8,437,1,437,3,437,8107,8,437,3,437,8109,8,437,1,437,1,437,1,438, + 1,438,3,438,8115,8,438,1,438,1,438,1,438,1,438,1,438,1,438,4,438, + 8123,8,438,11,438,12,438,8124,3,438,8127,8,438,3,438,8129,8,438, + 1,438,1,438,1,438,1,438,5,438,8135,8,438,10,438,12,438,8138,9,438, + 3,438,8140,8,438,1,438,3,438,8143,8,438,1,439,1,439,1,439,1,439, + 1,440,1,440,1,440,1,440,3,440,8153,8,440,1,440,1,440,1,441,1,441, + 5,441,8159,8,441,10,441,12,441,8162,9,441,1,441,1,441,1,441,3,441, + 8167,8,441,1,441,1,441,1,442,1,442,3,442,8173,8,442,1,442,1,442, + 1,443,1,443,1,443,3,443,8180,8,443,1,443,1,443,3,443,8184,8,443, + 1,443,1,443,3,443,8188,8,443,1,443,3,443,8191,8,443,1,443,3,443, + 8194,8,443,1,443,1,443,1,444,1,444,3,444,8200,8,444,1,444,1,444, + 1,445,1,445,1,445,3,445,8207,8,445,1,445,3,445,8210,8,445,1,445, + 1,445,1,445,1,445,1,445,1,445,3,445,8218,8,445,3,445,8220,8,445, + 1,445,1,445,1,445,1,445,1,445,5,445,8227,8,445,10,445,12,445,8230, + 9,445,1,445,1,445,3,445,8234,8,445,3,445,8236,8,445,1,445,1,445, + 1,446,1,446,1,446,3,446,8243,8,446,1,446,1,446,1,447,1,447,3,447, + 8249,8,447,1,447,3,447,8252,8,447,1,447,1,447,1,447,1,447,1,447, + 1,448,1,448,1,448,1,448,1,448,3,448,8264,8,448,1,448,1,448,1,448, + 1,448,1,448,3,448,8271,8,448,3,448,8273,8,448,1,449,1,449,3,449, + 8277,8,449,1,449,1,449,1,449,1,450,3,450,8283,8,450,1,450,1,450, + 1,450,3,450,8288,8,450,1,450,1,450,3,450,8292,8,450,1,450,3,450, + 8295,8,450,1,450,3,450,8298,8,450,1,450,1,450,1,450,1,450,1,450, + 4,450,8305,8,450,11,450,12,450,8306,1,451,3,451,8310,8,451,1,451, + 1,451,3,451,8314,8,451,1,451,1,451,3,451,8318,8,451,3,451,8320,8, + 451,1,451,3,451,8323,8,451,1,451,3,451,8326,8,451,1,452,1,452,1, + 452,1,452,3,452,8332,8,452,1,452,1,452,1,452,1,452,1,452,3,452,8339, + 8,452,1,452,1,452,1,452,1,452,1,452,3,452,8346,8,452,1,452,1,452, + 1,452,1,452,3,452,8352,8,452,3,452,8354,8,452,1,453,1,453,3,453, + 8358,8,453,1,453,1,453,1,453,3,453,8363,8,453,1,453,1,453,1,454, + 1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454, + 5,454,8379,8,454,10,454,12,454,8382,9,454,1,454,1,454,4,454,8386, + 8,454,11,454,12,454,8387,1,455,1,455,1,455,1,455,1,455,5,455,8395, + 8,455,10,455,12,455,8398,9,455,1,455,1,455,1,455,1,455,3,455,8404, + 8,455,1,456,1,456,3,456,8408,8,456,1,457,1,457,1,457,1,457,1,458, + 1,458,1,458,1,459,1,459,1,459,3,459,8420,8,459,1,459,3,459,8423, + 8,459,1,459,1,459,1,460,1,460,1,460,1,460,1,460,1,460,1,460,1,460, + 1,460,3,460,8436,8,460,1,460,3,460,8439,8,460,1,461,1,461,3,461, + 8443,8,461,1,462,1,462,1,462,1,462,1,462,5,462,8450,8,462,10,462, + 12,462,8453,9,462,1,462,1,462,5,462,8457,8,462,10,462,12,462,8460, + 9,462,4,462,8462,8,462,11,462,12,462,8463,1,463,1,463,1,463,3,463, + 8469,8,463,1,464,1,464,3,464,8473,8,464,1,465,3,465,8476,8,465,1, + 465,3,465,8479,8,465,1,465,3,465,8482,8,465,1,465,3,465,8485,8,465, + 1,465,3,465,8488,8,465,1,465,1,465,3,465,8492,8,465,1,465,3,465, + 8495,8,465,1,465,0,3,676,680,682,466,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,0,118,2,0,195,195, + 364,364,2,0,66,66,318,318,2,0,99,99,318,318,2,0,134,134,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,158,158,277,277,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,4,0,78,78,183,183, + 197,197,298,298,2,0,213,213,254,254,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, + 2,0,105,105,379,379,2,0,260,260,262,262,3,0,173,173,260,260,262, + 262,1,0,12,13,2,0,64,64,375,375,2,0,156,156,206,206,2,0,189,189, + 360,360,2,0,215,215,373,373,3,0,133,133,191,191,333,333,5,0,30,30, + 88,88,182,182,241,241,369,369,2,0,9,9,94,94,2,0,92,92,226,226,1, + 0,448,449,2,0,92,92,414,414,2,0,341,341,414,414,4,0,163,163,185, + 185,283,283,353,353,2,0,135,135,145,145,2,0,211,211,278,278,3,0, + 321,321,357,357,445,445,3,0,66,66,99,99,318,318,5,0,108,108,168, + 168,226,226,328,328,342,342,2,0,167,167,314,314,2,0,61,61,265,265, + 4,0,207,207,249,249,268,268,293,293,2,0,130,130,307,307,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,455,455,457,457, + 5,0,212,212,329,329,350,350,361,361,455,456,2,0,37,37,55,55,2,0, + 207,207,249,249,2,0,10,10,53,53,2,0,181,181,243,243,2,0,170,170, + 320,320,2,0,141,141,223,223,5,0,108,108,168,168,189,189,342,342, + 360,360,2,0,226,226,328,328,2,0,163,163,185,185,2,0,186,186,193, + 193,4,0,88,88,182,182,241,241,369,369,2,0,137,137,242,242,2,0,161, + 161,319,319,4,0,129,129,161,161,319,319,454,454,2,0,356,356,380, + 380,2,0,81,81,382,382,2,0,151,151,254,254,2,0,133,133,138,138,1, + 0,31,32,2,0,128,128,547,547,2,0,60,60,96,96,2,0,99,99,349,349,2, + 0,131,131,414,414,2,0,201,201,334,334,3,0,59,59,70,70,97,97,2,0, + 30,30,56,56,1,0,527,528,2,0,207,207,268,268,2,0,320,320,414,414, + 2,0,571,571,573,573,1,0,468,469,4,0,113,113,115,115,119,119,126, + 126,2,0,360,360,477,477,2,0,394,395,409,409,2,0,391,392,406,406, + 1,0,391,392,1,0,418,419,5,0,10,10,16,17,21,21,23,23,25,25,3,0,9, + 9,14,14,27,27,2,0,98,98,396,396,2,0,50,51,75,76,2,0,41,41,420,420, + 3,0,39,39,73,73,95,95,4,0,393,393,399,399,404,404,425,425,2,0,292, + 292,347,347,2,0,166,166,188,188,2,0,304,304,450,450,3,0,299,299, + 320,320,481,481,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,114,114,120,120,2,0,20,20,22, + 22,1,0,483,486,17,0,53,53,116,116,123,124,129,228,238,386,433,452, + 455,469,471,471,473,473,475,475,477,488,490,502,504,504,506,518, + 520,520,524,524,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,434,434, + 501,501,2,0,167,167,507,507,1,0,512,517,2,0,144,144,210,210,9932, + 0,935,1,0,0,0,2,940,1,0,0,0,4,1064,1,0,0,0,6,1066,1,0,0,0,8,1069, + 1,0,0,0,10,1119,1,0,0,0,12,1129,1,0,0,0,14,1131,1,0,0,0,16,1143, + 1,0,0,0,18,1155,1,0,0,0,20,1166,1,0,0,0,22,1200,1,0,0,0,24,1244, + 1,0,0,0,26,1246,1,0,0,0,28,1258,1,0,0,0,30,1265,1,0,0,0,32,1284, + 1,0,0,0,34,1292,1,0,0,0,36,1294,1,0,0,0,38,1308,1,0,0,0,40,1312, + 1,0,0,0,42,1349,1,0,0,0,44,1351,1,0,0,0,46,1359,1,0,0,0,48,1369, + 1,0,0,0,50,1376,1,0,0,0,52,1384,1,0,0,0,54,1390,1,0,0,0,56,1406, + 1,0,0,0,58,1410,1,0,0,0,60,1412,1,0,0,0,62,1424,1,0,0,0,64,1429, + 1,0,0,0,66,1434,1,0,0,0,68,1436,1,0,0,0,70,1448,1,0,0,0,72,1456, + 1,0,0,0,74,1458,1,0,0,0,76,1582,1,0,0,0,78,1584,1,0,0,0,80,1601, + 1,0,0,0,82,1603,1,0,0,0,84,1617,1,0,0,0,86,1619,1,0,0,0,88,1633, + 1,0,0,0,90,1635,1,0,0,0,92,1872,1,0,0,0,94,1879,1,0,0,0,96,1881, + 1,0,0,0,98,1883,1,0,0,0,100,1886,1,0,0,0,102,1897,1,0,0,0,104,1900, + 1,0,0,0,106,1936,1,0,0,0,108,1938,1,0,0,0,110,1979,1,0,0,0,112,1981, + 1,0,0,0,114,2035,1,0,0,0,116,2076,1,0,0,0,118,2078,1,0,0,0,120,2095, + 1,0,0,0,122,2176,1,0,0,0,124,2178,1,0,0,0,126,2189,1,0,0,0,128,2212, + 1,0,0,0,130,2230,1,0,0,0,132,2232,1,0,0,0,134,2267,1,0,0,0,136,2360, + 1,0,0,0,138,2365,1,0,0,0,140,2367,1,0,0,0,142,2465,1,0,0,0,144,2467, + 1,0,0,0,146,2471,1,0,0,0,148,2482,1,0,0,0,150,2490,1,0,0,0,152,2493, + 1,0,0,0,154,2496,1,0,0,0,156,2514,1,0,0,0,158,2516,1,0,0,0,160,2520, + 1,0,0,0,162,2533,1,0,0,0,164,2535,1,0,0,0,166,2540,1,0,0,0,168,2560, + 1,0,0,0,170,2568,1,0,0,0,172,2575,1,0,0,0,174,2577,1,0,0,0,176,2586, + 1,0,0,0,178,2589,1,0,0,0,180,2593,1,0,0,0,182,2597,1,0,0,0,184,2622, + 1,0,0,0,186,2632,1,0,0,0,188,2646,1,0,0,0,190,2662,1,0,0,0,192,2668, + 1,0,0,0,194,2695,1,0,0,0,196,2705,1,0,0,0,198,2721,1,0,0,0,200,2765, + 1,0,0,0,202,2772,1,0,0,0,204,2774,1,0,0,0,206,2800,1,0,0,0,208,2811, + 1,0,0,0,210,2830,1,0,0,0,212,2841,1,0,0,0,214,2879,1,0,0,0,216,2900, + 1,0,0,0,218,2902,1,0,0,0,220,2922,1,0,0,0,222,2934,1,0,0,0,224,2946, + 1,0,0,0,226,2949,1,0,0,0,228,2952,1,0,0,0,230,2972,1,0,0,0,232,2977, + 1,0,0,0,234,3026,1,0,0,0,236,3028,1,0,0,0,238,3051,1,0,0,0,240,3067, + 1,0,0,0,242,3079,1,0,0,0,244,3106,1,0,0,0,246,3121,1,0,0,0,248,3184, + 1,0,0,0,250,3186,1,0,0,0,252,3191,1,0,0,0,254,3197,1,0,0,0,256,3284, + 1,0,0,0,258,3290,1,0,0,0,260,3292,1,0,0,0,262,3308,1,0,0,0,264,3310, + 1,0,0,0,266,3319,1,0,0,0,268,3323,1,0,0,0,270,3336,1,0,0,0,272,3348, + 1,0,0,0,274,3350,1,0,0,0,276,3372,1,0,0,0,278,3384,1,0,0,0,280,3395, + 1,0,0,0,282,3486,1,0,0,0,284,3488,1,0,0,0,286,3499,1,0,0,0,288,3510, + 1,0,0,0,290,3512,1,0,0,0,292,3538,1,0,0,0,294,3540,1,0,0,0,296,3544, + 1,0,0,0,298,3594,1,0,0,0,300,3596,1,0,0,0,302,3602,1,0,0,0,304,3627, + 1,0,0,0,306,3631,1,0,0,0,308,3845,1,0,0,0,310,3863,1,0,0,0,312,3889, + 1,0,0,0,314,3891,1,0,0,0,316,3899,1,0,0,0,318,3905,1,0,0,0,320,3909, + 1,0,0,0,322,3929,1,0,0,0,324,3935,1,0,0,0,326,4002,1,0,0,0,328,4033, + 1,0,0,0,330,4079,1,0,0,0,332,4081,1,0,0,0,334,4083,1,0,0,0,336,4094, + 1,0,0,0,338,4131,1,0,0,0,340,4133,1,0,0,0,342,4139,1,0,0,0,344,4189, + 1,0,0,0,346,4192,1,0,0,0,348,4206,1,0,0,0,350,4227,1,0,0,0,352,4251, + 1,0,0,0,354,4292,1,0,0,0,356,4294,1,0,0,0,358,4296,1,0,0,0,360,4336, + 1,0,0,0,362,4353,1,0,0,0,364,4373,1,0,0,0,366,4426,1,0,0,0,368,4429, + 1,0,0,0,370,4435,1,0,0,0,372,4443,1,0,0,0,374,4456,1,0,0,0,376,4458, + 1,0,0,0,378,4471,1,0,0,0,380,4473,1,0,0,0,382,4486,1,0,0,0,384,4496, + 1,0,0,0,386,4507,1,0,0,0,388,4518,1,0,0,0,390,4520,1,0,0,0,392,4525, + 1,0,0,0,394,4539,1,0,0,0,396,4571,1,0,0,0,398,4608,1,0,0,0,400,4610, + 1,0,0,0,402,4613,1,0,0,0,404,4616,1,0,0,0,406,4633,1,0,0,0,408,4654, + 1,0,0,0,410,4670,1,0,0,0,412,4686,1,0,0,0,414,4708,1,0,0,0,416,4713, + 1,0,0,0,418,4716,1,0,0,0,420,4724,1,0,0,0,422,4749,1,0,0,0,424,4752, + 1,0,0,0,426,4780,1,0,0,0,428,4785,1,0,0,0,430,4825,1,0,0,0,432,5037, + 1,0,0,0,434,5039,1,0,0,0,436,5127,1,0,0,0,438,5129,1,0,0,0,440,5135, + 1,0,0,0,442,5146,1,0,0,0,444,5156,1,0,0,0,446,5236,1,0,0,0,448,5238, + 1,0,0,0,450,5252,1,0,0,0,452,5274,1,0,0,0,454,5347,1,0,0,0,456,5349, + 1,0,0,0,458,5390,1,0,0,0,460,5392,1,0,0,0,462,5397,1,0,0,0,464,5400, + 1,0,0,0,466,5403,1,0,0,0,468,5453,1,0,0,0,470,5455,1,0,0,0,472,5466, + 1,0,0,0,474,5468,1,0,0,0,476,5478,1,0,0,0,478,5513,1,0,0,0,480,5516, + 1,0,0,0,482,5537,1,0,0,0,484,5547,1,0,0,0,486,5567,1,0,0,0,488,5573, + 1,0,0,0,490,5579,1,0,0,0,492,5584,1,0,0,0,494,5597,1,0,0,0,496,5624, + 1,0,0,0,498,5672,1,0,0,0,500,5674,1,0,0,0,502,5712,1,0,0,0,504,5714, + 1,0,0,0,506,5735,1,0,0,0,508,5755,1,0,0,0,510,5759,1,0,0,0,512,5774, + 1,0,0,0,514,5776,1,0,0,0,516,5780,1,0,0,0,518,5784,1,0,0,0,520,5792, + 1,0,0,0,522,5816,1,0,0,0,524,5818,1,0,0,0,526,5829,1,0,0,0,528,5837, + 1,0,0,0,530,5852,1,0,0,0,532,5877,1,0,0,0,534,5879,1,0,0,0,536,5883, + 1,0,0,0,538,5892,1,0,0,0,540,5932,1,0,0,0,542,5943,1,0,0,0,544,5951, + 1,0,0,0,546,5954,1,0,0,0,548,5958,1,0,0,0,550,5973,1,0,0,0,552,5998, + 1,0,0,0,554,6013,1,0,0,0,556,6039,1,0,0,0,558,6041,1,0,0,0,560,6064, + 1,0,0,0,562,6066,1,0,0,0,564,6074,1,0,0,0,566,6092,1,0,0,0,568,6116, + 1,0,0,0,570,6128,1,0,0,0,572,6132,1,0,0,0,574,6144,1,0,0,0,576,6164, + 1,0,0,0,578,6172,1,0,0,0,580,6186,1,0,0,0,582,6209,1,0,0,0,584,6211, + 1,0,0,0,586,6216,1,0,0,0,588,6226,1,0,0,0,590,6247,1,0,0,0,592,6249, + 1,0,0,0,594,6258,1,0,0,0,596,6269,1,0,0,0,598,6279,1,0,0,0,600,6281, + 1,0,0,0,602,6288,1,0,0,0,604,6319,1,0,0,0,606,6349,1,0,0,0,608,6351, + 1,0,0,0,610,6360,1,0,0,0,612,6363,1,0,0,0,614,6434,1,0,0,0,616,6458, + 1,0,0,0,618,6479,1,0,0,0,620,6481,1,0,0,0,622,6489,1,0,0,0,624,6506, + 1,0,0,0,626,6532,1,0,0,0,628,6534,1,0,0,0,630,6542,1,0,0,0,632,6549, + 1,0,0,0,634,6573,1,0,0,0,636,6579,1,0,0,0,638,6587,1,0,0,0,640,6590, + 1,0,0,0,642,6597,1,0,0,0,644,6605,1,0,0,0,646,6610,1,0,0,0,648,6640, + 1,0,0,0,650,6667,1,0,0,0,652,6695,1,0,0,0,654,6712,1,0,0,0,656,6718, + 1,0,0,0,658,6736,1,0,0,0,660,6738,1,0,0,0,662,6742,1,0,0,0,664,6759, + 1,0,0,0,666,6764,1,0,0,0,668,6802,1,0,0,0,670,6804,1,0,0,0,672,6808, + 1,0,0,0,674,6810,1,0,0,0,676,6819,1,0,0,0,678,6903,1,0,0,0,680,6909, + 1,0,0,0,682,7018,1,0,0,0,684,7050,1,0,0,0,686,7103,1,0,0,0,688,7107, + 1,0,0,0,690,7283,1,0,0,0,692,7285,1,0,0,0,694,7293,1,0,0,0,696,7298, + 1,0,0,0,698,7300,1,0,0,0,700,7308,1,0,0,0,702,7311,1,0,0,0,704,7320, + 1,0,0,0,706,7324,1,0,0,0,708,7329,1,0,0,0,710,7346,1,0,0,0,712,7373, + 1,0,0,0,714,7382,1,0,0,0,716,7384,1,0,0,0,718,7391,1,0,0,0,720,7395, + 1,0,0,0,722,7397,1,0,0,0,724,7405,1,0,0,0,726,7413,1,0,0,0,728,7420, + 1,0,0,0,730,7422,1,0,0,0,732,7435,1,0,0,0,734,7439,1,0,0,0,736,7441, + 1,0,0,0,738,7455,1,0,0,0,740,7457,1,0,0,0,742,7479,1,0,0,0,744,7481, + 1,0,0,0,746,7504,1,0,0,0,748,7506,1,0,0,0,750,7528,1,0,0,0,752,7531, + 1,0,0,0,754,7538,1,0,0,0,756,7541,1,0,0,0,758,7557,1,0,0,0,760,7559, + 1,0,0,0,762,7567,1,0,0,0,764,7575,1,0,0,0,766,7583,1,0,0,0,768,7591, + 1,0,0,0,770,7593,1,0,0,0,772,7595,1,0,0,0,774,7597,1,0,0,0,776,7599, + 1,0,0,0,778,7601,1,0,0,0,780,7603,1,0,0,0,782,7607,1,0,0,0,784,7615, + 1,0,0,0,786,7623,1,0,0,0,788,7625,1,0,0,0,790,7627,1,0,0,0,792,7629, + 1,0,0,0,794,7631,1,0,0,0,796,7637,1,0,0,0,798,7643,1,0,0,0,800,7649, + 1,0,0,0,802,7651,1,0,0,0,804,7657,1,0,0,0,806,7663,1,0,0,0,808,7665, + 1,0,0,0,810,7681,1,0,0,0,812,7684,1,0,0,0,814,7693,1,0,0,0,816,7695, + 1,0,0,0,818,7705,1,0,0,0,820,7709,1,0,0,0,822,7714,1,0,0,0,824,7720, + 1,0,0,0,826,7733,1,0,0,0,828,7735,1,0,0,0,830,7788,1,0,0,0,832,7790, + 1,0,0,0,834,7792,1,0,0,0,836,7795,1,0,0,0,838,7823,1,0,0,0,840,7827, + 1,0,0,0,842,7878,1,0,0,0,844,7881,1,0,0,0,846,7907,1,0,0,0,848,7909, + 1,0,0,0,850,7932,1,0,0,0,852,7934,1,0,0,0,854,7939,1,0,0,0,856,7954, + 1,0,0,0,858,7960,1,0,0,0,860,7971,1,0,0,0,862,8001,1,0,0,0,864,8008, + 1,0,0,0,866,8033,1,0,0,0,868,8043,1,0,0,0,870,8070,1,0,0,0,872,8083, + 1,0,0,0,874,8093,1,0,0,0,876,8112,1,0,0,0,878,8144,1,0,0,0,880,8148, + 1,0,0,0,882,8156,1,0,0,0,884,8170,1,0,0,0,886,8176,1,0,0,0,888,8197, + 1,0,0,0,890,8203,1,0,0,0,892,8242,1,0,0,0,894,8246,1,0,0,0,896,8272, + 1,0,0,0,898,8274,1,0,0,0,900,8282,1,0,0,0,902,8319,1,0,0,0,904,8353, + 1,0,0,0,906,8355,1,0,0,0,908,8366,1,0,0,0,910,8403,1,0,0,0,912,8407, + 1,0,0,0,914,8409,1,0,0,0,916,8413,1,0,0,0,918,8416,1,0,0,0,920,8438, + 1,0,0,0,922,8442,1,0,0,0,924,8444,1,0,0,0,926,8468,1,0,0,0,928,8472, + 1,0,0,0,930,8475,1,0,0,0,932,934,3,2,1,0,933,932,1,0,0,0,934,937, + 1,0,0,0,935,933,1,0,0,0,935,936,1,0,0,0,936,938,1,0,0,0,937,935, + 1,0,0,0,938,939,5,0,0,1,939,1,1,0,0,0,940,942,3,4,2,0,941,943,5, + 7,0,0,942,941,1,0,0,0,942,943,1,0,0,0,943,3,1,0,0,0,944,1065,3,278, + 139,0,945,1065,3,488,244,0,946,1065,3,484,242,0,947,1065,3,486,243, + 0,948,1065,3,352,176,0,949,1065,3,494,247,0,950,1065,3,292,146,0, + 951,1065,3,210,105,0,952,1065,3,212,106,0,953,1065,3,218,109,0,954, + 1065,3,232,116,0,955,1065,3,404,202,0,956,1065,3,28,14,0,957,1065, + 3,434,217,0,958,1065,3,436,218,0,959,1065,3,446,223,0,960,1065,3, + 438,219,0,961,1065,3,444,222,0,962,1065,3,244,122,0,963,1065,3,246, + 123,0,964,1065,3,198,99,0,965,1065,3,490,245,0,966,1065,3,76,38, + 0,967,1065,3,430,215,0,968,1065,3,108,54,0,969,1065,3,450,225,0, + 970,1065,3,18,9,0,971,1065,3,20,10,0,972,1065,3,16,8,0,973,1065, + 3,454,227,0,974,1065,3,184,92,0,975,1065,3,498,249,0,976,1065,3, + 496,248,0,977,1065,3,240,120,0,978,1065,3,506,253,0,979,1065,3,6, + 3,0,980,1065,3,72,36,0,981,1065,3,112,56,0,982,1065,3,502,251,0, + 983,1065,3,324,162,0,984,1065,3,70,35,0,985,1065,3,114,57,0,986, + 1065,3,254,127,0,987,1065,3,186,93,0,988,1065,3,280,140,0,989,1065, + 3,420,210,0,990,1065,3,500,250,0,991,1065,3,492,246,0,992,1065,3, + 208,104,0,993,1065,3,214,107,0,994,1065,3,228,114,0,995,1065,3,234, + 117,0,996,1065,3,364,182,0,997,1065,3,26,13,0,998,1065,3,192,96, + 0,999,1065,3,296,148,0,1000,1065,3,300,150,0,1001,1065,3,448,224, + 0,1002,1065,3,302,151,0,1003,1065,3,242,121,0,1004,1065,3,204,102, + 0,1005,1065,3,30,15,0,1006,1065,3,196,98,0,1007,1065,3,120,60,0, + 1008,1065,3,452,226,0,1009,1065,3,182,91,0,1010,1065,3,206,103,0, + 1011,1065,3,424,212,0,1012,1065,3,256,128,0,1013,1065,3,274,137, + 0,1014,1065,3,8,4,0,1015,1065,3,14,7,0,1016,1065,3,238,119,0,1017, + 1065,3,480,240,0,1018,1065,3,536,268,0,1019,1065,3,558,279,0,1020, + 1065,3,282,141,0,1021,1065,3,548,274,0,1022,1065,3,74,37,0,1023, + 1065,3,418,209,0,1024,1065,3,308,154,0,1025,1065,3,532,266,0,1026, + 1065,3,520,260,0,1027,1065,3,328,164,0,1028,1065,3,334,167,0,1029, + 1065,3,348,174,0,1030,1065,3,900,450,0,1031,1065,3,236,118,0,1032, + 1065,3,358,179,0,1033,1065,3,538,269,0,1034,1065,3,464,232,0,1035, + 1065,3,194,97,0,1036,1065,3,478,239,0,1037,1065,3,550,275,0,1038, + 1065,3,460,230,0,1039,1065,3,526,263,0,1040,1065,3,306,153,0,1041, + 1065,3,428,214,0,1042,1065,3,408,204,0,1043,1065,3,406,203,0,1044, + 1065,3,410,205,0,1045,1065,3,432,216,0,1046,1065,3,336,168,0,1047, + 1065,3,350,175,0,1048,1065,3,456,228,0,1049,1065,3,326,163,0,1050, + 1065,3,560,280,0,1051,1065,3,468,234,0,1052,1065,3,320,160,0,1053, + 1065,3,466,233,0,1054,1065,3,552,276,0,1055,1065,3,504,252,0,1056, + 1065,3,60,30,0,1057,1065,3,36,18,0,1058,1065,3,68,34,0,1059,1065, + 3,476,238,0,1060,1062,5,581,0,0,1061,1063,5,582,0,0,1062,1061,1, + 0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0,0,1064,944,1,0,0,0,1064, + 945,1,0,0,0,1064,946,1,0,0,0,1064,947,1,0,0,0,1064,948,1,0,0,0,1064, + 949,1,0,0,0,1064,950,1,0,0,0,1064,951,1,0,0,0,1064,952,1,0,0,0,1064, + 953,1,0,0,0,1064,954,1,0,0,0,1064,955,1,0,0,0,1064,956,1,0,0,0,1064, + 957,1,0,0,0,1064,958,1,0,0,0,1064,959,1,0,0,0,1064,960,1,0,0,0,1064, + 961,1,0,0,0,1064,962,1,0,0,0,1064,963,1,0,0,0,1064,964,1,0,0,0,1064, + 965,1,0,0,0,1064,966,1,0,0,0,1064,967,1,0,0,0,1064,968,1,0,0,0,1064, + 969,1,0,0,0,1064,970,1,0,0,0,1064,971,1,0,0,0,1064,972,1,0,0,0,1064, + 973,1,0,0,0,1064,974,1,0,0,0,1064,975,1,0,0,0,1064,976,1,0,0,0,1064, + 977,1,0,0,0,1064,978,1,0,0,0,1064,979,1,0,0,0,1064,980,1,0,0,0,1064, + 981,1,0,0,0,1064,982,1,0,0,0,1064,983,1,0,0,0,1064,984,1,0,0,0,1064, + 985,1,0,0,0,1064,986,1,0,0,0,1064,987,1,0,0,0,1064,988,1,0,0,0,1064, + 989,1,0,0,0,1064,990,1,0,0,0,1064,991,1,0,0,0,1064,992,1,0,0,0,1064, + 993,1,0,0,0,1064,994,1,0,0,0,1064,995,1,0,0,0,1064,996,1,0,0,0,1064, + 997,1,0,0,0,1064,998,1,0,0,0,1064,999,1,0,0,0,1064,1000,1,0,0,0, + 1064,1001,1,0,0,0,1064,1002,1,0,0,0,1064,1003,1,0,0,0,1064,1004, + 1,0,0,0,1064,1005,1,0,0,0,1064,1006,1,0,0,0,1064,1007,1,0,0,0,1064, + 1008,1,0,0,0,1064,1009,1,0,0,0,1064,1010,1,0,0,0,1064,1011,1,0,0, + 0,1064,1012,1,0,0,0,1064,1013,1,0,0,0,1064,1014,1,0,0,0,1064,1015, + 1,0,0,0,1064,1016,1,0,0,0,1064,1017,1,0,0,0,1064,1018,1,0,0,0,1064, + 1019,1,0,0,0,1064,1020,1,0,0,0,1064,1021,1,0,0,0,1064,1022,1,0,0, + 0,1064,1023,1,0,0,0,1064,1024,1,0,0,0,1064,1025,1,0,0,0,1064,1026, + 1,0,0,0,1064,1027,1,0,0,0,1064,1028,1,0,0,0,1064,1029,1,0,0,0,1064, + 1030,1,0,0,0,1064,1031,1,0,0,0,1064,1032,1,0,0,0,1064,1033,1,0,0, + 0,1064,1034,1,0,0,0,1064,1035,1,0,0,0,1064,1036,1,0,0,0,1064,1037, + 1,0,0,0,1064,1038,1,0,0,0,1064,1039,1,0,0,0,1064,1040,1,0,0,0,1064, + 1041,1,0,0,0,1064,1042,1,0,0,0,1064,1043,1,0,0,0,1064,1044,1,0,0, + 0,1064,1045,1,0,0,0,1064,1046,1,0,0,0,1064,1047,1,0,0,0,1064,1048, + 1,0,0,0,1064,1049,1,0,0,0,1064,1050,1,0,0,0,1064,1051,1,0,0,0,1064, + 1052,1,0,0,0,1064,1053,1,0,0,0,1064,1054,1,0,0,0,1064,1055,1,0,0, + 0,1064,1056,1,0,0,0,1064,1057,1,0,0,0,1064,1058,1,0,0,0,1064,1059, + 1,0,0,0,1064,1060,1,0,0,0,1065,5,1,0,0,0,1066,1067,5,433,0,0,1067, + 1068,3,684,342,0,1068,7,1,0,0,0,1069,1070,5,46,0,0,1070,1071,5,318, + 0,0,1071,1073,3,814,407,0,1072,1074,5,105,0,0,1073,1072,1,0,0,0, + 1073,1074,1,0,0,0,1074,1078,1,0,0,0,1075,1077,3,12,6,0,1076,1075, + 1,0,0,0,1077,1080,1,0,0,0,1078,1076,1,0,0,0,1078,1079,1,0,0,0,1079, + 9,1,0,0,0,1080,1078,1,0,0,0,1081,1084,5,287,0,0,1082,1085,3,808, + 404,0,1083,1085,5,78,0,0,1084,1082,1,0,0,0,1084,1083,1,0,0,0,1085, + 1120,1,0,0,0,1086,1087,7,0,0,0,1087,1088,5,287,0,0,1088,1120,3,808, + 404,0,1089,1120,5,228,0,0,1090,1120,5,229,0,0,1091,1120,5,236,0, + 0,1092,1120,5,237,0,0,1093,1120,5,234,0,0,1094,1120,5,235,0,0,1095, + 1120,5,232,0,0,1096,1120,5,233,0,0,1097,1120,5,230,0,0,1098,1120, + 5,231,0,0,1099,1120,5,535,0,0,1100,1120,5,536,0,0,1101,1120,5,537, + 0,0,1102,1120,5,538,0,0,1103,1120,5,539,0,0,1104,1120,5,540,0,0, + 1105,1106,5,164,0,0,1106,1107,5,74,0,0,1107,1120,3,812,406,0,1108, + 1109,5,371,0,0,1109,1110,5,368,0,0,1110,1120,3,808,404,0,1111,1112, + 5,68,0,0,1112,1113,7,1,0,0,1113,1120,3,784,392,0,1114,1115,7,2,0, + 0,1115,1120,3,816,408,0,1116,1117,5,134,0,0,1117,1120,3,784,392, + 0,1118,1120,3,826,413,0,1119,1081,1,0,0,0,1119,1086,1,0,0,0,1119, + 1089,1,0,0,0,1119,1090,1,0,0,0,1119,1091,1,0,0,0,1119,1092,1,0,0, + 0,1119,1093,1,0,0,0,1119,1094,1,0,0,0,1119,1095,1,0,0,0,1119,1096, + 1,0,0,0,1119,1097,1,0,0,0,1119,1098,1,0,0,0,1119,1099,1,0,0,0,1119, + 1100,1,0,0,0,1119,1101,1,0,0,0,1119,1102,1,0,0,0,1119,1103,1,0,0, + 0,1119,1104,1,0,0,0,1119,1105,1,0,0,0,1119,1108,1,0,0,0,1119,1111, + 1,0,0,0,1119,1114,1,0,0,0,1119,1116,1,0,0,0,1119,1118,1,0,0,0,1120, + 11,1,0,0,0,1121,1130,3,10,5,0,1122,1123,5,348,0,0,1123,1130,5,571, + 0,0,1124,1125,7,3,0,0,1125,1130,3,816,408,0,1126,1127,5,68,0,0,1127, 1128,7,1,0,0,1128,1130,3,816,408,0,1129,1121,1,0,0,0,1129,1122,1, 0,0,0,1129,1124,1,0,0,0,1129,1126,1,0,0,0,1130,13,1,0,0,0,1131,1132, 5,46,0,0,1132,1133,5,99,0,0,1133,1135,3,814,407,0,1134,1136,5,105, @@ -58150,483 +58158,483 @@ export class PostgreSqlParser extends SQLParserBase { 0,0,0,7439,7438,1,0,0,0,7440,735,1,0,0,0,7441,7446,3,738,369,0,7442, 7443,5,6,0,0,7443,7445,3,738,369,0,7444,7442,1,0,0,0,7445,7448,1, 0,0,0,7446,7444,1,0,0,0,7446,7447,1,0,0,0,7447,737,1,0,0,0,7448, - 7446,1,0,0,0,7449,7455,3,674,337,0,7450,7451,3,820,410,0,7451,7452, - 7,107,0,0,7452,7453,3,674,337,0,7453,7455,1,0,0,0,7454,7449,1,0, - 0,0,7454,7450,1,0,0,0,7455,739,1,0,0,0,7456,7466,5,4,0,0,7457,7467, - 3,730,365,0,7458,7463,3,740,370,0,7459,7460,5,6,0,0,7460,7462,3, - 740,370,0,7461,7459,1,0,0,0,7462,7465,1,0,0,0,7463,7461,1,0,0,0, - 7463,7464,1,0,0,0,7464,7467,1,0,0,0,7465,7463,1,0,0,0,7466,7457, - 1,0,0,0,7466,7458,1,0,0,0,7466,7467,1,0,0,0,7467,7468,1,0,0,0,7468, - 7469,5,5,0,0,7469,741,1,0,0,0,7470,7479,3,826,413,0,7471,7479,5, - 384,0,0,7472,7479,5,264,0,0,7473,7479,5,176,0,0,7474,7479,5,218, - 0,0,7475,7479,5,261,0,0,7476,7479,5,326,0,0,7477,7479,3,808,404, - 0,7478,7470,1,0,0,0,7478,7471,1,0,0,0,7478,7472,1,0,0,0,7478,7473, - 1,0,0,0,7478,7474,1,0,0,0,7478,7475,1,0,0,0,7478,7476,1,0,0,0,7478, - 7477,1,0,0,0,7479,743,1,0,0,0,7480,7481,7,108,0,0,7481,745,1,0,0, - 0,7482,7483,3,674,337,0,7483,7484,5,64,0,0,7484,7487,3,674,337,0, - 7485,7486,5,62,0,0,7486,7488,3,674,337,0,7487,7485,1,0,0,0,7487, - 7488,1,0,0,0,7488,7504,1,0,0,0,7489,7490,3,674,337,0,7490,7491,5, - 62,0,0,7491,7494,3,674,337,0,7492,7493,5,64,0,0,7493,7495,3,674, - 337,0,7494,7492,1,0,0,0,7494,7495,1,0,0,0,7495,7504,1,0,0,0,7496, - 7497,3,674,337,0,7497,7498,5,127,0,0,7498,7499,3,674,337,0,7499, - 7500,5,197,0,0,7500,7501,3,674,337,0,7501,7504,1,0,0,0,7502,7504, - 3,730,365,0,7503,7482,1,0,0,0,7503,7489,1,0,0,0,7503,7496,1,0,0, - 0,7503,7502,1,0,0,0,7504,747,1,0,0,0,7505,7506,5,102,0,0,7506,7507, - 3,674,337,0,7507,7508,5,93,0,0,7508,7509,3,674,337,0,7509,749,1, - 0,0,0,7510,7513,5,11,0,0,7511,7514,3,824,412,0,7512,7514,5,9,0,0, - 7513,7511,1,0,0,0,7513,7512,1,0,0,0,7514,7528,1,0,0,0,7515,7524, - 5,4,0,0,7516,7525,3,674,337,0,7517,7519,3,674,337,0,7518,7517,1, - 0,0,0,7518,7519,1,0,0,0,7519,7520,1,0,0,0,7520,7522,5,8,0,0,7521, - 7523,3,674,337,0,7522,7521,1,0,0,0,7522,7523,1,0,0,0,7523,7525,1, - 0,0,0,7524,7516,1,0,0,0,7524,7518,1,0,0,0,7525,7526,1,0,0,0,7526, - 7528,5,5,0,0,7527,7510,1,0,0,0,7527,7515,1,0,0,0,7528,751,1,0,0, - 0,7529,7531,3,750,375,0,7530,7529,1,0,0,0,7531,7532,1,0,0,0,7532, - 7530,1,0,0,0,7532,7533,1,0,0,0,7533,753,1,0,0,0,7534,7536,3,750, - 375,0,7535,7534,1,0,0,0,7536,7539,1,0,0,0,7537,7535,1,0,0,0,7537, - 7538,1,0,0,0,7538,755,1,0,0,0,7539,7537,1,0,0,0,7540,7545,3,758, - 379,0,7541,7542,5,6,0,0,7542,7544,3,758,379,0,7543,7541,1,0,0,0, - 7544,7547,1,0,0,0,7545,7543,1,0,0,0,7545,7546,1,0,0,0,7546,757,1, - 0,0,0,7547,7545,1,0,0,0,7548,7553,3,734,367,0,7549,7550,5,36,0,0, - 7550,7554,3,824,412,0,7551,7554,3,826,413,0,7552,7554,1,0,0,0,7553, - 7549,1,0,0,0,7553,7551,1,0,0,0,7553,7552,1,0,0,0,7554,7557,1,0,0, - 0,7555,7557,5,9,0,0,7556,7548,1,0,0,0,7556,7555,1,0,0,0,7557,759, - 1,0,0,0,7558,7563,3,780,390,0,7559,7560,5,6,0,0,7560,7562,3,780, - 390,0,7561,7559,1,0,0,0,7562,7565,1,0,0,0,7563,7561,1,0,0,0,7563, - 7564,1,0,0,0,7564,761,1,0,0,0,7565,7563,1,0,0,0,7566,7571,3,774, - 387,0,7567,7568,5,6,0,0,7568,7570,3,774,387,0,7569,7567,1,0,0,0, - 7570,7573,1,0,0,0,7571,7569,1,0,0,0,7571,7572,1,0,0,0,7572,763,1, - 0,0,0,7573,7571,1,0,0,0,7574,7579,3,790,395,0,7575,7576,5,6,0,0, - 7576,7578,3,790,395,0,7577,7575,1,0,0,0,7578,7581,1,0,0,0,7579,7577, - 1,0,0,0,7579,7580,1,0,0,0,7580,765,1,0,0,0,7581,7579,1,0,0,0,7582, - 7587,3,788,394,0,7583,7584,5,6,0,0,7584,7586,3,788,394,0,7585,7583, - 1,0,0,0,7586,7589,1,0,0,0,7587,7585,1,0,0,0,7587,7588,1,0,0,0,7588, - 767,1,0,0,0,7589,7587,1,0,0,0,7590,7591,3,780,390,0,7591,769,1,0, - 0,0,7592,7593,3,780,390,0,7593,771,1,0,0,0,7594,7595,3,780,390,0, - 7595,773,1,0,0,0,7596,7597,3,780,390,0,7597,775,1,0,0,0,7598,7599, - 3,780,390,0,7599,777,1,0,0,0,7600,7601,3,316,158,0,7601,779,1,0, - 0,0,7602,7604,3,818,409,0,7603,7605,3,752,376,0,7604,7603,1,0,0, - 0,7604,7605,1,0,0,0,7605,781,1,0,0,0,7606,7611,3,770,385,0,7607, - 7608,5,6,0,0,7608,7610,3,770,385,0,7609,7607,1,0,0,0,7610,7613,1, - 0,0,0,7611,7609,1,0,0,0,7611,7612,1,0,0,0,7612,783,1,0,0,0,7613, - 7611,1,0,0,0,7614,7619,3,818,409,0,7615,7616,5,6,0,0,7616,7618,3, - 818,409,0,7617,7615,1,0,0,0,7618,7621,1,0,0,0,7619,7617,1,0,0,0, - 7619,7620,1,0,0,0,7620,785,1,0,0,0,7621,7619,1,0,0,0,7622,7623,3, - 316,158,0,7623,787,1,0,0,0,7624,7625,3,316,158,0,7625,789,1,0,0, - 0,7626,7627,3,316,158,0,7627,791,1,0,0,0,7628,7629,3,818,409,0,7629, - 793,1,0,0,0,7630,7631,3,818,409,0,7631,795,1,0,0,0,7632,7637,3,820, - 410,0,7633,7634,3,818,409,0,7634,7635,3,752,376,0,7635,7637,1,0, - 0,0,7636,7632,1,0,0,0,7636,7633,1,0,0,0,7637,797,1,0,0,0,7638,7643, - 3,820,410,0,7639,7640,3,818,409,0,7640,7641,3,752,376,0,7641,7643, - 1,0,0,0,7642,7638,1,0,0,0,7642,7639,1,0,0,0,7643,799,1,0,0,0,7644, - 7645,3,818,409,0,7645,7646,3,754,377,0,7646,7649,1,0,0,0,7647,7649, - 4,400,10,0,7648,7644,1,0,0,0,7648,7647,1,0,0,0,7649,801,1,0,0,0, - 7650,7651,3,818,409,0,7651,803,1,0,0,0,7652,7657,3,820,410,0,7653, - 7654,3,818,409,0,7654,7655,3,752,376,0,7655,7657,1,0,0,0,7656,7652, - 1,0,0,0,7656,7653,1,0,0,0,7657,805,1,0,0,0,7658,7663,3,820,410,0, - 7659,7660,3,818,409,0,7660,7661,3,752,376,0,7661,7663,1,0,0,0,7662, - 7658,1,0,0,0,7662,7659,1,0,0,0,7663,807,1,0,0,0,7664,7667,3,810, - 405,0,7665,7666,5,487,0,0,7666,7668,3,810,405,0,7667,7665,1,0,0, - 0,7667,7668,1,0,0,0,7668,809,1,0,0,0,7669,7681,5,558,0,0,7670,7681, - 5,560,0,0,7671,7675,5,562,0,0,7672,7674,5,588,0,0,7673,7672,1,0, - 0,0,7674,7677,1,0,0,0,7675,7673,1,0,0,0,7675,7676,1,0,0,0,7676,7678, - 1,0,0,0,7677,7675,1,0,0,0,7678,7681,5,589,0,0,7679,7681,5,584,0, - 0,7680,7669,1,0,0,0,7680,7670,1,0,0,0,7680,7671,1,0,0,0,7680,7679, - 1,0,0,0,7681,811,1,0,0,0,7682,7684,7,29,0,0,7683,7682,1,0,0,0,7683, - 7684,1,0,0,0,7684,7685,1,0,0,0,7685,7686,5,571,0,0,7686,813,1,0, - 0,0,7687,7693,3,822,411,0,7688,7693,5,52,0,0,7689,7693,5,49,0,0, - 7690,7693,5,89,0,0,7691,7693,5,524,0,0,7692,7687,1,0,0,0,7692,7688, - 1,0,0,0,7692,7689,1,0,0,0,7692,7690,1,0,0,0,7692,7691,1,0,0,0,7693, - 815,1,0,0,0,7694,7699,3,814,407,0,7695,7696,5,6,0,0,7696,7698,3, - 814,407,0,7697,7695,1,0,0,0,7698,7701,1,0,0,0,7699,7697,1,0,0,0, - 7699,7700,1,0,0,0,7700,817,1,0,0,0,7701,7699,1,0,0,0,7702,7705,3, - 826,413,0,7703,7705,3,830,415,0,7704,7702,1,0,0,0,7704,7703,1,0, - 0,0,7705,819,1,0,0,0,7706,7709,3,826,413,0,7707,7709,3,832,416,0, - 7708,7706,1,0,0,0,7708,7707,1,0,0,0,7709,821,1,0,0,0,7710,7714,3, - 826,413,0,7711,7714,3,830,415,0,7712,7714,3,832,416,0,7713,7710, - 1,0,0,0,7713,7711,1,0,0,0,7713,7712,1,0,0,0,7714,823,1,0,0,0,7715, - 7720,3,826,413,0,7716,7720,3,830,415,0,7717,7720,3,832,416,0,7718, - 7720,3,834,417,0,7719,7715,1,0,0,0,7719,7716,1,0,0,0,7719,7717,1, - 0,0,0,7719,7718,1,0,0,0,7720,825,1,0,0,0,7721,7724,5,549,0,0,7722, - 7723,5,487,0,0,7723,7725,3,810,405,0,7724,7722,1,0,0,0,7724,7725, - 1,0,0,0,7725,7733,1,0,0,0,7726,7733,3,808,404,0,7727,7733,5,550, - 0,0,7728,7733,5,554,0,0,7729,7733,5,574,0,0,7730,7733,5,575,0,0, - 7731,7733,3,828,414,0,7732,7721,1,0,0,0,7732,7726,1,0,0,0,7732,7727, - 1,0,0,0,7732,7728,1,0,0,0,7732,7729,1,0,0,0,7732,7730,1,0,0,0,7732, - 7731,1,0,0,0,7733,827,1,0,0,0,7734,7735,7,109,0,0,7735,829,1,0,0, - 0,7736,7788,5,387,0,0,7737,7788,5,388,0,0,7738,7788,3,662,331,0, - 7739,7788,5,390,0,0,7740,7788,5,391,0,0,7741,7788,3,664,332,0,7742, - 7788,5,393,0,0,7743,7788,5,394,0,0,7744,7788,5,395,0,0,7745,7788, - 5,396,0,0,7746,7788,5,397,0,0,7747,7788,5,398,0,0,7748,7788,5,399, - 0,0,7749,7788,5,470,0,0,7750,7788,5,400,0,0,7751,7788,5,401,0,0, - 7752,7788,5,402,0,0,7753,7788,5,403,0,0,7754,7788,5,404,0,0,7755, - 7788,5,405,0,0,7756,7788,5,406,0,0,7757,7788,5,407,0,0,7758,7788, - 5,489,0,0,7759,7788,5,408,0,0,7760,7788,3,658,329,0,7761,7788,5, - 453,0,0,7762,7788,5,410,0,0,7763,7788,5,411,0,0,7764,7788,5,412, - 0,0,7765,7788,5,413,0,0,7766,7788,5,414,0,0,7767,7788,5,415,0,0, - 7768,7788,5,416,0,0,7769,7788,5,417,0,0,7770,7788,5,418,0,0,7771, - 7788,5,419,0,0,7772,7788,5,420,0,0,7773,7788,5,421,0,0,7774,7788, - 5,422,0,0,7775,7788,5,423,0,0,7776,7788,5,424,0,0,7777,7788,5,425, - 0,0,7778,7788,5,426,0,0,7779,7788,5,427,0,0,7780,7788,5,428,0,0, - 7781,7788,5,476,0,0,7782,7788,5,429,0,0,7783,7788,5,430,0,0,7784, - 7788,5,431,0,0,7785,7788,5,432,0,0,7786,7788,5,474,0,0,7787,7736, - 1,0,0,0,7787,7737,1,0,0,0,7787,7738,1,0,0,0,7787,7739,1,0,0,0,7787, - 7740,1,0,0,0,7787,7741,1,0,0,0,7787,7742,1,0,0,0,7787,7743,1,0,0, - 0,7787,7744,1,0,0,0,7787,7745,1,0,0,0,7787,7746,1,0,0,0,7787,7747, - 1,0,0,0,7787,7748,1,0,0,0,7787,7749,1,0,0,0,7787,7750,1,0,0,0,7787, - 7751,1,0,0,0,7787,7752,1,0,0,0,7787,7753,1,0,0,0,7787,7754,1,0,0, - 0,7787,7755,1,0,0,0,7787,7756,1,0,0,0,7787,7757,1,0,0,0,7787,7758, - 1,0,0,0,7787,7759,1,0,0,0,7787,7760,1,0,0,0,7787,7761,1,0,0,0,7787, - 7762,1,0,0,0,7787,7763,1,0,0,0,7787,7764,1,0,0,0,7787,7765,1,0,0, - 0,7787,7766,1,0,0,0,7787,7767,1,0,0,0,7787,7768,1,0,0,0,7787,7769, - 1,0,0,0,7787,7770,1,0,0,0,7787,7771,1,0,0,0,7787,7772,1,0,0,0,7787, - 7773,1,0,0,0,7787,7774,1,0,0,0,7787,7775,1,0,0,0,7787,7776,1,0,0, - 0,7787,7777,1,0,0,0,7787,7778,1,0,0,0,7787,7779,1,0,0,0,7787,7780, - 1,0,0,0,7787,7781,1,0,0,0,7787,7782,1,0,0,0,7787,7783,1,0,0,0,7787, - 7784,1,0,0,0,7787,7785,1,0,0,0,7787,7786,1,0,0,0,7788,831,1,0,0, - 0,7789,7790,7,110,0,0,7790,833,1,0,0,0,7791,7792,7,111,0,0,7792, - 835,1,0,0,0,7793,7795,3,838,419,0,7794,7793,1,0,0,0,7794,7795,1, - 0,0,0,7795,7806,1,0,0,0,7796,7804,5,178,0,0,7797,7801,3,840,420, - 0,7798,7801,5,178,0,0,7799,7801,3,838,419,0,7800,7797,1,0,0,0,7800, - 7798,1,0,0,0,7800,7799,1,0,0,0,7801,7802,1,0,0,0,7802,7800,1,0,0, - 0,7802,7803,1,0,0,0,7803,7805,1,0,0,0,7804,7800,1,0,0,0,7804,7805, - 1,0,0,0,7805,7807,1,0,0,0,7806,7796,1,0,0,0,7806,7807,1,0,0,0,7807, - 7808,1,0,0,0,7808,7812,5,146,0,0,7809,7811,3,846,423,0,7810,7809, - 1,0,0,0,7811,7814,1,0,0,0,7812,7810,1,0,0,0,7812,7813,1,0,0,0,7813, - 7816,1,0,0,0,7814,7812,1,0,0,0,7815,7817,3,924,462,0,7816,7815,1, - 0,0,0,7816,7817,1,0,0,0,7817,7818,1,0,0,0,7818,7820,5,454,0,0,7819, - 7821,3,928,464,0,7820,7819,1,0,0,0,7820,7821,1,0,0,0,7821,837,1, - 0,0,0,7822,7823,5,18,0,0,7823,7824,3,928,464,0,7824,7825,5,19,0, - 0,7825,839,1,0,0,0,7826,7873,3,928,464,0,7827,7828,5,496,0,0,7828, - 7831,5,62,0,0,7829,7832,5,28,0,0,7830,7832,3,818,409,0,7831,7829, - 1,0,0,0,7831,7830,1,0,0,0,7832,7874,1,0,0,0,7833,7835,5,497,0,0, - 7834,7833,1,0,0,0,7834,7835,1,0,0,0,7835,7836,1,0,0,0,7836,7838, - 3,652,326,0,7837,7839,3,98,49,0,7838,7837,1,0,0,0,7838,7839,1,0, - 0,0,7839,7842,1,0,0,0,7840,7841,5,77,0,0,7841,7843,5,78,0,0,7842, - 7840,1,0,0,0,7842,7843,1,0,0,0,7843,7849,1,0,0,0,7844,7847,3,844, - 422,0,7845,7847,5,53,0,0,7846,7844,1,0,0,0,7846,7845,1,0,0,0,7847, - 7848,1,0,0,0,7848,7850,3,930,465,0,7849,7846,1,0,0,0,7849,7850,1, - 0,0,0,7850,7874,1,0,0,0,7851,7853,5,269,0,0,7852,7851,1,0,0,0,7852, - 7853,1,0,0,0,7853,7854,1,0,0,0,7854,7856,5,324,0,0,7855,7852,1,0, - 0,0,7855,7856,1,0,0,0,7856,7857,1,0,0,0,7857,7869,5,172,0,0,7858, - 7859,5,2,0,0,7859,7864,3,842,421,0,7860,7861,5,6,0,0,7861,7863,3, - 842,421,0,7862,7860,1,0,0,0,7863,7866,1,0,0,0,7864,7862,1,0,0,0, - 7864,7865,1,0,0,0,7865,7867,1,0,0,0,7866,7864,1,0,0,0,7867,7868, - 5,3,0,0,7868,7870,1,0,0,0,7869,7858,1,0,0,0,7869,7870,1,0,0,0,7870, - 7871,1,0,0,0,7871,7872,7,112,0,0,7872,7874,3,560,280,0,7873,7827, - 1,0,0,0,7873,7834,1,0,0,0,7873,7855,1,0,0,0,7874,7875,1,0,0,0,7875, - 7876,5,7,0,0,7876,841,1,0,0,0,7877,7878,3,928,464,0,7878,7879,3, - 652,326,0,7879,843,1,0,0,0,7880,7881,7,113,0,0,7881,845,1,0,0,0, - 7882,7883,3,836,418,0,7883,7884,5,7,0,0,7884,7907,1,0,0,0,7885,7907, - 3,874,437,0,7886,7907,3,876,438,0,7887,7907,3,852,426,0,7888,7907, - 3,860,430,0,7889,7907,3,864,432,0,7890,7907,3,866,433,0,7891,7907, - 3,870,435,0,7892,7907,3,872,436,0,7893,7907,3,880,440,0,7894,7907, - 3,884,442,0,7895,7907,3,886,443,0,7896,7907,3,848,424,0,7897,7907, - 3,850,425,0,7898,7907,3,854,427,0,7899,7907,3,890,445,0,7900,7907, - 3,894,447,0,7901,7907,3,898,449,0,7902,7907,3,914,457,0,7903,7907, - 3,916,458,0,7904,7907,3,918,459,0,7905,7907,3,920,460,0,7906,7882, - 1,0,0,0,7906,7885,1,0,0,0,7906,7886,1,0,0,0,7906,7887,1,0,0,0,7906, - 7888,1,0,0,0,7906,7889,1,0,0,0,7906,7890,1,0,0,0,7906,7891,1,0,0, - 0,7906,7892,1,0,0,0,7906,7893,1,0,0,0,7906,7894,1,0,0,0,7906,7895, - 1,0,0,0,7906,7896,1,0,0,0,7906,7897,1,0,0,0,7906,7898,1,0,0,0,7906, - 7899,1,0,0,0,7906,7900,1,0,0,0,7906,7901,1,0,0,0,7906,7902,1,0,0, - 0,7906,7903,1,0,0,0,7906,7904,1,0,0,0,7906,7905,1,0,0,0,7907,847, - 1,0,0,0,7908,7909,5,498,0,0,7909,7910,3,930,465,0,7910,7911,5,7, - 0,0,7911,849,1,0,0,0,7912,7913,5,433,0,0,7913,7920,3,928,464,0,7914, - 7916,5,2,0,0,7915,7917,3,730,365,0,7916,7915,1,0,0,0,7916,7917,1, - 0,0,0,7917,7918,1,0,0,0,7918,7919,5,3,0,0,7919,7921,5,7,0,0,7920, - 7914,1,0,0,0,7920,7921,1,0,0,0,7921,7932,1,0,0,0,7922,7923,5,57, - 0,0,7923,7924,3,928,464,0,7924,7926,5,2,0,0,7925,7927,3,730,365, - 0,7926,7925,1,0,0,0,7926,7927,1,0,0,0,7927,7928,1,0,0,0,7928,7929, - 5,3,0,0,7929,7930,5,7,0,0,7930,7932,1,0,0,0,7931,7912,1,0,0,0,7931, - 7922,1,0,0,0,7932,851,1,0,0,0,7933,7934,3,858,429,0,7934,7935,3, - 844,422,0,7935,7936,3,930,465,0,7936,7937,5,7,0,0,7937,853,1,0,0, - 0,7938,7940,5,499,0,0,7939,7941,7,114,0,0,7940,7939,1,0,0,0,7940, - 7941,1,0,0,0,7941,7942,1,0,0,0,7942,7943,5,500,0,0,7943,7948,3,856, - 428,0,7944,7945,5,6,0,0,7945,7947,3,856,428,0,7946,7944,1,0,0,0, - 7947,7950,1,0,0,0,7948,7946,1,0,0,0,7948,7949,1,0,0,0,7949,7951, - 1,0,0,0,7950,7948,1,0,0,0,7951,7952,5,7,0,0,7952,855,1,0,0,0,7953, - 7954,3,858,429,0,7954,7955,3,844,422,0,7955,7956,3,818,409,0,7956, - 857,1,0,0,0,7957,7960,3,316,158,0,7958,7960,5,28,0,0,7959,7957,1, - 0,0,0,7959,7958,1,0,0,0,7960,7967,1,0,0,0,7961,7962,5,4,0,0,7962, - 7963,3,674,337,0,7963,7964,5,5,0,0,7964,7966,1,0,0,0,7965,7961,1, - 0,0,0,7966,7969,1,0,0,0,7967,7965,1,0,0,0,7967,7968,1,0,0,0,7968, - 859,1,0,0,0,7969,7967,1,0,0,0,7970,7971,5,220,0,0,7971,7972,3,930, - 465,0,7972,7976,5,93,0,0,7973,7975,3,846,423,0,7974,7973,1,0,0,0, - 7975,7978,1,0,0,0,7976,7974,1,0,0,0,7976,7977,1,0,0,0,7977,7990, - 1,0,0,0,7978,7976,1,0,0,0,7979,7980,5,502,0,0,7980,7981,3,674,337, - 0,7981,7985,5,93,0,0,7982,7984,3,846,423,0,7983,7982,1,0,0,0,7984, - 7987,1,0,0,0,7985,7983,1,0,0,0,7985,7986,1,0,0,0,7986,7989,1,0,0, - 0,7987,7985,1,0,0,0,7988,7979,1,0,0,0,7989,7992,1,0,0,0,7990,7988, - 1,0,0,0,7990,7991,1,0,0,0,7991,7994,1,0,0,0,7992,7990,1,0,0,0,7993, - 7995,3,862,431,0,7994,7993,1,0,0,0,7994,7995,1,0,0,0,7995,7996,1, - 0,0,0,7996,7997,5,454,0,0,7997,7998,5,220,0,0,7998,7999,5,7,0,0, - 7999,861,1,0,0,0,8000,8004,5,58,0,0,8001,8003,3,846,423,0,8002,8001, - 1,0,0,0,8003,8006,1,0,0,0,8004,8002,1,0,0,0,8004,8005,1,0,0,0,8005, - 863,1,0,0,0,8006,8004,1,0,0,0,8007,8009,5,40,0,0,8008,8010,3,930, - 465,0,8009,8008,1,0,0,0,8009,8010,1,0,0,0,8010,8020,1,0,0,0,8011, - 8012,5,102,0,0,8012,8013,3,730,365,0,8013,8017,5,93,0,0,8014,8016, - 3,846,423,0,8015,8014,1,0,0,0,8016,8019,1,0,0,0,8017,8015,1,0,0, - 0,8017,8018,1,0,0,0,8018,8021,1,0,0,0,8019,8017,1,0,0,0,8020,8011, - 1,0,0,0,8021,8022,1,0,0,0,8022,8020,1,0,0,0,8022,8023,1,0,0,0,8023, - 8025,1,0,0,0,8024,8026,3,862,431,0,8025,8024,1,0,0,0,8025,8026,1, - 0,0,0,8026,8027,1,0,0,0,8027,8028,5,454,0,0,8028,8029,5,40,0,0,8029, - 8030,5,7,0,0,8030,865,1,0,0,0,8031,8033,3,838,419,0,8032,8031,1, - 0,0,0,8032,8033,1,0,0,0,8033,8038,1,0,0,0,8034,8035,5,503,0,0,8035, - 8039,3,674,337,0,8036,8037,5,62,0,0,8037,8039,3,868,434,0,8038,8034, - 1,0,0,0,8038,8036,1,0,0,0,8038,8039,1,0,0,0,8039,8040,1,0,0,0,8040, - 8041,3,882,441,0,8041,867,1,0,0,0,8042,8043,3,314,157,0,8043,8066, - 5,68,0,0,8044,8046,3,818,409,0,8045,8047,3,534,267,0,8046,8045,1, - 0,0,0,8046,8047,1,0,0,0,8047,8067,1,0,0,0,8048,8067,3,560,280,0, - 8049,8067,3,520,260,0,8050,8051,5,202,0,0,8051,8054,3,674,337,0, - 8052,8053,5,100,0,0,8053,8055,3,730,365,0,8054,8052,1,0,0,0,8054, - 8055,1,0,0,0,8055,8067,1,0,0,0,8056,8058,5,504,0,0,8057,8056,1,0, - 0,0,8057,8058,1,0,0,0,8058,8059,1,0,0,0,8059,8060,3,674,337,0,8060, - 8061,5,24,0,0,8061,8064,3,674,337,0,8062,8063,5,147,0,0,8063,8065, - 3,674,337,0,8064,8062,1,0,0,0,8064,8065,1,0,0,0,8065,8067,1,0,0, - 0,8066,8044,1,0,0,0,8066,8048,1,0,0,0,8066,8049,1,0,0,0,8066,8050, - 1,0,0,0,8066,8057,1,0,0,0,8067,869,1,0,0,0,8068,8070,3,838,419,0, - 8069,8068,1,0,0,0,8069,8070,1,0,0,0,8070,8071,1,0,0,0,8071,8072, - 5,505,0,0,8072,8075,3,314,157,0,8073,8074,5,506,0,0,8074,8076,5, - 571,0,0,8075,8073,1,0,0,0,8075,8076,1,0,0,0,8076,8077,1,0,0,0,8077, - 8078,5,68,0,0,8078,8079,5,35,0,0,8079,8080,3,674,337,0,8080,8081, - 3,882,441,0,8081,871,1,0,0,0,8082,8084,7,115,0,0,8083,8085,3,928, - 464,0,8084,8083,1,0,0,0,8084,8085,1,0,0,0,8085,8088,1,0,0,0,8086, - 8087,5,102,0,0,8087,8089,3,930,465,0,8088,8086,1,0,0,0,8088,8089, - 1,0,0,0,8089,8090,1,0,0,0,8090,8091,5,7,0,0,8091,873,1,0,0,0,8092, - 8107,5,508,0,0,8093,8094,5,268,0,0,8094,8108,3,930,465,0,8095,8102, - 5,509,0,0,8096,8097,5,202,0,0,8097,8098,3,674,337,0,8098,8099,5, - 100,0,0,8099,8100,3,730,365,0,8100,8103,1,0,0,0,8101,8103,3,560, - 280,0,8102,8096,1,0,0,0,8102,8101,1,0,0,0,8103,8108,1,0,0,0,8104, - 8106,3,930,465,0,8105,8104,1,0,0,0,8105,8106,1,0,0,0,8106,8108,1, - 0,0,0,8107,8093,1,0,0,0,8107,8095,1,0,0,0,8107,8105,1,0,0,0,8108, - 8109,1,0,0,0,8109,8110,5,7,0,0,8110,875,1,0,0,0,8111,8141,5,510, - 0,0,8112,8114,7,116,0,0,8113,8112,1,0,0,0,8113,8114,1,0,0,0,8114, - 8127,1,0,0,0,8115,8128,3,826,413,0,8116,8117,5,511,0,0,8117,8128, - 3,808,404,0,8118,8125,3,808,404,0,8119,8120,5,6,0,0,8120,8122,3, - 674,337,0,8121,8119,1,0,0,0,8122,8123,1,0,0,0,8123,8121,1,0,0,0, - 8123,8124,1,0,0,0,8124,8126,1,0,0,0,8125,8121,1,0,0,0,8125,8126, - 1,0,0,0,8126,8128,1,0,0,0,8127,8115,1,0,0,0,8127,8116,1,0,0,0,8127, - 8118,1,0,0,0,8127,8128,1,0,0,0,8128,8138,1,0,0,0,8129,8130,5,100, - 0,0,8130,8135,3,878,439,0,8131,8132,5,6,0,0,8132,8134,3,878,439, - 0,8133,8131,1,0,0,0,8134,8137,1,0,0,0,8135,8133,1,0,0,0,8135,8136, - 1,0,0,0,8136,8139,1,0,0,0,8137,8135,1,0,0,0,8138,8129,1,0,0,0,8138, - 8139,1,0,0,0,8139,8140,1,0,0,0,8140,8142,5,7,0,0,8141,8113,1,0,0, - 0,8141,8142,1,0,0,0,8142,877,1,0,0,0,8143,8144,3,826,413,0,8144, - 8145,5,10,0,0,8145,8146,3,674,337,0,8146,879,1,0,0,0,8147,8148,5, - 518,0,0,8148,8151,3,930,465,0,8149,8150,5,6,0,0,8150,8152,3,930, - 465,0,8151,8149,1,0,0,0,8151,8152,1,0,0,0,8152,8153,1,0,0,0,8153, - 8154,5,7,0,0,8154,881,1,0,0,0,8155,8159,5,519,0,0,8156,8158,3,846, - 423,0,8157,8156,1,0,0,0,8158,8161,1,0,0,0,8159,8157,1,0,0,0,8159, - 8160,1,0,0,0,8160,8162,1,0,0,0,8161,8159,1,0,0,0,8162,8163,5,454, - 0,0,8163,8165,5,519,0,0,8164,8166,3,928,464,0,8165,8164,1,0,0,0, - 8165,8166,1,0,0,0,8166,8167,1,0,0,0,8167,8168,5,7,0,0,8168,883,1, - 0,0,0,8169,8171,3,4,2,0,8170,8172,3,888,444,0,8171,8170,1,0,0,0, - 8171,8172,1,0,0,0,8172,8173,1,0,0,0,8173,8174,5,7,0,0,8174,885,1, - 0,0,0,8175,8176,5,202,0,0,8176,8192,3,674,337,0,8177,8179,3,888, - 444,0,8178,8177,1,0,0,0,8178,8179,1,0,0,0,8179,8182,1,0,0,0,8180, - 8181,5,100,0,0,8181,8183,3,730,365,0,8182,8180,1,0,0,0,8182,8183, - 1,0,0,0,8183,8193,1,0,0,0,8184,8185,5,100,0,0,8185,8187,3,730,365, - 0,8186,8184,1,0,0,0,8186,8187,1,0,0,0,8187,8189,1,0,0,0,8188,8190, - 3,888,444,0,8189,8188,1,0,0,0,8189,8190,1,0,0,0,8190,8193,1,0,0, - 0,8191,8193,1,0,0,0,8192,8178,1,0,0,0,8192,8186,1,0,0,0,8192,8191, - 1,0,0,0,8193,8194,1,0,0,0,8194,8195,5,7,0,0,8195,887,1,0,0,0,8196, - 8198,5,71,0,0,8197,8199,5,346,0,0,8198,8197,1,0,0,0,8198,8199,1, - 0,0,0,8199,8200,1,0,0,0,8200,8201,3,730,365,0,8201,889,1,0,0,0,8202, - 8234,5,520,0,0,8203,8208,3,922,461,0,8204,8206,5,269,0,0,8205,8204, - 1,0,0,0,8205,8206,1,0,0,0,8206,8207,1,0,0,0,8207,8209,5,324,0,0, - 8208,8205,1,0,0,0,8208,8209,1,0,0,0,8209,8210,1,0,0,0,8210,8218, - 5,62,0,0,8211,8219,3,560,280,0,8212,8213,5,202,0,0,8213,8216,3,930, - 465,0,8214,8215,5,100,0,0,8215,8217,3,730,365,0,8216,8214,1,0,0, - 0,8216,8217,1,0,0,0,8217,8219,1,0,0,0,8218,8211,1,0,0,0,8218,8212, - 1,0,0,0,8219,8235,1,0,0,0,8220,8232,3,818,409,0,8221,8222,5,2,0, - 0,8222,8227,3,892,446,0,8223,8224,5,6,0,0,8224,8226,3,892,446,0, - 8225,8223,1,0,0,0,8226,8229,1,0,0,0,8227,8225,1,0,0,0,8227,8228, - 1,0,0,0,8228,8230,1,0,0,0,8229,8227,1,0,0,0,8230,8231,5,3,0,0,8231, - 8233,1,0,0,0,8232,8221,1,0,0,0,8232,8233,1,0,0,0,8233,8235,1,0,0, - 0,8234,8203,1,0,0,0,8234,8220,1,0,0,0,8235,8236,1,0,0,0,8236,8237, - 5,7,0,0,8237,891,1,0,0,0,8238,8239,3,818,409,0,8239,8240,5,20,0, - 0,8240,8242,1,0,0,0,8241,8238,1,0,0,0,8241,8242,1,0,0,0,8242,8243, - 1,0,0,0,8243,8244,3,674,337,0,8244,893,1,0,0,0,8245,8247,5,61,0, - 0,8246,8248,3,896,448,0,8247,8246,1,0,0,0,8247,8248,1,0,0,0,8248, - 8250,1,0,0,0,8249,8251,3,332,166,0,8250,8249,1,0,0,0,8250,8251,1, - 0,0,0,8251,8252,1,0,0,0,8252,8253,3,922,461,0,8253,8254,5,71,0,0, - 8254,8255,3,730,365,0,8255,8256,5,7,0,0,8256,895,1,0,0,0,8257,8272, - 5,268,0,0,8258,8272,5,293,0,0,8259,8272,5,207,0,0,8260,8272,5,249, - 0,0,8261,8263,7,50,0,0,8262,8261,1,0,0,0,8262,8263,1,0,0,0,8263, - 8264,1,0,0,0,8264,8272,3,674,337,0,8265,8272,5,30,0,0,8266,8269, - 7,117,0,0,8267,8270,3,674,337,0,8268,8270,5,30,0,0,8269,8267,1,0, - 0,0,8269,8268,1,0,0,0,8269,8270,1,0,0,0,8270,8272,1,0,0,0,8271,8257, - 1,0,0,0,8271,8258,1,0,0,0,8271,8259,1,0,0,0,8271,8260,1,0,0,0,8271, - 8262,1,0,0,0,8271,8265,1,0,0,0,8271,8266,1,0,0,0,8272,897,1,0,0, - 0,8273,8275,5,265,0,0,8274,8276,3,896,448,0,8275,8274,1,0,0,0,8275, - 8276,1,0,0,0,8276,8277,1,0,0,0,8277,8278,3,922,461,0,8278,8279,5, - 7,0,0,8279,899,1,0,0,0,8280,8282,3,572,286,0,8281,8280,1,0,0,0,8281, - 8282,1,0,0,0,8282,8283,1,0,0,0,8283,8284,5,525,0,0,8284,8286,5,71, - 0,0,8285,8287,5,81,0,0,8286,8285,1,0,0,0,8286,8287,1,0,0,0,8287, - 8288,1,0,0,0,8288,8290,3,774,387,0,8289,8291,5,9,0,0,8290,8289,1, - 0,0,0,8290,8291,1,0,0,0,8291,8296,1,0,0,0,8292,8294,5,36,0,0,8293, - 8292,1,0,0,0,8293,8294,1,0,0,0,8294,8295,1,0,0,0,8295,8297,3,818, - 409,0,8296,8293,1,0,0,0,8296,8297,1,0,0,0,8297,8298,1,0,0,0,8298, - 8299,5,100,0,0,8299,8300,3,902,451,0,8300,8301,5,80,0,0,8301,8303, - 3,674,337,0,8302,8304,3,904,452,0,8303,8302,1,0,0,0,8304,8305,1, - 0,0,0,8305,8303,1,0,0,0,8305,8306,1,0,0,0,8306,901,1,0,0,0,8307, - 8309,5,81,0,0,8308,8307,1,0,0,0,8308,8309,1,0,0,0,8309,8310,1,0, - 0,0,8310,8312,3,774,387,0,8311,8313,5,9,0,0,8312,8311,1,0,0,0,8312, - 8313,1,0,0,0,8313,8319,1,0,0,0,8314,8317,3,564,282,0,8315,8317,3, - 608,304,0,8316,8314,1,0,0,0,8316,8315,1,0,0,0,8317,8319,1,0,0,0, - 8318,8308,1,0,0,0,8318,8316,1,0,0,0,8319,8324,1,0,0,0,8320,8322, - 5,36,0,0,8321,8320,1,0,0,0,8321,8322,1,0,0,0,8322,8323,1,0,0,0,8323, - 8325,3,818,409,0,8324,8321,1,0,0,0,8324,8325,1,0,0,0,8325,903,1, - 0,0,0,8326,8327,5,102,0,0,8327,8330,5,526,0,0,8328,8329,5,33,0,0, - 8329,8331,3,674,337,0,8330,8328,1,0,0,0,8330,8331,1,0,0,0,8331,8332, - 1,0,0,0,8332,8337,5,93,0,0,8333,8338,3,908,454,0,8334,8338,5,182, - 0,0,8335,8336,5,57,0,0,8336,8338,5,270,0,0,8337,8333,1,0,0,0,8337, - 8334,1,0,0,0,8337,8335,1,0,0,0,8338,8353,1,0,0,0,8339,8340,5,102, - 0,0,8340,8341,5,77,0,0,8341,8344,5,526,0,0,8342,8343,5,33,0,0,8343, - 8345,3,674,337,0,8344,8342,1,0,0,0,8344,8345,1,0,0,0,8345,8346,1, - 0,0,0,8346,8350,5,93,0,0,8347,8351,3,906,453,0,8348,8349,5,57,0, - 0,8349,8351,5,270,0,0,8350,8347,1,0,0,0,8350,8348,1,0,0,0,8351,8353, - 1,0,0,0,8352,8326,1,0,0,0,8352,8339,1,0,0,0,8353,905,1,0,0,0,8354, - 8356,5,241,0,0,8355,8357,3,144,72,0,8356,8355,1,0,0,0,8356,8357, - 1,0,0,0,8357,8361,1,0,0,0,8358,8359,5,463,0,0,8359,8360,7,76,0,0, - 8360,8362,5,450,0,0,8361,8358,1,0,0,0,8361,8362,1,0,0,0,8362,8363, - 1,0,0,0,8363,8364,3,910,455,0,8364,907,1,0,0,0,8365,8366,5,369,0, - 0,8366,8384,5,333,0,0,8367,8368,3,800,400,0,8368,8369,5,10,0,0,8369, - 8370,3,912,456,0,8370,8385,1,0,0,0,8371,8372,3,144,72,0,8372,8373, - 5,10,0,0,8373,8374,5,2,0,0,8374,8379,3,912,456,0,8375,8376,5,6,0, - 0,8376,8378,3,912,456,0,8377,8375,1,0,0,0,8378,8381,1,0,0,0,8379, - 8377,1,0,0,0,8379,8380,1,0,0,0,8380,8382,1,0,0,0,8381,8379,1,0,0, - 0,8382,8383,5,3,0,0,8383,8385,1,0,0,0,8384,8367,1,0,0,0,8384,8371, - 1,0,0,0,8385,8386,1,0,0,0,8386,8384,1,0,0,0,8386,8387,1,0,0,0,8387, - 909,1,0,0,0,8388,8389,5,422,0,0,8389,8390,5,2,0,0,8390,8395,3,912, - 456,0,8391,8392,5,6,0,0,8392,8394,3,912,456,0,8393,8391,1,0,0,0, - 8394,8397,1,0,0,0,8395,8393,1,0,0,0,8395,8396,1,0,0,0,8396,8398, - 1,0,0,0,8397,8395,1,0,0,0,8398,8399,5,3,0,0,8399,8403,1,0,0,0,8400, - 8401,5,53,0,0,8401,8403,5,422,0,0,8402,8388,1,0,0,0,8402,8400,1, - 0,0,0,8403,911,1,0,0,0,8404,8407,3,588,294,0,8405,8407,5,53,0,0, - 8406,8404,1,0,0,0,8406,8405,1,0,0,0,8407,913,1,0,0,0,8408,8409,5, - 157,0,0,8409,8410,3,922,461,0,8410,8411,5,7,0,0,8411,915,1,0,0,0, - 8412,8413,5,78,0,0,8413,8414,5,7,0,0,8414,917,1,0,0,0,8415,8421, - 7,67,0,0,8416,8418,5,33,0,0,8417,8419,5,269,0,0,8418,8417,1,0,0, - 0,8418,8419,1,0,0,0,8419,8420,1,0,0,0,8420,8422,5,153,0,0,8421,8416, - 1,0,0,0,8421,8422,1,0,0,0,8422,8423,1,0,0,0,8423,8424,5,7,0,0,8424, - 919,1,0,0,0,8425,8426,5,333,0,0,8426,8427,3,316,158,0,8427,8428, - 5,94,0,0,8428,8429,5,53,0,0,8429,8430,5,7,0,0,8430,8438,1,0,0,0, - 8431,8434,5,313,0,0,8432,8435,3,316,158,0,8433,8435,5,30,0,0,8434, - 8432,1,0,0,0,8434,8433,1,0,0,0,8435,8436,1,0,0,0,8436,8438,5,7,0, - 0,8437,8425,1,0,0,0,8437,8431,1,0,0,0,8438,921,1,0,0,0,8439,8442, - 3,818,409,0,8440,8442,5,28,0,0,8441,8439,1,0,0,0,8441,8440,1,0,0, - 0,8442,923,1,0,0,0,8443,8460,5,517,0,0,8444,8445,5,102,0,0,8445, - 8450,3,926,463,0,8446,8447,5,82,0,0,8447,8449,3,926,463,0,8448,8446, - 1,0,0,0,8449,8452,1,0,0,0,8450,8448,1,0,0,0,8450,8451,1,0,0,0,8451, - 8453,1,0,0,0,8452,8450,1,0,0,0,8453,8457,5,93,0,0,8454,8456,3,846, - 423,0,8455,8454,1,0,0,0,8456,8459,1,0,0,0,8457,8455,1,0,0,0,8457, - 8458,1,0,0,0,8458,8461,1,0,0,0,8459,8457,1,0,0,0,8460,8444,1,0,0, - 0,8461,8462,1,0,0,0,8462,8460,1,0,0,0,8462,8463,1,0,0,0,8463,925, - 1,0,0,0,8464,8468,3,928,464,0,8465,8466,5,511,0,0,8466,8468,3,808, - 404,0,8467,8464,1,0,0,0,8467,8465,1,0,0,0,8468,927,1,0,0,0,8469, - 8472,3,818,409,0,8470,8472,3,828,414,0,8471,8469,1,0,0,0,8471,8470, - 1,0,0,0,8472,929,1,0,0,0,8473,8475,3,756,378,0,8474,8473,1,0,0,0, - 8474,8475,1,0,0,0,8475,8477,1,0,0,0,8476,8478,3,580,290,0,8477,8476, - 1,0,0,0,8477,8478,1,0,0,0,8478,8480,1,0,0,0,8479,8481,3,610,305, - 0,8480,8479,1,0,0,0,8480,8481,1,0,0,0,8481,8483,1,0,0,0,8482,8484, - 3,638,319,0,8483,8482,1,0,0,0,8483,8484,1,0,0,0,8484,8486,1,0,0, - 0,8485,8487,3,600,300,0,8486,8485,1,0,0,0,8486,8487,1,0,0,0,8487, - 8490,1,0,0,0,8488,8489,5,67,0,0,8489,8491,3,674,337,0,8490,8488, - 1,0,0,0,8490,8491,1,0,0,0,8491,8493,1,0,0,0,8492,8494,3,702,351, - 0,8493,8492,1,0,0,0,8493,8494,1,0,0,0,8494,931,1,0,0,0,1188,935, - 942,1062,1064,1073,1078,1084,1119,1129,1135,1140,1147,1152,1159, - 1170,1178,1182,1194,1200,1206,1210,1215,1219,1232,1242,1244,1250, - 1255,1268,1271,1276,1281,1292,1296,1308,1312,1315,1319,1331,1349, - 1356,1364,1369,1376,1384,1390,1398,1406,1410,1424,1429,1434,1446, - 1452,1464,1469,1479,1485,1490,1498,1503,1510,1515,1520,1530,1535, - 1540,1547,1551,1565,1571,1577,1582,1589,1601,1609,1617,1633,1642, - 1651,1660,1664,1676,1684,1694,1714,1719,1722,1729,1732,1736,1740, - 1743,1748,1753,1757,1766,1772,1776,1785,1788,1794,1803,1815,1819, - 1823,1828,1831,1837,1839,1841,1845,1851,1855,1860,1865,1869,1872, - 1879,1892,1905,1919,1936,1946,1953,1958,1962,1969,1974,1977,1979, - 1984,1988,1992,1996,2001,2004,2008,2011,2015,2023,2028,2031,2035, - 2041,2050,2054,2060,2062,2071,2076,2088,2093,2097,2101,2106,2110, - 2113,2116,2119,2122,2125,2130,2133,2136,2139,2142,2145,2151,2155, - 2158,2161,2164,2167,2169,2176,2184,2194,2199,2209,2212,2217,2222, - 2227,2230,2235,2244,2246,2250,2253,2257,2262,2267,2271,2274,2278, - 2281,2286,2289,2294,2297,2301,2304,2307,2312,2315,2323,2335,2339, - 2346,2351,2354,2357,2360,2365,2376,2382,2386,2389,2392,2397,2404, - 2407,2411,2419,2424,2427,2430,2437,2442,2451,2454,2457,2462,2465, - 2477,2487,2504,2508,2512,2514,2531,2533,2549,2560,2563,2566,2575, - 2584,2600,2603,2606,2614,2618,2625,2634,2638,2644,2648,2651,2654, - 2657,2660,2666,2670,2675,2679,2682,2685,2688,2693,2699,2703,2707, - 2711,2717,2719,2724,2730,2736,2740,2755,2760,2763,2765,2768,2772, - 2776,2779,2782,2790,2796,2798,2804,2809,2814,2818,2825,2827,2838, - 2877,2887,2889,2892,2896,2900,2910,2912,2918,2920,2929,2941,2955, - 2960,2963,2970,2975,2983,2985,2991,2996,3000,3005,3011,3018,3024, - 3026,3035,3041,3049,3055,3060,3065,3073,3088,3090,3094,3098,3101, - 3104,3113,3116,3119,3125,3131,3135,3147,3153,3156,3161,3165,3172, - 3182,3184,3208,3220,3225,3227,3231,3234,3237,3247,3250,3260,3265, - 3270,3273,3276,3284,3290,3297,3305,3308,3319,3323,3329,3336,3339, - 3348,3362,3365,3379,3390,3393,3405,3410,3423,3428,3441,3450,3453, - 3456,3463,3466,3478,3484,3486,3494,3502,3510,3522,3527,3538,3549, - 3557,3565,3572,3579,3581,3584,3589,3594,3613,3622,3625,3652,3661, - 3664,3668,3672,3676,3683,3687,3691,3695,3699,3704,3708,3713,3719, - 3724,3731,3735,3741,3745,3750,3758,3764,3769,3776,3781,3785,3790, - 3796,3803,3808,3815,3820,3827,3831,3839,3843,3845,3848,3853,3863, - 3878,3881,3889,3896,3901,3907,3911,3918,3923,3926,3929,3933,3942, - 3960,3963,3995,4000,4006,4026,4031,4037,4040,4044,4048,4054,4057, - 4061,4065,4070,4073,4076,4079,4092,4098,4106,4113,4118,4121,4128, - 4131,4139,4142,4147,4154,4157,4177,4189,4192,4198,4203,4212,4220, - 4225,4231,4238,4246,4249,4260,4262,4276,4282,4290,4292,4298,4302, - 4305,4308,4313,4318,4322,4325,4328,4331,4334,4342,4353,4356,4359, - 4364,4367,4371,4375,4381,4389,4392,4405,4410,4412,4417,4424,4431, - 4440,4448,4456,4463,4471,4478,4486,4490,4494,4496,4502,4507,4511, - 4518,4523,4528,4533,4535,4545,4555,4571,4589,4601,4608,4623,4628, - 4631,4636,4641,4646,4649,4652,4657,4664,4668,4673,4680,4684,4690, - 4699,4708,4720,4722,4735,4741,4745,4747,4754,4767,4774,4776,4792, - 4796,4800,4805,4810,4815,4820,4823,4835,4888,4897,4901,4910,4914, - 4923,4927,4932,4935,4939,4944,4946,4955,4960,4971,4975,4989,4997, - 5035,5037,5056,5059,5086,5090,5094,5098,5102,5105,5120,5127,5141, - 5154,5179,5198,5213,5229,5236,5247,5250,5269,5272,5285,5289,5309, - 5321,5325,5347,5351,5361,5365,5371,5375,5379,5383,5390,5395,5406, - 5410,5413,5418,5424,5435,5439,5442,5446,5450,5453,5463,5466,5470, - 5475,5481,5484,5489,5492,5499,5501,5507,5511,5520,5525,5527,5537, - 5540,5545,5553,5556,5561,5563,5565,5571,5588,5594,5607,5613,5617, - 5622,5652,5667,5672,5676,5689,5693,5695,5704,5710,5712,5716,5719, - 5722,5725,5728,5730,5733,5737,5745,5750,5753,5759,5763,5767,5772, - 5774,5778,5782,5789,5795,5799,5801,5803,5816,5824,5832,5843,5852, - 5857,5861,5865,5872,5875,5877,5885,5889,5892,5899,5906,5911,5918, - 5921,5923,5926,5932,5937,5941,5948,5958,5965,5968,5971,5975,5986, - 5989,5992,5995,5998,6005,6008,6011,6018,6030,6037,6039,6044,6049, - 6051,6057,6064,6069,6074,6078,6082,6086,6088,6092,6096,6099,6102, - 6104,6114,6116,6121,6125,6130,6134,6141,6146,6150,6153,6159,6162, - 6181,6188,6192,6195,6199,6203,6206,6209,6214,6223,6230,6234,6238, - 6242,6245,6247,6252,6256,6261,6267,6274,6279,6284,6293,6300,6308, - 6319,6324,6328,6331,6335,6340,6344,6349,6357,6368,6373,6377,6380, - 6383,6385,6388,6391,6394,6398,6402,6406,6408,6417,6422,6428,6432, - 6434,6441,6446,6452,6454,6458,6465,6470,6473,6479,6483,6489,6498, - 6504,6506,6511,6514,6523,6530,6532,6539,6544,6547,6557,6568,6573, - 6577,6585,6595,6602,6608,6619,6625,6635,6644,6648,6651,6653,6655, - 6659,6667,6670,6675,6680,6687,6689,6695,6699,6702,6707,6710,6712, - 6718,6727,6733,6736,6744,6747,6751,6757,6759,6762,6766,6771,6778, - 6785,6787,6793,6795,6800,6802,6806,6815,6819,6827,6829,6843,6846, - 6854,6863,6869,6874,6882,6884,6889,6893,6898,6903,6909,6925,6927, - 6936,6951,6956,6959,6965,6970,6983,6988,6992,6999,7018,7030,7035, - 7043,7045,7047,7056,7059,7064,7069,7073,7076,7085,7093,7098,7100, - 7103,7107,7118,7139,7147,7160,7170,7176,7182,7185,7188,7214,7216, - 7237,7247,7260,7265,7269,7271,7283,7290,7296,7302,7306,7317,7327, - 7331,7336,7339,7342,7351,7362,7364,7368,7373,7382,7387,7395,7405, - 7413,7417,7420,7427,7435,7439,7446,7454,7463,7466,7478,7487,7494, - 7503,7513,7518,7522,7524,7527,7532,7537,7545,7553,7556,7563,7571, - 7579,7587,7604,7611,7619,7636,7642,7648,7656,7662,7667,7675,7680, - 7683,7692,7699,7704,7708,7713,7719,7724,7732,7787,7794,7800,7802, - 7804,7806,7812,7816,7820,7831,7834,7838,7842,7846,7849,7852,7855, - 7864,7869,7873,7906,7916,7920,7926,7931,7940,7948,7959,7967,7976, - 7985,7990,7994,8004,8009,8017,8022,8025,8032,8038,8046,8054,8057, - 8064,8066,8069,8075,8084,8088,8102,8105,8107,8113,8123,8125,8127, - 8135,8138,8141,8151,8159,8165,8171,8178,8182,8186,8189,8192,8198, - 8205,8208,8216,8218,8227,8232,8234,8241,8247,8250,8262,8269,8271, - 8275,8281,8286,8290,8293,8296,8305,8308,8312,8316,8318,8321,8324, - 8330,8337,8344,8350,8352,8356,8361,8379,8384,8386,8395,8402,8406, - 8418,8421,8434,8437,8441,8450,8457,8462,8467,8471,8474,8477,8480, - 8483,8486,8490,8493 + 7446,1,0,0,0,7449,7456,3,674,337,0,7450,7453,3,820,410,0,7451,7452, + 7,107,0,0,7452,7454,3,674,337,0,7453,7451,1,0,0,0,7453,7454,1,0, + 0,0,7454,7456,1,0,0,0,7455,7449,1,0,0,0,7455,7450,1,0,0,0,7456,739, + 1,0,0,0,7457,7467,5,4,0,0,7458,7468,3,730,365,0,7459,7464,3,740, + 370,0,7460,7461,5,6,0,0,7461,7463,3,740,370,0,7462,7460,1,0,0,0, + 7463,7466,1,0,0,0,7464,7462,1,0,0,0,7464,7465,1,0,0,0,7465,7468, + 1,0,0,0,7466,7464,1,0,0,0,7467,7458,1,0,0,0,7467,7459,1,0,0,0,7467, + 7468,1,0,0,0,7468,7469,1,0,0,0,7469,7470,5,5,0,0,7470,741,1,0,0, + 0,7471,7480,3,826,413,0,7472,7480,5,384,0,0,7473,7480,5,264,0,0, + 7474,7480,5,176,0,0,7475,7480,5,218,0,0,7476,7480,5,261,0,0,7477, + 7480,5,326,0,0,7478,7480,3,808,404,0,7479,7471,1,0,0,0,7479,7472, + 1,0,0,0,7479,7473,1,0,0,0,7479,7474,1,0,0,0,7479,7475,1,0,0,0,7479, + 7476,1,0,0,0,7479,7477,1,0,0,0,7479,7478,1,0,0,0,7480,743,1,0,0, + 0,7481,7482,7,108,0,0,7482,745,1,0,0,0,7483,7484,3,674,337,0,7484, + 7485,5,64,0,0,7485,7488,3,674,337,0,7486,7487,5,62,0,0,7487,7489, + 3,674,337,0,7488,7486,1,0,0,0,7488,7489,1,0,0,0,7489,7505,1,0,0, + 0,7490,7491,3,674,337,0,7491,7492,5,62,0,0,7492,7495,3,674,337,0, + 7493,7494,5,64,0,0,7494,7496,3,674,337,0,7495,7493,1,0,0,0,7495, + 7496,1,0,0,0,7496,7505,1,0,0,0,7497,7498,3,674,337,0,7498,7499,5, + 127,0,0,7499,7500,3,674,337,0,7500,7501,5,197,0,0,7501,7502,3,674, + 337,0,7502,7505,1,0,0,0,7503,7505,3,730,365,0,7504,7483,1,0,0,0, + 7504,7490,1,0,0,0,7504,7497,1,0,0,0,7504,7503,1,0,0,0,7505,747,1, + 0,0,0,7506,7507,5,102,0,0,7507,7508,3,674,337,0,7508,7509,5,93,0, + 0,7509,7510,3,674,337,0,7510,749,1,0,0,0,7511,7514,5,11,0,0,7512, + 7515,3,824,412,0,7513,7515,5,9,0,0,7514,7512,1,0,0,0,7514,7513,1, + 0,0,0,7515,7529,1,0,0,0,7516,7525,5,4,0,0,7517,7526,3,674,337,0, + 7518,7520,3,674,337,0,7519,7518,1,0,0,0,7519,7520,1,0,0,0,7520,7521, + 1,0,0,0,7521,7523,5,8,0,0,7522,7524,3,674,337,0,7523,7522,1,0,0, + 0,7523,7524,1,0,0,0,7524,7526,1,0,0,0,7525,7517,1,0,0,0,7525,7519, + 1,0,0,0,7526,7527,1,0,0,0,7527,7529,5,5,0,0,7528,7511,1,0,0,0,7528, + 7516,1,0,0,0,7529,751,1,0,0,0,7530,7532,3,750,375,0,7531,7530,1, + 0,0,0,7532,7533,1,0,0,0,7533,7531,1,0,0,0,7533,7534,1,0,0,0,7534, + 753,1,0,0,0,7535,7537,3,750,375,0,7536,7535,1,0,0,0,7537,7540,1, + 0,0,0,7538,7536,1,0,0,0,7538,7539,1,0,0,0,7539,755,1,0,0,0,7540, + 7538,1,0,0,0,7541,7546,3,758,379,0,7542,7543,5,6,0,0,7543,7545,3, + 758,379,0,7544,7542,1,0,0,0,7545,7548,1,0,0,0,7546,7544,1,0,0,0, + 7546,7547,1,0,0,0,7547,757,1,0,0,0,7548,7546,1,0,0,0,7549,7554,3, + 734,367,0,7550,7551,5,36,0,0,7551,7555,3,824,412,0,7552,7555,3,826, + 413,0,7553,7555,1,0,0,0,7554,7550,1,0,0,0,7554,7552,1,0,0,0,7554, + 7553,1,0,0,0,7555,7558,1,0,0,0,7556,7558,5,9,0,0,7557,7549,1,0,0, + 0,7557,7556,1,0,0,0,7558,759,1,0,0,0,7559,7564,3,780,390,0,7560, + 7561,5,6,0,0,7561,7563,3,780,390,0,7562,7560,1,0,0,0,7563,7566,1, + 0,0,0,7564,7562,1,0,0,0,7564,7565,1,0,0,0,7565,761,1,0,0,0,7566, + 7564,1,0,0,0,7567,7572,3,774,387,0,7568,7569,5,6,0,0,7569,7571,3, + 774,387,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,763,1,0,0,0,7574,7572,1,0,0,0,7575,7580,3, + 790,395,0,7576,7577,5,6,0,0,7577,7579,3,790,395,0,7578,7576,1,0, + 0,0,7579,7582,1,0,0,0,7580,7578,1,0,0,0,7580,7581,1,0,0,0,7581,765, + 1,0,0,0,7582,7580,1,0,0,0,7583,7588,3,788,394,0,7584,7585,5,6,0, + 0,7585,7587,3,788,394,0,7586,7584,1,0,0,0,7587,7590,1,0,0,0,7588, + 7586,1,0,0,0,7588,7589,1,0,0,0,7589,767,1,0,0,0,7590,7588,1,0,0, + 0,7591,7592,3,780,390,0,7592,769,1,0,0,0,7593,7594,3,780,390,0,7594, + 771,1,0,0,0,7595,7596,3,780,390,0,7596,773,1,0,0,0,7597,7598,3,780, + 390,0,7598,775,1,0,0,0,7599,7600,3,780,390,0,7600,777,1,0,0,0,7601, + 7602,3,316,158,0,7602,779,1,0,0,0,7603,7605,3,818,409,0,7604,7606, + 3,752,376,0,7605,7604,1,0,0,0,7605,7606,1,0,0,0,7606,781,1,0,0,0, + 7607,7612,3,770,385,0,7608,7609,5,6,0,0,7609,7611,3,770,385,0,7610, + 7608,1,0,0,0,7611,7614,1,0,0,0,7612,7610,1,0,0,0,7612,7613,1,0,0, + 0,7613,783,1,0,0,0,7614,7612,1,0,0,0,7615,7620,3,818,409,0,7616, + 7617,5,6,0,0,7617,7619,3,818,409,0,7618,7616,1,0,0,0,7619,7622,1, + 0,0,0,7620,7618,1,0,0,0,7620,7621,1,0,0,0,7621,785,1,0,0,0,7622, + 7620,1,0,0,0,7623,7624,3,316,158,0,7624,787,1,0,0,0,7625,7626,3, + 316,158,0,7626,789,1,0,0,0,7627,7628,3,316,158,0,7628,791,1,0,0, + 0,7629,7630,3,818,409,0,7630,793,1,0,0,0,7631,7632,3,818,409,0,7632, + 795,1,0,0,0,7633,7638,3,820,410,0,7634,7635,3,818,409,0,7635,7636, + 3,752,376,0,7636,7638,1,0,0,0,7637,7633,1,0,0,0,7637,7634,1,0,0, + 0,7638,797,1,0,0,0,7639,7644,3,820,410,0,7640,7641,3,818,409,0,7641, + 7642,3,752,376,0,7642,7644,1,0,0,0,7643,7639,1,0,0,0,7643,7640,1, + 0,0,0,7644,799,1,0,0,0,7645,7646,3,818,409,0,7646,7647,3,754,377, + 0,7647,7650,1,0,0,0,7648,7650,4,400,10,0,7649,7645,1,0,0,0,7649, + 7648,1,0,0,0,7650,801,1,0,0,0,7651,7652,3,818,409,0,7652,803,1,0, + 0,0,7653,7658,3,820,410,0,7654,7655,3,818,409,0,7655,7656,3,752, + 376,0,7656,7658,1,0,0,0,7657,7653,1,0,0,0,7657,7654,1,0,0,0,7658, + 805,1,0,0,0,7659,7664,3,820,410,0,7660,7661,3,818,409,0,7661,7662, + 3,752,376,0,7662,7664,1,0,0,0,7663,7659,1,0,0,0,7663,7660,1,0,0, + 0,7664,807,1,0,0,0,7665,7668,3,810,405,0,7666,7667,5,487,0,0,7667, + 7669,3,810,405,0,7668,7666,1,0,0,0,7668,7669,1,0,0,0,7669,809,1, + 0,0,0,7670,7682,5,558,0,0,7671,7682,5,560,0,0,7672,7676,5,562,0, + 0,7673,7675,5,588,0,0,7674,7673,1,0,0,0,7675,7678,1,0,0,0,7676,7674, + 1,0,0,0,7676,7677,1,0,0,0,7677,7679,1,0,0,0,7678,7676,1,0,0,0,7679, + 7682,5,589,0,0,7680,7682,5,584,0,0,7681,7670,1,0,0,0,7681,7671,1, + 0,0,0,7681,7672,1,0,0,0,7681,7680,1,0,0,0,7682,811,1,0,0,0,7683, + 7685,7,29,0,0,7684,7683,1,0,0,0,7684,7685,1,0,0,0,7685,7686,1,0, + 0,0,7686,7687,5,571,0,0,7687,813,1,0,0,0,7688,7694,3,822,411,0,7689, + 7694,5,52,0,0,7690,7694,5,49,0,0,7691,7694,5,89,0,0,7692,7694,5, + 524,0,0,7693,7688,1,0,0,0,7693,7689,1,0,0,0,7693,7690,1,0,0,0,7693, + 7691,1,0,0,0,7693,7692,1,0,0,0,7694,815,1,0,0,0,7695,7700,3,814, + 407,0,7696,7697,5,6,0,0,7697,7699,3,814,407,0,7698,7696,1,0,0,0, + 7699,7702,1,0,0,0,7700,7698,1,0,0,0,7700,7701,1,0,0,0,7701,817,1, + 0,0,0,7702,7700,1,0,0,0,7703,7706,3,826,413,0,7704,7706,3,830,415, + 0,7705,7703,1,0,0,0,7705,7704,1,0,0,0,7706,819,1,0,0,0,7707,7710, + 3,826,413,0,7708,7710,3,832,416,0,7709,7707,1,0,0,0,7709,7708,1, + 0,0,0,7710,821,1,0,0,0,7711,7715,3,826,413,0,7712,7715,3,830,415, + 0,7713,7715,3,832,416,0,7714,7711,1,0,0,0,7714,7712,1,0,0,0,7714, + 7713,1,0,0,0,7715,823,1,0,0,0,7716,7721,3,826,413,0,7717,7721,3, + 830,415,0,7718,7721,3,832,416,0,7719,7721,3,834,417,0,7720,7716, + 1,0,0,0,7720,7717,1,0,0,0,7720,7718,1,0,0,0,7720,7719,1,0,0,0,7721, + 825,1,0,0,0,7722,7725,5,549,0,0,7723,7724,5,487,0,0,7724,7726,3, + 810,405,0,7725,7723,1,0,0,0,7725,7726,1,0,0,0,7726,7734,1,0,0,0, + 7727,7734,3,808,404,0,7728,7734,5,550,0,0,7729,7734,5,554,0,0,7730, + 7734,5,574,0,0,7731,7734,5,575,0,0,7732,7734,3,828,414,0,7733,7722, + 1,0,0,0,7733,7727,1,0,0,0,7733,7728,1,0,0,0,7733,7729,1,0,0,0,7733, + 7730,1,0,0,0,7733,7731,1,0,0,0,7733,7732,1,0,0,0,7734,827,1,0,0, + 0,7735,7736,7,109,0,0,7736,829,1,0,0,0,7737,7789,5,387,0,0,7738, + 7789,5,388,0,0,7739,7789,3,662,331,0,7740,7789,5,390,0,0,7741,7789, + 5,391,0,0,7742,7789,3,664,332,0,7743,7789,5,393,0,0,7744,7789,5, + 394,0,0,7745,7789,5,395,0,0,7746,7789,5,396,0,0,7747,7789,5,397, + 0,0,7748,7789,5,398,0,0,7749,7789,5,399,0,0,7750,7789,5,470,0,0, + 7751,7789,5,400,0,0,7752,7789,5,401,0,0,7753,7789,5,402,0,0,7754, + 7789,5,403,0,0,7755,7789,5,404,0,0,7756,7789,5,405,0,0,7757,7789, + 5,406,0,0,7758,7789,5,407,0,0,7759,7789,5,489,0,0,7760,7789,5,408, + 0,0,7761,7789,3,658,329,0,7762,7789,5,453,0,0,7763,7789,5,410,0, + 0,7764,7789,5,411,0,0,7765,7789,5,412,0,0,7766,7789,5,413,0,0,7767, + 7789,5,414,0,0,7768,7789,5,415,0,0,7769,7789,5,416,0,0,7770,7789, + 5,417,0,0,7771,7789,5,418,0,0,7772,7789,5,419,0,0,7773,7789,5,420, + 0,0,7774,7789,5,421,0,0,7775,7789,5,422,0,0,7776,7789,5,423,0,0, + 7777,7789,5,424,0,0,7778,7789,5,425,0,0,7779,7789,5,426,0,0,7780, + 7789,5,427,0,0,7781,7789,5,428,0,0,7782,7789,5,476,0,0,7783,7789, + 5,429,0,0,7784,7789,5,430,0,0,7785,7789,5,431,0,0,7786,7789,5,432, + 0,0,7787,7789,5,474,0,0,7788,7737,1,0,0,0,7788,7738,1,0,0,0,7788, + 7739,1,0,0,0,7788,7740,1,0,0,0,7788,7741,1,0,0,0,7788,7742,1,0,0, + 0,7788,7743,1,0,0,0,7788,7744,1,0,0,0,7788,7745,1,0,0,0,7788,7746, + 1,0,0,0,7788,7747,1,0,0,0,7788,7748,1,0,0,0,7788,7749,1,0,0,0,7788, + 7750,1,0,0,0,7788,7751,1,0,0,0,7788,7752,1,0,0,0,7788,7753,1,0,0, + 0,7788,7754,1,0,0,0,7788,7755,1,0,0,0,7788,7756,1,0,0,0,7788,7757, + 1,0,0,0,7788,7758,1,0,0,0,7788,7759,1,0,0,0,7788,7760,1,0,0,0,7788, + 7761,1,0,0,0,7788,7762,1,0,0,0,7788,7763,1,0,0,0,7788,7764,1,0,0, + 0,7788,7765,1,0,0,0,7788,7766,1,0,0,0,7788,7767,1,0,0,0,7788,7768, + 1,0,0,0,7788,7769,1,0,0,0,7788,7770,1,0,0,0,7788,7771,1,0,0,0,7788, + 7772,1,0,0,0,7788,7773,1,0,0,0,7788,7774,1,0,0,0,7788,7775,1,0,0, + 0,7788,7776,1,0,0,0,7788,7777,1,0,0,0,7788,7778,1,0,0,0,7788,7779, + 1,0,0,0,7788,7780,1,0,0,0,7788,7781,1,0,0,0,7788,7782,1,0,0,0,7788, + 7783,1,0,0,0,7788,7784,1,0,0,0,7788,7785,1,0,0,0,7788,7786,1,0,0, + 0,7788,7787,1,0,0,0,7789,831,1,0,0,0,7790,7791,7,110,0,0,7791,833, + 1,0,0,0,7792,7793,7,111,0,0,7793,835,1,0,0,0,7794,7796,3,838,419, + 0,7795,7794,1,0,0,0,7795,7796,1,0,0,0,7796,7807,1,0,0,0,7797,7805, + 5,178,0,0,7798,7802,3,840,420,0,7799,7802,5,178,0,0,7800,7802,3, + 838,419,0,7801,7798,1,0,0,0,7801,7799,1,0,0,0,7801,7800,1,0,0,0, + 7802,7803,1,0,0,0,7803,7801,1,0,0,0,7803,7804,1,0,0,0,7804,7806, + 1,0,0,0,7805,7801,1,0,0,0,7805,7806,1,0,0,0,7806,7808,1,0,0,0,7807, + 7797,1,0,0,0,7807,7808,1,0,0,0,7808,7809,1,0,0,0,7809,7813,5,146, + 0,0,7810,7812,3,846,423,0,7811,7810,1,0,0,0,7812,7815,1,0,0,0,7813, + 7811,1,0,0,0,7813,7814,1,0,0,0,7814,7817,1,0,0,0,7815,7813,1,0,0, + 0,7816,7818,3,924,462,0,7817,7816,1,0,0,0,7817,7818,1,0,0,0,7818, + 7819,1,0,0,0,7819,7821,5,454,0,0,7820,7822,3,928,464,0,7821,7820, + 1,0,0,0,7821,7822,1,0,0,0,7822,837,1,0,0,0,7823,7824,5,18,0,0,7824, + 7825,3,928,464,0,7825,7826,5,19,0,0,7826,839,1,0,0,0,7827,7874,3, + 928,464,0,7828,7829,5,496,0,0,7829,7832,5,62,0,0,7830,7833,5,28, + 0,0,7831,7833,3,818,409,0,7832,7830,1,0,0,0,7832,7831,1,0,0,0,7833, + 7875,1,0,0,0,7834,7836,5,497,0,0,7835,7834,1,0,0,0,7835,7836,1,0, + 0,0,7836,7837,1,0,0,0,7837,7839,3,652,326,0,7838,7840,3,98,49,0, + 7839,7838,1,0,0,0,7839,7840,1,0,0,0,7840,7843,1,0,0,0,7841,7842, + 5,77,0,0,7842,7844,5,78,0,0,7843,7841,1,0,0,0,7843,7844,1,0,0,0, + 7844,7850,1,0,0,0,7845,7848,3,844,422,0,7846,7848,5,53,0,0,7847, + 7845,1,0,0,0,7847,7846,1,0,0,0,7848,7849,1,0,0,0,7849,7851,3,930, + 465,0,7850,7847,1,0,0,0,7850,7851,1,0,0,0,7851,7875,1,0,0,0,7852, + 7854,5,269,0,0,7853,7852,1,0,0,0,7853,7854,1,0,0,0,7854,7855,1,0, + 0,0,7855,7857,5,324,0,0,7856,7853,1,0,0,0,7856,7857,1,0,0,0,7857, + 7858,1,0,0,0,7858,7870,5,172,0,0,7859,7860,5,2,0,0,7860,7865,3,842, + 421,0,7861,7862,5,6,0,0,7862,7864,3,842,421,0,7863,7861,1,0,0,0, + 7864,7867,1,0,0,0,7865,7863,1,0,0,0,7865,7866,1,0,0,0,7866,7868, + 1,0,0,0,7867,7865,1,0,0,0,7868,7869,5,3,0,0,7869,7871,1,0,0,0,7870, + 7859,1,0,0,0,7870,7871,1,0,0,0,7871,7872,1,0,0,0,7872,7873,7,112, + 0,0,7873,7875,3,560,280,0,7874,7828,1,0,0,0,7874,7835,1,0,0,0,7874, + 7856,1,0,0,0,7875,7876,1,0,0,0,7876,7877,5,7,0,0,7877,841,1,0,0, + 0,7878,7879,3,928,464,0,7879,7880,3,652,326,0,7880,843,1,0,0,0,7881, + 7882,7,113,0,0,7882,845,1,0,0,0,7883,7884,3,836,418,0,7884,7885, + 5,7,0,0,7885,7908,1,0,0,0,7886,7908,3,874,437,0,7887,7908,3,876, + 438,0,7888,7908,3,852,426,0,7889,7908,3,860,430,0,7890,7908,3,864, + 432,0,7891,7908,3,866,433,0,7892,7908,3,870,435,0,7893,7908,3,872, + 436,0,7894,7908,3,880,440,0,7895,7908,3,884,442,0,7896,7908,3,886, + 443,0,7897,7908,3,848,424,0,7898,7908,3,850,425,0,7899,7908,3,854, + 427,0,7900,7908,3,890,445,0,7901,7908,3,894,447,0,7902,7908,3,898, + 449,0,7903,7908,3,914,457,0,7904,7908,3,916,458,0,7905,7908,3,918, + 459,0,7906,7908,3,920,460,0,7907,7883,1,0,0,0,7907,7886,1,0,0,0, + 7907,7887,1,0,0,0,7907,7888,1,0,0,0,7907,7889,1,0,0,0,7907,7890, + 1,0,0,0,7907,7891,1,0,0,0,7907,7892,1,0,0,0,7907,7893,1,0,0,0,7907, + 7894,1,0,0,0,7907,7895,1,0,0,0,7907,7896,1,0,0,0,7907,7897,1,0,0, + 0,7907,7898,1,0,0,0,7907,7899,1,0,0,0,7907,7900,1,0,0,0,7907,7901, + 1,0,0,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,847,1,0,0,0,7909,7910,5,498, + 0,0,7910,7911,3,930,465,0,7911,7912,5,7,0,0,7912,849,1,0,0,0,7913, + 7914,5,433,0,0,7914,7921,3,928,464,0,7915,7917,5,2,0,0,7916,7918, + 3,730,365,0,7917,7916,1,0,0,0,7917,7918,1,0,0,0,7918,7919,1,0,0, + 0,7919,7920,5,3,0,0,7920,7922,5,7,0,0,7921,7915,1,0,0,0,7921,7922, + 1,0,0,0,7922,7933,1,0,0,0,7923,7924,5,57,0,0,7924,7925,3,928,464, + 0,7925,7927,5,2,0,0,7926,7928,3,730,365,0,7927,7926,1,0,0,0,7927, + 7928,1,0,0,0,7928,7929,1,0,0,0,7929,7930,5,3,0,0,7930,7931,5,7,0, + 0,7931,7933,1,0,0,0,7932,7913,1,0,0,0,7932,7923,1,0,0,0,7933,851, + 1,0,0,0,7934,7935,3,858,429,0,7935,7936,3,844,422,0,7936,7937,3, + 930,465,0,7937,7938,5,7,0,0,7938,853,1,0,0,0,7939,7941,5,499,0,0, + 7940,7942,7,114,0,0,7941,7940,1,0,0,0,7941,7942,1,0,0,0,7942,7943, + 1,0,0,0,7943,7944,5,500,0,0,7944,7949,3,856,428,0,7945,7946,5,6, + 0,0,7946,7948,3,856,428,0,7947,7945,1,0,0,0,7948,7951,1,0,0,0,7949, + 7947,1,0,0,0,7949,7950,1,0,0,0,7950,7952,1,0,0,0,7951,7949,1,0,0, + 0,7952,7953,5,7,0,0,7953,855,1,0,0,0,7954,7955,3,858,429,0,7955, + 7956,3,844,422,0,7956,7957,3,818,409,0,7957,857,1,0,0,0,7958,7961, + 3,316,158,0,7959,7961,5,28,0,0,7960,7958,1,0,0,0,7960,7959,1,0,0, + 0,7961,7968,1,0,0,0,7962,7963,5,4,0,0,7963,7964,3,674,337,0,7964, + 7965,5,5,0,0,7965,7967,1,0,0,0,7966,7962,1,0,0,0,7967,7970,1,0,0, + 0,7968,7966,1,0,0,0,7968,7969,1,0,0,0,7969,859,1,0,0,0,7970,7968, + 1,0,0,0,7971,7972,5,220,0,0,7972,7973,3,930,465,0,7973,7977,5,93, + 0,0,7974,7976,3,846,423,0,7975,7974,1,0,0,0,7976,7979,1,0,0,0,7977, + 7975,1,0,0,0,7977,7978,1,0,0,0,7978,7991,1,0,0,0,7979,7977,1,0,0, + 0,7980,7981,5,502,0,0,7981,7982,3,674,337,0,7982,7986,5,93,0,0,7983, + 7985,3,846,423,0,7984,7983,1,0,0,0,7985,7988,1,0,0,0,7986,7984,1, + 0,0,0,7986,7987,1,0,0,0,7987,7990,1,0,0,0,7988,7986,1,0,0,0,7989, + 7980,1,0,0,0,7990,7993,1,0,0,0,7991,7989,1,0,0,0,7991,7992,1,0,0, + 0,7992,7995,1,0,0,0,7993,7991,1,0,0,0,7994,7996,3,862,431,0,7995, + 7994,1,0,0,0,7995,7996,1,0,0,0,7996,7997,1,0,0,0,7997,7998,5,454, + 0,0,7998,7999,5,220,0,0,7999,8000,5,7,0,0,8000,861,1,0,0,0,8001, + 8005,5,58,0,0,8002,8004,3,846,423,0,8003,8002,1,0,0,0,8004,8007, + 1,0,0,0,8005,8003,1,0,0,0,8005,8006,1,0,0,0,8006,863,1,0,0,0,8007, + 8005,1,0,0,0,8008,8010,5,40,0,0,8009,8011,3,930,465,0,8010,8009, + 1,0,0,0,8010,8011,1,0,0,0,8011,8021,1,0,0,0,8012,8013,5,102,0,0, + 8013,8014,3,730,365,0,8014,8018,5,93,0,0,8015,8017,3,846,423,0,8016, + 8015,1,0,0,0,8017,8020,1,0,0,0,8018,8016,1,0,0,0,8018,8019,1,0,0, + 0,8019,8022,1,0,0,0,8020,8018,1,0,0,0,8021,8012,1,0,0,0,8022,8023, + 1,0,0,0,8023,8021,1,0,0,0,8023,8024,1,0,0,0,8024,8026,1,0,0,0,8025, + 8027,3,862,431,0,8026,8025,1,0,0,0,8026,8027,1,0,0,0,8027,8028,1, + 0,0,0,8028,8029,5,454,0,0,8029,8030,5,40,0,0,8030,8031,5,7,0,0,8031, + 865,1,0,0,0,8032,8034,3,838,419,0,8033,8032,1,0,0,0,8033,8034,1, + 0,0,0,8034,8039,1,0,0,0,8035,8036,5,503,0,0,8036,8040,3,674,337, + 0,8037,8038,5,62,0,0,8038,8040,3,868,434,0,8039,8035,1,0,0,0,8039, + 8037,1,0,0,0,8039,8040,1,0,0,0,8040,8041,1,0,0,0,8041,8042,3,882, + 441,0,8042,867,1,0,0,0,8043,8044,3,314,157,0,8044,8067,5,68,0,0, + 8045,8047,3,818,409,0,8046,8048,3,534,267,0,8047,8046,1,0,0,0,8047, + 8048,1,0,0,0,8048,8068,1,0,0,0,8049,8068,3,560,280,0,8050,8068,3, + 520,260,0,8051,8052,5,202,0,0,8052,8055,3,674,337,0,8053,8054,5, + 100,0,0,8054,8056,3,730,365,0,8055,8053,1,0,0,0,8055,8056,1,0,0, + 0,8056,8068,1,0,0,0,8057,8059,5,504,0,0,8058,8057,1,0,0,0,8058,8059, + 1,0,0,0,8059,8060,1,0,0,0,8060,8061,3,674,337,0,8061,8062,5,24,0, + 0,8062,8065,3,674,337,0,8063,8064,5,147,0,0,8064,8066,3,674,337, + 0,8065,8063,1,0,0,0,8065,8066,1,0,0,0,8066,8068,1,0,0,0,8067,8045, + 1,0,0,0,8067,8049,1,0,0,0,8067,8050,1,0,0,0,8067,8051,1,0,0,0,8067, + 8058,1,0,0,0,8068,869,1,0,0,0,8069,8071,3,838,419,0,8070,8069,1, + 0,0,0,8070,8071,1,0,0,0,8071,8072,1,0,0,0,8072,8073,5,505,0,0,8073, + 8076,3,314,157,0,8074,8075,5,506,0,0,8075,8077,5,571,0,0,8076,8074, + 1,0,0,0,8076,8077,1,0,0,0,8077,8078,1,0,0,0,8078,8079,5,68,0,0,8079, + 8080,5,35,0,0,8080,8081,3,674,337,0,8081,8082,3,882,441,0,8082,871, + 1,0,0,0,8083,8085,7,115,0,0,8084,8086,3,928,464,0,8085,8084,1,0, + 0,0,8085,8086,1,0,0,0,8086,8089,1,0,0,0,8087,8088,5,102,0,0,8088, + 8090,3,930,465,0,8089,8087,1,0,0,0,8089,8090,1,0,0,0,8090,8091,1, + 0,0,0,8091,8092,5,7,0,0,8092,873,1,0,0,0,8093,8108,5,508,0,0,8094, + 8095,5,268,0,0,8095,8109,3,930,465,0,8096,8103,5,509,0,0,8097,8098, + 5,202,0,0,8098,8099,3,674,337,0,8099,8100,5,100,0,0,8100,8101,3, + 730,365,0,8101,8104,1,0,0,0,8102,8104,3,560,280,0,8103,8097,1,0, + 0,0,8103,8102,1,0,0,0,8104,8109,1,0,0,0,8105,8107,3,930,465,0,8106, + 8105,1,0,0,0,8106,8107,1,0,0,0,8107,8109,1,0,0,0,8108,8094,1,0,0, + 0,8108,8096,1,0,0,0,8108,8106,1,0,0,0,8109,8110,1,0,0,0,8110,8111, + 5,7,0,0,8111,875,1,0,0,0,8112,8142,5,510,0,0,8113,8115,7,116,0,0, + 8114,8113,1,0,0,0,8114,8115,1,0,0,0,8115,8128,1,0,0,0,8116,8129, + 3,826,413,0,8117,8118,5,511,0,0,8118,8129,3,808,404,0,8119,8126, + 3,808,404,0,8120,8121,5,6,0,0,8121,8123,3,674,337,0,8122,8120,1, + 0,0,0,8123,8124,1,0,0,0,8124,8122,1,0,0,0,8124,8125,1,0,0,0,8125, + 8127,1,0,0,0,8126,8122,1,0,0,0,8126,8127,1,0,0,0,8127,8129,1,0,0, + 0,8128,8116,1,0,0,0,8128,8117,1,0,0,0,8128,8119,1,0,0,0,8128,8129, + 1,0,0,0,8129,8139,1,0,0,0,8130,8131,5,100,0,0,8131,8136,3,878,439, + 0,8132,8133,5,6,0,0,8133,8135,3,878,439,0,8134,8132,1,0,0,0,8135, + 8138,1,0,0,0,8136,8134,1,0,0,0,8136,8137,1,0,0,0,8137,8140,1,0,0, + 0,8138,8136,1,0,0,0,8139,8130,1,0,0,0,8139,8140,1,0,0,0,8140,8141, + 1,0,0,0,8141,8143,5,7,0,0,8142,8114,1,0,0,0,8142,8143,1,0,0,0,8143, + 877,1,0,0,0,8144,8145,3,826,413,0,8145,8146,5,10,0,0,8146,8147,3, + 674,337,0,8147,879,1,0,0,0,8148,8149,5,518,0,0,8149,8152,3,930,465, + 0,8150,8151,5,6,0,0,8151,8153,3,930,465,0,8152,8150,1,0,0,0,8152, + 8153,1,0,0,0,8153,8154,1,0,0,0,8154,8155,5,7,0,0,8155,881,1,0,0, + 0,8156,8160,5,519,0,0,8157,8159,3,846,423,0,8158,8157,1,0,0,0,8159, + 8162,1,0,0,0,8160,8158,1,0,0,0,8160,8161,1,0,0,0,8161,8163,1,0,0, + 0,8162,8160,1,0,0,0,8163,8164,5,454,0,0,8164,8166,5,519,0,0,8165, + 8167,3,928,464,0,8166,8165,1,0,0,0,8166,8167,1,0,0,0,8167,8168,1, + 0,0,0,8168,8169,5,7,0,0,8169,883,1,0,0,0,8170,8172,3,4,2,0,8171, + 8173,3,888,444,0,8172,8171,1,0,0,0,8172,8173,1,0,0,0,8173,8174,1, + 0,0,0,8174,8175,5,7,0,0,8175,885,1,0,0,0,8176,8177,5,202,0,0,8177, + 8193,3,674,337,0,8178,8180,3,888,444,0,8179,8178,1,0,0,0,8179,8180, + 1,0,0,0,8180,8183,1,0,0,0,8181,8182,5,100,0,0,8182,8184,3,730,365, + 0,8183,8181,1,0,0,0,8183,8184,1,0,0,0,8184,8194,1,0,0,0,8185,8186, + 5,100,0,0,8186,8188,3,730,365,0,8187,8185,1,0,0,0,8187,8188,1,0, + 0,0,8188,8190,1,0,0,0,8189,8191,3,888,444,0,8190,8189,1,0,0,0,8190, + 8191,1,0,0,0,8191,8194,1,0,0,0,8192,8194,1,0,0,0,8193,8179,1,0,0, + 0,8193,8187,1,0,0,0,8193,8192,1,0,0,0,8194,8195,1,0,0,0,8195,8196, + 5,7,0,0,8196,887,1,0,0,0,8197,8199,5,71,0,0,8198,8200,5,346,0,0, + 8199,8198,1,0,0,0,8199,8200,1,0,0,0,8200,8201,1,0,0,0,8201,8202, + 3,730,365,0,8202,889,1,0,0,0,8203,8235,5,520,0,0,8204,8209,3,922, + 461,0,8205,8207,5,269,0,0,8206,8205,1,0,0,0,8206,8207,1,0,0,0,8207, + 8208,1,0,0,0,8208,8210,5,324,0,0,8209,8206,1,0,0,0,8209,8210,1,0, + 0,0,8210,8211,1,0,0,0,8211,8219,5,62,0,0,8212,8220,3,560,280,0,8213, + 8214,5,202,0,0,8214,8217,3,930,465,0,8215,8216,5,100,0,0,8216,8218, + 3,730,365,0,8217,8215,1,0,0,0,8217,8218,1,0,0,0,8218,8220,1,0,0, + 0,8219,8212,1,0,0,0,8219,8213,1,0,0,0,8220,8236,1,0,0,0,8221,8233, + 3,818,409,0,8222,8223,5,2,0,0,8223,8228,3,892,446,0,8224,8225,5, + 6,0,0,8225,8227,3,892,446,0,8226,8224,1,0,0,0,8227,8230,1,0,0,0, + 8228,8226,1,0,0,0,8228,8229,1,0,0,0,8229,8231,1,0,0,0,8230,8228, + 1,0,0,0,8231,8232,5,3,0,0,8232,8234,1,0,0,0,8233,8222,1,0,0,0,8233, + 8234,1,0,0,0,8234,8236,1,0,0,0,8235,8204,1,0,0,0,8235,8221,1,0,0, + 0,8236,8237,1,0,0,0,8237,8238,5,7,0,0,8238,891,1,0,0,0,8239,8240, + 3,818,409,0,8240,8241,5,20,0,0,8241,8243,1,0,0,0,8242,8239,1,0,0, + 0,8242,8243,1,0,0,0,8243,8244,1,0,0,0,8244,8245,3,674,337,0,8245, + 893,1,0,0,0,8246,8248,5,61,0,0,8247,8249,3,896,448,0,8248,8247,1, + 0,0,0,8248,8249,1,0,0,0,8249,8251,1,0,0,0,8250,8252,3,332,166,0, + 8251,8250,1,0,0,0,8251,8252,1,0,0,0,8252,8253,1,0,0,0,8253,8254, + 3,922,461,0,8254,8255,5,71,0,0,8255,8256,3,730,365,0,8256,8257,5, + 7,0,0,8257,895,1,0,0,0,8258,8273,5,268,0,0,8259,8273,5,293,0,0,8260, + 8273,5,207,0,0,8261,8273,5,249,0,0,8262,8264,7,50,0,0,8263,8262, + 1,0,0,0,8263,8264,1,0,0,0,8264,8265,1,0,0,0,8265,8273,3,674,337, + 0,8266,8273,5,30,0,0,8267,8270,7,117,0,0,8268,8271,3,674,337,0,8269, + 8271,5,30,0,0,8270,8268,1,0,0,0,8270,8269,1,0,0,0,8270,8271,1,0, + 0,0,8271,8273,1,0,0,0,8272,8258,1,0,0,0,8272,8259,1,0,0,0,8272,8260, + 1,0,0,0,8272,8261,1,0,0,0,8272,8263,1,0,0,0,8272,8266,1,0,0,0,8272, + 8267,1,0,0,0,8273,897,1,0,0,0,8274,8276,5,265,0,0,8275,8277,3,896, + 448,0,8276,8275,1,0,0,0,8276,8277,1,0,0,0,8277,8278,1,0,0,0,8278, + 8279,3,922,461,0,8279,8280,5,7,0,0,8280,899,1,0,0,0,8281,8283,3, + 572,286,0,8282,8281,1,0,0,0,8282,8283,1,0,0,0,8283,8284,1,0,0,0, + 8284,8285,5,525,0,0,8285,8287,5,71,0,0,8286,8288,5,81,0,0,8287,8286, + 1,0,0,0,8287,8288,1,0,0,0,8288,8289,1,0,0,0,8289,8291,3,774,387, + 0,8290,8292,5,9,0,0,8291,8290,1,0,0,0,8291,8292,1,0,0,0,8292,8297, + 1,0,0,0,8293,8295,5,36,0,0,8294,8293,1,0,0,0,8294,8295,1,0,0,0,8295, + 8296,1,0,0,0,8296,8298,3,818,409,0,8297,8294,1,0,0,0,8297,8298,1, + 0,0,0,8298,8299,1,0,0,0,8299,8300,5,100,0,0,8300,8301,3,902,451, + 0,8301,8302,5,80,0,0,8302,8304,3,674,337,0,8303,8305,3,904,452,0, + 8304,8303,1,0,0,0,8305,8306,1,0,0,0,8306,8304,1,0,0,0,8306,8307, + 1,0,0,0,8307,901,1,0,0,0,8308,8310,5,81,0,0,8309,8308,1,0,0,0,8309, + 8310,1,0,0,0,8310,8311,1,0,0,0,8311,8313,3,774,387,0,8312,8314,5, + 9,0,0,8313,8312,1,0,0,0,8313,8314,1,0,0,0,8314,8320,1,0,0,0,8315, + 8318,3,564,282,0,8316,8318,3,608,304,0,8317,8315,1,0,0,0,8317,8316, + 1,0,0,0,8318,8320,1,0,0,0,8319,8309,1,0,0,0,8319,8317,1,0,0,0,8320, + 8325,1,0,0,0,8321,8323,5,36,0,0,8322,8321,1,0,0,0,8322,8323,1,0, + 0,0,8323,8324,1,0,0,0,8324,8326,3,818,409,0,8325,8322,1,0,0,0,8325, + 8326,1,0,0,0,8326,903,1,0,0,0,8327,8328,5,102,0,0,8328,8331,5,526, + 0,0,8329,8330,5,33,0,0,8330,8332,3,674,337,0,8331,8329,1,0,0,0,8331, + 8332,1,0,0,0,8332,8333,1,0,0,0,8333,8338,5,93,0,0,8334,8339,3,908, + 454,0,8335,8339,5,182,0,0,8336,8337,5,57,0,0,8337,8339,5,270,0,0, + 8338,8334,1,0,0,0,8338,8335,1,0,0,0,8338,8336,1,0,0,0,8339,8354, + 1,0,0,0,8340,8341,5,102,0,0,8341,8342,5,77,0,0,8342,8345,5,526,0, + 0,8343,8344,5,33,0,0,8344,8346,3,674,337,0,8345,8343,1,0,0,0,8345, + 8346,1,0,0,0,8346,8347,1,0,0,0,8347,8351,5,93,0,0,8348,8352,3,906, + 453,0,8349,8350,5,57,0,0,8350,8352,5,270,0,0,8351,8348,1,0,0,0,8351, + 8349,1,0,0,0,8352,8354,1,0,0,0,8353,8327,1,0,0,0,8353,8340,1,0,0, + 0,8354,905,1,0,0,0,8355,8357,5,241,0,0,8356,8358,3,144,72,0,8357, + 8356,1,0,0,0,8357,8358,1,0,0,0,8358,8362,1,0,0,0,8359,8360,5,463, + 0,0,8360,8361,7,76,0,0,8361,8363,5,450,0,0,8362,8359,1,0,0,0,8362, + 8363,1,0,0,0,8363,8364,1,0,0,0,8364,8365,3,910,455,0,8365,907,1, + 0,0,0,8366,8367,5,369,0,0,8367,8385,5,333,0,0,8368,8369,3,800,400, + 0,8369,8370,5,10,0,0,8370,8371,3,912,456,0,8371,8386,1,0,0,0,8372, + 8373,3,144,72,0,8373,8374,5,10,0,0,8374,8375,5,2,0,0,8375,8380,3, + 912,456,0,8376,8377,5,6,0,0,8377,8379,3,912,456,0,8378,8376,1,0, + 0,0,8379,8382,1,0,0,0,8380,8378,1,0,0,0,8380,8381,1,0,0,0,8381,8383, + 1,0,0,0,8382,8380,1,0,0,0,8383,8384,5,3,0,0,8384,8386,1,0,0,0,8385, + 8368,1,0,0,0,8385,8372,1,0,0,0,8386,8387,1,0,0,0,8387,8385,1,0,0, + 0,8387,8388,1,0,0,0,8388,909,1,0,0,0,8389,8390,5,422,0,0,8390,8391, + 5,2,0,0,8391,8396,3,912,456,0,8392,8393,5,6,0,0,8393,8395,3,912, + 456,0,8394,8392,1,0,0,0,8395,8398,1,0,0,0,8396,8394,1,0,0,0,8396, + 8397,1,0,0,0,8397,8399,1,0,0,0,8398,8396,1,0,0,0,8399,8400,5,3,0, + 0,8400,8404,1,0,0,0,8401,8402,5,53,0,0,8402,8404,5,422,0,0,8403, + 8389,1,0,0,0,8403,8401,1,0,0,0,8404,911,1,0,0,0,8405,8408,3,588, + 294,0,8406,8408,5,53,0,0,8407,8405,1,0,0,0,8407,8406,1,0,0,0,8408, + 913,1,0,0,0,8409,8410,5,157,0,0,8410,8411,3,922,461,0,8411,8412, + 5,7,0,0,8412,915,1,0,0,0,8413,8414,5,78,0,0,8414,8415,5,7,0,0,8415, + 917,1,0,0,0,8416,8422,7,67,0,0,8417,8419,5,33,0,0,8418,8420,5,269, + 0,0,8419,8418,1,0,0,0,8419,8420,1,0,0,0,8420,8421,1,0,0,0,8421,8423, + 5,153,0,0,8422,8417,1,0,0,0,8422,8423,1,0,0,0,8423,8424,1,0,0,0, + 8424,8425,5,7,0,0,8425,919,1,0,0,0,8426,8427,5,333,0,0,8427,8428, + 3,316,158,0,8428,8429,5,94,0,0,8429,8430,5,53,0,0,8430,8431,5,7, + 0,0,8431,8439,1,0,0,0,8432,8435,5,313,0,0,8433,8436,3,316,158,0, + 8434,8436,5,30,0,0,8435,8433,1,0,0,0,8435,8434,1,0,0,0,8436,8437, + 1,0,0,0,8437,8439,5,7,0,0,8438,8426,1,0,0,0,8438,8432,1,0,0,0,8439, + 921,1,0,0,0,8440,8443,3,818,409,0,8441,8443,5,28,0,0,8442,8440,1, + 0,0,0,8442,8441,1,0,0,0,8443,923,1,0,0,0,8444,8461,5,517,0,0,8445, + 8446,5,102,0,0,8446,8451,3,926,463,0,8447,8448,5,82,0,0,8448,8450, + 3,926,463,0,8449,8447,1,0,0,0,8450,8453,1,0,0,0,8451,8449,1,0,0, + 0,8451,8452,1,0,0,0,8452,8454,1,0,0,0,8453,8451,1,0,0,0,8454,8458, + 5,93,0,0,8455,8457,3,846,423,0,8456,8455,1,0,0,0,8457,8460,1,0,0, + 0,8458,8456,1,0,0,0,8458,8459,1,0,0,0,8459,8462,1,0,0,0,8460,8458, + 1,0,0,0,8461,8445,1,0,0,0,8462,8463,1,0,0,0,8463,8461,1,0,0,0,8463, + 8464,1,0,0,0,8464,925,1,0,0,0,8465,8469,3,928,464,0,8466,8467,5, + 511,0,0,8467,8469,3,808,404,0,8468,8465,1,0,0,0,8468,8466,1,0,0, + 0,8469,927,1,0,0,0,8470,8473,3,818,409,0,8471,8473,3,828,414,0,8472, + 8470,1,0,0,0,8472,8471,1,0,0,0,8473,929,1,0,0,0,8474,8476,3,756, + 378,0,8475,8474,1,0,0,0,8475,8476,1,0,0,0,8476,8478,1,0,0,0,8477, + 8479,3,580,290,0,8478,8477,1,0,0,0,8478,8479,1,0,0,0,8479,8481,1, + 0,0,0,8480,8482,3,610,305,0,8481,8480,1,0,0,0,8481,8482,1,0,0,0, + 8482,8484,1,0,0,0,8483,8485,3,638,319,0,8484,8483,1,0,0,0,8484,8485, + 1,0,0,0,8485,8487,1,0,0,0,8486,8488,3,600,300,0,8487,8486,1,0,0, + 0,8487,8488,1,0,0,0,8488,8491,1,0,0,0,8489,8490,5,67,0,0,8490,8492, + 3,674,337,0,8491,8489,1,0,0,0,8491,8492,1,0,0,0,8492,8494,1,0,0, + 0,8493,8495,3,702,351,0,8494,8493,1,0,0,0,8494,8495,1,0,0,0,8495, + 931,1,0,0,0,1189,935,942,1062,1064,1073,1078,1084,1119,1129,1135, + 1140,1147,1152,1159,1170,1178,1182,1194,1200,1206,1210,1215,1219, + 1232,1242,1244,1250,1255,1268,1271,1276,1281,1292,1296,1308,1312, + 1315,1319,1331,1349,1356,1364,1369,1376,1384,1390,1398,1406,1410, + 1424,1429,1434,1446,1452,1464,1469,1479,1485,1490,1498,1503,1510, + 1515,1520,1530,1535,1540,1547,1551,1565,1571,1577,1582,1589,1601, + 1609,1617,1633,1642,1651,1660,1664,1676,1684,1694,1714,1719,1722, + 1729,1732,1736,1740,1743,1748,1753,1757,1766,1772,1776,1785,1788, + 1794,1803,1815,1819,1823,1828,1831,1837,1839,1841,1845,1851,1855, + 1860,1865,1869,1872,1879,1892,1905,1919,1936,1946,1953,1958,1962, + 1969,1974,1977,1979,1984,1988,1992,1996,2001,2004,2008,2011,2015, + 2023,2028,2031,2035,2041,2050,2054,2060,2062,2071,2076,2088,2093, + 2097,2101,2106,2110,2113,2116,2119,2122,2125,2130,2133,2136,2139, + 2142,2145,2151,2155,2158,2161,2164,2167,2169,2176,2184,2194,2199, + 2209,2212,2217,2222,2227,2230,2235,2244,2246,2250,2253,2257,2262, + 2267,2271,2274,2278,2281,2286,2289,2294,2297,2301,2304,2307,2312, + 2315,2323,2335,2339,2346,2351,2354,2357,2360,2365,2376,2382,2386, + 2389,2392,2397,2404,2407,2411,2419,2424,2427,2430,2437,2442,2451, + 2454,2457,2462,2465,2477,2487,2504,2508,2512,2514,2531,2533,2549, + 2560,2563,2566,2575,2584,2600,2603,2606,2614,2618,2625,2634,2638, + 2644,2648,2651,2654,2657,2660,2666,2670,2675,2679,2682,2685,2688, + 2693,2699,2703,2707,2711,2717,2719,2724,2730,2736,2740,2755,2760, + 2763,2765,2768,2772,2776,2779,2782,2790,2796,2798,2804,2809,2814, + 2818,2825,2827,2838,2877,2887,2889,2892,2896,2900,2910,2912,2918, + 2920,2929,2941,2955,2960,2963,2970,2975,2983,2985,2991,2996,3000, + 3005,3011,3018,3024,3026,3035,3041,3049,3055,3060,3065,3073,3088, + 3090,3094,3098,3101,3104,3113,3116,3119,3125,3131,3135,3147,3153, + 3156,3161,3165,3172,3182,3184,3208,3220,3225,3227,3231,3234,3237, + 3247,3250,3260,3265,3270,3273,3276,3284,3290,3297,3305,3308,3319, + 3323,3329,3336,3339,3348,3362,3365,3379,3390,3393,3405,3410,3423, + 3428,3441,3450,3453,3456,3463,3466,3478,3484,3486,3494,3502,3510, + 3522,3527,3538,3549,3557,3565,3572,3579,3581,3584,3589,3594,3613, + 3622,3625,3652,3661,3664,3668,3672,3676,3683,3687,3691,3695,3699, + 3704,3708,3713,3719,3724,3731,3735,3741,3745,3750,3758,3764,3769, + 3776,3781,3785,3790,3796,3803,3808,3815,3820,3827,3831,3839,3843, + 3845,3848,3853,3863,3878,3881,3889,3896,3901,3907,3911,3918,3923, + 3926,3929,3933,3942,3960,3963,3995,4000,4006,4026,4031,4037,4040, + 4044,4048,4054,4057,4061,4065,4070,4073,4076,4079,4092,4098,4106, + 4113,4118,4121,4128,4131,4139,4142,4147,4154,4157,4177,4189,4192, + 4198,4203,4212,4220,4225,4231,4238,4246,4249,4260,4262,4276,4282, + 4290,4292,4298,4302,4305,4308,4313,4318,4322,4325,4328,4331,4334, + 4342,4353,4356,4359,4364,4367,4371,4375,4381,4389,4392,4405,4410, + 4412,4417,4424,4431,4440,4448,4456,4463,4471,4478,4486,4490,4494, + 4496,4502,4507,4511,4518,4523,4528,4533,4535,4545,4555,4571,4589, + 4601,4608,4623,4628,4631,4636,4641,4646,4649,4652,4657,4664,4668, + 4673,4680,4684,4690,4699,4708,4720,4722,4735,4741,4745,4747,4754, + 4767,4774,4776,4792,4796,4800,4805,4810,4815,4820,4823,4835,4888, + 4897,4901,4910,4914,4923,4927,4932,4935,4939,4944,4946,4955,4960, + 4971,4975,4989,4997,5035,5037,5056,5059,5086,5090,5094,5098,5102, + 5105,5120,5127,5141,5154,5179,5198,5213,5229,5236,5247,5250,5269, + 5272,5285,5289,5309,5321,5325,5347,5351,5361,5365,5371,5375,5379, + 5383,5390,5395,5406,5410,5413,5418,5424,5435,5439,5442,5446,5450, + 5453,5463,5466,5470,5475,5481,5484,5489,5492,5499,5501,5507,5511, + 5520,5525,5527,5537,5540,5545,5553,5556,5561,5563,5565,5571,5588, + 5594,5607,5613,5617,5622,5652,5667,5672,5676,5689,5693,5695,5704, + 5710,5712,5716,5719,5722,5725,5728,5730,5733,5737,5745,5750,5753, + 5759,5763,5767,5772,5774,5778,5782,5789,5795,5799,5801,5803,5816, + 5824,5832,5843,5852,5857,5861,5865,5872,5875,5877,5885,5889,5892, + 5899,5906,5911,5918,5921,5923,5926,5932,5937,5941,5948,5958,5965, + 5968,5971,5975,5986,5989,5992,5995,5998,6005,6008,6011,6018,6030, + 6037,6039,6044,6049,6051,6057,6064,6069,6074,6078,6082,6086,6088, + 6092,6096,6099,6102,6104,6114,6116,6121,6125,6130,6134,6141,6146, + 6150,6153,6159,6162,6181,6188,6192,6195,6199,6203,6206,6209,6214, + 6223,6230,6234,6238,6242,6245,6247,6252,6256,6261,6267,6274,6279, + 6284,6293,6300,6308,6319,6324,6328,6331,6335,6340,6344,6349,6357, + 6368,6373,6377,6380,6383,6385,6388,6391,6394,6398,6402,6406,6408, + 6417,6422,6428,6432,6434,6441,6446,6452,6454,6458,6465,6470,6473, + 6479,6483,6489,6498,6504,6506,6511,6514,6523,6530,6532,6539,6544, + 6547,6557,6568,6573,6577,6585,6595,6602,6608,6619,6625,6635,6644, + 6648,6651,6653,6655,6659,6667,6670,6675,6680,6687,6689,6695,6699, + 6702,6707,6710,6712,6718,6727,6733,6736,6744,6747,6751,6757,6759, + 6762,6766,6771,6778,6785,6787,6793,6795,6800,6802,6806,6815,6819, + 6827,6829,6843,6846,6854,6863,6869,6874,6882,6884,6889,6893,6898, + 6903,6909,6925,6927,6936,6951,6956,6959,6965,6970,6983,6988,6992, + 6999,7018,7030,7035,7043,7045,7047,7056,7059,7064,7069,7073,7076, + 7085,7093,7098,7100,7103,7107,7118,7139,7147,7160,7170,7176,7182, + 7185,7188,7214,7216,7237,7247,7260,7265,7269,7271,7283,7290,7296, + 7302,7306,7317,7327,7331,7336,7339,7342,7351,7362,7364,7368,7373, + 7382,7387,7395,7405,7413,7417,7420,7427,7435,7439,7446,7453,7455, + 7464,7467,7479,7488,7495,7504,7514,7519,7523,7525,7528,7533,7538, + 7546,7554,7557,7564,7572,7580,7588,7605,7612,7620,7637,7643,7649, + 7657,7663,7668,7676,7681,7684,7693,7700,7705,7709,7714,7720,7725, + 7733,7788,7795,7801,7803,7805,7807,7813,7817,7821,7832,7835,7839, + 7843,7847,7850,7853,7856,7865,7870,7874,7907,7917,7921,7927,7932, + 7941,7949,7960,7968,7977,7986,7991,7995,8005,8010,8018,8023,8026, + 8033,8039,8047,8055,8058,8065,8067,8070,8076,8085,8089,8103,8106, + 8108,8114,8124,8126,8128,8136,8139,8142,8152,8160,8166,8172,8179, + 8183,8187,8190,8193,8199,8206,8209,8217,8219,8228,8233,8235,8242, + 8248,8251,8263,8270,8272,8276,8282,8287,8291,8294,8297,8306,8309, + 8313,8317,8319,8322,8325,8331,8338,8345,8351,8353,8357,8362,8380, + 8385,8387,8396,8403,8407,8419,8422,8435,8438,8442,8451,8458,8463, + 8468,8472,8475,8478,8481,8484,8487,8491,8494 ]; private static __ATN: antlr.ATN; @@ -62783,6 +62791,7 @@ export class TypedtableelementContext extends antlr.ParserRuleContext { export class Column_defContext extends antlr.ParserRuleContext { + public _colType?: TypenameContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -76963,6 +76972,7 @@ export class Table_refContext extends antlr.ParserRuleContext { export class Alias_clauseContext extends antlr.ParserRuleContext { + public _alias?: ColidContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -77005,6 +77015,7 @@ export class Alias_clauseContext extends antlr.ParserRuleContext { export class Func_alias_clauseContext extends antlr.ParserRuleContext { + public _alias?: ColidContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -80711,8 +80722,8 @@ export class Func_arg_exprContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); } public type_function_name(): Type_function_nameContext | null { return this.getRuleContext(0, Type_function_nameContext); diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 71336af6..03dd67a5 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -959,7 +959,7 @@ colDefinitionDescriptorWithPosition defaultExpression variableDefaultExpression colTypeList -colType +columnType createOrReplaceTableColTypeList createOrReplaceTableColType colDefinitionOption @@ -986,7 +986,7 @@ backQuotedIdentifier number alterColumnAction stringLit -comment +commentStr version ansiNonReserved strictNonReserved diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index f842a2f5..c9bb86bd 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -578,7 +578,7 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_defaultExpression = 165; public static readonly RULE_variableDefaultExpression = 166; public static readonly RULE_colTypeList = 167; - public static readonly RULE_colType = 168; + public static readonly RULE_columnType = 168; public static readonly RULE_createOrReplaceTableColTypeList = 169; public static readonly RULE_createOrReplaceTableColType = 170; public static readonly RULE_colDefinitionOption = 171; @@ -605,7 +605,7 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_number = 192; public static readonly RULE_alterColumnAction = 193; public static readonly RULE_stringLit = 194; - public static readonly RULE_comment = 195; + public static readonly RULE_commentStr = 195; public static readonly RULE_version = 196; public static readonly RULE_ansiNonReserved = 197; public static readonly RULE_strictNonReserved = 198; @@ -803,14 +803,14 @@ export class SparkSqlParser extends SQLParserBase { "qualifiedColTypeWithPositionForAdd", "qualifiedColTypeWithPositionSeqForReplace", "qualifiedColTypeWithPositionForReplace", "colDefinitionDescriptorWithPosition", "defaultExpression", "variableDefaultExpression", "colTypeList", - "colType", "createOrReplaceTableColTypeList", "createOrReplaceTableColType", + "columnType", "createOrReplaceTableColTypeList", "createOrReplaceTableColType", "colDefinitionOption", "generationExpression", "complexColTypeList", "complexColType", "whenClause", "windowClause", "zorderClause", "namedWindow", "windowSpec", "windowFrame", "frameBound", "qualifiedNameList", "functionName", "functionNameCreate", "qualifiedName", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", "identifier", "strictIdentifier", "quotedIdentifier", "backQuotedIdentifier", "number", "alterColumnAction", - "stringLit", "comment", "version", "ansiNonReserved", "strictNonReserved", + "stringLit", "commentStr", "version", "ansiNonReserved", "strictNonReserved", "nonReserved", ]; @@ -1790,7 +1790,7 @@ export class SparkSqlParser extends SQLParserBase { this.state = 664; (localContext as HiveChangeColumnContext)._colName = this.columnName(); this.state = 665; - this.colType(); + this.columnType(); this.state = 667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -3385,7 +3385,7 @@ export class SparkSqlParser extends SQLParserBase { this.state = 1116; this.match(SparkSqlParser.KW_IS); this.state = 1117; - this.comment(); + this.commentStr(); } break; case 64: @@ -3403,7 +3403,7 @@ export class SparkSqlParser extends SQLParserBase { this.state = 1123; this.match(SparkSqlParser.KW_IS); this.state = 1124; - this.comment(); + this.commentStr(); } break; case 65: @@ -5058,7 +5058,7 @@ export class SparkSqlParser extends SQLParserBase { this.state = 1566; this.match(SparkSqlParser.KW_COMMENT); this.state = 1567; - this.stringLit(); + localContext._comment = this.stringLit(); } } catch (re) { @@ -12854,7 +12854,7 @@ export class SparkSqlParser extends SQLParserBase { break; } this.state = 2900; - this.strictIdentifier(); + localContext._alias = this.strictIdentifier(); this.state = 2902; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { @@ -13803,7 +13803,7 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { this.state = 3033; - this.colType(); + this.columnType(); } break; } @@ -16954,7 +16954,7 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { this.state = 3680; - this.colType(); + this.columnType(); this.state = 3685; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); @@ -16965,7 +16965,7 @@ export class SparkSqlParser extends SQLParserBase { this.state = 3681; this.match(SparkSqlParser.COMMA); this.state = 3682; - this.colType(); + this.columnType(); } } } @@ -16989,9 +16989,9 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public colType(): ColTypeContext { - let localContext = new ColTypeContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_colType); + public columnType(): ColumnTypeContext { + let localContext = new ColumnTypeContext(this.context, this.state); + this.enterRule(localContext, 336, SparkSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { @@ -17088,7 +17088,7 @@ export class SparkSqlParser extends SQLParserBase { this.state = 3705; localContext._colName = this.columnNameCreate(); this.state = 3706; - this.dataType(); + localContext._colType = this.dataType(); this.state = 3710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -18474,9 +18474,9 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public comment(): CommentContext { - let localContext = new CommentContext(this.context, this.state); - this.enterRule(localContext, 390, SparkSqlParser.RULE_comment); + public commentStr(): CommentStrContext { + let localContext = new CommentStrContext(this.context, this.state); + this.enterRule(localContext, 390, SparkSqlParser.RULE_commentStr); try { this.state = 3958; this.errorHandler.sync(this); @@ -22353,8 +22353,8 @@ export class CommentNamespaceContext extends StatementContext { public KW_IS(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_IS, 0)!; } - public comment(): CommentContext { - return this.getRuleContext(0, CommentContext)!; + public commentStr(): CommentStrContext { + return this.getRuleContext(0, CommentStrContext)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterCommentNamespace) { @@ -23024,8 +23024,8 @@ export class HiveChangeColumnContext extends StatementContext { public KW_CHANGE(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_CHANGE, 0)!; } - public colType(): ColTypeContext { - return this.getRuleContext(0, ColTypeContext)!; + public columnType(): ColumnTypeContext { + return this.getRuleContext(0, ColumnTypeContext)!; } public tableName(): TableNameContext { return this.getRuleContext(0, TableNameContext)!; @@ -23882,8 +23882,8 @@ export class CommentTableContext extends StatementContext { public KW_IS(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_IS, 0)!; } - public comment(): CommentContext { - return this.getRuleContext(0, CommentContext)!; + public commentStr(): CommentStrContext { + return this.getRuleContext(0, CommentStrContext)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterCommentTable) { @@ -25197,6 +25197,7 @@ export class LocationSpecContext extends antlr.ParserRuleContext { export class CommentSpecContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -30588,6 +30589,7 @@ export class FunctionTableContext extends antlr.ParserRuleContext { export class TableAliasContext extends antlr.ParserRuleContext { + public _alias?: StrictIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -31140,8 +31142,8 @@ export class PartitionFieldContext extends antlr.ParserRuleContext { public transform(): TransformContext | null { return this.getRuleContext(0, TransformContext); } - public colType(): ColTypeContext | null { - return this.getRuleContext(0, ColTypeContext); + public columnType(): ColumnTypeContext | null { + return this.getRuleContext(0, ColumnTypeContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_partitionField; @@ -33319,14 +33321,14 @@ export class ColTypeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colType(): ColTypeContext[]; - public colType(i: number): ColTypeContext | null; - public colType(i?: number): ColTypeContext[] | ColTypeContext | null { + public columnType(): ColumnTypeContext[]; + public columnType(i: number): ColumnTypeContext | null; + public columnType(i?: number): ColumnTypeContext[] | ColumnTypeContext | null { if (i === undefined) { - return this.getRuleContexts(ColTypeContext); + return this.getRuleContexts(ColumnTypeContext); } - return this.getRuleContext(i, ColTypeContext); + return this.getRuleContext(i, ColumnTypeContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -33360,7 +33362,7 @@ export class ColTypeListContext extends antlr.ParserRuleContext { } -export class ColTypeContext extends antlr.ParserRuleContext { +export class ColumnTypeContext extends antlr.ParserRuleContext { public _colName?: ErrorCapturingIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -33381,21 +33383,21 @@ export class ColTypeContext extends antlr.ParserRuleContext { return this.getRuleContext(0, CommentSpecContext); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_colType; + return SparkSqlParser.RULE_columnType; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterColType) { - listener.enterColType(this); + if(listener.enterColumnType) { + listener.enterColumnType(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitColType) { - listener.exitColType(this); + if(listener.exitColumnType) { + listener.exitColumnType(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitColType) { - return visitor.visitColType(this); + if (visitor.visitColumnType) { + return visitor.visitColumnType(this); } else { return visitor.visitChildren(this); } @@ -33450,15 +33452,16 @@ export class CreateOrReplaceTableColTypeListContext extends antlr.ParserRuleCont export class CreateOrReplaceTableColTypeContext extends antlr.ParserRuleContext { public _colName?: ColumnNameCreateContext; + public _colType?: DataTypeContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public dataType(): DataTypeContext { - return this.getRuleContext(0, DataTypeContext)!; - } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; } + public dataType(): DataTypeContext { + return this.getRuleContext(0, DataTypeContext)!; + } public colDefinitionOption(): ColDefinitionOptionContext[]; public colDefinitionOption(i: number): ColDefinitionOptionContext | null; public colDefinitionOption(i?: number): ColDefinitionOptionContext[] | ColDefinitionOptionContext | null { @@ -34556,7 +34559,7 @@ export class StringLitContext extends antlr.ParserRuleContext { } -export class CommentContext extends antlr.ParserRuleContext { +export class CommentStrContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -34567,21 +34570,21 @@ export class CommentContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.KW_NULL, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_comment; + return SparkSqlParser.RULE_commentStr; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterComment) { - listener.enterComment(this); + if(listener.enterCommentStr) { + listener.enterCommentStr(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitComment) { - listener.exitComment(this); + if(listener.exitCommentStr) { + listener.exitCommentStr(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitComment) { - return visitor.visitComment(this); + if (visitor.visitCommentStr) { + return visitor.visitCommentStr(this); } else { return visitor.visitChildren(this); } diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index a304ff65..b701ea6a 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -270,7 +270,7 @@ import { ColDefinitionDescriptorWithPositionContext } from "./SparkSqlParser.js" import { DefaultExpressionContext } from "./SparkSqlParser.js"; import { VariableDefaultExpressionContext } from "./SparkSqlParser.js"; import { ColTypeListContext } from "./SparkSqlParser.js"; -import { ColTypeContext } from "./SparkSqlParser.js"; +import { ColumnTypeContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeListContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeContext } from "./SparkSqlParser.js"; import { ColDefinitionOptionContext } from "./SparkSqlParser.js"; @@ -297,7 +297,7 @@ import { BackQuotedIdentifierContext } from "./SparkSqlParser.js"; import { NumberContext } from "./SparkSqlParser.js"; import { AlterColumnActionContext } from "./SparkSqlParser.js"; import { StringLitContext } from "./SparkSqlParser.js"; -import { CommentContext } from "./SparkSqlParser.js"; +import { CommentStrContext } from "./SparkSqlParser.js"; import { VersionContext } from "./SparkSqlParser.js"; import { AnsiNonReservedContext } from "./SparkSqlParser.js"; import { StrictNonReservedContext } from "./SparkSqlParser.js"; @@ -3124,15 +3124,15 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitColTypeList?: (ctx: ColTypeListContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.colType`. + * Enter a parse tree produced by `SparkSqlParser.columnType`. * @param ctx the parse tree */ - enterColType?: (ctx: ColTypeContext) => void; + enterColumnType?: (ctx: ColumnTypeContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.colType`. + * Exit a parse tree produced by `SparkSqlParser.columnType`. * @param ctx the parse tree */ - exitColType?: (ctx: ColTypeContext) => void; + exitColumnType?: (ctx: ColumnTypeContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.createOrReplaceTableColTypeList`. * @param ctx the parse tree @@ -3394,15 +3394,15 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitStringLit?: (ctx: StringLitContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.comment`. + * Enter a parse tree produced by `SparkSqlParser.commentStr`. * @param ctx the parse tree */ - enterComment?: (ctx: CommentContext) => void; + enterCommentStr?: (ctx: CommentStrContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.comment`. + * Exit a parse tree produced by `SparkSqlParser.commentStr`. * @param ctx the parse tree */ - exitComment?: (ctx: CommentContext) => void; + exitCommentStr?: (ctx: CommentStrContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.version`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index cec7c43a..f2570994 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -270,7 +270,7 @@ import { ColDefinitionDescriptorWithPositionContext } from "./SparkSqlParser.js" import { DefaultExpressionContext } from "./SparkSqlParser.js"; import { VariableDefaultExpressionContext } from "./SparkSqlParser.js"; import { ColTypeListContext } from "./SparkSqlParser.js"; -import { ColTypeContext } from "./SparkSqlParser.js"; +import { ColumnTypeContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeListContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeContext } from "./SparkSqlParser.js"; import { ColDefinitionOptionContext } from "./SparkSqlParser.js"; @@ -297,7 +297,7 @@ import { BackQuotedIdentifierContext } from "./SparkSqlParser.js"; import { NumberContext } from "./SparkSqlParser.js"; import { AlterColumnActionContext } from "./SparkSqlParser.js"; import { StringLitContext } from "./SparkSqlParser.js"; -import { CommentContext } from "./SparkSqlParser.js"; +import { CommentStrContext } from "./SparkSqlParser.js"; import { VersionContext } from "./SparkSqlParser.js"; import { AnsiNonReservedContext } from "./SparkSqlParser.js"; import { StrictNonReservedContext } from "./SparkSqlParser.js"; @@ -1982,11 +1982,11 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.colType`. + * Visit a parse tree produced by `SparkSqlParser.columnType`. * @param ctx the parse tree * @return the visitor result */ - visitColType?: (ctx: ColTypeContext) => Result; + visitColumnType?: (ctx: ColumnTypeContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.createOrReplaceTableColTypeList`. * @param ctx the parse tree @@ -2144,11 +2144,11 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.comment`. + * Visit a parse tree produced by `SparkSqlParser.commentStr`. * @param ctx the parse tree * @return the visitor result */ - visitComment?: (ctx: CommentContext) => Result; + visitCommentStr?: (ctx: CommentStrContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.version`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSqlParser.ts b/src/lib/trino/TrinoSqlParser.ts index bf394649..6c6eeb81 100644 --- a/src/lib/trino/TrinoSqlParser.ts +++ b/src/lib/trino/TrinoSqlParser.ts @@ -1264,7 +1264,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 425; this.match(TrinoSqlParser.KW_COMMENT); this.state = 426; - this.string_(); + (localContext as CreateTableAsSelectContext)._comment = this.string_(); } } @@ -1392,7 +1392,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 470; this.match(TrinoSqlParser.KW_COMMENT); this.state = 471; - this.string_(); + (localContext as CreateTableContext)._comment = this.string_(); } break; } @@ -2019,7 +2019,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 679; this.match(TrinoSqlParser.KW_COMMENT); this.state = 680; - this.string_(); + (localContext as CreateMaterializedViewContext)._comment = this.string_(); } } @@ -2071,7 +2071,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 697; this.match(TrinoSqlParser.KW_COMMENT); this.state = 698; - this.string_(); + (localContext as CreateViewContext)._comment = this.string_(); } } @@ -4229,7 +4229,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 1270; this.columnNameCreate(); this.state = 1271; - this.type_(0); + localContext._colType = this.type_(0); this.state = 1274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -4250,7 +4250,7 @@ export class TrinoSqlParser extends SQLParserBase { this.state = 1276; this.match(TrinoSqlParser.KW_COMMENT); this.state = 1277; - this.string_(); + localContext._comment = this.string_(); } break; } @@ -5718,7 +5718,7 @@ export class TrinoSqlParser extends SQLParserBase { } this.state = 1573; - this.identifier(); + (localContext as SelectSingleContext)._alias = this.identifier(); } break; } @@ -6836,7 +6836,7 @@ export class TrinoSqlParser extends SQLParserBase { } this.state = 1825; - this.identifier(); + localContext._alias = this.identifier(); this.state = 1827; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { @@ -20482,6 +20482,7 @@ export class ShowColumnCommentContext extends StatementContext { } } export class CreateTableContext extends StatementContext { + public _comment?: StringContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -20522,15 +20523,15 @@ export class CreateTableContext extends StatementContext { public KW_COMMENT(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_COMMENT, 0); } - public string(): StringContext | null { - return this.getRuleContext(0, StringContext); - } public KW_WITH(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_WITH, 0); } public properties(): PropertiesContext | null { return this.getRuleContext(0, PropertiesContext); } + public string(): StringContext | null { + return this.getRuleContext(0, StringContext); + } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterCreateTable) { listener.enterCreateTable(this); @@ -20653,6 +20654,7 @@ export class StartTransactionContext extends StatementContext { } } export class CreateTableAsSelectContext extends StatementContext { + public _comment?: StringContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -20693,9 +20695,6 @@ export class CreateTableAsSelectContext extends StatementContext { public KW_COMMENT(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_COMMENT, 0); } - public string(): StringContext | null { - return this.getRuleContext(0, StringContext); - } public KW_WITH(): antlr.TerminalNode[]; public KW_WITH(i: number): antlr.TerminalNode | null; public KW_WITH(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -20711,6 +20710,9 @@ export class CreateTableAsSelectContext extends StatementContext { public KW_DATA(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_DATA, 0); } + public string(): StringContext | null { + return this.getRuleContext(0, StringContext); + } public KW_NO(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_NO, 0); } @@ -21317,6 +21319,7 @@ export class TruncateTableContext extends StatementContext { } } export class CreateMaterializedViewContext extends StatementContext { + public _comment?: StringContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -21366,15 +21369,15 @@ export class CreateMaterializedViewContext extends StatementContext { public KW_COMMENT(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_COMMENT, 0); } - public string(): StringContext | null { - return this.getRuleContext(0, StringContext); - } public KW_WITH(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_WITH, 0); } public properties(): PropertiesContext | null { return this.getRuleContext(0, PropertiesContext); } + public string(): StringContext | null { + return this.getRuleContext(0, StringContext); + } public override enterRule(listener: TrinoSqlListener): void { if(listener.enterCreateMaterializedView) { listener.enterCreateMaterializedView(this); @@ -21432,6 +21435,7 @@ export class SetSessionContext extends StatementContext { } } export class CreateViewContext extends StatementContext { + public _comment?: StringContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -21460,9 +21464,6 @@ export class CreateViewContext extends StatementContext { public KW_COMMENT(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_COMMENT, 0); } - public string(): StringContext | null { - return this.getRuleContext(0, StringContext); - } public KW_SECURITY(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_SECURITY, 0); } @@ -21472,6 +21473,9 @@ export class CreateViewContext extends StatementContext { public properties(): PropertiesContext | null { return this.getRuleContext(0, PropertiesContext); } + public string(): StringContext | null { + return this.getRuleContext(0, StringContext); + } public KW_DEFINER(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_DEFINER, 0); } @@ -22445,6 +22449,8 @@ export class TableElementContext extends antlr.ParserRuleContext { export class ColumnDefinitionContext extends antlr.ParserRuleContext { + public _colType?: TypeContext; + public _comment?: StringContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -22463,15 +22469,15 @@ export class ColumnDefinitionContext extends antlr.ParserRuleContext { public KW_COMMENT(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_COMMENT, 0); } - public string(): StringContext | null { - return this.getRuleContext(0, StringContext); - } public KW_WITH(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_WITH, 0); } public properties(): PropertiesContext | null { return this.getRuleContext(0, PropertiesContext); } + public string(): StringContext | null { + return this.getRuleContext(0, StringContext); + } public override get ruleIndex(): number { return TrinoSqlParser.RULE_columnDefinition; } @@ -23711,6 +23717,7 @@ export class SelectAllContext extends SelectItemContext { } } export class SelectSingleContext extends SelectItemContext { + public _alias?: IdentifierContext; public constructor(ctx: SelectItemContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -24506,6 +24513,7 @@ export class VariableDefinitionContext extends antlr.ParserRuleContext { export class AliasedRelationContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts index cef00ccd..af394934 100644 --- a/src/parser/common/entityCollector.ts +++ b/src/parser/common/entityCollector.ts @@ -104,7 +104,7 @@ export interface ColumnEntityContext extends BaseEntityContext { export interface FuncEntityContext extends BaseEntityContext { relatedEntities: CommonEntityContext[] | null; arguments: Argument[] | null; // function arguments - returns?: Argument[]; // function return value + returns?: Argument; // function return value } export type EntityContext = CommonEntityContext | FuncEntityContext | ColumnEntityContext; @@ -128,7 +128,7 @@ export function isColumnEntityContext(entity: EntityContext): entity is ColumnEn * what we need when collect attribute information * */ interface AttrInfo { - attrNameList: AttrName[]; + attrName: AttrName; endContextList: string[]; } @@ -137,7 +137,7 @@ export function toEntityContext( type: EntityContextType, input: string, belongStmt: StmtContext, - attrInfo?: AttrInfo + attrInfo?: AttrInfo[] ): EntityContext | null { const word = ctxToText(ctx, input); if (!word) return null; @@ -169,9 +169,9 @@ export function toEntityContext( break; } if (attrInfo) { - for (let k = 0; k < attrInfo?.attrNameList?.length; k++) { - const attributeName: AttrName = attrInfo?.attrNameList[k]; - const attrToken = findAttribute(ctx, attributeName, attrInfo?.endContextList); + for (let k = 0; k < attrInfo.length; k++) { + const attributeName: AttrName = attrInfo[k]?.attrName; + const attrToken = findAttribute(ctx, attributeName, attrInfo[k]?.endContextList); if (attrToken) { const attrVal: WordRange | TextSlice | null = isToken(attrToken) ? tokenToWord(attrToken, input) @@ -334,7 +334,7 @@ export abstract class EntityCollector { return stmtContext; } - protected pushEntity(ctx: ParserRuleContext, type: EntityContextType, attrInfo?: AttrInfo) { + protected pushEntity(ctx: ParserRuleContext, type: EntityContextType, attrInfo?: AttrInfo[]) { const entityContext = toEntityContext( ctx, type, diff --git a/src/parser/flink/flinkEntityCollector.ts b/src/parser/flink/flinkEntityCollector.ts index e8a7e6c6..7c0d7faf 100644 --- a/src/parser/flink/flinkEntityCollector.ts +++ b/src/parser/flink/flinkEntityCollector.ts @@ -35,10 +35,12 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar } exitDatabasePathCreate(ctx: DatabasePathCreateContext) { - this.pushEntity(ctx, EntityContextType.DATABASE_CREATE, { - attrNameList: [AttrName.comment], - endContextList: [CreateDatabaseContext.name], - }); + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateDatabaseContext.name], + }, + ]); } exitDatabasePath(ctx: DatabasePathContext) { @@ -51,19 +53,23 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar ctx, EntityContextType.TABLE, needCollectAttr - ? { - attrNameList: [AttrName.alias], - endContextList: [TableReferenceContext.name], - } + ? [ + { + attrName: AttrName.alias, + endContextList: [TableReferenceContext.name], + }, + ] : undefined ); } exitTablePathCreate(ctx: TablePathCreateContext) { - this.pushEntity(ctx, EntityContextType.TABLE_CREATE, { - attrNameList: [AttrName.comment], - endContextList: [CreateTableContext.name], - }); + this.pushEntity(ctx, EntityContextType.TABLE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateTableContext.name], + }, + ]); } exitViewPath(ctx: ViewPathContext) { @@ -71,17 +77,25 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar } exitViewPathCreate(ctx: ViewPathCreateContext) { - this.pushEntity(ctx, EntityContextType.VIEW_CREATE, { - attrNameList: [AttrName.comment], - endContextList: [CreateViewContext.name], - }); + this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateViewContext.name], + }, + ]); } exitColumnNameCreate(ctx: ColumnNameCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, { - attrNameList: [AttrName.comment, AttrName.colType], - endContextList: [PhysicalColumnDefinitionContext.name], - }); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [PhysicalColumnDefinitionContext.name], + }, + { + attrName: AttrName.colType, + endContextList: [PhysicalColumnDefinitionContext.name], + }, + ]); } exitFunctionNameCreate(ctx: FunctionNameCreateContext) { diff --git a/src/parser/hive/hiveEntityCollector.ts b/src/parser/hive/hiveEntityCollector.ts index a345fcff..1088defa 100644 --- a/src/parser/hive/hiveEntityCollector.ts +++ b/src/parser/hive/hiveEntityCollector.ts @@ -1,7 +1,8 @@ -import { EntityContextType } from '../common/types'; import { HiveSqlParserListener } from '../../lib'; import { + ColumnNameCommentContext, ColumnNameCreateContext, + ColumnNameTypeConstraintContext, CreateDatabaseStatementContext, CreateFunctionStatementContext, CreateMaterializedViewStatementContext, @@ -17,27 +18,61 @@ import { StatementContext, TableNameContext, TableNameCreateContext, + TableSourceContext, + UniqueJoinSourceContext, ViewNameContext, ViewNameCreateContext, } from '../../lib/hive/HiveSqlParser'; -import { StmtContextType, EntityCollector } from '../common/entityCollector'; +import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { EntityContextType } from '../common/types'; export class HiveEntityCollector extends EntityCollector implements HiveSqlParserListener { /** ====== Entity Begin */ exitTableNameCreate(ctx: TableNameCreateContext) { - this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + this.pushEntity(ctx, EntityContextType.TABLE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateTableStatementContext.name], + }, + ]); } exitTableName(ctx: TableNameContext) { - this.pushEntity(ctx, EntityContextType.TABLE); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.TABLE, + needCollectAttr + ? [ + { + attrName: AttrName.alias, + endContextList: [TableSourceContext.name, UniqueJoinSourceContext.name], + }, + ] + : undefined + ); } exitColumnNameCreate(ctx: ColumnNameCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [ColumnNameCommentContext.name], + }, + { + attrName: AttrName.colType, + endContextList: [ColumnNameTypeConstraintContext.name], + }, + ]); } exitViewNameCreate(ctx: ViewNameCreateContext) { - this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateViewStatementContext.name], + }, + ]); } exitViewName(ctx: ViewNameContext) { @@ -45,7 +80,12 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse } exitDbSchemaNameCreate(ctx: DbSchemaNameCreateContext) { - this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateDatabaseStatementContext.name], + }, + ]); } exitDbSchemaName(ctx: DbSchemaNameContext) { diff --git a/src/parser/impala/impalaEntityCollector.ts b/src/parser/impala/impalaEntityCollector.ts index 3644afbc..0bf4cd0b 100644 --- a/src/parser/impala/impalaEntityCollector.ts +++ b/src/parser/impala/impalaEntityCollector.ts @@ -1,5 +1,6 @@ import { ImpalaSqlParserListener } from '../../lib'; import { + ColumnDefinitionContext, ColumnNamePathCreateContext, CreateAggregateFunctionContext, CreateFunctionContext, @@ -12,32 +13,77 @@ import { DatabaseNamePathContext, FunctionNameCreateContext, InsertStatementContext, + KuduTableElementContext, QueryStatementContext, + SampledRelationContext, SingleStatementContext, TableNameCreateContext, TableNamePathContext, + ViewColumnItemContext, ViewNameCreateContext, ViewNamePathContext, } from '../../lib/impala/ImpalaSqlParser'; +import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; import { EntityContextType } from '../common/types'; -import { StmtContextType, EntityCollector } from '../common/entityCollector'; export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlParserListener { /** ===== Entity begin */ exitTableNameCreate(ctx: TableNameCreateContext) { - this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + this.pushEntity(ctx, EntityContextType.TABLE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [ + CreateTableSelectContext.name, + CreateKuduTableAsSelectContext.name, + ], + }, + ]); } exitTableNamePath(ctx: TableNamePathContext) { - this.pushEntity(ctx, EntityContextType.TABLE); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.TABLE, + needCollectAttr + ? [ + { + attrName: AttrName.alias, + endContextList: [SampledRelationContext.name], + }, + ] + : undefined + ); } exitColumnNamePathCreate(ctx: ColumnNamePathCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [ + ColumnDefinitionContext.name, + KuduTableElementContext.name, + ViewColumnItemContext.name, + ], + }, + { + attrName: AttrName.colType, + endContextList: [ + ColumnDefinitionContext.name, + KuduTableElementContext.name, + ViewColumnItemContext.name, + ], + }, + ]); } exitViewNameCreate(ctx: ViewNameCreateContext) { - this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateViewContext.name], + }, + ]); } exitViewNamePath(ctx: ViewNamePathContext) { @@ -49,7 +95,12 @@ export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlP } exitDatabaseNameCreate(ctx: DatabaseNameCreateContext) { - this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateSchemaContext.name], + }, + ]); } exitFunctionNameCreate(ctx: FunctionNameCreateContext) { diff --git a/src/parser/mysql/mysqlEntityCollector.ts b/src/parser/mysql/mysqlEntityCollector.ts index 36ffc9bb..92b5bd0d 100644 --- a/src/parser/mysql/mysqlEntityCollector.ts +++ b/src/parser/mysql/mysqlEntityCollector.ts @@ -1,8 +1,9 @@ -import type { +import { ColumnCreateTableContext, ColumnNameCreateContext, CopyCreateTableContext, CreateDatabaseContext, + CreateDefinitionContext, CreateFunctionContext, CreateFunctionLoadableContext, CreateViewContext, @@ -15,12 +16,13 @@ import type { SingleStatementContext, TableNameContext, TableNameCreateContext, + TableSourceContext, ViewNameContext, ViewNameCreateContext, } from '../../lib/mysql/MySqlParser'; import type { MySqlParserListener } from '../../lib/mysql/MySqlParserListener'; +import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; import { EntityContextType } from '../common/types'; -import { StmtContextType, EntityCollector } from '../common/entityCollector'; export class MySqlEntityCollector extends EntityCollector implements MySqlParserListener { /** ====== Entity Begin */ @@ -33,11 +35,28 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser } exitTableName(ctx: TableNameContext) { - this.pushEntity(ctx, EntityContextType.TABLE); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.TABLE, + needCollectAttr + ? [ + { + attrName: AttrName.alias, + endContextList: [TableSourceContext.name], + }, + ] + : undefined + ); } exitTableNameCreate(ctx: TableNameCreateContext) { - this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + this.pushEntity(ctx, EntityContextType.TABLE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [ColumnCreateTableContext.name], + }, + ]); } exitViewName(ctx: ViewNameContext) { @@ -49,11 +68,25 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser } exitFunctionNameCreate(ctx: FunctionNameCreateContext) { - this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateFunctionContext.name], + }, + ]); } exitColumnNameCreate(ctx: ColumnNameCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateDefinitionContext.name], + }, + { + attrName: AttrName.colType, + endContextList: [CreateDefinitionContext.name], + }, + ]); } /** ===== Statement begin */ diff --git a/src/parser/postgresql/postgreEntityCollector.ts b/src/parser/postgresql/postgreEntityCollector.ts index 8bf5308e..801c2d9c 100644 --- a/src/parser/postgresql/postgreEntityCollector.ts +++ b/src/parser/postgresql/postgreEntityCollector.ts @@ -1,28 +1,32 @@ -import type { - AltertablestmtContext, - ColumnCreateTableContext, - ColumnNameCreateContext, - CreateDatabaseContext, - CreateForeignTableContext, - CreateMaterializedViewContext, - CreatePartitionForeignTableContext, - CreateViewContext, - CreatefunctionstmtContext, - DatabaseNameContext, - DatabaseNameCreateContext, - FunctionNameCreateContext, - InsertStatementContext, - QueryCreateTableContext, - SelectStatementContext, - SingleStmtContext, - TableNameContext, - TableNameCreateContext, - ViewNameContext, - ViewNameCreateContext, +import { + type AltertablestmtContext, + Column_defContext, + type ColumnCreateTableContext, + type ColumnNameCreateContext, + type CreateDatabaseContext, + type CreateForeignTableContext, + type CreatefunctionstmtContext, + type CreateMaterializedViewContext, + type CreatePartitionForeignTableContext, + type CreateViewContext, + type DatabaseNameContext, + type DatabaseNameCreateContext, + type FunctionNameCreateContext, + type InsertStatementContext, + type ProcedureNameContext, + type ProcedureNameCreateContext, + type QueryCreateTableContext, + type SelectStatementContext, + type SingleStmtContext, + Table_refContext, + type TableNameContext, + type TableNameCreateContext, + type ViewNameContext, + type ViewNameCreateContext, } from '../../lib/postgresql/PostgreSqlParser'; import type { PostgreSqlParserListener } from '../../lib/postgresql/PostgreSqlParserListener'; +import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; import { EntityContextType } from '../common/types'; -import { StmtContextType, EntityCollector } from '../common/entityCollector'; export class PostgreSqlEntityCollector extends EntityCollector implements PostgreSqlParserListener { /** ====== Entity Begin */ @@ -35,7 +39,19 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr } exitTableName(ctx: TableNameContext) { - this.pushEntity(ctx, EntityContextType.TABLE); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.TABLE, + needCollectAttr + ? [ + { + attrName: AttrName.alias, + endContextList: [Table_refContext.name], + }, + ] + : undefined + ); } exitTableNameCreate(ctx: TableNameCreateContext) { @@ -43,7 +59,19 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr } exitViewName(ctx: ViewNameContext) { - this.pushEntity(ctx, EntityContextType.VIEW); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.VIEW, + needCollectAttr + ? [ + { + attrName: AttrName.alias, + endContextList: [Table_refContext.name], + }, + ] + : undefined + ); } exitViewNameCreate(ctx: ViewNameCreateContext) { @@ -55,7 +83,24 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr } exitColumnNameCreate(ctx: ColumnNameCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [Column_defContext.name], + }, + { + attrName: AttrName.colType, + endContextList: [Column_defContext.name], + }, + ]); + } + + exitProcedureName(ctx: ProcedureNameContext) { + this.pushEntity(ctx, EntityContextType.PROCEDURE); + } + + exitProcedureNameCreate(ctx: ProcedureNameCreateContext) { + this.pushEntity(ctx, EntityContextType.PROCEDURE_CREATE); } /** ===== Statement begin */ diff --git a/src/parser/spark/sparkEntityCollector.ts b/src/parser/spark/sparkEntityCollector.ts index 3d7514cf..cffcbd05 100644 --- a/src/parser/spark/sparkEntityCollector.ts +++ b/src/parser/spark/sparkEntityCollector.ts @@ -1,27 +1,30 @@ -import type { +import { + ColumnNameCreateContext, + CreateFunctionContext, + CreateNamespaceContext, + CreateOrReplaceTableColTypeContext, + CreateTableContext, + CreateTableLikeContext, + CreateTempViewUsingContext, + CreateViewContext, + FunctionNameCreateContext, + IdentifierCommentContext, + InsertFromQueryContext, + MultipleInsertContext, NamespaceNameContext, NamespaceNameCreateContext, + QueryStatementContext, + RelationPrimaryContext, + ReplaceTableContext, SingleStatementContext, TableNameContext, TableNameCreateContext, ViewNameContext, ViewNameCreateContext, - FunctionNameCreateContext, - ColumnNameCreateContext, - CreateTableContext, - CreateTableLikeContext, - ReplaceTableContext, - QueryStatementContext, - InsertFromQueryContext, - MultipleInsertContext, - CreateViewContext, - CreateTempViewUsingContext, - CreateNamespaceContext, - CreateFunctionContext, } from '../../lib/spark/SparkSqlParser'; import type { SparkSqlParserListener } from '../../lib/spark/SparkSqlParserListener'; +import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; import { EntityContextType } from '../common/types'; -import { StmtContextType, EntityCollector } from '../common/entityCollector'; export class SparkEntityCollector extends EntityCollector implements SparkSqlParserListener { /** ====== Entity Begin */ @@ -30,15 +33,37 @@ export class SparkEntityCollector extends EntityCollector implements SparkSqlPar } exitNamespaceNameCreate(ctx: NamespaceNameCreateContext) { - this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); + this.pushEntity(ctx, EntityContextType.DATABASE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateNamespaceContext.name], + }, + ]); } exitTableName(ctx: TableNameContext) { - this.pushEntity(ctx, EntityContextType.TABLE); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.TABLE, + needCollectAttr + ? [ + { + attrName: AttrName.alias, + endContextList: [RelationPrimaryContext.name], + }, + ] + : undefined + ); } exitTableNameCreate(ctx: TableNameCreateContext) { - this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + this.pushEntity(ctx, EntityContextType.TABLE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateTableContext.name], + }, + ]); } exitViewName(ctx: ViewNameContext) { @@ -46,7 +71,12 @@ export class SparkEntityCollector extends EntityCollector implements SparkSqlPar } exitViewNameCreate(ctx: ViewNameCreateContext) { - this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateViewContext.name], + }, + ]); } exitFunctionNameCreate(ctx: FunctionNameCreateContext) { @@ -54,7 +84,19 @@ export class SparkEntityCollector extends EntityCollector implements SparkSqlPar } exitColumnNameCreate(ctx: ColumnNameCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [ + CreateOrReplaceTableColTypeContext.name, + IdentifierCommentContext.name, + ], + }, + { + attrName: AttrName.colType, + endContextList: [CreateOrReplaceTableColTypeContext.name], + }, + ]); } /** ===== Statement begin */ diff --git a/src/parser/trino/trinoEntityCollector.ts b/src/parser/trino/trinoEntityCollector.ts index b46b69c6..fb8b6069 100644 --- a/src/parser/trino/trinoEntityCollector.ts +++ b/src/parser/trino/trinoEntityCollector.ts @@ -1,6 +1,9 @@ -import type { +import type { TrinoSqlListener } from '../../lib/trino/TrinoSqlListener'; +import { + AliasedRelationContext, CatalogNameCreateContext, CatalogRefContext, + ColumnDefinitionContext, ColumnNameCreateContext, CreateMaterializedViewContext, CreateSchemaContext, @@ -8,6 +11,7 @@ import type { CreateTableContext, CreateViewContext, InsertIntoContext, + QueryStatementContext, SchemaNameCreateContext, SchemaRefContext, SingleStatementContext, @@ -15,11 +19,9 @@ import type { TableRefContext, ViewNameCreateContext, ViewRefContext, - QueryStatementContext, } from '../../lib/trino/TrinoSqlParser'; -import type { TrinoSqlListener } from '../../lib/trino/TrinoSqlListener'; +import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; import { EntityContextType } from '../common/types'; -import { StmtContextType, EntityCollector } from '../common/entityCollector'; export class TrinoEntityCollector extends EntityCollector implements TrinoSqlListener { /** ====== Entity Begin */ @@ -40,11 +42,28 @@ export class TrinoEntityCollector extends EntityCollector implements TrinoSqlLis } exitTableRef(ctx: TableRefContext) { - this.pushEntity(ctx, EntityContextType.TABLE); + const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; + this.pushEntity( + ctx, + EntityContextType.TABLE, + needCollectAttr + ? [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ] + : undefined + ); } exitTableNameCreate(ctx: TableNameCreateContext) { - this.pushEntity(ctx, EntityContextType.TABLE_CREATE); + this.pushEntity(ctx, EntityContextType.TABLE_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateTableContext.name, CreateTableAsSelectContext.name], + }, + ]); } exitViewRef(ctx: ViewRefContext) { @@ -52,11 +71,25 @@ export class TrinoEntityCollector extends EntityCollector implements TrinoSqlLis } exitViewNameCreate(ctx: ViewNameCreateContext) { - this.pushEntity(ctx, EntityContextType.VIEW_CREATE); + this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ + { + attrName: AttrName.comment, + endContextList: [CreateMaterializedViewContext.name, CreateViewContext.name], + }, + ]); } exitColumnNameCreate(ctx: ColumnNameCreateContext) { - this.pushEntity(ctx, EntityContextType.COLUMN_CREATE); + this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ + { + attrName: AttrName.colType, + endContextList: [ColumnDefinitionContext.name], + }, + { + attrName: AttrName.comment, + endContextList: [ColumnDefinitionContext.name], + }, + ]); } /** ===== Statement begin */ diff --git a/test/parser/hive/contextCollect/entityCollector.test.ts b/test/parser/hive/contextCollect/entityCollector.test.ts index 70361a5f..726dd5ec 100644 --- a/test/parser/hive/contextCollect/entityCollector.test.ts +++ b/test/parser/hive/contextCollect/entityCollector.test.ts @@ -3,6 +3,7 @@ import fs from 'fs'; import path from 'path'; import { HiveSqlParserListener } from 'src/lib/hive/HiveSqlParserListener'; import { + AttrName, isCommonEntityContext, isFuncEntityContext, StmtContextType, @@ -24,7 +25,7 @@ describe('Hive entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(18); + expect(splitListener.statementsContext.length).toBe(21); }); test('create table by like', () => { @@ -241,6 +242,15 @@ describe('Hive entity collector tests', () => { startIndex: 342, startLine: 14, }); + + expect(viewCreateEntity[AttrName.comment]).toEqual({ + text: "'一个任务信息视图'", + endColumn: 19, + line: 19, + startColumn: 9, + startIndex: 470, + endIndex: 479, + }); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); @@ -256,6 +266,30 @@ describe('Hive entity collector tests', () => { ) ); }); + expect(viewCreateEntity.columns[0][AttrName.comment]).toEqual({ + text: "'任务id'", + endColumn: 26, + line: 15, + startColumn: 20, + startIndex: 390, + endIndex: 395, + }); + expect(viewCreateEntity.columns[1][AttrName.comment]).toEqual({ + text: "'任务名称'", + endColumn: 28, + line: 16, + startColumn: 22, + startIndex: 419, + endIndex: 424, + }); + expect(viewCreateEntity.columns[2][AttrName.comment]).toEqual({ + text: "'任务运行时长'", + endColumn: 33, + line: 17, + startColumn: 25, + startIndex: 451, + endIndex: 458, + }); } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -295,6 +329,14 @@ describe('Hive entity collector tests', () => { startIndex: 600, startLine: 27, }); + expect(viewCreateEntity[AttrName.comment]).toEqual({ + text: "'一个测试视图'", + endColumn: 17, + line: 29, + startColumn: 9, + startIndex: 677, + endIndex: 684, + }); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); @@ -781,4 +823,200 @@ describe('Hive entity collector tests', () => { expect(functionEntity.relatedEntities).toBeNull(); } }); + test('create table by columns with attributes', () => { + const columnCreateTableContext = splitListener.statementsContext[18]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('test_change'); + expect(tableCreateEntity.position).toEqual({ + endColumn: 25, + endIndex: 1604, + line: 62, + startColumn: 14, + startIndex: 1594, + }); + + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity.belongStmt.position).toEqual({ + endColumn: 104, + endIndex: 1683, + endLine: 62, + startColumn: 1, + startIndex: 1581, + startLine: 62, + }); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'table test comment'", + endColumn: 104, + line: 62, + startColumn: 84, + startIndex: 1664, + endIndex: 1683, + }); + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns).not.toBeNull(); + expect(tableCreateEntity.columns.length).toBe(3); + tableCreateEntity.columns.forEach((columEntity) => { + expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE); + expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt); + expect(columEntity.text).toBe( + commonSql.slice( + columEntity.position.startIndex, + columEntity.position.endIndex + 1 + ) + ); + }); + expect(tableCreateEntity.columns[0].text).toBe('a'); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'int', + startIndex: 1609, + endIndex: 1611, + line: 62, + startColumn: 29, + endColumn: 32, + }); + expect(tableCreateEntity.columns[1].text).toBe('b'); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'varchar(255)', + startIndex: 1616, + endIndex: 1627, + line: 62, + startColumn: 36, + endColumn: 48, + }); + expect(tableCreateEntity.columns[1][AttrName.comment]).toEqual({ + text: "'column 2'", + startIndex: 1637, + endIndex: 1646, + line: 62, + startColumn: 57, + endColumn: 67, + }); + expect(tableCreateEntity.columns[2].text).toBe('c'); + expect(tableCreateEntity.columns[2][AttrName.colType]).toEqual({ + text: 'int', + startIndex: 1651, + endIndex: 1653, + line: 62, + startColumn: 71, + endColumn: 74, + }); + } + }); + test('create db with comment', () => { + const columnCreateTableContext = splitListener.statementsContext[19]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const dbEntity = allEntities[0]; + + expect(dbEntity.entityContextType).toBe(EntityContextType.DATABASE_CREATE); + expect(dbEntity.text).toBe('testdb'); + expect(dbEntity.position).toEqual({ + endColumn: 23, + endIndex: 1708, + line: 64, + startColumn: 17, + startIndex: 1703, + }); + + expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); + expect(dbEntity.belongStmt.position).toEqual({ + endColumn: 69, + endIndex: 1754, + endLine: 64, + startColumn: 1, + startIndex: 1687, + startLine: 64, + }); + expect(dbEntity[AttrName.comment]).toEqual({ + text: "'test database'", + endColumn: 47, + endIndex: 1732, + line: 64, + startColumn: 32, + startIndex: 1718, + }); + if (isCommonEntityContext(dbEntity)) { + expect(dbEntity.columns).toBeUndefined(); + expect(dbEntity.relatedEntities).toBeNull(); + } + }); + test('select table with join with alias', () => { + const columnCreateTableContext = splitListener.statementsContext[20]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(2); + + const selectTableEntity = allEntities[0]; + const joinTableEntity = allEntities[1]; + + expect(selectTableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(selectTableEntity.text).toBe('table_busi'); + expect(selectTableEntity.position).toEqual({ + endColumn: 27, + endIndex: 1783, + line: 66, + startColumn: 17, + startIndex: 1774, + }); + + expect(selectTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(selectTableEntity.belongStmt.position).toEqual({ + endColumn: 97, + endIndex: 1853, + endLine: 66, + startColumn: 1, + startIndex: 1758, + startLine: 66, + }); + expect(selectTableEntity[AttrName.alias]).toEqual({ + text: 'a', + endColumn: 29, + endIndex: 1785, + line: 66, + startColumn: 28, + startIndex: 1785, + }); + if (isCommonEntityContext(selectTableEntity)) { + expect(selectTableEntity.columns).toBeUndefined(); + expect(selectTableEntity.relatedEntities).toBeNull(); + } + + expect(selectTableEntity.belongStmt).toEqual(joinTableEntity.belongStmt); + expect(joinTableEntity.text).toBe('table_issue'); + expect(joinTableEntity[AttrName.alias]).toEqual({ + text: 'b', + endColumn: 48, + endIndex: 1804, + line: 66, + startColumn: 47, + startIndex: 1804, + }); + if (isCommonEntityContext(joinTableEntity)) { + expect(joinTableEntity.columns).toBeUndefined(); + expect(joinTableEntity.relatedEntities).toBeNull(); + } + }); }); diff --git a/test/parser/hive/contextCollect/fixtures/common.sql b/test/parser/hive/contextCollect/fixtures/common.sql index c7c70614..2f779521 100644 --- a/test/parser/hive/contextCollect/fixtures/common.sql +++ b/test/parser/hive/contextCollect/fixtures/common.sql @@ -57,4 +57,10 @@ SHOW LOCKS DATABASE db1; CREATE FUNCTION base_analizer AS 'com.udf.BaseFieldUDF'; -CREATE TEMPORARY FUNCTION flat_analizer AS 'com.udtf.EventJsonUDTF'; \ No newline at end of file +CREATE TEMPORARY FUNCTION flat_analizer AS 'com.udtf.EventJsonUDTF'; + +CREATE TABLE test_change (a int, b varchar(255) COMMENT 'column 2', c int) COMMENT 'table test comment'; + +CREATE DATABASE testdb COMMENT 'test database' LOCATION '/test/path'; + +SELECT a.* FROM table_busi a JOIN table_issue b ON (a.id = b.id AND a.department = b.department); \ No newline at end of file diff --git a/test/parser/impala/contextCollect/entityCollector.test.ts b/test/parser/impala/contextCollect/entityCollector.test.ts index 515cda11..711aa76a 100644 --- a/test/parser/impala/contextCollect/entityCollector.test.ts +++ b/test/parser/impala/contextCollect/entityCollector.test.ts @@ -3,6 +3,7 @@ import fs from 'fs'; import path from 'path'; import { ImpalaSqlParserListener } from 'src/lib/impala/ImpalaSqlParserListener'; import { + AttrName, isCommonEntityContext, isFuncEntityContext, StmtContextType, @@ -96,13 +97,21 @@ describe('ImpalaSQL entity collector tests', () => { StmtContextType.CREATE_TABLE_STMT ); expect(tableCreateEntity.belongStmt.position).toEqual({ - endColumn: 77, - endIndex: 115, + endColumn: 138, + endIndex: 176, endLine: 3, startColumn: 1, startIndex: 40, startLine: 3, }); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'common census table comment'", + endColumn: 138, + endIndex: 176, + line: 3, + startColumn: 109, + startIndex: 148, + }); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).toBeNull(); @@ -117,6 +126,30 @@ describe('ImpalaSQL entity collector tests', () => { ) ); }); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'string', + endColumn: 33, + endIndex: 71, + line: 3, + startColumn: 27, + startIndex: 66, + }); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'int', + endColumn: 50, + endIndex: 88, + line: 3, + startColumn: 47, + startIndex: 86, + }); + expect(tableCreateEntity.columns[1][AttrName.comment]).toEqual({ + text: "'year comment'", + endColumn: 73, + endIndex: 111, + line: 3, + startColumn: 59, + startIndex: 98, + }); } }); @@ -137,10 +170,10 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableCreateEntity.text).toBe('sorted_census_data'); expect(tableCreateEntity.position).toEqual({ endColumn: 32, - endIndex: 149, + endIndex: 210, line: 5, startColumn: 14, - startIndex: 132, + startIndex: 193, }); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( @@ -148,10 +181,10 @@ describe('ImpalaSQL entity collector tests', () => { ); expect(tableCreateEntity.belongStmt.position).toEqual({ endColumn: 30, - endIndex: 278, + endIndex: 339, endLine: 9, startColumn: 1, - startIndex: 119, + startIndex: 180, startLine: 5, }); @@ -182,10 +215,10 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableCreateEntity.text).toBe('ctas_t1'); expect(tableCreateEntity.position).toEqual({ endColumn: 21, - endIndex: 301, + endIndex: 362, line: 11, startColumn: 14, - startIndex: 295, + startIndex: 356, }); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( @@ -193,10 +226,10 @@ describe('ImpalaSQL entity collector tests', () => { ); expect(tableCreateEntity.belongStmt.position).toEqual({ endColumn: 31, - endIndex: 405, + endIndex: 466, endLine: 14, startColumn: 1, - startIndex: 282, + startIndex: 343, startLine: 11, }); @@ -226,10 +259,18 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableCreateEntity.text).toBe('kudu_t3'); expect(tableCreateEntity.position).toEqual({ endColumn: 21, - endIndex: 428, + endIndex: 489, line: 16, startColumn: 14, - startIndex: 422, + startIndex: 483, + }); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'kudu table comment'", + endColumn: 31, + endIndex: 840, + line: 23, + startColumn: 11, + startIndex: 821, }); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( @@ -237,10 +278,10 @@ describe('ImpalaSQL entity collector tests', () => { ); expect(tableCreateEntity.belongStmt.position).toEqual({ endColumn: 17, - endIndex: 705, - endLine: 23, + endIndex: 857, + endLine: 24, startColumn: 1, - startIndex: 409, + startIndex: 470, startLine: 16, }); @@ -257,6 +298,46 @@ describe('ImpalaSQL entity collector tests', () => { ) ); }); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'BIGINT', + endColumn: 32, + endIndex: 500, + line: 16, + startColumn: 26, + startIndex: 495, + }); + expect(tableCreateEntity.columns[0][AttrName.comment]).toEqual({ + text: "'id column comment'", + endColumn: 60, + endIndex: 528, + line: 16, + startColumn: 41, + startIndex: 510, + }); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'INT', + endColumn: 70, + endIndex: 538, + line: 16, + startColumn: 67, + startIndex: 536, + }); + expect(tableCreateEntity.columns[2][AttrName.colType]).toEqual({ + text: 'STRING', + endColumn: 80, + endIndex: 548, + line: 16, + startColumn: 74, + startIndex: 543, + }); + expect(tableCreateEntity.columns[2][AttrName.comment]).toEqual({ + text: "'string column comment'", + endColumn: 112, + endIndex: 580, + line: 16, + startColumn: 89, + startIndex: 558, + }); } }); @@ -277,20 +358,29 @@ describe('ImpalaSQL entity collector tests', () => { expect(viewCreateEntity.text).toBe('my_view'); expect(viewCreateEntity.position).toEqual({ endColumn: 20, - endIndex: 727, - line: 25, + endIndex: 879, + line: 26, startColumn: 13, - startIndex: 721, + startIndex: 873, + }); + + expect(viewCreateEntity[AttrName.comment]).toEqual({ + text: "'view comment'", + endColumn: 113, + endIndex: 972, + line: 26, + startColumn: 99, + startIndex: 959, }); expect(viewCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); expect(viewCreateEntity.belongStmt.position).toEqual({ - endColumn: 146, - endIndex: 853, - endLine: 25, + endColumn: 169, + endIndex: 1028, + endLine: 26, startColumn: 1, - startIndex: 709, - startLine: 25, + startIndex: 861, + startLine: 26, }); if (isCommonEntityContext(viewCreateEntity)) { @@ -306,6 +396,22 @@ describe('ImpalaSQL entity collector tests', () => { ) ); }); + expect(viewCreateEntity.columns[0][AttrName.comment]).toEqual({ + text: "'this is number col'", + endColumn: 54, + endIndex: 913, + line: 26, + startColumn: 34, + startIndex: 894, + }); + expect(viewCreateEntity.columns[1][AttrName.comment]).toEqual({ + text: "'this is number age'", + endColumn: 89, + endIndex: 948, + line: 26, + startColumn: 69, + startIndex: 929, + }); } expect(fromCreateEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -330,20 +436,20 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableInsertEntity.text).toBe('t2'); expect(tableInsertEntity.position).toEqual({ endColumn: 15, - endIndex: 870, - line: 27, + endIndex: 1045, + line: 28, startColumn: 13, - startIndex: 869, + startIndex: 1044, }); expect(tableInsertEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); expect(tableInsertEntity.belongStmt.position).toEqual({ endColumn: 40, - endIndex: 895, - endLine: 27, + endIndex: 1070, + endLine: 28, startColumn: 1, - startIndex: 857, - startLine: 27, + startIndex: 1032, + startLine: 28, }); if (isCommonEntityContext(tableInsertEntity)) { expect(tableInsertEntity.columns).toBeUndefined(); @@ -371,20 +477,20 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableEntity1.text).toBe('a'); expect(tableEntity1.position).toEqual({ endColumn: 16, - endIndex: 913, - line: 29, + endIndex: 1088, + line: 30, startColumn: 15, - startIndex: 913, + startIndex: 1088, }); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(tableEntity1.belongStmt.position).toEqual({ endColumn: 16, - endIndex: 913, - endLine: 29, + endIndex: 1088, + endLine: 30, startColumn: 1, - startIndex: 899, - startLine: 29, + startIndex: 1074, + startLine: 30, }); if (isCommonEntityContext(tableEntity1)) { expect(tableEntity1.columns).toBeUndefined(); @@ -406,23 +512,31 @@ describe('ImpalaSQL entity collector tests', () => { const tableEntity2 = allEntities[1]; expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); - expect(tableEntity1.text).toBe('t1'); + expect(tableEntity1.text).toBe('table1'); expect(tableEntity1.position).toEqual({ - endColumn: 28, - endIndex: 943, - line: 31, + endColumn: 32, + endIndex: 1122, + line: 32, startColumn: 26, - startIndex: 942, + startIndex: 1117, + }); + expect(tableEntity1[AttrName.alias]).toEqual({ + text: 't1', + endColumn: 38, + endIndex: 1128, + line: 32, + startColumn: 36, + startIndex: 1127, }); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(tableEntity1.belongStmt.position).toEqual({ endColumn: 20, - endIndex: 1022, - endLine: 33, + endIndex: 1217, + endLine: 34, startColumn: 1, - startIndex: 917, - startLine: 31, + startIndex: 1092, + startLine: 32, }); if (isCommonEntityContext(tableEntity1)) { expect(tableEntity1.columns).toBeUndefined(); @@ -430,7 +544,15 @@ describe('ImpalaSQL entity collector tests', () => { expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); - expect(tableEntity2.text).toBe('t2'); + expect(tableEntity2.text).toBe('table2'); + expect(tableEntity2[AttrName.alias]).toEqual({ + text: 't2', + endColumn: 56, + endIndex: 1146, + line: 32, + startColumn: 54, + startIndex: 1145, + }); } if (isCommonEntityContext(tableEntity2)) { @@ -456,20 +578,29 @@ describe('ImpalaSQL entity collector tests', () => { expect(dbEntity.text).toBe('my_db'); expect(dbEntity.position).toEqual({ endColumn: 22, - endIndex: 1046, - line: 35, + endIndex: 1241, + line: 36, startColumn: 17, - startIndex: 1042, + startIndex: 1237, + }); + + expect(dbEntity[AttrName.comment]).toEqual({ + text: "'my first db'", + endColumn: 44, + endIndex: 1263, + line: 36, + startColumn: 31, + startIndex: 1251, }); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); expect(dbEntity.belongStmt.position).toEqual({ - endColumn: 52, - endIndex: 1076, - endLine: 35, + endColumn: 74, + endIndex: 1293, + endLine: 36, startColumn: 1, - startIndex: 1026, - startLine: 35, + startIndex: 1221, + startLine: 36, }); if (isCommonEntityContext(dbEntity)) { @@ -494,20 +625,28 @@ describe('ImpalaSQL entity collector tests', () => { expect(schemaEntity.text).toBe('my_schema'); expect(schemaEntity.position).toEqual({ endColumn: 38, - endIndex: 1116, - line: 37, + endIndex: 1333, + line: 38, startColumn: 29, - startIndex: 1108, + startIndex: 1325, + }); + expect(schemaEntity[AttrName.comment]).toEqual({ + text: "'my first schema'", + endColumn: 64, + endIndex: 1359, + line: 38, + startColumn: 47, + startIndex: 1343, }); expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); expect(schemaEntity.belongStmt.position).toEqual({ endColumn: 94, - endIndex: 1172, - endLine: 37, + endIndex: 1389, + endLine: 38, startColumn: 1, - startIndex: 1080, - startLine: 37, + startIndex: 1297, + startLine: 38, }); if (isCommonEntityContext(schemaEntity)) { expect(schemaEntity.columns).toBeUndefined(); @@ -531,21 +670,21 @@ describe('ImpalaSQL entity collector tests', () => { expect(dbEntity.text).toBe('my_database'); expect(dbEntity.position).toEqual({ endColumn: 32, - endIndex: 1206, - line: 39, + endIndex: 1423, + line: 40, startColumn: 21, - startIndex: 1196, + startIndex: 1413, }); // 由于没有处理 comment 语句,所以当前是处于 COMMON_STMT expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); expect(dbEntity.belongStmt.position).toEqual({ endColumn: 59, - endIndex: 1233, - endLine: 39, + endIndex: 1450, + endLine: 40, startColumn: 1, - startIndex: 1176, - startLine: 39, + startIndex: 1393, + startLine: 40, }); if (isCommonEntityContext(dbEntity)) { @@ -570,10 +709,10 @@ describe('ImpalaSQL entity collector tests', () => { expect(functionEntity.text).toBe('function_name'); expect(functionEntity.position).toEqual({ endColumn: 40, - endIndex: 1274, - line: 41, + endIndex: 1491, + line: 42, startColumn: 27, - startIndex: 1262, + startIndex: 1479, }); expect(functionEntity.belongStmt.stmtContextType).toBe( @@ -581,11 +720,11 @@ describe('ImpalaSQL entity collector tests', () => { ); expect(functionEntity.belongStmt.position).toEqual({ endColumn: 26, - endIndex: 1391, - endLine: 45, + endIndex: 1608, + endLine: 46, startColumn: 1, - startIndex: 1236, - startLine: 41, + startIndex: 1453, + startLine: 42, }); if (isFuncEntityContext(functionEntity)) { @@ -610,10 +749,10 @@ describe('ImpalaSQL entity collector tests', () => { expect(functionEntity.text).toBe('function_name'); expect(functionEntity.position).toEqual({ endColumn: 30, - endIndex: 1423, - line: 47, + endIndex: 1640, + line: 48, startColumn: 17, - startIndex: 1411, + startIndex: 1628, }); expect(functionEntity.belongStmt.stmtContextType).toBe( @@ -621,11 +760,11 @@ describe('ImpalaSQL entity collector tests', () => { ); expect(functionEntity.belongStmt.position).toEqual({ endColumn: 21, - endIndex: 1517, - endLine: 50, + endIndex: 1734, + endLine: 51, startColumn: 1, - startIndex: 1395, - startLine: 47, + startIndex: 1612, + startLine: 48, }); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); diff --git a/test/parser/impala/contextCollect/fixtures/common.sql b/test/parser/impala/contextCollect/fixtures/common.sql index 84f57a70..be084789 100644 --- a/test/parser/impala/contextCollect/fixtures/common.sql +++ b/test/parser/impala/contextCollect/fixtures/common.sql @@ -1,6 +1,6 @@ CREATE TABLE new_Table like old_table; -create table census (name string, census_year int) partitioned by (year int); +create table census (name string, census_year int COMMENT 'year comment') partitioned by (year int) COMMENT 'common census table comment'; CREATE TABLE sorted_census_data SORT BY (last_name, state) @@ -13,26 +13,27 @@ CREATE TABLE ctas_t1 STORED AS KUDU AS SELECT id, s FROM kudu_t1; -CREATE TABLE kudu_t3 (id BIGINT, year INT, s STRING, +CREATE TABLE kudu_t3 (id BIGINT COMMENT 'id column comment', year INT, s STRING COMMENT 'string column comment', b BOOLEAN, PRIMARY KEY (id,year)) PARTITION BY HASH (id) PARTITIONS 20, RANGE (year) (PARTITION 1980 <= VALUES < 1990, PARTITION 1990 <= VALUES < 2000, PARTITION VALUE = 2001, PARTITION 2001 < VALUES < 2003) + COMMENT 'kudu table comment' STORED AS KUDU; -CREATE VIEW my_view (age COMMENT 'this is number col', age1 COMMENT 'this is number col') TBLPROPERTIES ('tblp1' = '1') AS SELECT * FROM my_table; +CREATE VIEW my_view (age COMMENT 'this is number col', age1 COMMENT 'this is number age') COMMENT 'view comment' TBLPROPERTIES ('tblp1' = '1') AS SELECT * FROM my_table; insert into t2 (y, x) select c1 from t1; SELECT * from a; -SELECT t1.c1, t2.c2 FROM t1 JOIN t2 +SELECT t1.c1, t2.c2 FROM table1 AS t1 JOIN table2 AS t2 ON t1.id = t2.id and t1.type_flag = t2.type_flag WHERE t1.c1 > 100; -CREATE DATABASE my_db LOCATION '/path/to/partition'; +CREATE DATABASE my_db COMMENT 'my first db' LOCATION '/path/to/partition'; CREATE SCHEMA IF NOT EXISTS my_schema COMMENT 'my first schema' LOCATION '/path/to/partition'; diff --git a/test/parser/mysql/contextCollect/entityCollector.test.ts b/test/parser/mysql/contextCollect/entityCollector.test.ts index c01ab198..4d6c5e57 100644 --- a/test/parser/mysql/contextCollect/entityCollector.test.ts +++ b/test/parser/mysql/contextCollect/entityCollector.test.ts @@ -3,6 +3,7 @@ import fs from 'fs'; import path from 'path'; import { MySqlParserListener } from 'src/lib/mysql/MySqlParserListener'; import { + AttrName, isCommonEntityContext, isFuncEntityContext, StmtContextType, @@ -47,17 +48,25 @@ describe('MySQL entity collector tests', () => { startColumn: 14, endColumn: 29, }); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'new_tb_with_col comment'", + startIndex: 77, + endIndex: 101, + line: 1, + startColumn: 78, + endColumn: 103, + }); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); expect(tableCreateEntity.belongStmt.position).toEqual({ startIndex: 0, - endIndex: 45, + endIndex: 101, startLine: 1, endLine: 1, startColumn: 1, - endColumn: 47, + endColumn: 103, }); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).toBeNull(); @@ -73,6 +82,32 @@ describe('MySQL entity collector tests', () => { ) ); }); + expect(tableCreateEntity.columns[0][AttrName.comment]).toEqual({ + text: "'col1'", + startIndex: 45, + endIndex: 50, + line: 1, + startColumn: 46, + endColumn: 52, + }); + + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'int', + startIndex: 33, + endIndex: 35, + line: 1, + startColumn: 34, + endColumn: 37, + }); + expect(tableCreateEntity.columns[1][AttrName.comment]).toBeNull(); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'varchar(3)', + startIndex: 57, + endIndex: 66, + line: 1, + startColumn: 58, + endColumn: 68, + }); } }); @@ -91,8 +126,8 @@ describe('MySQL entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('new_tb_from_old'); expect(tableCreateEntity.position).toEqual({ - startIndex: 62, - endIndex: 76, + startIndex: 118, + endIndex: 132, line: 3, startColumn: 14, endColumn: 29, @@ -102,8 +137,8 @@ describe('MySQL entity collector tests', () => { StmtContextType.CREATE_TABLE_STMT ); expect(tableCreateEntity.belongStmt.position).toEqual({ - startIndex: 49, - endIndex: 265, + startIndex: 105, + endIndex: 321, startLine: 3, endLine: 12, startColumn: 1, @@ -121,8 +156,8 @@ describe('MySQL entity collector tests', () => { expect(allEntities[1].text).toBe('old_tb1'); expect(allEntities[1].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); expect(allEntities[1].position).toEqual({ - startIndex: 161, - endIndex: 167, + startIndex: 217, + endIndex: 223, line: 8, startColumn: 9, endColumn: 16, @@ -131,8 +166,8 @@ describe('MySQL entity collector tests', () => { expect(allEntities[2].text).toBe('old_tb2'); expect(allEntities[2].belongStmt.rootStmt).toBe(allEntities[0].belongStmt); expect(allEntities[2].position).toEqual({ - startIndex: 187, - endIndex: 193, + startIndex: 243, + endIndex: 249, line: 10, startColumn: 9, endColumn: 16, @@ -222,6 +257,14 @@ describe('MySQL entity collector tests', () => { expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.text).toBe('from_tb'); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity1[AttrName.alias]).toEqual({ + text: 'tb1', + startIndex: 476, + endIndex: 478, + line: 21, + startColumn: 26, + endColumn: 29, + }); if (isCommonEntityContext(tableEntity1)) { expect(tableEntity1.columns).toBeUndefined(); expect(tableEntity1.relatedEntities).toBeNull(); @@ -342,19 +385,19 @@ describe('MySQL entity collector tests', () => { expect(dbEntity.text).toBe('db_name'); expect(dbEntity.position).toEqual({ endColumn: 24, - endIndex: 778, + endIndex: 841, line: 31, startColumn: 17, - startIndex: 772, + startIndex: 835, }); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); expect(dbEntity.belongStmt.position).toEqual({ endColumn: 47, - endIndex: 801, + endIndex: 864, endLine: 31, startColumn: 1, - startIndex: 756, + startIndex: 819, startLine: 31, }); if (isCommonEntityContext(dbEntity)) { @@ -379,19 +422,19 @@ describe('MySQL entity collector tests', () => { expect(schemaEntity.text).toBe('db_name'); expect(schemaEntity.position).toEqual({ endColumn: 36, - endIndex: 839, + endIndex: 902, line: 33, startColumn: 29, - startIndex: 833, + startIndex: 896, }); expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_DATABASE_STMT); expect(schemaEntity.belongStmt.position).toEqual({ endColumn: 59, - endIndex: 862, + endIndex: 925, endLine: 33, startColumn: 1, - startIndex: 805, + startIndex: 868, startLine: 33, }); if (isCommonEntityContext(schemaEntity)) { @@ -416,19 +459,19 @@ describe('MySQL entity collector tests', () => { expect(dbEntity.text).toBe('db_name'); expect(dbEntity.position).toEqual({ endColumn: 41, - endIndex: 905, + endIndex: 968, line: 35, startColumn: 34, - startIndex: 899, + startIndex: 962, }); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); expect(dbEntity.belongStmt.position).toEqual({ endColumn: 42, - endIndex: 906, + endIndex: 969, endLine: 35, startColumn: 1, - startIndex: 866, + startIndex: 929, startLine: 35, }); if (isCommonEntityContext(dbEntity)) { @@ -453,19 +496,19 @@ describe('MySQL entity collector tests', () => { expect(dbEntity.text).toBe('db_name'); expect(dbEntity.position).toEqual({ endColumn: 30, - endIndex: 937, + endIndex: 1000, line: 37, startColumn: 23, - startIndex: 931, + startIndex: 994, }); expect(dbEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); expect(dbEntity.belongStmt.position).toEqual({ endColumn: 31, - endIndex: 938, + endIndex: 1001, endLine: 37, startColumn: 1, - startIndex: 909, + startIndex: 972, startLine: 37, }); if (isCommonEntityContext(dbEntity)) { @@ -490,21 +533,30 @@ describe('MySQL entity collector tests', () => { expect(functionEntity.text).toBe('hello'); expect(functionEntity.position).toEqual({ endColumn: 39, - endIndex: 978, + endIndex: 1041, line: 39, startColumn: 34, - startIndex: 974, + startIndex: 1037, + }); + + expect(functionEntity[AttrName.comment]).toEqual({ + text: "'this is a defuner user function'", + endColumn: 125, + endIndex: 1127, + line: 39, + startColumn: 92, + startIndex: 1095, }); expect(functionEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_FUNCTION_STMT ); expect(functionEntity.belongStmt.position).toEqual({ - endColumn: 114, - endIndex: 1053, + endColumn: 156, + endIndex: 1158, endLine: 39, startColumn: 1, - startIndex: 941, + startIndex: 1004, startLine: 39, }); if (isFuncEntityContext(functionEntity)) { @@ -529,10 +581,10 @@ describe('MySQL entity collector tests', () => { expect(functionEntity.text).toBe('my_concat_ws'); expect(functionEntity.position).toEqual({ endColumn: 43, - endIndex: 1098, + endIndex: 1203, line: 41, startColumn: 31, - startIndex: 1087, + startIndex: 1192, }); expect(functionEntity.belongStmt.stmtContextType).toBe( @@ -540,10 +592,10 @@ describe('MySQL entity collector tests', () => { ); expect(functionEntity.belongStmt.position).toEqual({ endColumn: 87, - endIndex: 1142, + endIndex: 1247, endLine: 41, startColumn: 1, - startIndex: 1057, + startIndex: 1162, startLine: 41, }); if (isFuncEntityContext(functionEntity)) { diff --git a/test/parser/mysql/contextCollect/fixtures/common.sql b/test/parser/mysql/contextCollect/fixtures/common.sql index b54b1bfd..8ab93448 100644 --- a/test/parser/mysql/contextCollect/fixtures/common.sql +++ b/test/parser/mysql/contextCollect/fixtures/common.sql @@ -1,4 +1,4 @@ -CREATE TABLE new_tb_with_col (id int, age int); +CREATE TABLE new_tb_with_col (id int COMMENT 'col1', age varchar(3)) COMMENT 'new_tb_with_col comment'; CREATE TABLE new_tb_from_old AS SELECT @@ -18,7 +18,7 @@ SELECT * FROM select_tb LIMIT 5,10; SELECT * INTO @my_var FROM into_select_tb; -SELECT * FROM from_tb LEFT JOIN join_tb ON (t1.a = t2.a); +SELECT * FROM from_tb AS tb1 LEFT JOIN join_tb ON (t1.a = t2.a); INSERT INTO insert_tb (a,b,c) VALUES(1,2,3), (4,5,6), (7,8,9); @@ -36,6 +36,6 @@ SHOW CREATE SCHEMA IF NOT EXISTS db_name; DROP SCHEMA IF EXISTS db_name; -CREATE DEFINER = 'user' FUNCTION hello (s CHAR(20)) RETURNS CHAR(50) DETERMINISTIC RETURN CONCAT('Hello, ',s,'!'); +CREATE DEFINER = 'user' FUNCTION hello (s CHAR(20)) RETURNS CHAR(50) DETERMINISTIC COMMENT 'this is a defuner user function' RETURN CONCAT('Hello, ',s,'!'); CREATE FUNCTION IF NOT EXISTS my_concat_ws RETURNS STRING SONAME 'udf_my_concat_ws.so'; diff --git a/test/parser/postgresql/contextCollect/entityCollector.test.ts b/test/parser/postgresql/contextCollect/entityCollector.test.ts index dfcf071c..43ced566 100644 --- a/test/parser/postgresql/contextCollect/entityCollector.test.ts +++ b/test/parser/postgresql/contextCollect/entityCollector.test.ts @@ -3,6 +3,7 @@ import fs from 'fs'; import path from 'path'; import { PostgreSqlParserListener } from 'src/lib/postgresql/PostgreSqlParserListener'; import { + AttrName, isCommonEntityContext, isFuncEntityContext, StmtContextType, @@ -27,7 +28,7 @@ describe('PostgreSql entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(10); + expect(splitListener.statementsContext.length).toBe(11); }); test('create database', () => { @@ -155,6 +156,22 @@ describe('PostgreSql entity collector tests', () => { ) ); }); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'integer', + startIndex: 290, + endIndex: 296, + line: 10, + startColumn: 13, + endColumn: 20, + }); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'varchar(40)', + startIndex: 311, + endIndex: 321, + line: 11, + startColumn: 13, + endColumn: 24, + }); } }); @@ -202,6 +219,30 @@ describe('PostgreSql entity collector tests', () => { ) ); }); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'char(5)', + startIndex: 426, + endIndex: 432, + line: 16, + startColumn: 17, + endColumn: 24, + }); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'varchar(40)', + startIndex: 460, + endIndex: 470, + line: 17, + startColumn: 17, + endColumn: 28, + }); + expect(tableCreateEntity.columns[3][AttrName.colType]).toEqual({ + text: 'date', + startIndex: 532, + endIndex: 535, + line: 19, + startColumn: 17, + endColumn: 21, + }); } }); @@ -469,4 +510,71 @@ describe('PostgreSql entity collector tests', () => { expect(functionEntity.relatedEntities).toBeNull(); } }); + + test('select has table alias with clause', () => { + const testingContext = splitListener.statementsContext[10]; + + const collectListener = new PostgreSqlEntityCollector(commonSql); + postgreSql.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(2); + + const tableEntity1 = allEntities[0]; + const tableEntity2 = allEntities[1]; + expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity1.text).toBe('table_expression'); + expect(tableEntity1.position).toEqual({ + startIndex: 1531, + endIndex: 1546, + line: 51, + startColumn: 51, + endColumn: 67, + }); + + expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity1.belongStmt.position).toEqual({ + startIndex: 1516, + endIndex: 1546, + startLine: 51, + endLine: 51, + startColumn: 36, + endColumn: 67, + }); + if (isCommonEntityContext(tableEntity1)) { + expect(tableEntity1.columns).toBeUndefined(); + expect(tableEntity1.relatedEntities).toBeNull(); + } + expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity2.text).toBe('table_expression1'); + expect(tableEntity2.position).toEqual({ + startIndex: 1604, + endIndex: 1620, + line: 52, + startColumn: 55, + endColumn: 72, + }); + + expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity2.belongStmt.position).toEqual({ + startIndex: 1481, + endIndex: 1667, + startLine: 51, + endLine: 52, + startColumn: 1, + endColumn: 119, + }); + expect(tableEntity2[AttrName.alias]).toEqual({ + text: 'tb_1', + startIndex: 1625, + endIndex: 1628, + line: 52, + startColumn: 76, + endColumn: 80, + }); + if (isCommonEntityContext(tableEntity2)) { + expect(tableEntity2.columns).toBeUndefined(); + expect(tableEntity2.relatedEntities).toBeNull(); + } + }); }); diff --git a/test/parser/postgresql/contextCollect/fixtures/common.sql b/test/parser/postgresql/contextCollect/fixtures/common.sql index ce34d924..bffb7fa5 100644 --- a/test/parser/postgresql/contextCollect/fixtures/common.sql +++ b/test/parser/postgresql/contextCollect/fixtures/common.sql @@ -46,4 +46,7 @@ INSERT INTO insert_films (code, title, did, date_prod, kind) CREATE FUNCTION get_color_note (rainbow) RETURNS text AS 'SELECT note FROM my_colors WHERE color = $1' - LANGUAGE SQL; \ No newline at end of file + LANGUAGE SQL; + +WITH RECURSIVE query_name (id) AS (SELECT id FROM table_expression) +SELECT DISTINCT ON (col1,col2) random() AS name1 FROM table_expression1 AS tb_1 WHERE name1=name1 GROUP BY DISTINCT id; diff --git a/test/parser/spark/contextCollect/entityCollector.test.ts b/test/parser/spark/contextCollect/entityCollector.test.ts index e4ff5624..eabb9095 100644 --- a/test/parser/spark/contextCollect/entityCollector.test.ts +++ b/test/parser/spark/contextCollect/entityCollector.test.ts @@ -3,6 +3,7 @@ import fs from 'fs'; import path from 'path'; import { SparkSqlParserListener } from 'src/lib/spark/SparkSqlParserListener'; import { + AttrName, isCommonEntityContext, isFuncEntityContext, StmtContextType, @@ -92,17 +93,25 @@ describe('SparkSQL entity collector tests', () => { startColumn: 14, endColumn: 21, }); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'this is new_tb2 comment'", + startIndex: 283, + endIndex: 307, + line: 9, + startColumn: 13, + endColumn: 38, + }); expect(tableCreateEntity.belongStmt.stmtContextType).toBe( StmtContextType.CREATE_TABLE_STMT ); expect(tableCreateEntity.belongStmt.position).toEqual({ startIndex: 54, - endIndex: 242, + endIndex: 307, startLine: 3, - endLine: 8, + endLine: 9, startColumn: 1, - endColumn: 22, + endColumn: 38, }); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).toBeNull(); @@ -118,6 +127,30 @@ describe('SparkSQL entity collector tests', () => { ) ); }); + expect(tableCreateEntity.columns[0][AttrName.comment]).toEqual({ + text: "'this is new col1'", + startIndex: 97, + endIndex: 114, + line: 3, + startColumn: 44, + endColumn: 62, + }); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'INT', + startIndex: 85, + endIndex: 87, + line: 3, + startColumn: 32, + endColumn: 35, + }); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'STRING', + startIndex: 126, + endIndex: 131, + line: 3, + startColumn: 73, + endColumn: 79, + }); } }); @@ -165,6 +198,14 @@ describe('SparkSQL entity collector tests', () => { expect(viewEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); expect(viewEntity.text).toBe('new_view1'); + expect(viewEntity[AttrName.comment]).toEqual({ + text: "'View for experienced employees'", + startIndex: 455, + endIndex: 486, + line: 14, + startColumn: 9, + endColumn: 41, + }); if (isCommonEntityContext(viewEntity)) { expect(viewEntity.columns.length).toBe(2); viewEntity.columns.forEach((columEntity) => { @@ -177,6 +218,14 @@ describe('SparkSQL entity collector tests', () => { ) ); }); + expect(viewEntity.columns[0][AttrName.comment]).toEqual({ + text: "'Unique identification number'", + startIndex: 408, + endIndex: 437, + line: 13, + startColumn: 35, + endColumn: 65, + }); } expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); @@ -200,10 +249,26 @@ describe('SparkSQL entity collector tests', () => { expect(tableEntity1.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity1.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(tableEntity1.text).toBe('employee'); + expect(tableEntity1[AttrName.alias]).toEqual({ + text: 'em', + startIndex: 602, + endIndex: 603, + line: 17, + startColumn: 55, + endColumn: 57, + }); expect(tableEntity2.entityContextType).toBe(EntityContextType.TABLE); expect(tableEntity2.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); expect(tableEntity2.text).toBe('department'); + expect(tableEntity2[AttrName.alias]).toEqual({ + text: 'dept', + startIndex: 630, + endIndex: 633, + line: 17, + startColumn: 83, + endColumn: 87, + }); }); test('insert into table values', () => { @@ -278,6 +343,14 @@ describe('SparkSQL entity collector tests', () => { StmtContextType.CREATE_DATABASE_STMT ); expect(sourceTableEntity.text).toBe('customer_db'); + expect(sourceTableEntity[AttrName.comment]).toEqual({ + text: "'this is database comment'", + startIndex: 928, + endIndex: 953, + line: 25, + startColumn: 51, + endColumn: 77, + }); }); test('use namespace', () => { @@ -312,10 +385,10 @@ describe('SparkSQL entity collector tests', () => { expect(functionEntity.text).toBe('simple_udf'); expect(functionEntity.position).toEqual({ endColumn: 38, - endIndex: 905, - line: 28, + endIndex: 1013, + line: 29, startColumn: 28, - startIndex: 896, + startIndex: 1004, }); expect(functionEntity.belongStmt.stmtContextType).toBe( @@ -323,11 +396,11 @@ describe('SparkSQL entity collector tests', () => { ); expect(functionEntity.belongStmt.position).toEqual({ endColumn: 54, - endIndex: 921, - endLine: 28, + endIndex: 1029, + endLine: 29, startColumn: 1, - startIndex: 869, - startLine: 28, + startIndex: 977, + startLine: 29, }); if (isFuncEntityContext(functionEntity)) { @@ -352,10 +425,10 @@ describe('SparkSQL entity collector tests', () => { expect(functionEntity.text).toBe('simple_udf'); expect(functionEntity.position).toEqual({ endColumn: 27, - endIndex: 950, - line: 30, + endIndex: 1058, + line: 31, startColumn: 17, - startIndex: 941, + startIndex: 1049, }); expect(functionEntity.belongStmt.stmtContextType).toBe( @@ -363,11 +436,11 @@ describe('SparkSQL entity collector tests', () => { ); expect(functionEntity.belongStmt.position).toEqual({ endColumn: 43, - endIndex: 966, - endLine: 30, + endIndex: 1074, + endLine: 31, startColumn: 1, - startIndex: 925, - startLine: 30, + startIndex: 1033, + startLine: 31, }); if (isFuncEntityContext(functionEntity)) { expect(functionEntity.arguments).toBeNull(); diff --git a/test/parser/spark/contextCollect/fixtures/common.sql b/test/parser/spark/contextCollect/fixtures/common.sql index fc63a477..e3bbd97b 100644 --- a/test/parser/spark/contextCollect/fixtures/common.sql +++ b/test/parser/spark/contextCollect/fixtures/common.sql @@ -1,11 +1,12 @@ CREATE TABLE IF NOT EXISTS new_tb1 like like_old_tb; -CREATE TABLE new_tb2 (new_col1 INT, new_col2 STRING) +CREATE TABLE new_tb2 (new_col1 INT COMMENT 'this is new col1', new_col2 STRING) PARTITIONED BY (YEAR STRING) CLUSTERED BY (new_col1, NAME) SORTED BY (new_col1 ASC) INTO 3 BUCKETS - STORED AS PARQUET; + STORED AS PARQUET + COMMENT 'this is new_tb2 comment'; CREATE TABLE student_copy USING CSV AS SELECT * FROM student; @@ -13,7 +14,7 @@ CREATE VIEW new_view1 (ID COMMENT 'Unique identification number', Name) COMMENT 'View for experienced employees' AS SELECT id, name FROM old_tb_1 WHERE working_years > 5; -SELECT id, name, employee.deptno, deptname FROM employee CROSS JOIN department; +SELECT id, name, em.deptno, deptname FROM employee AS em CROSS JOIN department AS dept; INSERT INTO insert_tb (address, name, student_id) VALUES ('Hangzhou, China', 'Kent Yao', 11215016); @@ -21,7 +22,7 @@ INSERT OVERWRITE target_tb TABLE source_tb; INSERT OVERWRITE DIRECTORY '/path/to/output/directory' SELECT * FROM from_tb WHERE condition; -CREATE DATABASE IF NOT EXISTS customer_db; +CREATE DATABASE IF NOT EXISTS customer_db COMMENT 'this is database comment'; USE NAMESPACE ns1; diff --git a/test/parser/trino/contextCollect/entityCollector.test.ts b/test/parser/trino/contextCollect/entityCollector.test.ts index a0369b47..61a3defc 100644 --- a/test/parser/trino/contextCollect/entityCollector.test.ts +++ b/test/parser/trino/contextCollect/entityCollector.test.ts @@ -2,7 +2,11 @@ import { ParseTreeListener } from 'antlr4ng'; import fs from 'fs'; import path from 'path'; import { TrinoSqlListener } from 'src/lib/trino/TrinoSqlListener'; -import { isCommonEntityContext, StmtContextType } from 'src/parser/common/entityCollector'; +import { + AttrName, + isCommonEntityContext, + StmtContextType, +} from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { TrinoEntityCollector, TrinoSQL, TrinoSqlSplitListener } from 'src/parser/trino'; @@ -19,7 +23,7 @@ describe('Trino entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(9); + expect(splitListener.statementsContext.length).toBe(11); }); test('create table like', () => { @@ -122,6 +126,14 @@ describe('Trino entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(tableCreateEntity.text).toBe('a'); expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'This is a view comment'", + startIndex: 139, + endIndex: 162, + line: 5, + startColumn: 23, + endColumn: 47, + }); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); expect(tableCreateEntity.relatedEntities.length).toBe(1); @@ -149,6 +161,14 @@ describe('Trino entity collector tests', () => { expect(tableCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(tableCreateEntity.text).toBe('a'); expect(tableCreateEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'This is an MATERIALIZED view comment'", + startIndex: 220, + endIndex: 257, + line: 7, + startColumn: 36, + endColumn: 74, + }); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); @@ -256,4 +276,92 @@ describe('Trino entity collector tests', () => { expect(schemaEntity.belongStmt.stmtContextType).toBe(StmtContextType.COMMON_STMT); expect(schemaEntity.text).toBe('information_schema'); }); + + test('select using alias', () => { + const testingContext = splitListener.statementsContext[9]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableEntity = allEntities[0]; + + expect(tableEntity.entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntity.text).toBe('tb'); + expect(tableEntity.belongStmt.stmtContextType).toBe(StmtContextType.SELECT_STMT); + expect(tableEntity[AttrName.alias]).toEqual({ + text: 'tb_alias', + startIndex: 512, + endIndex: 519, + line: 19, + startColumn: 44, + endColumn: 52, + }); + + if (isCommonEntityContext(tableEntity)) { + expect(tableEntity.columns).toBeUndefined(); + expect(tableEntity.relatedEntities).toBeNull(); + } + }); + + test('create table using alias', () => { + const testingContext = splitListener.statementsContext[10]; + + const collectListener = new TrinoEntityCollector(commonSql); + trino.listen(collectListener as ParseTreeListener, testingContext); + + const allEntities = collectListener.getEntities(); + + expect(allEntities.length).toBe(1); + + const tableCreateEntity = allEntities[0]; + + expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(tableCreateEntity.text).toBe('orders'); + expect(tableCreateEntity.belongStmt.stmtContextType).toBe( + StmtContextType.CREATE_TABLE_STMT + ); + expect(tableCreateEntity[AttrName.comment]).toEqual({ + text: "'This is the orders table'", + startIndex: 619, + endIndex: 644, + line: 25, + startColumn: 9, + endColumn: 35, + }); + + if (isCommonEntityContext(tableCreateEntity)) { + expect(tableCreateEntity.columns?.length).toBe(2); + expect(tableCreateEntity.relatedEntities).toBeNull(); + expect(tableCreateEntity.columns[0].text).toBe('orderkey'); + expect(tableCreateEntity.columns[1].text).toBe('orderstatus'); + expect(tableCreateEntity.columns[0][AttrName.colType]).toEqual({ + text: 'bigint', + startIndex: 556, + endIndex: 561, + line: 22, + startColumn: 12, + endColumn: 18, + }); + expect(tableCreateEntity.columns[1][AttrName.colType]).toEqual({ + text: 'varchar', + startIndex: 578, + endIndex: 584, + line: 23, + startColumn: 15, + endColumn: 22, + }); + expect(tableCreateEntity.columns[1][AttrName.comment]).toEqual({ + text: "'order status'", + startIndex: 594, + endIndex: 607, + line: 23, + startColumn: 31, + endColumn: 45, + }); + } + }); }); diff --git a/test/parser/trino/contextCollect/fixtures/common.sql b/test/parser/trino/contextCollect/fixtures/common.sql index 60b1e0b9..1da9a96e 100644 --- a/test/parser/trino/contextCollect/fixtures/common.sql +++ b/test/parser/trino/contextCollect/fixtures/common.sql @@ -2,9 +2,9 @@ CREATE TABLE IF NOT EXISTS bar (LIKE like_table INCLUDING PROPERTIES); CREATE TABLE foo(x,y) AS SELECT a,b FROM t; -CREATE VIEW a AS SELECT * FROM t; +CREATE VIEW a COMMENT 'This is a view comment' AS SELECT * FROM t; -CREATE MATERIALIZED VIEW a AS SELECT * FROM t; +CREATE MATERIALIZED VIEW a COMMENT 'This is an MATERIALIZED view comment' AS SELECT * FROM t; SELECT * FROM table1 GROUP BY a; @@ -14,4 +14,13 @@ INSERT INTO cities VALUES (1, 'San Francisco'); CREATE SCHEMA IF NOT EXISTS test; -USE information_schema; \ No newline at end of file +USE information_schema; + +SELECT id AS col1, name AS col2 FROM tb AS tb_alias; + +CREATE TABLE orders ( + orderkey bigint, + orderstatus varchar COMMENT 'order status' +) +COMMENT 'This is the orders table' +WITH (format = 'ORC');